forked from prooph/common
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (44 loc) · 1.01 KB
/
composer.json
File metadata and controls
45 lines (44 loc) · 1.01 KB
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": "prooph/common",
"description": "Common classes used across prooph packages",
"type": "library",
"authors": [
{
"name": "Alexander Miertsch",
"email": "contact@prooph.de",
"homepage": "http://www.prooph.de"
},
{
"name": "Sascha-Oliver Prolic",
"email": "saschaprolic@googlemail.com"
}
],
"keywords": [
"prooph",
"common"
],
"homepage": "http://getprooph.org/",
"license": "BSD-3-Clause",
"require": {
"php": "~5.5|~7.0",
"ramsey/uuid" : "~2.8",
"beberlei/assert": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"fabpot/php-cs-fixer": "1.7.*",
"satooshi/php-coveralls": "dev-master"
},
"suggest": {
},
"autoload": {
"psr-4": {
"Prooph\\Common\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\Common\\": "tests"
}
}
}