-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 1 KB
/
composer.json
File metadata and controls
33 lines (33 loc) · 1 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
{
"name": "rehhoff/framework",
"description": "A lightweight custom framework using well-known and intuitive design patterns",
"type": "project",
"scripts": {
"build-docs": "./vendor/bin/phpdoc -c phpdoc.xml",
"cs": "./vendor/bin/phpcs --standard=phpcs.xml",
"test": "./vendor/bin/phpunit --configuration phpunit.xml"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"phpstan/phpstan": "^1.10",
"zebra-north/phpcs-short-types": "^1.0",
"squizlabs/php_codesniffer": "^4.0",
"slevomat/coding-standard": "^8.25",
"phpdocumentor/shim": "^3.9"
},
"config": {
"vendor-dir": "./vendor/",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpdocumentor/shim": true
}
},
"license": "MIT",
"authors": [
{
"name": "allanrehhoff",
"email": "allan.rehhoff@gmail.com"
}
],
"minimum-stability": "stable"
}