This repository has been archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 2.09 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
{
"name": "omissis/php-ask-sdk",
"description": "PHP SDK for Amazon Alexa Skills Kit",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Claudio Beatrice",
"email": "claudi0.beatric3@gmail.com"
}
],
"config": {
"bin-dir": "bin"
},
"scripts": {
"lint": ["composer validate", "bin/parallel-lint src tests", "sort -c .env", "sort -c .env.dist"],
"phpcs": ["bin/phpcs"],
"phpstan": ["bin/phpstan analyze"],
"psalm": ["bin/psalm --show-info=false"],
"phpunit": ["bin/phpunit"],
"qa": ["@lint", "@phpcs", "@phpstan", "@psalm", "@phpunit"]
},
"require": {
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"suggest": {
"doctrine/common": "Used to parse annotations",
"kriswallsmith/buzz": "Used to communicate with other hosts via HTTP",
"nyholm/psr7": "Used to use common HTTP Implementations",
"symfony/serializer": "Used to serialize/deserialize data",
"symfony/property-access": "Used to access object properties",
"symfony/property-info": "Used to access information about object properties"
},
"autoload": {
"psr-4": {
"Omissis\\AlexaSdk\\": "src/"
}
},
"require-dev": {
"vimeo/psalm": "^3.2",
"phpstan/phpstan": "^0.11",
"object-calisthenics/phpcs-calisthenics-rules": "^3.5",
"phpunit/phpunit": "^8.1",
"phpstan/phpstan-phpunit": "^0.11.1",
"jangregor/phpstan-prophecy": "dev-master",
"doctrine/common": "^2.10",
"symfony/serializer": "^3.4",
"symfony/property-access": "^3.4",
"symfony/property-info": "^3.4",
"symfony/var-dumper": "^3.4",
"symfony/dotenv": "^3.4",
"kriswallsmith/buzz": "^1.0",
"nyholm/psr7": "^1.1",
"jakub-onderka/php-parallel-lint": "^1.0",
"slevomat/coding-standard": "^5.0"
},
"autoload-dev": {
"psr-4": {
"Omissis\\AlexaSdk\\Tests\\": "tests/"
}
}
}