forked from naala89/apiopenstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
102 lines (102 loc) · 2.81 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "apiopenstudio/apiopenstudio",
"description": "Build APIs faster & at less cost",
"keywords": [
"apiopenstudio",
"api",
"open",
"open-source",
"studio",
"low code",
"no code",
"lcnc",
"multi-tool",
"business logic",
"community"
],
"license": "NOASSERTION",
"type": "project",
"homepage": "https://www.apiopenstudio.com/",
"readme": "./README.md",
"authors": [
{
"name": "John Avery",
"homepage": "https://gitlab.com/john89"
}
],
"support": {
"email": "[email protected]",
"issues": "https://gitlab.com/apiopenstudio/apiopenstudio/-/issues",
"forum": "https://www.apiopenstudio.com/questions-answers/",
"wiki": "https://wiki.apiopenstudio.com/",
"source": "https://github.com/naala89/apiopenstudio"
},
"extra": {
"installer-types": [
"apiopenstudio-endpoint-package",
"apiopenstudio-output-package",
"apiopenstudio-processor-package",
"apiopenstudio-security-package"
],
"installer-paths": {
"includes/Endpoint/vendor/{$name}/": ["type:apiopenstudio-endpoint-package"],
"includes/Output/vendor/{$name}/": ["type:apiopenstudio-output-package"],
"includes/Processor/vendor/{$name}/": ["type:apiopenstudio-processor-package"],
"includes/Security/vendor/{$name}/": ["type:apiopenstudio-security-package"]
}
},
"bin": [
"bin/aos-install",
"bin/aos-modules",
"bin/aos-update"
],
"require": {
"ext-simplexml": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-libxml": "*",
"ext-dom": "*",
"adodb/adodb-php": "^5.20",
"mustangostang/spyc": "^0.6.2",
"jlawrence/eos": "^3.2",
"eloquent/pbkdf2-compat": "^1.0",
"guzzlehttp/guzzle": "^7.0",
"symfony/yaml": "^3.0",
"berlioz/php-doc": "^1.1",
"lcobucci/jwt": "^4.1",
"monolog/monolog": "^2.3",
"galbar/jsonpath": "^2.0",
"myclabs/deep-copy": "^1.11",
"nxp/math-executor": "^2.1",
"soapbox/laravel-formatter": "^3.1",
"selective/image-type": "^1.1",
"symfony/mailer": "*",
"league/flysystem": "*",
"oomphinc/composer-installers-extender": "^2.0",
"roave/better-reflection": "*",
"composer/composer": "^2.4"
},
"require-dev": {
"vlucas/phpdotenv": "^3",
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.2",
"codeception/module-filesystem": "^1.0",
"codeception/module-asserts": "^2.0",
"squizlabs/php_codesniffer": "^3.5",
"cebe/php-openapi": "^1.5"
},
"autoload": {
"psr-4": {
"ApiOpenStudio\\": "includes/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"oomphinc/composer-installers-extender": true,
"kylekatarnls/update-helper": true,
"kylekatarnls/update": true
}
}
}