-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
62 lines (62 loc) · 1.67 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
{
"name": "azjezz/psl",
"description": "PHP Standard Library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "azjezz",
"email": "azjezz@protonmail.com"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-bcmath": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-sodium": "*",
"ext-intl": "*",
"revolt/event-loop": "^1.0.6"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.9.0",
"friendsofphp/php-cs-fixer": "^3.52.1",
"phpbench/phpbench": "^1.2.15",
"phpunit/phpunit": "^9.6.18",
"vimeo/psalm": "^5.23.1",
"php-standard-library/psalm-plugin": "^2.3.0",
"php-coveralls/php-coveralls": "^2.7.0",
"roave/infection-static-analysis-plugin": "^1.35.0"
},
"autoload": {
"psr-4": {
"Psl\\": "src/Psl"
},
"files": [
"src/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Psl\\Tests\\Benchmark\\": "tests/benchmark",
"Psl\\Tests\\StaticAnalysis\\": "tests/static-analysis",
"Psl\\Tests\\Unit\\": "tests/unit",
"Psl\\Tests\\Fixture\\": "tests/fixture"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
},
"extra": {
"thanks": {
"name": "hhvm/hsl",
"url": "https://github.com/hhvm/hsl"
}
},
"suggest": {
"php-standard-library/psalm-plugin": "Psalm integration",
"php-standard-library/phpstan-extension": "PHPStan integration"
}
}