Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
php-versions: ['8.2', '8.3', '8.4', '8.5']
php-versions: ['8.3', '8.4', '8.5']

name: PHP ${{ matrix.php-versions }}

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,14 @@
| 10.0 | ^10.0 |
| 11.0 | ^11.0 |
| 12.0 | ^12.0 |
| 13.0 | ^13.0 |

`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.

This package is a re-published, re-organised and maintained version of [pingpong/modules](https://github.com/pingpong-labs/modules), which isn't maintained anymore.

With one big bonus that the original package didn't have: **tests**.

## upgrade
To upgrade to version V12 follow [Upgrade Guide](https://laravelmodules.com/docs/12/getting-started/upgrade) on official document.

## Install

To install via Composer, run:
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
}
],
"require": {
"php": ">=8.2",
"php": "^8.3",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"wikimedia/composer-merge-plugin": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^11.5.3|^12.0.",
"phpunit/phpunit": "^12.0.",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^v10.0|^11.0",
"orchestra/testbench": "^11.0",
"friendsofphp/php-cs-fixer": "^v3.52",
"laravel/framework": "^v12.0|^13.0",
"laravel/framework": "^13.0",
"laravel/pint": "^1.16",
"spatie/phpunit-snapshot-assertions": "^5.0",
"phpstan/phpstan": "^2.0"
Expand Down Expand Up @@ -58,7 +58,7 @@
}
},
"branch-alias": {
"dev-master": "12.x-dev"
"dev-master": "13.x-dev"
}
},
"config": {
Expand Down
Loading