-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
100 lines (100 loc) · 3.15 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"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": "[email protected]"
},
{
"name": "Alexandre Eher",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Codelicia\\Xulieta\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codelicia\\Xulieta\\Test\\": "tests/"
}
},
"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": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-dom": "*",
"composer-plugin-api": "^2.2",
"azjezz/psl": "^2.6.0",
"beberlei/assert": "^v3.3.2",
"composer/composer": "^2.5.7",
"doctrine/rst-parser": "^0.5.4",
"nikic/php-parser": "^v4.15.5",
"symfony/config": "^v6.3.0",
"symfony/console": "^v6.3.0",
"symfony/finder": "^v6.3.0",
"symfony/process": "^v6.3.0",
"webmozart/assert": "^1.11.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"infection/infection": "^0.27.0",
"maglnet/composer-require-checker": "^4.6.0",
"malukenho/mcbumpface": "^1.2.0",
"phpunit/phpunit": "^10.2.1",
"roave/security-advisories": "dev-master",
"staabm/annotate-pull-request-from-checkstyle": "^1.8.5",
"sebastian/diff": "5.0.0 as 3.0.2",
"vimeo/psalm": "^5.12.0"
},
"suggest": {
"codelicia/xulieta-json": "To have the JSON validator",
"codelicia/xulieta-php-lp": "To have the PHP Litterate Programming validator",
"codelicia/xulieta-sql": "To have the SQL validator"
},
"extra": {
"class": "Codelicia\\Xulieta\\AutoPlugin\\Register"
},
"scripts": {
"infection": "vendor/bin/infection",
"phpcbf": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpunit": "php -dzend.assertions=1 vendor/bin/phpunit",
"psalm": "vendor/bin/psalm",
"psalter": "vendor/bin/psalter --issues=all",
"require-checker": "vendor/bin/composer-require-checker check composer.json",
"test": [
"@phpcs",
"@phpunit",
"@psalm",
"@infection",
"@require-checker"
],
"post-package-install": "Codelicia\\Xulieta\\AutoPlugin\\Register::scan"
},
"bin": [
"bin/xulieta"
]
}