-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 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
{
"name": "dlcs/elucidate-php",
"description": "Elucidate Annotation Server API for PHP",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Elucidate\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Elucidate\\Tests\\": "tests/src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"codestyle": "php-cs-fixer fix ./src && php-cs-fixer fix ./tests"
},
"suggest": {
"zendframework/zend-http": "Zend http client for making requests",
"guzzlehttp/guzzle": "Guzzle http client for making requests"
},
"require-dev": {
"guzzlehttp/guzzle": "6.2.*",
"zendframework/zend-http": "^2.5.4",
"phpunit/phpunit": "^5.5",
"friendsofphp/php-cs-fixer": "^2.6"
},
"require": {
"guzzlehttp/psr7": "^1.4",
"beberlei/assert": "^2.7",
"symfony/event-dispatcher": "^3.3",
"zendframework/zend-psr7bridge": "^1.0",
"psr/http-message": "^1.0"
}
}