forked from apisearch-io/php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.05 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
{
"name": "apisearch-io/php-client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"symfony/event-dispatcher": "^3.4|^4.0",
"guzzlehttp/guzzle": "^6.0",
"psr/http-message": "^1.0.1",
"nesbot/carbon": "^1.22"
},
"require-dev": {
"phpunit/phpunit": "^5.6.5",
"mmoreram/php-formatter": "^1.3.1",
"friendsofphp/php-cs-fixer": "^2.5.0"
},
"suggest": {
"symfony/yaml": "Install for Yaml import/export"
},
"autoload": {
"psr-4": {
"Apisearch\\": ""
}
},
"scripts": {
"fix-code": [
"vendor/bin/php-cs-fixer fix --config=.php_cs",
"vendor/bin/php-formatter f:h:f . --exclude=vendor",
"vendor/bin/php-formatter f:s:f . --exclude=vendor",
"vendor/bin/php-formatter f:u:s . --exclude=vendor"
],
"test": "vendor/bin/phpunit"
}
}