danpalmieri / laravel-custom-domains
A package to connect the Cloudflare custom domain service to a Laravel application.
dev-main
2023-07-03 11:20 UTC
Requires
- php: ^8.1
- illuminate/contracts: ^10.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.0
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2024-11-09 13:13:06 UTC
README
A package to connect the Cloudflare custom domain service to a Laravel application.
Installation
You can install the package via composer:
composer require danpalmieri/laravel-custom-domains
You can publish and run the migrations with:
php artisan vendor:publish --tag="custom-domains-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="custom-domains-config"
This is the contents of the published config file:
return [
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="custom-domains-views"
Usage
$variable = new VendorName\Skeleton(); echo $variable->echoPhrase('Hello, VendorName!');
Testing
composer test
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.