Skip to content

Commit

Permalink
[TASK] Raise PHP Version Dependency
Browse files Browse the repository at this point in the history
Resolves: #9
  • Loading branch information
extcode committed Jan 10, 2021
1 parent 49545c8 commit 41fc3c2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .gitlab-ci.yml
Expand Up @@ -56,3 +56,10 @@ lint:php73:
image: php:7.3-alpine
script:
- find . -name \*.php -exec php -l "{}" \;

lint:php74:
stage: lint
image: php:7.4-alpine
script:
- find . -name \*.php -exec php -l "{}" \;

2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -9,6 +9,8 @@ matrix:
env: TYPO3_VERSION=^9.5
- php: 7.3
env: TYPO3_VERSION=^9.5
- php: 7.4
env: TYPO3_VERSION=^9.5

cache:
directories:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -26,8 +26,8 @@ Download and install the extension with the extension manager module.

| Cart Payone | Cart | TYPO3 | PHP | Support/Development |
| ------------- | ---------- | ---------- | ----------|---------------------------------------- |
| 2.x.x | 6.3.0 | 9.5 | 7.2 - 7.3 | Features, Bugfixes, Security Updates |
| 1.x.x | 5.3.0 | 8.7 | 7.0 - 7.3 | Features, Bugfixes, Security Updates |
| 2.x.x | 6.3.0 | 9.5 | 7.2 - 7.4 | Features, Bugfixes, Security Updates |
| 1.x.x | 5.3.0 | 8.7 | 7.0 - 7.4 | Features, Bugfixes, Security Updates |

### 3.2. Changelog

Expand All @@ -47,4 +47,4 @@ News uses **semantic versioning** which basically means for you, that
* [PayPal.Me](https://paypal.me/extcart)

[1]: https://docs.typo3.org/typo3cms/extensions/cart_events/
[2]: https://getcomposer.org/
[2]: https://getcomposer.org/
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -24,7 +24,7 @@
"issues": "https://github.com/extcode/cart_payone/issues"
},
"require": {
"php": ">=7.2.0 <7.4",
"php": ">=7.2.0 <7.5",
"typo3/cms-core": "^9.5",
"typo3/cms-extbase": "^9.5",
"extcode/cart": "^6.3"
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Expand Up @@ -17,7 +17,7 @@
'modify_tables' => '',
'clearCacheOnLoad' => 0,
'lockType' => '',
'version' => '2.0.1',
'version' => '2.1.0',
'constraints' => [
'depends' => [
'typo3' => '9.5.0-9.5.99',
Expand Down

0 comments on commit 41fc3c2

Please sign in to comment.