-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.01 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.01 KB
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
70
71
72
73
74
{
"name": "ymirapp/php-runtime",
"description": "Ymir PHP runtime",
"keywords": [
"aws",
"lambda",
"php"
],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Carl Alexander",
"email": "support@ymirapp.com",
"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": "^2.0",
"ralouphie/mimey": "^2.1",
"symfony/http-client": "^5.4",
"symfony/polyfill-php80": "^1.29",
"symfony/process": "^5.4",
"tightenco/collect": "^7.19",
"ymirapp/monolog-bridge": "^1.0"
},
"require-dev": {
"aws/aws-sdk-php": "^3.171",
"friendsofphp/php-cs-fixer": "^3.0",
"php-mock/php-mock-phpunit": "^2.6",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^8.0",
"rector/rector": "^2.3"
},
"config": {
"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,
"scripts": {
"php-cs-fixer": "php-cs-fixer fix --dry-run --allow-risky=yes",
"php-cs-fixer:fix": "php-cs-fixer fix --allow-risky=yes",
"phpstan": "phpstan analyze --ansi",
"phpstan:generate-baseline": "phpstan analyze --generate-baseline",
"rector": "rector --dry-run",
"rector:fix": "rector",
"tests:unit": "phpunit --testsuite unit"
}
}