-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·33 lines (33 loc) · 1006 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
{
"name": "krdinesh/laravel-oauth2-smartrecruiters",
"description": "A Laravel 5.2 service provider for league/oauth2-smartRecruiters",
"type": "library",
"authors": [{
"name": "krdinesh",
"email": "kumardinesh0521@gmail.com"
}],
"keywords": ["laravel", "oauth2", "smartRecruiters", "laravel 5.2"],
"license": "MIT",
"require": {
"php": ">=5.5.9",
"illuminate/support": "^5.2",
"krdinesh/oauth2-smartrecruiters": "1.0.*"
},
"require-dev": {
"orchestra/testbench": "^3.2",
"phpunit/phpunit": "^5.1 || ^6.0",
"squizlabs/php_codesniffer": "^2.5",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"satooshi/php-coveralls": "^0.7.1"
},
"autoload": {
"psr-4": {
"Krdinesh\\Laravel\\OAuth2\\SmartRecruiters\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Krdinesh\\Laravel\\OAuth2\\SmartRecruiters\\Test\\": "tests/"
}
}
}