1
0
mirror of https://github.com/flarum/core.git synced 2025-07-23 09:41:26 +02:00

Moved psr-4 loading for tests out of the autoload

This commit is contained in:
kirkbushell
2015-09-28 15:44:35 +01:00
parent a388fe7883
commit 374e9f09e4

View File

@@ -42,13 +42,17 @@
},
"autoload": {
"psr-4": {
"Flarum\\": "src/",
"tests\\": "tests/"
"Flarum\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit -c tests/phpunit.xml",
"style": "phpcs --standard=PSR2 -np src"