Skip to content

Commit 1fe91c6

Browse files
authored
Merge pull request #1 from phpcr/ci
adjust ci setup
2 parents 7a83409 + fa817d8 commit 1fe91c6

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

.github/workflows/ci.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,6 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
include:
23-
- php-version: '7.2'
24-
symfony-version: '^4.4'
25-
monolog-version: '^1.0'
26-
27-
- php-version: '7.3'
28-
symfony-version: '^5.4'
29-
monolog-version: '^1.0'
30-
3123
- php-version: '7.4'
3224
symfony-version: '^5.4'
3325
monolog-version: '^2.0'
@@ -40,6 +32,14 @@ jobs:
4032
symfony-version: '^6.0'
4133
monolog-version: '^2.0'
4234

35+
- php-version: '8.2'
36+
symfony-version: '^6.0'
37+
monolog-version: '^2.0'
38+
39+
- php-version: '8.3'
40+
symfony-version: '^6.0'
41+
monolog-version: '^2.0'
42+
4343
steps:
4444
- name: Checkout project
4545
uses: actions/checkout@v4
@@ -59,7 +59,7 @@ jobs:
5959
composer require symfony/symfony:${{ matrix.symfony-version }} --no-update
6060
6161
- name: Install composer dependencies
62-
uses: ramsey/composer-install@v1
62+
uses: ramsey/composer-install@v3
6363
with:
6464
dependency-versions: ${{matrix.dependency-versions}}
6565

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ CHANGELOG
66

77
Initial release after renaming from `dantleech/phpcr-migrations-bundle` to `phpcr/phpcr-migrations-bundle`.
88

9-
Adjusted namespaces to match PHPCR.
9+
* Adjusted namespaces to match PHPCR.
10+
* Dropped support for PHP < 7.4
11+
* Added tests for PHP 8.2, 8.3

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414
],
1515
"require": {
16-
"php": "^7.2 || ^8.0",
16+
"php": "^7.4 || ^8.0",
1717
"phpcr/phpcr-migrations": "^1.1",
1818
"phpcr/phpcr-implementation": "^2.1",
1919
"doctrine/phpcr-bundle": "^1.3 || ^2.0",

0 commit comments

Comments
 (0)