-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
59 lines (59 loc) · 1.54 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
{
"name": "mborne/git-manager",
"type": "project",
"description": "Command line helpers to manage hosted git repositories",
"license": "MIT",
"autoload": {
"psr-4": {
"MBO\\GitManager\\": "src"
}
},
"bin": [
"bin/console"
],
"require": {
"php": ">=8.1",
"gitonomy/gitlib": "^1.0",
"league/flysystem": "^3.0",
"mborne/remote-git": "^0.7",
"symfony/framework-bundle": "^6.4",
"symfony/console": "^6.4",
"symfony/runtime": "^6.4",
"symfony/yaml": "^6.4",
"symfony/twig-bundle": "^6.4",
"symfony/asset": "^6.4",
"symfony/flex": "^2.4",
"symfony/monolog-bundle": "^3.10",
"symfony/dotenv": "6.4.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.11",
"symfony/browser-kit": "^6.4",
"symfony/css-selector": "^6.4",
"symfony/phpunit-bridge": "^6.4",
"phpunit/phpunit": "^9",
"php-coveralls/php-coveralls": "^2.5",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}},
"config": {
"sort-packages": false,
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
}
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.4.*"
}
}
}