-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 KB
/
package.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
{
"name": "@nickshoe/asyncapi-php-template",
"version": "0.2.11-0",
"description": "AsyncAPI generator template for PHP applications.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickshoe/asyncapi-php-template.git"
},
"keywords": [
"asyncapi",
"php",
"generator",
"template"
],
"author": "Nicolò Scarpa <nicolo.scarpa@gmail.com> (https://github.com/nickshoe)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nickshoe/asyncapi-php-template/issues"
},
"homepage": "https://github.com/nickshoe/asyncapi-php-template#readme",
"generator": {
"renderer": "react",
"supportedProtocols": [
"amqp",
"kafka"
],
"parameters": {
"modelsNamespace": {
"description": "The namespace for the classes that represents the model.",
"default": "AsyncAPI\\Models",
"required": false
},
"servicesNamespace": {
"description": "The namespace for the classes that represents the services.",
"default": "AsyncAPI\\Services",
"required": false
},
"server": {
"description": "The server to be used for code generation output.",
"required": true
}
}
},
"dependencies": {
"@asyncapi/generator": "^1.9.18",
"@asyncapi/generator-react-sdk": "^0.2.25",
"@faker-js/faker": "^7.6.0",
"ejs": "^3.1.9"
},
"devDependencies": {}
}