-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Removed the `auto_loaders` section from `linker.json`. This was replaced by `require_once("$baseDir/vendor/autoload.php")` in `linker.php`. - Moved all entries in `linker.json::include_dirs` but `classes` to `composer.json::autoload::classmap`. - Updated composer.lock because composer.json was updated. - All of the XSEDE entries in `linker.json::include_dirs` was moved to the XSEDE modules `linker.d/xsede.json`.
- Loading branch information
Showing
4 changed files
with
14 additions
and
52 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,22 +1,5 @@ | ||
{ | ||
"autoloaders": [ | ||
"vendor/autoload.php" | ||
], | ||
"include_dirs": [ | ||
"classes", | ||
"classes/DB", | ||
"classes/DB/TACCStatsIngestors", | ||
"classes/DB/TGcDBIngestors", | ||
"classes/DB/POPSIngestors", | ||
"classes/DB/XRASIngestors", | ||
"classes/DB/Aggregators", | ||
"classes/DB/DBModel", | ||
"classes/DB/TimePeriodGenerators", | ||
"classes/ExtJS", | ||
"classes/REST", | ||
"classes/User", | ||
"classes/ReportTemplates", | ||
"classes/AppKernel", | ||
"libraries/HighRoller_1.0.5" | ||
"classes" | ||
] | ||
} |
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