diff options
author | Remi Collet <remi@remirepo.net> | 2019-06-19 13:28:23 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-06-19 13:28:23 +0200 |
commit | feb6f1a98accb97120e2d4dd570b6b96355753c7 (patch) | |
tree | 30bc2d4953f80351e8a00fe44b77019d5fe7f391 /composer.json |
import from Fedora
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..e36b09e --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "typo3/phar-stream-wrapper", + "description": "Interceptors for PHP's native phar:// stream handling", + "type": "library", + "license": "MIT", + "homepage": "https://typo3.org/", + "keywords": ["php", "phar", "stream-wrapper", "security"], + "require": { + "php": "^5.3.3|^7.0", + "ext-json": "*", + "brumann/polyfill-unserialize": "^1.0" + }, + "require-dev": { + "ext-xdebug": "*", + "phpunit/phpunit": "^4.8.36" + }, + "suggest": { + "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing" + }, + "autoload": { + "psr-4": { + "TYPO3\\PharStreamWrapper\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "TYPO3\\PharStreamWrapper\\Tests\\": "tests/" + } + } +} |