Skip to content

Commit

Permalink
CO-2245_Upgrade_to_CAKEPHP_4.2.10 (#21)
Browse files Browse the repository at this point in the history
* Upgrade CAKEPHP to version 4.2.9

* Upgrade to version CAKEPHP 4.2.10

Co-authored-by: Ioannis Igoumenos <ioigoume@admin.grnet.gr>
  • Loading branch information
Ioannis and Ioannis Igoumenos authored Oct 17, 2021
1 parent abda0c9 commit 2858cde
Show file tree
Hide file tree
Showing 3,169 changed files with 143,774 additions and 104,320 deletions.
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

0 comments on commit 2858cde

Please sign in to comment.