Skip to content

Commit e6678f1

Browse files
committed
initial commit
0 parents  commit e6678f1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+3084
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea/
2+
vendor/
3+
test.php
4+
.phpunit.cache
5+

composer.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "aternos/almost-json",
3+
"description": "Parse all those weird things that should be JSON but someone decided to add weird quirks",
4+
"type": "library",
5+
"require-dev": {
6+
"phpunit/phpunit": "^12.0"
7+
},
8+
"license": "MIT",
9+
"autoload": {
10+
"psr-4": {
11+
"Aternos\\PhpAlmostJson\\": "src/"
12+
}
13+
},
14+
"autoload-dev": {
15+
"psr-4": {
16+
"Tests\\": "tests/"
17+
}
18+
},
19+
"authors": [
20+
{
21+
"name": "Kurt Thiemann",
22+
"email": "[email protected]"
23+
}
24+
],
25+
"require": {
26+
"ext-mbstring": "*"
27+
}
28+
}

0 commit comments

Comments
 (0)