forked from jonnnnyw/php-phantomjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.3 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
51
{
"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": "[email protected]",
"homepage": "http://jonnyw.me/"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3.0",
"symfony/config": "~2.3",
"symfony/dependency-injection": "~2.3",
"symfony/filesystem": "~2.3",
"symfony/yaml": "~2.3",
"twig/twig": "~1.16",
"jakoch/phantomjs-installer": "2.0.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"zendframework/zendpdf": "~2.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/jonnnnyw/phantomjs-installer"
}
],
"autoload": {
"psr-0": {
"JonnyW\\PhantomJs\\": "src"
},
"classmap": ["src/"]
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
}
}