forked from mediact/file-mapping
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 989 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
{
"name": "youwe/file-mapping",
"description": "File mapping library",
"license": "MIT",
"type": "library",
"prefer-stable": true,
"minimum-stability": "stable",
"authors": [
{
"name": "Youwe B.V.",
"email": "[email protected]"
},
{
"name": "Jan-Marten de Boer",
"role": "developer"
}
],
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
"kint-php/kint": "@stable",
"mikey179/vfsstream": "@stable",
"phpunit/phpunit": "@stable"
},
"autoload": {
"psr-4": {
"Youwe\\FileMapping\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Youwe\\FileMapping\\Tests\\": "tests"
}
},
"archive": {
"exclude": [
"/tests",
"/phpunit.xml",
"/.gitignore"
]
},
"config": {
"sort-packages": true
}
}