forked from theDisco/traum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.11 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.11 KB
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
46
47
48
49
50
51
52
53
{
"authors": [
{
"name": "Wojtek Gancarczyk",
"email": "wojtek@aferalabs.com"
},
{
"name": "Oskar Golde",
"email": "info@oskargolde.de"
}
],
"name": "aferalabs/traum",
"version": "1.0",
"type": "library",
"license": "MIT",
"description": "traum-ferienwohnungen.de API client",
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.5",
"league/fractal": "^0.19.2",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"laminas/laminas-coding-standard": "^2.5",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Traum\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TraumTest\\": "tests/"
}
},
"scripts": {
"check": "vendor/bin/phpcs",
"fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit",
"autoload": "composer dump-autoload --optimize --apcu"
},
"config": {
"process-timeout": 4000,
"optimize-autoloader": true,
"apcu-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}