-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
64 lines (64 loc) · 1.49 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
{
"name": "linaphp/lina",
"description": "static blog generator",
"keywords": [
"pekyll",
"laravel",
"laravel zero",
"console",
"cli"
],
"homepage": "https://lina.daudau.cc",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Nguyen Viet",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"cboden/ratchet": "^0.4.4",
"erusev/parsedown": "^v1.7.2",
"erusev/parsedown-extra": "^0.8.1",
"illuminate/view": "^v10.0",
"keinos/parsedown-toc": "^1.1",
"laravel-zero/framework": "^v10.3",
"linaphp/resource-watcher": "^0.1.1",
"symfony/http-foundation": "^6.0",
"symfony/yaml": "^6.0",
"tempest/highlight": "^2.11.2",
"ext-pcntl": "*"
},
"require-dev": {
"mockery/mockery": "^1.4.2",
"pestphp/pest": "^v2.34"
},
"autoload": {
"psr-4": {
"LinaPhp\\Lina\\": "app/"
},
"files": [
"bootstrap/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"lina"
]
}