Skip to content

Commit 84b68b2

Browse files
Use PSR-4 autoloading of existing classes; add remaining test files
1 parent 3ab8339 commit 84b68b2

21 files changed

+2323
-5
lines changed

.distignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
.git
3+
.gitignore
4+
.gitlab-ci.yml
5+
.editorconfig
6+
.travis.yml
7+
behat.yml
8+
circle.yml
9+
bin/
10+
features/
11+
utils/
12+
*.zip
13+
*.tar.gz

.editorconfig

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
# WordPress Coding Standards
5+
# https://make.wordpress.org/core/handbook/coding-standards/
6+
7+
root = true
8+
9+
[*]
10+
charset = utf-8
11+
end_of_line = lf
12+
insert_final_newline = true
13+
trim_trailing_whitespace = true
14+
indent_style = tab
15+
16+
[{.jshintrc,*.json,*.yml,*.feature}]
17+
indent_style = space
18+
indent_size = 2
19+
20+
[{*.txt,wp-config-sample.php}]
21+
end_of_line = crlf
22+
23+
[composer.json]
24+
indent_style = space
25+
indent_size = 4

.travis.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
sudo: false
2+
3+
language: php
4+
5+
notifications:
6+
email:
7+
on_success: never
8+
on_failure: change
9+
10+
branches:
11+
only:
12+
- master
13+
14+
cache:
15+
- composer
16+
- $HOME/.composer/cache
17+
18+
env:
19+
global:
20+
- PATH="$TRAVIS_BUILD_DIR/vendor/bin:$PATH"
21+
- WP_CLI_BIN_DIR="$TRAVIS_BUILD_DIR/vendor/bin"
22+
23+
matrix:
24+
include:
25+
- php: 7.1
26+
env: WP_VERSION=latest
27+
- php: 7.0
28+
env: WP_VERSION=latest
29+
- php: 5.6
30+
env: WP_VERSION=latest
31+
- php: 5.6
32+
env: WP_VERSION=trunk
33+
- php: 5.3
34+
env: WP_VERSION=latest
35+
36+
before_install:
37+
- phpenv config-rm xdebug.ini
38+
39+
install:
40+
- composer require wp-cli/wp-cli:dev-master
41+
- composer install
42+
- bash bin/install-package-tests.sh
43+
44+
before_script:
45+
- composer validate
46+
47+
script:
48+
- behat --format progress --strict

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (C) 2011-2017 WP-CLI Development Group (https://github.com/wp-cli/config-command/contributors)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
wp-cli/cache-command
2+
====================
3+
4+
Manage the object and transient caches.
5+
6+
[![Build Status](https://travis-ci.org/wp-cli/cache-command.svg?branch=master)](https://travis-ci.org/wp-cli/cache-command)
7+
8+
Quick links: [Using](#using) | [Installing](#installing) | [Contributing](#contributing)
9+
10+
## Using
11+
12+
This package implements the following commands:
13+
14+
### wp cache
15+
16+
Manage the object cache.
17+
18+
~~~
19+
wp cache
20+
~~~
21+
22+
Use a persistent object cache drop-in to persist cache values between requests.
23+
24+
**EXAMPLES**
25+
26+
# Set cache.
27+
$ wp cache set my_key my_value my_group 300
28+
Success: Set object 'my_key' in group 'my_group'.
29+
30+
# Get cache.
31+
$ wp cache get my_key my_group
32+
my_value
33+
34+
35+
36+
### wp transient
37+
38+
Manage transients.
39+
40+
~~~
41+
wp transient
42+
~~~
43+
44+
**EXAMPLES**
45+
46+
# Set transient.
47+
$ wp transient set sample_key "test data" 3600
48+
Success: Transient added.
49+
50+
# Get transient.
51+
$ wp transient get sample_key
52+
test data
53+
54+
# Delete transient.
55+
$ wp transient delete sample_key
56+
Success: Transient deleted.
57+
58+
# Delete expired transients.
59+
$ wp transient delete --expired
60+
Success: 12 expired transients deleted from the database.
61+
62+
# Delete all transients.
63+
$ wp transient delete --all
64+
Success: 14 transients deleted from the database.
65+
66+
## Installing
67+
68+
Installing this package requires WP-CLI v0.23.0 or greater. Update to the latest stable release with `wp cli update`.
69+
70+
Once you've done so, you can install this package with `wp package install wp-cli/cache-command`.
71+
72+
## Contributing
73+
74+
We appreciate you taking the initiative to contribute to this project.
75+
76+
Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.
77+
78+
### Reporting a bug
79+
80+
Think you’ve found a bug? We’d love for you to help us get it fixed.
81+
82+
Before you create a new issue, you should [search existing issues](https://github.com/wp-cli/cache-command/issues?q=label%3Abug%20) to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version.
83+
84+
Once you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please [create a new issue](https://github.com/wp-cli/cache-command/issues/new) with the following:
85+
86+
1. What you were doing (e.g. "When I run `wp post list`").
87+
2. What you saw (e.g. "I see a fatal about a class being undefined.").
88+
3. What you expected to see (e.g. "I expected to see the list of posts.")
89+
90+
Include as much detail as you can, and clear steps to reproduce if possible.
91+
92+
### Creating a pull request
93+
94+
Want to contribute a new feature? Please first [open a new issue](https://github.com/wp-cli/cache-command/issues/new) to discuss whether the feature is a good fit for the project.
95+
96+
Once you've decided to commit the time to seeing your pull request through, please follow our guidelines for creating a pull request to make sure it's a pleasant experience:
97+
98+
1. Create a feature branch for each contribution.
99+
2. Submit your pull request early for feedback.
100+
3. Include functional tests with your changes. [Read the WP-CLI documentation](https://wp-cli.org/docs/pull-requests/#functional-tests) for an introduction.
101+
4. Follow the [WordPress Coding Standards](http://make.wordpress.org/core/handbook/coding-standards/).
102+
103+
104+
*This README.md is generated dynamically from the project's codebase using `wp scaffold package-readme` ([doc](https://github.com/wp-cli/scaffold-package-command#wp-scaffold-package-readme)). To suggest changes, please submit a pull request against the corresponding part of the codebase.*

bin/install-package-tests.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env bash
2+
3+
set -ex
4+
5+
install_db() {
6+
mysql -e 'CREATE DATABASE IF NOT EXISTS wp_cli_test;' -uroot
7+
mysql -e 'GRANT ALL PRIVILEGES ON wp_cli_test.* TO "wp_cli_test"@"localhost" IDENTIFIED BY "password1"' -uroot
8+
}
9+
10+
install_db

cache-command.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
if ( ! class_exists( 'WP_CLI' ) ) {
4+
return;
5+
}
6+
7+
$autoload = dirname( __FILE__ ) . '/vendor/autoload.php';
8+
if ( file_exists( $autoload ) ) {
9+
require_once $autoload;
10+
}
11+
12+
WP_CLI::add_command( 'cache', 'Cache_Command' );
13+
WP_CLI::add_command( 'transient', 'Transient_Command' );

composer.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "wp-cli/cache-command",
3+
"description": "Manage the object and transient caches.",
4+
"type": "wp-cli-package",
5+
"homepage": "https://github.com/wp-cli/cache-command",
6+
"support": {
7+
"issues": "https://github.com/wp-cli/cache-command/issues"
8+
},
9+
"license": "MIT",
10+
"authors": [
11+
{
12+
"name": "Daniel Bachhuber",
13+
"email": "[email protected]",
14+
"homepage": "https://runcommand.io"
15+
}
16+
],
17+
"minimum-stability": "dev",
18+
"prefer-stable": true,
19+
"autoload": {
20+
"psr-4": {
21+
"": "src/"
22+
},
23+
"files": [ "cache-command.php" ]
24+
},
25+
"require": {},
26+
"require-dev": {
27+
"behat/behat": "~2.5",
28+
"wp-cli/wp-cli": "*"
29+
},
30+
"extra": {
31+
"branch-alias": {
32+
"dev-master": "1.x-dev"
33+
},
34+
"commands": [
35+
"cache",
36+
"transient"
37+
]
38+
}
39+
}

0 commit comments

Comments
 (0)