summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-06-13 06:34:47 +0200
committerRemi Collet <fedora@famillecollet.com>2016-06-13 06:34:47 +0200
commit59877661abb7de13d1ecb230b532e8fe8b8963cd (patch)
tree3cfd77a7c03c51ac97c68d230a1dbdd5e98f39f4 /composer.json
parent2e6e5ac2eb71b2c46f8a6fa741b47c6ec4fe9583 (diff)
php-goutte: 2.0.4 (backported from Fedora)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..63d87e7
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,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": "fabien@symfony.com"
+ }
+ ],
+ "require": {
+ "php": ">=5.4.0",
+ "symfony/browser-kit": "~2.1",
+ "symfony/css-selector": "~2.1",
+ "symfony/dom-crawler": "~2.1",
+ "guzzlehttp/guzzle": ">=4,<6"
+ },
+ "autoload": {
+ "psr-4": { "Goutte\\": "Goutte" }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0-dev"
+ }
+ }
+}