-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
60 lines (60 loc) · 1.49 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
53
54
55
56
57
58
59
60
{
"name": "crell/attributeutils",
"type": "library",
"description": "A robust, flexible attribute handling framework",
"keywords": [
"Attributes",
"Reflection"
],
"homepage": "https://github.com/Crell/AttributeUtils",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Larry Garfield",
"email": "larry@garfieldtech.com",
"homepage": "http://www.garfieldtech.com/",
"role": "Developer"
}
],
"require": {
"php": "~8.1",
"crell/fp": "~1.0.0"
},
"require-dev": {
"phpbench/phpbench": "^1.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "~10.3",
"psr/cache": "^3.0",
"psr/cache-util": "^2.0"
},
"suggest": {
"psr/cache": "Caching analyzer rests is recommended, and a bridge for psr/cache is included."
},
"autoload": {
"psr-4": {
"Crell\\AttributeUtils\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Crell\\AttributeUtils\\": "tests"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan",
"test": "vendor/bin/phpunit",
"all-checks": [
"@test",
"@phpstan"
],
"benchmarks": "vendor/bin/phpbench run benchmarks --report=aggregate"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}