-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor createTemplateService and add a few automated tests
Merge pull request #507 from anarute/add-first-unit-test
- Loading branch information
Showing
73 changed files
with
2,508 additions
and
12,895 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,6 @@ config/config.defaults | |
#minified JS and source maps | ||
*.min.js | ||
*.min.js.map | ||
|
||
# Composer dependencies | ||
vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Oops, something went wrong.