PHP Classes

File: composer.json

Recommend this page to a friend!
  Packages of Andraž   BB   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: BB
Badminton tournament management application
Author: By
Last change:
Date: 15 days ago
Size: 2,147 bytes
 

Contents

Class file image Download
{ "name": "cakephp/app", "description": "CakePHP skeleton app", "homepage": "https://cakephp.org", "type": "project", "license": "MIT", "require": { "php": ">=8.1", "cakephp/cakephp": "^5.0.0", "cakephp/migrations": "^4.0.0", "cakephp/plugin-installer": "^2.0", "mobiledetect/mobiledetectlib": "^3.74" }, "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" }, "prefer-stable": true, "config": { "platform-check": true, "sort-packages": true, "allow-plugins": { "cakephp/plugin-installer": true, "dealerdirect/phpcodesniffer-composer-installer": true } } }