forked from PhpWndb/PhpWndb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·43 lines (43 loc) · 961 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
{
"name": "phpwndb/phpwndb",
"description": "PHP API for WordNet (https://wordnet.princeton.edu/)",
"type": "library",
"keywords": ["wordnet", "synset"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Adam Lutka",
"email": "adam.lutka@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"PhpWndb\\Dataset\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpWndb\\Dataset\\Examples\\": "examples/",
"PhpWndb\\Dataset\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"symfony/dependency-injection": "^7.1",
"symfony/config": "^7.1",
"symfony/yaml": "^7.1",
"symfony/finder": "^7.1"
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.0",
"symplify/easy-coding-standard": "^11.2"
},
"scripts": {
"ecs": "vendor/bin/ecs check",
"phpstan": "vendor/bin/phpstan analyse --level=max src/ tests/ examples/",
"tests": "vendor/bin/phpunit"
}
}