-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
69 lines (69 loc) · 1.73 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
68
69
{
"name": "ymirapp/php-runtime",
"description": "Ymir PHP runtime",
"keywords": [
"aws",
"lambda",
"php"
],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Carl Alexander",
"email": "[email protected]",
"homepage": "https://ymirapp.com"
}
],
"require": {
"php": ">=7.2.5",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-zlib": "*",
"async-aws/lambda": "^1.0",
"async-aws/ssm": "^1.0",
"hollodotme/fast-cgi-client": "^3.0",
"monolog/monolog": "^1.0",
"ralouphie/mimey": "^2.1",
"symfony/http-client": "^5.4",
"symfony/polyfill-php80": "^1.29",
"symfony/process": "^5.4",
"tightenco/collect": "^7.19"
},
"require-dev": {
"aws/aws-sdk-php": "^3.171",
"friendsofphp/php-cs-fixer": "^3.0",
"php-mock/php-mock-phpunit": "^2.6",
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpmd/phpmd": "^2.7",
"phpro/grumphp": "^1.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^8.0"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
},
"optimize-autoloader": true,
"platform": {
"php": "7.4.33"
},
"platform-check": false,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Ymir\\Runtime\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ymir\\Runtime\\Tests\\": "tests"
}
},
"prefer-stable": true
}