diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 9dae13777..2063ee5e6 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -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 }} diff --git a/README.md b/README.md index 0a32164d5..a7c279aa6 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ | 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. @@ -26,9 +27,6 @@ This package is a re-published, re-organised and maintained version of [pingpong 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: diff --git a/composer.json b/composer.json index 40908a343..9223f8153 100644 --- a/composer.json +++ b/composer.json @@ -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" @@ -58,7 +58,7 @@ } }, "branch-alias": { - "dev-master": "12.x-dev" + "dev-master": "13.x-dev" } }, "config": {