|
| 1 | +{ |
| 2 | + "name": "kadevland/laravel-easy-modules", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Laravel module generator with extensive Artisan commands for rapid modular development. Customizable architecture patterns including Clean Architecture templates.", |
| 5 | + "type": "library", |
| 6 | + "keywords": [ |
| 7 | + "laravel", |
| 8 | + "laravel-package", |
| 9 | + "laravel-modules", |
| 10 | + "laravel-12", |
| 11 | + "module-generator", |
| 12 | + "modular", |
| 13 | + "clean-architecture", |
| 14 | + "artisan-commands", |
| 15 | + "scaffolding", |
| 16 | + "customizable", |
| 17 | + "flexible", |
| 18 | + "rapid-development", |
| 19 | + "code-organization", |
| 20 | + "developer-tools", |
| 21 | + "php" |
| 22 | + ], |
| 23 | + "homepage": "https://github.com/kadevland/laravel-easy-modules", |
| 24 | + "license": "MIT", |
| 25 | + "authors": [ |
| 26 | + { |
| 27 | + "name": "Kadevland", |
| 28 | + |
| 29 | + "homepage": "https://kaosland.net", |
| 30 | + "role": "Developer" |
| 31 | + } |
| 32 | + ], |
| 33 | + "support": { |
| 34 | + "issues": "https://github.com/kadevland/laravel-easy-modules/issues", |
| 35 | + "source": "https://github.com/kadevland/laravel-easy-modules", |
| 36 | + "docs": "https://github.com/kadevland/laravel-easy-modules#readme" |
| 37 | + }, |
| 38 | + "funding": [ |
| 39 | + { |
| 40 | + "type": "github", |
| 41 | + "url": "https://github.com/sponsors/kadevland" |
| 42 | + } |
| 43 | + ], |
| 44 | + "require": { |
| 45 | + "php": "^8.2", |
| 46 | + "illuminate/support": "^12.0", |
| 47 | + "illuminate/console": "^12.0", |
| 48 | + "illuminate/filesystem": "^12.0" |
| 49 | + }, |
| 50 | + "require-dev": { |
| 51 | + "orchestra/testbench": "^10.0", |
| 52 | + "phpunit/phpunit": "^11.0", |
| 53 | + "laravel/pint": "^1.0" |
| 54 | + }, |
| 55 | + "autoload": { |
| 56 | + "psr-4": { |
| 57 | + "Kadevland\\EasyModules\\": "src/" |
| 58 | + } |
| 59 | + }, |
| 60 | + "autoload-dev": { |
| 61 | + "psr-4": { |
| 62 | + "Kadevland\\EasyModules\\Tests\\": "tests/" |
| 63 | + } |
| 64 | + }, |
| 65 | + "scripts": { |
| 66 | + "test": "vendor/bin/phpunit", |
| 67 | + "test-coverage": "vendor/bin/phpunit --coverage-html coverage", |
| 68 | + "pint": "vendor/bin/pint", |
| 69 | + "pint-test": "vendor/bin/pint --test" |
| 70 | + }, |
| 71 | + "config": { |
| 72 | + "sort-packages": true, |
| 73 | + "allow-plugins": { |
| 74 | + "pestphp/pest-plugin": true |
| 75 | + } |
| 76 | + }, |
| 77 | + "extra": { |
| 78 | + "laravel": { |
| 79 | + "providers": [ |
| 80 | + "Kadevland\\EasyModules\\Providers\\EasyModulesServiceProvider" |
| 81 | + ] |
| 82 | + } |
| 83 | + }, |
| 84 | + "minimum-stability": "stable", |
| 85 | + "prefer-stable": true |
| 86 | +} |
0 commit comments