-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathcomposer.json
55 lines (55 loc) · 1.48 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
{
"name": "gitonomy/gitlib",
"description": "Library for accessing git",
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "hello@gjcampbell.co.uk",
"homepage": "https://github.com/GrahamCampbell"
},
{
"name": "Julien Didier",
"email": "genzo.wm@gmail.com",
"homepage": "https://github.com/juliendidier"
},
{
"name": "Grégoire Pineau",
"email": "lyrixx@lyrixx.info",
"homepage": "https://github.com/lyrixx"
},
{
"name": "Alexandre Salomé",
"email": "alexandre.salome@gmail.com",
"homepage": "https://github.com/alexandresalome"
}
],
"autoload": {
"psr-4": {
"Gitonomy\\Git\\": "src/Gitonomy/Git/"
}
},
"autoload-dev": {
"psr-4": {
"Gitonomy\\Git\\Tests\\": "tests/Gitonomy/Git/Tests/"
}
},
"require": {
"php": "^8.0",
"ext-pcre": "*",
"symfony/polyfill-mbstring": "^1.7",
"symfony/process": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"ext-fileinfo": "*",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^7.5.20 || ^8.5.20 || ^9.5.9",
"psr/log": "^1.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}