| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "jonnyw/php-phantomjs",
- "description": "A PHP wrapper for loading pages through PhantomJS",
- "keywords": ["PhantomJS", "Testing", "Headless Browser"],
- "type": "library",
- "license": "MIT",
- "authors": [
- {
- "name": "Jonny Wenmoth",
- "email": "contact@jonnyw.me",
- "homepage": "http://jonnyw.me/"
- }
- ],
- "minimum-stability": "stable",
- "require": {
- "php": ">=5.6.0",
- "symfony/config": "~2.3|~3.0",
- "symfony/dependency-injection": "~2.3|~3.0",
- "symfony/filesystem": "~2.3|~3.0",
- "symfony/yaml": "~2.3|~3.0",
- "twig/twig": "~1.16",
- "guzzlehttp/psr7": "~1.3",
- "jakoch/phantomjs-installer": "^2.1"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0",
- "zendframework/zendpdf": "~2.0",
- "smalot/pdfparser": "~0.9"
- },
- "autoload": {
- "psr-4": {
- "JonnyW\\PhantomJs\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Tests\\JonnyW\\PhantomJS\\": "tests/"
- }
- },
- "config": {
- "bin-dir": "bin"
- }
- }
|