Skip to content

Commit 7c96443

Browse files
committed
Release v1.0.0
0 parents  commit 7c96443

12 files changed

+10227
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "teaminfinitydev/laravel-activity-log-discord",
3+
"description": "Laravel package for activity logging with Discord webhook integration",
4+
"type": "library",
5+
"license": "MIT",
6+
"version": "1.0.0",
7+
"authors": [
8+
{
9+
"name": "Chamika Samaraweera",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": "^8.1",
15+
"illuminate/support": "*",
16+
"guzzlehttp/guzzle": "^7.9"
17+
},
18+
"require-dev": {
19+
"phpunit/phpunit": "^10.5",
20+
"orchestra/testbench": "^9.14",
21+
"friendsofphp/php-cs-fixer": "^3.75"
22+
},
23+
"autoload": {
24+
"psr-4": {
25+
"teaminfinitydev\\ActivityLogDiscord\\": "src/"
26+
}
27+
},
28+
"autoload-dev": {
29+
"psr-4": {
30+
"teaminfinitydev\\ActivityLogDiscord\\Tests\\": "tests/"
31+
}
32+
},
33+
"extra": {
34+
"laravel": {
35+
"providers": [
36+
"teaminfinitydev\\ActivityLogDiscord\\ActivityLogDiscordServiceProvider"
37+
]
38+
}
39+
},
40+
"minimum-stability": "stable",
41+
"prefer-stable": true
42+
}

0 commit comments

Comments
 (0)