Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
67 righe
2.4 KiB
67 righe
2.4 KiB
{ |
|
"name": "cakephp/app", |
|
"description": "CakePHP skeleton app", |
|
"homepage": "https://cakephp.org", |
|
"type": "project", |
|
"license": "MIT", |
|
"require": { |
|
"php": ">=8.1", |
|
"arodu/cakelte": "^2.0", |
|
"aws/aws-sdk-php": "^3.301", |
|
"cakephp/authentication": "^3.0", |
|
"cakephp/cakephp": "^5.0.1", |
|
"cakephp/migrations": "^4.0.0", |
|
"cakephp/plugin-installer": "^2.0", |
|
"firebase/php-jwt": "^6.10", |
|
"friendsofcake/cakephp-csvview": "^5.0", |
|
"lordsimal/cakephp-sentry": "^3.0", |
|
"mobiledetect/mobiledetectlib": "^3.74", |
|
"muffin/trash": "^4.0", |
|
"php-amqplib/php-amqplib": "^3.6", |
|
"simpleenergy/php-webhdfs": "^1.0" |
|
}, |
|
"require-dev": { |
|
"cakephp/bake": "^3.0.0", |
|
"cakephp/cakephp-codesniffer": "^5.0", |
|
"cakephp/debug_kit": "^5.0.0", |
|
"josegonzalez/dotenv": "^4.0", |
|
"phpunit/phpunit": "^10.1.0" |
|
}, |
|
"suggest": { |
|
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.", |
|
"dereuromark/cakephp-ide-helper": "After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan/Psalm compatibility.", |
|
"phpstan/phpstan": "PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code.", |
|
"cakephp/repl": "Console tools for a REPL interface for CakePHP applications." |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"App\\": "src/" |
|
} |
|
}, |
|
"autoload-dev": { |
|
"psr-4": { |
|
"App\\Test\\": "tests/", |
|
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/" |
|
} |
|
}, |
|
"scripts": { |
|
"post-install-cmd": "App\\Console\\Installer::postInstall", |
|
"post-create-project-cmd": "App\\Console\\Installer::postInstall", |
|
"check": [ |
|
"@test", |
|
"@cs-check" |
|
], |
|
"cs-check": "phpcs --colors -p", |
|
"cs-fix": "phpcbf --colors -p", |
|
"stan": "phpstan analyse", |
|
"test": "phpunit --colors=always" |
|
}, |
|
"config": { |
|
"platform-check": true, |
|
"sort-packages": true, |
|
"allow-plugins": { |
|
"cakephp/plugin-installer": true, |
|
"dealerdirect/phpcodesniffer-composer-installer": true |
|
} |
|
} |
|
}
|
|
|