Commit ee4b26c8 authored by a.chevordin@iq-adv.ru's avatar a.chevordin@iq-adv.ru
Browse files

Auth User Feature

parent 2420ecea
Loading
Loading
Loading
Loading

.env.test

0 → 100644
+6 −0
Original line number Diff line number Diff line
# define your env variables for the test env here
KERNEL_CLASS='App\Kernel'
APP_SECRET='$ecretf0rt3st'
SYMFONY_DEPRECATIONS_HELPER=999999
PANTHER_APP_ENV=panther
PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots
+5 −0
Original line number Diff line number Diff line
@@ -14,3 +14,8 @@
###> lexik/jwt-authentication-bundle ###
/config/jwt/*.pem
###< lexik/jwt-authentication-bundle ###

###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###
+9 −1
Original line number Diff line number Diff line
@@ -23,11 +23,14 @@
        "doctrine/doctrine-migrations-bundle": "^3.3",
        "doctrine/orm": "^2.17",
        "lexik/jwt-authentication-bundle": "^2.19",
        "ramsey/uuid": "^4.7",
        "symfony/console": "6.3.*",
        "symfony/dotenv": "6.3.*",
        "symfony/flex": "^2",
        "symfony/framework-bundle": "6.3.*",
        "symfony/runtime": "6.3.*",
        "symfony/http-foundation": "6.3.*",
        "symfony/password-hasher": "6.3.*",
        "symfony/runtime": "*",
        "symfony/yaml": "6.3.*"
    },
    "config": {
@@ -55,5 +58,10 @@
            "allow-contrib": false,
            "require": "6.3.*"
        }
    },
    "require-dev": {
        "doctrine/doctrine-fixtures-bundle": "^3.5",
        "phpunit/phpunit": "^10.4",
        "symfony/maker-bundle": "^1.51"
    }
}
+2174 −2

File changed.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Diff line number Diff line
@@ -6,4 +6,6 @@ return [
    Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],
    Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
    Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
    Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
    Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
];
Loading