-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.41 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.41 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
46
47
48
49
50
51
52
{
"name": "ruudk/code-generator",
"description": "Yield your code line by line: let generators handle indentation, formatting, and structure for you",
"license": "MIT",
"type": "library",
"keywords": [
"dev",
"code generator"
],
"authors": [
{
"name": "Ruud Kamphuis",
"email": "ruudk@users.noreply.github.com"
}
],
"require": {
"php": "^8.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.47",
"friendsofphp/php-cs-fixer": "^3.85",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^12.3",
"ruudk/readme-examples-sync-hook": "^2.0",
"shipmonk/composer-dependency-analyser": "^1.8",
"ticketswap/php-cs-fixer-config": "^1.0",
"ticketswap/phpstan-error-formatter": "^1.1"
},
"autoload": {
"psr-4": {
"Ruudk\\CodeGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ruudk\\CodeGenerator\\": "tests/"
}
},
"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"
]
}
}