Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed Feb 11, 2022
1 parent e8e120d commit f458746
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ build
composer.lock
coverage
docs
vendor
/vendor
node_modules
.php-cs-fixer.cache
65 changes: 65 additions & 0 deletions tests/vendor/composer/installed.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"packages": [
{
"install-path": "../foo/scheduler",
"name": "spiral-packages/scheduler",
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\Scheduler\\Bootloader\\SchedulerBootloader"
],
"directories": [
"src/foo"
]
}
}
},
{
"install-path": "../foo/event-bus",
"name": "spiral-packages/event-bus",
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\EventBus\\Bootloader\\EventBusBootloader"
]
}
}
},
{
"install-path": "../foo/notifications",
"name": "spiral-packages/notifications",
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\Notifications\\Bootloader\\NotificationsBootloader"
]
}
}
},
{
"install-path": "../foo/package-a",
"name": "spiral-packages/package-a",
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\PackageA\\Bootloader\\PackageABootloader"
],
"dont-discover": [
"spiral-packages/package-b"
]
}
}
},
{
"install-path": "../foo/package-b",
"name": "spiral-packages/package-b",
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\PackageB\\Bootloader\\PackageBBootloader"
]
}
}
}
]
}

0 comments on commit f458746

Please sign in to comment.