Skip to content

CO-2245_Upgrade_to_CAKEPHP_4.2.10 #21

Merged
merged 2 commits into from
Oct 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
34 changes: 17 additions & 17 deletions app/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,27 @@
"type": "project",
"license": "MIT",
"require": {
"php": ">=7.2",
"adodb/adodb-php": "^5.20",
"cakephp/cakephp": "4.0.*",
"cakephp/migrations": "^3.0.0",
"cakephp/plugin-installer": "^1.0",
"doctrine/dbal": "^2.9",
"josegonzalez/dotenv": "2.*",
"mobiledetect/mobiledetectlib": "2.*"
"php": ">=7.3",
"adodb/adodb-php": "^5.21",
"cakephp/cakephp": "4.2.x",
"cakephp/migrations": "^3.0",
"cakephp/plugin-installer": "^1.3",
"doctrine/dbal": "^3.1",
"mobiledetect/mobiledetectlib": "^2.8"
},
"require-dev": {
"cakephp/bake": "^2.0.10",
"cakephp/cakephp-codesniffer": "^3.0",
"cakephp/debug_kit": "^4.0.6",
"phpstan/phpstan": "^0.12.18",
"phpunit/phpunit": "^8.0",
"cakephp/bake": "^2.3",
"cakephp/cakephp-codesniffer": "~4.2.0",
"cakephp/debug_kit": "^4.4",
"josegonzalez/dotenv": "^3.2",
"phpstan/phpstan": "^0.12.99",
"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 compatibility.",
"phpunit/phpunit": "Allows automated tests to be run without system-wide install.",
"cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP."
"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": {
Expand All @@ -46,8 +45,9 @@
"@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",
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcbf --colors -p src/ tests/",
"stan": "phpstan analyse src/",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
Expand Down
Loading