-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.17 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
{
"require": {
"guzzlehttp/guzzle": "^7.9",
"ingenerator/php-utils": "^2.1",
"psr/log": "^3.0.2",
"symfony/filesystem": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"repositories": [
{"type": "composer", "url": "https://php-packages.ingenerator.com"}
],
"autoload": {
"psr-4": {
"Ingenerator\\ApiEmulator\\": "src"
}
},
"minimum-stability": "stable",
"config": {
"process-timeout": 600,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.3",
"ext-apcu": "8.3",
"ext-bcmath": "8.3",
"ext-curl": "0",
"ext-ffi": "8.1",
"ext-gd": "0",
"ext-json": "0",
"ext-libxml": "0",
"ext-mbstring": "8.3",
"ext-openssl": "0",
"ext-PDO": "8.3",
"ext-grpc": "3.13",
"ext-sodium": "8.3",
"ext-tokenizer": "0.2",
"ext-zip": "0"
},
"allow-plugins": {
"composer/installers": true
}
},
"type": "project"
}