forked from joindin/joindin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 1.82 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
67
68
69
70
71
72
73
{
"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",
"require": {
"ext-intl": "*",
"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.3.4",
"roave/security-advisories": "dev-master",
"sensiolabs/security-checker": "^6.0",
"squizlabs/php_codesniffer": "^3.4"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.3.2"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Joindin\\Api\\": "src/",
"Joindin\\Modifier\\": "src/Modifier/"
}
},
"autoload-dev": {
"psr-4": {
"Joindin\\Api\\Test\\": "tests/"
}
},
"scripts": {
"check": [
"mkdir -p build/logs",
"@lint",
"@sniff",
"@security",
"@test"
],
"coverage": [
"git diff origin/master... -- > diff.txt",
"diffFilter --phpunit diff.txt build/logs/clover.xml 80"
],
"lint": "parallel-lint --exclude vendor .",
"security": "security-checker security:check composer.lock",
"sniff": "phpcs --runtime-set ignore_warnings_on_exit true -p .",
"test": "phpunit -c . tests/"
},
"support": {
"issues": "https://github.com/joindin/joindin-api/issues",
"irc": "irc://freenet/#joindin",
"source": "https://github.com/joindin/joindin-api"
}
}