Skip to content
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
32 changes: 9 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,39 +13,25 @@ jobs:
fail-fast: false
matrix:
include:
# Test the latest stable release
- php-version: '7.1'
phpunit-version: 7
- php-version: '7.2'
phpunit-version: 8
- php-version: '7.3'
phpunit-version: 8
# Test deprecated version
- php-version: '7.4'
phpunit-version: 8
- php-version: '8.0'
phpunit-version: 9
# Test Symfony LTS versions. Read more at https://github.com/symfony/lts
- php-version: '7.4'
dependencies: 'symfony/lts:^3'
phpunit-version: 8
- php-version: '8.0'
# Test security fixes version
- php-version: '8.1'
phpunit-version: 9
symfony-version: '^4'
- php-version: '8.0'
- php-version: '8.2'
phpunit-version: 9
symfony-version: '^5'
- php-version: '8.0'
phpunit-version: 9
symfony-version: '^6'
# Test active version
- php-version: '8.3'
phpunit-version: 9
symfony-version: '^7'
# Minimum supported dependencies with the oldest PHP version
- php-version: '7.1'
phpunit-version: 7
composer-flag: '--prefer-stable --prefer-lowest'
- php-version: '8.4'
phpunit-version: 9
symfony-version: '^7'
# Test latest unreleased versions
- php-version: '8.3'
- php-version: '8.5'
phpunit-version: 9
symfony-version: '^7'
stability: 'dev'
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
},
"require": {
"ext-json": "*",
"php": "^7.1|^8.0",
"symfony/console": "^3.4|^4.0|^5.0|^6.0|^7.0",
"symfony/yaml": "^3.4|^4.0|^5.0|^6.0|^7.0",
"symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
"php": "^7.4|^8.0",
"symfony/console": "^5.0|^6.0|^7.0",
"symfony/yaml": "^5.0|^6.0|^7.0",
"symfony/process": "^5.0|^6.0|^7.0",
"composer/semver": "^3.4"
},
"autoload": {
Expand Down
5 changes: 0 additions & 5 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory>./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="RMT Unit test suite">
<directory suffix="Test.php">./test/Liip/RMT/Tests/Unit</directory>
Expand Down