summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 553a3758da1870913da23df663063457839116b5 (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
{
    "name": "phpoption/phpoption",
    "description": "Option Type for PHP",
    "keywords": ["php","option","language","type"],
    "type": "library",
    "license": "Apache2",
    "authors": [
        {
            "name": "Johannes M. Schmitt",
            "email": "schmittjoh@gmail.com"
        }
    ],
    "require": {
        "php": ">=5.3.0"
    },
    "require-dev": {
        "phpunit/phpunit": "4.7.*"
    },
    "autoload": {
        "psr-0": { "PhpOption\\": "src/" }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.3-dev"
        }
    }
}