Skip to content

Commit 560e552

Browse files
committed
Improve package requirements, default formatting
1 parent cdd434c commit 560e552

File tree

2 files changed

+32
-24
lines changed

2 files changed

+32
-24
lines changed

.editorconfig

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ charset = utf-8
99
trim_trailing_whitespace = true
1010
insert_final_newline = true
1111

12+
[*.{yml,json}]
13+
indent_style = space
14+
indent_size = 2
15+
1216
[*.md]
1317
trim_trailing_whitespace = false
14-
15-
[*.yml]
16-
indent_style = space

composer.json

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
11
{
2-
"name" : "checkfront/checkfront",
3-
"description" : "Wrapper library for using the Checkfront API",
4-
"version": "3.0.1",
5-
"homepage" : "https://github.com/htmlgraphic/PHP-SDK",
6-
"license" : "MIT",
7-
"keywords": ["checkfront", "bookings", "travel", "check", "front"],
8-
"authors" : [
9-
{
10-
"name" : "Jason Gegere",
11-
"email" : "jason@htmlgraphic.com",
12-
"homepage" : "http://htmlgraphic.com"
13-
}
14-
],
15-
"require": {
16-
"php": ">=5.3"
17-
},
18-
"autoload": {
19-
"psr-0": {
20-
"Checkfront": "lib/"
21-
}
22-
}
2+
"name" : "checkfront/checkfront",
3+
"description" : "Wrapper library for using the Checkfront API",
4+
"version": "3.0.1",
5+
"dist": {
6+
"url": "https://github.com/htmlgraphic/Checkfront-PHP-SDK/archive/master.zip",
7+
"type": "zip"
8+
},
9+
"homepage" : "https://github.com/htmlgraphic/PHP-SDK",
10+
"license" : "MIT",
11+
"keywords": [
12+
"Checkfront",
13+
"bookings",
14+
"travel",
15+
"check",
16+
"front"
17+
],
18+
"require": {
19+
"php": ">=5.3",
20+
"ext-curl": "*"
21+
},
22+
"require-dev": {
23+
"phpunit/phpunit": "^5.7.9 || ^6.4.3"
24+
},
25+
"autoload": {
26+
"psr-0": {
27+
"Checkfront": "lib/"
28+
}
29+
}
2330
}

0 commit comments

Comments
 (0)