forked from acseo/TypesenseBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.49 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "acseo/typesense-bundle",
"description": "This bundle provides integration with Typesense in Symfony",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Nicolas Potier",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"doctrine/orm": "^2.8 || ^3.2",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/console": "^6.4|^7.0",
"typesense/typesense-php": "^4.1.0",
"php-http/curl-client": "^2.2",
"monolog/monolog": "^3.0",
"symfony/property-access": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.0",
"phpunit/phpunit": "^9.5",
"symfony/yaml": "^6.4|^7.0",
"dg/bypass-finals": "^1.4",
"phpspec/prophecy-phpunit": "^2.0",
"doctrine/common": "^3.4"
},
"autoload": {
"psr-4": { "ACSEO\\TypesenseBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"ACSEO\\TypesenseBundle\\Tests\\": "tests/"
}
},
"scripts": {
"typesenseServer": [
"Composer\\Config::disableProcessTimeout",
"docker run -i -p 8108:8108 -v/tmp/typesense-server-data-1c/:/data typesense/typesense:27.1 --data-dir /data --api-key=123 --listen-port 8108 --enable-cors"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}