-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (42 loc) · 1.09 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": "serps/http-client-spidyjs",
"description": "SpidyJs client for SERPS",
"type": "library",
"keywords": ["SERPS", "HTTP Client", "SpidyJs"],
"homepage": "https://github.com/gsouf/serp-spider/http-client-spidyjs",
"license": "Fair",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Soufiane GHZAL",
"homepage": "https://github.com/gsouf"
}
],
"autoload":{
"psr-4" : {
"Serps\\HttpClient\\": "src/"
}
},
"autoload-dev":{
"psr-4" : {
"Serps\\Test\\HttpClient\\": "test/suites"
}
},
"require": {
"php": ">=5.5.9",
"serps/core": "dev-master",
"symfony/process": "~3.0|~2.1"
},
"require-dev":{
"phpunit/phpunit": "4.1.2",
"squizlabs/php_codesniffer": "~2.5",
"zendframework/zend-diactoros": ">=1",
"serps/http-client-test-suite": "*"
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.dist.xml && echo \"\\n>> Checking code standards\\n\" && test/bin/phpcs.bash emacs",
"csfix": "test/bin/phpcbf.bash",
"cscheck": "test/bin/phpcs.bash emacs"
}
}