Download the PHP package ignislabs/freighter without Composer
On this page you can find all versions of the php package ignislabs/freighter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ignislabs/freighter
More information about ignislabs/freighter
Files in ignislabs/freighter
Package freighter
Short Description Easy docker development environment management for PHP and Laravel
License MIT
Informations about the package freighter
Freighter
Easy docker development environment management for PHP and Laravel.
You don't need to have a Laravel project to use Freighter.
You have more toys if you're using Laravel, but you certainly don't require to do so.It does come with Laravel-oriented commands, but you don't need to use them.
It also does use the database environment variables names as defined by Laravel, but as long as you have an
.env
file with those variables declared, it's more than enough.
Installation
You install it with composer:
Then you need to run init just this first time (or when a new version is released):
init
copies the freighter binary to the root of your repo, makes it executable and adds it to.gitignore
, since you don't need to track it.
And now you're ready to use it:
The Stack
The stack provided is comprehensive, but we try to keep it as minimal as possible by using Alpine Linux whenever possible.
- PHP 7.1 FPM (latest)
- MySQL 5.7 (latest)
- Nginx (latest alpine)
- Redis (latest alpine)
- Beanstalkd (custom alpine — latest)
Ports
Inside your containers, the ports will remain the default ones. But when accessing them from the host machine it's a different story.
Freighter plays nice with other services that you might be already running by using easy to remember non-standard ports by default:
8000
for Nginx33060
for MySQL63790
for Redis11301
for Beanstalkd
You can override these defaults by setting the appropriate environment
variables in your .env
file to the desired values:
Hosts
Inside your containers the host names will correspond to the services
names as defined in the Compose file, so you'll need to replace them in
your .env
file:
If using Laravel you'll probably also need to add QUEUE_HOST
in your
config/queue.php
manually since Laravel comes with it hardcoded by
default. Just add 'host' => env('QUEUE_HOST', 'localhost'),
to the
beanstalkd
connection.
MySQL
Freighter uses the credentials from environment variables defined in
your.env
file, so you can use those to connect from your host machine.
Just remember to use the correct port (33060
by default).
The variable names follow the Laravel convention:
Commands
Freighter comes with a few native commands, and more will be coming.
Any unrecognized command will be handed down to docker-compose
.
You can see any command's help by passing -h
. Some commands will also
show help if you omit all arguments.
Start and stop your environment
Customize services
If you want to customize the compose file, you can copy the one in
vendor to your repo manually or by running ./freighter copy-services
.
If a compose file is found here, Freighter will use this one instead of the one in vendor.
This way Youy can add services or customize the existing ones. As long as you keep te same service names, you should be fine.
Composer
Artisan
Laravel logs
Testing
Shell access
MySQL
Running Docker Compose commands
As I mentioned earlier, any unrecognized command will be handed down to
docker-compose
. So you can run any docker-compose
command, with the
added benefit of having the environment variables in place.
Custom commands
Freighter is incredibly easy to extend (as long as you know your way around bash scripting :bowtie:).
Just create a directory named freighter.d
at the root of your repo and
add shell scripts in it, Freighter will be pick them up immediately.
These files need to declare functions prefixed as _fcmd_
, for example:
_fcmd_artisan
.
Take a look at the native ones in vendor/ignislabs/freighter/freighter.d
so you have an idea of how to write them.
An artisan command to generate custom Freighter commands even quicker is in the works.