Plugin Directory

Changeset 3008810


Ignore:
Timestamp:
12/12/2023 02:01:07 PM (2 years ago)
Author:
nappssolutions
Message:

Release 1.0.25

Location:
napps/trunk
Files:
278 added
12 edited

Legend:

Unmodified
Added
Removed
  • napps/trunk/napps.php

    r2995141 r3008810  
    33 * Plugin Name: NAPPS - Mobile app builder
    44 * Description: Plugin to complement the napps E-commerce solution. More on https://napps.io
    5  * Version:     1.0.24
     5 * Version:     1.0.25
    66 * Text Domain: napps
    77 * Author:      nappssolutions
     
    3030defined( 'ABSPATH' ) || die( "Can't access directly" );
    3131define( 'NAPPS_MINIMUM_WP_VERSION', '4.7.0' );
    32 define( 'NAPPS_MINIMUM_PHP_VERSION', '5.6' );
     32define( 'NAPPS_MINIMUM_PHP_VERSION', '7.3' );
    3333define( 'NAPPS_MINIMUM_WC_VERSION', '3.5.0' );
    3434define( 'NAPPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
     
    3636define( 'NAPPS_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ ) );
    3737define( 'NAPPS_PLUGIN_FILE',  __FILE__ );
    38 define( 'NAPPS_VERSION', '1.0.24' );
     38define( 'NAPPS_VERSION', '1.0.25' );
    3939define( 'NAPPS_REST_PREFIX', 'napps/v1' );
    4040
  • napps/trunk/readme.txt

    r2995141 r3008810  
    44Requires at least: 4.7
    55Tested up to: 6.4
    6 Stable tag: 1.0.24
    7 Requires PHP: 5.6
     6Stable tag: 1.0.25
     7Requires PHP: 7.3
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6464= Minimum Requirements =
    6565
    66 * PHP 5.6 or greater
     66* PHP 7.3 or greater
    6767* Wordpress 4.7.0 or greater
    6868* WooCommerce 3.5.0 or greater
     
    7575
    7676== Changelog ==
     77
     78= 1.0.25 =
     79
     80* New - Account data delete request page.
    7781
    7882= 1.0.24 =
  • napps/trunk/src/Router.php

    r2995141 r3008810  
    66use NAPPS\Controllers\AuthController;
    77use NAPPS\Controllers\HealthController;
     8use NAPPS\Controllers\ProxyController;
    89use NAPPS\Controllers\SmartBannerController;
    910use NAPPS\Controllers\WooCommerceController;
     
    1920     */
    2021    public function init() {
     22       
     23        add_action( 'init', array($this, 'register_web_routes' ));
    2124        add_action( 'rest_api_init', array( $this, 'register_rest_routes' ) );
    2225
    2326    }
    24    
     27       
     28    /**
     29     * Register web routes controllers
     30     *
     31     * @return void
     32     */
     33    public function register_web_routes() {
     34        tap(new ProxyController(), function($controller) {
     35            $controller->registerRoutes();
     36        });
     37    }
     38
    2539    /**
    2640     * Register plugin controllers for rest api
  • napps/trunk/vendor/autoload.php

    r2908595 r3008810  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit48aaab33bfdcc14fe55fe204adae867c::getLoader();
     25return ComposerAutoloaderInite8933fa9d67215704c526e636b8f0df0::getLoader();
  • napps/trunk/vendor/composer/autoload_classmap.php

    r2801987 r3008810  
    88return array(
    99    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
     10    'Firebase\\JWT\\BeforeValidException' => $vendorDir . '/firebase/php-jwt/src/BeforeValidException.php',
     11    'Firebase\\JWT\\ExpiredException' => $vendorDir . '/firebase/php-jwt/src/ExpiredException.php',
     12    'Firebase\\JWT\\JWK' => $vendorDir . '/firebase/php-jwt/src/JWK.php',
     13    'Firebase\\JWT\\JWT' => $vendorDir . '/firebase/php-jwt/src/JWT.php',
     14    'Firebase\\JWT\\Key' => $vendorDir . '/firebase/php-jwt/src/Key.php',
     15    'Firebase\\JWT\\SignatureInvalidException' => $vendorDir . '/firebase/php-jwt/src/SignatureInvalidException.php',
     16    'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php',
     17    'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php',
     18    'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
     19    'GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
     20    'GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
     21    'GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
     22    'GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
     23    'GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
     24    'GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
     25    'GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
     26    'GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
     27    'GuzzleHttp\\Exception\\InvalidArgumentException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',
     28    'GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
     29    'GuzzleHttp\\Exception\\SeekException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/SeekException.php',
     30    'GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
     31    'GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
     32    'GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
     33    'GuzzleHttp\\HandlerStack' => $vendorDir . '/guzzlehttp/guzzle/src/HandlerStack.php',
     34    'GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
     35    'GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
     36    'GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
     37    'GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
     38    'GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
     39    'GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
     40    'GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
     41    'GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
     42    'GuzzleHttp\\MessageFormatter' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatter.php',
     43    'GuzzleHttp\\Middleware' => $vendorDir . '/guzzlehttp/guzzle/src/Middleware.php',
     44    'GuzzleHttp\\Pool' => $vendorDir . '/guzzlehttp/guzzle/src/Pool.php',
     45    'GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
     46    'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php',
     47    'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php',
     48    'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php',
     49    'GuzzleHttp\\Promise\\Create' => $vendorDir . '/guzzlehttp/promises/src/Create.php',
     50    'GuzzleHttp\\Promise\\Each' => $vendorDir . '/guzzlehttp/promises/src/Each.php',
     51    'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php',
     52    'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php',
     53    'GuzzleHttp\\Promise\\Is' => $vendorDir . '/guzzlehttp/promises/src/Is.php',
     54    'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php',
     55    'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php',
     56    'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php',
     57    'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php',
     58    'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php',
     59    'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php',
     60    'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php',
     61    'GuzzleHttp\\Promise\\Utils' => $vendorDir . '/guzzlehttp/promises/src/Utils.php',
     62    'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php',
     63    'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php',
     64    'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php',
     65    'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php',
     66    'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php',
     67    'GuzzleHttp\\Psr7\\Header' => $vendorDir . '/guzzlehttp/psr7/src/Header.php',
     68    'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php',
     69    'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php',
     70    'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php',
     71    'GuzzleHttp\\Psr7\\Message' => $vendorDir . '/guzzlehttp/psr7/src/Message.php',
     72    'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php',
     73    'GuzzleHttp\\Psr7\\MimeType' => $vendorDir . '/guzzlehttp/psr7/src/MimeType.php',
     74    'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php',
     75    'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php',
     76    'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php',
     77    'GuzzleHttp\\Psr7\\Query' => $vendorDir . '/guzzlehttp/psr7/src/Query.php',
     78    'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php',
     79    'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php',
     80    'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php',
     81    'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php',
     82    'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php',
     83    'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
     84    'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php',
     85    'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php',
     86    'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
     87    'GuzzleHttp\\Psr7\\UriComparator' => $vendorDir . '/guzzlehttp/psr7/src/UriComparator.php',
     88    'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
     89    'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
     90    'GuzzleHttp\\Psr7\\Utils' => $vendorDir . '/guzzlehttp/psr7/src/Utils.php',
     91    'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
     92    'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php',
     93    'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
     94    'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php',
     95    'GuzzleHttp\\UriTemplate' => $vendorDir . '/guzzlehttp/guzzle/src/UriTemplate.php',
     96    'GuzzleHttp\\Utils' => $vendorDir . '/guzzlehttp/guzzle/src/Utils.php',
     97    'NAPPS\\ActivationService' => $baseDir . '/src/ActivationService.php',
     98    'NAPPS\\Contracts\\IController' => $baseDir . '/src/Contracts/IController.php',
     99    'NAPPS\\Contracts\\ModuleImplementation' => $baseDir . '/src/Contracts/ModuleImplementation.php',
     100    'NAPPS\\Controllers\\AuthController' => $baseDir . '/src/Controllers/AuthController.php',
     101    'NAPPS\\Controllers\\HealthController' => $baseDir . '/src/Controllers/HealthController.php',
     102    'NAPPS\\Controllers\\ProxyController' => $baseDir . '/src/Controllers/ProxyController.php',
     103    'NAPPS\\Controllers\\SmartBannerController' => $baseDir . '/src/Controllers/SmartBannerController.php',
     104    'NAPPS\\Controllers\\WooCommerceController' => $baseDir . '/src/Controllers/WooCommerceController.php',
     105    'NAPPS\\I18n' => $baseDir . '/src/I18n.php',
     106    'NAPPS\\Loader' => $baseDir . '/src/Loader.php',
     107    'NAPPS\\Modules\\Admin\\AdminModule' => $baseDir . '/src/Modules/Admin/AdminModule.php',
     108    'NAPPS\\Modules\\Admin\\Settings' => $baseDir . '/src/Modules/Admin/Settings.php',
     109    'NAPPS\\Modules\\AttributeStock\\AttributeStockModule' => $baseDir . '/src/Modules/AttributeStock/AttributeStockModule.php',
     110    'NAPPS\\Modules\\Auth\\AuthModule' => $baseDir . '/src/Modules/Auth/AuthModule.php',
     111    'NAPPS\\Modules\\Coupons\\ExclusiveCouponsModule' => $baseDir . '/src/Modules/Coupons/ExclusiveCouponsModule.php',
     112    'NAPPS\\Modules\\InitModules' => $baseDir . '/src/Modules/InitModules.php',
     113    'NAPPS\\Modules\\LinkedVariation\\LinkedVariation' => $baseDir . '/src/Modules/LinkedVariation/LinkedVariation.php',
     114    'NAPPS\\Modules\\QTranslate\\QTranslateModule' => $baseDir . '/src/Modules/QTranslate/QTranslateModule.php',
     115    'NAPPS\\Modules\\ShippingRateCart\\ShippingRateCartModule' => $baseDir . '/src/Modules/ShippingRateCart/ShippingRateCartModule.php',
     116    'NAPPS\\Modules\\Smartbanner\\SmartbannerModule' => $baseDir . '/src/Modules/Smartbanner/SmartbannerModule.php',
     117    'NAPPS\\Modules\\Woocommerce\\Admin' => $baseDir . '/src/Modules/Woocommerce/Admin.php',
     118    'NAPPS\\Modules\\Woocommerce\\Rest' => $baseDir . '/src/Modules/Woocommerce/Rest.php',
     119    'NAPPS\\Modules\\Woocommerce\\Webhooks' => $baseDir . '/src/Modules/Woocommerce/Webhooks.php',
     120    'NAPPS\\Modules\\Woocommerce\\WoocommerceModule' => $baseDir . '/src/Modules/Woocommerce/WoocommerceModule.php',
     121    'NAPPS\\Router' => $baseDir . '/src/Router.php',
     122    'NAPPS\\Services\\AuthService' => $baseDir . '/src/Services/AuthService.php',
     123    'NAPPS\\Utils\\SingletonTrait' => $baseDir . '/src/Utils/SingletonTrait.php',
     124    'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
     125    'Proxy\\Adapter\\AdapterInterface' => $vendorDir . '/jenssegers/proxy/src/Adapter/AdapterInterface.php',
     126    'Proxy\\Adapter\\Dummy\\DummyAdapter' => $vendorDir . '/jenssegers/proxy/src/Adapter/Dummy/DummyAdapter.php',
     127    'Proxy\\Adapter\\Guzzle\\GuzzleAdapter' => $vendorDir . '/jenssegers/proxy/src/Adapter/Guzzle/GuzzleAdapter.php',
     128    'Proxy\\Exception\\InvalidArgumentException' => $vendorDir . '/jenssegers/proxy/src/Exception/InvalidArgumentException.php',
     129    'Proxy\\Exception\\UnexpectedValueException' => $vendorDir . '/jenssegers/proxy/src/Exception/UnexpectedValueException.php',
     130    'Proxy\\Filter\\FilterInterface' => $vendorDir . '/jenssegers/proxy/src/Filter/FilterInterface.php',
     131    'Proxy\\Filter\\RemoveEncodingFilter' => $vendorDir . '/jenssegers/proxy/src/Filter/RemoveEncodingFilter.php',
     132    'Proxy\\Filter\\RemoveLocationFilter' => $vendorDir . '/jenssegers/proxy/src/Filter/RemoveLocationFilter.php',
     133    'Proxy\\Filter\\RewriteLocationFilter' => $vendorDir . '/jenssegers/proxy/src/Filter/RewriteLocationFilter.php',
     134    'Proxy\\Proxy' => $vendorDir . '/jenssegers/proxy/src/Proxy.php',
     135    'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php',
     136    'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php',
     137    'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php',
     138    'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php',
     139    'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
     140    'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
     141    'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
     142    'Relay\\GetArrayCopyInterface' => $vendorDir . '/relay/relay/src/GetArrayCopyInterface.php',
     143    'Relay\\MiddlewareInterface' => $vendorDir . '/relay/relay/src/MiddlewareInterface.php',
     144    'Relay\\Relay' => $vendorDir . '/relay/relay/src/Relay.php',
     145    'Relay\\RelayBuilder' => $vendorDir . '/relay/relay/src/RelayBuilder.php',
     146    'Relay\\ResolverInterface' => $vendorDir . '/relay/relay/src/ResolverInterface.php',
     147    'Relay\\Runner' => $vendorDir . '/relay/relay/src/Runner.php',
     148    'Relay\\RunnerFactory' => $vendorDir . '/relay/relay/src/RunnerFactory.php',
     149    'Symfony\\Polyfill\\Intl\\Idn\\Idn' => $vendorDir . '/symfony/polyfill-intl-idn/Idn.php',
     150    'Symfony\\Polyfill\\Intl\\Idn\\Info' => $vendorDir . '/symfony/polyfill-intl-idn/Info.php',
     151    'Symfony\\Polyfill\\Intl\\Idn\\Resources\\unidata\\DisallowedRanges' => $vendorDir . '/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php',
     152    'Symfony\\Polyfill\\Intl\\Idn\\Resources\\unidata\\Regex' => $vendorDir . '/symfony/polyfill-intl-idn/Resources/unidata/Regex.php',
     153    'Symfony\\Polyfill\\Intl\\Normalizer\\Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Normalizer.php',
     154    'Symfony\\Polyfill\\Php72\\Php72' => $vendorDir . '/symfony/polyfill-php72/Php72.php',
     155    'Zend\\Diactoros\\AbstractSerializer' => $vendorDir . '/zendframework/zend-diactoros/src/AbstractSerializer.php',
     156    'Zend\\Diactoros\\CallbackStream' => $vendorDir . '/zendframework/zend-diactoros/src/CallbackStream.php',
     157    'Zend\\Diactoros\\Exception\\DeprecatedMethodException' => $vendorDir . '/zendframework/zend-diactoros/src/Exception/DeprecatedMethodException.php',
     158    'Zend\\Diactoros\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-diactoros/src/Exception/ExceptionInterface.php',
     159    'Zend\\Diactoros\\HeaderSecurity' => $vendorDir . '/zendframework/zend-diactoros/src/HeaderSecurity.php',
     160    'Zend\\Diactoros\\MessageTrait' => $vendorDir . '/zendframework/zend-diactoros/src/MessageTrait.php',
     161    'Zend\\Diactoros\\PhpInputStream' => $vendorDir . '/zendframework/zend-diactoros/src/PhpInputStream.php',
     162    'Zend\\Diactoros\\RelativeStream' => $vendorDir . '/zendframework/zend-diactoros/src/RelativeStream.php',
     163    'Zend\\Diactoros\\Request' => $vendorDir . '/zendframework/zend-diactoros/src/Request.php',
     164    'Zend\\Diactoros\\RequestTrait' => $vendorDir . '/zendframework/zend-diactoros/src/RequestTrait.php',
     165    'Zend\\Diactoros\\Request\\Serializer' => $vendorDir . '/zendframework/zend-diactoros/src/Request/Serializer.php',
     166    'Zend\\Diactoros\\Response' => $vendorDir . '/zendframework/zend-diactoros/src/Response.php',
     167    'Zend\\Diactoros\\Response\\EmitterInterface' => $vendorDir . '/zendframework/zend-diactoros/src/Response/EmitterInterface.php',
     168    'Zend\\Diactoros\\Response\\EmptyResponse' => $vendorDir . '/zendframework/zend-diactoros/src/Response/EmptyResponse.php',
     169    'Zend\\Diactoros\\Response\\HtmlResponse' => $vendorDir . '/zendframework/zend-diactoros/src/Response/HtmlResponse.php',
     170    'Zend\\Diactoros\\Response\\InjectContentTypeTrait' => $vendorDir . '/zendframework/zend-diactoros/src/Response/InjectContentTypeTrait.php',
     171    'Zend\\Diactoros\\Response\\JsonResponse' => $vendorDir . '/zendframework/zend-diactoros/src/Response/JsonResponse.php',
     172    'Zend\\Diactoros\\Response\\RedirectResponse' => $vendorDir . '/zendframework/zend-diactoros/src/Response/RedirectResponse.php',
     173    'Zend\\Diactoros\\Response\\SapiEmitter' => $vendorDir . '/zendframework/zend-diactoros/src/Response/SapiEmitter.php',
     174    'Zend\\Diactoros\\Response\\SapiEmitterTrait' => $vendorDir . '/zendframework/zend-diactoros/src/Response/SapiEmitterTrait.php',
     175    'Zend\\Diactoros\\Response\\SapiStreamEmitter' => $vendorDir . '/zendframework/zend-diactoros/src/Response/SapiStreamEmitter.php',
     176    'Zend\\Diactoros\\Response\\Serializer' => $vendorDir . '/zendframework/zend-diactoros/src/Response/Serializer.php',
     177    'Zend\\Diactoros\\Response\\TextResponse' => $vendorDir . '/zendframework/zend-diactoros/src/Response/TextResponse.php',
     178    'Zend\\Diactoros\\Server' => $vendorDir . '/zendframework/zend-diactoros/src/Server.php',
     179    'Zend\\Diactoros\\ServerRequest' => $vendorDir . '/zendframework/zend-diactoros/src/ServerRequest.php',
     180    'Zend\\Diactoros\\ServerRequestFactory' => $vendorDir . '/zendframework/zend-diactoros/src/ServerRequestFactory.php',
     181    'Zend\\Diactoros\\Stream' => $vendorDir . '/zendframework/zend-diactoros/src/Stream.php',
     182    'Zend\\Diactoros\\UploadedFile' => $vendorDir . '/zendframework/zend-diactoros/src/UploadedFile.php',
     183    'Zend\\Diactoros\\Uri' => $vendorDir . '/zendframework/zend-diactoros/src/Uri.php',
    10184);
  • napps/trunk/vendor/composer/autoload_files.php

    r2995141 r3008810  
    77
    88return array(
     9    '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
     10    'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
     11    '25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php',
     12    'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
     13    'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php',
     14    'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
     15    '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
    916    'c89951c2ad869918b57128a656a15f4a' => $baseDir . '/src/Utils/helpers.php',
    1017);
  • napps/trunk/vendor/composer/autoload_psr4.php

    r2801987 r3008810  
    77
    88return array(
     9    'Zend\\Diactoros\\' => array($vendorDir . '/zendframework/zend-diactoros/src'),
     10    'Symfony\\Polyfill\\Php72\\' => array($vendorDir . '/symfony/polyfill-php72'),
     11    'Symfony\\Polyfill\\Intl\\Normalizer\\' => array($vendorDir . '/symfony/polyfill-intl-normalizer'),
     12    'Symfony\\Polyfill\\Intl\\Idn\\' => array($vendorDir . '/symfony/polyfill-intl-idn'),
     13    'Relay\\' => array($vendorDir . '/relay/relay/src'),
     14    'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'),
     15    'Proxy\\' => array($vendorDir . '/jenssegers/proxy/src'),
    916    'NAPPS\\' => array($baseDir . '/src'),
     17    'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
     18    'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
     19    'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'),
    1020    'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
    1121);
  • napps/trunk/vendor/composer/autoload_real.php

    r2962449 r3008810  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit48aaab33bfdcc14fe55fe204adae867c
     5class ComposerAutoloaderInite8933fa9d67215704c526e636b8f0df0
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit48aaab33bfdcc14fe55fe204adae867c', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInite8933fa9d67215704c526e636b8f0df0', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit48aaab33bfdcc14fe55fe204adae867c', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInite8933fa9d67215704c526e636b8f0df0', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit48aaab33bfdcc14fe55fe204adae867c::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInite8933fa9d67215704c526e636b8f0df0::getInitializer($loader));
    3333
    3434        $loader->register(true);
    3535
    36         $filesToLoad = \Composer\Autoload\ComposerStaticInit48aaab33bfdcc14fe55fe204adae867c::$files;
     36        $filesToLoad = \Composer\Autoload\ComposerStaticInite8933fa9d67215704c526e636b8f0df0::$files;
    3737        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3838            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • napps/trunk/vendor/composer/autoload_static.php

    r2801987 r3008810  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit48aaab33bfdcc14fe55fe204adae867c
     7class ComposerStaticInite8933fa9d67215704c526e636b8f0df0
    88{
    99    public static $files = array (
     10        '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
     11        'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
     12        '25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php',
     13        'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
     14        'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php',
     15        'f598d06aa772fa33d905e87be6398fb1' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
     16        '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
    1017        'c89951c2ad869918b57128a656a15f4a' => __DIR__ . '/../..' . '/src/Utils/helpers.php',
    1118    );
    1219
    1320    public static $prefixLengthsPsr4 = array (
     21        'Z' =>
     22        array (
     23            'Zend\\Diactoros\\' => 15,
     24        ),
     25        'S' =>
     26        array (
     27            'Symfony\\Polyfill\\Php72\\' => 23,
     28            'Symfony\\Polyfill\\Intl\\Normalizer\\' => 33,
     29            'Symfony\\Polyfill\\Intl\\Idn\\' => 26,
     30        ),
     31        'R' =>
     32        array (
     33            'Relay\\' => 6,
     34        ),
     35        'P' =>
     36        array (
     37            'Psr\\Http\\Message\\' => 17,
     38            'Proxy\\' => 6,
     39        ),
    1440        'N' =>
    1541        array (
    1642            'NAPPS\\' => 6,
    1743        ),
     44        'G' =>
     45        array (
     46            'GuzzleHttp\\Psr7\\' => 16,
     47            'GuzzleHttp\\Promise\\' => 19,
     48            'GuzzleHttp\\' => 11,
     49        ),
    1850        'F' =>
    1951        array (
     
    2355
    2456    public static $prefixDirsPsr4 = array (
     57        'Zend\\Diactoros\\' =>
     58        array (
     59            0 => __DIR__ . '/..' . '/zendframework/zend-diactoros/src',
     60        ),
     61        'Symfony\\Polyfill\\Php72\\' =>
     62        array (
     63            0 => __DIR__ . '/..' . '/symfony/polyfill-php72',
     64        ),
     65        'Symfony\\Polyfill\\Intl\\Normalizer\\' =>
     66        array (
     67            0 => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer',
     68        ),
     69        'Symfony\\Polyfill\\Intl\\Idn\\' =>
     70        array (
     71            0 => __DIR__ . '/..' . '/symfony/polyfill-intl-idn',
     72        ),
     73        'Relay\\' =>
     74        array (
     75            0 => __DIR__ . '/..' . '/relay/relay/src',
     76        ),
     77        'Psr\\Http\\Message\\' =>
     78        array (
     79            0 => __DIR__ . '/..' . '/psr/http-message/src',
     80        ),
     81        'Proxy\\' =>
     82        array (
     83            0 => __DIR__ . '/..' . '/jenssegers/proxy/src',
     84        ),
    2585        'NAPPS\\' =>
    2686        array (
    2787            0 => __DIR__ . '/../..' . '/src',
     88        ),
     89        'GuzzleHttp\\Psr7\\' =>
     90        array (
     91            0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
     92        ),
     93        'GuzzleHttp\\Promise\\' =>
     94        array (
     95            0 => __DIR__ . '/..' . '/guzzlehttp/promises/src',
     96        ),
     97        'GuzzleHttp\\' =>
     98        array (
     99            0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src',
    28100        ),
    29101        'Firebase\\JWT\\' =>
     
    35107    public static $classMap = array (
    36108        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
     109        'Firebase\\JWT\\BeforeValidException' => __DIR__ . '/..' . '/firebase/php-jwt/src/BeforeValidException.php',
     110        'Firebase\\JWT\\ExpiredException' => __DIR__ . '/..' . '/firebase/php-jwt/src/ExpiredException.php',
     111        'Firebase\\JWT\\JWK' => __DIR__ . '/..' . '/firebase/php-jwt/src/JWK.php',
     112        'Firebase\\JWT\\JWT' => __DIR__ . '/..' . '/firebase/php-jwt/src/JWT.php',
     113        'Firebase\\JWT\\Key' => __DIR__ . '/..' . '/firebase/php-jwt/src/Key.php',
     114        'Firebase\\JWT\\SignatureInvalidException' => __DIR__ . '/..' . '/firebase/php-jwt/src/SignatureInvalidException.php',
     115        'GuzzleHttp\\Client' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Client.php',
     116        'GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientInterface.php',
     117        'GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
     118        'GuzzleHttp\\Cookie\\CookieJarInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
     119        'GuzzleHttp\\Cookie\\FileCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
     120        'GuzzleHttp\\Cookie\\SessionCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
     121        'GuzzleHttp\\Cookie\\SetCookie' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
     122        'GuzzleHttp\\Exception\\BadResponseException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
     123        'GuzzleHttp\\Exception\\ClientException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
     124        'GuzzleHttp\\Exception\\ConnectException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
     125        'GuzzleHttp\\Exception\\GuzzleException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
     126        'GuzzleHttp\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',
     127        'GuzzleHttp\\Exception\\RequestException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
     128        'GuzzleHttp\\Exception\\SeekException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/SeekException.php',
     129        'GuzzleHttp\\Exception\\ServerException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
     130        'GuzzleHttp\\Exception\\TooManyRedirectsException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
     131        'GuzzleHttp\\Exception\\TransferException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
     132        'GuzzleHttp\\HandlerStack' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/HandlerStack.php',
     133        'GuzzleHttp\\Handler\\CurlFactory' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
     134        'GuzzleHttp\\Handler\\CurlFactoryInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
     135        'GuzzleHttp\\Handler\\CurlHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
     136        'GuzzleHttp\\Handler\\CurlMultiHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
     137        'GuzzleHttp\\Handler\\EasyHandle' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
     138        'GuzzleHttp\\Handler\\MockHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
     139        'GuzzleHttp\\Handler\\Proxy' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
     140        'GuzzleHttp\\Handler\\StreamHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
     141        'GuzzleHttp\\MessageFormatter' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatter.php',
     142        'GuzzleHttp\\Middleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Middleware.php',
     143        'GuzzleHttp\\Pool' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Pool.php',
     144        'GuzzleHttp\\PrepareBodyMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
     145        'GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/AggregateException.php',
     146        'GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/CancellationException.php',
     147        'GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Coroutine.php',
     148        'GuzzleHttp\\Promise\\Create' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Create.php',
     149        'GuzzleHttp\\Promise\\Each' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Each.php',
     150        'GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/EachPromise.php',
     151        'GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/FulfilledPromise.php',
     152        'GuzzleHttp\\Promise\\Is' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Is.php',
     153        'GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Promise.php',
     154        'GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromiseInterface.php',
     155        'GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromisorInterface.php',
     156        'GuzzleHttp\\Promise\\RejectedPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectedPromise.php',
     157        'GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectionException.php',
     158        'GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueue.php',
     159        'GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueueInterface.php',
     160        'GuzzleHttp\\Promise\\Utils' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Utils.php',
     161        'GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/AppendStream.php',
     162        'GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/BufferStream.php',
     163        'GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/CachingStream.php',
     164        'GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/DroppingStream.php',
     165        'GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/FnStream.php',
     166        'GuzzleHttp\\Psr7\\Header' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Header.php',
     167        'GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/InflateStream.php',
     168        'GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LazyOpenStream.php',
     169        'GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LimitStream.php',
     170        'GuzzleHttp\\Psr7\\Message' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Message.php',
     171        'GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MessageTrait.php',
     172        'GuzzleHttp\\Psr7\\MimeType' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MimeType.php',
     173        'GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MultipartStream.php',
     174        'GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/NoSeekStream.php',
     175        'GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/PumpStream.php',
     176        'GuzzleHttp\\Psr7\\Query' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Query.php',
     177        'GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Request.php',
     178        'GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Response.php',
     179        'GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Rfc7230.php',
     180        'GuzzleHttp\\Psr7\\ServerRequest' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/ServerRequest.php',
     181        'GuzzleHttp\\Psr7\\Stream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Stream.php',
     182        'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
     183        'GuzzleHttp\\Psr7\\StreamWrapper' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamWrapper.php',
     184        'GuzzleHttp\\Psr7\\UploadedFile' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UploadedFile.php',
     185        'GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Uri.php',
     186        'GuzzleHttp\\Psr7\\UriComparator' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriComparator.php',
     187        'GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriNormalizer.php',
     188        'GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriResolver.php',
     189        'GuzzleHttp\\Psr7\\Utils' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Utils.php',
     190        'GuzzleHttp\\RedirectMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
     191        'GuzzleHttp\\RequestOptions' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RequestOptions.php',
     192        'GuzzleHttp\\RetryMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
     193        'GuzzleHttp\\TransferStats' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/TransferStats.php',
     194        'GuzzleHttp\\UriTemplate' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/UriTemplate.php',
     195        'GuzzleHttp\\Utils' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Utils.php',
     196        'NAPPS\\ActivationService' => __DIR__ . '/../..' . '/src/ActivationService.php',
     197        'NAPPS\\Contracts\\IController' => __DIR__ . '/../..' . '/src/Contracts/IController.php',
     198        'NAPPS\\Contracts\\ModuleImplementation' => __DIR__ . '/../..' . '/src/Contracts/ModuleImplementation.php',
     199        'NAPPS\\Controllers\\AuthController' => __DIR__ . '/../..' . '/src/Controllers/AuthController.php',
     200        'NAPPS\\Controllers\\HealthController' => __DIR__ . '/../..' . '/src/Controllers/HealthController.php',
     201        'NAPPS\\Controllers\\ProxyController' => __DIR__ . '/../..' . '/src/Controllers/ProxyController.php',
     202        'NAPPS\\Controllers\\SmartBannerController' => __DIR__ . '/../..' . '/src/Controllers/SmartBannerController.php',
     203        'NAPPS\\Controllers\\WooCommerceController' => __DIR__ . '/../..' . '/src/Controllers/WooCommerceController.php',
     204        'NAPPS\\I18n' => __DIR__ . '/../..' . '/src/I18n.php',
     205        'NAPPS\\Loader' => __DIR__ . '/../..' . '/src/Loader.php',
     206        'NAPPS\\Modules\\Admin\\AdminModule' => __DIR__ . '/../..' . '/src/Modules/Admin/AdminModule.php',
     207        'NAPPS\\Modules\\Admin\\Settings' => __DIR__ . '/../..' . '/src/Modules/Admin/Settings.php',
     208        'NAPPS\\Modules\\AttributeStock\\AttributeStockModule' => __DIR__ . '/../..' . '/src/Modules/AttributeStock/AttributeStockModule.php',
     209        'NAPPS\\Modules\\Auth\\AuthModule' => __DIR__ . '/../..' . '/src/Modules/Auth/AuthModule.php',
     210        'NAPPS\\Modules\\Coupons\\ExclusiveCouponsModule' => __DIR__ . '/../..' . '/src/Modules/Coupons/ExclusiveCouponsModule.php',
     211        'NAPPS\\Modules\\InitModules' => __DIR__ . '/../..' . '/src/Modules/InitModules.php',
     212        'NAPPS\\Modules\\LinkedVariation\\LinkedVariation' => __DIR__ . '/../..' . '/src/Modules/LinkedVariation/LinkedVariation.php',
     213        'NAPPS\\Modules\\QTranslate\\QTranslateModule' => __DIR__ . '/../..' . '/src/Modules/QTranslate/QTranslateModule.php',
     214        'NAPPS\\Modules\\ShippingRateCart\\ShippingRateCartModule' => __DIR__ . '/../..' . '/src/Modules/ShippingRateCart/ShippingRateCartModule.php',
     215        'NAPPS\\Modules\\Smartbanner\\SmartbannerModule' => __DIR__ . '/../..' . '/src/Modules/Smartbanner/SmartbannerModule.php',
     216        'NAPPS\\Modules\\Woocommerce\\Admin' => __DIR__ . '/../..' . '/src/Modules/Woocommerce/Admin.php',
     217        'NAPPS\\Modules\\Woocommerce\\Rest' => __DIR__ . '/../..' . '/src/Modules/Woocommerce/Rest.php',
     218        'NAPPS\\Modules\\Woocommerce\\Webhooks' => __DIR__ . '/../..' . '/src/Modules/Woocommerce/Webhooks.php',
     219        'NAPPS\\Modules\\Woocommerce\\WoocommerceModule' => __DIR__ . '/../..' . '/src/Modules/Woocommerce/WoocommerceModule.php',
     220        'NAPPS\\Router' => __DIR__ . '/../..' . '/src/Router.php',
     221        'NAPPS\\Services\\AuthService' => __DIR__ . '/../..' . '/src/Services/AuthService.php',
     222        'NAPPS\\Utils\\SingletonTrait' => __DIR__ . '/../..' . '/src/Utils/SingletonTrait.php',
     223        'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
     224        'Proxy\\Adapter\\AdapterInterface' => __DIR__ . '/..' . '/jenssegers/proxy/src/Adapter/AdapterInterface.php',
     225        'Proxy\\Adapter\\Dummy\\DummyAdapter' => __DIR__ . '/..' . '/jenssegers/proxy/src/Adapter/Dummy/DummyAdapter.php',
     226        'Proxy\\Adapter\\Guzzle\\GuzzleAdapter' => __DIR__ . '/..' . '/jenssegers/proxy/src/Adapter/Guzzle/GuzzleAdapter.php',
     227        'Proxy\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/jenssegers/proxy/src/Exception/InvalidArgumentException.php',
     228        'Proxy\\Exception\\UnexpectedValueException' => __DIR__ . '/..' . '/jenssegers/proxy/src/Exception/UnexpectedValueException.php',
     229        'Proxy\\Filter\\FilterInterface' => __DIR__ . '/..' . '/jenssegers/proxy/src/Filter/FilterInterface.php',
     230        'Proxy\\Filter\\RemoveEncodingFilter' => __DIR__ . '/..' . '/jenssegers/proxy/src/Filter/RemoveEncodingFilter.php',
     231        'Proxy\\Filter\\RemoveLocationFilter' => __DIR__ . '/..' . '/jenssegers/proxy/src/Filter/RemoveLocationFilter.php',
     232        'Proxy\\Filter\\RewriteLocationFilter' => __DIR__ . '/..' . '/jenssegers/proxy/src/Filter/RewriteLocationFilter.php',
     233        'Proxy\\Proxy' => __DIR__ . '/..' . '/jenssegers/proxy/src/Proxy.php',
     234        'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php',
     235        'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php',
     236        'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php',
     237        'Psr\\Http\\Message\\ServerRequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/ServerRequestInterface.php',
     238        'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php',
     239        'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php',
     240        'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php',
     241        'Relay\\GetArrayCopyInterface' => __DIR__ . '/..' . '/relay/relay/src/GetArrayCopyInterface.php',
     242        'Relay\\MiddlewareInterface' => __DIR__ . '/..' . '/relay/relay/src/MiddlewareInterface.php',
     243        'Relay\\Relay' => __DIR__ . '/..' . '/relay/relay/src/Relay.php',
     244        'Relay\\RelayBuilder' => __DIR__ . '/..' . '/relay/relay/src/RelayBuilder.php',
     245        'Relay\\ResolverInterface' => __DIR__ . '/..' . '/relay/relay/src/ResolverInterface.php',
     246        'Relay\\Runner' => __DIR__ . '/..' . '/relay/relay/src/Runner.php',
     247        'Relay\\RunnerFactory' => __DIR__ . '/..' . '/relay/relay/src/RunnerFactory.php',
     248        'Symfony\\Polyfill\\Intl\\Idn\\Idn' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Idn.php',
     249        'Symfony\\Polyfill\\Intl\\Idn\\Info' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Info.php',
     250        'Symfony\\Polyfill\\Intl\\Idn\\Resources\\unidata\\DisallowedRanges' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php',
     251        'Symfony\\Polyfill\\Intl\\Idn\\Resources\\unidata\\Regex' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Resources/unidata/Regex.php',
     252        'Symfony\\Polyfill\\Intl\\Normalizer\\Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Normalizer.php',
     253        'Symfony\\Polyfill\\Php72\\Php72' => __DIR__ . '/..' . '/symfony/polyfill-php72/Php72.php',
     254        'Zend\\Diactoros\\AbstractSerializer' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/AbstractSerializer.php',
     255        'Zend\\Diactoros\\CallbackStream' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/CallbackStream.php',
     256        'Zend\\Diactoros\\Exception\\DeprecatedMethodException' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Exception/DeprecatedMethodException.php',
     257        'Zend\\Diactoros\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Exception/ExceptionInterface.php',
     258        'Zend\\Diactoros\\HeaderSecurity' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/HeaderSecurity.php',
     259        'Zend\\Diactoros\\MessageTrait' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/MessageTrait.php',
     260        'Zend\\Diactoros\\PhpInputStream' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/PhpInputStream.php',
     261        'Zend\\Diactoros\\RelativeStream' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/RelativeStream.php',
     262        'Zend\\Diactoros\\Request' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Request.php',
     263        'Zend\\Diactoros\\RequestTrait' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/RequestTrait.php',
     264        'Zend\\Diactoros\\Request\\Serializer' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Request/Serializer.php',
     265        'Zend\\Diactoros\\Response' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response.php',
     266        'Zend\\Diactoros\\Response\\EmitterInterface' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/EmitterInterface.php',
     267        'Zend\\Diactoros\\Response\\EmptyResponse' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/EmptyResponse.php',
     268        'Zend\\Diactoros\\Response\\HtmlResponse' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/HtmlResponse.php',
     269        'Zend\\Diactoros\\Response\\InjectContentTypeTrait' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/InjectContentTypeTrait.php',
     270        'Zend\\Diactoros\\Response\\JsonResponse' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/JsonResponse.php',
     271        'Zend\\Diactoros\\Response\\RedirectResponse' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/RedirectResponse.php',
     272        'Zend\\Diactoros\\Response\\SapiEmitter' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/SapiEmitter.php',
     273        'Zend\\Diactoros\\Response\\SapiEmitterTrait' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/SapiEmitterTrait.php',
     274        'Zend\\Diactoros\\Response\\SapiStreamEmitter' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/SapiStreamEmitter.php',
     275        'Zend\\Diactoros\\Response\\Serializer' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/Serializer.php',
     276        'Zend\\Diactoros\\Response\\TextResponse' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Response/TextResponse.php',
     277        'Zend\\Diactoros\\Server' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Server.php',
     278        'Zend\\Diactoros\\ServerRequest' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/ServerRequest.php',
     279        'Zend\\Diactoros\\ServerRequestFactory' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/ServerRequestFactory.php',
     280        'Zend\\Diactoros\\Stream' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Stream.php',
     281        'Zend\\Diactoros\\UploadedFile' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/UploadedFile.php',
     282        'Zend\\Diactoros\\Uri' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/Uri.php',
    37283    );
    38284
     
    40286    {
    41287        return \Closure::bind(function () use ($loader) {
    42             $loader->prefixLengthsPsr4 = ComposerStaticInit48aaab33bfdcc14fe55fe204adae867c::$prefixLengthsPsr4;
    43             $loader->prefixDirsPsr4 = ComposerStaticInit48aaab33bfdcc14fe55fe204adae867c::$prefixDirsPsr4;
    44             $loader->classMap = ComposerStaticInit48aaab33bfdcc14fe55fe204adae867c::$classMap;
     288            $loader->prefixLengthsPsr4 = ComposerStaticInite8933fa9d67215704c526e636b8f0df0::$prefixLengthsPsr4;
     289            $loader->prefixDirsPsr4 = ComposerStaticInite8933fa9d67215704c526e636b8f0df0::$prefixDirsPsr4;
     290            $loader->classMap = ComposerStaticInite8933fa9d67215704c526e636b8f0df0::$classMap;
    45291
    46292        }, null, ClassLoader::class);
  • napps/trunk/vendor/composer/installed.json

    r2672465 r3008810  
    6060            },
    6161            "install-path": "../firebase/php-jwt"
     62        },
     63        {
     64            "name": "guzzlehttp/guzzle",
     65            "version": "6.5.8",
     66            "version_normalized": "6.5.8.0",
     67            "source": {
     68                "type": "git",
     69                "url": "https://github.com/guzzle/guzzle.git",
     70                "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
     71            },
     72            "dist": {
     73                "type": "zip",
     74                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
     75                "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
     76                "shasum": ""
     77            },
     78            "require": {
     79                "ext-json": "*",
     80                "guzzlehttp/promises": "^1.0",
     81                "guzzlehttp/psr7": "^1.9",
     82                "php": ">=5.5",
     83                "symfony/polyfill-intl-idn": "^1.17"
     84            },
     85            "require-dev": {
     86                "ext-curl": "*",
     87                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
     88                "psr/log": "^1.1"
     89            },
     90            "suggest": {
     91                "psr/log": "Required for using the Log middleware"
     92            },
     93            "time": "2022-06-20T22:16:07+00:00",
     94            "type": "library",
     95            "extra": {
     96                "branch-alias": {
     97                    "dev-master": "6.5-dev"
     98                }
     99            },
     100            "installation-source": "dist",
     101            "autoload": {
     102                "files": [
     103                    "src/functions_include.php"
     104                ],
     105                "psr-4": {
     106                    "GuzzleHttp\\": "src/"
     107                }
     108            },
     109            "notification-url": "https://packagist.org/downloads/",
     110            "license": [
     111                "MIT"
     112            ],
     113            "authors": [
     114                {
     115                    "name": "Graham Campbell",
     116                    "email": "hello@gjcampbell.co.uk",
     117                    "homepage": "https://github.com/GrahamCampbell"
     118                },
     119                {
     120                    "name": "Michael Dowling",
     121                    "email": "mtdowling@gmail.com",
     122                    "homepage": "https://github.com/mtdowling"
     123                },
     124                {
     125                    "name": "Jeremy Lindblom",
     126                    "email": "jeremeamia@gmail.com",
     127                    "homepage": "https://github.com/jeremeamia"
     128                },
     129                {
     130                    "name": "George Mponos",
     131                    "email": "gmponos@gmail.com",
     132                    "homepage": "https://github.com/gmponos"
     133                },
     134                {
     135                    "name": "Tobias Nyholm",
     136                    "email": "tobias.nyholm@gmail.com",
     137                    "homepage": "https://github.com/Nyholm"
     138                },
     139                {
     140                    "name": "Márk Sági-Kazár",
     141                    "email": "mark.sagikazar@gmail.com",
     142                    "homepage": "https://github.com/sagikazarmark"
     143                },
     144                {
     145                    "name": "Tobias Schultze",
     146                    "email": "webmaster@tubo-world.de",
     147                    "homepage": "https://github.com/Tobion"
     148                }
     149            ],
     150            "description": "Guzzle is a PHP HTTP client library",
     151            "homepage": "http://guzzlephp.org/",
     152            "keywords": [
     153                "client",
     154                "curl",
     155                "framework",
     156                "http",
     157                "http client",
     158                "rest",
     159                "web service"
     160            ],
     161            "support": {
     162                "issues": "https://github.com/guzzle/guzzle/issues",
     163                "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
     164            },
     165            "funding": [
     166                {
     167                    "url": "https://github.com/GrahamCampbell",
     168                    "type": "github"
     169                },
     170                {
     171                    "url": "https://github.com/Nyholm",
     172                    "type": "github"
     173                },
     174                {
     175                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
     176                    "type": "tidelift"
     177                }
     178            ],
     179            "install-path": "../guzzlehttp/guzzle"
     180        },
     181        {
     182            "name": "guzzlehttp/promises",
     183            "version": "1.5.3",
     184            "version_normalized": "1.5.3.0",
     185            "source": {
     186                "type": "git",
     187                "url": "https://github.com/guzzle/promises.git",
     188                "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
     189            },
     190            "dist": {
     191                "type": "zip",
     192                "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
     193                "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
     194                "shasum": ""
     195            },
     196            "require": {
     197                "php": ">=5.5"
     198            },
     199            "require-dev": {
     200                "symfony/phpunit-bridge": "^4.4 || ^5.1"
     201            },
     202            "time": "2023-05-21T12:31:43+00:00",
     203            "type": "library",
     204            "installation-source": "dist",
     205            "autoload": {
     206                "files": [
     207                    "src/functions_include.php"
     208                ],
     209                "psr-4": {
     210                    "GuzzleHttp\\Promise\\": "src/"
     211                }
     212            },
     213            "notification-url": "https://packagist.org/downloads/",
     214            "license": [
     215                "MIT"
     216            ],
     217            "authors": [
     218                {
     219                    "name": "Graham Campbell",
     220                    "email": "hello@gjcampbell.co.uk",
     221                    "homepage": "https://github.com/GrahamCampbell"
     222                },
     223                {
     224                    "name": "Michael Dowling",
     225                    "email": "mtdowling@gmail.com",
     226                    "homepage": "https://github.com/mtdowling"
     227                },
     228                {
     229                    "name": "Tobias Nyholm",
     230                    "email": "tobias.nyholm@gmail.com",
     231                    "homepage": "https://github.com/Nyholm"
     232                },
     233                {
     234                    "name": "Tobias Schultze",
     235                    "email": "webmaster@tubo-world.de",
     236                    "homepage": "https://github.com/Tobion"
     237                }
     238            ],
     239            "description": "Guzzle promises library",
     240            "keywords": [
     241                "promise"
     242            ],
     243            "support": {
     244                "issues": "https://github.com/guzzle/promises/issues",
     245                "source": "https://github.com/guzzle/promises/tree/1.5.3"
     246            },
     247            "funding": [
     248                {
     249                    "url": "https://github.com/GrahamCampbell",
     250                    "type": "github"
     251                },
     252                {
     253                    "url": "https://github.com/Nyholm",
     254                    "type": "github"
     255                },
     256                {
     257                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
     258                    "type": "tidelift"
     259                }
     260            ],
     261            "install-path": "../guzzlehttp/promises"
     262        },
     263        {
     264            "name": "guzzlehttp/psr7",
     265            "version": "1.9.1",
     266            "version_normalized": "1.9.1.0",
     267            "source": {
     268                "type": "git",
     269                "url": "https://github.com/guzzle/psr7.git",
     270                "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
     271            },
     272            "dist": {
     273                "type": "zip",
     274                "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
     275                "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
     276                "shasum": ""
     277            },
     278            "require": {
     279                "php": ">=5.4.0",
     280                "psr/http-message": "~1.0",
     281                "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
     282            },
     283            "provide": {
     284                "psr/http-message-implementation": "1.0"
     285            },
     286            "require-dev": {
     287                "ext-zlib": "*",
     288                "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
     289            },
     290            "suggest": {
     291                "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
     292            },
     293            "time": "2023-04-17T16:00:37+00:00",
     294            "type": "library",
     295            "installation-source": "dist",
     296            "autoload": {
     297                "files": [
     298                    "src/functions_include.php"
     299                ],
     300                "psr-4": {
     301                    "GuzzleHttp\\Psr7\\": "src/"
     302                }
     303            },
     304            "notification-url": "https://packagist.org/downloads/",
     305            "license": [
     306                "MIT"
     307            ],
     308            "authors": [
     309                {
     310                    "name": "Graham Campbell",
     311                    "email": "hello@gjcampbell.co.uk",
     312                    "homepage": "https://github.com/GrahamCampbell"
     313                },
     314                {
     315                    "name": "Michael Dowling",
     316                    "email": "mtdowling@gmail.com",
     317                    "homepage": "https://github.com/mtdowling"
     318                },
     319                {
     320                    "name": "George Mponos",
     321                    "email": "gmponos@gmail.com",
     322                    "homepage": "https://github.com/gmponos"
     323                },
     324                {
     325                    "name": "Tobias Nyholm",
     326                    "email": "tobias.nyholm@gmail.com",
     327                    "homepage": "https://github.com/Nyholm"
     328                },
     329                {
     330                    "name": "Márk Sági-Kazár",
     331                    "email": "mark.sagikazar@gmail.com",
     332                    "homepage": "https://github.com/sagikazarmark"
     333                },
     334                {
     335                    "name": "Tobias Schultze",
     336                    "email": "webmaster@tubo-world.de",
     337                    "homepage": "https://github.com/Tobion"
     338                }
     339            ],
     340            "description": "PSR-7 message implementation that also provides common utility methods",
     341            "keywords": [
     342                "http",
     343                "message",
     344                "psr-7",
     345                "request",
     346                "response",
     347                "stream",
     348                "uri",
     349                "url"
     350            ],
     351            "support": {
     352                "issues": "https://github.com/guzzle/psr7/issues",
     353                "source": "https://github.com/guzzle/psr7/tree/1.9.1"
     354            },
     355            "funding": [
     356                {
     357                    "url": "https://github.com/GrahamCampbell",
     358                    "type": "github"
     359                },
     360                {
     361                    "url": "https://github.com/Nyholm",
     362                    "type": "github"
     363                },
     364                {
     365                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
     366                    "type": "tidelift"
     367                }
     368            ],
     369            "install-path": "../guzzlehttp/psr7"
     370        },
     371        {
     372            "name": "jenssegers/proxy",
     373            "version": "v3.0.0",
     374            "version_normalized": "3.0.0.0",
     375            "source": {
     376                "type": "git",
     377                "url": "https://github.com/jenssegers/php-proxy.git",
     378                "reference": "1351720a0039020b1429506b94439c149e945e89"
     379            },
     380            "dist": {
     381                "type": "zip",
     382                "url": "https://api.github.com/repos/jenssegers/php-proxy/zipball/1351720a0039020b1429506b94439c149e945e89",
     383                "reference": "1351720a0039020b1429506b94439c149e945e89",
     384                "shasum": ""
     385            },
     386            "require": {
     387                "guzzlehttp/guzzle": "^6.0",
     388                "psr/http-message": "^1.0",
     389                "relay/relay": "^1.0",
     390                "zendframework/zend-diactoros": "^1.0"
     391            },
     392            "require-dev": {
     393                "mockery/mockery": "^1.1",
     394                "phpunit/phpunit": "^6.0|^7.0",
     395                "satooshi/php-coveralls": "^2.0"
     396            },
     397            "time": "2018-05-12T21:24:32+00:00",
     398            "type": "library",
     399            "installation-source": "dist",
     400            "autoload": {
     401                "psr-4": {
     402                    "Proxy\\": "src"
     403                }
     404            },
     405            "notification-url": "https://packagist.org/downloads/",
     406            "license": [
     407                "MIT"
     408            ],
     409            "authors": [
     410                {
     411                    "name": "Ota Mares",
     412                    "email": "o.mares@rebuy.de",
     413                    "homepage": "http://www.rebuy.de"
     414                },
     415                {
     416                    "name": "Jens Segers",
     417                    "homepage": "https://jenssegers.com"
     418                }
     419            ],
     420            "description": "Proxy library that forwards requests to the desired url and returns the response.",
     421            "homepage": "https://github.com/jenssegers/php-proxy",
     422            "keywords": [
     423                "proxy"
     424            ],
     425            "support": {
     426                "issues": "https://github.com/jenssegers/php-proxy/issues",
     427                "source": "https://github.com/jenssegers/php-proxy/tree/v3.0.0"
     428            },
     429            "install-path": "../jenssegers/proxy"
     430        },
     431        {
     432            "name": "psr/http-message",
     433            "version": "1.1",
     434            "version_normalized": "1.1.0.0",
     435            "source": {
     436                "type": "git",
     437                "url": "https://github.com/php-fig/http-message.git",
     438                "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
     439            },
     440            "dist": {
     441                "type": "zip",
     442                "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
     443                "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
     444                "shasum": ""
     445            },
     446            "require": {
     447                "php": "^7.2 || ^8.0"
     448            },
     449            "time": "2023-04-04T09:50:52+00:00",
     450            "type": "library",
     451            "extra": {
     452                "branch-alias": {
     453                    "dev-master": "1.1.x-dev"
     454                }
     455            },
     456            "installation-source": "dist",
     457            "autoload": {
     458                "psr-4": {
     459                    "Psr\\Http\\Message\\": "src/"
     460                }
     461            },
     462            "notification-url": "https://packagist.org/downloads/",
     463            "license": [
     464                "MIT"
     465            ],
     466            "authors": [
     467                {
     468                    "name": "PHP-FIG",
     469                    "homepage": "http://www.php-fig.org/"
     470                }
     471            ],
     472            "description": "Common interface for HTTP messages",
     473            "homepage": "https://github.com/php-fig/http-message",
     474            "keywords": [
     475                "http",
     476                "http-message",
     477                "psr",
     478                "psr-7",
     479                "request",
     480                "response"
     481            ],
     482            "support": {
     483                "source": "https://github.com/php-fig/http-message/tree/1.1"
     484            },
     485            "install-path": "../psr/http-message"
     486        },
     487        {
     488            "name": "ralouphie/getallheaders",
     489            "version": "3.0.3",
     490            "version_normalized": "3.0.3.0",
     491            "source": {
     492                "type": "git",
     493                "url": "https://github.com/ralouphie/getallheaders.git",
     494                "reference": "120b605dfeb996808c31b6477290a714d356e822"
     495            },
     496            "dist": {
     497                "type": "zip",
     498                "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
     499                "reference": "120b605dfeb996808c31b6477290a714d356e822",
     500                "shasum": ""
     501            },
     502            "require": {
     503                "php": ">=5.6"
     504            },
     505            "require-dev": {
     506                "php-coveralls/php-coveralls": "^2.1",
     507                "phpunit/phpunit": "^5 || ^6.5"
     508            },
     509            "time": "2019-03-08T08:55:37+00:00",
     510            "type": "library",
     511            "installation-source": "dist",
     512            "autoload": {
     513                "files": [
     514                    "src/getallheaders.php"
     515                ]
     516            },
     517            "notification-url": "https://packagist.org/downloads/",
     518            "license": [
     519                "MIT"
     520            ],
     521            "authors": [
     522                {
     523                    "name": "Ralph Khattar",
     524                    "email": "ralph.khattar@gmail.com"
     525                }
     526            ],
     527            "description": "A polyfill for getallheaders.",
     528            "support": {
     529                "issues": "https://github.com/ralouphie/getallheaders/issues",
     530                "source": "https://github.com/ralouphie/getallheaders/tree/develop"
     531            },
     532            "install-path": "../ralouphie/getallheaders"
     533        },
     534        {
     535            "name": "relay/relay",
     536            "version": "1.1.0",
     537            "version_normalized": "1.1.0.0",
     538            "source": {
     539                "type": "git",
     540                "url": "https://github.com/relayphp/Relay.Relay.git",
     541                "reference": "e835fc45351b7a92a6fdf2a36be7bd59ef56c8ae"
     542            },
     543            "dist": {
     544                "type": "zip",
     545                "url": "https://api.github.com/repos/relayphp/Relay.Relay/zipball/e835fc45351b7a92a6fdf2a36be7bd59ef56c8ae",
     546                "reference": "e835fc45351b7a92a6fdf2a36be7bd59ef56c8ae",
     547                "shasum": ""
     548            },
     549            "require": {
     550                "php": ">=5.5.0",
     551                "psr/http-message": "~1.0"
     552            },
     553            "require-dev": {
     554                "zendframework/zend-diactoros": "~1.0"
     555            },
     556            "time": "2015-12-17T18:18:30+00:00",
     557            "type": "library",
     558            "installation-source": "dist",
     559            "autoload": {
     560                "psr-4": {
     561                    "Relay\\": "src/"
     562                }
     563            },
     564            "notification-url": "https://packagist.org/downloads/",
     565            "license": [
     566                "MIT"
     567            ],
     568            "authors": [
     569                {
     570                    "name": "Relay.Relay Contributors",
     571                    "homepage": "https://github.com/relayphp/Relay.Relay/contributors"
     572                }
     573            ],
     574            "description": "A PSR-7 middleware dispatcher.",
     575            "homepage": "https://github.com/relayphp/Relay.Relay",
     576            "keywords": [
     577                "middleware",
     578                "psr-7"
     579            ],
     580            "support": {
     581                "issues": "https://github.com/relayphp/Relay.Relay/issues",
     582                "source": "https://github.com/relayphp/Relay.Relay/tree/1.x"
     583            },
     584            "install-path": "../relay/relay"
     585        },
     586        {
     587            "name": "symfony/polyfill-intl-idn",
     588            "version": "v1.28.0",
     589            "version_normalized": "1.28.0.0",
     590            "source": {
     591                "type": "git",
     592                "url": "https://github.com/symfony/polyfill-intl-idn.git",
     593                "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
     594            },
     595            "dist": {
     596                "type": "zip",
     597                "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
     598                "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
     599                "shasum": ""
     600            },
     601            "require": {
     602                "php": ">=7.1",
     603                "symfony/polyfill-intl-normalizer": "^1.10",
     604                "symfony/polyfill-php72": "^1.10"
     605            },
     606            "suggest": {
     607                "ext-intl": "For best performance"
     608            },
     609            "time": "2023-01-26T09:30:37+00:00",
     610            "type": "library",
     611            "extra": {
     612                "branch-alias": {
     613                    "dev-main": "1.28-dev"
     614                },
     615                "thanks": {
     616                    "name": "symfony/polyfill",
     617                    "url": "https://github.com/symfony/polyfill"
     618                }
     619            },
     620            "installation-source": "dist",
     621            "autoload": {
     622                "files": [
     623                    "bootstrap.php"
     624                ],
     625                "psr-4": {
     626                    "Symfony\\Polyfill\\Intl\\Idn\\": ""
     627                }
     628            },
     629            "notification-url": "https://packagist.org/downloads/",
     630            "license": [
     631                "MIT"
     632            ],
     633            "authors": [
     634                {
     635                    "name": "Laurent Bassin",
     636                    "email": "laurent@bassin.info"
     637                },
     638                {
     639                    "name": "Trevor Rowbotham",
     640                    "email": "trevor.rowbotham@pm.me"
     641                },
     642                {
     643                    "name": "Symfony Community",
     644                    "homepage": "https://symfony.com/contributors"
     645                }
     646            ],
     647            "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
     648            "homepage": "https://symfony.com",
     649            "keywords": [
     650                "compatibility",
     651                "idn",
     652                "intl",
     653                "polyfill",
     654                "portable",
     655                "shim"
     656            ],
     657            "support": {
     658                "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
     659            },
     660            "funding": [
     661                {
     662                    "url": "https://symfony.com/sponsor",
     663                    "type": "custom"
     664                },
     665                {
     666                    "url": "https://github.com/fabpot",
     667                    "type": "github"
     668                },
     669                {
     670                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     671                    "type": "tidelift"
     672                }
     673            ],
     674            "install-path": "../symfony/polyfill-intl-idn"
     675        },
     676        {
     677            "name": "symfony/polyfill-intl-normalizer",
     678            "version": "v1.28.0",
     679            "version_normalized": "1.28.0.0",
     680            "source": {
     681                "type": "git",
     682                "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
     683                "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
     684            },
     685            "dist": {
     686                "type": "zip",
     687                "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
     688                "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
     689                "shasum": ""
     690            },
     691            "require": {
     692                "php": ">=7.1"
     693            },
     694            "suggest": {
     695                "ext-intl": "For best performance"
     696            },
     697            "time": "2023-01-26T09:26:14+00:00",
     698            "type": "library",
     699            "extra": {
     700                "branch-alias": {
     701                    "dev-main": "1.28-dev"
     702                },
     703                "thanks": {
     704                    "name": "symfony/polyfill",
     705                    "url": "https://github.com/symfony/polyfill"
     706                }
     707            },
     708            "installation-source": "dist",
     709            "autoload": {
     710                "files": [
     711                    "bootstrap.php"
     712                ],
     713                "psr-4": {
     714                    "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
     715                },
     716                "classmap": [
     717                    "Resources/stubs"
     718                ]
     719            },
     720            "notification-url": "https://packagist.org/downloads/",
     721            "license": [
     722                "MIT"
     723            ],
     724            "authors": [
     725                {
     726                    "name": "Nicolas Grekas",
     727                    "email": "p@tchwork.com"
     728                },
     729                {
     730                    "name": "Symfony Community",
     731                    "homepage": "https://symfony.com/contributors"
     732                }
     733            ],
     734            "description": "Symfony polyfill for intl's Normalizer class and related functions",
     735            "homepage": "https://symfony.com",
     736            "keywords": [
     737                "compatibility",
     738                "intl",
     739                "normalizer",
     740                "polyfill",
     741                "portable",
     742                "shim"
     743            ],
     744            "support": {
     745                "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
     746            },
     747            "funding": [
     748                {
     749                    "url": "https://symfony.com/sponsor",
     750                    "type": "custom"
     751                },
     752                {
     753                    "url": "https://github.com/fabpot",
     754                    "type": "github"
     755                },
     756                {
     757                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     758                    "type": "tidelift"
     759                }
     760            ],
     761            "install-path": "../symfony/polyfill-intl-normalizer"
     762        },
     763        {
     764            "name": "symfony/polyfill-php72",
     765            "version": "v1.28.0",
     766            "version_normalized": "1.28.0.0",
     767            "source": {
     768                "type": "git",
     769                "url": "https://github.com/symfony/polyfill-php72.git",
     770                "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
     771            },
     772            "dist": {
     773                "type": "zip",
     774                "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
     775                "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
     776                "shasum": ""
     777            },
     778            "require": {
     779                "php": ">=7.1"
     780            },
     781            "time": "2023-01-26T09:26:14+00:00",
     782            "type": "library",
     783            "extra": {
     784                "branch-alias": {
     785                    "dev-main": "1.28-dev"
     786                },
     787                "thanks": {
     788                    "name": "symfony/polyfill",
     789                    "url": "https://github.com/symfony/polyfill"
     790                }
     791            },
     792            "installation-source": "dist",
     793            "autoload": {
     794                "files": [
     795                    "bootstrap.php"
     796                ],
     797                "psr-4": {
     798                    "Symfony\\Polyfill\\Php72\\": ""
     799                }
     800            },
     801            "notification-url": "https://packagist.org/downloads/",
     802            "license": [
     803                "MIT"
     804            ],
     805            "authors": [
     806                {
     807                    "name": "Nicolas Grekas",
     808                    "email": "p@tchwork.com"
     809                },
     810                {
     811                    "name": "Symfony Community",
     812                    "homepage": "https://symfony.com/contributors"
     813                }
     814            ],
     815            "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
     816            "homepage": "https://symfony.com",
     817            "keywords": [
     818                "compatibility",
     819                "polyfill",
     820                "portable",
     821                "shim"
     822            ],
     823            "support": {
     824                "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
     825            },
     826            "funding": [
     827                {
     828                    "url": "https://symfony.com/sponsor",
     829                    "type": "custom"
     830                },
     831                {
     832                    "url": "https://github.com/fabpot",
     833                    "type": "github"
     834                },
     835                {
     836                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     837                    "type": "tidelift"
     838                }
     839            ],
     840            "install-path": "../symfony/polyfill-php72"
     841        },
     842        {
     843            "name": "zendframework/zend-diactoros",
     844            "version": "1.3.3",
     845            "version_normalized": "1.3.3.0",
     846            "source": {
     847                "type": "git",
     848                "url": "https://github.com/zendframework/zend-diactoros.git",
     849                "reference": "4d54fde709664562eb63356f0250d527824d05de"
     850            },
     851            "dist": {
     852                "type": "zip",
     853                "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/4d54fde709664562eb63356f0250d527824d05de",
     854                "reference": "4d54fde709664562eb63356f0250d527824d05de",
     855                "shasum": ""
     856            },
     857            "require": {
     858                "php": ">=5.4",
     859                "psr/http-message": "~1.0"
     860            },
     861            "provide": {
     862                "psr/http-message-implementation": "~1.0.0"
     863            },
     864            "require-dev": {
     865                "phpunit/phpunit": "~4.6",
     866                "squizlabs/php_codesniffer": "^2.3.1"
     867            },
     868            "time": "2016-01-04T21:37:32+00:00",
     869            "type": "library",
     870            "extra": {
     871                "branch-alias": {
     872                    "dev-master": "1.3-dev",
     873                    "dev-develop": "1.4-dev"
     874                }
     875            },
     876            "installation-source": "dist",
     877            "autoload": {
     878                "psr-4": {
     879                    "Zend\\Diactoros\\": "src/"
     880                }
     881            },
     882            "notification-url": "https://packagist.org/downloads/",
     883            "license": [
     884                "BSD-2-Clause"
     885            ],
     886            "description": "PSR HTTP Message implementations",
     887            "homepage": "https://github.com/zendframework/zend-diactoros",
     888            "keywords": [
     889                "http",
     890                "psr",
     891                "psr-7"
     892            ],
     893            "support": {
     894                "issues": "https://github.com/zendframework/zend-diactoros/issues",
     895                "source": "https://github.com/zendframework/zend-diactoros"
     896            },
     897            "abandoned": "laminas/laminas-diactoros",
     898            "install-path": "../zendframework/zend-diactoros"
    62899        }
    63900    ],
    64     "dev": true,
     901    "dev": false,
    65902    "dev-package-names": []
    66903}
  • napps/trunk/vendor/composer/installed.php

    r2962449 r3008810  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => 'a78d1aab4c309fabdb4041a7c82ed5dac63099ff',
     6        'reference' => '747826341763b3b833cc4c07a1f4407277594fc8',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
    99        'aliases' => array(),
    10         'dev' => true,
     10        'dev' => false,
    1111    ),
    1212    'versions' => array(
     
    2020            'dev_requirement' => false,
    2121        ),
     22        'guzzlehttp/guzzle' => array(
     23            'pretty_version' => '6.5.8',
     24            'version' => '6.5.8.0',
     25            'reference' => 'a52f0440530b54fa079ce76e8c5d196a42cad981',
     26            'type' => 'library',
     27            'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
     28            'aliases' => array(),
     29            'dev_requirement' => false,
     30        ),
     31        'guzzlehttp/promises' => array(
     32            'pretty_version' => '1.5.3',
     33            'version' => '1.5.3.0',
     34            'reference' => '67ab6e18aaa14d753cc148911d273f6e6cb6721e',
     35            'type' => 'library',
     36            'install_path' => __DIR__ . '/../guzzlehttp/promises',
     37            'aliases' => array(),
     38            'dev_requirement' => false,
     39        ),
     40        'guzzlehttp/psr7' => array(
     41            'pretty_version' => '1.9.1',
     42            'version' => '1.9.1.0',
     43            'reference' => 'e4490cabc77465aaee90b20cfc9a770f8c04be6b',
     44            'type' => 'library',
     45            'install_path' => __DIR__ . '/../guzzlehttp/psr7',
     46            'aliases' => array(),
     47            'dev_requirement' => false,
     48        ),
     49        'jenssegers/proxy' => array(
     50            'pretty_version' => 'v3.0.0',
     51            'version' => '3.0.0.0',
     52            'reference' => '1351720a0039020b1429506b94439c149e945e89',
     53            'type' => 'library',
     54            'install_path' => __DIR__ . '/../jenssegers/proxy',
     55            'aliases' => array(),
     56            'dev_requirement' => false,
     57        ),
    2258        'napps/wordpress' => array(
    2359            'pretty_version' => 'dev-main',
    2460            'version' => 'dev-main',
    25             'reference' => 'a78d1aab4c309fabdb4041a7c82ed5dac63099ff',
     61            'reference' => '747826341763b3b833cc4c07a1f4407277594fc8',
    2662            'type' => 'wordpress-plugin',
    2763            'install_path' => __DIR__ . '/../../',
     
    2965            'dev_requirement' => false,
    3066        ),
     67        'psr/http-message' => array(
     68            'pretty_version' => '1.1',
     69            'version' => '1.1.0.0',
     70            'reference' => 'cb6ce4845ce34a8ad9e68117c10ee90a29919eba',
     71            'type' => 'library',
     72            'install_path' => __DIR__ . '/../psr/http-message',
     73            'aliases' => array(),
     74            'dev_requirement' => false,
     75        ),
     76        'psr/http-message-implementation' => array(
     77            'dev_requirement' => false,
     78            'provided' => array(
     79                0 => '1.0',
     80                1 => '~1.0.0',
     81            ),
     82        ),
     83        'ralouphie/getallheaders' => array(
     84            'pretty_version' => '3.0.3',
     85            'version' => '3.0.3.0',
     86            'reference' => '120b605dfeb996808c31b6477290a714d356e822',
     87            'type' => 'library',
     88            'install_path' => __DIR__ . '/../ralouphie/getallheaders',
     89            'aliases' => array(),
     90            'dev_requirement' => false,
     91        ),
     92        'relay/relay' => array(
     93            'pretty_version' => '1.1.0',
     94            'version' => '1.1.0.0',
     95            'reference' => 'e835fc45351b7a92a6fdf2a36be7bd59ef56c8ae',
     96            'type' => 'library',
     97            'install_path' => __DIR__ . '/../relay/relay',
     98            'aliases' => array(),
     99            'dev_requirement' => false,
     100        ),
     101        'symfony/polyfill-intl-idn' => array(
     102            'pretty_version' => 'v1.28.0',
     103            'version' => '1.28.0.0',
     104            'reference' => 'ecaafce9f77234a6a449d29e49267ba10499116d',
     105            'type' => 'library',
     106            'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn',
     107            'aliases' => array(),
     108            'dev_requirement' => false,
     109        ),
     110        'symfony/polyfill-intl-normalizer' => array(
     111            'pretty_version' => 'v1.28.0',
     112            'version' => '1.28.0.0',
     113            'reference' => '8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92',
     114            'type' => 'library',
     115            'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer',
     116            'aliases' => array(),
     117            'dev_requirement' => false,
     118        ),
     119        'symfony/polyfill-php72' => array(
     120            'pretty_version' => 'v1.28.0',
     121            'version' => '1.28.0.0',
     122            'reference' => '70f4aebd92afca2f865444d30a4d2151c13c3179',
     123            'type' => 'library',
     124            'install_path' => __DIR__ . '/../symfony/polyfill-php72',
     125            'aliases' => array(),
     126            'dev_requirement' => false,
     127        ),
     128        'zendframework/zend-diactoros' => array(
     129            'pretty_version' => '1.3.3',
     130            'version' => '1.3.3.0',
     131            'reference' => '4d54fde709664562eb63356f0250d527824d05de',
     132            'type' => 'library',
     133            'install_path' => __DIR__ . '/../zendframework/zend-diactoros',
     134            'aliases' => array(),
     135            'dev_requirement' => false,
     136        ),
    31137    ),
    32138);
  • napps/trunk/vendor/composer/platform_check.php

    r2672465 r3008810  
    55$issues = array();
    66
    7 if (!(PHP_VERSION_ID >= 50300)) {
    8     $issues[] = 'Your Composer dependencies require a PHP version ">= 5.3.0". You are running ' . PHP_VERSION . '.';
     7if (!(PHP_VERSION_ID >= 70200)) {
     8    $issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.0". You are running ' . PHP_VERSION . '.';
    99}
    1010
Note: See TracChangeset for help on using the changeset viewer.