-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Allow php 8.1 and symfony 6.1 * ci: Set php to 8.1 for static workflow * ci: Add php 8.1 and symfony 6.1 to test workflow * Revert "ci: Set php to 8.1 for static workflow" This reverts commit 94932d0. * ci: Update phpstan * ci: Update phpstan baseline * ci: Update psalm baseline * ci: Add symfony 5.4 * fix: Add conflict with phpunit lower or equal to 8.5.14 Cause of GLOBALS access and compatibility with PHP 8.1 * chore: fix order in composer * chore: Update readme and changelog * docs: Update pipeline example in README * fix: Update constraints in composer file * fix: Normalize composer json * chore: Fix phpstan baseline
- Loading branch information
1 parent
aa4e05d
commit 297a7dc
Showing
7 changed files
with
45 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"name": "nyholm/symfony-bundle-test", | ||
"type": "library", | ||
"description": "", | ||
"license": "MIT", | ||
"type": "library", | ||
"authors": [ | ||
{ | ||
"name": "Tobias Nyholm", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.2 || ^8.0", | ||
"php": "^7.2 || ^8.0 || ^8.1", | ||
"symfony/dependency-injection": "^4.4 || ^5.3 || ^6.0", | ||
"symfony/filesystem": "^4.4 || ^5.3 || ^6.0", | ||
"symfony/framework-bundle": "^4.4 || ^5.3 || ^6.0", | ||
|
@@ -20,6 +20,11 @@ | |
"require-dev": { | ||
"phpunit/phpunit": "^8.5 || ^9.4" | ||
}, | ||
"conflict": { | ||
"phpunit/phpunit": "<=8.5.14" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"autoload": { | ||
"psr-4": { | ||
"Nyholm\\BundleTest\\": "src/" | ||
|
@@ -30,8 +35,6 @@ | |
"Nyholm\\BundleTest\\Tests\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"scripts": { | ||
"test": "vendor/bin/phpunit", | ||
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters