-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.01 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
{
"name": "pd/ci-server",
"license": ["GPL-3.0"],
"description": "Jednoduchý CI server pro GitHub.",
"type": "project",
"authors": [
{
"name": "Milan Pála",
"homepage": "https://milanpala.cz"
}
],
"require": {
"php": "^7.4.0",
"ext-mbstring": "*",
"ext-bcmath": "*",
"nette/application": ">= 2.4.16",
"nette/bootstrap": "2.4.*",
"nette/security": "2.4.*",
"nette/forms": "2.4.*",
"nette/utils": "2.5.*",
"nette/di": "~2.4.16",
"latte/latte": "~2.5.3",
"tracy/tracy": "2.4.*",
"nextras/orm": "3.1.*",
"nextras/migrations": "3.0.*",
"nextras/datagrid": "3.0.*",
"symfony/process": "4.2.*",
"kdyby/console": "2.7.*",
"guzzlehttp/guzzle": "6.3.*",
"league/oauth2-github": "2.0.*",
"kdyby/monolog": "1.3.*",
"kdyby/clock": "1.0.*",
"kdyby/rabbitmq": "1.2.*",
"nette/neon": "2.4.*",
"league/oauth2-client": "2.*"
},
"require-dev": {
"nette/tester": "2.1.*"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"CI\\": "app",
"CITests\\": "tests"
}
}
}