-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
Showing
32 changed files
with
1,674 additions
and
924 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" | ||
} | ||
} | ||
} |
Oops, something went wrong.