This repository was archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 2.45 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
{
"name": "ajmichels/note-script",
"description": "A utility for note taking.",
"keywords": ["utility", "notes", "productivity", "markdown"],
"version": "0.2.1",
"license": "GPL-2.0",
"type": "project",
"authors": [
{
"name": "AJ Michels",
"email": "[email protected]",
"homepage": "http://ajmichels.com",
"role": "Developer"
}
],
"homepage": "http://ajmichels.github.io/note-script/",
"support": {
"issues": "https://github.com/ajmichels/note-script/issues",
"wiki": "https://github.com/ajmichels/note-script/wiki",
"source": "https://github.com/ajmichels/note-script/tarball/master",
"rss": "https://github.com/ajmichels/note-script/master.atom"
},
"autoload": {
"psr-4": {"NoteScript\\": "src/"}
},
"autoload-dev": {
"psr-4": {"NoteScript\\": "tests/"}
},
"scripts": {
"test": ["@lint", "@mess-detect", "@unit-test"],
"ci-test": ["@ci-lint", "@ci-mess-detect", "@ci-unit-test", "@ci-build-docs", "@ci-verify-docs"],
"unit-test": "vendor/bin/phpunit --colors=always --bootstrap=vendor/autoload.php tests",
"ci-unit-test": "vendor/bin/phpunit --bootstrap=vendor/autoload.php tests",
"lint": "vendor/bin/phpcs --standard=PSR2 --colors --runtime-set ignore_warnings_on_exit true --runtime-set ignore_errors_on_exit true src tests bin/note",
"ci-lint": "vendor/bin/phpcs --standard=PSR2 -n src tests bin/note",
"mess-detect": "vendor/bin/phpmd src,bin/note,tests text unusedcode,design,naming,controversial,codesize,cleancode --ignore-violations-on-exit",
"ci-mess-detect": "vendor/bin/phpmd src,bin/note,tests text unusedcode,design,naming,controversial,codesize,cleancode",
"build-docs": "bundle exec jekyll build -s docs -d docs/_site",
"ci-build-docs": "bundle exec jekyll build -q -t -s docs -d docs/_site",
"verify-docs": "bundle exec htmlproofer -t --log-level :debug --check-html docs/_site",
"ci-verify-docs": "bundle exec htmlproofer -t --log-level :warn --check-html docs/_site",
"serve-docs": "bundle exec jekyll serve -s docs -d docs/_site"
},
"require": {
"php": ">=7.1",
"monolog/monolog": "^1.17"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^7.5"
},
"bin": [
"bin/note"
]
}