-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 2.47 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
{
"name": "jafaripur/php-microservice",
"type" : "library",
"description": "Microservice server and client.",
"keywords": ["microservice", "amqp", "rabbitmq"],
"license": "MIT",
"minimum-stability" : "dev",
"prefer-stable": true,
"readme": "README.md",
"authors": [
{
"name": "Araz J",
"email": "[email protected]",
"homepage": "https://jafaripur.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/jafaripur/php-microservice/issues",
"source": "https://github.com/jafaripur/php-microservice",
"docs": "https://github.com/jafaripur/php-microservice/blob/master/README.md"
},
"require": {
"php": "^8.1",
"enqueue/amqp-bunny": "^0.10.9",
"enqueue/amqp-ext": "^0.10.9",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"yiisoft/injector": "^1.0",
"yiisoft/json": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"overtrue/phplint": "^4.0",
"phpunit/phpunit": "^9.4",
"vimeo/psalm": "^4.18"
},
"suggest": {
"jafaripur/php-microservice-application-symfony": "Sample microservice application template using this library with Symfony framework",
"jafaripur/php-microservice-application": "Sample microservice application template using this library with Spiral framework",
"jafaripur/php-microservice-application-yii3": "Sample microservice application template using this library with Yii3 framework",
"jafaripur/php-microservice-application-yii2": "Sample microservice application template using this library with Yii2 framework",
"ext-amqp": "Using native AMQP wrapper.",
"ext-msgpack": "Using for msgpack for payload serialize and unserialize."
},
"scripts": {
"post-install-cmd": [
"php -r \"if (!file_exists('phpunit.xml')) copy('phpunit.xml.dist', 'phpunit.xml');\""
]
},
"autoload": {
"psr-4": { "Araz\\MicroService\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Araz\\MicroService\\Tests\\": "tests/" }
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}