-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
72 lines (72 loc) · 1.93 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
{
"name": "aeon-php/automation",
"description": "Automatically update project changelog after commit/tag/release/pull request in \"keep a changelog\" format (or not)",
"authors": [
{
"name": "Norbert Orzechowicz",
"email": "[email protected]"
}
],
"license": "MIT",
"bin": [
"bin/automation"
],
"autoload": {
"psr-4": {
"Aeon\\Automation\\": [
"src/Aeon/Automation"
]
}
},
"autoload-dev": {
"psr-4": {
"Aeon\\Automation\\Tests\\": "tests/Aeon/Automation/Tests/"
}
},
"require": {
"php": "~8.1",
"ext-json": "*",
"ext-dom": "*",
"symfony/http-client": "^6.2",
"http-interop/http-factory-guzzle": "^1.0",
"knplabs/github-api": "^3.0",
"symfony/console": "^6.2",
"composer/semver": "^3.2",
"symfony/dom-crawler": "^6.2",
"symfony/css-selector": "^6.2",
"aeon-php/calendar": "^1.0",
"php-http/logger-plugin": "^1.2",
"monolog/monolog": "^3.2",
"symfony/monolog-bridge": "^6.2",
"symfony/cache": "^6.2",
"ramsey/conventional-commits": "^1.1",
"twig/twig": "^3.1",
"league/commonmark": "^2.0"
},
"require-dev": {
"coduo/php-matcher": "^6.0.0"
},
"config": {
"allow-plugins": false
},
"scripts": {
"build": [
"@test",
"@static:analyze"
],
"test": [
"tools/vendor/bin/phpunit"
],
"static:analyze": [
"tools/vendor/bin/php-cs-fixer fix --dry-run"
],
"cs:php:fix": "tools/vendor/bin/php-cs-fixer fix",
"tools:install": "composer install --working-dir=./tools",
"post-install-cmd": [
"@tools:install"
],
"post-update-cmd": [
"@tools:install"
]
}
}