descompilando / asteroid-blank
Laravel complete boilerplate.
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^7.4 | ^8.0
- blade-ui-kit/blade-heroicons: ^1.2
- blade-ui-kit/blade-icons: ^1.0
- fideloper/proxy: ^4.4
- fruitcake/laravel-cors: ^2.0
- guzzlehttp/guzzle: ^7.0.1
- laravel/framework: ^8.40
- laravel/tinker: ^2.5
- livewire/livewire: ^2.4
- sentry/sentry-laravel: ^2.6
Requires (Dev)
- barryvdh/laravel-debugbar: ^3.6
- facade/ignition: ^2.5
- fakerphp/faker: ^1.9.1
- laravel/sail: ^1.0.1
- matt-allan/laravel-code-style: ^0.6.0
- mockery/mockery: ^1.4.2
- nunomaduro/collision: ^5.0
- phpunit/phpunit: ^9.3.3
README
Start a rocket journey towards the stars creating a new Laravel project with super powers. This is a starting point for new apps with a some fully opinionated built-in features.
Stack
We built Asteroid Blank by setting up some awesome tools which we believe are the ideal for each case.
- Livewire to simple build dynamic interfaces
- Alpine.js to help with reactive and declarative interfaces
- Tailwind CSS to build whatever you want (seriously)
- Sass to write CSS with power-ups
- Blade Icons to easily make use of SVG icons
- Hero Icons to have beautiful hand-crafted SVG icons
- Sentry Laravel to have a monitoring platform on your hands
- Laravel Debugbar to have debuging and profiling ready to use
- Laravel Sail to bring your app up
- PHP Coding Standards Fixer to fixes your code to follow standards
You are free to setup new tools, remove which you dont want or even replace everything with your choices, but it might be easier just start something from scratch.
Usage
You can start creating a new project using it as template:
composer create-project descompilando/asteroid-blank my-app
Or just clone it and edit:
git clone git@github.com:descompilando/asteroid-blank.git my-app
rm -rf .git/
To bring it up you can use Laravel Sail:
cd my-app
sail up -d
Or even the Laravel built-in solution:
cd my-app
php artisan serve