I hereby claim:
- I am johnpbloch on github.
- I am johnpbloch (https://keybase.io/johnpbloch) on keybase.
- I have a public key whose fingerprint is 80B2 6ECC 07C0 B853 DC43 E439 76FE 244E AFA8 24D5
To claim this, I am signing this object:
| vendor/ |
| /vendor/ |
| vagrant@project:/vagrant$ vendor/bin/wp --debug import --authors=create --skip=image_resize export/wp-export.xml | |
| Error: 'import export/wp-export.xml' is not a registered wp command. See 'wp help'. | |
| vagrant@project:/vagrant$ vendor/bin/wp --version | |
| WP-CLI 0.16.0 |
| { | |
| "require": { | |
| "wpackagist-plugin/memcached": "~2.0", | |
| "wpackagist-plugin/manual-control": "*@stable", | |
| "wp-cli/wp-cli": "dev-master", | |
| "10up/wp_mock": "dev-master", | |
| "phpunit/phpunit": "*@stable", | |
| "psy/psysh": "dev-master" | |
| }, | |
| "repositories": [ |
| #!/bin/bash | |
| function clean_dir() { | |
| files_to_remove=`ls | grep -v 'composer\.json'` | |
| if [[ "$files_to_remove" ]]; then | |
| rm -r $files_to_remove > /dev/null 2>&1 | |
| fi | |
| } | |
| LOCK_FILE='/tmp/updating_wordpress' |
| Results of running "cmake .." from build: | |
| -- The C compiler identification is GNU 4.8.1 | |
| -- The CXX compiler identification is GNU 4.8.1 | |
| -- Check for working C compiler: /usr/bin/cc | |
| -- Check for working C compiler: /usr/bin/cc -- works | |
| -- Detecting C compiler ABI info | |
| -- Detecting C compiler ABI info - done | |
| -- Check for working CXX compiler: /usr/bin/c++ | |
| -- Check for working CXX compiler: /usr/bin/c++ -- works |
| -----BEGIN PGP MESSAGE----- | |
| Version: GnuPG v1.4.14 (GNU/Linux) | |
| hQEMAwkjnXda6TRZAQf+ItT45q6YNW/huTolefMrs+u4wHb77s64W91D2B15qXfL | |
| /leJTvq0c1SOuxWH7ltXWAsEXsBEatswlv+sYgGdTR1EGsA/IFSw8xrRlJmg4rLk | |
| Gl7kAYubK9Em8JLtGJeGsO85EQOYC4iZiFwsk4FqjuZOVQ2FsPpuKcBiIhdJU0z5 | |
| 9qO25dO6n39VaKkiK+SDkHdzKii2xdHr89ZD0OyEFYYq40CsmGlJuqXsZCXPgrmZ | |
| Hr+YP00kbpT7nb5xrJCPLL2nuzY2mIjKeBsDbKZXwuiAjeoYDf6CX09nJHFqpIZw | |
| 2NumbUAAcDidBhFfdk1p21bZsYrLU6zDqHfnIdiO3tKqAVGfRa7/VXvLj6jQhQ6A | |
| VSTxd41U6EHASL3n6de0obudTFA+PzU7ZAC+4mQ5bK+xfLYCnEVJTTFKTCwDA6eZ |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * WP Docs Collection Class | |
| * | |
| * Stores commonly | |
| * | |
| * @access public | |
| * @since 3.7.0 | |
| */ |
| <?php | |
| class Foo { | |
| private $bar; | |
| public function __construct($bar){ | |
| $this->bar = $bar; | |
| } | |
| } |