Skip to content

Commit b22807a

Browse files
oprypkhantcpackage-sync[bot]
authored andcommitted
chore: Sync changes from the template
1 parent 1c9d2cb commit b22807a

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: true
1919
matrix:
2020
php: [8.2, 8.3]
21-
test-bench: [^8.0, ^9.0, ^10.0]
21+
test-bench: [^8.0, ^9.0]
2222

2323
runs-on: packages
2424
container: chialab/php:${{ matrix.php }}
@@ -80,7 +80,7 @@ jobs:
8080
fail-fast: true
8181
matrix:
8282
php: [8.2, 8.3]
83-
test-bench: [^8.0, ^9.0, ^10.0]
83+
test-bench: [^8.0, ^9.0]
8484

8585
runs-on: packages
8686
container: chialab/php:${{ matrix.php }}

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
"license": "MIT",
55
"require": {
66
"php": ">=8.2",
7-
"illuminate/contracts": "^10.0|^11.0|^12.0",
7+
"illuminate/contracts": "^10.0|^11.0",
88
"illuminate/console": "^9.0|^10.0|^11.0|^12.0",
99
"illuminate/database": "^9.0|^10.0|^11.0|^12.0",
1010
"illuminate/support": "^9.0|^10.0|^11.0|^12.0"
1111
},
1212
"require-dev": {
13-
"pestphp/pest": "^2.8|^3.7",
13+
"pestphp/pest": "^2.8",
1414
"php-cs-fixer/shim": "^3.54",
1515
"tenantcloud/php-cs-fixer-rule-sets": "~3.3.1",
16-
"phpstan/phpstan": "~1.10.21|^2.1",
17-
"phpstan/phpstan-phpunit": "^1.3|^2.0",
18-
"phpstan/phpstan-webmozart-assert": "^1.2|^2.0",
19-
"phpstan/phpstan-mockery": "^1.1|^2.0",
20-
"nunomaduro/larastan": "^2.6|^3.1",
21-
"orchestra/testbench": "^8.5|^9.0|^10.0"
16+
"phpstan/phpstan": "~1.10.21",
17+
"phpstan/phpstan-phpunit": "^1.3",
18+
"phpstan/phpstan-webmozart-assert": "^1.2",
19+
"phpstan/phpstan-mockery": "^1.1",
20+
"nunomaduro/larastan": "^2.6",
21+
"orchestra/testbench": "^8.5|^9.0"
2222
},
2323
"autoload": {
2424
"psr-4": {

phpunit.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
colors="true"
55
cacheDirectory=".phpunit.cache">
66
<testsuites>
7-
<testsuite name="Feature">
8-
<directory suffix="Test.php">./tests/Feature</directory>
7+
<testsuite name="Test Suite">
8+
<directory>./tests</directory>
99
</testsuite>
1010
</testsuites>
1111
<coverage/>
@@ -16,7 +16,6 @@
1616
</source>
1717
<php>
1818
<env name="APP_ENV" value="testing"/>
19-
<env name="DB_CONNECTION" value="sqlite"/>
20-
<env name="DB_DATABASE" value=":memory:"/>
19+
<env name="DB_CONNECTION" value="testing"/>
2120
</php>
2221
</phpunit>

0 commit comments

Comments
 (0)