1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "nesk/puphpeteer",
- "description": "A Puppeteer bridge for PHP, supporting the entire API.",
- "keywords": [
- "php",
- "puppeteer",
- "headless-chrome",
- "testing",
- "web",
- "developer-tools",
- "automation"
- ],
- "type": "library",
- "license": "MIT",
- "authors": [
- {
- "name": "Johann Pardanaud",
- "email": "pardanaud.j@gmail.com"
- }
- ],
- "require": {
- "php": ">=7.1",
- "nesk/rialto": "^1.2.0",
- "psr/log": "^1.0",
- "vierbergenlars/php-semver": "^3.0.2"
- },
- "require-dev": {
- "codedungeon/phpunit-result-printer": ">=0.6 <1.0",
- "monolog/monolog": "^1.23",
- "phpunit/phpunit": "^6.5|^7.0",
- "symfony/process": "^4.0"
- },
- "autoload": {
- "psr-4": {
- "Nesk\\Puphpeteer\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Nesk\\Puphpeteer\\Tests\\": "tests/"
- }
- },
- "scripts": {
- "post-install-cmd": "npm install",
- "test": "./vendor/bin/phpunit"
- },
- "config": {
- "sort-packages": true
- }
- }
|