Skip to content

Commit 04ac3ae

Browse files
committed
Cleanup configs
1 parent 48ac764 commit 04ac3ae

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,18 @@ on: [ push, pull_request ]
44

55
jobs:
66
test:
7-
runs-on: ${{ matrix.os }}
7+
runs-on: ubuntu-latest
88
strategy:
99
fail-fast: true
1010
matrix:
11-
os: [ ubuntu-latest ]
1211
php: [ 8.3, 8.2]
1312
laravel: [ 10.* ]
1413
dependency-version: [ prefer-stable ]
1514
include:
1615
- laravel: 10.*
1716
testbench: 8.*
1817

19-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
18+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2019

2120
steps:
2221
- name: Checkout code

composer.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"keywords": [
66
"laravel",
77
"nova",
8-
"card",
8+
"laravel-nova-card",
99
"html",
1010
"text",
1111
"markdown"
@@ -16,14 +16,17 @@
1616
},
1717
"require-dev": {
1818
"interaction-design-foundation/coding-standard": "^0.2.0",
19-
"orchestra/testbench": "^8.0",
19+
"orchestra/testbench": "^8.3",
2020
"phpunit/phpunit": "^10.5 || ^11.0",
2121
"vimeo/psalm": "^5.22"
2222
},
2323
"repositories": [
2424
{
2525
"type": "composer",
26-
"url": "https://nova.laravel.com"
26+
"url": "https://nova.laravel.com",
27+
"only": [
28+
"laravel/nova"
29+
]
2730
}
2831
],
2932
"minimum-stability": "dev",
@@ -40,7 +43,8 @@
4043
},
4144
"config": {
4245
"allow-plugins": {
43-
"dealerdirect/phpcodesniffer-composer-installer": true
46+
"dealerdirect/phpcodesniffer-composer-installer": true,
47+
"ergebnis/composer-normalize": true
4448
},
4549
"sort-packages": true
4650
},

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
cacheDirectory=".phpunit.cache"
1111
backupStaticProperties="false">
1212
<testsuites>
13-
<testsuite name="Main Test Suite">
13+
<testsuite name="Test Suite">
1414
<directory>tests</directory>
1515
</testsuite>
1616
</testsuites>

0 commit comments

Comments
 (0)