Download the PHP package maherremita/laravel-dev without Composer

On this page you can find all versions of the php package maherremita/laravel-dev. 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 laravel-dev

Laravel Dev

A Laravel package that allows you to launch and manage all your development servers and commands in separate terminal windows with a single Artisan command.

✨ Features

🚀 Demo

https://github.com/user-attachments/assets/9eecce7f-19f2-43ce-9c1c-efa58f5b31ae

A quick demonstration of how Laravel Dev works.

📦 Installation

You can install the package via composer:

Next, publish the configuration file using the vendor:publish command. This will create a config/laravel_dev.php file in your project.

Usage

1. ⚙️ Configure Your Commands

Open the config/laravel_dev.php file and define the commands you want to manage. You can add as many as you need.

Static Commands

Define your commands as usual in the commands array:

Dynamic Commands

You can also generate commands at runtime, e.g. from the database or other sources. Use the dynamic_commands array for this. Each entry contains PHP code as a string, which is evaluated at runtime and must return an array of commands (like the commands array above).

Example:

Notes:

2. 🚀 Run the Dev Command

Start the master command by running:

This will launch all the commands defined in your configuration file, each in its own terminal window. You will then see an interactive menu in the original terminal allowing you to manage these processes.

3. ⚙️ Manage Your Processes

Once running, you can choose from the following actions:

🎨 Available Colors

You can set the text and background colors for each terminal window.

🤝 Contributing

Contributions are welcome! Please feel free to submit a pull request.

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/my-new-feature).
  3. Make your changes.
  4. Commit your changes (git commit -am 'Add some feature').
  5. Push to the branch (git push origin feature/my-new-feature).
  6. Create a new Pull Request.

📜 License

The MIT License (MIT). Please see License File for more information.

🙏 Credits


Found this package helpful? Give it a star!


All versions of laravel-dev with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/support Version ^9.0|^10.0|^11.0||^12.0
illuminate/console Version ^9.0|^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 maherremita/laravel-dev contains the following files

Loading the files please wait ...