This project contains sample README and PHP files to quickstart a "container-interop/service-provider". Use it as a base to start your own service-provider package.
This package integrates XXX in any container-interop compatible framework/container.
composer require yourvendorname/yourpackagename
Once installed, you need to register the YourVendor\XXXServiceProvider
into your container.
If your container supports thecodingmachine/discovery integration, you have nothing to do. Otherwise, refer to your framework or container's documentation to learn how to register service providers.
This service provider is meant to [fill purpose here].
This service provider expects the following configuration / services to be available:
Name | Compulsory | Description |
---|---|---|
configuration_value |
no | Definition |
service_name |
yes | Definition |
This service provider provides the following services:
Service name | Description |
---|---|
service_name |
Definition |
This service provider extends those services:
Name | Compulsory | Description |
---|---|---|
service_name |
yes | Definition |
Project template courtesy of thecodingmachine/service-provider-template