forked from FriendsOfPHP/Goutte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 821 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
{
"name": "fabpot/goutte",
"type": "application",
"description": "A simple PHP Web Scraper",
"keywords": ["scraper"],
"homepage": "https://github.com/FriendsOfPHP/Goutte",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"symfony/browser-kit": "^4.4|^5.0|^6.0",
"symfony/css-selector": "^4.4|^5.0|^6.0",
"symfony/dom-crawler": "^4.4|^5.0|^6.0",
"symfony/http-client": "^4.4|^5.0|^6.0",
"symfony/mime": "^4.4|^5.0|^6.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0|^6.0"
},
"autoload": {
"psr-4": { "Goutte\\": "Goutte" },
"exclude-from-classmap": ["Goutte/Tests"]
}
}