Skip to content

Commit be41ce7

Browse files
committed
Up dependencies for 2.0
1 parent 3576356 commit be41ce7

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
php-version:
2222
- "8.0"
2323
- "8.1"
24+
- "8.2"
25+
- "8.3"
2426
dependencies:
2527
- "highest"
2628
optional-dependencies:

.github/workflows/php.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,3 @@ jobs:
2828
2929
- name: Install dependencies
3030
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

composer.json

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,17 @@
2121
],
2222
"require": {
2323
"php": "^8.0",
24-
"laravel-doctrine/orm": "^1.6",
24+
"laravel-doctrine/orm": "^2.0",
2525
"api-skeletons/laravel-api-problem": "^1.0.1"
2626
},
2727
"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",
3231
"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"
3435
},
3536
"extra": {
3637
"laravel": {
@@ -40,6 +41,16 @@
4041
}
4142
},
4243
"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+
}
4455
}
4556
}

0 commit comments

Comments
 (0)