-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.12 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
{
"name": "proclame/mikropakket-php",
"description": "description",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Nick Mispoulier",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"guzzlehttp/guzzle": "^6.2.1|^7.0",
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"Mikropakket\\": "src/"
}
},
"extra": {
"hooks": {
"pre-commit": [
"composer check-style"
],
"pre-push": [
"composer check-style"
]
}
},
"scripts": {
"check-style": "php-cs-fixer fix --using-cache=no --diff --dry-run --ansi",
"fix-style": "php-cs-fixer fix --using-cache=no --ansi"
},
"scripts-descriptions": {
"check-style": "Run style checks (only dry run - no fixing!).",
"fix-style": "Run style checks and fix violations."
}
}