-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.64 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
61
62
63
64
65
66
67
{
"name": "cdn77/functions",
"description": "PHP Functions",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"functions",
"absurd",
"ds",
"generators",
"never",
"noop"
],
"authors": [
{
"name": "Simon Podlipsky",
"email": "simon@podlipsky.net"
}
],
"require": {
"php": "^8.2",
"ext-ds": "*",
"azjezz/psl": "^2.9 || ^3.0"
},
"require-dev": {
"cdn77/coding-standard": "^7.0",
"ergebnis/composer-normalize": "^2.23",
"infection/infection": "^0.29.0",
"php-ds/php-ds": "^1.4",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0.0",
"phpunit/phpunit": "^11.0",
"shipmonk/composer-dependency-analyser": "^1.5"
},
"autoload": {
"psr-4": {
"Cdn77\\Functions\\PHPStan\\": "phpstan"
},
"files": [
"src/functions_include.php"
]
},
"autoload-dev": {
"psr-4": {
"Cdn77\\Functions\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"phpstan-extension.neon"
]
}
}
}