-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.08 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
{
"name": "milan-miscevic/vrijeme3",
"description": "Planned collector of weather data",
"license": "MIT",
"type": "project",
"keywords": [
"example project",
"inert",
"skeleton application",
"weather data",
"weather"
],
"authors": [
{
"name": "Milan Miščević",
"email": "milan.miscevic@gmail.com"
}
],
"require": {
"php": "^8.1",
"milan-miscevic/inert": "^0.14"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8.0",
"infection/infection": "^0.26.6",
"php-mock/php-mock-phpunit": "^2.6",
"phpstan/phpstan": "^1.5.2",
"phpstan/phpstan-strict-rules": "^1.1",
"phpunit/phpunit": "^9.5.19",
"vimeo/psalm": "^4.22.0"
},
"autoload": {
"psr-4": {
"Mmm\\Vrijeme3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mmm\\Vrijeme3\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {},
"sort-packages": true
}
}