-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.64 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
{
"name": "svandragt/lamb",
"description": "Micro blogging like an animal",
"license": "GPL-3.0-or-later",
"type": "project",
"authors": [
{
"name": "Sander van Dragt",
"email": "sander@vandragt.com"
}
],
"require": {
"php": ">=8.2",
"ext-gettext": "*",
"ext-simplexml": "*",
"ext-sqlite3": "*",
"erusev/parsedown": "^1.7",
"gabordemooij/redbean": "^5.7",
"simplepie/simplepie": "^1.8",
"symfony/yaml": "^7.0"
},
"require-dev": {
"codeception/codeception": "^5.1",
"codeception/module-asserts": "*",
"codeception/module-phpbrowser": "*",
"phpcompatibility/php-compatibility": "^9.3",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.10",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
"Lamb\\": "src/"
},
"files": [
"src/config.php",
"src/http.php",
"src/lamb.php",
"src/routes.php",
"src/network.php",
"src/post.php",
"src/response.php",
"src/security.php",
"src/theme.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"post-install-cmd": "vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd": "vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"lint": "vendor/bin/phpcs .",
"serve": [
"Composer\\Config::disableProcessTimeout",
"php -S 0.0.0.0:8747 -t src"
],
"serve:caddy": "sudo caddy run",
"serve:nginx": "sudo systemctl nginx start"
}
}