-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
97 lines (97 loc) · 2.66 KB
/
composer.json
File metadata and controls
97 lines (97 loc) · 2.66 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
97
{
"name": "lts/php-qa-ci",
"description": "Simple PHP QA pipeline and scripts. Largely just a collection of dependencies with configuration and scripts to run them together",
"license": "MIT",
"type": "composer-plugin",
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-openssl": "*",
"ext-tokenizer": "*",
"ext-xml": "*",
"composer-plugin-api": "^2.0",
"ergebnis/composer-normalize": "^2.42",
"funkyproject/reflection-file": "@stable",
"php-parallel-lint/php-console-color": "@stable",
"php-parallel-lint/php-parallel-lint": "@stable",
"phpstan/extension-installer": "@stable",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "@stable",
"phpunit/phpunit": "@stable",
"sqlftw/sqlftw": "^0.1.17",
"thecodingmachine/safe": "^3.3.0"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"replace": {
"phpstan/phpstan": "*"
},
"suggest": {
"nunomaduro/larastan": "Laravel specific checks (PHPStan Wrapper)",
"phploc/phploc": "get some stats, not currently compatible with latest symfony",
"phpstan/phpstan-deprecation-rules": "Checks for deprecated functions and methods",
"phpstan/phpstan-doctrine": "Adds checks for Doctrine",
"phpstan/phpstan-mockery": "Prevents Mockery from failing on Stan",
"phpstan/phpstan-phpunit": "Adds checks for PHPUnit tests",
"phpstan/phpstan-symfony": "Symfony specific checks",
"sllh/composer-versions-check": "To be brought back in when there is a PHP8 version..."
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"LTS\\PHPQA\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"LTS\\PHPQA\\Tests\\": [
"tests/"
]
}
},
"bin": [
"bin/composer-require-checker",
"bin/infection",
"bin/mdlinks",
"bin/php-cs-fixer",
"bin/phpstan",
"bin/phpunit-check-annotation",
"bin/psr4-validate",
"bin/qa"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"bin-dir": "bin",
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"extra": {
"class": [
"LTS\\PHPQA\\ComposerPlugin\\PhiveUpdatePlugin",
"LTS\\PHPQA\\ComposerPlugin\\SkillsDeployPlugin",
"LTS\\PHPQA\\ComposerPlugin\\PhpStanGuardPlugin"
],
"phpstan": {
"includes": [
"rules-default.neon"
]
}
},
"scripts": {
"post-install-cmd": [
"./scripts/tool-install.bash"
],
"post-update-cmd": [
"./scripts/tool-install.bash update"
]
}
}