summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 6366d0ab791b46eb038a5b488967f919d1b7e087 (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
{
    "name": "aura/intl",
    "type": "library",
    "description": "The Aura Intl package provides internationalization tools, specifically message translation.",
    "keywords": [
        "intl",
        "internationalization",
        "i18n",
        "l10n",
        "localization",
        "globalization",
        "g11n"
    ],
    "homepage": "https://github.com/auraphp/Aura.Intl",
    "license": "MIT",
    "authors": [
        {
            "name": "Aura.Intl Contributors",
            "homepage": "https://github.com/auraphp/Aura.Intl/contributors"
        }
    ],
    "require": {
        "php": "^5.6|^7.0"
    },
    "autoload": {
        "psr-4": {
            "Aura\\Intl\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Aura\\Intl\\": "tests/"
        }
    }
}