Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cesarockstar1985/04e45f926dd75252c675324bf2016b70 to your computer and use it in GitHub Desktop.
Save cesarockstar1985/04e45f926dd75252c675324bf2016b70 to your computer and use it in GitHub Desktop.
{
"name": "cakedc\/app-builder",
"description": "CakePHP skeleton app",
"homepage": "https:\/\/cakephp.org",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.1",
"aws/aws-sdk-php": "^3.253",
"cakedc/admin": "^7.0",
"cakedc/cakephp-api": "^9.0",
"cakedc/cakephp-subscriptions": "^2.0",
"cakedc/users": "^11.0",
"cakephp/cakephp": "^4.3",
"cakephp/migrations": "^3.0",
"cakephp/plugin-installer": "^1.3",
"friendsofcake/bootstrap-ui": "^3.0",
"icings/menu": "^4.0.0",
"markstory/asset_compress": "^4.0.0",
"mobiledetect/mobiledetectlib": "^2.8",
"opentok/opentok": "^4.0",
"skie/cakephp-search": "^4.3",
"stripe/stripe-php": "^10.15",
"symfony/config": "^5.4.7",
"symfony/console": "^5.4.7",
"symfony/deprecation-contracts": "^2.5.1",
"symfony/filesystem": "^5.4.7",
"symfony/finder": "^5.4.3",
"symfony/http-foundation": "^5.4.6",
"symfony/process": "^5.4.7",
"symfony/routing": "^5.4.3",
"symfony/service-contracts": "~3.0.0",
"symfony/string": "^5.4.3",
"symfony/var-dumper": "^5.4.6"
},
"require-dev": {
"cakedc\/cakephp-db-test": "^2.0",
"cakephp\/bake": "^2.3",
"cakephp\/cakephp-codesniffer": "~4.2.0",
"cakephp\/debug_kit": "^4.4",
"dereuromark\/cakephp-ide-helper": "@stable",
"josegonzalez\/dotenv": "^3.2",
"phpunit\/phpunit": "~8.5.0 || ^9.3",
"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\/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."
},
"autoload": {
"psr-4": {
"AdminTheme\\": "plugins\/AdminTheme\/src\/",
"FrontendTheme\\": "plugins\/FrontendTheme\/src\/",
"LearnerTheme\\": "plugins\/LearnerTheme\/src\/",
"Menu\\": "plugins\/Menu\/src\/",
"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-code": [
"@cs-check",
"@stan",
"@psalm",
"@test"
],
"cs-check": "phpcs --colors -p -n src/ tests/",
"cs-fix": "phpcbf --colors -p -n src/ tests/",
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor\/bin\/phpunit --colors=always --stderr"
],
"stan": "phpstan analyse --memory-limit=-1 src/",
"psalm": "psalm --show-info=false",
"stan-rebuild-baseline": "phpstan analyse --configuration phpstan.neon src/ --generate-baseline",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan\/phpstan:^0.11 vimeo\/psalm:^3.0 && mv composer.backup composer.json",
"coverage-test": "vendor/bin/phpunit --stderr --coverage-clover=clover.xml",
"fixcode": [
"bin\/cake code_completion generate || echo 'code_completion generate FAILED'",
"bin\/cake phpstorm generate || echo 'phpstorm generate FAILED'",
"bin\/cake annotate all || echo 'annotate all FAILED'",
"phpcbf --colors -p -n src/ tests/ || echo 'phpcbf FAILED'"
],
"docker": [
"Composer\\Config::disableProcessTimeout",
"docker exec --user application -w \/application -it tacake bash"
],
"cake": "docker exec --user application -w \/application -it tacake bin\/cake",
"mysql": [
"Composer\\Config::disableProcessTimeout",
"docker exec -it tadb mysql"
],
"omposer": [
"Composer\\Config::disableProcessTimeout",
"docker exec --user application -w \/application -it tacake composer"
]
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"cakephp/plugin-installer": false,
"dealerdirect/phpcodesniffer-composer-installer": false,
"php-http/discovery": true
}
},
"repositories": [
{
"type": "git",
"url": "lib/cake-admin/"
},
{
"type": "git",
"url": "lib/admin-sbadmin2"
},
{
"type": "git",
"url": "lib/cakephp-categories"
},
{
"type": "git",
"url": "https:\/\/github.com\/CakeDC\/cakephp-file-storage.git"
},
{
"type": "git",
"url": "lib/media"
},
{
"type": "git",
"url": "lib/cms"
},
{
"type": "git",
"url": "lib/cakephp-subscriptions"
},
{
"type": "git",
"url": "lib/cakephp-accounting"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment