-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
75 lines (75 loc) · 1.64 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "rugaard/weatherkit",
"type": "library",
"description": "Integrate Apple WeatherKit API into your project",
"keywords": [
"morten",
"rugaard",
"morten rugaard",
"weatherkit",
"apple weatherkit",
"weatherkit api",
"apple weatherkit api",
"api",
"weather",
"forecast",
"weather forecast"
],
"authors": [
{
"name": "Morten Rugaard",
"email": "morten@rugaard.me",
"homepage": "https://github.com/rugaard",
"role": "Developer"
}
],
"license": "MIT",
"homepage": "https://github.com/rugaard",
"support": {
"issues": "https://github.com/rugaard/weatherkit/issues",
"source": "https://github.com/rugaard/weatherkit"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^7.0",
"illuminate/collections": "^9.26 || ^10.14",
"firebase/php-jwt": "^6.3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "3.*",
"symfony/var-dumper": "^6.1"
},
"autoload": {
"psr-4": {
"Rugaard\\WeatherKit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rugaard\\WeatherKit\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Rugaard\\WeatherKit\\Providers\\LaravelServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cs": "./vendor/bin/phpcs"
},
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}