forked from keymanapp/keyman.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
24 lines (24 loc) · 888 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
{
"name": "keymanapi/keyman.com",
"require": {
"sentry/sdk": "^2.1",
"php-http/curl-client": "^2.1",
"erusev/parsedown-extra": "^0.8.1",
"erusev/parsedown": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^9.2"
},
"scripts": {
"test": "vendor\\bin\\phpunit --testdox",
"check-links": [
"Composer\\Config::disableProcessTimeout",
"npx broken-link-checker http://keyman.com.localhost --ordered --recursive --host-requests 10 -e --filter-level 3 --exclude '*/donate'"
],
"check-docker-links": [
"Composer\\Config::disableProcessTimeout",
"npx broken-link-checker http://localhost:8053 --ordered --recursive --host-requests 10 -e --filter-level 3 --exclude '*/donate'"
],
"lint": "find . -name '*.php' | grep -v '/vendor/' | xargs -n 1 -d '\\n' php -l"
}
}