-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.1 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
{
"name": "jseparovic/forecaster",
"type": "project",
"config": {
"sort-packages": true
},
"require": {
"php": "^7.4",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.2",
"laminas/laminas-config-aggregator": "^1.3",
"laminas/laminas-servicemanager": "^3.4",
"psr/http-message": "^1.0",
"symfony/config": "^5.1",
"symfony/console": "^5.1",
"symfony/property-access": "^5.1",
"symfony/serializer": "^5.1",
"symfony/stopwatch": "^5.2"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12.56",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "tests/"
}
},
"scripts": {
"cities:forecasts": "php bin/console.php cities:forecast",
"stan-check": "phpstan analyse",
"test": "phpunit --colors=always --testdox",
"check": [
"@stan-check",
"@test"
]
}
}