init composer
This commit is contained in:
parent
a7021e190e
commit
0b75b559a0
3 changed files with 13 additions and 8 deletions
13
.gitignore
vendored
13
.gitignore
vendored
|
@ -5,7 +5,12 @@ thumbs
|
||||||
!lib/images
|
!lib/images
|
||||||
*.phar
|
*.phar
|
||||||
*.sqlite
|
*.sqlite
|
||||||
|
/lib/vendor/
|
||||||
|
|
||||||
|
#Composer
|
||||||
|
composer.phar
|
||||||
|
composer.lock
|
||||||
|
/vendor/
|
||||||
|
|
||||||
# Created by http://www.gitignore.io
|
# Created by http://www.gitignore.io
|
||||||
|
|
||||||
|
@ -20,13 +25,6 @@ Desktop.ini
|
||||||
# Recycle Bin used on file shares
|
# Recycle Bin used on file shares
|
||||||
$RECYCLE.BIN/
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
# Windows Installer files
|
|
||||||
*.cab
|
|
||||||
*.msi
|
|
||||||
*.msm
|
|
||||||
*.msp
|
|
||||||
|
|
||||||
|
|
||||||
### OSX ###
|
### OSX ###
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.AppleDouble
|
.AppleDouble
|
||||||
|
@ -35,7 +33,6 @@ $RECYCLE.BIN/
|
||||||
# Icon must ends with two \r.
|
# Icon must ends with two \r.
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
|
|
||||||
|
|
8
composer.json
Normal file
8
composer.json
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"type" : "project",
|
||||||
|
"license" : "GPL-2.0",
|
||||||
|
|
||||||
|
"require" : {
|
||||||
|
"php" : ">=5.4.8"
|
||||||
|
}
|
||||||
|
}
|
0
lib/vendor/.gitkeep
vendored
Normal file
0
lib/vendor/.gitkeep
vendored
Normal file
Reference in a new issue