-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.54 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.54 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
{
"name": "rsp/cmake-scripts",
"description": "A collection of CMake scripts for C++ projects.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/rsps/cmake-scripts",
"support": {
"source": "https://github.com/rsps/cmake-scripts",
"issues": "https://github.com/rsps/cmake-scripts/issues"
},
"authors": [
{
"name": "Steffen Brummer",
"email": "steffen@rspsystems.com",
"role": "senior developer"
},
{
"name": "Alin Eugen Deac",
"email": "alin@rspsystems.com",
"role": "developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"daux/daux.io": "^0.22.3"
},
"scripts": {
"docs:build": [
"@make:docs-build-dir",
"vendor/bin/daux clear-cache",
"vendor/bin/daux generate --source=docs --destination=build/docs/"
],
"docs:dev": [
"@make:docs-build-dir",
"vendor/bin/daux serve"
],
"make:docs-build-dir": [
"@php -r \"is_dir('build/docs') || mkdir(directory: 'build/docs', recursive: true);\""
]
},
"scripts-descriptions": {
"docs:build": "Builds a Html page containing all documentation, in the 'build/docs' directory",
"docs:dev": "Live update the documentation",
"make:docs-build-dir": "Creates the build directory for the documentation, if it does not already exist"
}
}