File tree Expand file tree Collapse file tree 3 files changed +20
-13
lines changed Expand file tree Collapse file tree 3 files changed +20
-13
lines changed Original file line number Diff line number Diff line change 21
21
php-version :
22
22
- " 8.0"
23
23
- " 8.1"
24
+ - " 8.2"
25
+ - " 8.3"
24
26
dependencies :
25
27
- " highest"
26
28
optional-dependencies :
Original file line number Diff line number Diff line change 28
28
29
29
- name : Install dependencies
30
30
run : composer install --prefer-dist --no-progress
31
-
32
- # Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
33
- # Docs: https://getcomposer.org/doc/articles/scripts.md
34
-
35
- # - name: Run test suite
36
- # run: composer run-script test
Original file line number Diff line number Diff line change 21
21
],
22
22
"require" : {
23
23
"php" : " ^8.0" ,
24
- "laravel-doctrine/orm" : " ^1.6 " ,
24
+ "laravel-doctrine/orm" : " ^2.0 " ,
25
25
"api-skeletons/laravel-api-problem" : " ^1.0.1"
26
26
},
27
27
"require-dev" : {
28
- "doctrine/coding-standard" : " ^9.0" ,
29
- "doctrine/dbal" : " ^3.1.1" ,
30
- "doctrine/annotations" : " ^1.13.2" ,
31
- "orchestra/testbench" : " ^6.23" ,
28
+ "doctrine/coding-standard" : " ^12.0" ,
29
+ "doctrine/dbal" : " ^3.8" ,
30
+ "doctrine/annotations" : " ^2.0" ,
32
31
"phpunit/phpunit" : " ^9.5" ,
33
- "vimeo/psalm" : " ^4.15"
32
+ "vimeo/psalm" : " ^4.15" ,
33
+ "orchestra/testbench" : " ^7.41" ,
34
+ "php-parallel-lint/php-parallel-lint" : " ^1.4"
34
35
},
35
36
"extra" : {
36
37
"laravel" : {
40
41
}
41
42
},
42
43
"scripts" : {
43
- "test" : " vendor/bin/phpcs && vendor/bin/phpunit && vendor/bin/psalm"
44
+ "test" : [
45
+ " parallel-lint src/ test/" ,
46
+ " vendor/bin/phpcs" ,
47
+ " vendor/bin/psalm" ,
48
+ " vendor/bin/phpunit"
49
+ ]
50
+ },
51
+ "config" : {
52
+ "allow-plugins" : {
53
+ "dealerdirect/phpcodesniffer-composer-installer" : true
54
+ }
44
55
}
45
56
}
You can’t perform that action at this time.
0 commit comments