2015-03-09 00:07:40 +01:00
|
|
|
{
|
|
|
|
"name" : "poodinis",
|
|
|
|
"description" : "A dependency injection framework with support for autowiring.",
|
|
|
|
"homepage": "http://lostmoment.com/open-source/poodinis",
|
|
|
|
"authors": ["Mike Bierlee"],
|
2015-05-01 01:18:58 +02:00
|
|
|
"copyright": "Copyright 2015 Mike Bierlee",
|
2015-03-09 00:07:40 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"configurations": [
|
|
|
|
{
|
2015-03-22 14:19:29 +01:00
|
|
|
"name": "library",
|
2015-03-09 00:07:40 +01:00
|
|
|
"targetType": "library"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "unittest",
|
|
|
|
"targetType": "executable",
|
|
|
|
"sourcePaths": [
|
|
|
|
"test"
|
|
|
|
],
|
|
|
|
"dflags": [
|
|
|
|
"-main"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "unittestVerbose",
|
|
|
|
"targetType": "executable",
|
|
|
|
"debugVersions": ["poodinisVerbose"],
|
|
|
|
"sourcePaths": [
|
|
|
|
"test"
|
|
|
|
],
|
|
|
|
"dflags-dmd": [
|
|
|
|
"-main"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "quickstartExample",
|
|
|
|
"description" : "Quickstart example from the Poodinis readme.",
|
|
|
|
"targetType": "executable",
|
|
|
|
"targetName": "quickstartExample",
|
|
|
|
"sourcePaths": [
|
|
|
|
"example/quickstart"
|
|
|
|
],
|
|
|
|
"importPaths": [
|
|
|
|
"source"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "qualifiersExample",
|
2015-05-01 01:25:54 +02:00
|
|
|
"description" : "Example where qualifiers are used.",
|
2015-03-09 00:07:40 +01:00
|
|
|
"targetType": "executable",
|
|
|
|
"targetName": "qualifiersExample",
|
|
|
|
"sourcePaths": [
|
|
|
|
"example/qualifiers"
|
|
|
|
],
|
|
|
|
"importPaths": [
|
|
|
|
"source"
|
|
|
|
]
|
2015-07-04 14:32:08 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "arrayCompletionExample",
|
|
|
|
"description" : "Example where an array is autowired with all registered instances.",
|
|
|
|
"targetType": "executable",
|
|
|
|
"targetName": "arrayCompletionExample",
|
|
|
|
"sourcePaths": [
|
|
|
|
"example/arraycompletion"
|
|
|
|
],
|
|
|
|
"importPaths": [
|
|
|
|
"source"
|
|
|
|
]
|
2015-03-09 00:07:40 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|