forked from contributte/anabelle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.45 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.45 KB
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
{
"name": "contributte/anabelle",
"type": "library",
"description": "JSON-RPC Api documentation generator",
"keywords": [
"json-rpc",
"json",
"rpc",
"api",
"documentation",
"docs",
"generator",
"readme"
],
"homepage": "https://contributte.org/anabelle",
"license": [
"MIT"
],
"support": {
"issues": "https://github.com/contributte/anabelle/issues"
},
"authors": [
{
"name": "Pavel Janda",
"homepage": "http://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Contributte\\Anabelle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contributte\\Anabelle\\Tests\\": "tests"
}
},
"require": {
"php": ">= 7.1.0",
"erusev/parsedown": "^1.6",
"symfony/console": "^3.0|^4.0|^5.0",
"matthiasmullie/minify": "^1.3",
"nette/utils": "^3.0"
},
"require-dev": {
"nette/tester": "^2.3",
"mockery/mockery": "^1.0",
"gamee/php-code-checker-rules": "^1.2"
},
"bin": [
"src/anabelle"
],
"scripts": {
"tests": "vendor/bin/tester tests",
"phpstan": "vendor/bin/phpstan analyse src -c vendor/gamee/php-code-checker-rules/phpstan.neon --level 7",
"phpcs": "vendor/bin/phpcs --standard=vendor/gamee/php-code-checker-rules/ruleset.xml --extensions=php,phpt --tab-width=4 --ignore=temp -sp src",
"phpcsfix": "vendor/bin/phpcbf --standard=vendor/gamee/php-code-checker-rules/ruleset.xml --extensions=php,phpt --tab-width=4 --ignore=temp -sp src"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}