forked from Dev7studios/chip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 873 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
{
"name": "dev7studios/chip",
"description": "Drop-in subscription billing UI for Laravel",
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "Dev7studios",
"email": "[email protected]"
}
],
"require-dev": {
"laravel/framework": "^5.5",
"laravel/cashier": "^7.0",
"phpunit/phpunit": "^6.2",
"orchestra/testbench": "~3.4"
},
"autoload": {
"psr-4": {
"Dev7studios\\Chip\\": "src/php",
"Dev7studios\\Chip\\Laravel\\": "src/laravel"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Laravel\\": "tests/laravel/"
}
},
"extra": {
"laravel": {
"providers": [
"Dev7studios\\Chip\\Laravel\\ChipServiceProvider"
]
}
}
}