-
- Downloads
increase php minimal version to 8.1, fixes #3805
Closes #3805 Merge request studip/studip!2814
Showing
- .gitlab-ci.yml 5 additions, 5 deletions.gitlab-ci.yml
- composer.json 8 additions, 13 deletionscomposer.json
- composer.lock 330 additions, 390 deletionscomposer.lock
- docker/build_images.sh 1 addition, 1 deletiondocker/build_images.sh
- docker/studip/Dockerfile 2 additions, 2 deletionsdocker/studip/Dockerfile
- docker/tests/php81/Dockerfile 22 additions, 0 deletionsdocker/tests/php81/Dockerfile
- docker/tests/php82/Dockerfile 5 additions, 7 deletionsdocker/tests/php82/Dockerfile
- docker/tests/php83/Dockerfile 5 additions, 7 deletionsdocker/tests/php83/Dockerfile
... | ... | @@ -4,7 +4,7 @@ |
"config": { | ||
"vendor-dir": "composer", | ||
"platform": { | ||
"php": "7.4" | ||
"php": "8.1" | ||
} | ||
}, | ||
"require-dev": { | ||
... | ... | @@ -12,12 +12,12 @@ |
"woohoolabs/yang": "2.3.2", | ||
"codeception/codeception": "^4.2", | ||
"codeception/module-asserts": "^1.3", | ||
"overtrue/phplint": "^3.0", | ||
"overtrue/phplint": "3.1.1", | ||
"phpstan/phpstan": "^1.8", | ||
"symfony/var-dumper": "^5.4" | ||
}, | ||
"require": { | ||
"php": "^7.2", | ||
"php": "^8.1", | ||
"guzzlehttp/psr7": "^2.3", | ||
"neomerx/json-api": "4.0.1", | ||
"spomky-labs/otphp": "^10", | ||
... | ... | @@ -51,27 +51,22 @@ |
"symfony/console": "^5.3.16", | ||
"symfony/process": "^5.4", | ||
"jumbojett/openid-connect-php": "^0.9.2", | ||
"league/oauth2-server": "^8.3", | ||
"league/oauth2-server": "8.5.4", | ||
"willdurand/negotiation": "^3.1", | ||
"monolog/monolog": "^2.8", | ||
"symfony/polyfill-php80": "^1.27", | ||
"symfony/polyfill-php81": "^1.27", | ||
"phpowermove/docblock": "^2.0", | ||
"ksubileau/color-thief-php": "^2.0", | ||
"symfony/polyfill-php82": "^1.28", | ||
"symfony/polyfill-php83": "^1.28", | ||
"phpoffice/phpspreadsheet": "^1.19", | ||
"psy/psysh": "^0.12.2" | ||
"psy/psysh": "^0.12.2", | ||
"okvpn/clock-lts": "^1.0" | ||
}, | ||
"replace": { | ||
"symfony/polyfill-php54": "*", | ||
"symfony/polyfill-php55": "*", | ||
"symfony/polyfill-php56": "*", | ||
"symfony/polyfill-php70": "*", | ||
"symfony/polyfill-php71": "*", | ||
"symfony/polyfill-php72": "*", | ||
"symfony/polyfill-php73": "*", | ||
"symfony/polyfill-php74": "*", | ||
"symfony/polyfill-php80": "*", | ||
"symfony/polyfill-php81": "*", | ||
"symfony/polyfill-mbstring": "*" | ||
} | ||
} |
This diff is collapsed.
docker/tests/php81/Dockerfile
0 → 100644
Please register or sign in to comment