Skip to content

Commit 4d82f6d

Browse files
committed
Update dependencies and make compatible with TYPO3 11.*
1 parent a3b5103 commit 4d82f6d

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.travis.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
language: php
22
php:
3-
- 7.1
43
- 7.2
54
- 7.3
5+
- 7.4
66
env:
77
- dependencies=lowest
88
- dependencies=highest
9-
matrix:
10-
exclude:
11-
- php: 7.2
12-
env: dependencies=lowest
13-
- php: 7.3
14-
env: dependencies=lowest
159
before_script:
1610
- composer self-update
1711
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --no-interaction; fi;

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"require": {
99
"php": "~7.1",
1010
"phpstan/phpstan": "^0.12",
11-
"typo3/cms-core": "^8.7 || ^9.5 || ^10.2 || ^11.0@dev",
12-
"typo3/cms-extbase": "^8.7 || ^9.5 || ^10.2 || ^11.0@dev"
11+
"typo3/cms-core": "^8.7 || ^9.5 || ^10.4 || 11.*.*@dev",
12+
"typo3/cms-extbase": "^8.7 || ^9.5 || ^10.4 || 11.*.*@dev"
1313
},
1414
"require-dev": {
1515
"consistence/coding-standard": "^3.8",
16-
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
17-
"jakub-onderka/php-parallel-lint": "^1.0",
16+
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
17+
"php-parallel-lint/php-parallel-lint": "^1.2",
1818
"phing/phing": "^2.16.0",
1919
"phpstan/phpstan-strict-rules": "^0.12"
2020
},

phpcs.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0"?>
22
<ruleset name="PHPStan TYPO3">
3+
<config name="php_version" value="70200" />
34
<rule ref="vendor/consistence/coding-standard/Consistence/ruleset.xml">
45
<exclude name="SlevomatCodingStandard.Commenting.InlineDocCommentDeclaration.InvalidFormat"/>
56
<exclude name="SlevomatCodingStandard.Namespaces.FullyQualifiedClassNameAfterKeyword"/>

0 commit comments

Comments
 (0)