-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.87 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": "bgsu-lits/framework-project",
"description": "Skeleton project for LITS Framework.",
"license": "MIT",
"authors": [
{
"name": "John Kloor",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"bgsu-lits/framework": "^2.1",
"slim/slim": "^4.12"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3",
"neronmoon/scriptsdev": "^0.1.9",
"phpunit/phpunit": "^11",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Lits\\": "src/Lits"
},
"exclude-from-classmap": [
"/src/Lits/Test/"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"neronmoon/scriptsdev": true
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
},
"scripts-dev": {
"phpcbf": "phpcbf ./ --standard=phpcs.xml",
"phpcs": "phpcs ./ --standard=phpcs.xml",
"phplint": "phplint ./ -c phplint.yml",
"phpstan": "phpstan analyse -c phpstan.neon",
"phpunit": "phpunit -c phpunit.xml",
"psalm": "psalm --config=psalm.xml",
"test": [
"@phplint",
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit"
],
"twigcs": "twigcs ./template"
}
},
"scripts": {
"post-install-cmd": [
"@reset-cache"
],
"post-update-cmd": [
"@reset-cache"
],
"reset-cache": "rm -rf ./cache/*"
},
"scripts-descriptions": {
"reset-cache": "Resets the application by deleting all cache files."
}
}