andrewnovikof / objects
An Examples library
1.2.3
2017-09-22 08:09 UTC
Requires
- php: ^7.0|^7.1
- illuminate/support: ~5.4
This package is auto-updated.
Last update: 2024-10-16 10:29:29 UTC
README
1. Installation
composer require andrewnovikof/objects
2. Service Provider
- Add
AndrewNovikof\Objects\ObjectsServiceProvider::class
to yourproviders[]
array inconfig\app.php
.
3. Facade
- Add
'Objects' => AndrewNovikof\Objects\Facades\Objects::class
to yourfacades[]
array inconfig\app.php
.
4. Config
You can publish the config file with:
php artisan vendor:publish --provider="AndrewNovikof\Objects\ObjectsServiceProvider" --tag="config"
4. Example objects
You can publish the Example objects files with:
php artisan vendor:publish --provider="AndrewNovikof\Objects\ObjectsServiceProvider" --tag="objects"