diff options
Diffstat (limited to 'src/Apcu/composer.json')
-rw-r--r-- | src/Apcu/composer.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/Apcu/composer.json b/src/Apcu/composer.json new file mode 100644 index 0000000..913b526 --- /dev/null +++ b/src/Apcu/composer.json @@ -0,0 +1,31 @@ +{ + "name": "symfony/polyfill-apcu", + "type": "library", + "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions", + "keywords": ["polyfill", "shim", "compatibility", "portable", "apcu"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=5.3.3" + }, + "autoload": { + "psr-4": { "Symfony\\Polyfill\\Apcu\\": "" }, + "files": [ "bootstrap.php" ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.13-dev" + } + } +} |