yusologia / lara-backend-service
Yusologia Default Backend Service.
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.2
- laravel/framework: ^11.0
- laravel/tinker: ^2.9
- yusologia/lara-core: ^1.0
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pint: ^1.13
- laravel/sail: ^1.26
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.0
- phpunit/phpunit: ^11.0.1
- spatie/laravel-ignition: ^2.4
This package is auto-updated.
Last update: 2024-10-31 00:27:53 UTC
README
Installation
composer create-project yusologia/lara-backend-service project
Configuration system in config/core.php
return [ 'prefix' => [ // Base uri for website application 'web' => env('BASE_WEB_PREFIX', 'web'), // Base uri for mobile application 'mobile' => env('BASE_MOBILE_PREFIX', 'mobile'), ], 'namespace' => [ // Base namespace for website application 'web' => env('BASE_WEB_NAMESPACE', 'Web'), // Base namespace for mobile application 'mobile' => env('BASE_MOBILE_NAMESPACE', 'Mobile'), ] ];