Skip to content

Commit 61df7f0

Browse files
committed
tests unitaires
1 parent 22737ab commit 61df7f0

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

composer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "gnieark/tplblock",
3+
"description": "A simple PHP templating library",
4+
"type": "library",
5+
"require": {
6+
"php": ">=7.4",
7+
"ext-mbstring": "*"
8+
},
9+
"require-dev": {
10+
"phpunit/phpunit": "^9.0"
11+
},
12+
"autoload": {
13+
"files": ["TplBlock.php"]
14+
},
15+
"autoload-dev": {
16+
"psr-4": {
17+
"TplBlock\\Tests\\": "test/"
18+
}
19+
},
20+
"minimum-stability": "stable",
21+
"license": "MIT"
22+
}

0 commit comments

Comments
 (0)