Skip to content

Commit 1ba555d

Browse files
committed
upd to version 2.0.0
1 parent 56188e1 commit 1ba555d

20 files changed

+4485
-142
lines changed

codeception.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
paths:
2+
tests: tests
3+
output: tests/_output
4+
data: tests/_data
5+
support: tests/_support
6+
envs: tests/_envs
7+
actor_suffix: Tester
8+
extensions:
9+
enabled:
10+
- Codeception\Extension\RunFailed

composer.json

+24-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,40 @@
11
{
22
"name": "darkfriend/php7-xml",
33
"type": "library",
4-
"description": "PHP7 scripts helper for xml",
5-
"keywords": ["dev","xml","helper","darkfriend","development","php7","php"],
4+
"description": "PHP7 library for encode/decode xml",
5+
"license": "MIT",
6+
"keywords": [
7+
"dev",
8+
"xml",
9+
"helper",
10+
"xml encode",
11+
"xml decode",
12+
"xml to array",
13+
"array to xml",
14+
"darkfriend",
15+
"development",
16+
"php7",
17+
"php"
18+
],
619
"homepage": "https://github.com/darkfriend/php7-xml",
720
"authors": [
821
{
922
"name": "darkfriend",
10-
"email": "[email protected]"
23+
"email": "[email protected]",
24+
"homepage": "https://darkfriend.ru"
1125
}
1226
],
1327
"require": {
14-
"php":">=7.0"
28+
"php": ">=7.0"
1529
},
1630
"autoload": {
1731
"psr-4": {
1832
"darkfriend\\helpers\\": "src/"
1933
}
34+
},
35+
"require-dev": {
36+
"codeception/codeception": "^4.1",
37+
"codeception/module-phpbrowser": "^1.0.0",
38+
"codeception/module-asserts": "^1.0.0"
2039
}
21-
}
40+
}

0 commit comments

Comments
 (0)