Update composer packages
This commit is contained in:
parent
cf4dc63495
commit
7ce2cca052
|
@ -35,38 +35,39 @@
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
"ext-simplexml": "*",
|
"ext-simplexml": "*",
|
||||||
"ext-xml": "*",
|
"ext-xml": "*",
|
||||||
"doctrine/dbal": "^3.5",
|
"doctrine/dbal": "^3.6",
|
||||||
"erusev/parsedown": "^1.7",
|
"erusev/parsedown": "^1.7",
|
||||||
"gettext/gettext": "^5.7",
|
"gettext/gettext": "^5.7",
|
||||||
"gettext/translator": "^1.1",
|
"gettext/translator": "^1.1",
|
||||||
"guzzlehttp/guzzle": "^7.5",
|
"guzzlehttp/guzzle": "^7.8",
|
||||||
"illuminate/container": "^9.43",
|
"illuminate/container": "^9.52",
|
||||||
"illuminate/database": "^9.43",
|
"illuminate/database": "^9.52",
|
||||||
"illuminate/support": "^9.43",
|
"illuminate/support": "^9.52",
|
||||||
"league/oauth2-client": "^2.6",
|
"league/oauth2-client": "^2.7",
|
||||||
"nikic/fast-route": "^1.3",
|
"nikic/fast-route": "^1.3",
|
||||||
"nyholm/psr7": "^1.5",
|
"nyholm/psr7": "^1.8",
|
||||||
"psr/container": "^2.0",
|
"psr/container": "^2.0",
|
||||||
"psr/http-server-middleware": "^1.0",
|
"psr/http-server-middleware": "^1.0",
|
||||||
"psr/log": "^3.0",
|
"psr/log": "^3.0",
|
||||||
|
"psr/http-message": "^1.1",
|
||||||
"rcrowe/twigbridge": "^0.14.0",
|
"rcrowe/twigbridge": "^0.14.0",
|
||||||
"respect/validation": "^1.1",
|
"respect/validation": "^1.1",
|
||||||
"symfony/http-foundation": "^6.2",
|
"symfony/http-foundation": "^6.3",
|
||||||
"symfony/mailer": "^6.2",
|
"symfony/mailer": "^6.3",
|
||||||
"symfony/psr-http-message-bridge": "^2.1",
|
"symfony/psr-http-message-bridge": "^2.3",
|
||||||
"twig/twig": "^3.4",
|
"twig/twig": "^3.7",
|
||||||
"vlucas/phpdotenv": "^5.5"
|
"vlucas/phpdotenv": "^5.5"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"dms/phpunit-arraysubset-asserts": "^0.4",
|
"dms/phpunit-arraysubset-asserts": "^0.4",
|
||||||
"fakerphp/faker": "^1.20",
|
"fakerphp/faker": "^1.23",
|
||||||
"fig/log-test": "^1.1",
|
"fig/log-test": "^1.1",
|
||||||
"filp/whoops": "^2.14",
|
"filp/whoops": "^2.15",
|
||||||
"phpstan/phpstan": "^1.9",
|
"phpstan/phpstan": "^1.10",
|
||||||
"phpunit/phpunit": "^9.5",
|
"phpunit/phpunit": "^9.6",
|
||||||
"slevomat/coding-standard": "^8.6",
|
"slevomat/coding-standard": "^8.13",
|
||||||
"squizlabs/php_codesniffer": "^3.7",
|
"squizlabs/php_codesniffer": "^3.7",
|
||||||
"symfony/var-dumper": "^6.2"
|
"symfony/var-dumper": "^6.3"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -114,7 +114,8 @@ class ApplicationTest extends TestCase
|
||||||
{
|
{
|
||||||
$app = new Application();
|
$app = new Application();
|
||||||
|
|
||||||
$mockClassName = $this->getMockClass(ServiceProvider::class);
|
$mock = $this->createMock(ServiceProvider::class);
|
||||||
|
$mockClassName = get_class($mock);
|
||||||
$serviceProvider = $this->getMockBuilder($mockClassName)
|
$serviceProvider = $this->getMockBuilder($mockClassName)
|
||||||
->setConstructorArgs([$app])
|
->setConstructorArgs([$app])
|
||||||
->onlyMethods(['register'])
|
->onlyMethods(['register'])
|
||||||
|
|
|
@ -12,6 +12,7 @@ class RoutesFileTest extends TestCase
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @doesNotPerformAssertions
|
* @doesNotPerformAssertions
|
||||||
|
* @coversNothing
|
||||||
*/
|
*/
|
||||||
public function testLoadRoutes(): void
|
public function testLoadRoutes(): void
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue