-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
42 lines (42 loc) · 1.09 KB
/
composer.json
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
{
"name": "uecode/segment-io-php",
"description": "A PHP library for reporting events to the Segment.io API",
"type": "library",
"license": "MIT",
"keywords": [
"segment.io",
"segment",
"analytics"
],
"homepage": "http://segment.io",
"authors": [
{
"name": "Keith Kirk",
"email": "kkirk@undergroundelephant.com",
"homepage": "http://undergroundelephant.com"
}
],
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "5.3.1",
"guzzlehttp/guzzle-services": "~0.6",
"monolog/monolog": "~1.7",
"symfony/filesystem": "~2.5",
"symfony/console": "~2.5"
},
"require-dev": {
"mockery/mockery": "~0.9.4",
"phpunit/phpunit": "~4.0",
"raulfraile/ladybug": "~1.0.13"
},
"autoload": {
"psr-4": {
"SegmentIO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SegmentIO\\Tests\\": "tests/"
}
}
}