Download the PHP package m3assy/laravelannotation without Composer

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

Laravel Middleware Annotations

Latest Version on Packagist Total Downloads Build Status

Documantation

Installation

Via Composer

If you are developing your application using Laravel 5.5+, the service providers and facades are registered automatically. If you are using lower versions add those lines to config/app.php

Usage

Now, You don't need to add any trait, the package register a custom controller dispatcher which register middlewares under the hood

Example:

This package built-in auth middleware annotation so all what you need is to use annotation like so: If you need to apply middleware over all controller then add you doc block over controller class, and if you need to specify a controller method with middleware then you can add your annotation above the method in its DocBlock.

if you have a middleware with parameters, so you can use the annotation with parentheses and the values syntax.

Creating Middleware Annotation is pretty easy, all what you need is to call our artisan make:annotation command like so:

This will generate a file like the following:

If you have middleware parameters that required kind of validation then you can override the following method:

Notice: If the given value is invalid the engine will neglect this annotation.

You can also access internal controller properties and methods dynamically like so:

Laratrust Integration

This package is delivered with Implementation For Laratrust ACL Annotations System.

To start using roles and permissions all what you need is to use the magic annotations in your controllers like so:

Feel free to use Role and Permission annotations on the class level and methods level like previous instructions.

Scanning New Roles And Permissions

If you have used any role or permission in its annotation and it does not exist in the acl tables and you need to add them, no need to use any ui or tinker or any type code. Just use our artisan scan:acl Command and it will identify automatically what is new in your roles and permissions and detects its type and create new instance for it. To start scan fire your command like following:

and voila!, We finished :)

If you refreshed any route to a controller contains non-existing role or permission, you will find that it is created and applied.

Future Features

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

MIT. Please see the license file for more information.


All versions of laravelannotation with dependencies

PHP Build Version
Package Version
No informations.
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 m3assy/laravelannotation contains the following files

Loading the files please wait ....