-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from envato/develop
Launch version 2 of plugin.
- Loading branch information
Showing
50 changed files
with
6,542 additions
and
2,138 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
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,26 @@ | ||
{ | ||
"boss": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"eqnull": true, | ||
"es3": true, | ||
"expr": true, | ||
"immed": true, | ||
"noarg": true, | ||
"nonbsp": true, | ||
"onevar": true, | ||
"quotmark": "single", | ||
"trailing": true, | ||
"undef": true, | ||
"unused": true, | ||
|
||
"browser": true, | ||
|
||
"globals": { | ||
"_": false, | ||
"Backbone": false, | ||
"jQuery": false, | ||
"JSON": false, | ||
"wp": false | ||
} | ||
} |
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
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
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 |
---|---|---|
@@ -1,8 +1,22 @@ | ||
{ | ||
"require": { | ||
"php": ">=5.2.7" | ||
}, | ||
"require-dev": { | ||
"satooshi/php-coveralls": "dev-master" | ||
} | ||
"name": "envato/wp-envato-market", | ||
"description": "WordPress Theme & Plugin management for the Envato Market.", | ||
"type": "wordpress-plugin", | ||
"dist": { | ||
"url": "git@github.com:envato/wp-envato-market.git", | ||
"type": "git" | ||
}, | ||
"license": "GPL", | ||
"authors": [ | ||
{ | ||
"name": "Envato", | ||
"homepage": "https://envato.com" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.4.0" | ||
}, | ||
"require-dev": { | ||
"satooshi/php-coveralls": "^1.0" | ||
} | ||
} |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Submodule dev-lib
updated
23 files
+18 −0 | .editorconfig | |
+5 −2 | .eslintrc | |
+1 −0 | .jscsrc | |
+22 −22 | .jshintrc | |
+29 −16 | .travis.yml | |
+21 −0 | LICENSE.txt | |
+225 −103 | check-diff.sh | |
+14 −14 | class-wordpress-readme-parser.php | |
+2 −2 | diff-tools/class-git-patch-checker.php | |
+5 −4 | generate-markdown-readme | |
+46 −0 | install-pre-commit-hook.sh | |
+0 −0 | install-shared-pre-commit-hook.sh | |
+19 −0 | package.json | |
+0 −10 | phpcs.ruleset.xml | |
+30 −0 | phpcs.xml | |
+22 −3 | phpunit-plugin-bootstrap.php | |
+1 −0 | phpunit-plugin.xml | |
+14 −1 | pre-commit | |
+36 −8 | readme.md | |
+2 −0 | svn-push | |
+2 −2 | travis.after_script.sh | |
+17 −0 | travis.install.sh | |
+3 −1 | travis.script.sh |
Oops, something went wrong.