-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 874 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
{
"name": "tuefekci/deta",
"type": "library",
"autoload": {
"psr-4": {
"tuefekci\\deta\\": "src/"
}
},
"authors": [
{
"name": "Giacomo Tüfekci",
"email": "giacomo@tuefekci.de"
}
],
"require-dev": {
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7",
"vlucas/phpdotenv": "^5.5"
},
"scripts": {
"test": [
"@php vendor/bin/phpunit"
],
"psr2check": [
"@php vendor/bin/phpcs --standard=PSR2 src/"
],
"psr2autofix": [
"@php vendor/bin/phpcbf --standard=PSR2 src/"
]
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"require": {
"guzzlehttp/guzzle": "^7.5",
"psr/log": "^3.0"
}
}