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/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: true
matrix:
php: [ 8.2, 8.3 ]
laravel: [ 10.* ]
laravel: [ 10.*, 11.* ]

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A collection of helpful tools for building Laravel projects.

To get started, install Laravel DevTools via the Composer package manager:

```bash
```shell
composer require red-explosion/laravel-devtools --dev
```

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.0"
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"aws/aws-sdk-php": "^3.293",
"laravel/pint": "^1.10",
"orchestra/testbench": "^8.0",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.6",
"pestphp/pest-plugin-arch": "^2.1",
"phpstan/phpstan": "^1.10",
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ abstract class TestCase extends Orchestra
protected function getPackageProviders($app): array
{
return [
DevtoolsServiceProvider::class,
DevToolsServiceProvider::class,
];
}

Expand Down