-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.44 KB
/
Copy pathcomposer.json
File metadata and controls
60 lines (60 loc) · 1.44 KB
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
{
"name": "mrpunyapal/docsmith",
"description": "Craft static documentation sites from Markdown with minimal setup.",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.3",
"league/commonmark": "^2.7",
"mrpunyapal/git-reader": "^0.2",
"phiki/phiki": "^2.2",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"laravel/pao": "^1.1",
"laravel/pint": "^1.18",
"pestphp/pest": "^3.8 || ^4.0",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"Docsmith\\": "src/"
}
},
"bin": [
"bin/docsmith"
],
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"docs:build": "@php build-docs.php",
"lint": [
"rector",
"pint --parallel"
],
"test:lint": [
"rector --dry-run",
"pint --test --parallel"
],
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --parallel",
"test": [
"Composer\\Config::disableProcessTimeout",
"@test:lint",
"@test:types",
"@test:unit"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}