-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 828 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 828 Bytes
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
{
"name": "dms-org/package.content",
"description": "The generic content package for the DMS",
"license": "MIT",
"authors": [
{
"name": "Elliot Levin",
"email": "elliotlevin@hotmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Dms\\Package\\Content\\": "./src/"
}
},
"require": {
"php": ">=7.0.0",
"dms-org/core": "^0.9.0",
"dms-org/common.structure": "^0.9.0"
},
"autoload-dev": {
"psr-4": {
"Dms\\Package\\Content\\Tests\\": "./tests/Tests/",
"Dms\\Core\\Tests\\": "./vendor/dms-org/core/tests/Tests/"
}
},
"require-dev": {
"dms-org/common.testing": "^0.9.0",
"dms-org/library.testing": "^0.9.0"
}
}