Skip to content

Commit 43a5d2b

Browse files
brianwozeniakBrian Wozeniak
andauthored
Fixed composer autoloading deprecation notice; Support symfony 5 (coduo#115)
* Allow version 5 of symfony packages * Fixed deprecation notice for class autoloading Co-authored-by: Brian Wozeniak <[email protected]>
1 parent 1426897 commit 43a5d2b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

composer.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
],
1717
"require": {
1818
"php": ">=7.0.0",
19-
"symfony/config": "^2.3|^3.0|^4",
20-
"symfony/translation": "^2.3|^3.0|^4",
21-
"symfony/yaml": "^2.3|^3.0|^4"
19+
"symfony/config": "^2.3|^3.0|^4|^5",
20+
"symfony/translation": "^2.3|^3.0|^4|^5",
21+
"symfony/yaml": "^2.3|^3.0|^4|^5"
2222
},
2323
"require-dev": {
2424
"thunderer/shortcode": "^0.7",
@@ -31,7 +31,11 @@
3131
},
3232
"autoload": {
3333
"psr-4": {
34-
"": "src",
34+
"": "src/"
35+
}
36+
},
37+
"autoload-dev": {
38+
"psr-4": {
3539
"Coduo\\PHPHumanizer\\Tests\\": "tests/"
3640
}
3741
},

0 commit comments

Comments
 (0)