-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1001 Bytes
/
composer.json
File metadata and controls
45 lines (45 loc) · 1001 Bytes
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": "aferalabs/traum",
"version": "0.3",
"type": "library",
"license": "MIT",
"description": "traum-ferienwohnungen.de API client",
"require": {
"php": "^7.4",
"guzzlehttp/guzzle": "^6.0",
"league/fractal": "^0.19.2",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"dshafik/guzzlehttp-vcr": "dev-master",
"squizlabs/php_codesniffer": "^3.5"
},
"authors": [
{
"name": "Wojtek Gancarczyk",
"email": "wojtek@aferalabs.com"
},
{
"name": "Oskar Golde",
"email": "info@oskargolde.de"
}
],
"autoload": {
"psr-4": {
"Traum\\": "src/"
}
},
"scripts": {
"check": "vendor/bin/phpcs --standard=PSR2 src/",
"fix": "vendor/bin/phpcbf --standard=PSR2 src/",
"test": "phpunit",
"autoload": "composer dump-autoload --optimize --apcu"
},
"config": {
"process-timeout": 4000,
"optimize-autoloader": true,
"apcu-autoloader": true
}
}