composer updates

This commit is contained in:
Mike Macgirvin 2024-03-28 20:15:05 +11:00
parent 718102c11d
commit 085ec148ce
3 changed files with 5263 additions and 540 deletions

15
.gitignore vendored
View file

@ -85,3 +85,18 @@ vendor/
vendor/**/tests/
vendor/**/Test/
vendor/sabre/*/examples/
###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###
###> symfony/framework-bundle ###
/.env.local
/.env.local.php
/.env.*.local
/config/secrets/prod/prod.decrypt.private.php
/public/bundles/
/var/
/vendor/
###< symfony/framework-bundle ###

View file

@ -45,7 +45,7 @@
"ext-json": "*",
"symfony/yaml": "*",
"symfony/uid": "*",
"symfony/mailer": "*",
"symfony/mailer": "^6.4",
"wapmorgan/mp3info": "^0.0.8",
"chillerlan/php-qrcode": "^4.3",
"spomky-labs/otphp": "^10.0",
@ -57,16 +57,33 @@
"league/oauth2-google": "^4.0",
"decomplexity/sendoauth2": "^3.0",
"gregwar/captcha": "^1.2",
"symfony/symfony": "^5.0",
"doctrine/orm": "*",
"doctrine/dbal": "*"
"doctrine/dbal": "*",
"symfony/flex": "^2.4",
"sensio/framework-extra-bundle": "^6.2",
"symfony/asset": "^6.4",
"symfony/monolog-bundle": "^3.10",
"symfony/form": "^6.4",
"symfony/security-bundle": "^6.4",
"symfony/translation": "^6.4",
"symfony/validator": "^6.4",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/doctrine-migrations-bundle": "^3.3",
"symfony/twig-bundle": "^6.4",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"php-mock/php-mock-phpunit": "@stable",
"codeception/codeception": "*",
"codeception/module-phpbrowser": "*",
"codeception/module-asserts": "*"
"codeception/module-asserts": "*",
"symfony/dotenv": "^6.4",
"symfony/maker-bundle": "^1.57",
"doctrine/doctrine-fixtures-bundle": "^3.5",
"symfony/stopwatch": "^6.4",
"symfony/web-profiler-bundle": "^6.4"
},
"autoload": {
"psr-4": {
@ -74,6 +91,11 @@
"Code\\": "src/"
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Code\\Tests\\Unit\\": "tests/unit"
@ -86,6 +108,15 @@
"php": "8.1"
},
"notify-on-install": false,
"optimize-autoloader": true
"optimize-autoloader": true,
"allow-plugins": {
"symfony/flex": true
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}

5747
composer.lock generated

File diff suppressed because it is too large Load diff