Download the PHP package evotic/make-extended without Composer

On this page you can find all versions of the php package evotic/make-extended. 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 make-extended

Laravel Make Extended

The Laravel Make Extended package provides additional make: commands that simplify common development tasks in Laravel, such as creating actions, DTOs (Data Transfer Objects), repositories, services, and more. This package aims to fill gaps in Laravel's built-in Artisan commands, offering enhanced tools to streamline development.

Developed to boost productivity and maintain code organization, these commands provide structure and separation of concerns for complex Laravel applications.

Key Features

Installation

To install the Laravel Make Extended package, follow these steps:

  1. Install via Composer:

    Run the following command to install the package via Composer:

  2. Publish Configuration (Optional):

    If you want to customize any aspect of the package, you can publish the configuration files:

Usage

Once the package is installed, you can start using the new make: commands in your Laravel project.

For example, to create a new action class, simply run:

php artisan make:action YourAction

Each generated file will be placed in the appropriate folder, following Laravel’s naming conventions.


Available Commands

This package provides the following make: commands:

make:action

Creates a single-action class, which can be used to organize your business logic and simplify controllers. Typically used in a CQRS pattern.

Example:

php artisan make:action ProcessOrderAction

This generates the following file:

Use Case:

Single-action classes can be useful for organizing logic thatbash php artisan vendor:publish --tag=make-extended-stubs



This will publish the stubs to the `resources/stubs/make-extended` directory in your Laravel application. You can then modify these stubs as needed, and the package will use the customized stubs instead of the default ones.

### Example

To customize the `Service.stub`, you would find the file at: `resources/stubs/make-extended/Service.stub`.

---

## Contributing

If you'd like to contribute to this project, feel free to submit pull requests or open issues on GitHub. Contributions, suggestions, and improvements are always welcome!

## Important Links

- evotic Website: [evotic.io](https://evotic.io)
- Laravel Documentation: [Laravel Docs](https://laravel.com/docs)
- CQRS Pattern: [CQRS Documentation](https://martinfowler.com/bliki/CQRS.html)
- Data Transfer Objects (DTOs): [DTO Pattern](https://en.wikipedia.org/wiki/Data_transfer_object)

## License

This package is licensed under the MIT License. See the [LICENSE](LICENSE.md) file for more information.

All versions of make-extended with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/support Version ^9.0|^10.0|^11.0
illuminate/console Version ^9.0|^10.0|^11.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 evotic/make-extended contains the following files

Loading the files please wait ....