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