-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 2.64 KB
/
composer.json
File metadata and controls
94 lines (94 loc) · 2.64 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
{
"name": "premierstacks/phpstan-stack",
"description": "premierstacks phpstan stack",
"type": "library",
"keywords": [
"tomchochola",
"tomaschochola",
"Tomas Chochola",
"Tomáš Chochola",
"premierstacks",
"Premierstacks",
"phpstan-stack"
],
"homepage": "https://github.com/premierstacks/phpstan-stack",
"readme": "./README.md",
"license": "CC-BY-ND-4.0",
"authors": [
{
"name": "Tomáš Chochola",
"email": "chocholatom1997@gmail.com",
"homepage": "https://github.com/tomchochola",
"role": "Author"
}
],
"support": {
"email": "chocholatom1997@gmail.com",
"issues": "https://github.com/premierstacks/phpstan-stack/issues",
"source": "https://github.com/premierstacks/phpstan-stack.git",
"docs": "https://github.com/premierstacks/phpstan-stack"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/tomchochola"
}
],
"require": {
"php": "^8.3.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.32",
"phpstan/phpstan-beberlei-assert": "^2.0.2",
"phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpstan/phpstan-dibi": "^2.0.0",
"phpstan/phpstan-doctrine": "^2.0.11",
"phpstan/phpstan-mockery": "^2.0.0",
"phpstan/phpstan-nette": "^2.0.6",
"phpstan/phpstan-phpunit": "^2.0.8",
"phpstan/phpstan-strict-rules": "^2.0.7",
"phpstan/phpstan-symfony": "^2.0.8",
"phpstan/phpstan-webmozart-assert": "^2.0.0"
},
"require-dev": {
"roave/security-advisories": "@dev"
},
"autoload": {
"psr-4": {
"Premierstacks\\PhpstanStack\\": "./src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
},
"audit": {
"abandoned": "fail"
},
"platform": {
"php": "8.4.13"
},
"platform-check": true,
"process-timeout": 0
},
"scripts": {
"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": "",
"lint:php-cs-fixer": "",
"stan:phpstan": "",
"start:development": "",
"start:coverage": "",
"test:phpunit": "",
"post-install-cmd": "@cache:clear",
"post-update-cmd": "@cache:clear",
"cache:clear": ""
}
}