-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
75 lines (75 loc) · 2.27 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
{
"name": "phly/keep-a-changelog",
"description": "Tag and release packages on GitHub using Keep A Changelog; add new version entries to your changelog.",
"license": "BSD-2-Clause",
"keywords": [
"keepachangelog"
],
"support": {
"issues": "https://github.com/phly/keep-a-changelog/issues",
"source": "https://github.com/phly/keep-a-changelog",
"rss": "https://github.com/phly/keep-a-changelog/releases.atom"
},
"require": {
"php": "^7.4 || ^8.0",
"composer-runtime-api": "^2.0",
"knplabs/github-api": "^3.4",
"laminas/laminas-diactoros": "^2.4.1",
"m4tthumphrey/php-gitlab-api": "^11.0",
"php-http/guzzle7-adapter": "^1.0",
"psr/event-dispatcher": "^1.0",
"symfony/console": "^5.2.1 || ^6.0"
},
"require-dev": {
"captainhook/captainhook": "^5.4",
"captainhook/plugin-composer": "^5.2.3",
"laminas/laminas-coding-standard": "^2.1.4",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": "^9.5"
},
"replace": {
"laminas/laminas-zendframework-bridge": "*"
},
"autoload": {
"psr-4": {
"Phly\\KeepAChangelog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlyTest\\KeepAChangelog\\": "test/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.4.7"
},
"allow-plugins": {
"captainhook/plugin-composer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"bin": [
"bin/keep-a-changelog"
],
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs -p",
"cs-fix": "phpcbf -p",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"buildphar" : [
"rm -rf vendor",
"composer install --no-dev --prefer-dist",
"curl -o box -L https://api.getlatestassets.com/github/humbug/box/box.phar",
"chmod 755 box",
"mkdir -p ./build",
"chmod 777 ./build",
"php -d phar.readonly=0 ./box compile"
]
}
}