Skip to content

Commit

Permalink
Merge pull request #78 from dcblogdev/drop-support-for-versions-less-…
Browse files Browse the repository at this point in the history
…than-laravel10

dropped support for older versions
  • Loading branch information
dcblogdev authored May 12, 2024
2 parents 838e112 + fe52dbf commit e129c9d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .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.1', '8.2', '8.3']
php-versions: ['8.2', '8.3']

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

Expand All @@ -27,7 +27,7 @@ jobs:
run: composer validate

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
run: composer install --prefer-dist --no-progress

- name: Run Pint
run: ./vendor/bin/pint --test
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@
"Microsoft365"
],
"require": {
"illuminate/support": "5.5.x|5.6.x|5.7.x|5.8.x|6.x|7.x|8.x|9.x|^10.0|^11.0",
"league/oauth2-client": "^1.4|^2",
"guzzlehttp/guzzle": "6.x|7.x",
"illuminate/support": "^10.0|^11.0",
"league/oauth2-client": "^2",
"guzzlehttp/guzzle": "7.x",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-curl": "*",
"shitware-ltd/flysystem-msgraph": "^1.0",
"microsoft/microsoft-graph": "^1.110"
},
"require-dev": {
"orchestra/testbench": "8.0",
"pestphp/pest": "^v1.0|^v2.34",
"pestphp/pest-plugin-laravel": "^1.0|v2.4",
"orchestra/testbench": "v8.0|v9.0",
"pestphp/pest": "^v2.34",
"pestphp/pest-plugin-laravel": "v2.4",
"laravel/pint": "^1.13",
"mockery/mockery": "^1.6",
"pestphp/pest-plugin-parallel": "^1.2"
"pestphp/pest-plugin-type-coverage": "^2.8"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit e129c9d

Please sign in to comment.