andrewnovikof / objects
An Examples library
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/andrewnovikof/objects
Requires
- php: ^7.0|^7.1
- illuminate/support: ~5.4
This package is auto-updated.
Last update: 2025-10-16 12:31:19 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"