Skip to content

Commit 5ac5ff3

Browse files
authored
Merge pull request #2 from karriereat/review
Align composer.json with other projects, clean .gitignore
2 parents 2fb36a6 + 198f422 commit 5ac5ff3

File tree

2 files changed

+25
-28
lines changed

2 files changed

+25
-28
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
vendor/
2-
.idea/

composer.json

Lines changed: 25 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,28 @@
11
{
2-
"name": "karriere/json-decoder",
3-
"description": "",
4-
"authors": [
5-
{
6-
"name": "Johannes Pichler",
7-
"email": "johannes.pichler@karriere.at",
8-
"role": "Maintainer"
2+
"name": "karriere/json-decoder",
3+
"description": "JsonDecoder implementation that allows you to convert your JSON data into PHP class objects",
4+
"keywords": ["json", "decoder"],
5+
"license": "Apache-2.0",
6+
"authors": [
7+
{
8+
"name": "Johannes Pichler",
9+
"email": "johannes.pichler@karriere.at",
10+
"role": "Maintainer"
11+
}
12+
],
13+
"autoload": {
14+
"psr-4": {
15+
"Karriere\\JsonDecoder\\": "src/"
16+
}
17+
},
18+
"require": {
19+
"php": ">=5.6"
20+
},
21+
"require-dev": {
22+
"karriere/code-quality": "^3.0"
23+
},
24+
"scripts": {
25+
"test": "vendor/bin/phpspec run",
26+
"lint": "vendor/bin/phpcs src/ --standard=PSR2"
927
}
10-
],
11-
"keywords": [
12-
],
13-
"license": "Apache-2.0",
14-
"require": {
15-
"php": ">=5.6"
16-
},
17-
"autoload": {
18-
"psr-4": {
19-
"Karriere\\JsonDecoder\\": "src/"
20-
}
21-
},
22-
"minimum-stability": "stable",
23-
"scripts": {
24-
"test": "vendor/bin/phpspec run",
25-
"lint": "vendor/bin/phpcs src/ --standard=PSR2"
26-
},
27-
"require-dev": {
28-
"karriere/code-quality": "^3.0"
29-
}
3028
}

0 commit comments

Comments
 (0)