-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
53 lines (53 loc) · 1.18 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
{
"name": "pdazcom/laravel-referrals",
"description": "A referrals system for a laravel projects.",
"homepage": "https://github.com/pdazcom/laravel-referrals",
"keywords": [
"laravel",
"referrals",
"package",
"laravel-referrals",
"referral-system",
"user-referral",
"affiliate",
"referral-program",
"referals"
],
"type": "library",
"version": "2.0.0",
"require": {
"php": "^8.2",
"laravel/framework": "^9.52.18|^10",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench":"^7.48"
},
"license": "MIT",
"authors": [
{
"name": "Konstantin A.",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Pdazcom\\Referrals\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pdazcom\\Referrals\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Pdazcom\\Referrals\\Providers\\ReferralsServiceProvider"
]
}
},
"scripts": {
"test": "./test.sh"
}
}