-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 2.37 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
{
"name": "jafaripur/php-microservice-application-yii2",
"type" : "project",
"description": "php-microservice skeleton console application starter with Yii3 for microservice node",
"keywords": ["Yii2", "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-yii2/issues",
"source": "https://github.com/jafaripur/php-microservice-application-yii2",
"docs": "https://github.com/jafaripur/php-microservice-application-yii2/blob/master/README.md"
},
"require": {
"php" : "^8.1",
"yidas/yii2-composer-bower-skip": "~2.0.13",
"yiisoft/yii2": "~2.0.46",
"vlucas/phpdotenv": "^5.4",
"samdark/yii2-psr-log-target": "^1.1",
"monolog/monolog": "^2.3",
"spiral/roadrunner": "^2.7",
"sentry/sdk": "^3.1",
"jafaripur/php-microservice": "dev-master",
"jafaripur/php-microservice-user-service": "dev-master"
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/verify": "~1.1.0",
"codeception/specify": "~0.4.6",
"codeception/module-yii2": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-filesystem": "^2.0",
"friendsofphp/php-cs-fixer": "^3.5",
"overtrue/phplint": "^4.0"
},
"scripts": {
"post-update-cmd": [
"Micro\\Installer::postUpdate",
"Micro\\Installer::copyEnvFile"
],
"post-install-cmd": [
"Micro\\Installer::postUpdate",
"Micro\\Installer::copyEnvFile"
],
"post-create-project-cmd": [
"Micro\\Installer::postUpdate",
"Micro\\Installer::copyEnvFile"
],
"phplint": "vendor/bin/phplint"
},
"autoload": {
"psr-4": {
"Micro\\": "src"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"yiisoft/yii2-composer": true
}
}
}