-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.43 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.43 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
{
"name": "seoladan/github-template",
"description": "description",
"version": "1.1.0",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Sean Ellingham",
"email": "sean@terrestris.co.uk"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "^11.5.0",
"marcocesarato/php-conventional-changelog": "^1.17",
"symfony/console": "^7",
"brainmaestro/composer-git-hooks": "^3.0"
},
"autoload": {
"psr-4": {
"Seoladan\\GithubTemplate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Seoladan\\GithubTemplate\\Tests\\": "tests/"
}
},
"scripts": {
"changelog": "vendor/bin/conventional-changelog",
"release": "vendor/bin/conventional-changelog --commit",
"release:patch": "vendor/bin/conventional-changelog --commit --patch",
"release:minor": "vendor/bin/conventional-changelog --commit --minor",
"release:major": "vendor/bin/conventional-changelog --commit --major",
"hooks": "vendor/bin/cghooks",
"test": "vendor/bin/phpunit"
},
"extra": {
"hooks": {
"pre-commit": [
"composer validate --no-check-version"
],
"pre-push": [
"composer test"
]
}
}
}