-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
110 lines (110 loc) · 3.46 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "jafaripur/php-microservice-application-yii3",
"type" : "project",
"description": "php-microservice skeleton console application starter with Yii3 for microservice node",
"keywords": ["Yii3", "microservice", "amqp", "rabbitmq", "template", "microservice-starter"],
"license": "MIT",
"minimum-stability" : "dev",
"prefer-stable": true,
"authors": [
{
"name": "Araz J",
"email": "[email protected]",
"homepage": "https://jafaripur.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/jafaripur/php-microservice-application-yii3/issues",
"source": "https://github.com/jafaripur/php-microservice-application-yii3",
"docs": "https://github.com/jafaripur/php-microservice-application-yii3/blob/master/README.md"
},
"require": {
"php" : "^8.1",
"yiisoft/yii-console": "^1.0",
"yiisoft/yii-runner-console": "dev-master",
"yiisoft/config": "^1.0",
"yiisoft/definitions": "^1.0",
"yiisoft/di": "^1.0",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"yiisoft/yii-event": "^1.0",
"yiisoft/event-dispatcher": "^1.0",
"yiisoft/factory": "^1.0",
"yiisoft/injector": "^1.0",
"yiisoft/aliases": "^2.0",
"vlucas/phpdotenv": "^5.3",
"monolog/monolog": "^2.3",
"sentry/sdk": "^3.1",
"spiral/roadrunner": "^2.7",
"jafaripur/php-microservice": "dev-master",
"jafaripur/php-microservice-user-service": "dev-master"
},
"require-dev": {
"codeception/codeception": "^4.1.22",
"codeception/module-asserts": "^2.0",
"codeception/module-cli": "^2.0",
"phpunit/phpunit": "^9.4",
"friendsofphp/php-cs-fixer": "^3.5",
"overtrue/phplint": "^4.0",
"vimeo/psalm": "^4.18"
},
"autoload": {
"psr-4": {
"Araz\\Micro\\": "src"
}
},
"scripts": {
"post-update-cmd": [
"Araz\\Micro\\Installer::postUpdate",
"Araz\\Micro\\Installer::copyEnvFile"
],
"post-create-project-cmd": [
"Araz\\Micro\\Installer::copyEnvFile"
],
"psalm": "vendor/bin/psalm",
"phplint": "vendor/bin/phplint"
},
"extra": {
"config-plugin-options": {
"source-directory": "config"
},
"config-plugin": {
"params": [
"params.php",
"?params-local.php"
],
"app": "console/*.php",
"events-console": "events.php",
"providers-console": "providers.php",
"delegates-console": "delegates.php",
"bootstrap-console": "bootstrap.php"
},
"config-plugin-environments": {
"dev": {
"console": [
"$app",
"env/dev.app.php"
]
},
"prod": {
"console": [
"$app",
"env/prod.app.php"
]
}
},
"config": {
"sort-packages": true
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"yiisoft/config": true
},
"optimize-autoloader": true,
"classmap-authoritative": true
}
}