diff --git a/Symfony%3A-Maker.md b/Symfony%3A-Maker.md new file mode 100644 index 0000000..7e38599 --- /dev/null +++ b/Symfony%3A-Maker.md @@ -0,0 +1,30 @@ +To isntall Maker for Symfony, to this command: +``` +composer require maker --dev +``` + +Các lệnh với maker: +``` + make + make:auth Creates a Guard authenticator of different flavors + make:command Creates a new console command class + make:controller Creates a new controller class + make:crud Creates CRUD for Doctrine entity class + make:docker:database Adds a database container to your docker-compose.yaml file + make:entity Creates or updates a Doctrine entity class, and optionally an API Platform resource + make:fixtures Creates a new class to load Doctrine fixtures + make:form Creates a new form class + make:message Creates a new message and handler + make:messenger-middleware Creates a new messenger middleware + make:migration Creates a new migration based on database changes + make:registration-form Creates a new registration form system + make:reset-password Create controller, entity, and repositories for use with symfonycasts/reset-password-bundle + make:serializer:encoder Creates a new serializer encoder class + make:serializer:normalizer Creates a new serializer normalizer class + make:subscriber Creates a new event subscriber class + make:test [make:unit-test|make:functional-test] Creates a new test class + make:twig-extension Creates a new Twig extension class + make:user Creates a new security user class + make:validator Creates a new validator and constraint class + make:voter Creates a new security voter class + ```