|
| 1 | +{ |
| 2 | + "name": "challgren/cakephp-cloudflare-deploy", |
| 3 | + "type": "cakephp-plugin", |
| 4 | + "description": "Useful console commands for deploying CakePHP apps using Cloudflare.", |
| 5 | + "keywords": ["cakephp","cloudflare","deploy"], |
| 6 | + "homepage": "https://github.com/challgren/cakephp-cloudflare-deploy", |
| 7 | + "license": "MIT", |
| 8 | + "authors": [ |
| 9 | + { |
| 10 | + "name": "Chris Hallgren", |
| 11 | + "homepage": "https://www.hallgren.net", |
| 12 | + "role": "Maintainer" |
| 13 | + }, |
| 14 | + { |
| 15 | + "name": "Contributors", |
| 16 | + "homepage": "https://github.com/challgren/cakephp-cloudflare-deploy/graphs/contributors", |
| 17 | + "role": "Contributor" |
| 18 | + } |
| 19 | + ], |
| 20 | + "require": { |
| 21 | + "php": ">=7.0", |
| 22 | + "cakephp/cakephp": "^3.8", |
| 23 | + "cloudflare/sdk": "^1.1" |
| 24 | + }, |
| 25 | + "require-dev": { |
| 26 | + "cakephp/cakephp-codesniffer": "^3.0" |
| 27 | + }, |
| 28 | + "support": { |
| 29 | + "source": "https://github.com/challgren/cakephp-cloudflare-deploy" |
| 30 | + }, |
| 31 | + "autoload": { |
| 32 | + "psr-4": { |
| 33 | + "CloudflareDeploy\\": "src/" |
| 34 | + } |
| 35 | + }, |
| 36 | + "autoload-dev": { |
| 37 | + "psr-4": { |
| 38 | + "CloudflareDeploy\\Test\\": "tests/", |
| 39 | + "App\\": "tests/test_app/src/", |
| 40 | + "Cake\\Test\\": "vendor/cakephp/cakephp/tests/" |
| 41 | + } |
| 42 | + }, |
| 43 | + "scripts": { |
| 44 | + "phpstan": "phpstan analyse -c tests/phpstan.neon src/", |
| 45 | + "phpstan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.12 && mv composer.backup composer.json", |
| 46 | + "test": "php phpunit.phar", |
| 47 | + "test-setup": "[ ! -f phpunit.phar ] && wget https://phar.phpunit.de/phpunit-6.5.13.phar && mv phpunit-6.5.13.phar phpunit.phar || true", |
| 48 | + "cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/", |
| 49 | + "cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/" |
| 50 | + } |
| 51 | +} |
0 commit comments