forked from 4th-earth/site-fourth-earth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.51 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
{
"name": "4th-earth/site-fourth-earth",
"type": "site-collection",
"description": "Site content and code for 4th.earth.",
"license": "mixed",
"authors": [
{
"name": "Alexander Midknight",
"email": "[email protected]",
"homepage": "https://amidknight.com",
"role": "Lead"
}
],
"support": {
"forum": "https://github.com/4th-earth/site-fourth-earth/discussions",
"issues": "https://github.com/4th-earth/site-fourth-earth/issues",
"source": "https://github.com/4th-earth/site-fourth-earth"
},
"require": {
"php": "^8.1",
"8fold/commonmark-fluent-markdown": "^0.10.0",
"8fold/php-html-builder": "^1.0.0",
"nyholm/psr7": "^1.4",
"laminas/laminas-httphandlerrunner": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"FE\\SiteDynamic\\": "./site-dynamic-php/src"
}
},
"autoload-dev": {
"psr-4": {
"FE\\SiteDynamic\\Tests\\": "./site-dynamic-php/tests"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"prefer-stable": true,
"scripts": {
"prod": "@production",
"production": [
"composer dumpautoload -o",
"@style",
"@stan",
"@test"
],
"deploy": [
"@production",
"@optimize-autoload"
],
"style": "./vendor/bin/phpcs --standard=phpcs.xml",
"stan": "./vendor/bin/phpstan analyze",
"test": "./vendor/bin/phpunit",
"optimize-autoload": "composer dumpautoload --no-dev --classmap-authoritative"
}
}