Skip to content

Commit

Permalink
Fixed composer autoloading deprecation notice; Support symfony 5 (#115)
Browse files Browse the repository at this point in the history
* Allow version 5 of symfony packages

* Fixed deprecation notice for class autoloading

Co-authored-by: Brian Wozeniak <brian.wozeniak@ozzu.com>
  • Loading branch information
brianwozeniak and Brian Wozeniak committed May 17, 2020
1 parent 1426897 commit 43a5d2b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
],
"require": {
"php": ">=7.0.0",
"symfony/config": "^2.3|^3.0|^4",
"symfony/translation": "^2.3|^3.0|^4",
"symfony/yaml": "^2.3|^3.0|^4"
"symfony/config": "^2.3|^3.0|^4|^5",
"symfony/translation": "^2.3|^3.0|^4|^5",
"symfony/yaml": "^2.3|^3.0|^4|^5"
},
"require-dev": {
"thunderer/shortcode": "^0.7",
Expand All @@ -31,7 +31,11 @@
},
"autoload": {
"psr-4": {
"": "src",
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Coduo\\PHPHumanizer\\Tests\\": "tests/"
}
},
Expand Down

0 comments on commit 43a5d2b

Please sign in to comment.