summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 6653a8367decfc8a2edd80c1877c8d7f8b1c51a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
    "name": "zumba/json-serializer",
    "type": "library",
    "description": "Serialize PHP variables, including objects, in JSON format. Support to unserialize it too.",
    "keywords": ["json", "serialize", "serializer"],
    "homepage": "https://tech.zumba.com",
    "license": "MIT",
    "scripts": {
        "test": "phpunit --colors=always"
    },
    "authors": [
        {
            "name": "Zumba Fitness, LLC",
            "email": "engineering@zumba.com"
        },
        {
            "name": "Juan Basso",
            "email": "juan.basso@zumba.com"
        }
    ],
    "require": {
        "php": "^7.0 || ^8.0",
        "ext-mbstring": "*"
    },
    "suggest": {
        "opis/closure": "Allow to serialize PHP closures"
    },
    "require-dev": {
        "phpunit/phpunit": ">=6.0 <11.0"
    },
    "autoload": {
        "psr-4": {
            "Zumba\\": "src/",
            "Zumba\\JsonSerializer\\Test\\": "tests/"
        }
    }
}