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

[TASK] Add TYPO3 11 support #35

Merged
merged 3 commits into from
Nov 2, 2021
Merged
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
2 changes: 1 addition & 1 deletion .github/actions/run-phpcs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:7.4-cli
FROM php:8.0-cli

COPY entrypoint.sh /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
2 changes: 1 addition & 1 deletion .github/actions/run-phpstan/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:7.4-cli
FROM php:8.0-cli

COPY entrypoint.sh /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
6 changes: 3 additions & 3 deletions .github/workflows/phpcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
- name: Composer install
uses: php-actions/composer@v6
with:
php_version: 7.4
php_version: 8.0

- name: Composer require typo3/cms-dashboard
uses: php-actions/composer@v6
with:
php_version: 7.4
command: require typo3/cms-dashboard:^10.4.0
php_version: 8.0
command: require typo3/cms-dashboard:^11.5.0

- name: Run PHP_CodeSniffer
uses: ./.github/actions/run-phpcs
6 changes: 3 additions & 3 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
- name: Composer install
uses: php-actions/composer@v6
with:
php_version: 7.4
php_version: 8.0

- name: Composer require typo3/cms-dashboard
uses: php-actions/composer@v6
with:
php_version: 7.4
command: require typo3/cms-dashboard:^10.4.0
php_version: 8.0
command: require typo3/cms-dashboard:^11.5.0

- name: Run phpstan
uses: ./.github/actions/run-phpstan
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/vendor/
/node_modules/
composer.lock
/public/
/public/
/var/
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
},
"license": "GPL-3.0-or-later",
"require": {
"typo3/cms-core": "^9.5.9 || ^10.1.0",
"typo3/cms-backend": "^9.5.9 || ^10.1.0",
"typo3/cms-fluid": "^9.5.9 || ^10.1.0"
"typo3/cms-core": "^9.5.9 || ^10.1.0 || ^11.5.0",
"typo3/cms-backend": "^9.5.9 || ^10.1.0 || ^11.5.0",
"typo3/cms-fluid": "^9.5.9 || ^10.1.0 || ^11.5.0"
},
"suggest": {
"typo3/cms-dashboard": "Make usage of the TYPO3 dashboard and the widgets provided by this extension"
Expand Down