-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (38 loc) · 985 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
{
"name": "jtl-software/onetimelink_api",
"type": "project",
"require": {
"php": ">=8.1",
"monolog/monolog": "~1.23",
"symfony/console": "^5.0",
"phpmailer/phpmailer": "~v6.6",
"gabordemooij/redbean": "^5.7"
},
"require-dev": {
"codeception/codeception": "^4.1",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.8",
"codeception/module-asserts": "^1.3",
"codeception/module-rest": "^2.0",
"codeception/module-phpbrowser": "^2.0",
"vlucas/phpdotenv": "^5.4"
},
"autoload": {
"psr-4": {
"JTL\\Onetimelink\\": "src/"
}
},
"config": {
"platform": {
"php": "8.1"
}
},
"scripts": {
"phpcs": [
"./php-cs-fixer fix --config=./.php_cs.dist"
],
"phpcs-dry": [
"./php-cs-fixer fix --config=./.php_cs.dist -v --dry-run"
]
}
}