-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.65 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
{
"name": "janmikes/caloriary",
"description": "REST API for the calories",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Jan Mikeš",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/JanMikes/orm"
}
],
"require": {
"php": ">=7.2",
"roave/security-advisories": "dev-master",
"brandembassy/slim-nette-extension": "^3.0.1",
"tracy/tracy": "^2.5",
"consistence/consistence": "^1.1",
"ramsey/uuid": "^3.8",
"nettrine/orm": "dev-xml-mapping",
"nettrine/migrations": "^0.3.0",
"contributte/console": "^0.5.0",
"tuupola/cors-middleware": "^0.9.1",
"tuupola/slim-jwt-auth": "^3.1",
"firebase/php-jwt": "^5.0",
"wodcz/nette-dotenv": "^2.0",
"nette/security": "^2.4",
"guzzlehttp/guzzle": "^6.3",
"beberlei/DoctrineExtensions": "^1.1",
"justinrainbow/json-schema": "^5.2"
},
"require-dev": {
"phpstan/phpstan": "^0.10.5",
"phpunit/phpunit": "^7.4",
"mockery/mockery": "^1.2",
"league/factory-muffin": "^3.0",
"league/factory-muffin-faker": "^2.0",
"symplify/easy-coding-standard": "^5.2",
"phpstan/phpstan-strict-rules": "^0.10.1"
},
"autoload": {
"psr-4": {
"Caloriary\\": "src",
"JanMikes\\": "packages"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Caloriary\\": "tests"
}
}
}