-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
47 lines (47 loc) · 1.12 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
{
"name": "ingenerator/php-utils",
"description": "Simple, standalone utility classes for PHP applications",
"homepage": "https://github.com/ingenerator/php-utils",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Andrew Coulton",
"email": "andrew@ingenerator.com"
},
{
"name": "Craig Gosman",
"email": "craig@ingenerator.com"
}
],
"require": {
"ext-json": "*",
"ext-mbstring": "~8.2.0 || ~8.3.0",
"ext-pdo": "~8.2.0 || ~8.3.0",
"ext-sodium": "~8.2.0 || ~8.3.0",
"php": "~8.2.0 || ~8.3.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.11",
"phpunit/phpunit": "^11.0",
"ergebnis/phpunit-slow-test-detector": "^2.15"
},
"support": {
"source": "https://github.com/ingenerator/php-utils",
"issues": "https://github.com/ingenerator/php-utils/issues"
},
"autoload": {
"psr-4": {
"Ingenerator\\PHPUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"test\\unit\\Ingenerator\\PHPUtils\\": "test"
}
},
"config": {
"preferred-install": "dist"
}
}