Skip to content

Commit e1a9581

Browse files
Fix PSR4 in composer.json, add dump()
1 parent eba7c9f commit e1a9581

File tree

2 files changed

+109
-98
lines changed

2 files changed

+109
-98
lines changed

composer.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@
44
"type": "project",
55
"description": "Symfony Demo Application",
66
"autoload": {
7-
"psr-4": { "": "src/" },
7+
"psr-4": {
8+
"AppBundle\\": "src/AppBundle/",
9+
"CodeExplorerBundle\\": "src/CodeExplorerBundle/"
10+
},
811
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
912
},
1013
"autoload-dev": {
11-
"psr-4": { "Tests\\": "tests/" }
14+
"psr-4": { "Tests\\": "tests/" },
15+
"files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
1216
},
1317
"require": {
1418
"php" : ">=5.5.9",

0 commit comments

Comments
 (0)