| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "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.3.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",
- "jakoch/phantomjs-installer": "2.1.1"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0",
- "zendframework/zendpdf": "~2.0"
- },
- "autoload": {
- "psr-0": {
- "JonnyW\\PhantomJs\\": "src"
- },
- "classmap": ["src/"]
- },
- "config": {
- "bin-dir": "bin"
- },
- "scripts": {
- "post-install-cmd": [
- "PhantomInstaller\\Installer::installPhantomJS"
- ],
- "post-update-cmd": [
- "PhantomInstaller\\Installer::installPhantomJS"
- ]
- }
- }
|