forked from naneau/php-project-versioner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.32 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
{
"name": "angrybytes/project-versioner",
"description": "A tool to maintain project/sub-project versions based on Composer, file mtimes, etc.",
"license": "MIT",
"authors": [
{
"name": "Maurice Fonk",
"email": "[email protected]"
},
{
"name": "Angry Bytes BV",
"email": "[email protected]",
"homepage": "https://angrybytes.com/"
}
],
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"Naneau\\ProjectVersioner\\": "src/Naneau/ProjectVersioner/",
"Naneau\\ProjectVersioner\\Test\\": "tests/Naneau/ProjectVersioner/Test"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"phpcheck": [
"./vendor/bin/phpstan analyse -c phpstan.neon -l 8 --memory-limit=1G src/ tests/",
"./vendor/bin/phpcs -p --standard=PSR2 --extensions=php src/ tests/"
],
"phpcbf": [
"./vendor/bin/phpcbf -p --standard=PSR2 --extensions=php src/ tests/"
],
"phpunit": [
"./vendor/bin/phpunit"
]
},
"minimum-stability": "stable",
"require": {
"php": "8.1.* || 8.2.* || 8.3.*",
"ext-json": "*",
"symfony/finder": "^5.0.0"
},
"require-dev": {
"phpstan/phpstan": "1.9.12",
"phpunit/phpunit": "9.5.28",
"squizlabs/php_codesniffer": "3.7.1"
}
}