generated from 8fold/github-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 974 Bytes
/
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
{
"name": "vendor/project",
"description": "",
"type": "library",
"license": "MIT",
"authors": [],
"require": {
"php": "^8.0",
"8fold/commonmark-fluent-markdown": "^1.2",
"8fold/php-amos": "^0.10.1",
"8fold/php-html-builder": "^2.4",
"laminas/laminas-httphandlerrunner": "^2.10",
"nyholm/psr7": "^1.4",
"nyholm/psr7-server": "^1.0",
"symfony/finder": "^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"Eightfold\\Site\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
}
},
"config": {
"preferred-install": "dist"
},
"prefer-stable": true,
"scripts": {
"prod": "@production",
"production": ["@style", "@stan", "@test"],
"style": "./vendor/bin/phpcs --standard=phpcs.xml -p ./src",
"stan": "./vendor/bin/phpstan analyze",
"test": "./vendor/bin/phpunit"
}
}