-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 880 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
{
"name": "myrisk/webspell_cup_addon",
"description": "Composer package of my Cup add-on for webSPELL NG",
"authors": [
{
"name": "SlicewOw",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=7.2",
"respect/validation": "^2.0",
"egulias/email-validator": "^2.1",
"symfony/validator": "^5.1",
"doctrine/dbal": "^3.5",
"webspell_ng/query_builder": "dev-master",
"webspell_ng/data_structures": "dev-master",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"psr-4": {
"myrisk\\": "src/"
}
},
"scripts": {
"test": "phpunit"
}
}