summaryrefslogtreecommitdiff
path: root/library/rhumsaa/uuid/composer.json
blob: d8ec088babd7207398fd0cbb82766eac2b805b7a (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
38
39
40
41
42
43
44
45
{
    "name": "rhumsaa/uuid",
    "description": "A PHP 5.3+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
    "type": "library",
    "keywords": ["uuid", "identifier", "guid"],
    "homepage": "https://github.com/ramsey/uuid",
    "license": "MIT",
    "authors": [
        {
            "name": "Ben Ramsey",
            "homepage": "http://benramsey.com"
        },
        {
            "name": "Marijn Huizendveld",
            "email": "marijn.huizendveld@gmail.com"
        }
    ],
    "support": {
        "issues": "https://github.com/ramsey/uuid/issues",
        "source": "https://github.com/ramsey/uuid"
    },
    "require": {
        "php": ">=5.3.3"
    },
    "require-dev": {
        "moontoast/math": "~1.1",
        "symfony/console": "~2.3",
        "doctrine/dbal": ">=2.3",
        "phpunit/phpunit": "~3.7"
    },
    "bin": ["bin/uuid"],
    "suggest": {
        "moontoast/math": "Support for converting UUID to 128-bit integer (in string form).",
        "symfony/console": "Support for use of the bin/uuid command line tool.",
        "doctrine/dbal": "Allow the use of a UUID as doctrine field type."
    },
    "autoload": {
        "psr-0": {"Rhumsaa\\Uuid": "src/"}
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.7.x-dev"
        }
    }
}