Skip to content

Commit

Permalink
feat(symfony): allow symfony 7
Browse files Browse the repository at this point in the history
  • Loading branch information
Et3rnel committed Feb 20, 2024
1 parent 887caf1 commit 6b5d909
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
SHELL=bash -o pipefail
SOURCE_DIR = $(shell pwd)

.PHONY: all
all: install test

.PHONY: install
install:
composer install

.PHONY: test
test:
./vendor/bin/atoum
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,4 @@ m6_web_monolog_extra:
bar: foo
env: expr(container.getParameter('kernel.environment'))

```

## Tests

```shell
$ ./vendor/bin/atoum
```
```
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "~5.0 || ~6.0",
"symfony/framework-bundle": "~5.0 || ~6.0 || ~7.0",
"symfony/monolog-bundle": "~3.0",
"symfony/expression-language": "~5.0 || ~6.0",
"symfony/expression-language": "~5.0 || ~6.0 || ~7.0",
"monolog/monolog": "^3.0"
},
"require-dev": {
"atoum/atoum": "~3.4 || ~4.0",
"symfony/yaml": "~5.0 || ~6.0"
"symfony/yaml": "~5.0 || ~6.0 || ~7.0"
},
"autoload": {
"psr-0": { "": "src/" }
Expand Down

0 comments on commit 6b5d909

Please sign in to comment.