Skip to content

Commit

Permalink
Use recommended trailing slash in PSR-4
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Dec 2, 2017
1 parent d7cf3e7 commit bff76e2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions composer.json
Expand Up @@ -46,7 +46,7 @@
},
"autoload": {
"psr-4": {
"Cake\\": "src"
"Cake\\": "src/"
},
"files": [
"src/Core/functions.php",
Expand All @@ -57,15 +57,15 @@
},
"autoload-dev": {
"psr-4": {
"Cake\\PHPStan\\": "tests/PHPStan",
"Cake\\Test\\": "tests",
"TestApp\\": "tests/test_app/TestApp",
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src",
"TestPlugin\\Test\\": "tests/test_app/Plugin/TestPlugin/tests",
"TestPluginTwo\\": "tests/test_app/Plugin/TestPluginTwo/src",
"Company\\TestPluginThree\\": "tests/test_app/Plugin/Company/TestPluginThree/src",
"Company\\TestPluginThree\\Test\\": "tests/test_app/Plugin/Company/TestPluginThree/tests",
"PluginJs\\": "tests/test_app/Plugin/PluginJs/src"
"Cake\\PHPStan\\": "tests/PHPStan/",
"Cake\\Test\\": "tests/",
"TestApp\\": "tests/test_app/TestApp/",
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src/",
"TestPlugin\\Test\\": "tests/test_app/Plugin/TestPlugin/tests/",
"TestPluginTwo\\": "tests/test_app/Plugin/TestPluginTwo/src/",
"Company\\TestPluginThree\\": "tests/test_app/Plugin/Company/TestPluginThree/src/",
"Company\\TestPluginThree\\Test\\": "tests/test_app/Plugin/Company/TestPluginThree/tests/",
"PluginJs\\": "tests/test_app/Plugin/PluginJs/src/"
}
},
"replace": {
Expand Down

0 comments on commit bff76e2

Please sign in to comment.