summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 2fde6239de30a97104952bcf89b5bede8b40099b (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
{
    "name": "sentry/sentry",
    "type": "library",
    "description": "A PHP client for Sentry (http://getsentry.com)",
    "keywords": ["log", "logging"],
    "homepage": "http://getsentry.com",
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "David Cramer",
            "email": "dcramer@gmail.com"
        }
    ],
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^1.8.0",
        "phpunit/phpunit": "^4.6.6"
    },
    "require": {
        "php": ">=5.2.4",
        "ext-curl": "*",
        "monolog/monolog": "*"
    },
    "conflict": {
        "raven/raven": "*"
    },
    "bin": [
        "bin/sentry"
    ],
    "autoload": {
        "psr-0" : {
            "Raven_" : "lib/"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "0.22.x-dev"
        }
    }
}