wayofdev/laravel-cycle-orm-adapter
import ExternalLink from "../../components/external-link";
Welcome to the installation guide for the Laravel CycleORM Adapter. This document will walk you through the setup process to get you up and running quickly.
Before you begin, ensure your development environment meets the following requirements:
| Laravel | Cycle ORM | Adapter |
|---|---|---|
^10.28 |
2.x |
<4.9.0 |
^10.28, 11.x |
2.x |
≥4.9.0 |
^10.28, 11.x, 12.x |
2.x |
≥5.0.0 |
Installing the Laravel CycleORM Adapter is straightforward with Composer. Follow the steps below to add the adapter to your Laravel project.
For the core functionality, run the following Composer command in your terminal:
$ composer req wayofdev/laravel-cycle-orm-adapter
This command installs the wayofdev/laravel-cycle-orm-adapter package, integrating CycleORM into your Laravel application.
After installing the package, publish the configuration file using the vendor:publish command:
$ php artisan vendor:publish \
--provider="WayOfDev\Cycle\Bridge\Laravel\Providers\CycleServiceProvider"
If you need support for <ExternalLink href="https://laravel.com/docs/11.x/eloquent-factories">Eloquent-like Factories</ExternalLink>, install the following package:
$ composer req --dev wayofdev/laravel-cycle-orm-factories
which will install the <ExternalLink href="https://github.com/wayofdev/laravel-cycle-orm-factories">wayofdev/laravel-cycle-orm-factories</ExternalLink> package to provide similar functionality
How can I help you explore Laravel packages today?