-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
68 lines (68 loc) · 1.82 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
{
"name": "nandi95/laravel-env-in-aws-ssm",
"version": "0.4.0",
"description": "Manage your environment variables in AWS' SSM Parameter store",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Nandi95\\LaravelEnvInAwsSsm\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Nandi95\\LaravelEnvInAwsSsm\\EnvInAwsSsmServiceProvider"
]
}
},
"authors": [
{
"name": "Nandor Kraszlan",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require-dev": {
"php": ">=8.1",
"orchestra/testbench": "^8.0.8",
"phpunit/phpunit": "^10.0.16",
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.11",
"phpmd/phpmd": "^2.13",
"phpro/grumphp": "^1.13",
"rector/rector": "^1.1",
"driftingly/rector-laravel": "^1.2",
"larastan/larastan": "^2.9"
},
"require": {
"aws/aws-sdk-php": "^3.235",
"symfony/dotenv": "^6.1"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
},
"scripts": {
"post-update-cmd": [
"Scripts\\ComposerScripts::devModeOnly",
"@php ./vendor/bin/grumphp git:init"
],
"sniff": [
"./vendor/bin/php-cs-fixer fix -vvv --dry-run --show-progress=dots"
],
"lint": [
"./vendor/bin/php-cs-fixer fix -vv --show-progress=dots"
],
"phpstan": [
"./vendor/bin/phpstan analyse --memory-limit=2G"
],
"php-md": [
"./vendor/bin/phpmd src ansi ./phpmd-ruleset.xml"
],
"rector": [
"./vendor/bin/rector"
]
}
}