-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 893 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
{
"name": "madpeterz/streamadmin",
"description": "Audio stream control panel linked to secondlife",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "src/App",
"Tests\\": "Tests"
}
},
"config": {
"platform": {
"php": "8.2.4"
}
},
"require": {
"php": ">=8.2.4",
"madpeterz/yapfbootstrap": "^5.0",
"phpoffice/phpspreadsheet": "^1.18"
},
"authors": [
{
"name": "Madpeter",
"email": "[email protected]"
}
],
"scripts": {
"dev-test": [
"phpunit --colors=always --configuration phpunit.xml --testdox --testsuite All"
],
"phpcs": "phpcs --parallel=4",
"phpcbf": "phpcbf",
"phpunit": "phpunit"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
}
}