-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
48 lines (48 loc) · 933 Bytes
/
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
43
44
45
46
47
48
{
"name": "mediact/file-mapping",
"description": "File mapping library",
"license": "MIT",
"type": "library",
"prefer-stable": true,
"minimum-stability": "stable",
"abandoned": "youwe/file-mapping",
"authors": [
{
"name": "MediaCT B.V.",
"email": "contact@mediact.nl"
},
{
"name": "Jan-Marten de Boer",
"role": "developer"
}
],
"require": {
"php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"kint-php/kint": "@stable",
"mediact/testing-suite": "@stable",
"mikey179/vfsstream": "@stable"
},
"autoload": {
"psr-4": {
"Mediact\\FileMapping\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mediact\\FileMapping\\Tests\\": "tests"
}
},
"archive": {
"exclude": [
"tests",
"phpcs.xml",
"phpmd.xml",
"phpunit.xml",
"bitbucket-pipelines.yml",
".gitignore"
]
}
}