mirror of
https://github.com/mbierlee/mirage-injector.git
synced 2024-11-14 21:04:00 +01:00
Add project skeleton
This commit is contained in:
commit
401a60cab3
16
.gitignore
vendored
Normal file
16
.gitignore
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
.dub
|
||||
docs.json
|
||||
__dummy.html
|
||||
docs/
|
||||
/poodinis-mirage-config-injector
|
||||
poodinis-mirage-config-injector.so
|
||||
poodinis-mirage-config-injector.dylib
|
||||
poodinis-mirage-config-injector.dll
|
||||
poodinis-mirage-config-injector.a
|
||||
poodinis-mirage-config-injector.lib
|
||||
poodinis-mirage-config-injector-test-*
|
||||
*.exe
|
||||
*.o
|
||||
*.obj
|
||||
*.lst
|
||||
*.pdb
|
19
LICENSE.txt
Normal file
19
LICENSE.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
Copyright (c) 2022 Mike Bierlee
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
7
README.md
Normal file
7
README.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Mirage Config injector for Poodinis
|
||||
|
||||
Version 0.0.0
|
||||
Copyright 2022 Mike Bierlee
|
||||
Licensed under the terms of the MIT license - See [LICENSE.txt](LICENSE.txt)
|
||||
|
||||
More will follow...
|
12
dub.json
Normal file
12
dub.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"name": "poodinis-mirage-config-injector",
|
||||
"description": "A Poodinis value injector for reading config files using Mirage Config",
|
||||
"authors": ["Mike Bierlee"],
|
||||
"copyright": "Copyright © 2022, Mike Bierlee",
|
||||
"license": "mit",
|
||||
"targetType": "library",
|
||||
"dependencies": {
|
||||
"poodinis": "~>8.1.3",
|
||||
"mirage-config": "~>1.0.0"
|
||||
}
|
||||
}
|
7
dub.selections.json
Normal file
7
dub.selections.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"mirage-config": "1.0.0",
|
||||
"poodinis": "8.1.3"
|
||||
}
|
||||
}
|
8
source/poodinis/valueinjector/mirage.d
Normal file
8
source/poodinis/valueinjector/mirage.d
Normal file
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
* Poodinis Dependency Injection Framework
|
||||
* Copyright 2022 Mike Bierlee
|
||||
* This software is licensed under the terms of the MIT license.
|
||||
* The full terms of the license can be found in the LICENSE file.
|
||||
*/
|
||||
|
||||
module poodinis.valueinjector.mirage;
|
Loading…
Reference in a new issue