-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
49 lines (49 loc) · 1.52 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
{
"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": "^7.4||^8.0",
"doctrine/orm": "^2.8 || ^3.2",
"symfony/framework-bundle": "^4.3|^5|^6.0|^7.0",
"symfony/console": "^4.3.4|^5|^6.0|^7.0",
"typesense/typesense-php": "^4.1.0",
"php-http/curl-client": "^2.2",
"monolog/monolog": "^2.3|^3.0",
"symfony/property-access": "^3.4|^4.3|^5|^6.0|^7.0",
"symfony/http-client": "^5.4|^6.2|^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0|^6.0",
"phpunit/phpunit": "^9.5",
"symfony/yaml": "^3.4 || ^4.4 || ^5.4 || ^6.0",
"dg/bypass-finals": "^1.4",
"phpspec/prophecy-phpunit": "^2.0"
},
"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:0.23.0 --data-dir /data --api-key=123 --listen-port 8108 --enable-cors"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}