Skip to content

Commit 16f2b81

Browse files
committed
Merge pull request #6 from loadsys/f/updated-composer-installation
F/updated composer installation
2 parents 2edf355 + dc346b7 commit 16f2b81

2 files changed

Lines changed: 41 additions & 23 deletions

File tree

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# Unix-style newlines with a newline ending every file
4+
[*]
5+
end_of_line = lf
6+
insert_final_newline = true
7+
8+
# Tab indentation (no size specified)
9+
[{*.js,*.php,*.ctp}]
10+
indent_style = tab
11+
12+
# Matches the exact files package.json and .travis.yml
13+
[{package.json,.travis.yml,composer.json,*.yaml,*.yml}]
14+
indent_style = space
15+
indent_size = 2

composer.json

Lines changed: 26 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
11
{
2-
"name": "loadsys/config-read",
3-
"description": "A CakePHP plugin that provides a Shell to read an app's Configure vars from the command line.",
4-
"type": "cakephp-plugin",
5-
"keywords": [
6-
"cakephp",
7-
"configure",
8-
"shell"
9-
],
10-
"homepage": "https://github.com/loadsys/CakePHP-ConfigReadShell",
11-
"license": "MIT",
12-
"authors": [
13-
{
14-
"name": "Brian Porter",
15-
"email": "beporter@users.sourceforge.net"
16-
}
17-
],
18-
"support": {
19-
"issues": "https://github.com/loadsys/CakePHP-ConfigReadShell/issues",
20-
"source": "https://github.com/loadsys/CakePHP-ConfigReadShell"
21-
},
22-
"require": {
23-
"composer/installers": "*"
24-
}
2+
"name": "loadsys/config-read",
3+
"description": "A CakePHP plugin that provides a Shell to read an app's Configure vars from the command line.",
4+
"type": "cakephp-plugin",
5+
"keywords": [
6+
"cakephp",
7+
"configure",
8+
"shell"
9+
],
10+
"homepage": "https://github.com/loadsys/CakePHP-ConfigReadShell",
11+
"license": "MIT",
12+
"authors": [
13+
{
14+
"name": "Brian Porter",
15+
"email": "beporter@users.sourceforge.net"
16+
}
17+
],
18+
"support": {
19+
"issues": "https://github.com/loadsys/CakePHP-ConfigReadShell/issues",
20+
"source": "https://github.com/loadsys/CakePHP-ConfigReadShell"
21+
},
22+
"require": {
23+
"composer/installers": "*"
24+
},
25+
"extra": {
26+
"installer-name": "ConfigRead"
27+
}
2528
}

0 commit comments

Comments
 (0)