├── .github └── ISSUE_TEMPLATE │ ├── config.yml │ └── issue_template.yml ├── .gitignore ├── PSR-XX-provider-meta.md ├── PSR-XX-provider.md ├── README.md ├── composer.json └── src ├── ExtensionDefinitionInterface.php ├── FactoryDefinitionInterface.php ├── ServiceDependencyInterface.php └── ServiceProviderInterface.php /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/container-interop/service-provider/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/container-interop/service-provider/HEAD/.github/ISSUE_TEMPLATE/issue_template.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor/ 3 | -------------------------------------------------------------------------------- /PSR-XX-provider-meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/container-interop/service-provider/HEAD/PSR-XX-provider-meta.md -------------------------------------------------------------------------------- /PSR-XX-provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/container-interop/service-provider/HEAD/PSR-XX-provider.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/container-interop/service-provider/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/container-interop/service-provider/HEAD/composer.json -------------------------------------------------------------------------------- /src/ExtensionDefinitionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/container-interop/service-provider/HEAD/src/ExtensionDefinitionInterface.php -------------------------------------------------------------------------------- /src/FactoryDefinitionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/container-interop/service-provider/HEAD/src/FactoryDefinitionInterface.php -------------------------------------------------------------------------------- /src/ServiceDependencyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/container-interop/service-provider/HEAD/src/ServiceDependencyInterface.php -------------------------------------------------------------------------------- /src/ServiceProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/container-interop/service-provider/HEAD/src/ServiceProviderInterface.php --------------------------------------------------------------------------------