There was a problem fetching the pipeline stages.
added code coverage and the first real test
parent
658d51da
No related branches found
No related tags found
Pipeline
#184
passed
with stage
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- .gitlab-ci.yml 4 additions, 1 deletion.gitlab-ci.yml
- README.md 8 additions, 0 deletionsREADME.md
- composer.json 15 additions, 0 deletionscomposer.json
- src/DependencyInjector.php 25 additions, 1 deletionsrc/DependencyInjector.php
- src/DependencyInjectorException.php 3 additions, 0 deletionssrc/DependencyInjectorException.php
- tests/DependencyInjectorTest.php 14 additions, 0 deletionstests/DependencyInjectorTest.php
{ | ||
"name": "tflori/dependency-injector", | ||
"type": "library", | ||
"keywords": ["di", "dependency injection", "dependency injector", "dependency", "dependencies"], | ||
"description": "Easy and lightweight dependency injector", | ||
"licence": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Thomas Flori", | ||
"email": "thflori@gmail.com", | ||
"role": "Developer" | ||
} | ||
], | ||
"scripts": { | ||
"test": "phpunit", | ||
"test-wcc": "phpunit --coverage-html coverage" | ||
}, | ||
"version": "1.0.0-alpha", | ||
"require-dev": { | ||
"phpunit/phpunit": "5.5.*", | ||
... | ... |
src/DependencyInjectorException.php
0 → 100644
Please register or sign in to comment