forked from php-tootbot/tootbot-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 966 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
39
40
41
42
43
44
45
46
47
{
"description": "dwil - dril, but UwU.",
"homepage": "https://github.com/php-tootbot/dwil",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "smiley",
"email": "[email protected]",
"homepage": "https://github.com/codemasher"
},
{
"name": "Contributors",
"homepage":"https://github.com/php-tootbot/dwil/graphs/contributors"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"codemasher/uwuify": "dev-main#c843662c55cab714815776976c6b3d126b9fb330",
"php-tootbot/php-tootbot": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phan/phan": "^5.4"
},
"autoload": {
"psr-4": {
"PHPTootBot\\dwil\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPTootBot\\dwilTest\\": "tests"
}
},
"scripts": {
"phpunit": "@php vendor/bin/phpunit",
"phan": "@php vendor/bin/phan"
},
"config": {
"lock": true,
"sort-packages": true,
"platform-check": true
}
}