-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.04 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
72
73
74
75
76
{
"name": "bgsu-lits/avalon-tools",
"description": "Tools for the Avalon Media System.",
"license": "MIT",
"authors": [
{
"name": "John Kloor",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"bgsu-lits/framework": "^2.0",
"bgsu-lits/framework-auth": "^2.0",
"james-heinrich/getid3": "^1.9",
"psr/http-message": "^1.0",
"slim/http": "^1.1",
"slim/slim": "^4.12",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3",
"neronmoon/scriptsdev": "^0.1.9",
"phpunit/phpunit": "^9",
"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."
}
}