thisisdevelopment / laravel-base
Opinionated Laraval base install
Installs: 130
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 6
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.2
- laravel/framework: ^11.0
- laravel/tinker: ^2.9
- oomphinc/composer-installers-extender: ^2.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
- roave/security-advisories: dev-master
- spatie/laravel-ignition: ^2.4
- thisisdevelopment/laravel-base-dev: ^0.6.0
README
An opinionated base laravel install.
Install
composer create-project thisisdevelopment/laravel-base <dir>
Or alternatively if you don't have composer installed locally:
dir=<dir>
git clone https://github.com/thisisdevelopment/laravel-base $dir
cd $dir
rm -rf .git
./bin/dev init
Folder structure
This is modeled after the domain oriented structure proposed by sticher.io: https://stitcher.io/blog/laravel-beyond-crud-01-domain-oriented-laravel The proposed structure is extended with the concept of modules, which are default implementations of generic domain code.
The complete structure is
app
<= toplevel app dir, no code hereapp/App/<app name>/
<= application specific codeapp/Domain/<domain>
<= domain specific codeapp/Domain/vendor/<domain>
<= generic domain code (managed by composer, for packages with type=laravel-domain)app/Module/<module>
<= module code (managed by composer, for packages with type=laravel-module)packages/<package>/
<= composer wil automatically pickup any packages in this directory. This allows to develop packages alongside your application (see packages/README.md)
It uses oomphinc/composer-installers-extender
to install packages of type laravel-module/laravel-domain to the app/Module
and app/Domain/vendor
folders.
Docker compose support
This base install comes with a complete docker-compose setup out of the box. It assumes you have a working local docker install which allows access to docker for your own user.
To easily access the containers you should also run the thisisdevelopment/docker-hoster
container (see https://github.com/thisisdevelopment/docker-hoster) to dynamically update your hosts file.
docker run --restart=unless-stopped -d \
-v /var/run/docker.sock:/tmp/docker.sock \
-v /etc/hosts:/tmp/hosts \
thisisdevelopment/docker-hoster
Dev script
To easily access the containers you should use the included bin/dev
script.
This script allows for easy execution of composer etc inside your containers.
The supported commands are:
up
down
rm
deploy
logs
php-cli
composer
artisan
phpcs
phpcbf
phpunit
Coding standards
This base install enforces the PSR-12
code standard. It does this by installing a git-hook which enforces this standard (by means of phpcs
)