Download the PHP package adityarizqi/laradox without Composer

On this page you can find all versions of the php package adityarizqi/laradox. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laradox

Laradox

Tests Latest Stable Version License

Plug-and-play Docker environment for Laravel with FrankenPHP, Nginx, and Octane support

Laradox provides a production-ready Docker environment optimized for Laravel Octane with FrankenPHP. It's designed for both local development and production deployments, with automatic HTTPS support using mkcert.

Features

Performance

Comparison of performance measurements between without and with FrankenPHP under static test conditions:

Without FrankenPHP With FrankenPHP
Without FrankenPHP With FrankenPHP

Requirements

Installation

Step 1: Install via Composer

Step 2: Install Laravel Octane

Step 3: Install Laradox

This command will:

Step 4: Setup SSL Certificates

For Development (Optional):

Setup SSL certificates for trusted HTTPS:

Laradox will automatically:

Or manually:

Development: SSL is optional. You can run with HTTP only (port 80) without any certificates. Laradox will automatically use HTTP-only configuration.

For Production (Required):

SSL certificates are mandatory for production environments. The laradox:up command will refuse to start production containers without valid SSL certificates.

Windows Users: mkcert installation is not automated on Windows. Please download from mkcert releases and run manually.

WSL2 Users: Run the mkcert command on the Windows side to install certificates in your Windows trust store.

Step 5: Start Docker Containers

Laradox automatically checks for Docker and Docker Compose before starting containers.

Development:

If Docker is not installed, Laradox will:

Or using Docker Compose directly:

Production:

Step 6: Install Dependencies

Step 7: Setup Laravel

You're done! Open https://laravel.docker.localhost to view your application (or http://laravel.docker.localhost if SSL is not configured).

Usage

Artisan Commands

Laradox provides several artisan commands for managing your Docker environment:

SSL Configuration Options

The --force-ssl flag controls SSL behavior:

Helper Scripts

The helper scripts allow you to run commands inside containers without entering them:

Interactive Shell Access

Enter containers interactively for debugging, exploration, or manual operations:

Available services: php, nginx, node, scheduler, queue

Docker Compose Commands

For direct control over Docker:

Configuration

Nginx Configuration

Laradox automatically uses the appropriate nginx configuration based on your environment and SSL availability:

Configuration Files:

Automatic Selection:

The configuration is automatically selected and copied when you run php artisan laradox:up.

Note: You don't need to manually edit nginx configuration files. Laradox handles this automatically.

Environment Variables

You can customize Laradox behavior using environment variables in your .env file:

Configuration File

Publish and customize the configuration file:

Edit config/laradox.php to customize domains, ports, SSL paths, and more.

Services

Laradox includes the following services:

Scheduler Configuration

The scheduler service handles Laravel's task scheduling differently based on environment:

Development:

Production:

To modify the schedule in production, edit docker/php/config/schedule.cron:

Note: Define your actual scheduled tasks in app/Console/Kernel.php using Laravel's scheduler. The cron file only triggers Laravel's scheduler.

Customization

Custom Domain

To use a custom domain:

  1. Update the domain in config/laradox.php or .env:

  2. Generate SSL certificate:

  3. Restart the containers to apply the domain change:

  4. Add domain to your /etc/hosts file (if not using .localhost)

Note: The domain is automatically configured in Nginx using environment variables. You don't need to manually edit docker/nginx/conf.d/app.conf.

Docker Configuration

You can customize the Docker setup by modifying the published files:

Troubleshooting

Permission Issues

If you encounter permission issues, adjust the user IDs:

Rebuild the containers:

SSL Certificate Issues

Reinstall mkcert and regenerate certificates:

Port Conflicts

If ports 80/443 are already in use, change them in .env:

Then restart the containers:

Containers Already Running

Laradox automatically detects if containers are already running and offers to restart them:

Or manually stop and start:

License

Laradox is open-sourced software licensed under the MIT license.

Testing

Laradox includes a comprehensive test suite covering all functionality. All tests must pass to ensure proper operation.

Running Tests

Credits

Created by Aditya Rizqi Januarta

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.


All versions of laradox with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/support Version ^10.0|^11.0|^12.0
illuminate/console Version ^10.0|^11.0|^12.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package adityarizqi/laradox contains the following files

Loading the files please wait ...