forked from gabrielelana/precious
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.08 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.08 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
53
54
55
56
57
58
{
"name": "recruiterphp/precious",
"description": "Library to build value objects",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "gabriele.lana",
"email": "gabriele.lana@cleancode.it"
}
],
"require": {
"php": "^8.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.47",
"nikic/php-parser": "^5.6",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.3",
"rector/rector": "^2.1"
},
"replace": {
"gabrielelana/precious": "self.version"
},
"suggest": {
"nikic/php-parser": "^5.6",
"phpstan/phpstan": "^2.1"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Precious\\": [
"./src",
"./tests"
]
}
},
"autoload-dev": {
"classmap": [
"tests/data/",
"tests/PHPStan/Rule/data/",
"tests/PHPStan/Reflection/data/"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"rules.neon"
]
}
}
}