-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 2.13 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
{
"name": "pseudo-su/php-service-template",
"description": "ReactPHP service-template",
"type": "project",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"ext-swoole": "*",
"php-amqplib/php-amqplib": "^2.12",
"slim/slim": "4.*"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4"
},
"scripts": {
"http-server:start": "@php bin/http-server.php",
"message-processor:start": "@php bin/message-processor.php",
"test": "php vendor/bin/phpunit",
"test:unit": "php vendor/bin/phpunit --testsuite Unit",
"test:integration": "php vendor/bin/phpunit --testsuite IntegrationWhitebox,IntegrationBlackbox",
"test:integration:whitebox": "php vendor/bin/phpunit --testsuite IntegrationWhitebox",
"test:integration:blackbox": "php vendor/bin/phpunit --testsuite IntegrationBlackbox",
"devstack:restart": [
"@devstack:stop",
"@devstack:start"
],
"devstack:start": "docker-compose up -d --remove-orphans devstack_app",
"devstack:start:rebuild": "docker-compose up -d --build --remove-orphans devstack_app",
"devstack:run": "docker-compose run devstack_cli",
"devstack:stop": "docker-compose down --remove-orphans",
"verify": [
"php vendor/bin/phpcs",
"php vendor/bin/psalm"
],
"verify:fix": [
"php vendor/bin/phpcbf",
"php vendor/bin/psalm"
],
"post-install-cmd": [
"@composer check-platform-reqs",
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer check-platform-reqs",
"@composer bin all update --ansi"
]
},
"config": {
"process-timeout": 0,
"platform": {
"php": "8.0"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Pseudo\\PhpServiceTemplate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pseudo\\PhpServiceTemplate\\Test\\": "test/"
}
}
}