-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.25 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "hypefactors/php-code-standards",
"description": "PHP CS Fixer configuration for Hypefactors",
"type": "composer-plugin",
"keywords": [
"php",
"hypefactors",
"cs-fixer"
],
"homepage": "https://hypefactors.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Hypefactors A/S",
"email": "support@hypefactors.com",
"homepage": "https://hypefactors.com"
}
],
"require": {
"php": "^8.4",
"composer-plugin-api": "^2.1",
"larastan/larastan": "^3.5",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-mockery": "^2.0",
"rector/rector": "^2.0",
"symplify/easy-coding-standard": "^12.4.3"
},
"require-dev": {
"composer/composer": "^2.5"
},
"autoload": {
"psr-4": {
"Hypefactors\\CodeStandards\\": "src/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"process-timeout": 0,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"class": "Hypefactors\\CodeStandards\\Plugin"
},
"minimum-stability": "stable"
}