This repository was archived by the owner on Mar 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.32 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "zapsterstudios/ally",
"description": "An attempt at building a team billing API for Laravel. Inspired by Laravel Spark.",
"license": "MIT",
"authors": [
{
"name": "ZapsterStudios",
"email": "andreas@zapsterstudios.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"laravel/passport": "^3.0",
"laravel/cashier-braintree": "^2.0",
"intervention/image": "^2.4",
"nesbot/carbon": "^1.22"
},
"require-dev": {
"phpunit/phpunit": "dev-master",
"orchestra/testbench": "dev-master",
"satooshi/php-coveralls": "^1.0",
"mockery/mockery": "^1.0@dev",
"doctrine/dbal": "v2.5.13",
"mikey179/vfsStream": "^1.6"
},
"autoload": {
"psr-4": {
"ZapsterStudios\\Ally\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/Models",
"ZapsterStudios\\Ally\\Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"extra": {
"laravel": {
"providers": [
"ZapsterStudios\\Ally\\AllyServiceProvider"
]
}
}
}