Skip to content

Commit

Permalink
Refactor createTemplateService and add a few automated tests
Browse files Browse the repository at this point in the history
Merge pull request #507 from anarute/add-first-unit-test
  • Loading branch information
jaragunde authored Sep 15, 2021
2 parents bbed28a + 21fd68d commit 37ee590
Show file tree
Hide file tree
Showing 73 changed files with 2,508 additions and 12,895 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ config/config.defaults
#minified JS and source maps
*.min.js
*.min.js.map

# Composer dependencies
vendor
21 changes: 21 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "igalia/phpreport",
"description": "phpreport",
"type": "project",
"license": "GNU GPLv3",
"autoload": {
"psr-4": {
"Phpreport\\Model\\": "model/",
"Phpreport\\Web\\": "web/"
}
},
"autoload-dev": {
"psr-4": {
"Phpreport\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "9.5.x-dev"
}
}
Loading

0 comments on commit 37ee590

Please sign in to comment.