forked from joindin/joindin-web2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 2.25 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
{
"name": "joindin/website",
"license": "BSD-3-Clause",
"autoload": {
"psr-0":{
"Application": ["app/src/", "tests/"],
"Form": ["app/src/", "tests/"],
"Language": ["app/src/", "tests/"],
"Middleware": ["app/src/", "tests/"],
"Event": ["app/src/", "tests/"],
"Search": ["app/src/", "tests/"],
"Talk": ["app/src/", "tests/"],
"User": ["app/src/", "tests/"],
"Client": ["app/src/", "tests/"],
"Apikey": ["app/src/", "tests/"],
"View": ["app/src/", "tests/"]
}
},
"config": {
"platform": {
"php": "7.3.2"
},
"preferred-install": "dist",
"sort-packages" : true,
"optimize-autoloader" : true
},
"minimum-stability": "stable",
"require": {
"guzzlehttp/guzzle": "^6.2.1",
"monolog/monolog": "^1.21",
"org_heigl/daterange": "^1.1",
"predis/predis": "^0.8",
"slim/slim": "^2.4",
"slim/views": "^0.1",
"symfony/form": "^2.8",
"symfony/validator": "^2.8",
"symfony/security-csrf": "^2.8",
"symfony/twig-bridge": "^2.8",
"twig/twig": "^1.15"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^1.0",
"phpunit/phpunit": "^8.0",
"roave/security-advisories": "dev-master",
"sensiolabs/security-checker": "^5.0",
"squizlabs/php_codesniffer": "^3.4"
},
"scripts": {
"test": "phpunit -c . tests/",
"lint": "parallel-lint --exclude vendor .",
"sniff": "phpcs --standard='PSR2' --ignore=**/config.php,**/database.php,vendor,tests/bootstrap.php --extensions=php --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"
]
}
}