-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a command to refresh the project autoloads
- Loading branch information
1 parent
414971d
commit 3f13302
Showing
9 changed files
with
117 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
# Next | ||
|
||
Features: | ||
|
||
- Add the command `ede-php-autoload-reload-autoloads` to refresh the | ||
composer autoloads when the composer configuration changed | ||
|
||
Fixes: | ||
|
||
- Always load the root project when visiting a third-party source | ||
- Improve ecukes tests | ||
- Improve ecukes tests reliability |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"autoload": { | ||
"psr-0": { | ||
"Psr0Ns": "src/", | ||
"": "src/Fallback/Psr0" | ||
}, | ||
"psr-4": { | ||
"Psr4Ns": "src/Psr4Ns", | ||
"MultiDirNs": ["src/MultiDirNs1", "src/MultiDirNs2"], | ||
"": "src/Fallback/Psr4" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"AutoloadDev": "src/AutoloadDev" | ||
} | ||
}, | ||
"require": { | ||
"third-party/third-party": "*", | ||
"target-dir/target-dir": "*" | ||
}, | ||
"require-dev": { | ||
"third-party/dev-dependency": "*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"autoload": { | ||
"psr-4": { | ||
"NewNs": "src/NewNs" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
namespace NewNs; | ||
|
||
class MyClass { | ||
|
||
} |