-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.31 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": "spomky-labs/scim-library",
"type": "library",
"description": "OAuth2 Server Library",
"license": "MIT",
"keywords": ["scim", "RFC7642", "RFC7643", "RFC7644", "library"],
"homepage": "https://github.com/Spomky-Labs/scim-library",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},
{
"name": "All contributors",
"homepage": "https://github.com/Spomky-Labs/scim-library/contributors"
}
],
"require": {
"php": "^5.6|^7.0",
"beberlei/assert": "^2.0",
"ramsey/uuid": "^3.5"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"symfony/var-dumper": "^2.8|^3.0",
"satooshi/php-coveralls": "^1.0",
"crysalead/kahlan": "^2.5"
},
"autoload": {
"psr-4": {
"Scim\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scim\\Test\\": "tests/"
}
},
"scripts":{
"phpunit": "phpunit",
"phpunit-with-coverage": "phpunit --coverage-clover build/logs/clover.xml",
"kahlan": "kahlan",
"kahlan-with-coverage": "kahlan --coverage=4"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}