Skip to content

Commit

Permalink
Merge pull request #6 from Bl00D4NGEL/main
Browse files Browse the repository at this point in the history
deps: Support symfony ^7.0 versions
  • Loading branch information
ckappen authored May 28, 2024
2 parents 4d93eaf + ee19032 commit 7db59ef
Show file tree
Hide file tree
Showing 7 changed files with 1,604 additions and 1,016 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: '8.1'
php-version: '8.2'
coverage: xdebug

# Install dependencies
Expand All @@ -41,10 +41,3 @@ jobs:
- name: Run Unit Tests
run: |
vendor/bin/phpunit --coverage-text --coverage-clover reports/coverage.xml
# SonarCloud
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
13 changes: 7 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,21 @@
}
},
"require": {
"php": "^8.2",
"ext-sodium": "*",
"geekcell/container-facade": "^1.0",
"symfony/dependency-injection": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/console": "^6.0",
"symfony/config": "^6.0"
"symfony/dependency-injection": "^6.0 | ^7.0",
"symfony/http-kernel": "^6.0 | ^7.0",
"symfony/console": "^6.0 | ^7.0",
"symfony/config": "^6.0 | ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0",
"symfony/yaml": "^6.2",
"symfony/framework-bundle": "^6.2",
"symfony/yaml": "^6.0 | ^7.0",
"symfony/framework-bundle": "^6.0 | ^7.0",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-symfony": "^1.2"
},
Expand Down
Loading

0 comments on commit 7db59ef

Please sign in to comment.