-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.14 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
{
"name": "skoro/stardict",
"description": "Provides interface to StarDict dictionaries.",
"type": "library",
"license": "MIT",
"keywords": ["stardict", "dictionary"],
"authors": [
{
"name": "Oleksii Skorobogatko",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/skoro/stardict",
"issues": "https://github.com/skoro/stardict/issues"
},
"autoload": {
"psr-4": {
"StarDict\\": "src/"
}
},
"require": {
"php": ">=7.4",
"ext-zlib": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"symfony/var-dumper": "^5.1",
"phpspec/prophecy": "^1.15",
"phpstan/phpstan": "^1.9"
},
"autoload-dev": {
"psr-4": {
"StarDict\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-f": "phpunit --filter",
"check": "phpstan",
"test-check": [
"@test",
"@check"
],
"check-test": "@test-check"
}
}