forked from jcalderonzumba/gastonjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 996 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
44
45
46
47
48
49
{
"name": "jcalderonzumba/gastonjs",
"description": "PhantomJS API based server for webpage automation",
"keywords": [
"phantomjs",
"headless",
"api",
"automation",
"browser"
],
"homepage": "https://github.com/jcalderonzumba/gastonjs",
"type": "phantomjs-api",
"license": "MIT",
"authors": [
{
"name": "Juan Francisco Calderón Zumba",
"email": "juanfcz@gmail.com",
"homepage": "http://github.com/jcalderonzumba"
}
],
"require": {
"php": ">=5.4",
"guzzlehttp/guzzle": "~5.0|~6.0"
},
"require-dev": {
"symfony/process": "~2.1",
"symfony/phpunit-bridge": "~2.7",
"phpunit/phpunit": "~4.6",
"silex/silex": "~1.2"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Zumba\\GastonJS\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Zumba\\GastonJS\\Tests\\": "tests/unit"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
}
}