-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathcomposer.json
120 lines (120 loc) · 3.7 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
{
"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": "[email protected]"
},
{
"name": "Julius Beckmann",
"email": "[email protected]"
},
{
"name": "Ramūnas Dronga",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]"
},
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"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": "6.4.*",
"symfony/form": "6.4.*",
"symfony/framework-bundle": "6.4.*",
"symfony/lock": "6.4.*",
"symfony/property-info": "6.4.*",
"symfony/psr-http-message-bridge": "6.4.*",
"symfony/security-bundle": "6.4.*",
"symfony/serializer": "6.4.*",
"symfony/twig-bundle": "6.4.*",
"symfony/validator": "6.4.*",
"symfony/yaml": "6.4.*",
"laminas/laminas-diactoros": "^2.3",
"symfony/monolog-bundle": "^3.8",
"symfony/dependency-injection": "6.4.*",
"symfony/event-dispatcher": "6.4.*",
"symfony/proxy-manager-bridge": "6.4.*",
"symfony/dotenv": "6.4.*",
"symfony/flex": "^2.4",
"symfony/console": "^7.1.5",
"symfony/runtime": "6.4.*",
"phpdocumentor/reflection-docblock": "^5.6",
"phpstan/phpdoc-parser": "^2.0",
"symfony/property-access": "6.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": "^10.5",
"symfony/browser-kit": "6.4.*",
"symfony/stopwatch": "6.4.*",
"symfony/web-profiler-bundle": "6.4.*",
"symfony/css-selector": "6.4.*"
},
"autoload": {
"psr-4": { "Playbloom\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Playbloom\\Tests\\": "tests" }
},
"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",
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.4.*"
},
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"incenteev-parameters": {
"file": "config/parameters.yml"
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"composer/satis": true,
"symfony/flex": true,
"symfony/runtime": true
}
}
}