-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
41 lines (41 loc) · 965 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
37
38
39
40
41
{
"name": "questocat/laravel-referral",
"description": "A Referral System With Laravel",
"keywords": ["referral", "referral-system", "affiliate-tracking"],
"license": "MIT",
"authors": [{
"name": "questocat",
"email": "zhengchaopu@gmail.com"
}],
"require": {
"php": ">=7.0"
},
"require-dev": {
"laravel/laravel": "^5.5",
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~4.0|~5.0"
},
"autoload": {
"psr-4": {
"Questocat\\Referral\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Questocat\\Referral\\ReferralServiceProvider"
]
}
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
}
}