howtomakeaturn / laravel-simple-ab
A simple package for a/b testing.
0.1.0
2023-12-03 02:52 UTC
Requires
- laravel/framework: ~5.2.0||~5.3.0||~5.4.0||~5.5.0||~5.6.0||~5.7.0||~5.8.0||^6.0||^7.0||^8.0||^9.0|^10.0
Requires (Dev)
- phpunit/phpunit: ^8
README
A simple package for a/b testing.
Installation
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php:
Howtomakeaturn\LaravelSimpleAB\LaravelSimpleABServiceProvider::class,
If you want to use the facade, add this to your facades in app.php:
'AB' => Howtomakeaturn\LaravelSimpleAB\LaravelSimpleABFacade::class,
You might want to add this line in the .gitignore file:
/storage/laravel-simple-ab/
License
The LaravelSimpleAB is open-sourced software licensed under the MIT license.