Skip to content

Commit ad09f12

Browse files
committedJul 17, 2014
Add composer config, and ignore vendor
1 parent 3db6fc2 commit ad09f12

File tree

3 files changed

+218
-0
lines changed

3 files changed

+218
-0
lines changed
 

Diff for: ‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ puphpet
22
VagrantFile
33
html
44
.vagrant
5+
vendor

Diff for: ‎composer.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "PHP Developer Example",
3+
"description": "Example code that goes along with: https://www.gitbook.io/book/jeichorn/being-a-php-developer-the-nuts-and-bolts",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Joshua Eichorn",
8+
"email": "josh@bluga.net"
9+
}
10+
],
11+
"require": {
12+
"guzzlehttp/guzzle": "4.*",
13+
"aura/web": "2.0.*@dev"
14+
},
15+
"autoload": {
16+
"psr-4": {
17+
"jeichorn\\DevExample\\": "src/DevExample"
18+
}
19+
}
20+
}

Diff for: ‎composer.lock

+197
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)