-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.01 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "keygun-development/flowcheck",
"type": "project",
"license": "MIT",
"description": "A Github workflow for installing packages & testing your project using code standards.",
"keywords": [
"flowcheck",
"ci",
"cd",
"workflow",
"keygun-development"
],
"authors": [
{
"name": "Keagan Mulder",
"email": "keaganmulder1@gmail.com",
"homepage": "https://github.com/keygun-development"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"slevomat/coding-standard": "^8.13",
"squizlabs/php_codesniffer": "3.*"
},
"scripts": {
"test": [
"phpcs --standard=ruleset.xml ."
],
"fix": [
"phpcbf --standard=ruleset.xml ."
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}