asxer / laravel-entity-generator
1.4.2
2020-10-19 05:45 UTC
Requires
- php: ^7.1.3
- asxer/laravel-helpers: >=1.5.1
- laravel/framework: >=5.4.0
- minime/annotations: 2.3.1
- tymon/jwt-auth: 0.5.* || 1.0.*@beta
Requires (Dev)
- fzaninotto/faker: ~1.4
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~4.0
README
Laravel-Entity-Generator - 此生成器用于为新的实体创建标准类栈。
安装
composer require asxer/laravel-entity-generator: 1.*
将 Asxer\Support\EntityGeneratorServiceProvider::class
添加到 app/config/app.php
中的 'providers' 变量,然后发布。
php artisan vendor:publish
示例
php artisan make:entity EntityName \
-S required_string_field \
--integer=not_required_integer_field \
--boolean-required=required_boolean_field \
-j data \
-e AnotherEntityName
文档
artisan make:entity 命令 - 向项目中添加新实体。
语法: artisan make:entity [名称] [标志]
[名称] - 实体的名称。
[标志]
-i|--integer : Add integer field to entity.
-I|--integer-required : Add required integer field to entity. If you want to specify default value you have to do it manually.
-f|--float : Add float field to entity.
-F|--float-required : Add required float field to entity. If you want to specify default value you have to do it manually.
-s|--string : Add string field to entity. Default type is VARCHAR(255) but you can change it manually in migration.
-S|--string-required : Add required string field to entity. If you want to specify default value ir size you have to do it manually.
-b|--boolean : Add boolean field to entity.
-B|--boolean-required : Add boolean field to entity. If you want to specify default value you have to do it manually.
-t|--timestamp : Add timestamp field to entity.
-T|--timestamp-required : Add timestamp field to entity. If you want to specify default value you have to do it manually.
-j|--json : Add json field to entity.
-a|--has-one : Set hasOne relations between you entity and existed entity.
-A|--has-many : Set hasMany relations between you entity and existed entity.
-e|--belongs-to : Set belongsTo relations between you entity and existed entity.
-E|--belongs-to-many : Set belongsToMany relations between you entity and existed entity.
--without-model : Set this flag if you already have model for this entity. Command will find it. This flag is a lower priority than --only-model.
--without-repository : Set if you don't want to use Data Access Level. Created Service will use special trait for controlling entity. This flag is a lower priority than --without-repository.
--without-service : Set this flag if you don't want to create service.
--without-controller : Set this flag if you don't want to create controller. Automatically requests and tests will not create too.
--without-migration : Set this flag if you already have table on db. This flag is a lower priority than --only-migration.
--without-requests : Set this flag if you don't want to create requests to you controller.
--without-factory : Set this flag if you don't want to create factory.
--without-tests : Set this flag if you don't want to create tests. This flag is a lower priority than --only-tests.
--without-seeder : Set this flag if you don't want to create seeder.
--only-model : Set this flag if you want to create only model. This flag is a higher priority than --without-model, --only-migration, --only-tests and --only-repository.
--only-repository : Set this flag if you want to create only repository. This flag is a higher priority than --without-repository, --only-tests and --only-migration.
--only-service : Set this flag if you want to create only service.
--only-controller : Set this flag if you want to create only controller.
--only-requests : Set this flag if you want to create only requests.
--only-migration : Set this flag if you want to create only repository. This flag is a higher priority than --without-migration and --only-tests.
--only-factory : Set this flag if you want to create only factory. This flag is a higher priority than --without-factory.
--only-tests : Set this flag if you want to create only tests. This flag is a higher priority than --without-tests.
--only-seeder : Set this flag if you want to create only seeder.
发布说明
1.3
从1.3版本开始,您需要在config/entity-generator.php中添加以下数据
'paths' => [ ... // your old data 'seeds' => 'database/seeds', 'database_seeder' => 'database/seeds/DatabaseSeeder.php', 'translations' => 'resources/lang/en/validation.php' ], 'stubs' => [ ... // your old data 'empty_factory' => 'entity-generator::empty_factory', 'translation_not_found' => 'entity-generator::translation_not_found', 'validation' => 'entity-generator::validation', 'seeder' => 'entity-generator::seeder', 'database_empty_seeder' => 'entity-generator::database_seed_empty' ]