-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathcomposer.json
38 lines (38 loc) · 912 Bytes
/
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
{
"name": "julienbourdeau/php-v2-poc",
"description": "POC of a possible v2 for Algolia/algoliasearch-client-php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Julien Bourdeau",
"email": "julien@sigerr.org"
}
],
"autoload": {
"psr-4": {
"Algolia\\AlgoliaSearch\\": "src/"
},
"files": [
"src/Http/Psr7/functions.php",
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Algolia\\AlgoliaSearch\\Tests\\": "tests"
}
},
"require": {
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^6.5",
"symfony/yaml": "^2.0 || ^4.0",
"friendsofphp/php-cs-fixer": "^1.13 || ^2.11"
},
"bin": [
"bin/algolia-doctor"
],
"sort-packages": true
}