-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from sssurii/develop
Fix constants file missing - add package config file
- Loading branch information
Showing
5 changed files
with
71 additions
and
33 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 |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
.env | ||
.phpunit.result.cache | ||
composer.lock | ||
.idea/ |
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,26 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
* Set DAY_LIGHT_SAVING to true if you are sending invite from Day Light Saving region. Else keep it false. | ||
*/ | ||
'DAY_LIGHT_SAVING' => env('DAY_LIGHT_SAVING', false), | ||
|
||
/* | ||
* Set DAY_LIGHT_SAVING_START_MONTH to the month number in which day light saving starts in your region. | ||
* For example, in USA it is 3 for March. | ||
*/ | ||
'DAY_LIGHT_SAVING_START_MONTH' => env('DAY_LIGHT_SAVING_START_MONTH', '03'), | ||
|
||
/* | ||
* Set DAY_LIGHT_SAVING_END_MONTH to the month number in which day light saving ends in your region. | ||
* For example, in USA it is 11 for November. | ||
*/ | ||
'DAY_LIGHT_SAVING_END_MONTH' => env('DAY_LIGHT_SAVING_END_MONTH', '10'), | ||
|
||
/* | ||
* Set DAY_LIGHT_SAVING_OFFSET to the offset in hours for day light saving. | ||
* For example, in USA it is 1 hour. | ||
*/ | ||
'DAY_LIGHT_SAVING_OFFSET' => '1 hours', | ||
]; |
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