forked from project-satisfy/satisfy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (101 loc) · 3.03 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
{
"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": "github@ramuno.lt"
}
],
"support": {
"email": "ludo.fleury@gmail.com"
},
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-xml": "*",
"composer/composer": "^2.4",
"composer/satis": "dev-main",
"doctrine/annotations": "~1.6",
"doctrine/instantiator": "~1.1",
"incenteev/composer-parameter-handler": "^2.1",
"ninsuo/symfony-collection": "^2.1",
"ramunasd/symfony-container-mocks": "^0.6.0",
"swop/github-webhook": "^3.1",
"symfony/asset": "^5.4",
"symfony/form": "^5.4",
"symfony/framework-bundle": "^5.4",
"symfony/lock": "^5.4",
"symfony/property-info": "^5.0",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/security-bundle": "^5.4",
"symfony/serializer": "^5.4",
"symfony/twig-bundle": "^5.4",
"symfony/validator": "^5.4",
"symfony/yaml": "^5.4",
"laminas/laminas-diactoros": "^2.3",
"symfony/monolog-bundle": "^3.8",
"symfony/dependency-injection": "^5.4",
"symfony/event-dispatcher": "^5.4"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"friendsofphp/php-cs-fixer": "^3.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.4"
},
"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",
"allow-plugins": {
"composer/satis": true
}
}
}