-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
82 lines (82 loc) · 2.63 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
{
"name": "mep-agency/web-toolkit",
"description": "A set of tools to create new websites easily",
"authors": [
{
"name": "Marco Lipparini",
"email": "[email protected]"
},
{
"name": "MEP Development Team",
"homepage": "https://www.mep.it"
}
],
"require": {
"aws/aws-sdk-php": "^3.185",
"easycorp/easyadmin-bundle": "^4.0",
"ext-yaml": "*",
"knplabs/doctrine-behaviors": "^2.2",
"meteo-concept/hcaptcha-bundle": "^3.0",
"nette/utils": "^3.2",
"nyholm/psr7": "^1.4",
"php": "^8.1",
"phpseclib/phpseclib": "~3.0",
"renoki-co/php-helm": "^1.6",
"renoki-co/php-k8s": "^3.1",
"symfony/config": "5.4.*",
"symfony/console": "5.4.*",
"symfony/dependency-injection": "5.4.*",
"symfony/finder": "5.4.*",
"symfony/mailer": "5.4.*",
"symfony/process": "5.4.*",
"symfony/security-bundle": "5.4.*",
"symfony/serializer": "5.4.*",
"symfony/translation": "5.4.*",
"symfony/validator": "5.4.*",
"tinify/tinify": "^1.5"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "*",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.6.8",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.12.8",
"sensio/framework-extra-bundle": "^6.1",
"symplify/easy-coding-standard": "^10.0",
"symplify/monorepo-builder": "^10.0",
"symplify/phpstan-rules": "^10.0"
},
"autoload": {
"psr-4": {
"Mep\\MepWebToolkitK8sCli\\": "composer/packages/web-toolkit-k8s-cli/src",
"Mep\\MonorepoUtils\\": "composer/packages/monorepo-utils/src",
"Mep\\WebToolkitBundle\\": "composer/packages/web-toolkit-bundle/src"
}
},
"replace": {
"mep-agency/monorepo-utils": "self.version",
"mep-agency/web-toolkit-bundle": "self.version",
"mep-agency/web-toolkit-k8s-cli": "self.version"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"check": [
"@rector",
"@ecs",
"@phpstan"
],
"full-check": [
"@check",
"yarn lint"
],
"ecs": "php vendor/bin/ecs check",
"ecs-fix": "php vendor/bin/ecs check --fix",
"rector": "php vendor/bin/rector process --dry-run",
"rector-fix": "php vendor/bin/rector process",
"phpstan": "php vendor/bin/phpstan analyse --memory-limit=-1"
}
}