forked from project-satisfy/satisfy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
94 lines (94 loc) · 2.8 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
{
"name": "playbloom/satisfy",
"license": "MIT",
"type": "project",
"keywords": ["satis", "composer", "backend", "ui", "packagist", "static-packagist"],
"description": "Satis composer repository manager with a Web UI",
"authors": [
{
"name": "Ludovic Fleury",
"email": "ludo.fleury@gmail.com"
},
{
"name": "Julius Beckmann",
"email": "satisfy@h4cc.de"
},
{
"name": "Ramūnas Dronga",
"email": "ieskok@ramuno.lt"
}
],
"support": {
"email": "ludo.fleury@gmail.com"
},
"minimum-stability": "stable",
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-xml": "*",
"composer/satis": "dev-master",
"composer/composer": "^1.9",
"jms/serializer-bundle": "^2.3",
"symfony/asset": "^4.4",
"symfony/form": "^4.4",
"symfony/lock": "^4.4",
"symfony/validator": "^4.4",
"symfony/framework-bundle": "^4.4",
"symfony/security-bundle": "^4.4",
"symfony/templating": "^4.4",
"symfony/twig-bundle": "^4.4",
"symfony/yaml": "^4.4",
"symfony/psr-http-message-bridge": "^1.1",
"doctrine/annotations": "~1.6",
"doctrine/instantiator": "~1.1",
"incenteev/composer-parameter-handler": "^2.1",
"swop/github-webhook": "^2.0",
"zendframework/zend-diactoros": "^1.8",
"ninsuo/symfony-collection": "^2.1",
"ramunasd/symfony-container-mocks": "^0.6.0"
},
"require-dev": {
"symfony/browser-kit": "^4.4",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^2.13",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan-symfony": "^0.12"
},
"autoload": {
"psr-4": { "Playbloom\\Satisfy\\": "src/Playbloom/Satisfy" },
"files": ["src/Kernel.php"]
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests" },
"files": ["src/TestKernel.php"]
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"test": [
"@phpunit",
"@phpstan",
"@php-cs-fixer"
],
"phpunit": "phpunit",
"phpstan": "phpstan analyse",
"php-cs-fixer": "php-cs-fixer fix --diff --show-progress=dots"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"incenteev-parameters": {
"file": "config/parameters.yml"
}
},
"config": {
"bin-dir": "bin"
}
}