-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
64 lines (64 loc) · 1.54 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "rajanrx/php-scrape",
"description": "A simple, easy to use, scalable scraping framework written in PHP",
"authors": [
{
"name": "Rajan Rauniyar",
"email": "rajanrauniyar@gmail.com",
"homepage": "https://www.linkedin.com/in/rajanrauniyar/",
"role": "Developer"
}
],
"keywords": [
"scrape",
"framework",
"php"
],
"homepage": "https://github.com/rajanrx/php-scrape",
"type": "project",
"license": "MIT",
"support": {
"issues": "http://rajanr.info",
"source": "https://github.com/rajanrx/php-scrape"
},
"require": {
"php": ">=5.6.0",
"behat/mink": "~1.6",
"behat/mink-browserkit-driver": "~1.2",
"behat/mink-goutte-driver": "~1.1",
"behat/mink-selenium2-driver": "~1.2",
"behat/mink-zombie-driver": "~1.2",
"php-curl-class/php-curl-class": "3.5.5",
"guzzlehttp/cache-subscriber": "0.1.0"
},
"require-dev": {
"jonnyw/php-phantomjs": "3.1.*",
"squizlabs/php_codesniffer": "3.*",
"elliotchance/concise": "~2.0",
"phpmd/phpmd": "~2.4",
"phpunit/phpunit": "~5.2",
"ovr/phpsa": "*",
"phpunit/php-code-coverage": "~3.3.0"
},
"config": {
"process-timeout": 1800,
"bin-dir": "bin"
},
"scripts": {
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
},
"autoload": {
"psr-4": {
"Scraper\\": "Scraper",
"Tests\\": "Tests"
}
}
}