forked from jonnnnyw/php-phantomjs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.11 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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": "jonnyw/php-phantomjs",
"description": "A PHP wrapper for loading pages through PhantomJS",
"keywords": ["PhantomJS", "Testing", "Headless Browser"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jonny Wenmoth",
"email": "contact@jonnyw.me",
"homepage": "http://jonnyw.me/"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6.0",
"symfony/config": "~2.3|~3.0",
"symfony/dependency-injection": "~2.3|~3.0",
"symfony/filesystem": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"twig/twig": "~1.16",
"guzzlehttp/psr7": "~1.3",
"jakoch/phantomjs-installer": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"zendframework/zendpdf": "~2.0",
"smalot/pdfparser": "~0.9"
},
"autoload": {
"psr-4": {
"JonnyW\\PhantomJs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\JonnyW\\PhantomJS\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
}
}