Skip to content

adjust ci setup #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,6 @@ jobs:
fail-fast: false
matrix:
include:
- php-version: '7.2'
symfony-version: '^4.4'
monolog-version: '^1.0'

- php-version: '7.3'
symfony-version: '^5.4'
monolog-version: '^1.0'

- php-version: '7.4'
symfony-version: '^5.4'
monolog-version: '^2.0'
Expand All @@ -40,6 +32,14 @@ jobs:
symfony-version: '^6.0'
monolog-version: '^2.0'

- php-version: '8.2'
symfony-version: '^6.0'
monolog-version: '^2.0'

- php-version: '8.3'
symfony-version: '^6.0'
monolog-version: '^2.0'

steps:
- name: Checkout project
uses: actions/checkout@v4
Expand All @@ -59,7 +59,7 @@ jobs:
composer require symfony/symfony:${{ matrix.symfony-version }} --no-update

- name: Install composer dependencies
uses: ramsey/composer-install@v1
uses: ramsey/composer-install@v3
with:
dependency-versions: ${{matrix.dependency-versions}}

Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ CHANGELOG

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

Adjusted namespaces to match PHPCR.
* Adjusted namespaces to match PHPCR.
* Dropped support for PHP < 7.4
* Added tests for PHP 8.2, 8.3
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
],
"require": {
"php": "^7.2 || ^8.0",
"php": "^7.4 || ^8.0",
"phpcr/phpcr-migrations": "^1.1",
"phpcr/phpcr-implementation": "^2.1",
"doctrine/phpcr-bundle": "^1.3 || ^2.0",
Expand Down