| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "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.5",
- "symfony/dependency-injection": "~2.5",
- "symfony/filesystem": "~2.5",
- "symfony/yaml": "~2.5",
- "twig/twig": "~1.16",
- "jakoch/phantomjs-installer": "1.9.7"
- },
- "require-dev": {
- "phpunit/phpunit": "3.7.*"
- },
- "autoload": {
- "psr-0": {
- "JonnyW\\PhantomJs\\": "src"
- },
- "classmap": ["src/"]
- },
- "config": {
- "bin-dir": "bin"
- },
- "bin": [
- "bin/phantomloader"
- ],
- "scripts": {
- "post-install-cmd": [
- "PhantomInstaller\\Installer::installPhantomJS"
- ],
- "post-update-cmd": [
- "PhantomInstaller\\Installer::installPhantomJS"
- ]
- }
- }
|