artisanコマンド名、copyrightをwinasに変更
言語対応(英語、日本語)
Showing
.gitignore
0 → 100644
LICENSE
0 → 100644
composer.json
0 → 100644
| { | |||
| "name": "infyomlabs/laravel-generator", | |||
| "type": "library", | |||
| "description": "InfyOm Laravel Generator", | |||
| "keywords": [ | |||
| "laravel", | |||
| "api", | |||
| "model", | |||
| "request", | |||
| "migration", | |||
| "model", | |||
| "crud", | |||
| "repository", | |||
| "view", | |||
| "test", | |||
| "generator", | |||
| "swagger" | |||
| ], | |||
| "license": "MIT", | |||
| "authors": [{ | |||
| "name": "Mitul Golakiya", | |||
| "email": "me@mitul.me" | |||
| }], | |||
| "require": { | |||
| "php": "^8.1.0", | |||
| "illuminate/support": "^10.0", | |||
| "illuminate/console": "^10.0", | |||
| "laracasts/flash": "^3.2.2", | |||
| "laravelcollective/html": "^6.4", | |||
| "symfony/var-exporter": "^6.2.5" | |||
| }, | |||
| "require-dev": { | |||
| "phpunit/phpunit": "^10.0.7", | |||
| "mockery/mockery": "^1.5.1", | |||
| "orchestra/testbench": "^8.0.0", | |||
| "pestphp/pest": "2.x-dev", | |||
| "pestphp/pest-plugin-laravel": "2.x-dev" | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "InfyOm\\Generator\\": "src/" | |||
| }, | |||
| "files": [ | |||
| "src/helpers.php" | |||
| ] | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "Tests\\": "tests/" | |||
| } | |||
| }, | |||
| "extra": { | |||
| "laravel": { | |||
| "providers": [ | |||
| "\\InfyOm\\Generator\\InfyOmGeneratorServiceProvider" | |||
| ] | |||
| } | |||
| }, | |||
| "funding": [{ | |||
| "type": "opencollective", | |||
| "url": "https://opencollective.com/infyomlabs" | |||
| }], | |||
| "minimum-stability": "dev", | |||
| "prefer-stable": true, | |||
| "config": { | |||
| "allow-plugins": { | |||
| "pestphp/pest-plugin": true | |||
| } | |||
| } | |||
| } |
config/laravel_generator.php
0 → 100644
locale/en/auth.php
0 → 100644
locale/en/crud.php
0 → 100644
locale/en/messages.php
0 → 100644
locale/ja/auth.php
0 → 100644
locale/ja/crud.php
0 → 100644
locale/ja/messages.php
0 → 100644
phpunit.xml.dist
0 → 100644
samples/fields_sample.json
0 → 100644
src/Commands/BaseCommand.php
0 → 100644
src/Common/FileSystem.php
0 → 100644
src/DTOs/GeneratorPaths.php
0 → 100644
src/DTOs/ModelNames.php
0 → 100644
src/Facades/FileUtils.php
0 → 100644
src/Request/APIRequest.php
0 → 100644
src/Utils/ResponseUtil.php
0 → 100644
src/Utils/SchemaUtil.php
0 → 100644
src/helpers.php
0 → 100644
tests/Pest.php
0 → 100644
tests/TestCase.php
0 → 100644
tests/TestHelpers.php
0 → 100644
views/api/routes.blade.php
0 → 100644
views/migration.blade.php
0 → 100644
views/model/model.blade.php
0 → 100644
views/model/seeder.blade.php
0 → 100644
Please register or sign in to comment