-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.47 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.47 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
{
"name": "programmatordev/openweathermap-php-api",
"description": "OpenWeatherMap PHP library that provides convenient access to the OpenWeatherMap API",
"type": "library",
"keywords": ["openweathermap", "api", "php", "php8", "sdk", "psr-18", "psr-17", "psr-6", "psr-3"],
"license": "MIT",
"authors": [
{
"name": "Programmator",
"email": "hotline@programmator.dev",
"homepage": "https://programmator.dev"
}
],
"require": {
"php": ">=8.1",
"myclabs/deep-copy": "^1.13",
"programmatordev/php-api-sdk": "^2.1",
"symfony/options-resolver": "^6.4|^7.4|^8.0"
},
"require-dev": {
"monolog/monolog": "^3.10",
"nyholm/psr7": "^1.8",
"php-http/mock-client": "^1.6",
"phpunit/phpunit": "^10.5",
"symfony/cache": "^6.4|^7.4|^8.0",
"symfony/http-client": "^6.4|^7.4|^8.0",
"symfony/var-dumper": "^6.4|^7.4|^8.0"
},
"provide": {
"psr/http-client-implementation": "1.0",
"psr/http-factory-implementation": "1.0"
},
"autoload": {
"psr-4": {
"ProgrammatorDev\\OpenWeatherMap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProgrammatorDev\\OpenWeatherMap\\Test\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}