-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
666 changed files
with
9,105 additions
and
8,767 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
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,5 @@ | ||
#! /bin/bash | ||
|
||
echo "Git hook executing: pre-commit actions" | ||
|
||
php artisan test -p |
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,32 +1,37 @@ | ||
name: Laravel | ||
|
||
on: [push, pull_request] | ||
on: [pull_request] | ||
|
||
jobs: | ||
laravel-tests: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e | ||
with: | ||
php-version: '8.0' | ||
- uses: actions/checkout@v2 | ||
- name: Copy .env | ||
run: php -r "file_exists('.env') || copy('.env.example', '.env');" | ||
- name: Install Dependencies | ||
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | ||
- name: Generate key | ||
run: php artisan key:generate | ||
- name: Directory Permissions | ||
run: chmod -R 777 storage bootstrap/cache | ||
- name: Create Database | ||
run: | | ||
mkdir -p database | ||
touch database/database.sqlite | ||
- name: Execute tests (Unit and Feature tests) via PHPUnit | ||
env: | ||
DB_CONNECTION: sqlite | ||
DB_DATABASE: database/database.sqlite | ||
run: | | ||
php artisan test --colors --debug | ||
laravel-tests: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e | ||
with: | ||
php-version: '8.0' | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Copy .env | ||
run: php -r "file_exists('.env') || copy('.env.example', '.env');" | ||
|
||
- name: Install Dependencies | ||
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | ||
|
||
- name: Generate key | ||
run: php artisan key:generate | ||
|
||
- name: Directory Permissions | ||
run: chmod -R 777 storage bootstrap/cache | ||
|
||
- name: Create Database | ||
run: | | ||
mkdir -p database | ||
touch database/database.sqlite | ||
- name: Execute tests (Unit and Feature tests) via PHPUnit | ||
env: | ||
DB_CONNECTION: sqlite | ||
DB_DATABASE: database/database.sqlite | ||
run: | | ||
php artisan test --colors --debug |
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,31 @@ | ||
name: Laravel Push Test | ||
|
||
on: [push] | ||
|
||
jobs: | ||
laravel-tests: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e | ||
with: | ||
php-version: '8.0' | ||
- uses: actions/checkout@v2 | ||
- name: Copy .env | ||
run: php -r "file_exists('.env') || copy('.env.example', '.env');" | ||
- name: Install Dependencies | ||
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | ||
- name: Generate key | ||
run: php artisan key:generate | ||
- name: Directory Permissions | ||
run: chmod -R 777 storage bootstrap/cache | ||
- name: Create Database | ||
run: | | ||
mkdir -p database | ||
touch database/database.sqlite | ||
- name: Execute tests (Unit and Feature tests) via PHPUnit | ||
env: | ||
DB_CONNECTION: sqlite | ||
DB_DATABASE: database/database.sqlite | ||
run: | | ||
php artisan test -p --colors --debug |
Empty file.
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,6 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"tabWidth": 4, | ||
"semi": false, | ||
"singleQuote": true | ||
} |
Empty file.
Empty file.
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,10 +1,5 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Test" type="PhpLocalRunConfigurationType" factoryName="PHP Console" path="$PROJECT_DIR$/artisan" scriptParameters="test"> | ||
<CommandLine> | ||
<PhpTestInterpreterSettings> | ||
<option name="interpreterName" value="PHP 7.4.9" /> | ||
</PhpTestInterpreterSettings> | ||
</CommandLine> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
Empty file.
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,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "system" | ||
}, | ||
"include": [ | ||
"resources/js/frontend/components/*" | ||
], | ||
"exclude": [ | ||
"node_modules" | ||
], | ||
"vueCompilerOptions": { | ||
"target": "2.7" | ||
} | ||
} |
Empty file.
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
Empty file.
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
Empty file modified
0
app/Domains/Announcement/Models/Traits/Scope/AnnouncementScope.php
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Backend/Role/RoleController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Backend/User/DeactivatedUserController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Backend/User/DeletedUserController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Backend/User/UserController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Backend/User/UserPasswordController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Backend/User/UserSessionController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Frontend/Auth/ConfirmPasswordController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Frontend/Auth/DisableTwoFactorAuthenticationController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Frontend/Auth/ForgotPasswordController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Frontend/Auth/LoginController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Frontend/Auth/PasswordExpiredController.php
100644 → 100755
Empty file.
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
Empty file modified
0
app/Domains/Auth/Http/Controllers/Frontend/Auth/ResetPasswordController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Frontend/Auth/SocialController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Frontend/Auth/TwoFactorAuthenticationController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Frontend/Auth/UpdatePasswordController.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Controllers/Frontend/Auth/VerificationController.php
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Middleware/TwoFactorAuthenticationStatus.php
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/Role/DeleteRoleRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/Role/EditRoleRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/Role/StoreRoleRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/Role/UpdateRoleRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/User/ClearUserSessionRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/User/DeleteUserRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/User/EditUserPasswordRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/User/EditUserRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/User/StoreUserRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/User/UpdateUserPasswordRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Backend/User/UpdateUserRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Frontend/Auth/DisableTwoFactorAuthenticationRequest.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Http/Requests/Frontend/Auth/UpdatePasswordRequest.php
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
app/Domains/Auth/Models/Traits/Relationship/PermissionRelationship.php
100644 → 100755
Empty file.
Empty file modified
0
app/Domains/Auth/Models/Traits/Relationship/UserRelationship.php
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
app/Domains/Auth/Notifications/Frontend/ResetPasswordNotification.php
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Oops, something went wrong.