forked from app-insights-php/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.17 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
{
"name": "app-insights-php/client",
"description": "Microsoft App Insights telemetry client php wrapper",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Norbert Orzechowicz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"AppInsightsPHP\\Client\\": "src/AppInsightsPHP/Client/"
}
},
"autoload-dev": {
"psr-4": {
"AppInsightsPHP\\Client\\Tests\\": "tests/AppInsightsPHP/Client/Tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"app-insights-php/application-insights": "^0.4.8",
"guzzlehttp/guzzle": "^7.4",
"psr/simple-cache": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.0",
"friendsofphp/php-cs-fixer": "^3"
},
"scripts": {
"phpunit": [
"phpunit --colors=always"
],
"static:analyze": [
"php-cs-fixer fix --dry-run"
],
"test" : [
"@phpunit"
],
"cs:php:fix": [
"php-cs-fixer fix"
]
}
}