-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.2 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
43
44
45
46
47
48
{
"name": "lukasbestle/shareable",
"description": "Simple NoDB file upload app",
"license": "MIT",
"require": {
"php": ">=7.1.0",
"getkirby/cms": "~3.2.2"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"friendsofphp/php-cs-fixer": "^2.11.1"
},
"autoload": {
"psr-4": {
"LukasBestle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LukasBestle\\": "tests/"
}
},
"scripts": {
"test": "composer install; vendor/bin/phpunit --stderr --coverage-html=tests/coverage",
"fix": "composer install; vendor/bin/php-cs-fixer fix ./src/",
"zip": "composer install --no-dev -a; composer archive --file dist --format zip"
},
"archive": {
"exclude": [
".DS_Store",
"/.coveralls.yml",
"/.php_cs.cache",
"/.travis.yml",
"/composer.lock",
"/config/*",
"!/config/config.example.php",
"/data/*/*",
"/dist.zip",
"/phpunit.xml.dist",
"/tests",
"!/vendor",
"/vendor/**/.git"
]
},
"extra": {
"kirby-cms-path": false
}
}