Skip to content

Commit 6e97d60

Browse files
committed
First ever commit to the repo
0 parents  commit 6e97d60

17 files changed

+1569
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
/.idea/
3+
/vendor/
4+
composer.phar
5+

composer.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "sahib/application-insights-laravel",
3+
"description": "Microsoft Azure Application Insights for Laravel 10",
4+
"homepage": "https://github.com/GitSahib/application-insights-laravel",
5+
"license": "MIT",
6+
"keywords": [
7+
"Laravel",
8+
"Microsoft",
9+
"Azure",
10+
"Application Insights",
11+
"monitoring",
12+
"logging"
13+
],
14+
"authors": [
15+
{
16+
"name": "Sahib",
17+
"email": "sahib.zer@gmail.com"
18+
}
19+
],
20+
"require": {
21+
"php": ">=8.1",
22+
"app-insights-php/client": "^0.3.0"
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"Sahib\\AppInsightsLaravel\\": "src/"
27+
}
28+
},
29+
"extra": {
30+
"laravel": {
31+
"providers": [
32+
"Sahib\\AppInsightsLaravel\\Providers\\AppInsightsServiceProvider"
33+
],
34+
"aliases": {
35+
"AIClient": "Sahib\\AppInsightsLaravel\\Facades\\AppInsightsClientFacade",
36+
"AIServer": "Sahib\\AppInsightsLaravel\\Facades\\AppInsightsServerFacade",
37+
"AIQueue": "Sahib\\AppInsightsLaravel\\Facades\\AppInsightsQueueFacade"
38+
}
39+
}
40+
}
41+
}

0 commit comments

Comments
 (0)