{"id":15025005,"url":"https://github.com/nwidart/laravel-modules","last_synced_at":"2025-05-12T03:38:51.576Z","repository":{"id":37434775,"uuid":"62087941","full_name":"nWidart/laravel-modules","owner":"nWidart","description":"Module Management In Laravel","archived":false,"fork":false,"pushed_at":"2025-05-07T14:05:20.000Z","size":2270,"stargazers_count":5771,"open_issues_count":6,"forks_count":991,"subscribers_count":152,"default_branch":"master","last_synced_at":"2025-05-08T14:45:20.306Z","etag":null,"topics":["architecture","hacktoberfest","laravel","laravel-modules","php"],"latest_commit_sha":null,"homepage":"https://docs.laravelmodules.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nWidart.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"dcblogdev"}},"created_at":"2016-06-27T21:01:29.000Z","updated_at":"2025-05-08T13:35:09.000Z","dependencies_parsed_at":"2022-07-08T00:20:27.804Z","dependency_job_id":"9dcda8b3-7935-470e-ad8c-54abe8a79795","html_url":"https://github.com/nWidart/laravel-modules","commit_stats":{"total_commits":930,"total_committers":116,"mean_commits":8.017241379310345,"dds":0.3924731182795699,"last_synced_commit":"00b7bec598c886e7f99ef61caa5a7ebe3447f823"},"previous_names":[],"tags_count":113,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nWidart%2Flaravel-modules","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nWidart%2Flaravel-modules/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nWidart%2Flaravel-modules/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nWidart%2Flaravel-modules/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nWidart","download_url":"https://codeload.github.com/nWidart/laravel-modules/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253669173,"owners_count":21945062,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["architecture","hacktoberfest","laravel","laravel-modules","php"],"created_at":"2024-09-24T20:01:21.367Z","updated_at":"2025-05-12T03:38:51.538Z","avatar_url":"https://github.com/nWidart.png","language":"PHP","readme":"# Laravel-Modules\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/nwidart/laravel-modules.svg?style=flat-square)](https://packagist.org/packages/nwidart/laravel-modules)\n[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)\n[![Scrutinizer Coverage](https://img.shields.io/scrutinizer/coverage/g/nWidart/laravel-modules.svg?maxAge=86400\u0026style=flat-square)](https://scrutinizer-ci.com/g/nWidart/laravel-modules/?branch=master)\n[![Total Downloads](https://img.shields.io/packagist/dt/nwidart/laravel-modules.svg?style=flat-square)](https://packagist.org/packages/nwidart/laravel-modules)\n\n| **Laravel** | **laravel-modules** |\n|-------------|---------------------|\n| 5.4         | ^1.0                |\n| 5.5         | ^2.0                |\n| 5.6         | ^3.0                |\n| 5.7         | ^4.0                |\n| 5.8         | ^5.0                |\n| 6.0         | ^6.0                |\n| 7.0         | ^7.0                |\n| 8.0         | ^8.0                |\n| 9.0         | ^9.0                |\n| 10.0        | ^10.0               |\n| 11.0        | ^11.0               |\n| 12.0        | ^12.0               |\n\n`nwidart/laravel-modules` is a Laravel package created to manage your large Laravel app using modules. A Module is like a Laravel package, it has some views, controllers or models. This package is supported and tested in Laravel 11.\n\nThis package is a re-published, re-organised and maintained version of [pingpong/modules](https://github.com/pingpong-labs/modules), which isn't maintained anymore.\n\nWith one big bonus that the original package didn't have: **tests**.\n\n## upgrade\nTo upgrade to version V11 follow [Upgrade Guide](https://laravelmodules.com/docs/v11/upgrade) on official document.\n\n## Install\n\nTo install via Composer, run:\n\n``` bash\ncomposer require nwidart/laravel-modules\n```\n\nThe package will automatically register a service provider and alias.\n\nOptionally, publish the package's configuration file by running:\n\n``` bash\nphp artisan vendor:publish --provider=\"Nwidart\\Modules\\LaravelModulesServiceProvider\"\n```\n\n### Autoloading\n\nBy default, the module classes are not loaded automatically. You can autoload your modules by adding merge-plugin to the extra section:\n\n```json\n\"extra\": {\n    \"laravel\": {\n        \"dont-discover\": []\n    },\n    \"merge-plugin\": {\n        \"include\": [\n            \"Modules/*/composer.json\"\n        ]\n    }\n},\n```\n\n**Tip: don't forget to run `composer dump-autoload` afterwards.**\n\n## Documentation\n\nYou'll find installation instructions and full documentation on [https://laravelmodules.com/](https://laravelmodules.com/docs).\n\n## Demo\n\nYou can see a demo using Laravel Breeze at https://github.com/laravel-modules-com/breeze-demo\n\nThis is a complete application using Auth, Base and Profile modules.\n\n## Community\n\nWe also have a Discord community. [https://discord.gg/hkF7BRvRZK](https://discord.gg/hkF7BRvRZK) For quick help, ask questions in the appropriate channel.\n\n## Credits\n\n- [Nicolas Widart](https://github.com/nwidart)\n- [David Carr](https://github.com/dcblogdev)\n- [gravitano](https://github.com/gravitano)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","funding_links":["https://github.com/sponsors/dcblogdev"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnwidart%2Flaravel-modules","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnwidart%2Flaravel-modules","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnwidart%2Flaravel-modules/lists"}