forked from InfyOmLabs/laravel-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #1 from InfyOmLabs/develop
Update from fork...
- Loading branch information
Showing
122 changed files
with
3,572 additions
and
2,310 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
open_collective: infyomlabs |
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,32 @@ | ||
name: Run tests | ||
|
||
on: push | ||
|
||
jobs: | ||
php-tests: | ||
runs-on: ubuntu-latest | ||
|
||
name: Run Package Tests | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.composer/cache/files | ||
key: dependencies-composer-${{ hashFiles('composer.json') }} | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v1 | ||
with: | ||
php-version: 7.3 | ||
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite | ||
coverage: none | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --prefer-dist --no-interaction --no-suggest | ||
|
||
- name: Execute tests | ||
run: vendor/bin/phpunit --verbose |
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 |
---|---|---|
|
@@ -4,4 +4,5 @@ composer.phar | |
composer.lock | ||
.DS_Store | ||
Thumbs.db | ||
.idea | ||
.idea | ||
.phpunit.result.cache |
This file was deleted.
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
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,71 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Authentication Language Lines | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The following language lines are used during authentication for various | ||
| messages that we need to display to the user. You are free to modify | ||
| these language lines according to your application's requirements. | ||
| | ||
*/ | ||
|
||
'failed' => 'These credentials do not match our records.', | ||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', | ||
|
||
'full_name' => 'Full Name', | ||
'email' => 'Email', | ||
'password' => 'Password', | ||
'confirm_password' => 'Confirm Password', | ||
'remember_me' => 'Remember Me', | ||
'sign_in' => 'Sign In', | ||
'sign_out' => 'Sign out', | ||
'register' => 'Register', | ||
|
||
'login' => [ | ||
'title' => 'Sign in to start your session', | ||
'forgot_password' => 'I forgot my password', | ||
'register_membership' => 'Register a new membership', | ||
], | ||
|
||
'registration' => [ | ||
'title' => 'Register a new membership', | ||
'i_agree' => 'I agree to', | ||
'terms' => 'the terms', | ||
'have_membership' => 'I already have a membership', | ||
], | ||
|
||
'forgot_password' => [ | ||
'title' => 'Enter Email to reset password', | ||
'send_pwd_reset' => 'Send Password Reset Link', | ||
], | ||
|
||
'reset_password' => [ | ||
'title' => 'Reset your password', | ||
'reset_pwd_btn' => 'Reset Password', | ||
], | ||
|
||
'emails' => [ | ||
'password' => [ | ||
'reset_link' => 'Click here to reset your password', | ||
], | ||
], | ||
|
||
'app' => [ | ||
'member_since' => 'Member since', | ||
'messages' => 'Messages', | ||
'settings' => 'Settings', | ||
'lock_account' => 'Lock Account', | ||
'profile' => 'Profile', | ||
'online' => 'Online', | ||
'search' => 'Search', | ||
'create' => 'Create', | ||
'export' => 'Export', | ||
'print' => 'Print', | ||
'reset' => 'Reset', | ||
'reload' => 'Reload', | ||
], | ||
]; |
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,17 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'add_new' => 'Add New', | ||
'cancel' => 'Cancel', | ||
'save' => 'Save', | ||
'edit' => 'Edit', | ||
'detail' => 'Detail', | ||
'back' => 'Back', | ||
'action' => 'Action', | ||
'id' => 'Id', | ||
'created_at' => 'Created At', | ||
'updated_at' => 'Updated At', | ||
'deleted_at' => 'Deleted At', | ||
'are_you_sure' => 'Are you sure?', | ||
]; |
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,11 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'retrieved' => ':model retrieved successfully.', | ||
'saved' => ':model saved successfully.', | ||
'updated' => ':model updated successfully.', | ||
'deleted' => ':model deleted successfully.', | ||
'not_found' => ':model not found', | ||
|
||
]; |
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
Oops, something went wrong.