diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 29 |
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" + } + } +} |