-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 914 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
{
"name": "nlocascio/mindbody-laravel-auth",
"description": "MINDBODY Auth Wrapper for Laravel",
"keywords": [
"laravel",
"mindbody",
"laravel mindbody auth provider"
],
"license": "MIT",
"authors": [
{
"name": "Nick LoCascio",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"illuminate/support": ">=5.1",
"nlocascio/mindbody-laravel": "~0.3.3"
},
"require-dev": {
"vlucas/phpdotenv": "^2.4",
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "^5.4",
"mockery/mockery": "0.9.*",
"fzaninotto/faker": "~1.4"
},
"autoload": {
"psr-4": {
"Nlocascio\\MindbodyAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nlocascio\\MindbodyAuth\\Tests\\": "tests"
}
}
}