| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "dereuromark/cakephp-tools",
- "type": "cakephp-plugin",
- "description": "A CakePHP plugin containing lots of useful and reusable tools",
- "keywords": ["cakephp", "plugin", "tools", "utils", "helpers", "components", "behaviors", "datasources"],
- "homepage": "https://github.com/dereuromark/cakephp-tools",
- "license": "MIT",
- "authors": [
- {
- "name": "Mark Scherer",
- "role": "Author",
- "homepage": "https://www.dereuromark.de"
- }
- ],
- "require":{
- "php": ">=5.6",
- "cakephp/cakephp": "^3.7.0",
- "dereuromark/cakephp-shim": "^1.7.0"
- },
- "require-dev":{
- "cakephp/chronos": "^1.0.1",
- "mobiledetect/mobiledetectlib": "^2.8",
- "fig-r/psr2r-sniffer": "dev-master",
- "yangqi/htmldom": "^1.0"
- },
- "autoload": {
- "psr-4": {
- "Tools\\": "src/",
- "Tools\\Test\\Fixture\\": "tests/Fixture/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Tools\\Test\\": "tests/",
- "Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
- "Cake\\PHPStan\\": "vendor/cakephp/cakephp/tests/PHPStan/",
- "App\\": "tests/test_app/"
- }
- },
- "suggest": {
- "yangqi/htmldom": "For HtmlDom usage"
- },
- "support":{
- "source": "https://github.com/dereuromark/cakephp-tools",
- "issues": "https://github.com/dereuromark/cakephp-tools/issues"
- },
- "scripts": {
- "phpstan": "phpstan analyse -c tests/phpstan.neon -l 3 src/",
- "phpstan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.11.1 && mv composer.backup composer.json",
- "test": "php phpunit.phar",
- "test-setup": "[ ! -f phpunit.phar ] && wget https://phar.phpunit.de/phpunit-6.5.13.phar && mv phpunit-6.5.13.phar phpunit.phar || true",
- "test-coverage": "php phpunit.phar --log-junit webroot/coverage/unitreport.xml --coverage-html webroot/coverage --coverage-clover webroot/coverage/coverage.xml",
- "cs-check": "phpcs -p --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --extensions=php --ignore=/tests/test_files/ src/ tests/ config/",
- "cs-fix": "phpcbf -v --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --extensions=php --ignore=/tests/test_files/ src/ tests/ config/"
- },
- "config": {
- "process-timeout": 600
- }
- }
|