-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
55 lines (55 loc) · 1.38 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
{
"name": "skoro/tkui",
"description": "Create desktop applications using Tk gui toolkit",
"keywords": [
"gui", "ui", "desktop", "toolkit", "tcltk", "tk", "widget"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Oleksii Skorobogatko",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/skoro/php-tkui",
"issues": "https://github.com/skoro/php-tkui/issues"
},
"require": {
"php": ">=8.2",
"ext-ffi": "*",
"ext-spl": "*",
"ext-mbstring": "*",
"psr/log": "^1.1",
"monolog/monolog": "^2.2",
"vlucas/phpdotenv": "^5.5"
},
"autoload": {
"psr-4": {
"Tkui\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.3",
"phpspec/prophecy": "^1.16"
},
"autoload-dev": {
"psr-4": {
"Tkui\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-f": "phpunit --filter",
"make-color-names": "@php make-color-names.php colors.txt > ./src/ColorNames.php",
"check": "phpstan",
"test-check": [
"@test",
"@check"
],
"check-test": "@test-check"
}
}