-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.34 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "millancore/ladoc",
"description": "Console tool for explore Laravel Documentation",
"keywords": ["laravel", "php", "documentation", "console", "cli", "tool"],
"license": "MIT",
"authors": [
{
"name": "Juan Millan",
"email": "juanes14569@gmail.com"
}
],
"bin": [
"bin/ladoc"
],
"autoload": {
"psr-4": {
"Ladoc\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ladoc\\Tests\\" : "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-curl": "*",
"ext-libxml": "*",
"league/commonmark": "^2.4",
"nunomaduro/termwind": "^1.15",
"symfony/process": "^6.3",
"symfony/console": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"symfony/var-dumper": "^6.3",
"friendsofphp/php-cs-fixer": "^3.20",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"test": "phpunit",
"coverage": "phpunit --coverage-html coverage",
"cs": "php-cs-fixer fix src --rules=@PSR12 --dry-run --diff",
"cs-fix": "php-cs-fixer fix src --rules=@PSR12",
"phpstan": "phpstan analyse --no-progress --level=8 src tests"
}
}