-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 1.56 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
70
71
72
{
"name": "lalcebo/aws-sdk-php-params",
"description": "Provides objects for building request parameters for AWS low-level API.",
"type": "library",
"keywords": [
"php",
"sdk",
"library",
"aws",
"amazon",
"s3",
"ec2",
"dynamodb",
"cloud",
"glue",
"athena"
],
"homepage": "https://github.com/lalcebo/aws-sdk-php-params",
"license": "MIT",
"authors": [
{
"name": "Jorge P. Hernandez Lalcebo",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/lalcebo"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-ctype": "*",
"ext-json": "*",
"lalcebo/sdk-php-helpers": "^0.1|^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/phpunit": "^8.0|^9.4",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Lalcebo\\Aws\\Params\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Lalcebo\\Aws\\Params\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
},
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"scripts": {
"lint": "parallel-lint . --exclude vendor",
"phpunit": "phpunit --coverage-text -colors=always --configuration phpunit.xml",
"format": "php-cs-fixer fix",
"tests": [
"@lint",
"@phpunit"
]
}
}