composer update

This commit is contained in:
Mike Macgirvin 2023-08-18 21:43:47 +10:00
parent f7039215fe
commit 8d61dfe44a
4 changed files with 1562 additions and 325 deletions

1
.gitignore vendored
View file

@ -26,6 +26,7 @@ __pycache__
.htconfig.php
.htstartup.php
.lando.local.yml
codeception.yml
favicon.*
addon/
widget/

12
codeception.yml.dist Normal file
View file

@ -0,0 +1,12 @@
namespace: Tests
support_namespace: Support
paths:
tests: tests/CC/tests
output: tests/CC/tests/_output
data: tests/CC/tests/Support/Data
support: tests/CC/tests/Support
envs: tests/CC/tests/_envs
actor_suffix: Tester
extensions:
enabled:
- Codeception\Extension\RunFailed

View file

@ -50,7 +50,10 @@
"behat/behat": "~3.11",
"behat/mink-extension": "@stable",
"behat/mink-goutte-driver": "@stable",
"php-mock/php-mock-phpunit": "@stable"
"php-mock/php-mock-phpunit": "@stable",
"codeception/codeception": "^5.0",
"codeception/module-phpbrowser": "*",
"codeception/module-asserts": "*"
},
"autoload": {
"psr-4": {
@ -65,9 +68,10 @@
},
"minimum-stability": "stable",
"config": {
"platform": { "php": "8.0" },
"platform": {
"php": "8.0"
},
"notify-on-install": false,
"optimize-autoloader": true
}
}

1728
composer.lock generated

File diff suppressed because it is too large Load diff