-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·44 lines (44 loc) · 1.15 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.15 KB
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
{
"name": "lutvip19/php-microdata",
"license": "Apache-2.0 license",
"description": "Micro system of PHP8 with FFi",
"keywords": ["php8", "ffi", "cronjob", "microservices", "frankenphp"],
"require": {
"php": "^8.4",
"phpstreamserver/scheduler": "^0.8.1",
"predis/predis": "^3.4",
"php-amqplib/php-amqplib": "^3.7",
"meilisearch/meilisearch-php": "^1.16"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Helpers/helpers.php",
"app/Helpers/inject_php.php"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"phpcron:start": "php worker.php start",
"phpcron:stop": "php worker.php stop",
"frankenphp:start": "frankenphp start",
"frankenphp:stop": "frankenphp stop",
"start:all": [
"@phpcron:start",
"@frankenphp:start"
],
"stop:all": [
"@phpcron:stop",
"@frankenphp:stop"
]
},
"require-dev": {
"rector/rector": "^2.4"
}
}