-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
83 lines (83 loc) · 2.14 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
{
"name": "sculptor-devops/installer",
"description": "Sculptor Devops Installer",
"keywords": [
"framework",
"laravel",
"laravel zero",
"console",
"cli"
],
"homepage": "https://github.com/sculptor-devops",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/sculptor-devops/installer/issues",
"source": "https://github.com/sculptor-devops/installer"
},
"authors": [
{
"name": "Alessandro Cappellozza",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-posix": "*",
"illuminate/database": "^8.40",
"illuminate/log": "^8.0",
"laminas/laminas-text": "^2.8",
"laravel-zero/framework": "^8.8",
"nunomaduro/termwind": "^1.14",
"sculptor-devops/foundation": "^0.3.1",
"symfony/yaml": "^6.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.4.3",
"nunomaduro/larastan": "^0.7.12",
"pestphp/pest": "^1.3",
"phpmd/phpmd": "^2.10",
"phpstan/phpstan": "^0.12.99",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Sculptor\\": "src/"
},
"files": [
"src/Constants.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["installer"],
"scripts": {
"test": [
"./vendor/bin/phpunit --testdox"
],
"phpcs": [
"./vendor/bin/phpcs --standard=phpcs.xml ./src"
],
"phpcs-fix": [
"./vendor/bin/phpcbf --standard=phpcs.xml ./src"
],
"phpmd": [
"./vendor/bin/phpmd src text phpmd.xml"
],
"phpstan": [
"./vendor/bin/phpstan analyse src --level 8"
]
}
}