-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (36 loc) · 918 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
39
40
41
42
43
{
"name": "phantomphp/phantomphp",
"description": "Seamless management and comunication with phantomjs process from php",
"keywords": ["phantomjs"],
"homepage": "https://github.com/gsouf/phantomphp",
"license": "Fair",
"authors": [
{
"name": "Soufiane GHZAL",
"homepage": "https://github.com/gsouf"
}
],
"autoload":{
"psr-4" : {
"PhantomPhp\\": "src/"
}
},
"autoload-dev":{
"psr-4" : {
"PhantomPhp\\Test\\": "test/suites"
}
},
"require": {
"php": ">=5.5"
},
"require-dev":{
"jakoch/phantomjs-installer": "~2.1.1",
"phpunit/phpunit": "~4.1",
"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"
}
}