-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 891 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
{
"name": "kaz29/phai",
"description": "Phai is PSR-15 compliant middleware for Application Insights.",
"license": "MIT",
"authors": [
{
"name": "Kazuhiro Watanabe",
"email": "cyo@mac.com"
}
],
"require": {
"microsoft/application-insights": "dev-master",
"psr/http-message": "^1.0",
"psr/log": "^1.1|^2.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~7|~8|~9"
},
"autoload": {
"psr-4": {
"kaz29\\Phai\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"kaz29\\Phai\\Tests\\": "tests/"
}
},
"repositories": {
"microsoft/application-insights": {
"type": "vcs",
"url": "https://github.com/kaz29/ApplicationInsights-PHP.git"
}
}
}