-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (33 loc) · 878 Bytes
/
composer.json
File metadata and controls
34 lines (33 loc) · 878 Bytes
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
{
"name": "dsl-platform/client",
"type": "library",
"keywords": ["DSL", "DDD"],
"description": "DSL platform PHP client library",
"homepage": "https://dsl-platform.com/",
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"require": {
"php": ">=5.3.8",
"lib-curl": "*",
"ext-SimpleXML": "*",
"psr/log": "~1.0"
},
"autoload": {
"psr-0": {"NGS": "."}
},
"require-dev": {
"phpunit/phpunit": "~4.0.0",
"dsl-platform/install": "@dev"
},
"autoload-dev": {
"psr-0": {"": "Generated-PHP"}
},
"scripts": {
"post-install-cmd": [
"DslPlatform\\Installer::compilePhp",
"DslPlatform\\Installer::migrate",
"DslPlatform\\Installer::installRevenj",
"DslPlatform\\Installer::startRevenj"
]
}
}