forked from joindin/joindin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name" : "joindin/joindin-api",
"description" : "The API-backend that powers joind.in",
"keywords" : ["joind.in", "events", "talks", "speaking", "feedback"],
"homepage" : "https://api.joind.in",
"license" : "BSD-3-Clause",
"support" : {
"issues" : "https://github.com/joindin/joindin-api/issues",
"irc" : "irc://freenet/#joindin",
"source" : "https://github.com/joindin/joindin-api"
},
"require" : {
"ext-json": "*",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/oauth-subscriber": "^0.3.0",
"michelf/php-markdown": "^1.8",
"pimple/pimple": "^3.2",
"swiftmailer/swiftmailer": "^v5.4.9"
},
"require-dev": {
"exussum12/coverage-checker": "^0.11.1",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpunit/php-invoker": "^2.0",
"phpunit/phpunit": "^8.1",
"roave/security-advisories": "dev-master",
"sensiolabs/security-checker": "^5.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload" : {
"psr-4" : {
"Joindin\\Api\\": "src/",
"Joindin\\Modifier\\" : "src/Modifier/"
}
},
"autoload-dev" : {
"psr-4" : {
"Joindin\\Api\\Test\\" : "tests/"
}
},
"scripts": {
"test": "phpunit -c . tests/",
"lint": "parallel-lint --exclude vendor .",
"sniff": "phpcs --runtime-set ignore_warnings_on_exit true -p .",
"security": "security-checker security:check composer.lock",
"coverage": [
"git diff origin/master... -- > diff.txt",
"diffFilter --phpunit diff.txt build/logs/clover.xml 80"
],
"check": [
"mkdir -p build/logs",
"@lint",
"@sniff",
"@security",
"@test"
]
},
"config": {
"platform": {
"php": "7.3.2"
},
"preferred-install": "dist",
"sort-packages" : true,
"optimize-autoloader" : true
}
}