Skip to content

Commit 0b4440b

Browse files
committed
Adds tests
1 parent 5f85eb7 commit 0b4440b

File tree

5 files changed

+1580
-0
lines changed

5 files changed

+1580
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "quorum/dot-notation",
3+
"description": "Simple PHP Dot Notation Parser",
4+
"type": "library",
5+
"require": {
6+
"php": ">=7.1"
7+
},
8+
"require-dev": {
9+
"phpunit/phpunit": "7.*"
10+
},
11+
"license": "MIT",
12+
"authors": [
13+
{
14+
"name": "Jesse Donat",
15+
"email": "[email protected]"
16+
}
17+
],
18+
"autoload": {
19+
"psr-4": {
20+
"Quorum\\DotNotation\\": "src/"
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)