-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 917 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 917 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
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "happytodev/cyclone",
"description": "A simple blog system for TempestPHP framework",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Happytodev\\Cyclone\\": "src/"
}
},
"authors": [
{
"name": "Fred Blanc",
"email": "happytodev@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"tempest/framework": "^1.0",
"symfony/yaml": "^7.2",
"league/commonmark": "^2.7",
"tempest/highlight": "^2.11",
"spatie/yaml-front-matter": "^2.1",
"tempest/core": "*",
"happytodev/authentik": "^1.0"
},
"bin": [
"bin/cyclone"
],
"scripts": {
"post-install-cmd": [
"@php ./vendor/bin/tempest install framework",
"@php tempest cyclone:install"
]
}
}