From 30161191c8a0e6bcf6c671c277cbc9ed57849b97 Mon Sep 17 00:00:00 2001 From: Ilya Fedorov Date: Thu, 18 Nov 2021 14:04:01 +0000 Subject: [PATCH] add-internal-php-cs-fix --- app/.php-cs-fixer.php | 13 ----- app/composer.json | 37 ++++++------ app/composer.lock | 118 ++++++++++++++++++++++++++++++--------- app/symfony.lock | 3 + docker-compose-local.yml | 1 + 5 files changed, 117 insertions(+), 55 deletions(-) delete mode 100644 app/.php-cs-fixer.php diff --git a/app/.php-cs-fixer.php b/app/.php-cs-fixer.php deleted file mode 100644 index 664f8dd..0000000 --- a/app/.php-cs-fixer.php +++ /dev/null @@ -1,13 +0,0 @@ -in(__DIR__) - ->exclude('var') -; - -return (new PhpCsFixer\Config())->setRules([ - '@Symfony' => true, - 'array_syntax' => ['syntax' => 'short'], -]) - ->setFinder($finder) - ; diff --git a/app/composer.json b/app/composer.json index 3aadfdd..697a1ef 100644 --- a/app/composer.json +++ b/app/composer.json @@ -35,9 +35,9 @@ }, "require-dev": { "ext-xdebug": "3.*", + "dev-package/php-cs-fixer": "0.1.*", "ergebnis/composer-normalize": "^2.13", "fakerphp/faker": "^1.0", - "friendsofphp/php-cs-fixer": "^3.1", "php-parallel-lint/php-parallel-lint": "1.3.*", "phpunit/phpunit": "^9.5", "roave/security-advisories": "dev-latest", @@ -70,6 +70,12 @@ "App\\Tests\\": "tests/" } }, + "repositories": { + "gitlab.fedy95.com/15": { + "type": "composer", + "url": "https://gitlab.fedy95.com/api/v4/group/15/-/packages/composer/packages.json" + } + }, "minimum-stability": "stable", "prefer-stable": true, "scripts": { @@ -94,8 +100,7 @@ "parallel-lint --no-progress --no-colors --blame ./config/preload.php", "parallel-lint --no-progress --no-colors --blame ./public/index.php", "parallel-lint --no-progress --no-colors --blame ./src", - "parallel-lint --no-progress --no-colors --blame ./tests/bootstrap.php", - "parallel-lint --no-progress --no-colors --blame .php-cs-fixer.php" + "parallel-lint --no-progress --no-colors --blame ./tests/bootstrap.php" ], "lint:yaml": [ "bin/console --quiet --no-debug l:yaml ./config/packages", @@ -104,22 +109,20 @@ "bin/console --quiet --no-debug l:yaml ./config/services.yaml" ], "php-cs-check": [ - "php vendor/bin/php-cs-fixer fix --dry-run --cache-file=var/php-cs-fixer/.php-cs.cache bin/console", - "php vendor/bin/php-cs-fixer fix --dry-run --cache-file=var/php-cs-fixer/.php-cs.cache config/bundles.php", - "php vendor/bin/php-cs-fixer fix --dry-run --cache-file=var/php-cs-fixer/.php-cs.cache config/preload.php", - "php vendor/bin/php-cs-fixer fix --dry-run --cache-file=var/php-cs-fixer/.php-cs.cache public/index.php", - "php vendor/bin/php-cs-fixer fix --dry-run --cache-file=var/php-cs-fixer/.php-cs.cache src", - "php vendor/bin/php-cs-fixer fix --dry-run --cache-file=var/php-cs-fixer/.php-cs.cache tests/bootstrap.php", - "php vendor/bin/php-cs-fixer fix --dry-run --cache-file=var/php-cs-fixer/.php-cs.cache .php-cs-fixer.php" + "php vendor/bin/php-cs-fixer fix --dry-run --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache bin/console", + "php vendor/bin/php-cs-fixer fix --dry-run --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache config/bundles.php", + "php vendor/bin/php-cs-fixer fix --dry-run --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache config/preload.php", + "php vendor/bin/php-cs-fixer fix --dry-run --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache public/index.php", + "php vendor/bin/php-cs-fixer fix --dry-run --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache src", + "php vendor/bin/php-cs-fixer fix --dry-run --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache tests/bootstrap.php" ], "php-cs-fix": [ - "php vendor/bin/php-cs-fixer fix --cache-file=var/php-cs-fixer/.php-cs.cache bin/console", - "php vendor/bin/php-cs-fixer fix --cache-file=var/php-cs-fixer/.php-cs.cache config/bundles.php", - "php vendor/bin/php-cs-fixer fix --cache-file=var/php-cs-fixer/.php-cs.cache config/preload.php", - "php vendor/bin/php-cs-fixer fix --cache-file=var/php-cs-fixer/.php-cs.cache public/index.php", - "php vendor/bin/php-cs-fixer fix --cache-file=var/php-cs-fixer/.php-cs.cache src", - "php vendor/bin/php-cs-fixer fix --cache-file=var/php-cs-fixer/.php-cs.cache tests/bootstrap.php", - "php vendor/bin/php-cs-fixer fix --cache-file=var/php-cs-fixer/.php-cs.cache .php-cs-fixer.php" + "php vendor/bin/php-cs-fixer fix --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache bin/console", + "php vendor/bin/php-cs-fixer fix --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache config/bundles.php", + "php vendor/bin/php-cs-fixer fix --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache config/preload.php", + "php vendor/bin/php-cs-fixer fix --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache public/index.php", + "php vendor/bin/php-cs-fixer fix --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache src", + "php vendor/bin/php-cs-fixer fix --config=vendor/dev-package/php-cs-fixer/.php-cs-fixer.php --cache-file=var/php-cs-fixer/.php-cs.cache tests/bootstrap.php" ], "test": [ "@php ./vendor/bin/phpunit --coverage-html tests/_coverage --coverage-text" diff --git a/app/composer.lock b/app/composer.lock index 9f4142c..c7c70fd 100644 --- a/app/composer.lock +++ b/app/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "1fa5d80ef6ea75d8cbdc00ef247597e7", + "content-hash": "d4c9692a84fba48748818dfbc96a3b9e", "packages": [ { "name": "doctrine/annotations", @@ -4669,6 +4669,57 @@ ], "time": "2021-07-31T17:03:58+00:00" }, + { + "name": "dev-package/php-cs-fixer", + "version": "0.1.0", + "source": { + "type": "git", + "url": "https://gitlab.fedy95.com/dev/package/php-cs-fixer.git", + "reference": "6147b3ca5386bf5043e8bfccf535aff15556a67d" + }, + "dist": { + "type": "zip", + "url": "https://gitlab.fedy95.com/api/v4/projects/65/packages/composer/archives/dev-package/php-cs-fixer.zip?sha=6147b3ca5386bf5043e8bfccf535aff15556a67d", + "reference": "6147b3ca5386bf5043e8bfccf535aff15556a67d", + "shasum": "" + }, + "require": { + "friendsofphp/php-cs-fixer": "^3.1", + "php": "8.0.*" + }, + "require-dev": { + "ergebnis/composer-normalize": "^2.15", + "php-parallel-lint/php-parallel-lint": "^1.3", + "roave/security-advisories": "dev-latest" + }, + "type": "library", + "scripts": { + "cs:fix": [ + "@json-cs-fix", + "@php-cs-fix" + ], + "lint:php": [ + "parallel-lint --no-progress --no-colors --blame .php-cs-fixer.php" + ], + "php-cs-fix": [ + "php vendor/bin/php-cs-fixer fix --cache-file=var/php-cs-fixer/.php-cs.cache .php-cs-fixer.php" + ], + "json-cs-fix": [ + "composer normalize" + ], + "php-cs-check": [ + "php vendor/bin/php-cs-fixer fix --dry-run --cache-file=var/php-cs-fixer/.php-cs.cache .php-cs-fixer.php" + ], + "validate:composer": { + "validate": "@composer validate --strict", + "check:platform": "@composer check-platform-reqs" + } + }, + "license": [ + "MIT" + ], + "description": "dev-package/php-cs-fixer" + }, { "name": "doctrine/instantiator", "version": "1.4.0", @@ -6088,6 +6139,7 @@ "amphp/http": "<1.0.1", "amphp/http-client": ">=4,<4.4", "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6", + "area17/twill": "<=2.5.2", "asymmetricrypt/asymmetricrypt": ">=0,<9.9.99", "aws/aws-sdk-php": ">=3,<3.2.1", "bagisto/bagisto": "<0.1.5", @@ -6099,23 +6151,26 @@ "bolt/bolt": "<3.7.2", "bolt/core": "<4.1.13", "brightlocal/phpwhois": "<=4.2.5", - "buddypress/buddypress": "<5.1.2", + "buddypress/buddypress": "<7.2.1", "bugsnag/bugsnag-laravel": ">=2,<2.0.2", "cachethq/cachet": "<2.5.1", "cakephp/cakephp": ">=1.3,<1.3.18|>=2,<2.4.99|>=2.5,<2.5.99|>=2.6,<2.6.12|>=2.7,<2.7.6|>=3,<3.5.18|>=3.6,<3.6.15|>=3.7,<3.7.7", + "cardgate/magento2": "<2.0.33", "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4", "cartalyst/sentry": "<=2.1.6", + "catfan/medoo": "<1.7.5", "centreon/centreon": "<20.10.7", "cesnet/simplesamlphp-module-proxystatistics": "<3.1", "codeception/codeception": "<3.1.3|>=4,<4.1.22", "codeigniter/framework": "<=3.0.6", "codiad/codiad": "<=2.8.4", - "composer/composer": "<1.10.22|>=2-alpha.1,<2.0.13", + "composer/composer": "<1.10.23|>=2-alpha.1,<2.1.9", + "concrete5/concrete5": "<8.5.5", "contao-components/mediaelement": ">=2.14.2,<2.21.1", "contao/core": ">=2,<3.5.39", "contao/core-bundle": ">=4,<4.4.56|>=4.5,<4.9.18|>=4.10,<4.11.7|= 4.10.0", "contao/listing-bundle": ">=4,<4.4.8", - "craftcms/cms": "<3.6.7", + "craftcms/cms": "<3.7.14", "croogo/croogo": "<3.0.7", "datadog/dd-trace": ">=0.30,<0.30.2", "david-garcia/phpwhois": "<=4.3.1", @@ -6124,7 +6179,7 @@ "doctrine/annotations": ">=1,<1.2.7", "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2", "doctrine/common": ">=2,<2.4.3|>=2.5,<2.5.1", - "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2", + "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4", "doctrine/doctrine-bundle": "<1.5.2", "doctrine/doctrine-module": "<=0.7.1", "doctrine/mongodb-odm": ">=1,<1.0.2", @@ -6155,7 +6210,7 @@ "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3", "ezsystems/repository-forms": ">=2.3,<2.3.2.1", "ezyang/htmlpurifier": "<4.1.1", - "facade/ignition": "<1.16.14|>=2,<2.4.2|>=2.5,<2.5.2", + "facade/ignition": "<2.4.2|>=2.5,<2.5.2", "feehi/cms": "<=2.1.1", "feehi/feehicms": "<=0.1.3", "firebase/php-jwt": "<2", @@ -6173,28 +6228,31 @@ "friendsoftypo3/mediace": ">=7.6.2,<7.6.5", "froala/wysiwyg-editor": "<3.2.7", "fuel/core": "<1.8.1", - "getgrav/grav": "<1.7.21", - "getkirby/cms": "<=3.5.6", + "getgrav/grav": "<=1.7.24", + "getkirby/cms": "<3.5.8", "getkirby/panel": "<2.5.14", "gilacms/gila": "<=1.11.4", + "globalpayments/php-sdk": "<2", "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3", "gree/jose": "<=2.2", "gregwar/rst": "<1.0.3", - "grumpydictator/firefly-iii": "<5.6.1", + "grumpydictator/firefly-iii": "<5.6.3", "guzzlehttp/guzzle": ">=4-rc.2,<4.2.4|>=5,<5.3.1|>=6,<6.2.1", "helloxz/imgurl": "<=2.31", + "hjue/justwriting": "<=1", + "hov/jobfair": "<1.0.13|>=2,<2.0.2", "ibexa/post-install": "<=1.0.4", "icecoder/icecoder": "<=8", "illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10", "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4", - "illuminate/database": "<6.20.26|>=7,<8.40", + "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40", "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15", "illuminate/view": ">=7,<7.1.2", "impresscms/impresscms": "<=1.4.2", "in2code/femanager": "<5.5.1|>=6,<6.3.1", "intelliants/subrion": "<=4.2.1", "ivankristianto/phpwhois": "<=4.3", - "james-heinrich/getid3": "<1.9.9", + "james-heinrich/getid3": "<1.9.21", "joomla/archive": "<1.1.10", "joomla/session": "<1.3.1", "jsmitty12/phpwhois": "<5.1", @@ -6204,14 +6262,15 @@ "kreait/firebase-php": ">=3.2,<3.8.1", "la-haute-societe/tcpdf": "<6.2.22", "laminas/laminas-http": "<2.14.2", - "laravel/framework": "<6.20.26|>=7,<8.40", + "laravel/framework": "<=8.70.2", "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10", "lavalite/cms": "<=5.8", "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5", "league/commonmark": "<0.18.3", "league/flysystem": "<1.1.4|>=2,<2.1.1", "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3", - "librenms/librenms": "<21.1", + "librenms/librenms": "<=21.10.2", + "limesurvey/limesurvey": "<3.27.19", "livewire/livewire": ">2.2.4,<2.2.6", "lms/routes": "<2.1.1", "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2", @@ -6222,11 +6281,14 @@ "marcwillmann/turn": "<0.3.3", "mautic/core": "<4|= 2.13.1", "mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35", + "microweber/microweber": "<1.2.8", "miniorange/miniorange-saml": "<1.4.3", "mittwald/typo3_forum": "<1.2.1", + "modx/revolution": "<2.8", "monolog/monolog": ">=1.8,<1.12", - "moodle/moodle": "<3.5.17|>=3.7,<3.7.9|>=3.8,<3.8.8|>=3.9,<3.9.5|>=3.10,<3.10.2", + "moodle/moodle": "<3.5.17|>=3.7,<3.7.9|>=3.8,<3.8.8|>=3.9,<3.9.5|>=3.10-beta,<3.10.2", "namshi/jose": "<2.2", + "neoan3-apps/template": "<1.1.1", "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6", "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3", "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.9.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3", @@ -6239,9 +6301,9 @@ "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1", "october/backend": "<1.1.2", "october/cms": "= 1.1.1|= 1.0.471|= 1.0.469|>=1.0.319,<1.0.469", - "october/october": ">=1.0.319,<1.0.466", + "october/october": ">=1.0.319,<1.0.466|>=2.1,<2.1.12", "october/rain": "<1.0.472|>=1.1,<1.1.2", - "october/system": "<1.0.472|>=1.1.1,<1.1.5", + "october/system": "<1.0.472|>=1.1.1,<1.1.5|>=2.1,<2.1.12", "onelogin/php-saml": "<2.10.4", "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5", "opencart/opencart": "<=3.0.3.2", @@ -6257,6 +6319,7 @@ "passbolt/passbolt_api": "<2.11", "paypal/merchant-sdk-php": "<3.12", "pear/archive_tar": "<1.4.14", + "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1", "personnummer/personnummer": "<3.0.2", "phanan/koel": "<5.1.4", "phpfastcache/phpfastcache": "<6.1.5|>=7,<7.1.2|>=8,<8.0.7", @@ -6278,10 +6341,11 @@ "prestashop/productcomments": ">=4,<4.2.1", "prestashop/ps_emailsubscription": "<2.6.1", "prestashop/ps_facetedsearch": "<3.4.1", + "prestashop/ps_linklist": "<3.1", "privatebin/privatebin": "<1.2.2|>=1.3,<1.3.2", "propel/propel": ">=2-alpha.1,<=2-alpha.7", "propel/propel1": ">=1,<=1.7.1", - "pterodactyl/panel": "<0.7.19|>=1-rc.0,<=1-rc.6", + "pterodactyl/panel": "<0.7.19|>=1-rc.0,<=1-rc.6|>=1,<1.6.3", "pusher/pusher-php-server": "<2.2.1", "pwweb/laravel-core": "<=0.3.6-beta", "rainlab/debugbar-plugin": "<3.1", @@ -6295,15 +6359,15 @@ "shopware/core": "<=6.4.3", "shopware/platform": "<=6.4.3", "shopware/production": "<=6.3.5.2", - "shopware/shopware": "<5.6.10", - "showdoc/showdoc": "<=2.9.8", - "silverstripe/admin": ">=1.0.3,<1.0.4|>=1.1,<1.1.1", + "shopware/shopware": "<5.7.6", + "showdoc/showdoc": "<=2.9.12", + "silverstripe/admin": "<4.8.1", "silverstripe/assets": ">=1,<1.4.7|>=1.5,<1.5.2", "silverstripe/cms": "<4.3.6|>=4.4,<4.4.4", "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1", "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3", "silverstripe/framework": "<4.7.4", - "silverstripe/graphql": "<=3.5|>=4-alpha.1,<4-alpha.2", + "silverstripe/graphql": "<3.5.2|>=4-alpha.1,<4-alpha.2", "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1", "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4", "silverstripe/subsites": ">=2,<2.1.1", @@ -6316,19 +6380,21 @@ "simplito/elliptic-php": "<1.0.6", "slim/slim": "<2.6", "smarty/smarty": "<3.1.39", + "snipe/snipe-it": "<=5.3.1", "socalnick/scn-social-auth": "<1.15.2", "socialiteproviders/steam": "<1.1", "spoonity/tcpdf": "<6.2.22", "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1", - "ssddanbrown/bookstack": "<0.29.2", + "ssddanbrown/bookstack": "<21.0.3", "stormpath/sdk": ">=0,<9.9.99", "studio-42/elfinder": "<2.1.59", "subrion/cms": "<=4.2.1", - "sulu/sulu": "<1.6.41|>=2,<2.0.10|>=2.1,<2.1.1", + "sulu/sulu": "<1.6.43|>=2,<2.0.10|>=2.1,<2.1.1", "swiftmailer/swiftmailer": ">=4,<5.4.5", "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2", "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", "sylius/grid-bundle": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", + "sylius/paypal-plugin": ">=1,<1.2.4|>=1.3,<1.3.1", "sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4", "sylius/sylius": "<1.6.9|>=1.7,<1.7.9|>=1.8,<1.8.3|>=1.9,<1.9.5", "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99", @@ -6369,15 +6435,16 @@ "thelia/backoffice-default-template": ">=2.1,<2.1.2", "thelia/thelia": ">=2.1-beta.1,<2.1.3", "theonedemon/phpwhois": "<=4.2.5", + "tinymce/tinymce": "<5.10", "titon/framework": ">=0,<9.9.99", "topthink/think": "<=6.0.9", "topthink/thinkphp": "<=3.2.3", "tribalsystems/zenario": "<8.8.53370", "truckersmp/phpwhois": "<=4.3.1", "twig/twig": "<1.38|>=2,<2.7", - "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.29|>=10,<10.4.19|>=11,<11.3.2", + "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.29|>=10,<10.4.19|>=11,<11.5", "typo3/cms-backend": ">=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1", - "typo3/cms-core": ">=6.2,<=6.2.56|>=7,<=7.6.52|>=8,<=8.7.41|>=9,<9.5.29|>=10,<10.4.19|>=11,<11.3.2", + "typo3/cms-core": ">=6.2,<=6.2.56|>=7,<=7.6.52|>=8,<=8.7.41|>=9,<9.5.29|>=10,<10.4.19|>=11,<11.5", "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1", "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6", "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3", @@ -6390,6 +6457,7 @@ "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4", "vrana/adminer": "<4.7.9", "wallabag/tcpdf": "<6.2.22", + "wanglelecc/laracms": "<=1.0.3", "web-auth/webauthn-framework": ">=3.3,<3.3.4", "webcoast/deferred-image-processing": "<1.0.2", "wikimedia/parsoid": "<0.12.2", diff --git a/app/symfony.lock b/app/symfony.lock index 4fd2912..2cf7efd 100644 --- a/app/symfony.lock +++ b/app/symfony.lock @@ -5,6 +5,9 @@ "composer/xdebug-handler": { "version": "2.0.2" }, + "dev-package/php-cs-fixer": { + "version": "0.1.0" + }, "doctrine/annotations": { "version": "1.0", "recipe": { diff --git a/docker-compose-local.yml b/docker-compose-local.yml index 8f1de49..bc9526f 100644 --- a/docker-compose-local.yml +++ b/docker-compose-local.yml @@ -17,6 +17,7 @@ services: COMPOSER_MEMORY_LIMIT: "-1" PHP_IDE_CONFIG: "serverName=notification-provider_app" volumes: + - ${HOME}/.composer:${HOME}/.composer - ./app:/var/www/localhost expose: - "9000"