arx/core

Core packages for your Laravel extended project

8.6.1 2022-05-25 11:18 UTC

README

Packagist Packagist Packagist

Laravel Extended Core packages to kickstart your project

Installation

Install via composer

composer require arx/core=^8.0

Register Service Provider

Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.

Add service provider to config/app.php in providers section

Arx\Core\ServiceProvider::class,

Register Facade

Register package facade in config/app.php in aliases section

Arx\Core\Facades\Core::class,

Publish Configuration File

php artisan vendor:publish --provider="Arx\Core\ServiceProvider" --tag="config"

Usage

Arx Core is a bunch of selected core package to kickstart your Laravel project.

It includes :

  • "laravel/jetstream": "^2.0"
  • "laravel/ui": "^3.2"
  • "blok/utils": "^1.0"
  • "cherrypulp/laravel-action-filter": "^1.0"
  • "tymon/jwt-auth": "^1.0.1"
  • "spatie/laravel-medialibrary": "^8.7.2"
  • "spatie/laravel-permission": "^3.17"

For more infos, just check the dock of each core packages.

If you want to add a new core packages, just make a pull request !

Security

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

Credits