-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
68 lines (68 loc) · 1.89 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "godbout/dash-docset-builder",
"description": "Dash (LOVE) Docset Builder in PHP (LOVE).",
"keywords": [
"dash",
"docset",
"builder",
"build",
"offline",
"documentation",
"PHP",
"love"
],
"homepage": "https://sleeplessmind.com.mo/news/dash-docsets-tailwind-css-jigsaw-laravel-zero-and/",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/godbout/dash-docset-builder/issues",
"source": "https://github.com/godbout/dash-docset-builder"
},
"authors": [
{
"name": "Guillaume Leclerc",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0.2",
"league/flysystem": "^3",
"illuminate/database": "^9.0",
"laravel-zero/framework": "^9.0",
"symfony/css-selector": "^6.0",
"symfony/dom-crawler": "^6.0",
"wa72/htmlpagedom": "^3.0",
"vlucas/phpdotenv": "^5.0",
"nunomaduro/collision": "^6.0"
},
"autoload": {
"psr-4": {
"Godbout\\DashDocsetBuilder\\": "app/",
"App\\Docsets\\": "../../../app/Docsets/"
}
},
"require-dev": {
"hassankhan/config": "^3.0",
"codedungeon/phpunit-result-printer": "^0.32",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5.20",
"scrutinizer/ocular": "^1.9"
},
"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,
"bin": ["dash-docset"]
}