-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.24 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "elephox/docs",
"description": "Elephox Documentation",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Ricardo Boss",
"email": "contact@ricardoboss.de"
}
],
"require": {
"php": "^8.2 <8.4",
"elephox/builder-whoops-handler": "dev-develop",
"elephox/builder-whoops-middleware": "dev-develop",
"elephox/framework": "dev-develop",
"erusev/parsedown-extra": "dev-php-8.2-fix",
"keinos/parsedown-toc": "^1.1",
"nunomaduro/collision": "^6.2",
"ricardoboss/webhook-tweeter": "^0.4",
"scrivo/highlight.php": "9.18.1.10"
},
"repositories": [
{
"url": "https://github.com/taufik-nurrohman/parsedown-extra",
"type": "github"
}
],
"require-dev": {
"elephox/plane": "dev-develop",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Elephox\\Docs\\": "src/"
}
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('.env.local') || copy('.env.local.example', '.env.local');\""
]
}
}