├── .env ├── .env.test ├── .gitignore ├── Makefile ├── README.md ├── bin ├── console └── phpunit ├── composer.json ├── composer.lock ├── config ├── api_platform │ ├── resources │ │ └── User.yaml │ └── serialization │ │ └── User.yaml ├── bootstrap.php ├── bundles.php ├── orm │ └── mapping │ │ └── User.orm.xml ├── packages │ ├── api_platform.yaml │ ├── cache.yaml │ ├── dev │ │ ├── hautelook_alice.yaml │ │ ├── monolog.yaml │ │ └── nelmio_alice.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── lexik_jwt_authentication.yaml │ ├── mailer.yaml │ ├── nelmio_cors.yaml │ ├── prod │ │ ├── doctrine.yaml │ │ ├── monolog.yaml │ │ └── routing.yaml │ ├── routing.yaml │ ├── security.yaml │ ├── test │ │ ├── framework.yaml │ │ ├── hautelook_alice.yaml │ │ ├── monolog.yaml │ │ ├── nelmio_alice.yaml │ │ ├── twig.yaml │ │ └── validator.yaml │ ├── twig.yaml │ └── validator.yaml ├── routes.yaml ├── routes │ ├── annotations.yaml │ ├── api_platform.yaml │ └── dev │ │ └── framework.yaml ├── secrets │ └── prod │ │ └── .gitignore └── services.yaml ├── docker-compose.yml.dist ├── docker ├── database │ ├── Dockerfile │ └── testing.sql ├── nginx │ ├── Dockerfile │ └── default.conf └── php │ ├── Dockerfile │ ├── php.ini │ ├── xdebug-linux.ini │ └── xdebug-macos.ini ├── docs └── endpoints.png ├── fixtures └── User.yaml ├── phpunit.xml.dist ├── public └── index.php ├── src ├── Api │ ├── Action │ │ └── User │ │ │ └── Register.php │ └── Listener │ │ ├── JsonExceptionResponseTransformerListener.php │ │ └── PreWrite │ │ ├── PreWriteListener.php │ │ └── UserPreWriteListener.php ├── Doctrine │ └── Extension │ │ └── DoctrineUserExtension.php ├── Entity │ └── User.php ├── Exception │ ├── Password │ │ └── PasswordException.php │ ├── Role │ │ ├── RequiredRoleToAddRoleAdminNotFoundException.php │ │ └── UnsupportedRoleException.php │ └── User │ │ ├── UserAlreadyExistException.php │ │ └── UserNotFoundException.php ├── Kernel.php ├── Migrations │ └── Version20191216131100.php ├── Repository │ ├── BaseRepository.php │ └── UserRepository.php ├── Security │ ├── Authorization │ │ └── Voter │ │ │ ├── BaseVoter.php │ │ │ └── UserVoter.php │ ├── Core │ │ └── User │ │ │ └── UserProvider.php │ ├── Role.php │ └── Validator │ │ └── Role │ │ ├── AreValidRoles.php │ │ ├── CanAddRoleAdmin.php │ │ └── RoleValidator.php ├── Service │ ├── Mailer │ │ ├── ClientRoute.php │ │ └── MailerService.php │ ├── Password │ │ └── EncoderService.php │ ├── Request │ │ └── RequestService.php │ └── User │ │ └── UserService.php └── Templating │ └── TwigTemplate.php ├── symfony.lock ├── templates ├── base.html.twig └── user │ └── register.twig └── tests ├── Functional ├── Api │ └── User │ │ ├── DeleteUserTest.php │ │ ├── GetUserTest.php │ │ ├── PutUserTest.php │ │ ├── RegisterUserTest.php │ │ └── UserTestBase.php └── TestBase.php ├── Unit ├── Security │ └── Validator │ │ └── Role │ │ ├── AreValidRolesTest.php │ │ └── CanAddRoleAdminTest.php └── Service │ └── User │ └── UserServiceTest.php └── bootstrap.php /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/.env -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/.env.test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/bin/console -------------------------------------------------------------------------------- /bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/bin/phpunit -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/composer.lock -------------------------------------------------------------------------------- /config/api_platform/resources/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/api_platform/resources/User.yaml -------------------------------------------------------------------------------- /config/api_platform/serialization/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/api_platform/serialization/User.yaml -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/orm/mapping/User.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/orm/mapping/User.orm.xml -------------------------------------------------------------------------------- /config/packages/api_platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/api_platform.yaml -------------------------------------------------------------------------------- /config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/cache.yaml -------------------------------------------------------------------------------- /config/packages/dev/hautelook_alice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/dev/hautelook_alice.yaml -------------------------------------------------------------------------------- /config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /config/packages/dev/nelmio_alice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/dev/nelmio_alice.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/lexik_jwt_authentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/lexik_jwt_authentication.yaml -------------------------------------------------------------------------------- /config/packages/mailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/mailer.yaml -------------------------------------------------------------------------------- /config/packages/nelmio_cors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/nelmio_cors.yaml -------------------------------------------------------------------------------- /config/packages/prod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/prod/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/prod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/prod/monolog.yaml -------------------------------------------------------------------------------- /config/packages/prod/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/prod/routing.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/hautelook_alice.yaml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../dev/hautelook_alice.yaml } 3 | -------------------------------------------------------------------------------- /config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/test/monolog.yaml -------------------------------------------------------------------------------- /config/packages/test/nelmio_alice.yaml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../dev/nelmio_alice.yaml } 3 | -------------------------------------------------------------------------------- /config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /config/packages/test/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/test/validator.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | default_path: '%kernel.project_dir%/templates' 3 | -------------------------------------------------------------------------------- /config/packages/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/packages/validator.yaml -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/routes/annotations.yaml -------------------------------------------------------------------------------- /config/routes/api_platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/routes/api_platform.yaml -------------------------------------------------------------------------------- /config/routes/dev/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/routes/dev/framework.yaml -------------------------------------------------------------------------------- /config/secrets/prod/.gitignore: -------------------------------------------------------------------------------- 1 | /prod.decrypt.private.php 2 | -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/config/services.yaml -------------------------------------------------------------------------------- /docker-compose.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/docker-compose.yml.dist -------------------------------------------------------------------------------- /docker/database/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/docker/database/Dockerfile -------------------------------------------------------------------------------- /docker/database/testing.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE IF NOT EXISTS `database_test`; 2 | -------------------------------------------------------------------------------- /docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/docker/nginx/Dockerfile -------------------------------------------------------------------------------- /docker/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/docker/nginx/default.conf -------------------------------------------------------------------------------- /docker/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/docker/php/Dockerfile -------------------------------------------------------------------------------- /docker/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/docker/php/php.ini -------------------------------------------------------------------------------- /docker/php/xdebug-linux.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/docker/php/xdebug-linux.ini -------------------------------------------------------------------------------- /docker/php/xdebug-macos.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/docker/php/xdebug-macos.ini -------------------------------------------------------------------------------- /docs/endpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/docs/endpoints.png -------------------------------------------------------------------------------- /fixtures/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/fixtures/User.yaml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/public/index.php -------------------------------------------------------------------------------- /src/Api/Action/User/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Api/Action/User/Register.php -------------------------------------------------------------------------------- /src/Api/Listener/JsonExceptionResponseTransformerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Api/Listener/JsonExceptionResponseTransformerListener.php -------------------------------------------------------------------------------- /src/Api/Listener/PreWrite/PreWriteListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Api/Listener/PreWrite/PreWriteListener.php -------------------------------------------------------------------------------- /src/Api/Listener/PreWrite/UserPreWriteListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Api/Listener/PreWrite/UserPreWriteListener.php -------------------------------------------------------------------------------- /src/Doctrine/Extension/DoctrineUserExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Doctrine/Extension/DoctrineUserExtension.php -------------------------------------------------------------------------------- /src/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Entity/User.php -------------------------------------------------------------------------------- /src/Exception/Password/PasswordException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Exception/Password/PasswordException.php -------------------------------------------------------------------------------- /src/Exception/Role/RequiredRoleToAddRoleAdminNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Exception/Role/RequiredRoleToAddRoleAdminNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/Role/UnsupportedRoleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Exception/Role/UnsupportedRoleException.php -------------------------------------------------------------------------------- /src/Exception/User/UserAlreadyExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Exception/User/UserAlreadyExistException.php -------------------------------------------------------------------------------- /src/Exception/User/UserNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Exception/User/UserNotFoundException.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Migrations/Version20191216131100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Migrations/Version20191216131100.php -------------------------------------------------------------------------------- /src/Repository/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Repository/BaseRepository.php -------------------------------------------------------------------------------- /src/Repository/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Repository/UserRepository.php -------------------------------------------------------------------------------- /src/Security/Authorization/Voter/BaseVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Security/Authorization/Voter/BaseVoter.php -------------------------------------------------------------------------------- /src/Security/Authorization/Voter/UserVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Security/Authorization/Voter/UserVoter.php -------------------------------------------------------------------------------- /src/Security/Core/User/UserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Security/Core/User/UserProvider.php -------------------------------------------------------------------------------- /src/Security/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Security/Role.php -------------------------------------------------------------------------------- /src/Security/Validator/Role/AreValidRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Security/Validator/Role/AreValidRoles.php -------------------------------------------------------------------------------- /src/Security/Validator/Role/CanAddRoleAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Security/Validator/Role/CanAddRoleAdmin.php -------------------------------------------------------------------------------- /src/Security/Validator/Role/RoleValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Security/Validator/Role/RoleValidator.php -------------------------------------------------------------------------------- /src/Service/Mailer/ClientRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Service/Mailer/ClientRoute.php -------------------------------------------------------------------------------- /src/Service/Mailer/MailerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Service/Mailer/MailerService.php -------------------------------------------------------------------------------- /src/Service/Password/EncoderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Service/Password/EncoderService.php -------------------------------------------------------------------------------- /src/Service/Request/RequestService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Service/Request/RequestService.php -------------------------------------------------------------------------------- /src/Service/User/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Service/User/UserService.php -------------------------------------------------------------------------------- /src/Templating/TwigTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/src/Templating/TwigTemplate.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/templates/base.html.twig -------------------------------------------------------------------------------- /templates/user/register.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/templates/user/register.twig -------------------------------------------------------------------------------- /tests/Functional/Api/User/DeleteUserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/tests/Functional/Api/User/DeleteUserTest.php -------------------------------------------------------------------------------- /tests/Functional/Api/User/GetUserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/tests/Functional/Api/User/GetUserTest.php -------------------------------------------------------------------------------- /tests/Functional/Api/User/PutUserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/tests/Functional/Api/User/PutUserTest.php -------------------------------------------------------------------------------- /tests/Functional/Api/User/RegisterUserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/tests/Functional/Api/User/RegisterUserTest.php -------------------------------------------------------------------------------- /tests/Functional/Api/User/UserTestBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/tests/Functional/Api/User/UserTestBase.php -------------------------------------------------------------------------------- /tests/Functional/TestBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/tests/Functional/TestBase.php -------------------------------------------------------------------------------- /tests/Unit/Security/Validator/Role/AreValidRolesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/tests/Unit/Security/Validator/Role/AreValidRolesTest.php -------------------------------------------------------------------------------- /tests/Unit/Security/Validator/Role/CanAddRoleAdminTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/tests/Unit/Security/Validator/Role/CanAddRoleAdminTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/User/UserServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/tests/Unit/Service/User/UserServiceTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwilde/sf5-api-platform-boilerplate/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------