arsiconsultancy / laravel
Arsi Laravel application starter for bootstrapping new projects with Sanctum, Lighthouse GraphQL, and backup support.
Package info
github.com/arsi-consultancy/arsi-laravel
Type:project
pkg:composer/arsiconsultancy/laravel
v1.0.4
2026-04-12 18:17 UTC
Requires
- php: ^8.3
- laravel/framework: ^13.0
- laravel/sanctum: ^4.0
- laravel/tinker: ^3.0
- mll-lab/laravel-graphiql: ^4.1
- nuwave/lighthouse: ^6.66
- spatie/laravel-backup: ^10.2
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pail: ^1.2.5
- laravel/pint: ^1.27
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- phpunit/phpunit: ^12.5.12
README
Laravel 13 application starter maintained by Arsi Consultancy(https://arsi.in).
This project is intended to be published as a Composer project package and installed with:
composer create-project arsi/laravel my-app
Included packages
- Laravel Framework
- Laravel Sanctum
- Lighthouse GraphQL
- GraphiQL UI
- Spatie Laravel Backup
Requirements
- PHP 8.3+
- Composer 2.7+
- Node.js and npm for frontend assets
Local development
composer install cp .env.example .env php artisan key:generate php artisan migrate npm install npm run build
You can also use the bundled setup script:
composer run setup
Publishing to Packagist
Before submitting this package to Packagist:
- Push this directory to its own public Git repository.
- Commit the new
.env.example,.gitignore, and README changes. - Make sure
vendor/and any local build artifacts are not committed. - Create a version tag such as
v1.0.0. - Submit the repository URL on Packagist.
After that, consumers can install it with:
composer create-project arsi/laravel my-app