Projet

Général

Profil

Paste
Télécharger (732 octets) Statistiques
| Branche: | Révision:

root / drupal7 / misc / typo3 / phar-stream-wrapper / composer.json @ fbb66ca6

1
{
2
    "name": "typo3/phar-stream-wrapper",
3
    "description": "Interceptors for PHP's native phar:// stream handling",
4
    "type": "library",
5
    "license": "MIT",
6
    "homepage": "https://typo3.org/",
7
    "keywords": ["php", "phar", "stream-wrapper", "security"],
8
    "require": {
9
        "php": "^5.3.3|^7.0",
10
        "ext-fileinfo": "*",
11
        "ext-json": "*",
12
        "brumann/polyfill-unserialize": "^1.0"
13
    },
14
    "require-dev": {
15
        "ext-xdebug": "*",
16
        "phpunit/phpunit": "^4.8.36"
17
    },
18
    "autoload": {
19
        "psr-4": {
20
            "TYPO3\\PharStreamWrapper\\": "src/"
21
        }
22
    },
23
    "autoload-dev": {
24
        "psr-4": {
25
            "TYPO3\\PharStreamWrapper\\Tests\\": "tests/"
26
        }
27
    }
28
}