-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add vendor configuration file (#154)
- Loading branch information
Showing
4 changed files
with
45 additions
and
8 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
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 @@ | ||
<?php | ||
/** | ||
* File for vendor customization. You can change here paths or some behaviors, | ||
* which vendors such as Linux distributions might want to change. | ||
* | ||
* For changing this file you should know what you are doing. For this reason | ||
* the options given here are not part of the normal configuration. | ||
*/ | ||
|
||
return [ | ||
/** | ||
* Path to a vendor autoload file. Useful when you want to have vendor dependencies somewhere else. | ||
*/ | ||
'autoload_file' => ROOT_PATH . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php', | ||
|
||
/** | ||
* Path to the configuration file. | ||
*/ | ||
'config_file' => ROOT_PATH . 'config' . DIRECTORY_SEPARATOR . 'conf.php', | ||
|
||
/** | ||
* Suffix to add to the DmarcSrg version | ||
*/ | ||
'version_suffix' => '' | ||
]; |
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