forked from readmeio/metrics-sdks-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.69 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
{
"name": "readme/metrics",
"description": "Track your API metrics within ReadMe.",
"homepage": "https://readme.com/metrics",
"license": "ISC",
"authors": [
{
"name": "Jon Ursenbach",
"email": "[email protected]"
}
],
"support": {
"docs": "https://docs.readme.com/docs/sending-api-logs-to-readme",
"issues": "https://github.com/readmeio/metrics-php/issues",
"source": "https://github.com/readmeio/metrics-php"
},
"keywords": [
"api-metrics",
"readme"
],
"require": {
"php": "^7.2",
"illuminate/http": "^6.8 | ^7.0",
"illuminate/support": "^6.8 | ^7.0",
"guzzlehttp/guzzle": "^6.4",
"ocramius/package-versions": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"squizlabs/php_codesniffer": "^3.5",
"mockery/mockery": "^1.3",
"vimeo/psalm": ">=3.10"
},
"extra": {
"laravel": {
"providers": [
"ReadMe\\ServiceProvider"
]
}
},
"scripts": {
"coverage": "phpunit --coverage-html reports/",
"lint": "phpcs --standard=phpcs.xml src/ tests/",
"lint:fix": "phpcbf --standard=phpcs.xml src/ tests/",
"phpunit": "phpunit tests/",
"psalm": "psalm",
"test": [
"composer run lint",
"composer run psalm",
"composer run phpunit"
]
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"ReadMe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReadMe\\Tests\\": "tests/"
}
}
}