Skip to content

Commit

Permalink
Psr 4 compliance (#12)
Browse files Browse the repository at this point in the history
*  moving plugin to src/ directory and psr-4 compliant structure. Step I

*  adding .gitignore

*  psr-4 compliance. adapting README

*  psr-4 compliance. README fixes

*  psr-4 compliance. README fixes

* psr-4 comliance. adding composer.json and composer autoloading files

*  psr-4 compliance. removing old lib directory
  • Loading branch information
JoeZ99 authored Oct 3, 2016
1 parent dece336 commit 44627cc
Show file tree
Hide file tree
Showing 32 changed files with 1,674 additions and 924 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
*.pyc
.scrapy
test.db
*~
.DS_Store
/node_modules
wordforms_*.txt
media/*
node/node_modules
js-layers/classic/node_modules
*.diff
.sass-cache
/bower_components
ghostdriver.log
*.sublime-project
*.sublime-workspace
composer.lock
197 changes: 128 additions & 69 deletions README.md

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "doofinder/doofinder",
"type": "library",
"description": "Doofinder php API Client",
"keywords": ["search","api", "doofinder"],
"homepage": "https://github.com/doofinder/php-doofinder",
"license": "MIT",
"authors": [
{
"name": "JoeZ99",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-4": {
"Doofinder\\Api\\": "src/"
}
}
}
Loading

0 comments on commit 44627cc

Please sign in to comment.