Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.

Fix unexpected autoloader error with exported Tests directory #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.github export-ignore
/Tests export-ignore
.php_cs export-ignore
phpunit.xml.dist export-ignore
6 changes: 6 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
"autoload": {
"psr-4": {
"DTL\\Bundle\\PhpcrMigrations\\": "."
},
"exclude-from-classmap": ["/Tests/"]
},
"autoload-dev": {
"psr-4": {
"DTL\\Bundle\\PhpcrMigrations\\Tests\\": "Tests/"
}
},
"extra": {
Expand Down