Changeset 2241498
- Timestamp:
- 02/10/2020 02:36:22 AM (6 years ago)
- Location:
- simple-post-gallery/trunk
- Files:
-
- 5 deleted
- 28 edited
-
README.txt (modified) (2 diffs)
-
app/Config/app.php (modified) (1 diff)
-
app/Controllers/AdminController.php (modified) (8 diffs)
-
app/Controllers/BlockController.php (modified) (2 diffs)
-
app/Controllers/ConfigController.php (modified) (3 diffs)
-
app/Controllers/GalleryController.php (modified) (6 diffs)
-
app/Controllers/NoticeController.php (modified) (3 diffs)
-
app/Controllers/VideoController.php (modified) (10 diffs)
-
app/Lib/functions.php (modified) (2 diffs)
-
app/Main.php (modified) (3 diffs)
-
app/Models/Attachment.php (modified) (3 diffs)
-
app/Models/Post.php (modified) (1 diff)
-
app/Models/PostGallery.php (modified) (1 diff)
-
plugin.php (modified) (1 diff)
-
vendor/10quality/wp-file/tests (deleted)
-
vendor/10quality/wpmvc-core/README.md (modified) (2 diffs)
-
vendor/10quality/wpmvc-core/composer.json (modified) (1 diff)
-
vendor/10quality/wpmvc-core/phpunit.xml (modified) (1 diff)
-
vendor/10quality/wpmvc-core/src/lib/functions.php (modified) (12 diffs)
-
vendor/10quality/wpmvc-core/src/psr4/Bridge.php (modified) (17 diffs)
-
vendor/10quality/wpmvc-core/src/psr4/Config.php (modified) (2 diffs)
-
vendor/10quality/wpmvc-core/src/psr4/Request.php (modified) (2 diffs)
-
vendor/10quality/wpmvc-core/src/psr4/Resolver.php (modified) (3 diffs)
-
vendor/10quality/wpmvc-core/tests (deleted)
-
vendor/10quality/wpmvc-logger/README.markdown (modified) (1 diff)
-
vendor/10quality/wpmvc-logger/composer.json (modified) (1 diff)
-
vendor/10quality/wpmvc-logger/src/Logger.php (modified) (1 diff)
-
vendor/10quality/wpmvc-logger/tests (deleted)
-
vendor/10quality/wpmvc-mvc/tests (deleted)
-
vendor/10quality/wpmvc-phpfastcache/README.md (modified) (1 diff)
-
vendor/10quality/wpmvc-phpfastcache/composer.json (modified) (1 diff)
-
vendor/10quality/wpmvc-phpfastcache/tests (deleted)
-
vendor/composer/installed.json (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-post-gallery/trunk/README.txt
r2216112 r2241498 2 2 Post Gallery 3 3 Contributors: 10quality 4 Donate link: https://www.10quality.com/donations/ 4 5 Tags: gallery, post gallery, pictures, images, lightbox, customizable, customization, galleries, videos, video gallery, photo gallery, swipebox, youtube, vimeo 5 6 Requires at least: 3.2 6 7 Requires PHP: 5.4 7 8 Tested up to: 5.3 8 Stable tag: 2.3.1 09 Stable tag: 2.3.11 9 10 License: MIT 10 11 License URI: http://www.linfo.org/mitlicense.html … … 59 60 == Changelog == 60 61 62 = 2.3.11 = 63 *Release Date - 9 Feb 2020* 64 65 * Framework files updated. 66 * Fixed reported issue related to WP-CLI and BlockController. 67 * Comments refactored. 68 61 69 = 2.3.10 = 62 70 *Release Date - 20 December 2019* -
simple-post-gallery/trunk/app/Config/app.php
r2216112 r2241498 20 20 ], 21 21 22 'version' => '2.3.10', 22 'version' => '2.3.11', 23 24 'author' => '10 Quality Studio <https://www.10quality.com/>', 23 25 24 26 'autoenqueue' => [ -
simple-post-gallery/trunk/app/Controllers/AdminController.php
r1880431 r2241498 11 11 /** 12 12 * Handles admin methods. 13 * WordPress MVC Controller. 13 14 * 14 * @author Ale jandroMostajo <http://about.me/amostajo>15 * @copyright 10 Quality <http://www.10quality.com>16 * @package PostGallery17 * @version 2.1. 815 * @author Ale Mostajo <http://about.me/amostajo> 16 * @copyright 10 Quality <http://www.10quality.com> 17 * @package simple-post-gallery 18 * @version 2.1.11 18 19 */ 19 20 class AdminController extends Controller … … 28 29 * Enqueues and registers scripts. 29 30 * @since 1.0.0 30 * @since 1.0.4 Updated to version 1.0.4.31 * @since 2.0.0 Works with new framework.32 * @since 2.1.0 Normalized font-awesome location.33 * @since 2.1.1 Updated dependency version.34 31 * 35 * @ global object $postgallery Main class.32 * @hook admin_enqueue_scripts 36 33 */ 37 34 public function enqueue() 38 35 { 39 global $postgallery;40 36 wp_register_style( 41 37 'font-awesome', … … 48 44 assets_url( 'css/app.css', __FILE__ ), 49 45 [ 'font-awesome' ], 50 $postgallery->config->get( 'version' )46 post_gallery()->config->get( 'version' ) 51 47 ); 52 48 wp_register_script( … … 61 57 assets_url( 'js/app.js', __FILE__ ), 62 58 [ 'wp-media-uploader' ], 63 $postgallery->config->get( 'version' ),59 post_gallery()->config->get( 'version' ), 64 60 true 65 61 ); … … 68 64 * Registers admin menus. 69 65 * @since 1.0.0 66 * 67 * @hook admin_menu 70 68 */ 71 69 public function menu() … … 83 81 * Displays admin settings. 84 82 * @since 1.0.0 85 * @since 1.0.3 Added cache tab.86 * @s ince 2.0.0 Hooks modified.83 * 84 * @see self::menu() 87 85 */ 88 86 public function view_settings() … … 118 116 * Returns flag indicating success operation 119 117 * @since 1.0.0 120 * @since 1.0.3 Added cache flush.121 * @s ince 2.0.0 Hook added.118 * 119 * @see self::view_settings() 122 120 * 123 121 * @param object $socialFeeder Social Feeder model … … 156 154 /** 157 155 * Returns shorcode actions. 158 * Filter "post_gallery_metabox_shortcode_actions"159 156 * @since 2.1.8 157 * 158 * @hook post_gallery_metabox_shortcode_actions 160 159 * 161 160 * @param array $actions Shortcode actions. -
simple-post-gallery/trunk/app/Controllers/BlockController.php
r2206154 r2241498 7 7 /** 8 8 * Handles gutenberg related hooks. 9 * WordPress MVC Controller. 9 10 * 10 11 * @author Cami Mostajo 11 12 * @copyright 10Quality <http://www.10quality.com> 12 * @package PostGallery13 * @package simple-post-gallery 13 14 * @version 2.3.8 14 15 */ … … 19 20 * @since 2.3.0 20 21 * 22 * @hook init 23 * 21 24 * @link https://www.youtube.com/watch?v=Qsf4YODc-cQ 22 *23 * @global PostGallery\Main $postgallery24 25 */ 25 26 public function register() -
simple-post-gallery/trunk/app/Controllers/ConfigController.php
r2206916 r2241498 7 7 /** 8 8 * Config Controller. 9 * WordPress MVC Controller. 9 10 * 10 11 * @author Alejandro Mostajo <http://about.me/amostajo> 11 12 * @copyright 10Quality <http://www.10quality.com> 12 * @package PostGallery13 * @package simple-post-gallery 13 14 * @version 2.3.9 14 15 */ … … 18 19 * Enqueues and registers scripts. 19 20 * @since 1.0.0 21 * 22 * @hook wp_enqueue_scripts 20 23 */ 21 24 public function enqueue() … … 37 40 /** 38 41 * Returns action links. 39 * Filter "plugin_action_links_[basename]"40 * Wordpress hook41 42 * @since 2.0.0 43 * 44 * @hook plugin_action_links_[basename] 42 45 * 43 46 * @param array $links Plugin action links. -
simple-post-gallery/trunk/app/Controllers/GalleryController.php
r1887904 r2241498 12 12 /** 13 13 * Gallery Controller. 14 * WordPress MVC Controller. 14 15 * 15 16 * @author Alejandro Mostajo <http://about.me/amostajo> 16 17 * @copyright 10Quality <http://www.10quality.com> 17 * @package PostGallery18 * @package simple-post-gallery 18 19 * @version 2.2.6 19 20 */ … … 23 24 * Returns a post gallery. 24 25 * @since 1.0.0 25 * @since 2.0.0 WPMVC compatibility and hooks.26 * @s ince 2.1.5 Hot fix to allow PHP 5.4 compatibility.26 * 27 * @see functions.php::get_gallery() 27 28 * 28 29 * @param mixed $post_id Post ID. … … 51 52 * Displays a post gallery. 52 53 * @since 1.0.0 53 * @since 2.0.0 WPMVC compatibility, format customization. 54 * @since 2.1.2 Adds gallery scripta and swipebox support. 55 * @since 2.1.5 Hot fix to allow PHP 5.4 compatibility. 56 * @since 2.2.2 Checks for shortcode attributes. 57 * @since 2.2.6 Lightbox removed. 54 * 55 * @see functions.php::the_gallery() 58 56 * 59 57 * @param mixed $post_id Post ID. … … 105 103 * Registers metaboxes. 106 104 * @since 1.0.0 105 * 106 * @hook add_meta_boxes 107 107 * 108 108 * @param string $post_type Post type to validate. … … 126 126 * Displays gallery metabox. 127 127 * @since 1.0.0 128 * @since 2.0.0 Added hooks. 128 * 129 * @see self::add_metabox() 129 130 * 130 131 * @param object $post Post object WP_Post. … … 160 161 * Saves gallery information. 161 162 * @since 1.0.0 162 * @since 2.0.0 Formats support.163 * @ since 2.2.4 Fixed missing $model bug.163 * 164 * @hook save_post 164 165 * 165 166 * @param int $post_id Post id. -
simple-post-gallery/trunk/app/Controllers/NoticeController.php
r1880431 r2241498 6 6 use WPMVC\MVC\Controller; 7 7 /** 8 * Notice Controller controller.9 * Generated with ayuco.8 * Notice hooks. 9 * WordPress MVC Controller. 10 10 * 11 11 * @author Alejandro Mostajo <http://about.me/amostajo> 12 12 * @copyright 10Quality 13 * @package PostGallery13 * @package simple-post-gallery 14 14 * @version 2.2.0 15 15 */ … … 18 18 /** 19 19 * Checks for dismissed notices. 20 * Action "admin_init"21 * Wordpress hook22 20 * @since 2.1.2 21 * 22 * @hook admin_init 23 23 */ 24 24 public function check_dismissed() … … 31 31 /** 32 32 * Display important admin notices. 33 * Action "admin_notices"34 * Wordpress hook35 33 * @since 2.1.2 36 * @since 2.2.0 Removed notice 0. 34 * 35 * @hook admin_notices 37 36 */ 38 37 public function show() -
simple-post-gallery/trunk/app/Controllers/VideoController.php
r1887286 r2241498 10 10 use PostGallery\Models\Attachment; 11 11 /** 12 * Video Controller controller.13 * Generated with ayuco.12 * Video hooks. 13 * WordPress MVC Controller. 14 14 * 15 15 * @author Alejandro Mostajo <http://about.me/amostajo> 16 16 * @copyright 10Quality <http://www.10quality.com> 17 * @package PostGallery17 * @package simple-post-gallery 18 18 * @version 2.2.0 19 19 */ … … 46 46 } 47 47 /** 48 * Filter "media_upload_tabs" 49 * Wordpress hook 50 * @since 2.1.0 48 * Returns media uploader tabs. 49 * @since 2.1.0 50 * 51 * @hook media_upload_tabs 51 52 * 52 53 * @param array $tabs Media tabs. … … 60 61 } 61 62 /** 62 * Action "media_upload_video_importer" 63 * Wordpress hook 64 * @since 2.1.0 63 * Adds video iframe. 64 * @since 2.1.0 65 * 66 * @hook media_upload_video_importer 65 67 */ 66 68 public function media_tab() … … 77 79 } 78 80 /** 79 * Action "wp_ajax_video_importer_validate" 80 * Wordpress hook 81 * @since 2.1.0 81 * Ajax call for validating video URL. 82 * @since 2.1.0 83 * 84 * @hook wp_ajax_video_importer_validate 82 85 */ 83 86 public function ajax_validate() … … 114 117 } 115 118 /** 116 * Filter "post_gallery_video_preview" 117 * Wordpress hook 118 * @since 2.1.0 119 * Returns video HTML preview. 120 * @since 2.1.0 121 * 122 * @hook post_gallery_video_preview 119 123 * 120 124 * @param string $html HTML preview. … … 142 146 } 143 147 /** 144 * Action "wp_ajax_video_importer_import" 145 * Wordpress hook 146 * @since 2.1.0 148 * Imports video. 149 * @since 2.1.0 150 * 151 * @hook wp_ajax_video_importer_import 147 152 */ 148 153 public function ajax_import() … … 181 186 } 182 187 /** 183 * Filter "post_gallery_import_video" 184 * Wordpress hook 185 * @since 2.1.0 188 * Returns filtered model/attachment with all video details. 189 * @since 2.1.0 190 * 191 * @hook post_gallery_import_video 186 192 * 187 193 * @param object|Attachment $model Attachment model. … … 269 275 /** 270 276 * Returns embed for youtube and vimeo videos. 271 * Filter "send_to_editor" 272 * Wordpress hook 273 * @since 2.1.0 274 * @since 2.2.0 Modify video sends (MP4). 275 * @since 2.2.4 Support for more mimes. 277 * @since 2.1.0 278 * 279 * @hook send_to_editor 276 280 * 277 281 * @param string $html Current HTML. … … 290 294 } 291 295 /** 292 * Filter "attachment_fields_to_edit" 293 * Wordpress hook 294 * @since 2.1.0 295 * @since 2.1.1 Fixes view parameters. 296 * @since 2.2.4 Support for more mimes. 296 * Returns the edit fields of the attachment, during upload manager. 297 * @since 2.1.0 298 * 299 * @hook attachment_fields_to_edit 297 300 * 298 301 * @param array $fields Current. … … 328 331 } 329 332 /** 330 * Filter "attachment_fields_to_save"331 * Wordpress hook332 * @since 2.1.0333 * @ since 2.1.1 Fixes save.333 * Triggered when the media video is being edited. 334 * @since 2.1.0 335 * 336 * @hook attachment_fields_to_save 334 337 * 335 338 * @param object $post Post. -
simple-post-gallery/trunk/app/Lib/functions.php
r1843712 r2241498 6 6 * @copyright 10Quality <http://www.10quality.com> 7 7 * @package PostGallery 8 * @version 1.0.08 * @version 2.3.11 9 9 */ 10 10 … … 14 14 * @since 1.0.0 15 15 * 16 * @return objectMain class.16 * @return \PostGallery\Main Main class. 17 17 */ 18 18 function post_gallery() 19 19 { 20 global $postgallery; 21 return $postgallery; 20 return get_bridge( 'PostGallery' ); 22 21 } 23 22 } -
simple-post-gallery/trunk/app/Main.php
r2043514 r2241498 9 9 * Class contains declaration of hooks and filters. 10 10 * 11 * @author Ale jandroMostajo <http://about.me/amostajo>12 * @copyright 10 Quality13 * @package PostGallery11 * @author Ale Mostajo <http://about.me/amostajo> 12 * @copyright 10 Quality 13 * @package simple-post-gallery 14 14 * @version 2.3.2 15 15 */ … … 18 18 /** 19 19 * Declaration of public wordpress hooks. 20 * @since 2.3.021 20 */ 22 21 public function init() … … 42 41 * Declaration of admin only wordpress hooks. 43 42 * For Wordpress admin dashboard. 44 * @since 2.3.045 43 */ 46 44 public function on_admin() -
simple-post-gallery/trunk/app/Models/Attachment.php
r1887286 r2241498 15 15 * @author Alejandro Mostajo <http://about.me/amostajo> 16 16 * @copyright 10Quality 17 * @package PostGallery18 * @version 2. 2.417 * @package simple-post-gallery 18 * @version 2.3.11 19 19 */ 20 20 class Attachment extends Model … … 24 24 * Aliases. 25 25 * @since 1.0.0 26 * @since 1.0.1 Added title, date and mime27 * @since 2.0.0 Following parent.28 * @since 2.1.0 Added embed for video.29 * @since 2.2.0 Added video_thumb.30 * @since 2.2.1 Added is_lightbox and no_thumb_url.31 * @since 2.2.4 Added is_uploaded.32 26 * @var array 33 27 */ … … 227 221 * @since 2.2.1 228 222 * 229 * @global object $postgallery Main class.230 *231 223 * @return string 232 224 */ 233 225 public function get_no_thumb_path() 234 226 { 235 global $postgallery; 236 return $postgallery->config->get( 'paths.base' ).'../assets/images/default-video.jpg'; 227 return post_gallery()->config->get( 'paths.base' ).'../assets/images/default-video.jpg'; 237 228 } 238 229 /** -
simple-post-gallery/trunk/app/Models/Post.php
r1850339 r2241498 14 14 * @author Alejandro Mostajo <http://about.me/amostajo> 15 15 * @copyright 10Quality 16 * @package PostGallery16 * @package simple-post-gallery 17 17 * @version 2.1.6 18 18 */ -
simple-post-gallery/trunk/app/Models/PostGallery.php
r1843712 r2241498 12 12 * @author Alejandro Mostajo <http://about.me/amostajo> 13 13 * @copyright 10Quality 14 * @package PostGallery14 * @package simple-post-gallery 15 15 * @version 2.0.0 16 16 */ -
simple-post-gallery/trunk/plugin.php
r2216112 r2241498 4 4 Plugin URI: https://www.10quality.com/product/post-gallery-pro/ 5 5 Description: Adds Gallery of pictures, photos and videos (YouTube, Vimeo and MP4) to any post type. Developed for easy customization in themes. 6 Version: 2.3.1 06 Version: 2.3.11 7 7 Author: 10 Quality 8 8 Author URI: https://www.10quality.com/ -
simple-post-gallery/trunk/vendor/10quality/wpmvc-core/README.md
r2113414 r2241498 1 # Core Package (For Wordpress MVC) 2 -------------------------------- 1 # Core Package (For WordPress MVC) 3 2 4 3 [](https://packagist.org/packages/10quality/wpmvc-core) … … 6 5 [](https://packagist.org/packages/10quality/wpmvc-core) 7 6 8 Forked version for WPMVC.7 The core package (library and functionality) for [WordPress MVC](https://www.wordpress-mvc.com/). 9 8 10 Core package (library and functionality) fo Wordpress MVC. Core comes with MVC integration, Cache, Logs and more.9 This package comes with MVC integration, Cache, Logs and more. 11 10 12 11 ## Coding Guidelines 13 12 14 The coding is a mix between PSR-2 and Word press PHP guidelines.13 The coding is a mix between PSR-2 and WordPress PHP guidelines. 15 14 16 15 ## License -
simple-post-gallery/trunk/vendor/10quality/wpmvc-core/composer.json
r2113414 r2241498 1 1 { 2 2 "name": "10quality/wpmvc-core", 3 "description": "Word press MVC crore plugin.",3 "description": "WordPress MVC crore plugin.", 4 4 "license": "MIT", 5 5 "keywords": ["wordpress","mvc","core"], -
simple-post-gallery/trunk/vendor/10quality/wpmvc-core/phpunit.xml
r1843712 r2241498 7 7 convertNoticesToExceptions="true" 8 8 convertWarningsToExceptions="true" 9 stopOnFailure="true" 10 syntaxCheck="true"> 9 stopOnFailure="true"> 11 10 <testsuites> 12 11 <testsuite name="Package Test Suite"> -
simple-post-gallery/trunk/vendor/10quality/wpmvc-core/src/lib/functions.php
r2051905 r2241498 3 3 use Ayuco\Listener; 4 4 use WPMVC\Resolver; 5 use WPMVC\Commands\SetNameCommand;6 5 use WPMVC\Commands\SetupCommand; 7 6 use WPMVC\Commands\AddCommand; … … 9 8 use WPMVC\Commands\CreateCommand; 10 9 use WPMVC\Commands\SetCommand; 10 use WPMVC\Commands\PrettifyCommand; 11 11 12 12 /** 13 * CORE wordpress functions.13 * CORE WordPress functions. 14 14 * 15 15 * @author Alejandro Mostajo <http://about.me/amostajo> … … 17 17 * @license MIT 18 18 * @package WPMVC 19 * @version 3.1. 019 * @version 3.1.10.1 20 20 */ 21 21 … … 24 24 * Resizes image and returns URL path. 25 25 * @since 1.0.1 26 * @since 2.0.14 ID added as parameter to prevent duplicate entries by the same name.27 26 * 28 27 * @param string $url Image URL path … … 61 60 * Returns url of asset located in a theme or plugin. 62 61 * @since 1.0.1 63 * @since 2.0.4 Refactored to work with new structure.64 * @since 2.0.15 Added scheme as paramete and network support.65 62 * 66 63 * @link https://codex.wordpress.org/Function_Reference/home_url 67 64 * @link https://codex.wordpress.org/Function_Reference/network_home_url 65 * 68 66 * @param string $path Asset relative path. 69 67 * @param string $file File location path. … … 81 79 rtrim( $is_network ? network_home_url( '/', $scheme ) : home_url( '/', $scheme ), '/' ) 82 80 ); 81 // Polylang support 82 if ( function_exists( 'pll_current_language' ) ) { 83 $lang = pll_current_language( 'slug' ); 84 if ( strpos( $url, '/' . $lang ) !== false) 85 $url = str_replace( '/' . $lang, '', $url ); 86 } 87 // WPML support 88 if ( function_exists( 'icl_object_id' ) && defined( 'ICL_LANGUAGE_CODE' ) ) { 89 if ( strpos( $url, '/' . ICL_LANGUAGE_CODE ) !== false) 90 $url = str_replace( '/' . ICL_LANGUAGE_CODE, '', $url ); 91 } 83 92 // Clean base path 84 93 $route = preg_replace( '/.+?(?=wp-content)/', '', $route ); 85 94 // Clean project relative path 86 $route = preg_replace( '/\/app[\/\\ A-Za-z0-9\.\\-]+/', '', $route );87 $route = preg_replace( '/\/assets[\/\\ A-Za-z0-9\.\\-]+/', '', $route );88 $route = preg_replace( '/\/vendor[\/\\ A-Za-z0-9\.\\-]+/', '', $route );95 $route = preg_replace( '/\/app[\/\\\\A-Za-z0-9\.\-]+/', '', $route ); 96 $route = preg_replace( '/\/assets[\/\\\\A-Za-z0-9\.\-]+/', '', $route ); 97 $route = preg_replace( '/\/vendor[\/\\\\A-Za-z0-9\.\-]+/', '', $route ); 89 98 return $url.'/'.apply_filters( 'app_route', $route ).'/assets/'.$path; 90 99 } … … 95 104 * Returns ayuco. 96 105 * @since 2.0.3 97 * @since 2.0.4 Added new commands.98 * @since 2.0.13 Added SetCommand and sorts registration by name.99 106 * 100 107 * @param string $path Project path. … … 111 118 $ayuco->register(new SetCommand($path)); 112 119 $ayuco->register(new SetupCommand($path)); 113 $ayuco->register(new SetNameCommand($path));120 $ayuco->register(new PrettifyCommand($path)); 114 121 115 122 return $ayuco; … … 122 129 * Returns wordpress root path. 123 130 * @since 2.0.4 124 * @since 2.0.10 Force file update on repository.125 * @since 3.0.5 Added filters to support path customization.126 131 * 127 132 * @return string … … 129 134 function get_wp_home_path() 130 135 { 136 // Ensure get_home_path is available 137 if ( ! function_exists( 'get_home_path' ) ) 138 require_once( ABSPATH . 'wp-admin/includes/file.php' ); 131 139 return apply_filters( 132 140 'home_path', … … 146 154 * Returns path of asset located in a theme or plugin. 147 155 * @since 1.0.1 148 * @since 2.0.4 Refactored to work with new structure.149 * @since 3.0.5 Uses get_wp_home_path instead.150 156 * 151 157 * @param string $relative Asset relative path. … … 162 168 $route = preg_replace( '/.+?(?=wp-content)/', '', $route ); 163 169 // Clean project relative path 164 $route = preg_replace( '/\/app[\/\\ A-Za-z0-9\.\\-]+/', '', $route );165 $route = preg_replace( '/\/assets[\/\\ A-Za-z0-9\.\\-]+/', '', $route );166 $route = preg_replace( '/\/vendor[\/\\ A-Za-z0-9\.\\-]+/', '', $route );170 $route = preg_replace( '/\/app[\/\\\\A-Za-z0-9\.\-]+/', '', $route ); 171 $route = preg_replace( '/\/assets[\/\\\\A-Za-z0-9\.\-]+/', '', $route ); 172 $route = preg_replace( '/\/vendor[\/\\\\A-Za-z0-9\.\-]+/', '', $route ); 167 173 return $path.'/'.apply_filters( 'app_route_path', $route ).'/assets/'.$relative; 168 174 } -
simple-post-gallery/trunk/vendor/10quality/wpmvc-core/src/psr4/Bridge.php
r2216112 r2241498 14 14 * Plugin class. 15 15 * To be extended as main plugin / theme class. 16 * Part of the core library of Word press Plugin / Wordpress Theme.16 * Part of the core library of WordPress Plugin / WordPress Theme. 17 17 * 18 18 * @link https://github.com/amostajo/wordpress-plugin-core/blob/v1.0/src/psr4/Plugin.php … … 47 47 48 48 /** 49 * List of Word press action hooks to add.49 * List of WordPress action hooks to add. 50 50 * @var array 51 51 * @since 1.0.3 … … 54 54 55 55 /** 56 * List of Word press filter hooks to add.56 * List of WordPress filter hooks to add. 57 57 * @var array 58 58 * @since 1.0.3 … … 61 61 62 62 /** 63 * List of Word press shortcodes to add.63 * List of WordPress shortcodes to add. 64 64 * @var array 65 65 * @since 1.0.3 … … 68 68 69 69 /** 70 * List of Word press widgets to add.70 * List of WordPress widgets to add. 71 71 * @var array 72 72 * @since 1.0.3 … … 333 333 334 334 /** 335 * Adds a Word press action hook.336 * @since 1.0.3 337 * 338 * @param string $hook Wordpress hook name.335 * Adds a WordPress action hook. 336 * @since 1.0.3 337 * 338 * @param string $hook WordPress hook name. 339 339 * @param string $mvc_call Lightweight MVC call. (i.e. 'Controller@method') 340 340 * @param mixed $priority Execution priority or MVC params. … … 354 354 355 355 /** 356 * Adds a Word press filter hook.357 * @since 1.0.3 358 * 359 * @param string $hook Wordpress hook name.356 * Adds a WordPress filter hook. 357 * @since 1.0.3 358 * 359 * @param string $hook WordPress hook name. 360 360 * @param string $mvc_call Lightweight MVC call. (i.e. 'Controller@method') 361 361 * @param mixed $priority Execution priority or MVC params. … … 375 375 376 376 /** 377 * Adds a Word press shortcode.378 * @since 1.0.3 379 * 380 * @param string $tag Wordpress tag name.377 * Adds a WordPress shortcode. 378 * @since 1.0.3 379 * 380 * @param string $tag WordPress tag name. 381 381 * @param string $mvc_call Lightweight MVC call. (i.e. 'Controller@method') 382 382 */ … … 391 391 392 392 /** 393 * Adds a Word press shortcode.393 * Adds a WordPress widget. 394 394 * @since 1.0.3 395 395 * … … 436 436 437 437 /** 438 * Adds hooks and filters into Word press core.438 * Adds hooks and filters into WordPress core. 439 439 * @since 1.0.3 440 440 * @since 2.0.4 Added models. … … 465 465 ); 466 466 } 467 // Filters467 // Shortcodes 468 468 foreach ( $this->shortcodes as $shortcode ) { 469 469 add_shortcode( … … 491 491 492 492 /** 493 * Registers added widgets into Word press.493 * Registers added widgets into WordPress. 494 494 * @since 1.0.3 495 495 */ … … 502 502 503 503 /** 504 * Registers added models into Word press.504 * Registers added models into WordPress. 505 505 * @since 2.0.4 506 * @since 2.0.7 Support for automated models with no registration.506 * @since 2.0.7 Support for automated models with no registration. 507 507 * @since 2.0.16 Registry supports 508 508 */ … … 704 704 * @since 3.1.5 Mapping parameters support. 705 705 * 706 * @param string $hook Word press hook name.706 * @param string $hook WordPress hook name. 707 707 * @param string $mvc_call Lightweight MVC call. (i.e. 'Controller@method') 708 708 * @param mixed $priority Execution priority or MVC params. … … 768 768 * @param string $call MVC call. 769 769 * @param array $mvc_args MVC defined arguments. 770 * @param array $args Word press incoming hook arguments.770 * @param array $args WordPress incoming hook arguments. 771 771 * 772 772 * @return array … … 814 814 815 815 /** 816 * Addes automated wordpress save post functionality.816 * Addes automated WordPress save post functionality. 817 817 * @since 2.0.4 818 818 * @since 2.0.9 Fix for multiple types calling to function. … … 841 841 * Checks if generated assets exist or not. 842 842 * @since 2.0.7 843 * @since 2.0.8 Refactor based on new config file.843 * @since 2.0.8 Refactor based on new config file. 844 844 * @since 2.0.12 Dir __DIR__ checked on config. 845 * @since 3.1.0 Refactors name and allows for admin enqueues.845 * @since 3.1.0 Refactors name and allows for admin enqueues. 846 846 */ 847 847 private function _check_assets() -
simple-post-gallery/trunk/vendor/10quality/wpmvc-core/src/psr4/Config.php
r1843712 r2241498 5 5 /** 6 6 * Config class. 7 * Part of the core library of Word press Plugin.7 * Part of the core library of WordPress Plugin. 8 8 * 9 9 * @author Alejandro Mostajo <http://about.me/amostajo> … … 35 35 /** 36 36 * Returns value stored in given key. 37 * Can acces multidimens sional array values with a DOT(.)37 * Can acces multidimensional array values with a DOT(.) 38 38 * i.e. paypal.client_id 39 39 * @since 1.0.0 -
simple-post-gallery/trunk/vendor/10quality/wpmvc-core/src/psr4/Request.php
r1843712 r2241498 5 5 /** 6 6 * Request class. 7 * Used to get web input from query string or wordpress' query vars.7 * Used to get web input from query string or WordPress' query vars. 8 8 * 9 9 * @link https://github.com/amostajo/lightweight-mvc/blob/v1.0/src/Request.php … … 17 17 { 18 18 /** 19 * Gets input from either wordpress query vars or request's POST or GET.19 * Gets input from either WordPress query vars or request's POST or GET. 20 20 * @since 1.0.0 21 21 * 22 * @global object $wp_query Word press query.22 * @global object $wp_query WordPress query. 23 23 * 24 24 * @param string $key Name of the input. -
simple-post-gallery/trunk/vendor/10quality/wpmvc-core/src/psr4/Resolver.php
r2043514 r2241498 4 4 5 5 /** 6 * Resolver holds reference to any global instace created in Word press.6 * Resolver holds reference to any global instace created in WordPress. 7 7 * Allows for easy access to any instance initialized. 8 8 * … … 27 27 * 28 28 * @param string $key Instance key (namespace or other). 29 * @param WPMVC\Bridge|object &$bridge Bridge insta ce to keep referece of.29 * @param WPMVC\Bridge|object &$bridge Bridge instance to keep reference of. 30 30 */ 31 31 public static function add( $key, &$bridge ) … … 35 35 36 36 /** 37 * Returns any instantiated inst ence stored in resolver.37 * Returns any instantiated instance stored in resolver. 38 38 * @since 3.1.0 39 39 * -
simple-post-gallery/trunk/vendor/10quality/wpmvc-logger/README.markdown
r1843712 r2241498 3 3 This is a fork modification of the famous and powerful [klogger](https://github.com/katzgrau/KLogger) from [Code Fury](http://codefury.net/projects/klogger/). 4 4 5 Modified version to work with Word press Standards and theme check.5 Modified version to work with WordPress Standards and theme check. 6 6 7 7 ## Copyright -
simple-post-gallery/trunk/vendor/10quality/wpmvc-logger/composer.json
r1843712 r2241498 2 2 "name": "10quality/wpmvc-logger", 3 3 "version": "2.0.0", 4 "description": "KLogger for Word press MVC.",4 "description": "KLogger for WordPress MVC.", 5 5 "keywords": ["logging"], 6 6 "require": { -
simple-post-gallery/trunk/vendor/10quality/wpmvc-logger/src/Logger.php
r1843712 r2241498 110 110 * 111 111 * @internal param string $logFilePrefix The prefix for the log file name 112 * @internal param string $logFileExt The extension for the log file112 * @internal param string $logFileExt The extension for the log file 113 113 */ 114 114 public function __construct($logDirectory, $logLevelThreshold = LogLevel::DEBUG, array $options = array()) -
simple-post-gallery/trunk/vendor/10quality/wpmvc-phpfastcache/README.md
r1843712 r2241498 3 3 This is a fork modification of the famous and powerful [phpfastcache](http://www.phpfastcache.com) from [khoaofgod](https://github.com/khoaofgod/phpfastcache). 4 4 5 Modified version to work with Word press Standards and theme check.5 Modified version to work with WordPress Standards and theme check. 6 6 7 7 ## Copyright -
simple-post-gallery/trunk/vendor/10quality/wpmvc-phpfastcache/composer.json
r1843712 r2241498 2 2 "name": "10quality/wpmvc-phpfastcache", 3 3 "type" : "library", 4 "description": "Forked version that works with Word press MVC.",4 "description": "Forked version that works with WordPress MVC.", 5 5 "keywords": ["cache"], 6 6 "homepage": "http://www.phpfastcache.com", -
simple-post-gallery/trunk/vendor/composer/installed.json
r2216112 r2241498 41 41 }, 42 42 { 43 "name": "10quality/wp-file", 44 "version": "v0.9.4", 45 "version_normalized": "0.9.4.0", 46 "source": { 47 "type": "git", 48 "url": "https://github.com/10quality/wp-file.git", 49 "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b" 50 }, 51 "dist": { 52 "type": "zip", 53 "url": "https://api.github.com/repos/10quality/wp-file/zipball/282f0f6733a9e18b392a8b9999dcd8949275a77b", 54 "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b", 55 "shasum": "" 56 }, 57 "require": { 58 "php": ">=5.2" 59 }, 60 "require-dev": { 61 "phpunit/phpunit": "4.4.*" 62 }, 63 "time": "2018-06-12T20:43:25+00:00", 64 "type": "library", 65 "installation-source": "dist", 66 "autoload": { 67 "psr-4": { 68 "TenQuality\\WP\\": "src" 69 } 70 }, 71 "notification-url": "https://packagist.org/downloads/", 72 "license": [ 73 "MIT" 74 ], 75 "authors": [ 76 { 77 "name": "Alejandro Mostajo", 78 "email": "amostajo@gmail.com" 79 }, 80 { 81 "name": "10 Quality", 82 "email": "info@10quality.com" 83 } 84 ], 85 "description": "Small class library that facilitates file handling in Wordpress.", 86 "keywords": [ 87 "file", 88 "filesystem", 89 "wordpress" 90 ] 91 }, 92 { 93 "name": "10quality/wpmvc-mvc", 94 "version": "v2.1.6", 95 "version_normalized": "2.1.6.0", 96 "source": { 97 "type": "git", 98 "url": "https://github.com/10quality/wpmvc-mvc.git", 99 "reference": "f90689907b6f1eab368a14e859e37bd16e87286c" 100 }, 101 "dist": { 102 "type": "zip", 103 "url": "https://api.github.com/repos/10quality/wpmvc-mvc/zipball/f90689907b6f1eab368a14e859e37bd16e87286c", 104 "reference": "f90689907b6f1eab368a14e859e37bd16e87286c", 105 "shasum": "" 106 }, 107 "require": { 108 "php": ">=5.4.0" 109 }, 110 "require-dev": { 111 "phpunit/phpunit": "7.5.*" 112 }, 113 "time": "2019-06-04T21:22:07+00:00", 114 "type": "library", 115 "installation-source": "dist", 116 "autoload": { 117 "psr-4": { 118 "WPMVC\\MVC\\": "src" 119 } 120 }, 121 "notification-url": "https://packagist.org/downloads/", 122 "license": [ 123 "MIT" 124 ], 125 "authors": [ 126 { 127 "name": "Alejandro Mostajo", 128 "email": "amostajo@gmail.com" 129 }, 130 { 131 "name": "10Quality", 132 "email": "info@10quality.com" 133 } 134 ], 135 "description": "Lightweight MVC for WPMVC (Wordpress MVC framework).", 136 "keywords": [ 137 "light", 138 "lightweight", 139 "mvc", 140 "wordpress" 141 ] 142 }, 143 { 144 "name": "nikic/php-parser", 145 "version": "dev-master", 146 "version_normalized": "9999999-dev", 147 "source": { 148 "type": "git", 149 "url": "https://github.com/nikic/PHP-Parser.git", 150 "reference": "a2443aaefa9282a488ec7880193f3fcd29f69b33" 151 }, 152 "dist": { 153 "type": "zip", 154 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a2443aaefa9282a488ec7880193f3fcd29f69b33", 155 "reference": "a2443aaefa9282a488ec7880193f3fcd29f69b33", 156 "shasum": "" 157 }, 158 "require": { 159 "ext-tokenizer": "*", 160 "php": ">=7.0" 161 }, 162 "require-dev": { 163 "ircmaxell/php-yacc": "0.0.5", 164 "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" 165 }, 166 "time": "2020-02-09T21:50:19+00:00", 167 "bin": [ 168 "bin/php-parse" 169 ], 170 "type": "library", 171 "extra": { 172 "branch-alias": { 173 "dev-master": "4.3-dev" 174 } 175 }, 176 "installation-source": "source", 177 "autoload": { 178 "psr-4": { 179 "PhpParser\\": "lib/PhpParser" 180 } 181 }, 182 "notification-url": "https://packagist.org/downloads/", 183 "license": [ 184 "BSD-3-Clause" 185 ], 186 "authors": [ 187 { 188 "name": "Nikita Popov" 189 } 190 ], 191 "description": "A PHP parser written in PHP", 192 "keywords": [ 193 "parser", 194 "php" 195 ] 196 }, 197 { 198 "name": "10quality/wpmvc-core", 199 "version": "v3.1.10.1", 200 "version_normalized": "3.1.10.1", 201 "source": { 202 "type": "git", 203 "url": "https://github.com/10quality/wpmvc-core.git", 204 "reference": "9eef2af9433d4993055e21f5985cc54b43dd7405" 205 }, 206 "dist": { 207 "type": "zip", 208 "url": "https://api.github.com/repos/10quality/wpmvc-core/zipball/9eef2af9433d4993055e21f5985cc54b43dd7405", 209 "reference": "9eef2af9433d4993055e21f5985cc54b43dd7405", 210 "shasum": "" 211 }, 212 "require": { 213 "10quality/wpmvc-logger": "2.0.*", 214 "10quality/wpmvc-mvc": "2.1.*", 215 "10quality/wpmvc-phpfastcache": "4.0.*", 216 "php": ">=5.4.0" 217 }, 218 "require-dev": { 219 "10quality/wpmvc-commands": "1.0.*", 220 "phpunit/phpunit": "7.5.*" 221 }, 222 "time": "2020-01-27T01:02:47+00:00", 223 "type": "library", 224 "installation-source": "source", 225 "autoload": { 226 "files": [ 227 "src/lib/functions.php" 228 ], 229 "psr-4": { 230 "WPMVC\\": "src/psr4" 231 } 232 }, 233 "notification-url": "https://packagist.org/downloads/", 234 "license": [ 235 "MIT" 236 ], 237 "authors": [ 238 { 239 "name": "10 Quality", 240 "email": "info@10quality.com" 241 }, 242 { 243 "name": "Alejandro Mostajo", 244 "email": "amostajo@gmail.com" 245 } 246 ], 247 "description": "WordPress MVC crore plugin.", 248 "keywords": [ 249 "core", 250 "mvc", 251 "wordpress" 252 ] 253 }, 254 { 255 "name": "10quality/wpmvc-commands", 256 "version": "v1.1.9.1", 257 "version_normalized": "1.1.9.1", 258 "source": { 259 "type": "git", 260 "url": "https://github.com/10quality/wpmvc-commands.git", 261 "reference": "9cfd462bf9f18d01a8620020aca2fb685033909c" 262 }, 263 "dist": { 264 "type": "zip", 265 "url": "https://api.github.com/repos/10quality/wpmvc-commands/zipball/9cfd462bf9f18d01a8620020aca2fb685033909c", 266 "reference": "9cfd462bf9f18d01a8620020aca2fb685033909c", 267 "shasum": "" 268 }, 269 "require": { 270 "10quality/ayuco": "^1.0", 271 "nikic/php-parser": "^4.2", 272 "php": ">=5.4.0" 273 }, 274 "require-dev": { 275 "phpunit/phpunit": "8.0.*" 276 }, 277 "time": "2020-01-27T19:38:38+00:00", 278 "type": "library", 279 "installation-source": "source", 280 "autoload": { 281 "psr-4": { 282 "WPMVC\\Commands\\": "src" 283 } 284 }, 285 "notification-url": "https://packagist.org/downloads/", 286 "license": [ 287 "MIT" 288 ], 289 "authors": [ 290 { 291 "name": "Alejandro Mostajo", 292 "email": "amostajo@gmail.com" 293 } 294 ], 295 "description": "Ayuco commands/jobs for WordPress MVC.", 296 "keywords": [ 297 "ayuco", 298 "jobs", 299 "mvc", 300 "wordpress" 301 ] 302 }, 303 { 43 304 "name": "10quality/wpmvc-logger", 44 305 "version": "v2.0.x-dev", … … 46 307 "source": { 47 308 "type": "git", 48 "url": "https://github.com/10quality/wpmvc- logger.git",49 "reference": " 726b82a34807cdac30d06684e342b7d0035735fd"50 }, 51 "dist": { 52 "type": "zip", 53 "url": "https://api.github.com/repos/10quality/wpmvc- logger/zipball/726b82a34807cdac30d06684e342b7d0035735fd",54 "reference": " 726b82a34807cdac30d06684e342b7d0035735fd",309 "url": "https://github.com/10quality/wpmvc-klogger.git", 310 "reference": "3f8959bd7fe585d248d102e198aae4a2504a90d1" 311 }, 312 "dist": { 313 "type": "zip", 314 "url": "https://api.github.com/repos/10quality/wpmvc-klogger/zipball/3f8959bd7fe585d248d102e198aae4a2504a90d1", 315 "reference": "3f8959bd7fe585d248d102e198aae4a2504a90d1", 55 316 "shasum": "" 56 317 }, … … 63 324 "phpunit/phpunit": "4.0.*" 64 325 }, 65 "time": "20 16-09-23T21:01:36+00:00",326 "time": "2020-01-09T23:17:24+00:00", 66 327 "type": "library", 67 328 "installation-source": "source", … … 99 360 } 100 361 ], 101 "description": "KLogger for Word press MVC.",362 "description": "KLogger for WordPress MVC.", 102 363 "keywords": [ 103 364 "logging" … … 111 372 "type": "git", 112 373 "url": "https://github.com/10quality/wpmvc-phpfastcache.git", 113 "reference": " f084123371dbfc734ed0e680a4e7aa61dd0d100b"114 }, 115 "dist": { 116 "type": "zip", 117 "url": "https://api.github.com/repos/10quality/wpmvc-phpfastcache/zipball/ f084123371dbfc734ed0e680a4e7aa61dd0d100b",118 "reference": " f084123371dbfc734ed0e680a4e7aa61dd0d100b",374 "reference": "6d0b4ca7fd1e3d5b27992a2d8321768eb484873e" 375 }, 376 "dist": { 377 "type": "zip", 378 "url": "https://api.github.com/repos/10quality/wpmvc-phpfastcache/zipball/6d0b4ca7fd1e3d5b27992a2d8321768eb484873e", 379 "reference": "6d0b4ca7fd1e3d5b27992a2d8321768eb484873e", 119 380 "shasum": "" 120 381 }, … … 129 390 "sami/sami": "dev-master" 130 391 }, 131 "time": "20 16-10-25T23:32:37+00:00",392 "time": "2020-01-09T23:19:53+00:00", 132 393 "type": "library", 133 394 "installation-source": "source", … … 163 424 } 164 425 ], 165 "description": "Forked version that works with Word press MVC.",426 "description": "Forked version that works with WordPress MVC.", 166 427 "homepage": "http://www.phpfastcache.com", 167 428 "keywords": [ 168 429 "cache" 169 ]170 },171 {172 "name": "nikic/php-parser",173 "version": "2.x-dev",174 "version_normalized": "2.9999999.9999999.9999999-dev",175 "source": {176 "type": "git",177 "url": "https://github.com/nikic/PHP-Parser.git",178 "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0"179 },180 "dist": {181 "type": "zip",182 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4dd659edadffdc2143e4753df655d866dbfeedf0",183 "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0",184 "shasum": ""185 },186 "require": {187 "ext-tokenizer": "*",188 "php": ">=5.4"189 },190 "require-dev": {191 "phpunit/phpunit": "~4.0"192 },193 "time": "2016-09-16T12:04:44+00:00",194 "bin": [195 "bin/php-parse"196 ],197 "type": "library",198 "extra": {199 "branch-alias": {200 "dev-master": "2.1-dev"201 }202 },203 "installation-source": "source",204 "autoload": {205 "psr-4": {206 "PhpParser\\": "lib/PhpParser"207 }208 },209 "notification-url": "https://packagist.org/downloads/",210 "license": [211 "BSD-3-Clause"212 ],213 "authors": [214 {215 "name": "Nikita Popov"216 }217 ],218 "description": "A PHP parser written in PHP",219 "keywords": [220 "parser",221 "php"222 430 ] 223 431 }, … … 229 437 "type": "git", 230 438 "url": "https://github.com/10quality/ayuco.git", 231 "reference": " 413481dd2d725c31e70ef63bbb3b77d9f9bf9b07"232 }, 233 "dist": { 234 "type": "zip", 235 "url": "https://api.github.com/repos/10quality/ayuco/zipball/ 413481dd2d725c31e70ef63bbb3b77d9f9bf9b07",236 "reference": " 413481dd2d725c31e70ef63bbb3b77d9f9bf9b07",237 "shasum": "" 238 }, 239 "require-dev": { 240 "phpunit/phpunit": " 4.4.*"241 }, 242 "time": "20 16-05-14T09:07:34+00:00",439 "reference": "6c4d11232dc7b80ebb87c7899db98c76829e1a63" 440 }, 441 "dist": { 442 "type": "zip", 443 "url": "https://api.github.com/repos/10quality/ayuco/zipball/6c4d11232dc7b80ebb87c7899db98c76829e1a63", 444 "reference": "6c4d11232dc7b80ebb87c7899db98c76829e1a63", 445 "shasum": "" 446 }, 447 "require-dev": { 448 "phpunit/phpunit": "8.0.*" 449 }, 450 "time": "2020-01-25T07:57:28+00:00", 243 451 "type": "library", 244 452 "installation-source": "source", … … 269 477 "php" 270 478 ] 271 },272 {273 "name": "10quality/wpmvc-commands",274 "version": "v1.0.x-dev",275 "version_normalized": "1.0.9999999.9999999-dev",276 "source": {277 "type": "git",278 "url": "https://github.com/10quality/wpmvc-commands.git",279 "reference": "283016f921589c0161bda9064cd8a879bc82f9de"280 },281 "dist": {282 "type": "zip",283 "url": "https://api.github.com/repos/10quality/wpmvc-commands/zipball/283016f921589c0161bda9064cd8a879bc82f9de",284 "reference": "283016f921589c0161bda9064cd8a879bc82f9de",285 "shasum": ""286 },287 "require": {288 "10quality/ayuco": "^1.0",289 "nikic/php-parser": "^2.1",290 "php": ">=5.4.0"291 },292 "time": "2017-04-21T18:45:32+00:00",293 "type": "library",294 "installation-source": "source",295 "autoload": {296 "psr-4": {297 "WPMVC\\Commands\\": "src"298 }299 },300 "notification-url": "https://packagist.org/downloads/",301 "license": [302 "MIT"303 ],304 "authors": [305 {306 "name": "Alejandro Mostajo",307 "email": "amostajo@gmail.com"308 }309 ],310 "description": "Ayuco commands/jobs for Wordpress MVC.",311 "keywords": [312 "ayuco",313 "jobs",314 "mvc",315 "wordpress"316 ]317 },318 {319 "name": "10quality/wp-file",320 "version": "v0.9.4",321 "version_normalized": "0.9.4.0",322 "source": {323 "type": "git",324 "url": "https://github.com/10quality/wp-file.git",325 "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b"326 },327 "dist": {328 "type": "zip",329 "url": "https://api.github.com/repos/10quality/wp-file/zipball/282f0f6733a9e18b392a8b9999dcd8949275a77b",330 "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b",331 "shasum": ""332 },333 "require": {334 "php": ">=5.2"335 },336 "require-dev": {337 "phpunit/phpunit": "4.4.*"338 },339 "time": "2018-06-12T20:43:25+00:00",340 "type": "library",341 "installation-source": "dist",342 "autoload": {343 "psr-4": {344 "TenQuality\\WP\\": "src"345 }346 },347 "notification-url": "https://packagist.org/downloads/",348 "license": [349 "MIT"350 ],351 "authors": [352 {353 "name": "Alejandro Mostajo",354 "email": "amostajo@gmail.com"355 },356 {357 "name": "10 Quality",358 "email": "info@10quality.com"359 }360 ],361 "description": "Small class library that facilitates file handling in Wordpress.",362 "keywords": [363 "file",364 "filesystem",365 "wordpress"366 ]367 },368 {369 "name": "10quality/wpmvc-mvc",370 "version": "v2.1.6",371 "version_normalized": "2.1.6.0",372 "source": {373 "type": "git",374 "url": "https://github.com/10quality/wpmvc-mvc.git",375 "reference": "f90689907b6f1eab368a14e859e37bd16e87286c"376 },377 "dist": {378 "type": "zip",379 "url": "https://api.github.com/repos/10quality/wpmvc-mvc/zipball/f90689907b6f1eab368a14e859e37bd16e87286c",380 "reference": "f90689907b6f1eab368a14e859e37bd16e87286c",381 "shasum": ""382 },383 "require": {384 "php": ">=5.4.0"385 },386 "require-dev": {387 "phpunit/phpunit": "7.5.*"388 },389 "time": "2019-06-04T21:22:07+00:00",390 "type": "library",391 "installation-source": "dist",392 "autoload": {393 "psr-4": {394 "WPMVC\\MVC\\": "src"395 }396 },397 "notification-url": "https://packagist.org/downloads/",398 "license": [399 "MIT"400 ],401 "authors": [402 {403 "name": "Alejandro Mostajo",404 "email": "amostajo@gmail.com"405 },406 {407 "name": "10Quality",408 "email": "info@10quality.com"409 }410 ],411 "description": "Lightweight MVC for WPMVC (Wordpress MVC framework).",412 "keywords": [413 "light",414 "lightweight",415 "mvc",416 "wordpress"417 ]418 },419 {420 "name": "10quality/wpmvc-core",421 "version": "v3.1.8",422 "version_normalized": "3.1.8.0",423 "source": {424 "type": "git",425 "url": "https://github.com/10quality/wpmvc-core.git",426 "reference": "ea6981d478141087c5de83dcee55901156f1599c"427 },428 "dist": {429 "type": "zip",430 "url": "https://api.github.com/repos/10quality/wpmvc-core/zipball/ea6981d478141087c5de83dcee55901156f1599c",431 "reference": "ea6981d478141087c5de83dcee55901156f1599c",432 "shasum": ""433 },434 "require": {435 "10quality/wpmvc-logger": "2.0.*",436 "10quality/wpmvc-mvc": "2.1.*",437 "10quality/wpmvc-phpfastcache": "4.0.*",438 "php": ">=5.4.0"439 },440 "require-dev": {441 "10quality/wpmvc-commands": "1.0.*",442 "phpunit/phpunit": "7.5.*"443 },444 "time": "2019-12-14T01:30:41+00:00",445 "type": "library",446 "installation-source": "source",447 "autoload": {448 "files": [449 "src/lib/functions.php"450 ],451 "psr-4": {452 "WPMVC\\": "src/psr4"453 }454 },455 "notification-url": "https://packagist.org/downloads/",456 "license": [457 "MIT"458 ],459 "authors": [460 {461 "name": "10 Quality",462 "email": "info@10quality.com"463 },464 {465 "name": "Alejandro Mostajo",466 "email": "amostajo@gmail.com"467 }468 ],469 "description": "Wordpress MVC crore plugin.",470 "keywords": [471 "core",472 "mvc",473 "wordpress"474 ]475 479 } 476 480 ]
Note: See TracChangeset
for help on using the changeset viewer.