Skip to content

Commit

Permalink
Add initial composer config
Browse files Browse the repository at this point in the history
  • Loading branch information
dcslagel committed Jan 30, 2020
1 parent 424a469 commit 28e8824
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
3 changes: 3 additions & 0 deletions prj/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.gitattributes export-ignore
.gitignore export-ignore
composer.json export-ignore
11 changes: 11 additions & 0 deletions prj/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

# Editors
.*.swp

# Composer
/vendor

# Las-Util-Php generated directories
/database
/uploads

36 changes: 36 additions & 0 deletions prj/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "las-util/las-util-php",
"description": "LAS (Log Ascii Standard) web utilities in php",
"license": "MIT",
"keywords": ["las-files", "log-ascii-standard", "welllogs", "well-logs"],
"homepage": "https://github.com/dcslagel/las-util-php",
"authors": [
{
"name": "DC Slagel",
"homepage": "https://github.com/dcslagel",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/dcslagel/las-util-php/issues"
},
"require": {
},
"require-dev": {
"filp/whoops": "^2.1",
"patricklouys/http": "^1.4"
},
"scripts": {
"listfiles": [
"find . -type f -ls",
"tree -d"
],
"phpcs": "phpcs -p -s",
"fix": "phpcbf"
},
"autoload": {
"psr-4": {
"Las\\": "src/"
}
}
}

0 comments on commit 28e8824

Please sign in to comment.