sfneal / laravel-helpers
Helper functions for Laravel applications
Installs: 103 704
Dependents: 7
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Requires
- php: ^7.1|^8.0
- laravel/framework: >=5.8
- sfneal/actions: ^2.0
- sfneal/string-helpers: >=1.1
Requires (Dev)
- orchestra/testbench: ^3.8|^6.24.1|^7.0
- phpunit/phpunit: ^7.5|^8.0 <8.5.12|^9.3
- scrutinizer/ocular: ^1.8
README
Helper functions for Laravel applications.
Installation
You can install the package via composer:
composer require sfneal/laravel-helpers
In order to autoload to the helper functions add the following path to the autoload.files section in your composer.json.
"autoload": { "files": [ "vendor/sfneal/laravel-helpers/src/Helpers/laravel.php", "vendor/sfneal/laravel-helpers/src/Helpers/app-info.php" ] },
To modify the application info 'version' & 'changelog_path' setting publish the ServiceProvider & modify the config.
php artisan vendor:publish --provider="Sfneal\Helpers\Laravel\Providers\AppInfoServiceProvider"
Usage
// Usage description here
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email stephen.neal14@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
PHP Package Boilerplate
This package was generated using the PHP Package Boilerplate.