Skip to content

Commit

Permalink
🔧 dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
willpower232 committed Mar 2, 2024
1 parent 439fe03 commit 4b4f45e
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 16 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, "8.0", 7.4]
laravel: [9.*, 8.*, 7.*, 6.*]
php: [8.3, 8.2, 8.1, "8.0", 7.4]
laravel: [10.*, 9.*, 8.*, 7.*, 6.*]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
Expand All @@ -24,6 +26,14 @@ jobs:
- laravel: 6.*
testbench: 4.*
exclude:
- php: 8.3
laravel: 6.*
- php: 8.3
laravel: 7.*
- php: 8.2
laravel: 6.*
- php: 8.2
laravel: 7.*
- php: 8.1
laravel: 6.*
- php: 8.1
Expand Down
15 changes: 11 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"illuminate/support": "^6.0 || 7.0 || ^8.0 || ^9.0",
"illuminate/support": "^6.0 || 7.0 || ^8.0 || ^9.0 || ^10.0",
"willpower232/cloverparser": "^1.0"
},
"require-dev": {
"nunomaduro/larastan": "^0.7.6",
"orchestra/testbench": "^4.0 || ^5.1 || ^6.0 || ^7.0",
"nunomaduro/larastan": "^0.7.6 || ^2.9",
"orchestra/testbench": "^4.0 || ^5.1 || ^6.0 || ^7.0 || ^8.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^9.0",
"phpstan/extension-installer": "^1.3",
"phpunit/phpunit": "^10.0 || ^11.0",
"squizlabs/php_codesniffer": "^3.6"
},
"extra": {
Expand Down Expand Up @@ -47,5 +48,11 @@
"@analyse",
"@phpunit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}
3 changes: 0 additions & 3 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
includes:
- ./vendor/nunomaduro/larastan/extension.neon

parameters:
ignoreErrors:
- '#Class Laravel\\Lumen\\Application not found.#'
Expand Down
15 changes: 8 additions & 7 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
colors="true"
>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>

0 comments on commit 4b4f45e

Please sign in to comment.