forked from robjuz/laravel-podio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 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
45
46
47
48
49
50
{
"name": "stefanmdt/laravel-podio",
"type": "library",
"description": "Podio integration for Laravel 5+",
"keywords": [
"podio",
"laravel"
],
"homepage": "https://github.com/stefanmdt/laravel-podio",
"license": "MIT",
"authors": [
{
"name": "Nikolaj Løvenhardt Petersen",
"email": "[email protected]",
"homepage": "https://github.com/nikolajlovenhardt"
}
],
"require": {
"php": ">=7.0.0",
"stefanmdt/podio-php": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"laravel/framework": "~5.4",
"codeclimate/php-test-reporter": "~0.3.0",
"phpmd/phpmd": "~2.3.2",
"squizlabs/php_codesniffer": "~2.5.1",
"mockery/mockery": "~1.0"
},
"autoload": {
"psr-4": {
"stefanmdt\\LaravelPodio\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"stefanmdt\\LaravelPodio\\ServiceProvider"
],
"aliases": {
"LaravelPodio": "stefanmdt\\LaravelPodio\\Facade"
}
}
}
}