-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.29 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.29 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "sweetchuck/robo-git",
"type": "robo-tasks",
"description": "Git related Robo tasks",
"keywords": [
"robo-tasks",
"git"
],
"authors": [
{
"name": "Andor",
"role": "Maintainer",
"homepage": "https://github.com/Sweetchuck"
}
],
"homepage": "https://github.com/Sweetchuck/robo-git",
"support": {
"source": "https://github.com/Sweetchuck/robo-git",
"issues": "https://github.com/Sweetchuck/robo-git/issues"
},
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"sweetchuck/git-hooks": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"repositories": {
"nuvoleweb/robo-config": {
"type": "github",
"url": "https://github.com/Sweetchuck/robo-config.git"
}
},
"require": {
"php": ">=8.3",
"consolidation/robo": "^5.0",
"sweetchuck/utils": "2.x-dev",
"symfony/filesystem": "^6.0 || ^7.0"
},
"require-dev": {
"ext-json": "*",
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"nuvoleweb/robo-config": "4.x-dev",
"squizlabs/php_codesniffer": "^3.6",
"sweetchuck/codeception-module-robo-task-runner": "4.x-dev",
"sweetchuck/git-hooks": "2.x-dev",
"symfony/error-handler": "^6.0 || ^7.0",
"symfony/finder": "^6.0 || ^7.0",
"symfony/yaml": "^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Sweetchuck\\Robo\\Git\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sweetchuck\\Robo\\Git\\Tests\\Acceptance\\": "tests/acceptance/",
"Sweetchuck\\Robo\\Git\\Tests\\Unit\\": "tests/unit/",
"Sweetchuck\\Robo\\Git\\Tests\\": "tests/_support/"
}
},
"scripts": {
"clear": [
"@clear:composer"
],
"clear:composer": "rm -rf ./vendor/"
},
"scripts-descriptions": {
"clear": "Deletes all 3th-party codes",
"clear:composer": "Deletes 3th-party codes downloaded by Composer"
}
}