-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
99 lines (99 loc) · 3.09 KB
/
composer.json
File metadata and controls
99 lines (99 loc) · 3.09 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
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
{
"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/"
}
},
"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.4.5",
"ext-dom": "*",
"composer-plugin-api": "^2.2",
"azjezz/psl": "^3.2.0",
"composer/composer": "^2.8.6",
"doctrine/rst-parser": "^0.5.6",
"nikic/php-parser": "^v5.4.0",
"symfony/config": "^v7.2.3",
"symfony/console": "^v7.2.1",
"symfony/finder": "^v7.2.2",
"symfony/process": "^v7.2.4",
"jetbrains/phpstorm-attributes": "^1.2"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"infection/infection": "^0.29.14",
"maglnet/composer-require-checker": "^4.16.1",
"malukenho/mcbumpface": "^1.2.0",
"phpunit/phpunit": "^12.0.8",
"roave/security-advisories": "dev-master",
"sebastian/diff": "7.0.0",
"staabm/annotate-pull-request-from-checkstyle": "^1.8.5",
"vimeo/psalm": "^6.9.1"
},
"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"
]
}