-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.13 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.13 KB
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
{
"name": "ruudk/readme-examples-sync-hook",
"description": "Automatically sync PHP code examples with readme file",
"license": "MIT",
"type": "library",
"keywords": [
"dev"
],
"authors": [
{
"name": "Ruud Kamphuis",
"email": "ruudk@users.noreply.github.com"
}
],
"require": {
"php": "^8.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.48",
"friendsofphp/php-cs-fixer": "^3.85",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"ticketswap/php-cs-fixer-config": "^1.0",
"ticketswap/phpstan-error-formatter": "^1.1"
},
"autoload": {
"psr-4": {
"Ruudk\\ReadmeExamplesSyncHook\\": "src/"
}
},
"bin": [
"bin/readme-examples-sync"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"post-install-cmd": [
"command -v lefthook >/dev/null 2>&1 && lefthook install || true"
]
}
}