-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
78 lines (78 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ramsey/conventional-commits",
"type": "library",
"description": "A PHP library for creating and validating commit messages according to the Conventional Commits specification. Includes a CaptainHook plugin!",
"keywords": [
"captainhook",
"commit",
"commit-msg",
"conventional",
"conventional-commits",
"git",
"hook",
"plugin"
],
"license": "MIT",
"authors": [
{
"name": "Ben Ramsey",
"email": "[email protected]",
"homepage": "https://benramsey.com"
}
],
"require": {
"php": "^7.4 || ^8",
"ext-json": "*",
"composer-runtime-api": "^1.1 || ^2",
"captainhook/captainhook": "^5.3.3",
"composer/composer": "^1.10.22 || ^2.0.13",
"jawira/case-converter": "^3.3",
"opis/json-schema": "^1.0.8",
"symfony/console": "^5.3.4",
"symfony/filesystem": "^5.1",
"symfony/polyfill-php80": "^1.15"
},
"require-dev": {
"ramsey/devtools": "^1.7",
"sebastianfeldmann/cli": "^3.3",
"sebastianfeldmann/git": "^3.3",
"spatie/phpunit-snapshot-assertions": "^4.2",
"symfony/process": "^5.1"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"captainhook": {
"force-install": true
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"command-prefix": "dev"
}
},
"autoload": {
"psr-4": {
"Ramsey\\CaptainHook\\": "src/CaptainHook/",
"Ramsey\\ConventionalCommits\\": "src/ConventionalCommits/"
}
},
"autoload-dev": {
"psr-4": {
"Ramsey\\Test\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/conventional-commits"
],
"scripts": {
"test-functional": "./tests/bash-test tests/functional-tests.sh"
}
}