Skip to content

Commit

Permalink
add support for symfony 7 (#12)
Browse files Browse the repository at this point in the history
* add support for symfony 7

* update readme
  • Loading branch information
akondas authored Jun 2, 2024
1 parent 6553dd3 commit 67e2466
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5,736 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ on:

jobs:
ci:

strategy:
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"
dependencies:
- "lowest"
- "highest"

runs-on: ubuntu-latest

Expand All @@ -24,6 +26,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
dependency-versions: "${{ matrix.dependencies }}"
ini-values: memory_limit=-1

- name: "Install composer dependencies"
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
/coverage
/clover.xml
/var
/composer.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ChaosMonkeySymfonyBundle

[![Minimum PHP Version](https://img.shields.io/badge/php-%5E8.1-8892BF.svg)](https://php.net/)
![Symfony Versions Supported](https://img.shields.io/badge/symfony-%5E6.4-green)
![Symfony Versions Supported](https://img.shields.io/badge/symfony-%5E6.4%20%7C%7C%20%5E7.0-green)
[![Packagist Version](https://img.shields.io/packagist/v/chaos-php/chaos-monkey-symfony-bundle)](https://packagist.org/packages/chaos-php/chaos-monkey-symfony-bundle)
[![ci](https://github.com/chaos-php/chaos-monkey-symfony-bundle/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/chaos-php/chaos-monkey-symfony-bundle/actions/workflows/ci.yml)
![GitHub](https://img.shields.io/github/license/chaos-php/chaos-monkey-symfony-bundle)
Expand Down
20 changes: 9 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@
],
"require": {
"php": "^8.1",
"chaos-php/chaos-monkey": "^1.1"
"chaos-php/chaos-monkey": "^1.1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.58",
"phpunit/phpunit": "^10.5",
"symfony/browser-kit": "^6.4",
"symfony/framework-bundle": "^6.4",
"symfony/http-kernel": "^6.4",
"symfony/stopwatch": "^6.4",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-symfony": "^1.4",
"symfony/runtime": "^6.4"
"phpunit/phpunit": "^10.5",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/runtime": "^6.4 || ^7.0",
"symfony/stopwatch": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -64,11 +64,9 @@
]
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"symfony/runtime": true
}
},
"sort-packages": true
}
}
Loading

0 comments on commit 67e2466

Please sign in to comment.