Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit a853f41

Browse files
author
Petr Knap
committed
Fully separated development and production version
1 parent 29a8d9d commit a853f41

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/tests export-ignore
2+
/.gitattributes export-ignore
3+
/.gitignore export-ignore
4+
/phpunit.xml export-ignore
5+
/VERSIONING.md export-ignore

composer.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@
1414
"config": {
1515
"preferred-install": "dist",
1616
"platform": {
17-
"php": "5.3.3"
17+
"php": "5.3.3",
18+
"ext-dom": true
1819
}
1920
},
2021
"require": {
2122
"php": ">=5.3.3"
2223
},
2324
"require-dev": {
24-
"phpunit/phpunit": "4.*"
25+
"phpunit/phpunit": "^4.8"
2526
},
2627
"scripts": {
2728
"tests/": [
@@ -33,7 +34,11 @@
3334
},
3435
"autoload": {
3536
"psr-4": {
36-
"PetrKnap\\Php\\Enum\\": "src/Enum",
37+
"PetrKnap\\Php\\Enum\\": "src/Enum"
38+
}
39+
},
40+
"autoload-dev": {
41+
"psr-4": {
3742
"PetrKnap\\Php\\Enum\\Test\\": "tests/Enum"
3843
}
3944
}

0 commit comments

Comments
 (0)