Skip to content
Open
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
22 changes: 11 additions & 11 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cache: &global_cache

# Build section
Install dependencies and build assets:
image: sumocoders/cli-tools-php84:latest
image: sumocoders/cli-tools-php85:latest
script:
- COMPOSER_MEMORY_LIMIT=-1 composer install --no-scripts --no-progress
- COMPOSER_MEMORY_LIMIT=-1 composer run-script post-autoload-dump
Expand All @@ -34,7 +34,7 @@ Install dependencies and build assets:

# Code Quality section
PHP_CodeSniffer - check code styling:
image: sumocoders/cli-tools-php84:latest
image: sumocoders/cli-tools-php85:latest
script:
- php vendor/bin/phpcs --report-full --report-\\Micheh\\PhpCodeSniffer\\Report\\Gitlab=phpcs-report.json
artifacts:
Expand All @@ -47,7 +47,7 @@ PHP_CodeSniffer - check code styling:
- docker

PHPStan - check for bugs:
image: sumocoders/cli-tools-php84:latest
image: sumocoders/cli-tools-php85:latest
before_script:
- php bin/console cache:warmup --env=dev
script:
Expand All @@ -68,7 +68,7 @@ PHPStan - check for bugs:
- docker

Twig-CS-Fixer - check code styling:
image: sumocoders/cli-tools-php84:latest
image: sumocoders/cli-tools-php85:latest
script:
- php vendor/bin/twig-cs-fixer lint templates/ --report=junit > twigcs-report.xml
after_script:
Expand Down Expand Up @@ -123,7 +123,7 @@ StandardJS - check code styling:

# Dependency Scanning section
NPM packages - check for vulnerabilities:
image: sumocoders/cli-tools-php84:latest
image: sumocoders/cli-tools-php85:latest
script:
- php bin/console importmap:audit --no-interaction --ansi
stage: dependency scanning
Expand All @@ -133,7 +133,7 @@ NPM packages - check for vulnerabilities:
allow_failure: true

PHP packages - composer audit:
image: sumocoders/cli-tools-php84:latest
image: sumocoders/cli-tools-php85:latest
script:
- composer audit --ansi --no-interaction
stage: dependency scanning
Expand All @@ -145,7 +145,7 @@ PHP packages - composer audit:

# Outdated packages Scanning section
NPM packages - check for outdated packages:
image: sumocoders/cli-tools-php84:latest
image: sumocoders/cli-tools-php85:latest
script:
- php bin/console importmap:outdated --no-interaction --ansi
stage: outdated packages
Expand All @@ -155,7 +155,7 @@ NPM packages - check for outdated packages:
allow_failure: true

PHP packages - composer outdated:
image: sumocoders/cli-tools-php84:latest
image: sumocoders/cli-tools-php85:latest
script:
- composer outdated --ansi --no-interaction
stage: outdated packages
Expand All @@ -167,7 +167,7 @@ PHP packages - composer outdated:

# Test section
PHPUnit - Run tests:
image: sumocoders/framework-php84:latest
image: sumocoders/framework-php85:latest
services:
- mysql:8.0
before_script:
Expand Down Expand Up @@ -202,7 +202,7 @@ PHPUnit - Run tests:

# Deploy section
Deploy - to staging:
image: sumocoders/cli-tools-php84:latest
image: sumocoders/cli-tools-php85:latest
before_script:
# Add the private SSH key to the CI environment
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
Expand All @@ -216,7 +216,7 @@ Deploy - to staging:
- php vendor/bin/dep deploy stage=staging
environment:
name: staging
url: https://$project.$client.php84.sumocoders.eu
url: https://$project.$client.php85.sumocoders.eu
only:
- staging
stage: deploy
Expand Down
2 changes: 1 addition & 1 deletion .php-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.4
8.5
40 changes: 20 additions & 20 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,49 +2,49 @@
"type": "project",
"license": "proprietary",
"require": {
"php": "^8.4",
"php": "^8.5",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-sodium": "*",
"beberlei/doctrineextensions": "^1.5",
"doctrine/doctrine-migrations-bundle": "^3.3",
"nelmio/security-bundle": "^3.5",
"sentry/sentry-symfony": "^5.1",
"sumocoders/framework-core-bundle": "^14.0",
"sumocoders/framework-core-bundle": "^17.0",
"symfony/apache-pack": "^1.0.1",
"symfony/asset-mapper": "^7.3",
"symfony/debug-bundle": "^7.3",
"symfony/dotenv": "^7.3",
"symfony/expression-language": "^7.3",
"symfony/asset-mapper": "^8.0",
"symfony/debug-bundle": "^8.0",
"symfony/dotenv": "^8.0",
"symfony/expression-language": "^8.0",
"symfony/flex": "^2.4",
"symfony/http-client": "^7.3",
"symfony/mailer": "^7.3",
"symfony/messenger": "^7.3",
"symfony/http-client": "^8.0",
"symfony/mailer": "^8.0",
"symfony/messenger": "^8.0",
"symfony/monolog-bundle": "^3.10",
"symfony/rate-limiter": "^7.3",
"symfony/runtime": "^7.3",
"symfony/security-bundle": "^7.3",
"symfony/rate-limiter": "^8.0",
"symfony/runtime": "^8.0",
"symfony/security-bundle": "^8.0",
"symfony/stimulus-bundle": "^2.22",
"symfony/ux-turbo": "^2.22",
"symfony/validator": "^7.3",
"symfony/web-profiler-bundle": "^7.3",
"symfony/yaml": "^7.3",
"symfony/validator": "^8.0",
"symfony/web-profiler-bundle": "^8.0",
"symfony/yaml": "^8.0",
"symfonycasts/sass-bundle": "^0.8",
"twbs/bootstrap": "^5.3"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.3",
"doctrine/doctrine-fixtures-bundle": "^3.7",
"doctrine/doctrine-fixtures-bundle": "^4.3",
"micheh/phpcs-gitlab": "^1.1",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^12.2",
"squizlabs/php_codesniffer": "^3.11",
"symfony/browser-kit": "^7.3",
"symfony/css-selector": "^7.3",
"symfony/browser-kit": "^8.0",
"symfony/css-selector": "^8.0",
"symfony/maker-bundle": "*",
"symfony/stopwatch": "^7.3",
"tijsverkoyen/deployer-sumo": "^4.1",
"symfony/stopwatch": "^8.0",
"tijsverkoyen/deployer-sumo": "^4.3",
"vincentlanglet/twig-cs-fixer": "*"
},
"config": {
Expand Down
Loading