Skip to content

Commit

Permalink
Merge pull request #3 from YieldStudio/feature/add-laravel-9-support
Browse files Browse the repository at this point in the history
feat: Add Laravel 9 support
  • Loading branch information
JamesHemery authored Jul 22, 2024
2 parents 844bf03 + 3989c0e commit 1b60228
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ "8.1", "8.2" ]
laravel: [ "^9.0", "^10.0" ]
php: ["8.1", "8.2"]
laravel: ["^9.0", "^10.0", "^11"]
dependency-version: [ prefer-lowest, prefer-stable ]
exclude:
- laravel: 11
php: 8.1

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@ class OrderConfirmation extends Notification

To run the tests, just run `composer install` and `composer test`.

## Contact us

[<img src="https://github.com/YieldStudio/.github/blob/main/assets/banner.png" width="419px" />](https://www.yieldstudio.fr/contact)

Our team at Yield Studio is ready to welcome you and make every interaction an exceptional experience. You can [contact us](https://www.yieldstudio.fr/contact).


## Changelog

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
Expand All @@ -118,6 +125,7 @@ If you've found a bug regarding security please mail [contact@yieldstudio.fr](ma

- [David Tang](https://github.com/dtangdev)
- [James Hemery](https://github.com/jameshemery)
- [Arthur Monney](https://github.com/mckenziearts)

## License

Expand Down
12 changes: 9 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,25 @@
"email": "david@yieldstudio.fr",
"homepage": "https://yieldstudio.fr",
"role": "Developer"
},
{
"name": "Arthur Monney",
"email": "arthur.monney@yieldstudio.fr",
"homepage": "https://yieldstudio.fr",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2",
"illuminate/database": "^10|^11",
"illuminate/support": "^10|^11"
"illuminate/database": "^9|^10|^11",
"illuminate/support": "^9|^10|^11"
},
"require-dev": {
"ciareis/bypass": "^1.0",
"laravel/pint": "^1.16",
"orchestra/testbench": "^7.22|^8.1",
"pestphp/pest": "^2.34",
"phpunit/phpunit": "^10.5"
"phpunit/phpunit": "^9.5|^10.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 1b60228

Please sign in to comment.