-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
77 lines (77 loc) · 1.88 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "fkosmala/superhive",
"description": "Generate a full real blog with your HIVE author feed",
"license": "GPL-3.0-only",
"type": "project",
"keywords": [
"hive",
"blog",
"blockchain",
"generator",
"cms"
],
"authors": [
{
"name": "Florent Kosmala",
"email": "[email protected]",
"homepage": "https://florent-kosmala.fr/",
"role": "Founder & Developer"
}
],
"homepage": "https://github.com/fkosmala/superhive",
"support": {
"email": "[email protected]",
"source": "https://github.com/fkosmala/superhive/",
"issues": "https://github.com/fkosmala/superhive/issues",
"docs": "https://docs.superhive.me/",
"rss": "https://blog.superhive.me/feed",
"chat": "https://discord.gg/u2qfuaFMwt"
},
"require": {
"php": ">=8.1",
"bryanjhv/slim-session": "~4.0",
"christianklisch/slim-minify": "^0.7.0",
"hive/hive-php-lib": "dev-main",
"league/commonmark": "2.6.0",
"php-di/php-di": "^6.1",
"slim/psr7": "^1.0",
"slim/slim": "4.*",
"slim/twig-view": "^3.0",
"zeuxisoo/slim-whoops": "0.7.*",
"php-di/slim-bridge": "^3.3",
"embed/embed": "^4.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.31",
"pds/skeleton": "^1.0",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"pds": [
"vendor/bin/pds-skeleton validate"
],
"psr": [
"vendor/bin/phpcs --standard=PSR1,PSR12 ./src"
],
"start": "php -S localhost:8080 -t public"
},
"funding": [
{
"type": "hive",
"url": "https://stream.hivelive.me/donate/bambukah"
}
]
}