Skip to content

Commit 61adcdf

Browse files
committed
upd to version 2.0.0
1 parent 8d2aa2c commit 61adcdf

20 files changed

+4501
-128
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

+23-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,39 @@
11
{
22
"name": "darkfriend/php5-xml",
33
"type": "library",
4-
"description": "PHP5 scripts helper for xml",
5-
"keywords": ["dev","xml","helper","darkfriend","development","php5","php"],
4+
"description": "PHP5 library for encode/decode xml",
5+
"keywords": [
6+
"dev",
7+
"xml",
8+
"helper",
9+
"xml encode",
10+
"xml decode",
11+
"xml to array",
12+
"array to xml",
13+
"darkfriend",
14+
"development",
15+
"php5",
16+
"php"
17+
],
618
"homepage": "https://github.com/darkfriend/php5-xml",
719
"authors": [
820
{
921
"name": "darkfriend",
10-
"email": "hi@darkfriend.ru"
22+
"email": "hi@darkfriend.ru",
23+
"homepage": "https://darkfriend.ru"
1124
}
1225
],
1326
"require": {
14-
"php":">=5.3"
27+
"php": ">=5.3"
1528
},
1629
"autoload": {
1730
"psr-4": {
1831
"darkfriend\\helpers\\": "src/"
1932
}
33+
},
34+
"require-dev": {
35+
"codeception/codeception": "^4.1",
36+
"codeception/module-phpbrowser": "^1.0.0",
37+
"codeception/module-asserts": "^1.0.0"
2038
}
21-
}
39+
}

0 commit comments

Comments
 (0)