-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.31 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.31 KB
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",
"require": {
"php": "^8.2",
"laravel/framework": "^9.52.18|^10|^11|^12|^13",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^7.48|^8.0|^9.0|^10.0|^11.0",
"phpunit/phpunit": ">=9.6.33 <10 || >=10.5.40 <11 || >=11.5.24 <12 || ^12.5.22"
},
"license": "MIT",
"authors": [
{
"name": "Konstantin A.",
"email": "kostya.dn@gmail.com"
}
],
"autoload": {
"psr-4": {
"Pdazcom\\Referrals\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pdazcom\\Referrals\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Pdazcom\\Referrals\\Providers\\ReferralsServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml"
}
}