generated from 8fold/github-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.83 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
{
"name": "joshbruce/site-joshbruce-com",
"type": "site-collection",
"description": "Site content and code for joshbruce.com.",
"license": "mixed",
"authors": [
{
"name": "Josh Bruce",
"email": "[email protected]",
"homepage": "https://joshbruce.com",
"role": "Lead Developer"
}
],
"support": {
"forum": "https://github.com/8fold/site-joshbruce.com/discussions",
"issues": "https://github.com/8fold/site-joshbruce.com/issues",
"source": "https://github.com/8fold/site-joshbruce.com"
},
"require": {
"php": "^8.0",
"ext-fileinfo": "*",
"8fold/commonmark-fluent-markdown": "^1.0",
"8fold/php-amos": "^0.10.0",
"8fold/php-html-builder": "^2.0",
"laminas/laminas-httphandlerrunner": "^2.1",
"nyholm/psr7": "^1.4",
"nyholm/psr7-server": "^1.0",
"spatie/commonmark-shiki-highlighter": "^2.1",
"symfony/finder": "^6.2"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7",
"symfony/console": "^7.0",
"symfony/phpunit-bridge": "^6.2"
},
"autoload": {
"psr-4": {
"JoshBruce\\Site\\": "./src",
"JoshBruce\\Console\\": "./console"
}
},
"autoload-dev": {
"psr-4": {
"JoshBruce\\Site\\Tests\\": "./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"
}
}