Changeset 2990646
- Timestamp:
- 11/07/2023 11:11:08 AM (2 years ago)
- Location:
- acf-rrule-field
- Files:
-
- 26 edited
- 1 copied
-
tags/1.3.3 (copied) (copied from acf-rrule-field/trunk)
-
tags/1.3.3/README.md (modified) (1 diff)
-
tags/1.3.3/acf-rrule.php (modified) (2 diffs)
-
tags/1.3.3/composer.json (modified) (2 diffs)
-
tags/1.3.3/composer.lock (modified) (2 diffs)
-
tags/1.3.3/fields/class-acf-field-rrule.php (modified) (1 diff)
-
tags/1.3.3/readme.txt (modified) (2 diffs)
-
tags/1.3.3/vendor/autoload.php (modified) (1 diff)
-
tags/1.3.3/vendor/composer/ClassLoader.php (modified) (25 diffs)
-
tags/1.3.3/vendor/composer/InstalledVersions.php (modified) (4 diffs)
-
tags/1.3.3/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/1.3.3/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/1.3.3/vendor/composer/installed.json (modified) (1 diff)
-
tags/1.3.3/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/README.md (modified) (1 diff)
-
trunk/acf-rrule.php (modified) (2 diffs)
-
trunk/composer.json (modified) (2 diffs)
-
trunk/composer.lock (modified) (2 diffs)
-
trunk/fields/class-acf-field-rrule.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/ClassLoader.php (modified) (25 diffs)
-
trunk/vendor/composer/InstalledVersions.php (modified) (4 diffs)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.json (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
acf-rrule-field/tags/1.3.3/README.md
r2525762 r2990646 13 13 The RRule field returns an array with the following arguments: 14 14 15 **rrule** *(string)* 16 The RRule string for your recurring rule 15 **rrule** *(string)* 16 The RRule string for your recurring rule 17 17 18 **start_date** *(string)* 19 The start date for the recurrence 18 **start_date** *(string)* 19 The start date for the recurrence 20 20 21 **start_time** *(string)* 22 The start time for the recurrence 21 **start_time** *(string)* 22 The start time for the recurrence 23 23 24 **frequency** *(string)* 25 The frequency for the recurrence (DAILY, WEEKLY, MONTHLY or YEARLY) 24 **frequency** *(string)* 25 The frequency for the recurrence (DAILY, WEEKLY, MONTHLY or YEARLY) 26 26 27 **interval** *(int)* 28 The interval set for the frequency 27 **interval** *(int)* 28 The interval set for the frequency 29 29 30 **weekdays** *(array)* 31 An array of days for the weekly frequency 30 **weekdays** *(array)* 31 An array of days for the weekly frequency 32 32 33 **monthdays** *(array)* 34 An array of days for the monthly frequency 33 **monthdays** *(array)* 34 An array of days for the monthly frequency 35 35 36 **months** *(array)* 37 An array of months for the yearly frequency 36 **months** *(array)* 37 An array of months for the yearly frequency 38 38 39 **monthly_by** *(string)* 40 The selected option between "monthdays" and "setpos" for the monthly frequency 39 **monthly_by** *(string)* 40 The selected option between "monthdays" and "setpos" for the monthly frequency 41 41 42 **bysetpos** *(array)* 43 The starting numbers for the monthly "setpos" option 42 **bysetpos** *(array)* 43 The starting numbers for the monthly "setpos" option 44 44 45 **byweekday** *(array)* 46 The selected days for the monthly "setpos" option 45 **byweekday** *(array)* 46 The selected days for the monthly "setpos" option 47 47 48 **end_type** *(string)* 49 The end of the recurrence between "date" and "count" 48 **end_type** *(string)* 49 The end of the recurrence between "date" and "count" 50 50 51 **end_date** *(string)* 52 The end date in YYYYMMDD format for the recurrence when `end_type` is set to "date" 51 **end_date** *(string)* 52 The end date in YYYYMMDD format for the recurrence when `end_type` is set to "date" 53 53 54 **occurence_count** *(int)* 55 The number of occurences for the recurrence when `end_type` is set to "count" 54 **occurence_count** *(int)* 55 The number of occurences for the recurrence when `end_type` is set to "count" 56 56 57 **dates_collection** *(array)* 58 An array containing all the DateTime objects generated by your recurring rule 57 **dates_collection** *(array)* 58 An array containing all the DateTime objects generated by your recurring rule 59 59 60 **text** *(string)* 61 A text representation for your recurring rule 60 **text** *(string)* 61 A text representation for your recurring rule 62 63 ## Testing 64 65 ``` 66 vendor/bin/phpcs -p . --standard=PHPCompatibilityWP --extensions=php --runtime-set testVersion 7.2- 67 ``` -
acf-rrule-field/tags/1.3.3/acf-rrule.php
r2987995 r2990646 5 5 Plugin URI: https://github.com/marcbelletre/acf-rrule 6 6 Description: Create recurring rules with a single ACF field 7 Version: 1.3. 27 Version: 1.3.3 8 8 Author: Marc Bellêtre 9 9 Author URI: https://pixelparfait.fr … … 45 45 // - these will be passed into the field class. 46 46 $this->settings = [ 47 'version' => '1.3. 2',47 'version' => '1.3.3', 48 48 'url' => plugin_dir_url(__FILE__), 49 49 'path' => plugin_dir_path(__FILE__), -
acf-rrule-field/tags/1.3.3/composer.json
r2980532 r2990646 21 21 }, 22 22 "require": { 23 "php": "^7.2|^8.0", 23 24 "simshaun/recurr": "^5.0", 24 25 "composer/installers": "^1.0|^2.0" 25 26 }, 27 "require-dev": { 28 "phpcompatibility/php-compatibility": "*", 29 "phpcompatibility/phpcompatibility-wp": "*", 30 "dealerdirect/phpcodesniffer-composer-installer": "^0.7" 31 }, 32 "prefer-stable": true, 26 33 "config": { 27 34 "platform": { … … 29 36 }, 30 37 "allow-plugins": { 31 "composer/installers": true 38 "composer/installers": true, 39 "dealerdirect/phpcodesniffer-composer-installer": true 32 40 } 33 41 } -
acf-rrule-field/tags/1.3.3/composer.lock
r2980532 r2990646 5 5 "This file is @generated automatically" 6 6 ], 7 "content-hash": " 1fc8a2139778a2485c1490b38d60c65f",7 "content-hash": "b943675ffdaa7230f130149014ad684f", 8 8 "packages": [ 9 9 { … … 329 329 } 330 330 ], 331 "packages-dev": [], 331 "packages-dev": [ 332 { 333 "name": "dealerdirect/phpcodesniffer-composer-installer", 334 "version": "v0.7.2", 335 "source": { 336 "type": "git", 337 "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", 338 "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db" 339 }, 340 "dist": { 341 "type": "zip", 342 "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", 343 "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", 344 "shasum": "" 345 }, 346 "require": { 347 "composer-plugin-api": "^1.0 || ^2.0", 348 "php": ">=5.3", 349 "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" 350 }, 351 "require-dev": { 352 "composer/composer": "*", 353 "php-parallel-lint/php-parallel-lint": "^1.3.1", 354 "phpcompatibility/php-compatibility": "^9.0" 355 }, 356 "type": "composer-plugin", 357 "extra": { 358 "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" 359 }, 360 "autoload": { 361 "psr-4": { 362 "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" 363 } 364 }, 365 "notification-url": "https://packagist.org/downloads/", 366 "license": [ 367 "MIT" 368 ], 369 "authors": [ 370 { 371 "name": "Franck Nijhof", 372 "email": "[email protected]", 373 "homepage": "http://www.frenck.nl", 374 "role": "Developer / IT Manager" 375 }, 376 { 377 "name": "Contributors", 378 "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors" 379 } 380 ], 381 "description": "PHP_CodeSniffer Standards Composer Installer Plugin", 382 "homepage": "http://www.dealerdirect.com", 383 "keywords": [ 384 "PHPCodeSniffer", 385 "PHP_CodeSniffer", 386 "code quality", 387 "codesniffer", 388 "composer", 389 "installer", 390 "phpcbf", 391 "phpcs", 392 "plugin", 393 "qa", 394 "quality", 395 "standard", 396 "standards", 397 "style guide", 398 "stylecheck", 399 "tests" 400 ], 401 "support": { 402 "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", 403 "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" 404 }, 405 "time": "2022-02-04T12:51:07+00:00" 406 }, 407 { 408 "name": "phpcompatibility/php-compatibility", 409 "version": "9.3.5", 410 "source": { 411 "type": "git", 412 "url": "https://github.com/PHPCompatibility/PHPCompatibility.git", 413 "reference": "9fb324479acf6f39452e0655d2429cc0d3914243" 414 }, 415 "dist": { 416 "type": "zip", 417 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243", 418 "reference": "9fb324479acf6f39452e0655d2429cc0d3914243", 419 "shasum": "" 420 }, 421 "require": { 422 "php": ">=5.3", 423 "squizlabs/php_codesniffer": "^2.3 || ^3.0.2" 424 }, 425 "conflict": { 426 "squizlabs/php_codesniffer": "2.6.2" 427 }, 428 "require-dev": { 429 "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0" 430 }, 431 "suggest": { 432 "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.", 433 "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." 434 }, 435 "type": "phpcodesniffer-standard", 436 "notification-url": "https://packagist.org/downloads/", 437 "license": [ 438 "LGPL-3.0-or-later" 439 ], 440 "authors": [ 441 { 442 "name": "Wim Godden", 443 "homepage": "https://github.com/wimg", 444 "role": "lead" 445 }, 446 { 447 "name": "Juliette Reinders Folmer", 448 "homepage": "https://github.com/jrfnl", 449 "role": "lead" 450 }, 451 { 452 "name": "Contributors", 453 "homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors" 454 } 455 ], 456 "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.", 457 "homepage": "http://techblog.wimgodden.be/tag/codesniffer/", 458 "keywords": [ 459 "compatibility", 460 "phpcs", 461 "standards" 462 ], 463 "support": { 464 "issues": "https://github.com/PHPCompatibility/PHPCompatibility/issues", 465 "source": "https://github.com/PHPCompatibility/PHPCompatibility" 466 }, 467 "time": "2019-12-27T09:44:58+00:00" 468 }, 469 { 470 "name": "phpcompatibility/phpcompatibility-paragonie", 471 "version": "1.3.2", 472 "source": { 473 "type": "git", 474 "url": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie.git", 475 "reference": "bba5a9dfec7fcfbd679cfaf611d86b4d3759da26" 476 }, 477 "dist": { 478 "type": "zip", 479 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityParagonie/zipball/bba5a9dfec7fcfbd679cfaf611d86b4d3759da26", 480 "reference": "bba5a9dfec7fcfbd679cfaf611d86b4d3759da26", 481 "shasum": "" 482 }, 483 "require": { 484 "phpcompatibility/php-compatibility": "^9.0" 485 }, 486 "require-dev": { 487 "dealerdirect/phpcodesniffer-composer-installer": "^0.7", 488 "paragonie/random_compat": "dev-master", 489 "paragonie/sodium_compat": "dev-master" 490 }, 491 "suggest": { 492 "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.", 493 "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." 494 }, 495 "type": "phpcodesniffer-standard", 496 "notification-url": "https://packagist.org/downloads/", 497 "license": [ 498 "LGPL-3.0-or-later" 499 ], 500 "authors": [ 501 { 502 "name": "Wim Godden", 503 "role": "lead" 504 }, 505 { 506 "name": "Juliette Reinders Folmer", 507 "role": "lead" 508 } 509 ], 510 "description": "A set of rulesets for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by the Paragonie polyfill libraries.", 511 "homepage": "http://phpcompatibility.com/", 512 "keywords": [ 513 "compatibility", 514 "paragonie", 515 "phpcs", 516 "polyfill", 517 "standards", 518 "static analysis" 519 ], 520 "support": { 521 "issues": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie/issues", 522 "source": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie" 523 }, 524 "time": "2022-10-25T01:46:02+00:00" 525 }, 526 { 527 "name": "phpcompatibility/phpcompatibility-wp", 528 "version": "2.1.4", 529 "source": { 530 "type": "git", 531 "url": "https://github.com/PHPCompatibility/PHPCompatibilityWP.git", 532 "reference": "b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5" 533 }, 534 "dist": { 535 "type": "zip", 536 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityWP/zipball/b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5", 537 "reference": "b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5", 538 "shasum": "" 539 }, 540 "require": { 541 "phpcompatibility/php-compatibility": "^9.0", 542 "phpcompatibility/phpcompatibility-paragonie": "^1.0" 543 }, 544 "require-dev": { 545 "dealerdirect/phpcodesniffer-composer-installer": "^0.7" 546 }, 547 "suggest": { 548 "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.", 549 "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." 550 }, 551 "type": "phpcodesniffer-standard", 552 "notification-url": "https://packagist.org/downloads/", 553 "license": [ 554 "LGPL-3.0-or-later" 555 ], 556 "authors": [ 557 { 558 "name": "Wim Godden", 559 "role": "lead" 560 }, 561 { 562 "name": "Juliette Reinders Folmer", 563 "role": "lead" 564 } 565 ], 566 "description": "A ruleset for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by WordPress.", 567 "homepage": "http://phpcompatibility.com/", 568 "keywords": [ 569 "compatibility", 570 "phpcs", 571 "standards", 572 "static analysis", 573 "wordpress" 574 ], 575 "support": { 576 "issues": "https://github.com/PHPCompatibility/PHPCompatibilityWP/issues", 577 "source": "https://github.com/PHPCompatibility/PHPCompatibilityWP" 578 }, 579 "time": "2022-10-24T09:00:36+00:00" 580 }, 581 { 582 "name": "squizlabs/php_codesniffer", 583 "version": "3.7.2", 584 "source": { 585 "type": "git", 586 "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", 587 "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879" 588 }, 589 "dist": { 590 "type": "zip", 591 "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879", 592 "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879", 593 "shasum": "" 594 }, 595 "require": { 596 "ext-simplexml": "*", 597 "ext-tokenizer": "*", 598 "ext-xmlwriter": "*", 599 "php": ">=5.4.0" 600 }, 601 "require-dev": { 602 "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" 603 }, 604 "bin": [ 605 "bin/phpcs", 606 "bin/phpcbf" 607 ], 608 "type": "library", 609 "extra": { 610 "branch-alias": { 611 "dev-master": "3.x-dev" 612 } 613 }, 614 "notification-url": "https://packagist.org/downloads/", 615 "license": [ 616 "BSD-3-Clause" 617 ], 618 "authors": [ 619 { 620 "name": "Greg Sherwood", 621 "role": "lead" 622 } 623 ], 624 "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", 625 "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", 626 "keywords": [ 627 "phpcs", 628 "standards", 629 "static analysis" 630 ], 631 "support": { 632 "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", 633 "source": "https://github.com/squizlabs/PHP_CodeSniffer", 634 "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" 635 }, 636 "time": "2023-02-22T23:07:41+00:00" 637 } 638 ], 332 639 "aliases": [], 333 640 "minimum-stability": "stable", 334 641 "stability-flags": [], 335 "prefer-stable": false,642 "prefer-stable": true, 336 643 "prefer-lowest": false, 337 "platform": [], 644 "platform": { 645 "php": "^7.2|^8.0" 646 }, 338 647 "platform-dev": [], 339 648 "platform-overrides": { -
acf-rrule-field/tags/1.3.3/fields/class-acf-field-rrule.php
r2987995 r2990646 709 709 710 710 $new_value['rrule'] = $value; 711 $new_value['start_date'] = $start_date ?->format('Ymd');712 $new_value['start_time'] = $start_date ?->format('H:i:s');711 $new_value['start_date'] = $start_date ? $start_date->format('Ymd') : null; 712 $new_value['start_time'] = $start_date ? $start_date->format('H:i:s') : null; 713 713 $new_value['frequency'] = $rule->getFreqAsText(); 714 714 $new_value['interval'] = $rule->getInterval(); -
acf-rrule-field/tags/1.3.3/readme.txt
r2987995 r2990646 5 5 Tested up to: 6.3 6 6 Requires PHP: 7.2 7 Stable tag: 1.3. 27 Stable tag: 1.3.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 31 31 32 32 == Changelog == 33 34 = 1.3.3 = 35 * Fix compatibility with PHP >= 7.2 33 36 34 37 = 1.3.2 = -
acf-rrule-field/tags/1.3.3/vendor/autoload.php
r2980521 r2990646 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 4a251035d1d75c9695da4888dd8489e1::getLoader();25 return ComposerAutoloaderInitc35fcbe54628f3a3a961b0147fa06c59::getLoader(); -
acf-rrule-field/tags/1.3.3/vendor/composer/ClassLoader.php
r2980521 r2990646 43 43 class ClassLoader 44 44 { 45 /** @var \Closure(string):void */ 46 private static $includeFile; 47 48 /** @var string|null */ 45 /** @var ?string */ 49 46 private $vendorDir; 50 47 51 48 // PSR-4 52 49 /** 53 * @var array<string, array<string, int>> 50 * @var array[] 51 * @psalm-var array<string, array<string, int>> 54 52 */ 55 53 private $prefixLengthsPsr4 = array(); 56 54 /** 57 * @var array<string, list<string>> 55 * @var array[] 56 * @psalm-var array<string, array<int, string>> 58 57 */ 59 58 private $prefixDirsPsr4 = array(); 60 59 /** 61 * @var list<string> 60 * @var array[] 61 * @psalm-var array<string, string> 62 62 */ 63 63 private $fallbackDirsPsr4 = array(); … … 65 65 // PSR-0 66 66 /** 67 * List of PSR-0 prefixes 68 * 69 * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2'))) 70 * 71 * @var array<string, array<string, list<string>>> 67 * @var array[] 68 * @psalm-var array<string, array<string, string[]>> 72 69 */ 73 70 private $prefixesPsr0 = array(); 74 71 /** 75 * @var list<string> 72 * @var array[] 73 * @psalm-var array<string, string> 76 74 */ 77 75 private $fallbackDirsPsr0 = array(); … … 81 79 82 80 /** 83 * @var array<string, string> 81 * @var string[] 82 * @psalm-var array<string, string> 84 83 */ 85 84 private $classMap = array(); … … 89 88 90 89 /** 91 * @var array<string, bool> 90 * @var bool[] 91 * @psalm-var array<string, bool> 92 92 */ 93 93 private $missingClasses = array(); 94 94 95 /** @var string|null*/95 /** @var ?string */ 96 96 private $apcuPrefix; 97 97 98 98 /** 99 * @var array<string, self>99 * @var self[] 100 100 */ 101 101 private static $registeredLoaders = array(); 102 102 103 103 /** 104 * @param string|null$vendorDir104 * @param ?string $vendorDir 105 105 */ 106 106 public function __construct($vendorDir = null) 107 107 { 108 108 $this->vendorDir = $vendorDir; 109 self::initializeIncludeClosure(); 110 } 111 112 /** 113 * @return array<string, list<string>> 109 } 110 111 /** 112 * @return string[] 114 113 */ 115 114 public function getPrefixes() … … 123 122 124 123 /** 125 * @return array<string, list<string>> 124 * @return array[] 125 * @psalm-return array<string, array<int, string>> 126 126 */ 127 127 public function getPrefixesPsr4() … … 131 131 132 132 /** 133 * @return list<string> 133 * @return array[] 134 * @psalm-return array<string, string> 134 135 */ 135 136 public function getFallbackDirs() … … 139 140 140 141 /** 141 * @return list<string> 142 * @return array[] 143 * @psalm-return array<string, string> 142 144 */ 143 145 public function getFallbackDirsPsr4() … … 147 149 148 150 /** 149 * @return array<string, string> Array of classname => path 151 * @return string[] Array of classname => path 152 * @psalm-return array<string, string> 150 153 */ 151 154 public function getClassMap() … … 155 158 156 159 /** 157 * @param array<string, string> $classMap Class to filename map 160 * @param string[] $classMap Class to filename map 161 * @psalm-param array<string, string> $classMap 158 162 * 159 163 * @return void … … 172 176 * appending or prepending to the ones previously set for this prefix. 173 177 * 174 * @param string $prefix The prefix175 * @param list<string>|string $paths The PSR-0 root directories176 * @param bool $prepend Whether to prepend the directories178 * @param string $prefix The prefix 179 * @param string[]|string $paths The PSR-0 root directories 180 * @param bool $prepend Whether to prepend the directories 177 181 * 178 182 * @return void … … 180 184 public function add($prefix, $paths, $prepend = false) 181 185 { 182 $paths = (array) $paths;183 186 if (!$prefix) { 184 187 if ($prepend) { 185 188 $this->fallbackDirsPsr0 = array_merge( 186 $paths,189 (array) $paths, 187 190 $this->fallbackDirsPsr0 188 191 ); … … 190 193 $this->fallbackDirsPsr0 = array_merge( 191 194 $this->fallbackDirsPsr0, 192 $paths195 (array) $paths 193 196 ); 194 197 } … … 199 202 $first = $prefix[0]; 200 203 if (!isset($this->prefixesPsr0[$first][$prefix])) { 201 $this->prefixesPsr0[$first][$prefix] = $paths;204 $this->prefixesPsr0[$first][$prefix] = (array) $paths; 202 205 203 206 return; … … 205 208 if ($prepend) { 206 209 $this->prefixesPsr0[$first][$prefix] = array_merge( 207 $paths,210 (array) $paths, 208 211 $this->prefixesPsr0[$first][$prefix] 209 212 ); … … 211 214 $this->prefixesPsr0[$first][$prefix] = array_merge( 212 215 $this->prefixesPsr0[$first][$prefix], 213 $paths216 (array) $paths 214 217 ); 215 218 } … … 220 223 * appending or prepending to the ones previously set for this namespace. 221 224 * 222 * @param string $prefix The prefix/namespace, with trailing '\\'223 * @param list<string>|string $paths The PSR-4 base directories224 * @param bool $prepend Whether to prepend the directories225 * @param string $prefix The prefix/namespace, with trailing '\\' 226 * @param string[]|string $paths The PSR-4 base directories 227 * @param bool $prepend Whether to prepend the directories 225 228 * 226 229 * @throws \InvalidArgumentException … … 230 233 public function addPsr4($prefix, $paths, $prepend = false) 231 234 { 232 $paths = (array) $paths;233 235 if (!$prefix) { 234 236 // Register directories for the root namespace. 235 237 if ($prepend) { 236 238 $this->fallbackDirsPsr4 = array_merge( 237 $paths,239 (array) $paths, 238 240 $this->fallbackDirsPsr4 239 241 ); … … 241 243 $this->fallbackDirsPsr4 = array_merge( 242 244 $this->fallbackDirsPsr4, 243 $paths245 (array) $paths 244 246 ); 245 247 } … … 251 253 } 252 254 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; 253 $this->prefixDirsPsr4[$prefix] = $paths;255 $this->prefixDirsPsr4[$prefix] = (array) $paths; 254 256 } elseif ($prepend) { 255 257 // Prepend directories for an already registered namespace. 256 258 $this->prefixDirsPsr4[$prefix] = array_merge( 257 $paths,259 (array) $paths, 258 260 $this->prefixDirsPsr4[$prefix] 259 261 ); … … 262 264 $this->prefixDirsPsr4[$prefix] = array_merge( 263 265 $this->prefixDirsPsr4[$prefix], 264 $paths266 (array) $paths 265 267 ); 266 268 } … … 271 273 * replacing any others previously set for this prefix. 272 274 * 273 * @param string $prefix The prefix274 * @param list<string>|string $paths The PSR-0 base directories275 * @param string $prefix The prefix 276 * @param string[]|string $paths The PSR-0 base directories 275 277 * 276 278 * @return void … … 289 291 * replacing any others previously set for this namespace. 290 292 * 291 * @param string $prefix The prefix/namespace, with trailing '\\'292 * @param list<string>|string $paths The PSR-4 base directories293 * @param string $prefix The prefix/namespace, with trailing '\\' 294 * @param string[]|string $paths The PSR-4 base directories 293 295 * 294 296 * @throws \InvalidArgumentException … … 424 426 { 425 427 if ($file = $this->findFile($class)) { 426 $includeFile = self::$includeFile; 427 $includeFile($file); 428 includeFile($file); 428 429 429 430 return true; … … 476 477 477 478 /** 478 * Returns the currently registered loaders keyed by their corresponding vendor directories.479 * 480 * @return array<string, self>479 * Returns the currently registered loaders indexed by their corresponding vendor directories. 480 * 481 * @return self[] 481 482 */ 482 483 public static function getRegisteredLoaders() … … 555 556 return false; 556 557 } 557 558 /**559 * @return void560 */561 private static function initializeIncludeClosure()562 {563 if (self::$includeFile !== null) {564 return;565 }566 567 /**568 * Scope isolated include.569 *570 * Prevents access to $this/self from included files.571 *572 * @param string $file573 * @return void574 */575 self::$includeFile = \Closure::bind(static function($file) {576 include $file;577 }, null, null);578 }579 558 } 559 560 /** 561 * Scope isolated include. 562 * 563 * Prevents access to $this/self from included files. 564 * 565 * @param string $file 566 * @return void 567 * @private 568 */ 569 function includeFile($file) 570 { 571 include $file; 572 } -
acf-rrule-field/tags/1.3.3/vendor/composer/InstalledVersions.php
r2980521 r2990646 99 99 foreach (self::getInstalled() as $installed) { 100 100 if (isset($installed['versions'][$packageName])) { 101 return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;101 return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']); 102 102 } 103 103 } … … 120 120 public static function satisfies(VersionParser $parser, $packageName, $constraint) 121 121 { 122 $constraint = $parser->parseConstraints( (string)$constraint);122 $constraint = $parser->parseConstraints($constraint); 123 123 $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); 124 124 … … 329 329 $installed[] = self::$installedByVendor[$vendorDir]; 330 330 } elseif (is_file($vendorDir.'/composer/installed.php')) { 331 /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */ 332 $required = require $vendorDir.'/composer/installed.php'; 333 $installed[] = self::$installedByVendor[$vendorDir] = $required; 331 $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php'; 334 332 if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { 335 333 self::$installed = $installed[count($installed) - 1]; … … 343 341 // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 344 342 if (substr(__DIR__, -8, 1) !== 'C') { 345 /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */ 346 $required = require __DIR__ . '/installed.php'; 347 self::$installed = $required; 343 self::$installed = require __DIR__ . '/installed.php'; 348 344 } else { 349 345 self::$installed = array(); 350 346 } 351 347 } 352 353 if (self::$installed !== array()) { 354 $installed[] = self::$installed; 355 } 348 $installed[] = self::$installed; 356 349 357 350 return $installed; -
acf-rrule-field/tags/1.3.3/vendor/composer/autoload_real.php
r2980521 r2990646 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 4a251035d1d75c9695da4888dd8489e15 class ComposerAutoloaderInitc35fcbe54628f3a3a961b0147fa06c59 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 4a251035d1d75c9695da4888dd8489e1', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitc35fcbe54628f3a3a961b0147fa06c59', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 4a251035d1d75c9695da4888dd8489e1', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitc35fcbe54628f3a3a961b0147fa06c59', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 4a251035d1d75c9695da4888dd8489e1::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInitc35fcbe54628f3a3a961b0147fa06c59::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
acf-rrule-field/tags/1.3.3/vendor/composer/autoload_static.php
r2980521 r2990646 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 4a251035d1d75c9695da4888dd8489e17 class ComposerStaticInitc35fcbe54628f3a3a961b0147fa06c59 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 49 49 { 50 50 return \Closure::bind(function () use ($loader) { 51 $loader->prefixLengthsPsr4 = ComposerStaticInit 4a251035d1d75c9695da4888dd8489e1::$prefixLengthsPsr4;52 $loader->prefixDirsPsr4 = ComposerStaticInit 4a251035d1d75c9695da4888dd8489e1::$prefixDirsPsr4;53 $loader->classMap = ComposerStaticInit 4a251035d1d75c9695da4888dd8489e1::$classMap;51 $loader->prefixLengthsPsr4 = ComposerStaticInitc35fcbe54628f3a3a961b0147fa06c59::$prefixLengthsPsr4; 52 $loader->prefixDirsPsr4 = ComposerStaticInitc35fcbe54628f3a3a961b0147fa06c59::$prefixDirsPsr4; 53 $loader->classMap = ComposerStaticInitc35fcbe54628f3a3a961b0147fa06c59::$classMap; 54 54 55 55 }, null, ClassLoader::class); -
acf-rrule-field/tags/1.3.3/vendor/composer/installed.json
r2980521 r2990646 335 335 } 336 336 ], 337 "dev": true,337 "dev": false, 338 338 "dev-package-names": [] 339 339 } -
acf-rrule-field/tags/1.3.3/vendor/composer/installed.php
r2980546 r2990646 2 2 'root' => array( 3 3 'name' => 'marcbelletre/acf-rrule', 4 'pretty_version' => ' dev-master',5 'version' => ' dev-master',6 'reference' => 'd12b0a3126638fcfb2a5901e6dd93c177a2692b7',4 'pretty_version' => '1.0.0+no-version-set', 5 'version' => '1.0.0.0', 6 'reference' => NULL, 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', 9 9 'aliases' => array(), 10 'dev' => true,10 'dev' => false, 11 11 ), 12 12 'versions' => array( … … 39 39 ), 40 40 'marcbelletre/acf-rrule' => array( 41 'pretty_version' => ' dev-master',42 'version' => ' dev-master',43 'reference' => 'd12b0a3126638fcfb2a5901e6dd93c177a2692b7',41 'pretty_version' => '1.0.0+no-version-set', 42 'version' => '1.0.0.0', 43 'reference' => NULL, 44 44 'type' => 'wordpress-plugin', 45 45 'install_path' => __DIR__ . '/../../', -
acf-rrule-field/trunk/README.md
r2525762 r2990646 13 13 The RRule field returns an array with the following arguments: 14 14 15 **rrule** *(string)* 16 The RRule string for your recurring rule 15 **rrule** *(string)* 16 The RRule string for your recurring rule 17 17 18 **start_date** *(string)* 19 The start date for the recurrence 18 **start_date** *(string)* 19 The start date for the recurrence 20 20 21 **start_time** *(string)* 22 The start time for the recurrence 21 **start_time** *(string)* 22 The start time for the recurrence 23 23 24 **frequency** *(string)* 25 The frequency for the recurrence (DAILY, WEEKLY, MONTHLY or YEARLY) 24 **frequency** *(string)* 25 The frequency for the recurrence (DAILY, WEEKLY, MONTHLY or YEARLY) 26 26 27 **interval** *(int)* 28 The interval set for the frequency 27 **interval** *(int)* 28 The interval set for the frequency 29 29 30 **weekdays** *(array)* 31 An array of days for the weekly frequency 30 **weekdays** *(array)* 31 An array of days for the weekly frequency 32 32 33 **monthdays** *(array)* 34 An array of days for the monthly frequency 33 **monthdays** *(array)* 34 An array of days for the monthly frequency 35 35 36 **months** *(array)* 37 An array of months for the yearly frequency 36 **months** *(array)* 37 An array of months for the yearly frequency 38 38 39 **monthly_by** *(string)* 40 The selected option between "monthdays" and "setpos" for the monthly frequency 39 **monthly_by** *(string)* 40 The selected option between "monthdays" and "setpos" for the monthly frequency 41 41 42 **bysetpos** *(array)* 43 The starting numbers for the monthly "setpos" option 42 **bysetpos** *(array)* 43 The starting numbers for the monthly "setpos" option 44 44 45 **byweekday** *(array)* 46 The selected days for the monthly "setpos" option 45 **byweekday** *(array)* 46 The selected days for the monthly "setpos" option 47 47 48 **end_type** *(string)* 49 The end of the recurrence between "date" and "count" 48 **end_type** *(string)* 49 The end of the recurrence between "date" and "count" 50 50 51 **end_date** *(string)* 52 The end date in YYYYMMDD format for the recurrence when `end_type` is set to "date" 51 **end_date** *(string)* 52 The end date in YYYYMMDD format for the recurrence when `end_type` is set to "date" 53 53 54 **occurence_count** *(int)* 55 The number of occurences for the recurrence when `end_type` is set to "count" 54 **occurence_count** *(int)* 55 The number of occurences for the recurrence when `end_type` is set to "count" 56 56 57 **dates_collection** *(array)* 58 An array containing all the DateTime objects generated by your recurring rule 57 **dates_collection** *(array)* 58 An array containing all the DateTime objects generated by your recurring rule 59 59 60 **text** *(string)* 61 A text representation for your recurring rule 60 **text** *(string)* 61 A text representation for your recurring rule 62 63 ## Testing 64 65 ``` 66 vendor/bin/phpcs -p . --standard=PHPCompatibilityWP --extensions=php --runtime-set testVersion 7.2- 67 ``` -
acf-rrule-field/trunk/acf-rrule.php
r2987995 r2990646 5 5 Plugin URI: https://github.com/marcbelletre/acf-rrule 6 6 Description: Create recurring rules with a single ACF field 7 Version: 1.3. 27 Version: 1.3.3 8 8 Author: Marc Bellêtre 9 9 Author URI: https://pixelparfait.fr … … 45 45 // - these will be passed into the field class. 46 46 $this->settings = [ 47 'version' => '1.3. 2',47 'version' => '1.3.3', 48 48 'url' => plugin_dir_url(__FILE__), 49 49 'path' => plugin_dir_path(__FILE__), -
acf-rrule-field/trunk/composer.json
r2980532 r2990646 21 21 }, 22 22 "require": { 23 "php": "^7.2|^8.0", 23 24 "simshaun/recurr": "^5.0", 24 25 "composer/installers": "^1.0|^2.0" 25 26 }, 27 "require-dev": { 28 "phpcompatibility/php-compatibility": "*", 29 "phpcompatibility/phpcompatibility-wp": "*", 30 "dealerdirect/phpcodesniffer-composer-installer": "^0.7" 31 }, 32 "prefer-stable": true, 26 33 "config": { 27 34 "platform": { … … 29 36 }, 30 37 "allow-plugins": { 31 "composer/installers": true 38 "composer/installers": true, 39 "dealerdirect/phpcodesniffer-composer-installer": true 32 40 } 33 41 } -
acf-rrule-field/trunk/composer.lock
r2980532 r2990646 5 5 "This file is @generated automatically" 6 6 ], 7 "content-hash": " 1fc8a2139778a2485c1490b38d60c65f",7 "content-hash": "b943675ffdaa7230f130149014ad684f", 8 8 "packages": [ 9 9 { … … 329 329 } 330 330 ], 331 "packages-dev": [], 331 "packages-dev": [ 332 { 333 "name": "dealerdirect/phpcodesniffer-composer-installer", 334 "version": "v0.7.2", 335 "source": { 336 "type": "git", 337 "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", 338 "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db" 339 }, 340 "dist": { 341 "type": "zip", 342 "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", 343 "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", 344 "shasum": "" 345 }, 346 "require": { 347 "composer-plugin-api": "^1.0 || ^2.0", 348 "php": ">=5.3", 349 "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" 350 }, 351 "require-dev": { 352 "composer/composer": "*", 353 "php-parallel-lint/php-parallel-lint": "^1.3.1", 354 "phpcompatibility/php-compatibility": "^9.0" 355 }, 356 "type": "composer-plugin", 357 "extra": { 358 "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" 359 }, 360 "autoload": { 361 "psr-4": { 362 "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" 363 } 364 }, 365 "notification-url": "https://packagist.org/downloads/", 366 "license": [ 367 "MIT" 368 ], 369 "authors": [ 370 { 371 "name": "Franck Nijhof", 372 "email": "[email protected]", 373 "homepage": "http://www.frenck.nl", 374 "role": "Developer / IT Manager" 375 }, 376 { 377 "name": "Contributors", 378 "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors" 379 } 380 ], 381 "description": "PHP_CodeSniffer Standards Composer Installer Plugin", 382 "homepage": "http://www.dealerdirect.com", 383 "keywords": [ 384 "PHPCodeSniffer", 385 "PHP_CodeSniffer", 386 "code quality", 387 "codesniffer", 388 "composer", 389 "installer", 390 "phpcbf", 391 "phpcs", 392 "plugin", 393 "qa", 394 "quality", 395 "standard", 396 "standards", 397 "style guide", 398 "stylecheck", 399 "tests" 400 ], 401 "support": { 402 "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", 403 "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" 404 }, 405 "time": "2022-02-04T12:51:07+00:00" 406 }, 407 { 408 "name": "phpcompatibility/php-compatibility", 409 "version": "9.3.5", 410 "source": { 411 "type": "git", 412 "url": "https://github.com/PHPCompatibility/PHPCompatibility.git", 413 "reference": "9fb324479acf6f39452e0655d2429cc0d3914243" 414 }, 415 "dist": { 416 "type": "zip", 417 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243", 418 "reference": "9fb324479acf6f39452e0655d2429cc0d3914243", 419 "shasum": "" 420 }, 421 "require": { 422 "php": ">=5.3", 423 "squizlabs/php_codesniffer": "^2.3 || ^3.0.2" 424 }, 425 "conflict": { 426 "squizlabs/php_codesniffer": "2.6.2" 427 }, 428 "require-dev": { 429 "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0" 430 }, 431 "suggest": { 432 "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.", 433 "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." 434 }, 435 "type": "phpcodesniffer-standard", 436 "notification-url": "https://packagist.org/downloads/", 437 "license": [ 438 "LGPL-3.0-or-later" 439 ], 440 "authors": [ 441 { 442 "name": "Wim Godden", 443 "homepage": "https://github.com/wimg", 444 "role": "lead" 445 }, 446 { 447 "name": "Juliette Reinders Folmer", 448 "homepage": "https://github.com/jrfnl", 449 "role": "lead" 450 }, 451 { 452 "name": "Contributors", 453 "homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors" 454 } 455 ], 456 "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.", 457 "homepage": "http://techblog.wimgodden.be/tag/codesniffer/", 458 "keywords": [ 459 "compatibility", 460 "phpcs", 461 "standards" 462 ], 463 "support": { 464 "issues": "https://github.com/PHPCompatibility/PHPCompatibility/issues", 465 "source": "https://github.com/PHPCompatibility/PHPCompatibility" 466 }, 467 "time": "2019-12-27T09:44:58+00:00" 468 }, 469 { 470 "name": "phpcompatibility/phpcompatibility-paragonie", 471 "version": "1.3.2", 472 "source": { 473 "type": "git", 474 "url": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie.git", 475 "reference": "bba5a9dfec7fcfbd679cfaf611d86b4d3759da26" 476 }, 477 "dist": { 478 "type": "zip", 479 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityParagonie/zipball/bba5a9dfec7fcfbd679cfaf611d86b4d3759da26", 480 "reference": "bba5a9dfec7fcfbd679cfaf611d86b4d3759da26", 481 "shasum": "" 482 }, 483 "require": { 484 "phpcompatibility/php-compatibility": "^9.0" 485 }, 486 "require-dev": { 487 "dealerdirect/phpcodesniffer-composer-installer": "^0.7", 488 "paragonie/random_compat": "dev-master", 489 "paragonie/sodium_compat": "dev-master" 490 }, 491 "suggest": { 492 "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.", 493 "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." 494 }, 495 "type": "phpcodesniffer-standard", 496 "notification-url": "https://packagist.org/downloads/", 497 "license": [ 498 "LGPL-3.0-or-later" 499 ], 500 "authors": [ 501 { 502 "name": "Wim Godden", 503 "role": "lead" 504 }, 505 { 506 "name": "Juliette Reinders Folmer", 507 "role": "lead" 508 } 509 ], 510 "description": "A set of rulesets for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by the Paragonie polyfill libraries.", 511 "homepage": "http://phpcompatibility.com/", 512 "keywords": [ 513 "compatibility", 514 "paragonie", 515 "phpcs", 516 "polyfill", 517 "standards", 518 "static analysis" 519 ], 520 "support": { 521 "issues": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie/issues", 522 "source": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie" 523 }, 524 "time": "2022-10-25T01:46:02+00:00" 525 }, 526 { 527 "name": "phpcompatibility/phpcompatibility-wp", 528 "version": "2.1.4", 529 "source": { 530 "type": "git", 531 "url": "https://github.com/PHPCompatibility/PHPCompatibilityWP.git", 532 "reference": "b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5" 533 }, 534 "dist": { 535 "type": "zip", 536 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityWP/zipball/b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5", 537 "reference": "b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5", 538 "shasum": "" 539 }, 540 "require": { 541 "phpcompatibility/php-compatibility": "^9.0", 542 "phpcompatibility/phpcompatibility-paragonie": "^1.0" 543 }, 544 "require-dev": { 545 "dealerdirect/phpcodesniffer-composer-installer": "^0.7" 546 }, 547 "suggest": { 548 "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.", 549 "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." 550 }, 551 "type": "phpcodesniffer-standard", 552 "notification-url": "https://packagist.org/downloads/", 553 "license": [ 554 "LGPL-3.0-or-later" 555 ], 556 "authors": [ 557 { 558 "name": "Wim Godden", 559 "role": "lead" 560 }, 561 { 562 "name": "Juliette Reinders Folmer", 563 "role": "lead" 564 } 565 ], 566 "description": "A ruleset for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by WordPress.", 567 "homepage": "http://phpcompatibility.com/", 568 "keywords": [ 569 "compatibility", 570 "phpcs", 571 "standards", 572 "static analysis", 573 "wordpress" 574 ], 575 "support": { 576 "issues": "https://github.com/PHPCompatibility/PHPCompatibilityWP/issues", 577 "source": "https://github.com/PHPCompatibility/PHPCompatibilityWP" 578 }, 579 "time": "2022-10-24T09:00:36+00:00" 580 }, 581 { 582 "name": "squizlabs/php_codesniffer", 583 "version": "3.7.2", 584 "source": { 585 "type": "git", 586 "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", 587 "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879" 588 }, 589 "dist": { 590 "type": "zip", 591 "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879", 592 "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879", 593 "shasum": "" 594 }, 595 "require": { 596 "ext-simplexml": "*", 597 "ext-tokenizer": "*", 598 "ext-xmlwriter": "*", 599 "php": ">=5.4.0" 600 }, 601 "require-dev": { 602 "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" 603 }, 604 "bin": [ 605 "bin/phpcs", 606 "bin/phpcbf" 607 ], 608 "type": "library", 609 "extra": { 610 "branch-alias": { 611 "dev-master": "3.x-dev" 612 } 613 }, 614 "notification-url": "https://packagist.org/downloads/", 615 "license": [ 616 "BSD-3-Clause" 617 ], 618 "authors": [ 619 { 620 "name": "Greg Sherwood", 621 "role": "lead" 622 } 623 ], 624 "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", 625 "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", 626 "keywords": [ 627 "phpcs", 628 "standards", 629 "static analysis" 630 ], 631 "support": { 632 "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", 633 "source": "https://github.com/squizlabs/PHP_CodeSniffer", 634 "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" 635 }, 636 "time": "2023-02-22T23:07:41+00:00" 637 } 638 ], 332 639 "aliases": [], 333 640 "minimum-stability": "stable", 334 641 "stability-flags": [], 335 "prefer-stable": false,642 "prefer-stable": true, 336 643 "prefer-lowest": false, 337 "platform": [], 644 "platform": { 645 "php": "^7.2|^8.0" 646 }, 338 647 "platform-dev": [], 339 648 "platform-overrides": { -
acf-rrule-field/trunk/fields/class-acf-field-rrule.php
r2987995 r2990646 709 709 710 710 $new_value['rrule'] = $value; 711 $new_value['start_date'] = $start_date ?->format('Ymd');712 $new_value['start_time'] = $start_date ?->format('H:i:s');711 $new_value['start_date'] = $start_date ? $start_date->format('Ymd') : null; 712 $new_value['start_time'] = $start_date ? $start_date->format('H:i:s') : null; 713 713 $new_value['frequency'] = $rule->getFreqAsText(); 714 714 $new_value['interval'] = $rule->getInterval(); -
acf-rrule-field/trunk/readme.txt
r2987995 r2990646 5 5 Tested up to: 6.3 6 6 Requires PHP: 7.2 7 Stable tag: 1.3. 27 Stable tag: 1.3.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 31 31 32 32 == Changelog == 33 34 = 1.3.3 = 35 * Fix compatibility with PHP >= 7.2 33 36 34 37 = 1.3.2 = -
acf-rrule-field/trunk/vendor/autoload.php
r2980521 r2990646 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 4a251035d1d75c9695da4888dd8489e1::getLoader();25 return ComposerAutoloaderInitc35fcbe54628f3a3a961b0147fa06c59::getLoader(); -
acf-rrule-field/trunk/vendor/composer/ClassLoader.php
r2980521 r2990646 43 43 class ClassLoader 44 44 { 45 /** @var \Closure(string):void */ 46 private static $includeFile; 47 48 /** @var string|null */ 45 /** @var ?string */ 49 46 private $vendorDir; 50 47 51 48 // PSR-4 52 49 /** 53 * @var array<string, array<string, int>> 50 * @var array[] 51 * @psalm-var array<string, array<string, int>> 54 52 */ 55 53 private $prefixLengthsPsr4 = array(); 56 54 /** 57 * @var array<string, list<string>> 55 * @var array[] 56 * @psalm-var array<string, array<int, string>> 58 57 */ 59 58 private $prefixDirsPsr4 = array(); 60 59 /** 61 * @var list<string> 60 * @var array[] 61 * @psalm-var array<string, string> 62 62 */ 63 63 private $fallbackDirsPsr4 = array(); … … 65 65 // PSR-0 66 66 /** 67 * List of PSR-0 prefixes 68 * 69 * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2'))) 70 * 71 * @var array<string, array<string, list<string>>> 67 * @var array[] 68 * @psalm-var array<string, array<string, string[]>> 72 69 */ 73 70 private $prefixesPsr0 = array(); 74 71 /** 75 * @var list<string> 72 * @var array[] 73 * @psalm-var array<string, string> 76 74 */ 77 75 private $fallbackDirsPsr0 = array(); … … 81 79 82 80 /** 83 * @var array<string, string> 81 * @var string[] 82 * @psalm-var array<string, string> 84 83 */ 85 84 private $classMap = array(); … … 89 88 90 89 /** 91 * @var array<string, bool> 90 * @var bool[] 91 * @psalm-var array<string, bool> 92 92 */ 93 93 private $missingClasses = array(); 94 94 95 /** @var string|null*/95 /** @var ?string */ 96 96 private $apcuPrefix; 97 97 98 98 /** 99 * @var array<string, self>99 * @var self[] 100 100 */ 101 101 private static $registeredLoaders = array(); 102 102 103 103 /** 104 * @param string|null$vendorDir104 * @param ?string $vendorDir 105 105 */ 106 106 public function __construct($vendorDir = null) 107 107 { 108 108 $this->vendorDir = $vendorDir; 109 self::initializeIncludeClosure(); 110 } 111 112 /** 113 * @return array<string, list<string>> 109 } 110 111 /** 112 * @return string[] 114 113 */ 115 114 public function getPrefixes() … … 123 122 124 123 /** 125 * @return array<string, list<string>> 124 * @return array[] 125 * @psalm-return array<string, array<int, string>> 126 126 */ 127 127 public function getPrefixesPsr4() … … 131 131 132 132 /** 133 * @return list<string> 133 * @return array[] 134 * @psalm-return array<string, string> 134 135 */ 135 136 public function getFallbackDirs() … … 139 140 140 141 /** 141 * @return list<string> 142 * @return array[] 143 * @psalm-return array<string, string> 142 144 */ 143 145 public function getFallbackDirsPsr4() … … 147 149 148 150 /** 149 * @return array<string, string> Array of classname => path 151 * @return string[] Array of classname => path 152 * @psalm-return array<string, string> 150 153 */ 151 154 public function getClassMap() … … 155 158 156 159 /** 157 * @param array<string, string> $classMap Class to filename map 160 * @param string[] $classMap Class to filename map 161 * @psalm-param array<string, string> $classMap 158 162 * 159 163 * @return void … … 172 176 * appending or prepending to the ones previously set for this prefix. 173 177 * 174 * @param string $prefix The prefix175 * @param list<string>|string $paths The PSR-0 root directories176 * @param bool $prepend Whether to prepend the directories178 * @param string $prefix The prefix 179 * @param string[]|string $paths The PSR-0 root directories 180 * @param bool $prepend Whether to prepend the directories 177 181 * 178 182 * @return void … … 180 184 public function add($prefix, $paths, $prepend = false) 181 185 { 182 $paths = (array) $paths;183 186 if (!$prefix) { 184 187 if ($prepend) { 185 188 $this->fallbackDirsPsr0 = array_merge( 186 $paths,189 (array) $paths, 187 190 $this->fallbackDirsPsr0 188 191 ); … … 190 193 $this->fallbackDirsPsr0 = array_merge( 191 194 $this->fallbackDirsPsr0, 192 $paths195 (array) $paths 193 196 ); 194 197 } … … 199 202 $first = $prefix[0]; 200 203 if (!isset($this->prefixesPsr0[$first][$prefix])) { 201 $this->prefixesPsr0[$first][$prefix] = $paths;204 $this->prefixesPsr0[$first][$prefix] = (array) $paths; 202 205 203 206 return; … … 205 208 if ($prepend) { 206 209 $this->prefixesPsr0[$first][$prefix] = array_merge( 207 $paths,210 (array) $paths, 208 211 $this->prefixesPsr0[$first][$prefix] 209 212 ); … … 211 214 $this->prefixesPsr0[$first][$prefix] = array_merge( 212 215 $this->prefixesPsr0[$first][$prefix], 213 $paths216 (array) $paths 214 217 ); 215 218 } … … 220 223 * appending or prepending to the ones previously set for this namespace. 221 224 * 222 * @param string $prefix The prefix/namespace, with trailing '\\'223 * @param list<string>|string $paths The PSR-4 base directories224 * @param bool $prepend Whether to prepend the directories225 * @param string $prefix The prefix/namespace, with trailing '\\' 226 * @param string[]|string $paths The PSR-4 base directories 227 * @param bool $prepend Whether to prepend the directories 225 228 * 226 229 * @throws \InvalidArgumentException … … 230 233 public function addPsr4($prefix, $paths, $prepend = false) 231 234 { 232 $paths = (array) $paths;233 235 if (!$prefix) { 234 236 // Register directories for the root namespace. 235 237 if ($prepend) { 236 238 $this->fallbackDirsPsr4 = array_merge( 237 $paths,239 (array) $paths, 238 240 $this->fallbackDirsPsr4 239 241 ); … … 241 243 $this->fallbackDirsPsr4 = array_merge( 242 244 $this->fallbackDirsPsr4, 243 $paths245 (array) $paths 244 246 ); 245 247 } … … 251 253 } 252 254 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; 253 $this->prefixDirsPsr4[$prefix] = $paths;255 $this->prefixDirsPsr4[$prefix] = (array) $paths; 254 256 } elseif ($prepend) { 255 257 // Prepend directories for an already registered namespace. 256 258 $this->prefixDirsPsr4[$prefix] = array_merge( 257 $paths,259 (array) $paths, 258 260 $this->prefixDirsPsr4[$prefix] 259 261 ); … … 262 264 $this->prefixDirsPsr4[$prefix] = array_merge( 263 265 $this->prefixDirsPsr4[$prefix], 264 $paths266 (array) $paths 265 267 ); 266 268 } … … 271 273 * replacing any others previously set for this prefix. 272 274 * 273 * @param string $prefix The prefix274 * @param list<string>|string $paths The PSR-0 base directories275 * @param string $prefix The prefix 276 * @param string[]|string $paths The PSR-0 base directories 275 277 * 276 278 * @return void … … 289 291 * replacing any others previously set for this namespace. 290 292 * 291 * @param string $prefix The prefix/namespace, with trailing '\\'292 * @param list<string>|string $paths The PSR-4 base directories293 * @param string $prefix The prefix/namespace, with trailing '\\' 294 * @param string[]|string $paths The PSR-4 base directories 293 295 * 294 296 * @throws \InvalidArgumentException … … 424 426 { 425 427 if ($file = $this->findFile($class)) { 426 $includeFile = self::$includeFile; 427 $includeFile($file); 428 includeFile($file); 428 429 429 430 return true; … … 476 477 477 478 /** 478 * Returns the currently registered loaders keyed by their corresponding vendor directories.479 * 480 * @return array<string, self>479 * Returns the currently registered loaders indexed by their corresponding vendor directories. 480 * 481 * @return self[] 481 482 */ 482 483 public static function getRegisteredLoaders() … … 555 556 return false; 556 557 } 557 558 /**559 * @return void560 */561 private static function initializeIncludeClosure()562 {563 if (self::$includeFile !== null) {564 return;565 }566 567 /**568 * Scope isolated include.569 *570 * Prevents access to $this/self from included files.571 *572 * @param string $file573 * @return void574 */575 self::$includeFile = \Closure::bind(static function($file) {576 include $file;577 }, null, null);578 }579 558 } 559 560 /** 561 * Scope isolated include. 562 * 563 * Prevents access to $this/self from included files. 564 * 565 * @param string $file 566 * @return void 567 * @private 568 */ 569 function includeFile($file) 570 { 571 include $file; 572 } -
acf-rrule-field/trunk/vendor/composer/InstalledVersions.php
r2980521 r2990646 99 99 foreach (self::getInstalled() as $installed) { 100 100 if (isset($installed['versions'][$packageName])) { 101 return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;101 return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']); 102 102 } 103 103 } … … 120 120 public static function satisfies(VersionParser $parser, $packageName, $constraint) 121 121 { 122 $constraint = $parser->parseConstraints( (string)$constraint);122 $constraint = $parser->parseConstraints($constraint); 123 123 $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); 124 124 … … 329 329 $installed[] = self::$installedByVendor[$vendorDir]; 330 330 } elseif (is_file($vendorDir.'/composer/installed.php')) { 331 /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */ 332 $required = require $vendorDir.'/composer/installed.php'; 333 $installed[] = self::$installedByVendor[$vendorDir] = $required; 331 $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php'; 334 332 if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { 335 333 self::$installed = $installed[count($installed) - 1]; … … 343 341 // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 344 342 if (substr(__DIR__, -8, 1) !== 'C') { 345 /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */ 346 $required = require __DIR__ . '/installed.php'; 347 self::$installed = $required; 343 self::$installed = require __DIR__ . '/installed.php'; 348 344 } else { 349 345 self::$installed = array(); 350 346 } 351 347 } 352 353 if (self::$installed !== array()) { 354 $installed[] = self::$installed; 355 } 348 $installed[] = self::$installed; 356 349 357 350 return $installed; -
acf-rrule-field/trunk/vendor/composer/autoload_real.php
r2980521 r2990646 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 4a251035d1d75c9695da4888dd8489e15 class ComposerAutoloaderInitc35fcbe54628f3a3a961b0147fa06c59 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 4a251035d1d75c9695da4888dd8489e1', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitc35fcbe54628f3a3a961b0147fa06c59', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 4a251035d1d75c9695da4888dd8489e1', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitc35fcbe54628f3a3a961b0147fa06c59', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 4a251035d1d75c9695da4888dd8489e1::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInitc35fcbe54628f3a3a961b0147fa06c59::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
acf-rrule-field/trunk/vendor/composer/autoload_static.php
r2980521 r2990646 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 4a251035d1d75c9695da4888dd8489e17 class ComposerStaticInitc35fcbe54628f3a3a961b0147fa06c59 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 49 49 { 50 50 return \Closure::bind(function () use ($loader) { 51 $loader->prefixLengthsPsr4 = ComposerStaticInit 4a251035d1d75c9695da4888dd8489e1::$prefixLengthsPsr4;52 $loader->prefixDirsPsr4 = ComposerStaticInit 4a251035d1d75c9695da4888dd8489e1::$prefixDirsPsr4;53 $loader->classMap = ComposerStaticInit 4a251035d1d75c9695da4888dd8489e1::$classMap;51 $loader->prefixLengthsPsr4 = ComposerStaticInitc35fcbe54628f3a3a961b0147fa06c59::$prefixLengthsPsr4; 52 $loader->prefixDirsPsr4 = ComposerStaticInitc35fcbe54628f3a3a961b0147fa06c59::$prefixDirsPsr4; 53 $loader->classMap = ComposerStaticInitc35fcbe54628f3a3a961b0147fa06c59::$classMap; 54 54 55 55 }, null, ClassLoader::class); -
acf-rrule-field/trunk/vendor/composer/installed.json
r2980521 r2990646 335 335 } 336 336 ], 337 "dev": true,337 "dev": false, 338 338 "dev-package-names": [] 339 339 } -
acf-rrule-field/trunk/vendor/composer/installed.php
r2980546 r2990646 2 2 'root' => array( 3 3 'name' => 'marcbelletre/acf-rrule', 4 'pretty_version' => ' dev-master',5 'version' => ' dev-master',6 'reference' => 'd12b0a3126638fcfb2a5901e6dd93c177a2692b7',4 'pretty_version' => '1.0.0+no-version-set', 5 'version' => '1.0.0.0', 6 'reference' => NULL, 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', 9 9 'aliases' => array(), 10 'dev' => true,10 'dev' => false, 11 11 ), 12 12 'versions' => array( … … 39 39 ), 40 40 'marcbelletre/acf-rrule' => array( 41 'pretty_version' => ' dev-master',42 'version' => ' dev-master',43 'reference' => 'd12b0a3126638fcfb2a5901e6dd93c177a2692b7',41 'pretty_version' => '1.0.0+no-version-set', 42 'version' => '1.0.0.0', 43 'reference' => NULL, 44 44 'type' => 'wordpress-plugin', 45 45 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.