forked from tractorcow/cow
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
50 lines (50 loc) · 1.27 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
{
"name": "silverstripe/cow",
"description": "Release Tool for SilverStripe",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Damian Mooyman",
"email": "[email protected]"
}
],
"bin": [
"bin/cow"
],
"autoload": {
"psr-4": {
"SilverStripe\\Cow\\Tests\\": "tests/",
"SilverStripe\\Cow\\": "src/"
}
},
"require": {
"php": "^8.1",
"symfony/console": "^6.2.5",
"symfony/process": "^6.2.5",
"symfony/yaml": "^6.2.5",
"symfony/dotenv": "^6.2.5",
"gitonomy/gitlib": "^1.3.7",
"psr/log": "^1.1.4",
"php-http/discovery": "^1.14.3",
"knplabs/github-api": "^3.9.0",
"php-http/guzzle7-adapter": "^1.0.0",
"guzzlehttp/guzzle": "^7.5.0",
"justinrainbow/json-schema": "^5.2.12",
"twig/twig": "^3.5.0",
"erusev/parsedown": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.0"
},
"conflict": {
"php-http/message": "<1.13.0"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}