-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1001 Bytes
/
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
{
"name": "nmcteam/3dash",
"description": "Static site generator",
"keywords": ["static", "site", "generator", "static site generator"],
"homepage": "https://3dash.dev",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Nmc\\Ssg\\": "src/"
}
},
"authors": [
{
"name": "Josh Lockhart",
"email": "josh@newmediacampaigns.com",
"homepage": "https://joshlockhart.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/nmcteam/3dash/issues"
},
"suggest": {
"twig/twig": "Enables Twig templates",
"erusev/parsedown": "Parse content",
"intervention/image": "Used by Images plugin"
},
"require-dev": {
"twig/twig": "^3.0",
"erusev/parsedown": "^1.7",
"intervention/image": "^2.7"
},
"require": {
"php": ">=7.4",
"guzzlehttp/psr7": "^2.2"
}
}