Projet

Général

Profil

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

root / drupal7 / misc / brumann / polyfill-unserialize / composer.json @ fbb66ca6

1
{
2
    "name": "brumann/polyfill-unserialize",
3
    "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
4
    "type": "library",
5
    "license": "MIT",
6
    "authors": [
7
        {
8
            "name": "Denis Brumann",
9
            "email": "denis.brumann@sensiolabs.de"
10
        }
11
    ],
12
    "autoload": {
13
        "psr-4": {
14
            "Brumann\\Polyfill\\": "src/"
15
        }
16
    },
17
    "autoload-dev": {
18
        "psr-4": {
19
            "Tests\\Brumann\\Polyfill\\": "tests/"
20
        }
21
    },
22
    "minimum-stability": "stable",
23
    "require": {
24
        "php": "^5.3|^7.0"
25
    }
26
}