-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 2.42 KB
/
composer.json
File metadata and controls
86 lines (86 loc) · 2.42 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
81
82
83
84
85
86
{
"name": "drevops/git-artifact",
"description": "Package artifact from your codebase in CI and push it to a separate git repo.",
"license": "GPL-2.0-or-later",
"type": "package",
"authors": [
{
"name": "Alex Skrypnyk",
"email": "alex@drevops.com"
}
],
"homepage": "https://github.com/drevops/git-artifact",
"support": {
"issues": "https://github.com/drevops/git-artifact/issues",
"source": "https://github.com/drevops/git-artifact"
},
"require": {
"php": ">=8.3",
"czproject/git-php": "^4.6",
"monolog/monolog": "^3.10",
"symfony/console": "^7.4.13",
"symfony/filesystem": "^7.4.11",
"symfony/finder": "^7.4.8",
"symfony/monolog-bridge": "^7.4.12",
"symfony/process": "^7.4.13"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.9.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.2.1",
"drevops/phpcs-standard": "^0.7.0",
"drupal/coder": "^8.3.31",
"ergebnis/composer-normalize": "^2.52.0",
"phpstan/phpstan": "^2.2.2",
"phpunit/phpunit": "^11.5.55",
"pyrech/composer-changelogs": "^2.2",
"rector/rector": "^2.4.5"
},
"autoload": {
"psr-4": {
"DrevOps\\GitArtifact\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DrevOps\\GitArtifact\\Tests\\": "tests"
}
},
"bin": [
"git-artifact"
],
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"pyrech/composer-changelogs": true
},
"audit": {
"abandoned": "report",
"block-insecure": true
},
"bump-after-update": true,
"platform": {
"php": "8.3.0"
}
},
"scripts": {
"build": [
"@composer bin box require --dev humbug/box",
"box validate",
"box compile"
],
"lint": [
"phpcs",
"phpstan --memory-limit=-1",
"rector --dry-run"
],
"lint-fix": [
"rector",
"phpcbf"
],
"reset": "rm -Rf vendor vendor-bin",
"test": "phpunit --no-coverage",
"test-coverage": "phpunit"
}
}