forked from klaussilveira/gitlist
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
41 lines (41 loc) · 1.21 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
{
"name": "patrikx3/gitlist",
"config": {
"platform-check": false
},
"description": "An elegant git repository viewer",
"info": {
"spatie/temporary-directory": "v2.0 only works on PHP 8 so deffered"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"GitList\\": "src/GitList",
"Gitter\\": "src/Gitter",
"Silex\\": "src/Silex/src/Silex"
}
},
"require": {
"php": ">=7.1.0",
"pimple/pimple": ">=3.4.0",
"symfony/event-dispatcher": ">=5.3.7",
"symfony/http-foundation": ">=5.3.7",
"symfony/http-kernel": ">=5.3.7",
"symfony/routing": ">=5.3.7",
"symfony/filesystem": ">=5.3.4",
"symfony/twig-bridge": ">=5.3.7",
"twig/twig": ">=3.3.2",
"danielstjules/stringy": ">=3.1.0",
"symfony/mime": ">=5.3",
"symfony/process": ">=5.3",
"spatie/temporary-directory": "^1.3.0"
},
"require-dev": {
"symfony/filesystem": ">=4",
"mockery/mockery": ">=1",
"symfony/browser-kit": ">=4",
"phpunit/phpunit": ">=7",
"symfony/css-selector": ">=4",
"phpspec/prophecy-phpunit": ">=2"
}
}