| 123456789101112131415161718192021222324252627282930313233 |
- {
- "name": "lionsad/service_container",
- "description": "Service Container based on CTools plugins with Symfony Integration",
- "type": "drupal-module",
- "homepage": "https://www.drupal.org/project/service_container",
- "license": "GPL-2.0+",
- "minimum-stability": "dev",
- "prefer-stable": true,
- "authors": [
- { "name": "Fabian Franz", "email": "fabian@lionsad.de" }
- ],
- "require": {
- "php": ">=5.3.10"
- },
- "autoload": {
- "psr-0": {
- "Drupal\\Component\\": "lib/",
- "Drupal\\Core\\": "lib/",
- "ServiceContainer": "lib/",
- "Drupal": "lib/",
- "Symfony\\Component\\DependencyInjection": "lib/",
- "Psr": "lib/"
- },
- "psr-4": {
- "Drupal\\service_container\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Drupal\\service_container\\Tests\\": "tests/src/"
- }
- }
- }
|