-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 816 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 816 Bytes
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
{
"name": "taujor/phpssg",
"description": "A lightweight static site generator, utilizing composable templates in pure PHP. This project uses a presenter -> view invokable component classes pattern to provide clean, composable, vanilla, php developer experience without a third-party templating engine.",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.1",
"php-di/php-di": "^7.1",
"friendsofphp/proxy-manager-lts": "^1.0",
"composer/composer": "^2.8"
},
"autoload": {
"psr-4": {
"Taujor\\PHPSSG\\": "src/core/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/taujor"
}
]
}