-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.28 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
{
"name": "vitexsoftware/abraflexi-matcher",
"description": "Reminder sender for AbraFlexi written in PHP",
"authors": [
{
"name": "Vítězslav Dvořák",
"email": "[email protected]"
}
],
"require": {
"spojenet/flexibee": "^3.3",
"vitexsoftware/abraflexi-bricks": "^1.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.43",
"ergebnis/php-cs-fixer-config": "^6.34",
"friendsofphp/php-cs-fixer": "^3.61",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "*"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"AbraFlexi\\Matcher\\": "src/AbraFlexi/Matcher/",
"AbraFlexi\\Matcher\\Ui\\": "src/AbraFlexi/Matcher/Ui/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/",
"Test\\AbraFlexi\\": [
"vendor/spojenet/flexibee/test/src/AbraFlexi/"
],
"Test\\AbraFlexi\\Matcher\\": "tests/src/AbraFlexi/Matcher/",
"Test\\Ease\\": [
"vendor/vitexsoftware/ease-core/tests/src/Ease/"
]
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}