mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
59 lines
2.1 KiB
JSON
59 lines
2.1 KiB
JSON
{
|
|
"name": "cakephp/app",
|
|
"description": "CakePHP skeleton app",
|
|
"homepage": "https://cakephp.org",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": ">=5.6",
|
|
"cakephp/cakephp": "3.9.*",
|
|
"cakephp/plugin-installer": "^1.0",
|
|
"datto/json-rpc": "^6.0",
|
|
"google/protobuf": "v3.10.*",
|
|
"mobiledetect/mobiledetectlib": "2.*",
|
|
"paragonie/sodium_compat": "^1.11",
|
|
"tuupola/base58": "^2.0"
|
|
},
|
|
"require-dev": {
|
|
"cakephp/bake": "^1.9.0",
|
|
"cakephp/cakephp-codesniffer": "^3.0",
|
|
"cakephp/debug_kit": "^3.17.0",
|
|
"josegonzalez/dotenv": "3.*",
|
|
"phpunit/phpunit": "^5.7|^6.0",
|
|
"psy/psysh": "@stable"
|
|
},
|
|
"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 compatibility."
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src/",
|
|
"" : "src/",
|
|
"GPBMetadata\\Gradido\\": "src/Model/Messages/GPBMetadata/Gradido/",
|
|
"Proto\\Gradido\\" : "src/Model/Messages/Proto/Gradido/"
|
|
}
|
|
},
|
|
"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 --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
|
|
"cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
|
|
"test": "phpunit --colors=always"
|
|
},
|
|
"prefer-stable": true,
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|