-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
146 lines (146 loc) · 4.19 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "julianzimmer/coffee-pid",
"license": "MIT",
"authors": [
{
"name": "Julian Zimmermann",
"email": "[email protected]"
}
],
"repositories": [
{
"name": "jzit/kernel",
"type":"vcs",
"packagist.org": false,
"url":"https://github.com/jzit-php/kernel"
},
{
"name": "jzit/container",
"type":"vcs",
"packagist.org": false,
"url":"https://github.com/jzit-php/container"
},
{
"name": "jzit/config",
"type":"vcs",
"packagist.org": false,
"url":"https://github.com/jzit-php/config"
},
{
"name": "jzit/application",
"type":"vcs",
"packagist.org": false,
"url":"https://github.com/jzit-php/application"
},
{
"name": "jzit/http",
"type":"vcs",
"packagist.org": false,
"url":"https://github.com/jzit-php/http"
},
{
"name": "jzit/db",
"type":"vcs",
"packagist.org": false,
"url":"https://github.com/jzit-php/db"
},
{
"name": "jzit/pid-api",
"type":"vcs",
"packagist.org": false,
"url":"https://github.com/jzit-php/pid-api"
},
{
"name": "jzit/pid",
"type":"vcs",
"packagist.org": false,
"url":"https://github.com/jzit-php/pid"
},
{
"name": "jzit/serializer",
"type":"vcs",
"packagist.org": false,
"url":"https://github.com/jzit-php/serializer"
},
{
"name": "jzit/blynk-registration",
"type":"vcs",
"packagist.org": false,
"url":"https://github.com/jzit-php/blynk-registration"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.3.3",
"jzit/application": "dev-master",
"jzit/config": "dev-master",
"jzit/container": "dev-master",
"jzit/db": "dev-master",
"jzit/http": "dev-master",
"jzit/kernel": "dev-master",
"jzit/pid": "dev-master",
"jzit/pid-api": "dev-master",
"jzit/blynk-registration": "dev-main",
"jzit/serializer": "dev-master",
"league/route": "~4.3.1",
"monolog/monolog": "~2.0.0",
"phpdocumentor/reflection-docblock": "~4.3.2",
"symfony/console": "~4.3.3",
"symfony/filesystem": "~4.3.3",
"symfony/finder": "~4.3.3",
"symfony/lock": "~4.3.3",
"symfony/process": "~4.3.3",
"symfony/property-access": "~4.3.3",
"symfony/property-info": "~4.3.3",
"symfony/serializer": "~4.3.3",
"twig/twig": "~2.12.1",
"zendframework/zend-httphandlerrunner": "~1.1.0"
},
"require-dev": {
"codeception/codeception": "~3.1.2",
"mikey179/vfsstream": "~1.6.7",
"php-coveralls/php-coveralls": "~2.1.0",
"phpmd/phpmd": "~2.7.0",
"phpro/grumphp": "~0.16.1",
"phpstan/phpstan": "~0.11.2",
"roave/security-advisories": "dev-master as 1.0.0",
"sebastian/phpcpd": "~4.1.0",
"sllh/composer-versions-check": "~2.0.3",
"squizlabs/php_codesniffer": "~3.5.2"
},
"bin": [
"bin/console"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": {
"*": "dist",
"jzit/*": "source"
},
"platform": {
"php": "7.3.11"
},
"use-include-path": true,
"sort-packages": true,
"github-protocols": [
"https"
],
"process-timeout": 900
},
"autoload": {
"psr-0": {"": "src/Generated/Orm/Entities"},
"psr-4": {
"JzIT\\": "src/JzIT",
"Generated\\": "src/Generated"
}
},
"autoload-dev": {
"psr-0": {"": "src/Generated/Orm/Entities"},
"psr-4": {
"JzIT\\": "tests/JzIT",
"Generated\\": "src/Generated"
}
}
}