-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) ยท 1.39 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
49
50
51
52
53
54
55
56
57
{
"name": "godbout/dash-docsets",
"description": "Dash Docsets built with Dash Docset Builder.",
"keywords": [
"dash",
"docset",
"docsets",
"builder",
"build",
"offline",
"documentation",
"PHP",
"love"
],
"homepage": "https://github.com/godbout/dash-docsets",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/godbout/dash-docset/issues",
"source": "https://github.com/godbout/dash-docset"
},
"authors": [
{
"name": "Guillaume Leclerc",
"email": "[email protected]"
}
],
"require": {
"godbout/dash-docset-builder": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"require-dev": {
"codedungeon/phpunit-result-printer": "^0.27",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"test": "phpunit --group=default,download --color=always",
"format": "php-cs-fixer fix -vvv --config=.php_cs.dist --ansi"
},
"minimum-stability": "dev",
"prefer-stable": true
}