forked from serp-spider/search-engine-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (39 loc) · 1.01 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
{
"name": "serps/search-engine-google",
"description": "Google Rules and client for SERPS",
"type": "library",
"keywords": ["SERPS", "Google"],
"homepage": "https://github.com/serp-spider/search-engine-google",
"license": "Fair",
"authors": [
{
"name": "Soufiane GHZAL",
"homepage": "https://github.com/gsouf"
}
],
"autoload":{
"psr-4" : {
"Serps\\SearchEngine\\Google\\": "src/"
}
},
"autoload-dev":{
"psr-4" : {
"Serps\\Test\\SearchEngine\\Google\\": "test/suites"
}
},
"require": {
"php": ">=5.5",
"symfony/css-selector": ">=2",
"serps/core": "dev-master",
"zendframework/zend-diactoros": "1.*"
},
"require-dev":{
"phpunit/phpunit": "4.1.2",
"squizlabs/php_codesniffer": "~2.5"
},
"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"
}
}