This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.46 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": "gomzyakov/git-version",
"description": "A helper to get the current GIT version of the application",
"type": "package",
"license": "MIT",
"keywords": [
"php",
"git",
"git-version",
"app-version"
],
"homepage": "https://github.com/gomzyakov/git-version",
"authors": [
{
"name": "Alexander Gomzyakov",
"email": "alexander.gomzyakov@gmail.com"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^9.34",
"symfony/process": "^6.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8",
"mockery/mockery": "^1.5",
"laravel/pint": "^1.2",
"gomzyakov/php-code-style": "^1.0"
},
"autoload": {
"psr-4": {
"Gomzyakov\\GitVersion\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "./tests/"
}
},
"scripts": {
"cs-check": "@php ./vendor/bin/pint --test --config vendor/gomzyakov/php-code-style/pint.json",
"cs-fix": "@php ./vendor/bin/pint --config vendor/gomzyakov/php-code-style/pint.json",
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"phpunit": "@php ./vendor/bin/phpunit ./tests --no-coverage --color=always",
"test": [
"@cs-check",
"@phpstan",
"@phpunit"
]
}
}