-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
34 lines (34 loc) · 982 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
{
"name": "michaeluno/php-simple-web-scraper",
"description": "A PHP application which runs on Heroku and dumps web site outputs including JavaScript generated contents.",
"minimum-stability": "stable",
"license": "MIT",
"type": "application",
"authors": [
{
"name": "Michael Uno",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.20",
"ext-mbstring": "*",
"ext-json": "*",
"jakoch/phantomjs-installer": "3.0.0 as 2.1.1-p08",
"jonnyw/php-phantomjs": "4.6.1",
"michaeluno/php-classmap-generator": "1.*"
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
},
"autoload": {
"psr-4": {
"PHPSimpleWebScraper\\": "web/include/class/"
}
}
}