Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
🚧 wip
Browse files Browse the repository at this point in the history
Signed-off-by: Lloric Mayuga Garcia <[email protected]>
  • Loading branch information
lloricode committed Dec 4, 2021
1 parent 4f2a1d8 commit 77c1154
Show file tree
Hide file tree
Showing 11 changed files with 3,102 additions and 1,165 deletions.
12 changes: 11 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,21 @@ DB_DATABASE=lumen_boilerplate
DB_USERNAME=homestead
DB_PASSWORD=secret

# for BeyondCode https://usehelo.com/ test mail
#MAIL_HOST=10.0.2.2
#MAIL_PORT=2525
#MAIL_USERNAME=${APP_NAME}
#MAIL_ENCRYPTION=null

CACHE_DRIVER=file
QUEUE_CONNECTION=sync

# services
FACEBOOK_ACTIVE=false
FACEBOOK_CLIENT_ID=
FACEBOOK_CLIENT_SECRET=
FACEBOOK_REDIRECT=
FACEBOOK_REDIRECT=

# https://myray.app/
RAY_REMOTE_PATH=
RAY_LOCAL_PATH=
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 8.0 ]
php: [ 8.1 ]
dependency-version: [prefer-lowest, prefer-stable]

name: P${{ matrix.php }} - ${{ matrix.dependency-version }}
Expand Down
7 changes: 7 additions & 0 deletions bootstrap/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
$app->configure('auth');
$app->configure('cors');
$app->configure('hashids');
$app->configure('helo');
$app->configure('localization');
$app->configure('permission');
$app->configure('repository');
Expand Down Expand Up @@ -135,6 +136,12 @@
if (class_exists('Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider')) {
$app->register('Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider');
}
if (class_exists('Spatie\LaravelRay\RayServiceProvider')) {
$app->register('Spatie\LaravelRay\RayServiceProvider');
}
if (class_exists('BeyondCode\HeloLaravel\HeloLaravelServiceProvider')) {
$app->register('BeyondCode\HeloLaravel\HeloLaravelServiceProvider');
}

/*
|--------------------------------------------------------------------------
Expand Down
24 changes: 16 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"license": "MIT",
"type": "project",
"require": {
"php": "^8.0",
"php": "^8.1",
"ext-intl": "*",
"ext-json": "*",
"ext-pdo": "*",
Expand All @@ -37,18 +37,22 @@
"laravel/passport": "^10.1.1",
"laravel/socialite": "^5.2.1",
"prettus/l5-repository": "^2.7.4",
"rap2hpoutre/laravel-log-viewer": "^1.7",
"rap2hpoutre/laravel-log-viewer": "^2.0",
"spatie/laravel-fractal": "^5.8.1",
"spatie/laravel-permission": "^4.0",
"spatie/laravel-sluggable": "^2.6.1|^3.0.1"
"spatie/laravel-permission": "^5.3.1",
"spatie/laravel-sluggable": "^3.0.1"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.9",
"doctrine/dbal": "^2.12.1|^3.0",
"beyondcode/helo-laravel": "^1.3",
"beyondcode/tinkerwell-helper": "^1.3",
"doctrine/dbal": "^3.0",
"fakerphp/faker": "^1.13",
"league/flysystem": "^2.1.1",
"mockery/mockery": "^1.4.2",
"phpunit/phpunit": "^9.5.2"
"phpunit/phpunit": "^9.5.2",
"spatie/laravel-ray": "^1.26",
"spatie/x-ray": "^1.1"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -88,12 +92,16 @@
"phpunit": [
"./vendor/bin/phpunit --verbose > phpunit.txt -d memory_limit=2048M",
"@php artisan inspire --ansi"
]
],
"x-ray": "vendor/bin/x-ray app database resources routes tests"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
"optimize-autoloader": true,
"platform": {
"php": "8.1"
}
},
"minimum-stability": "dev",
"prefer-stable": true
Expand Down
Loading

0 comments on commit 77c1154

Please sign in to comment.