-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.6 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 2.6 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
{
"authors": [
{
"email": "chocholatom1997@gmail.com",
"homepage": "https://github.com/tomchochola",
"name": "Tomáš Chochola",
"role": "Author"
}
],
"autoload": {
"psr-4": {
"Premierstacks\\PhpCsFixerStack\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "./tests"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"audit": {
"abandoned": "fail"
},
"platform": {
"php": "8.4.13"
},
"platform-check": true,
"process-timeout": 0,
"sort-packages": true
},
"description": "premierstacks php cs fixer stack",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/tomchochola"
}
],
"homepage": "https://github.com/premierstacks/php-cs-fixer-stack",
"keywords": [
"tomchochola",
"tomaschochola",
"Tomas Chochola",
"Tomáš Chochola",
"premierstacks",
"php-cs-fixer-stack"
],
"license": "CC-BY-ND-4.0",
"minimum-stability": "dev",
"name": "premierstacks/php-cs-fixer-stack",
"prefer-stable": true,
"readme": "./README.md",
"repositories": [
{
"no-api": true,
"type": "vcs",
"url": "https://github.com/premierstacks/phpstan-stack.git"
}
],
"require": {
"friendsofphp/php-cs-fixer": "^3.89.2",
"php": "^8.3.0"
},
"require-dev": {
"phpunit/phpunit": "^12.4.3",
"premierstacks/phpstan-stack": "@dev",
"roave/security-advisories": "@dev"
},
"scripts": {
"cache:clear": "",
"composer:audit": "@composer audit",
"composer:install": "@composer install",
"composer:platform": "@composer check-platform-reqs",
"composer:update": "@composer update --with-all-dependencies",
"composer:validate": "@composer validate --strict --no-check-all",
"dump:development": "@composer dump-autoload -o --dev --strict-psr",
"dump:production": "@composer dump-autoload -a --no-dev --strict-psr",
"fix:php-cs-fixer": "@php php-cs-fixer fix",
"lint:php-cs-fixer": "@php php-cs-fixer check",
"post-install-cmd": "@cache:clear",
"post-update-cmd": "@cache:clear",
"stan:phpstan": "@php phpstan analyse",
"start:coverage": "@php -S 0.0.0.0:8000 -t ./.phpunit.coverage/html",
"start:development": "",
"test:phpunit": "@php phpunit"
},
"support": {
"docs": "https://github.com/premierstacks/php-cs-fixer-stack",
"email": "chocholatom1997@gmail.com",
"issues": "https://github.com/premierstacks/php-cs-fixer-stack/issues",
"source": "https://github.com/premierstacks/php-cs-fixer-stack.git"
},
"type": "library"
}