Skip to content
Open
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.
22 changes: 12 additions & 10 deletions app/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,29 @@
"type": "project",
"license": "Apache 2",
"require": {
"php": ">=8.1",
"php": ">=8.2",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"cakephp/authentication": "~3.0",
"cakephp/cakephp": "5.2.*",
"cakephp/migrations": "^4.0.0",
"cakephp/cakephp": "5.3.*",
"cakephp/migrations": "^5.0",
"cakephp/plugin-installer": "^2.0",
"doctrine/dbal": "^3.10.1",
"league/container": "^4.2.0",
"league/container": "^5.1",
"mobiledetect/mobiledetectlib": "^4.8.03",
"psr/log": "^3.0",
"symfony/html-sanitizer": "^7.2"
"symfony/html-sanitizer": "^7.4.13"
},
"require-dev": {
"cakephp/bake": "^3.0.0",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/debug_kit": "^5.0.0",
"cakephp/bake": "^3.6",
"cakephp/cakephp-codesniffer": "^5.3",
"cakephp/debug_kit": "^5.2",
"composer/composer": "^2.9.8",
"josegonzalez/dotenv": "^4.0",
"phpunit/phpunit": "^10.5.5 || ^11.1.3 || ^12.1",
"psy/psysh": "@stable"
"phpunit/phpunit": "^11.5.50 || ^12.5.8 || ^13.0",
"psy/psysh": "^0.12.19",
"twig/twig": "^3.27"
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
Expand Down
4,273 changes: 2,221 additions & 2,052 deletions app/composer.lock

Large diffs are not rendered by default.

119 changes: 0 additions & 119 deletions app/vendor/bin/phinx

This file was deleted.

5 changes: 2 additions & 3 deletions app/vendor/bin/sql-formatter
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,8 @@ if (PHP_VERSION_ID < 80000) {
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
) {
include("phpvfscomposer://" . __DIR__ . '/..'.'/doctrine/sql-formatter/bin/sql-formatter');
exit(0);
return include("phpvfscomposer://" . __DIR__ . '/..'.'/doctrine/sql-formatter/bin/sql-formatter');
}
}

include __DIR__ . '/..'.'/doctrine/sql-formatter/bin/sql-formatter';
return include __DIR__ . '/..'.'/doctrine/sql-formatter/bin/sql-formatter';
10 changes: 10 additions & 0 deletions app/vendor/brick/varexporter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [0.7.0](https://github.com/brick/varexporter/releases/tag/0.7.0) - 2026-01-06

**New features**

- Added `VarExporter::INLINE_LITERAL_LIST`, similar to `INLINE_SCALAR_LIST` but includes enum values

💥 **BC breaks**

- Minimum PHP version is now `8.2`

## [0.6.0](https://github.com/brick/varexporter/releases/tag/0.6.0) - 2025-02-20

💥 **BC breaks**
Expand Down
6 changes: 3 additions & 3 deletions app/vendor/brick/varexporter/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
],
"license": "MIT",
"require": {
"php": "^8.1",
"php": "^8.2",
"nikic/php-parser": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpunit/phpunit": "^11.0",
"php-coveralls/php-coveralls": "^2.2",
"vimeo/psalm": "6.8.4"
"vimeo/psalm": "6.14.3"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 5 additions & 2 deletions app/vendor/brick/varexporter/src/ExportException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@

namespace Brick\VarExporter;

use Exception;
use Throwable;

final class ExportException extends \Exception
use function implode;

final class ExportException extends Exception
{
/**
* @param string[] $path
Expand All @@ -25,7 +28,7 @@ public function __construct(string $message, array $path, ?Throwable $previous =
*
* @param string[] $path
*/
public static function pathToString(array $path) : string
public static function pathToString(array $path): string
{
return '[' . implode('][', $path) . ']';
}
Expand Down
Loading