-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
44 lines (44 loc) · 1.08 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
{
"name": "padosoft/laravel-affiliate-network",
"description": "agnostic helpers to use as foundation in packages and other project",
"keywords": [
"padosoft",
"affiliate",
"network",
"wrapper"
],
"homepage": "https://github.com/padosoft/laravel-affiliate-network",
"license": "MIT",
"authors": [
{
"name": "Lorenzo Padovani",
"email": "[email protected]",
"homepage": "https://www.padosoft.com",
"role": "Developer"
}
],
"require": {
"php" : ">=7.0.0",
"illuminate/support": "^5.0",
"padosoft/support": "^1.12",
"vlucas/phpdotenv": "^2.4",
"psr/log": "^1.1",
"padosoft/php-oara": "2.7.14"
},
"require-dev": {
"phpunit/phpunit": "^5.0"
},
"autoload": {
"psr-4": {
"Padosoft\\AffiliateNetwork\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Padosoft\\AffiliateNetwork\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}