graham-campbell / manager
Manager Provides Some Manager Functionality For Laravel
Fund package maintenance!
GrahamCampbell
Tidelift
Installs: 15 430 805
Dependents: 165
Suggesters: 2
Security: 0
Stars: 386
Watchers: 6
Forks: 38
Open Issues: 0
Requires
- php: ^7.4.15 || ^8.0.2
- illuminate/contracts: ^8.75 || ^9.0 || ^10.0 || ^11.0
- illuminate/support: ^8.75 || ^9.0 || ^10.0 || ^11.0
Requires (Dev)
- graham-campbell/analyzer: ^4.1
- graham-campbell/testbench-core: ^4.1
- mockery/mockery: ^1.6.6
- phpunit/phpunit: ^9.6.15 || ^10.5.1
- 5.1.x-dev
- v5.1.0
- 5.0.x-dev
- v5.0.0
- 4.7.x-dev
- v4.7.0
- 4.6.x-dev
- v4.6.1
- v4.6.0
- v4.5.3
- v4.5.2
- v4.5.1
- v4.5.0
- v4.4.1
- v4.4.0
- v4.3.0
- v4.2.2
- v4.2.1
- v4.2.0
- v4.1.0
- v4.0.0
- 3.0.x-dev
- v3.0.0
- 2.5.x-dev
- v2.5.0
- v2.4.0
- v2.3.1
- v2.3.0
- v2.2.1
- v2.2.0
- v2.1.0
- v2.0.0
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v1.0.0-RC1
- v0.1.0-alpha
This package is auto-updated.
Last update: 2024-10-17 23:47:51 UTC
README
Laravel Manager was created by, and is maintained by Graham Campbell, and provides some manager functionality for Laravel. Feel free to check out the change log, releases, security policy, license, code of conduct, and contribution guidelines.
Installation
This version requires PHP 7.4-8.3 and supports Laravel 8-11.
To get the latest version, simply require the project using Composer:
$ composer require "graham-campbell/manager:^5.1"
Once installed, you can extend or implement the classes in this package to speed up writing Laravel packages further. There are no service providers to register.
Configuration
Laravel Manager requires no configuration. Just follow the simple install instructions and go!
Usage
ConnectorInterface
This interface defines one public method.
The 'connect'
method accepts one parameter which is an array of config.
This interface is not used by this package, but is used by the likes of Laravel Flysystem.
ManagerInterface
This interface defines the public methods a manager class must implement.
The 'connection'
method accepts one optional parameter (the connection name), and will return a connection instance and will reuse a previous connection from the pool if possible.
The 'reconnect'
method accepts one optional parameter (the connection name), and will return a connection instance after forcing a re-connect.
The 'disconnect'
method accepts one optional parameter (the connection name), and will return nothing after removing the connection from the pool.
The 'getConnectionConfig'
method has one required parameter (the connection name), and will return the config for the specified connection.
The 'getDefaultConnection'
method will return the default connection as specified in the config.
The 'setDefaultConnection'
method has one required parameter (the connection name), and will return nothing after setting the default connection.
The 'extend'
method has two required parameter. The first is the name of a connection, or the name of a connection driver. The second parameter must be callable
. The purpose of this method is to add custom connection creation methods on the fly. The second parameter must return a connection.
The 'getConnections'
method will return an array of all the connections currently in the pool.
AbstractManager
This abstract class implements the ManagerInterface
. It has two abstract protected methods that must be implemented by extending classes.
The 'createConnection'
method will be called with the specific connection config as the first parameter. It must return a connection instance.
The 'getConfigName'
method must return the name of the connection config. This may be 'yourname\yourpackage'
for example.
You can also dynamically call methods on the default connection due to the use of __call
so instead of writing ->connection()->methodName()
, you can just jump straight in with ->methodName()
.
Further Information
You may see an example of implementation in Laravel Flysystem, Laravel DigitalOcean, and Laravel GitHub.
Security
If you discover a security vulnerability within this package, please send an email to security@tidelift.com. All security vulnerabilities will be promptly addressed. You may view our full security policy here.
License
Laravel Manager is licensed under The MIT License (MIT).
For Enterprise
Available as part of the Tidelift Subscription
The maintainers of graham-campbell/manager
and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.