-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.53 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
{
"name": "stolt/package-analyser",
"description": "The package analyser is a utility tool that analyses a PHP project/micro-package for its structure.",
"keywords": ["project", "package", "cli", "dev", "console", "tui"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Raphael Stolt",
"email": "raphael.stolt@gmail.com"
}
],
"require": {
"php": "^8.2",
"laravel-zero/framework": "^11.0",
"nunomaduro/termwind": "^2.0",
"symfony/yaml": "^7.1"
},
"require-dev": {
"laravel/pint": "^1.17",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.35",
"stolt/lean-package-validator": "^4.0.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": [
"bin/package-analyser"
],
"scripts": {
"test": "./vendor/bin/pest",
"test-coverage-html": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage --coverage-html=coverage-report",
"cs-fix": "./vendor/bin/pint -v",
"cs-lint": "./vendor/bin/pint --test",
"validate-gitattributes": "lean-package-validator validate"
}
}