Skip to content

Commit

Permalink
Merge pull request #14 from plesk/HOTFIX-downgrade-to-php73-v2
Browse files Browse the repository at this point in the history
[HOTFIX] Downgrade to PHP 7.3
  • Loading branch information
laurisb authored Jul 7, 2023
2 parents a363afe + fa2b309 commit 908961e
Show file tree
Hide file tree
Showing 3 changed files with 141 additions and 139 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
run: vendor/bin/rector -c dev-ops/rector-php-73.php

- name: Cleanup
run: rm -fr .git .github dev-ops .gitignore Makefile
run: |
composer remove rector/rector --no-progress
rm -fr .git .github dev-ops .gitignore Makefile
- name: Create binaries
working-directory: ../
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"beberlei/assert": "^3.3"
"php": ">=7.3",
"beberlei/assert": "^3.3",
"rector/rector": "^0.17"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0.1",
"illuminate/database": "^7",
"rector/rector": "^0.17"
"illuminate/database": "^7"
},
"config": {
"platform": {
"php": "7.4.0"
"php": "7.3.0"
},
"sort-packages": true
}
Expand Down
266 changes: 133 additions & 133 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 908961e

Please sign in to comment.