-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (39 loc) · 839 Bytes
/
composer.json
File metadata and controls
46 lines (39 loc) · 839 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
46
{
"name": "laravel-whisper/hetzner-cloud",
"description": "Hetzner Cloud Whisper Driver",
"keywords": ["php7", "laravel", "hetzner", "driver", "ORM", "API", "REST"],
"license": "MIT",
"authors": [
{
"name": "Sergio Ródenas",
"homepage": "https://rodenastyle.com",
"role": "developer"
}
],
"require": {
"php": "^7.0",
"kitetail/zttp": "^0.3.0",
"laravel-whisper/whisper": "^0.1.4"
},
"require-dev": {
"illuminate/support": "^5.6",
"mockery/mockery": "^0.9.9",
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"Whisper\\HetznerCloud\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Whisper\\HetznerCloud\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}