Skip to content

Commit 6c867ea

Browse files
authored
[1.x] Drop php74 (#321)
* chore(deps): deop php7.4 * Update pull_request_template.md
1 parent 7c1e2f4 commit 6c867ea

File tree

4 files changed

+402
-316
lines changed

4 files changed

+402
-316
lines changed

.github/pull_request_template.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
| Q | A |
2-
|---------------|--------------------------------------------------------------------------|
3-
| Branch? | master for breaking changes, and `release/y.x` for bc <!-- see below --> |
4-
| Bug fix? | yes/no |
5-
| New feature? | yes/no <!-- please update /CHANGELOG.md files --> |
6-
| Deprecations? | yes/no <!-- please update UPGRADE-*.md and /CHANGELOG.md files --> |
7-
| Tickets | Fix #... <!-- prefix each issue number with "Fix #", --> |
8-
| License | MIT |
1+
| Q | A |
2+
|---------------|--------------------------------------------------------------------|
3+
| Branch? | 1.x or main for bc <!-- see below --> |
4+
| Bug fix? | yes/no |
5+
| New feature? | yes/no <!-- please update /CHANGELOG.md files --> |
6+
| Deprecations? | yes/no <!-- please update UPGRADE-*.md and /CHANGELOG.md files --> |
7+
| Tickets | Fix #... <!-- prefix each issue number with "Fix #", --> |
8+
| License | MIT |
99

1010
<!--
1111
Replace this notice with a short README for your feature/bugfix.
1212
This will help reviewers and should be a good start for the documentation.
1313
1414
For bug fixes and new features, that does not break BC, please base your PR
15-
on the `release/y.x` branch. For BC breaks, please base your PR on the
16-
`master` branch.
15+
on the `1.x` branch. For BC breaks, please base your PR on the
16+
`main` branch.
1717
1818
Always add tests and ensure they pass.
1919
-->

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
dependencies:
1414
- "locked"
1515
php-version:
16-
- "7.4"
1716
- "8.0"
1817
- "8.1"
1918
- "8.2"
@@ -54,7 +53,7 @@ jobs:
5453
uses: "shivammathur/setup-php@v2"
5554
with:
5655
coverage: "pcov"
57-
php-version: "8.1"
56+
php-version: "8.0"
5857
ini-values: memory_limit=-1
5958
extensions: sodium, fileinfo
6059

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
}
1818
],
1919
"require": {
20-
"php": ">=7.4",
20+
"php": ">=8.0",
2121
"ext-json": "*",
2222
"ext-openssl": "*",
23-
"imdhemy/appstore-iap": "^1.5",
24-
"imdhemy/google-play-billing": "^1.2",
23+
"imdhemy/appstore-iap": "^1.6",
24+
"imdhemy/google-play-billing": "^1.4",
2525
"laravel/framework": ">=8.0"
2626
},
2727
"require-dev": {
@@ -63,7 +63,7 @@
6363
"sort-packages": true,
6464
"allow-plugins": {},
6565
"platform": {
66-
"php": "7.4"
66+
"php": "8.0"
6767
}
6868
}
6969
}

0 commit comments

Comments
 (0)