-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 929 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 929 Bytes
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
{
"name": "adaptdk/contrib",
"description": "Open Source Contributions Log",
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Marco Villegas",
"email": "marco.villegas@adaptagency.com"
}
],
"bin": ["contriblog"],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"ContribLog\\": "src"
}
},
"require": {
"symfony/console": "6.3.*",
"symfony/yaml": "6.3.*",
"twig/twig": "3.8.*",
"laravel/prompts": "0.1.*",
"cweagans/composer-patches": "^1.7"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"extra": {
"patches": {
"laravel/prompts": {
"Add textarea, a multiline text input": "./patches/laravel-prompts/88.diff"
}
}
}
}