-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 905 Bytes
/
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
{
"name": "geekcom/felicio",
"description": "A simple lib to connect PHP with AWS SQS",
"homepage": "https://github.com/geekcom/felicio",
"license": "MIT",
"keywords": [
"sqs",
"queues",
"aws"
],
"authors": [
{
"name": "Daniel Rodrigues Lima",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"aws/aws-sdk-php": "^3.110",
"symfony/dotenv": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"Felicio\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Felicio\\Test\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.felicio') || copy('.felicio.example', '.felicio');\""
],
"tests": [
"vendor/bin/phpcs",
"phpunit --testdox"
]
}
}