Skip to content
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

Fix #29: Drop support for Symfony 4 and PHP 7 #30

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
run:
working-directory: self-update-fixture
container:
image: quay.io/pantheon-public/php-ci:v7.4
image: quay.io/pantheon-public/php-ci:v8.2
name: Run functional tests
steps:
- name: Checkout
Expand All @@ -18,9 +18,9 @@ jobs:
- name: Checkout self-update-fixtures
uses: actions/checkout@v2
with:
repository: consolidation/self-update-fixture
repository: danepowell/self-update-fixture
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Todo, switch this back to the consolidation origin and self-update branch once consolidation/self-update-fixture#3 is merged.

path: self-update-fixture
ref: self-update
ref: symfony-54
- name: Run Composer Install
run: composer install
- name: Add path repository
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
}
},
"require": {
"php": ">=5.5.0",
"php": "^8.1",
"composer/semver": "^3.2",
"symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
"symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
"symfony/console": "^5.4 || ^6.4",
"symfony/filesystem": "^5.4 || ^6.4"
danepowell marked this conversation as resolved.
Show resolved Hide resolved
},
"bin": [
"scripts/release"
Expand All @@ -35,7 +35,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
"dev-main": "3.x-dev"
}
}
}
Loading
Loading