-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
77 lines (77 loc) · 2.35 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
74
75
76
77
{
"name": "codelicia/xulieta",
"description": "Xulieta is a light php binary that lint documentation snippets",
"type": "composer-plugin",
"license": "MIT",
"homepage": "https://github.com/codelicia/xulieta",
"keywords": [
"check documentation",
"documentation",
"linter"
],
"authors": [
{
"name": "Jefersson Nathan",
"email": "malukenho.dev@gmail.com"
},
{
"name": "Alexandre Eher",
"email": "alexandre@eher.com.br"
}
],
"autoload": {
"psr-4": {
"Codelicia\\Xulieta\\": "src/"
}
},
"support": {
"issues": "https://github.com/codelicia/xulieta/issues",
"source": "https://github.com/codelicia/xulieta",
"rss": "https://github.com/codelicia/xulieta/releases.atom",
"forum": "https://codelicia.slack.com/"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"malukenho/mcbumpface": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "~7.4 || ~8.0",
"ext-dom": "*",
"beberlei/assert": "^v3.3.2",
"composer-plugin-api": "^2.2",
"doctrine/rst-parser": "^0.1.0 || ^0.3.0",
"nikic/php-parser": "^v4.13.2",
"symfony/config": "^v5.4.3",
"symfony/console": "^v5.4.3",
"symfony/finder": "^v5.4.3",
"symfony/process": "^v5.4.3",
"webmozart/assert": "^1.10.0"
},
"require-dev": {
"composer/composer": "^2.2.7",
"doctrine/coding-standard": "^8.2.0 || ^9.0.0",
"infection/infection": "^0.26.5",
"malukenho/mcbumpface": "^1.1.5",
"phpunit/phpunit": "^9.5.16",
"roave/security-advisories": "dev-master",
"staabm/annotate-pull-request-from-checkstyle": "^1.8.2",
"vimeo/psalm": "^4.21.0"
},
"suggest": {
"codelicia/xulieta-json": "To have the JSON validator",
"codelicia/xulieta-php-lp": "To have the PHP Litterate Programming validator"
},
"extra": {
"class": "Codelicia\\Xulieta\\AutoPlugin\\Register"
},
"scripts": {
"post-package-install": "Codelicia\\Xulieta\\AutoPlugin\\Register::scan"
},
"bin": [
"bin/xulieta"
]
}