Skip to content

Commit

Permalink
Phing release of v160629-RC.
Browse files Browse the repository at this point in the history
  • Loading branch information
raamdev committed Jun 29, 2016
1 parent 6ce77f4 commit a9a2bc4
Show file tree
Hide file tree
Showing 113 changed files with 1,648 additions and 3,940 deletions.
26 changes: 26 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
# Log files.
*.log text

# YAML files.
*.yml

# Property files.
*.properties text

# Translation files.
*.pot text

Expand Down Expand Up @@ -148,3 +154,23 @@
*.exe binary
*.sh text
*.so binary

# Archive ignores.
/assets/ export-ignore
/phings/ export-ignore
/tests/ export-ignore
/.git* export-ignore
/.tags export-ignore
/post-receive export-ignore
/.drone.yml export-ignore
/.drone.sec export-ignore
/.travis.yml export-ignore
/.coveralls.yml export-ignore
/.scrutinizer.yml export-ignore
/.build.props export-ignore
/build.xml export-ignore

# LFS storage locations.
/assets/** filter=lfs diff=lfs merge=lfs -text

# Custom code reinserted here via [custom] marker. Add your <custom></custom> comment markers here please.
2 changes: 2 additions & 0 deletions .gitchange
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1460135613
d0e05c36184f81b133761b71ca6ee0136be67409:5773b62de5a504.77683431
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
*~
*.bak

# Composer
vendor/

# Node
node_modules/
npm-debug.log
Expand Down Expand Up @@ -64,4 +67,4 @@ Icon?
# This list is for IntelliJ IDEA / PhpStorm `File Types` configuration. Some files we actually WANT to work with as part of a project.
# .sass-cache;.idea;*.ipr;*.iws;*.sublime-workspace;*.sublime-project;.git;CVS;.svn;_svn;.bzr;.hg;SCCS;RCS;$RECYCLE.BIN;Desktop.ini;Thumbs.db;ehthumbs.db;.Spotlight-V100;.AppleDouble;.LSOverride;.DS_Store;.Trashes;._*;.vagrant

# We also need to update the WebSharks™ Core `dirs_files::ignore()` method if this changes.
# Custom code reinserted here via [custom] marker. Add your <custom></custom> comment markers here please.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Comet Cache

Caching plugin for WordPress®.

Comet Cache™ Pro is a commercial plugin available at [http://cometcache.com](http://cometcache.com). The plugin is hosted here on a public Github repository in order to better faciliate community contributions from developers and users alike. If you have a suggestion, a bug report, or a patch for an issue, feel free to submit it here. We do ask, however, that if you are using the plugin on a live site that you please purchase a valid license from the [website](http://cometcache.com). We cannot provide support to anyone that does not hold a valid license key.
4 changes: 2 additions & 2 deletions comet-cache.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
Version: 160521
Version: 160629-RC
Text Domain: comet-cache
Plugin Name: Comet Cache
Network: true
Expand All @@ -14,4 +14,4 @@
if (!defined('WPINC')) {
exit('Do NOT access this file directly: '.basename(__FILE__));
}
require_once __DIR__.'/plugin.php';
require_once dirname(__FILE__).'/plugin.php';
66 changes: 66 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"name": "websharks/comet-cache",
"homepage": "https://github.com/websharks/comet-cache",
"description": "A popular caching plugin for WordPress.",
"keywords": [
"websharks",
"comet cache",
"wordpress",
"caching",
"cache"
],
"type": "library",
"license": "GPL-3.0+",
"authors": [{
"name": "websharks",
"homepage": "http://websharks-inc.com/",
"role": "company"
}, {
"name": "jaswsinc",
"homepage": "http://jaswsinc.com/",
"role": "developer"
}, {
"name": "raamdev",
"homepage": "https://raamdev.com/",
"role": "developer"
}],
"support": {
"source": "https://github.com/websharks/comet-cache",
"issues": "https://github.com/websharks/comet-cache/issues"
},
"require": {
"php": ">=5.4",
"websharks/wp-php-rv": "160504",
"websharks/sharkicons": "160221"
},
"require-dev": {
"package/bourbon": "4.2.3",
"websharks/wp-i18n-tools": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,

"autoload": {
"psr-4": {
"WebSharks\\CometCache\\Classes\\": "src/includes/classes/",
"WebSharks\\CometCache\\Traits\\": "src/includes/traits/",
"WebSharks\\CometCache\\Interfaces\\": "src/includes/interfaces/"
}
},
"config": {
"vendor-dir": "src/vendor",
"preferred-install": "dist"
},

"repositories": [{
"type": "package",
"package": {
"name": "package/bourbon",
"version": "4.2.3",
"dist": {
"url": "https://github.com/thoughtbot/bourbon/releases/download/v4.2.3/bourbon-v4.2.3.zip",
"type": "zip"
}
}
}]
}
Loading

0 comments on commit a9a2bc4

Please sign in to comment.