-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.32 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.32 KB
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
{
"name": "dadajuice/zephyrus-leaf",
"description": "Static content sites powered by Zephyrus. Docs, blogs, landing pages — with live-reload and one-command builds.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "David Tucker",
"email": "david.tucker@ophelios.com"
}
],
"repositories": [
{
"type": "path",
"url": "../zephyrus2"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.4",
"dadajuice/zephyrus2": "@dev",
"league/commonmark": "^2.8",
"league/config": "^1.2",
"ext-intl": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"symfony/var-dumper": "*"
},
"autoload": {
"psr-4": {
"Leaf\\": "src/",
"App\\Controllers\\": "app/Controllers",
"App\\Models\\": "app/Models"
}
},
"autoload-dev": {
"psr-4": {
"Leaf\\Tests\\": "tests/"
}
},
"scripts": {
"dev": "php -S localhost:8080 -t public bin/router.php",
"build": "php bin/build.php",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true,
"process-timeout": 0
}
}