Skip to content

Commit 56a60eb

Browse files
committed
.
1 parent a3bc01e commit 56a60eb

16 files changed

+1905
-531
lines changed

.env.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# define your env variables for the test env here
2-
KERNEL_CLASS='PBaszak\ExtendedApiDocBundle\Tests\Kernel'
2+
KERNEL_CLASS='PBaszak\ExtendedApiDoc\Tests\Kernel'
33
APP_SECRET='$ecretf0rt3st'
44
SYMFONY_DEPRECATIONS_HELPER=999999
55
PANTHER_APP_ENV=panther

bin/console

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env php
22
<?php
33

4-
use PBaszak\ExtendedApiDocBundle\Tests\Kernel;
4+
use PBaszak\ExtendedApiDoc\Tests\Kernel;
55
use Symfony\Bundle\FrameworkBundle\Console\Application;
66

77
if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {

composer.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,18 @@
2020
"php": ">=8.2",
2121
"ext-ctype": "*",
2222
"ext-iconv": "*",
23+
"nelmio/api-doc-bundle": "^4.20",
24+
"symfony/asset": "^6",
2325
"symfony/console": "^6",
2426
"symfony/dotenv": "^6",
2527
"symfony/flex": "^2",
2628
"symfony/framework-bundle": "^6",
29+
"symfony/http-kernel": "^6",
2730
"symfony/runtime": "^6",
31+
"symfony/twig-bundle": "^6",
2832
"symfony/uid": "^6",
29-
"symfony/yaml": "^6"
33+
"symfony/yaml": "^6",
34+
"twig/extra-bundle": "^3.8"
3035
},
3136
"require-dev": {
3237
"friendsofphp/php-cs-fixer": "*",
@@ -46,12 +51,12 @@
4651
},
4752
"autoload": {
4853
"psr-4": {
49-
"PBaszak\\ExtendedApiDocBundle\\": "src/"
54+
"PBaszak\\ExtendedApiDoc\\": "src/"
5055
}
5156
},
5257
"autoload-dev": {
5358
"psr-4": {
54-
"PBaszak\\ExtendedApiDocBundle\\Tests\\": "tests/"
59+
"PBaszak\\ExtendedApiDoc\\Tests\\": "tests/"
5560
}
5661
},
5762
"scripts": {

0 commit comments

Comments
 (0)