页面速度优化
Showing
with
20950 additions
and
407 deletions
app/Http/Services/SupplierTagService.php
0 → 100644
| ... | @@ -11,7 +11,8 @@ | ... | @@ -11,7 +11,8 @@ |
| "ext-curl": "*", | "ext-curl": "*", | ||
| "predis/predis": "^1.1", | "predis/predis": "^1.1", | ||
| "vladimir-yuldashev/laravel-queue-rabbitmq": "5.2", | "vladimir-yuldashev/laravel-queue-rabbitmq": "5.2", | ||
| "maatwebsite/excel": "2.1.0" | "maatwebsite/excel": "2.1.0", | ||
| "guzzlehttp/guzzle": "6.3" | |||
| }, | }, | ||
| "require-dev": { | "require-dev": { | ||
| "fzaninotto/faker": "~1.4", | "fzaninotto/faker": "~1.4", | ||
| ... | ... |
vendor/guzzlehttp/guzzle/CHANGELOG.md
0 → 100644
vendor/guzzlehttp/guzzle/LICENSE
0 → 100644
vendor/guzzlehttp/guzzle/README.md
0 → 100644
vendor/guzzlehttp/guzzle/UPGRADING.md
0 → 100644
vendor/guzzlehttp/guzzle/composer.json
0 → 100644
| { | |||
| "name": "guzzlehttp/guzzle", | |||
| "type": "library", | |||
| "description": "Guzzle is a PHP HTTP client library", | |||
| "keywords": ["framework", "http", "rest", "web service", "curl", "client", "HTTP client"], | |||
| "homepage": "http://guzzlephp.org/", | |||
| "license": "MIT", | |||
| "authors": [ | |||
| { | |||
| "name": "Michael Dowling", | |||
| "email": "mtdowling@gmail.com", | |||
| "homepage": "https://github.com/mtdowling" | |||
| } | |||
| ], | |||
| "require": { | |||
| "php": ">=5.5", | |||
| "guzzlehttp/psr7": "^1.4", | |||
| "guzzlehttp/promises": "^1.0" | |||
| }, | |||
| "require-dev": { | |||
| "ext-curl": "*", | |||
| "phpunit/phpunit": "^4.0 || ^5.0", | |||
| "psr/log": "^1.0" | |||
| }, | |||
| "autoload": { | |||
| "files": ["src/functions_include.php"], | |||
| "psr-4": { | |||
| "GuzzleHttp\\": "src/" | |||
| } | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "GuzzleHttp\\Tests\\": "tests/" | |||
| } | |||
| }, | |||
| "suggest": { | |||
| "psr/log": "Required for using the Log middleware" | |||
| }, | |||
| "extra": { | |||
| "branch-alias": { | |||
| "dev-master": "6.2-dev" | |||
| } | |||
| } | |||
| } |
vendor/guzzlehttp/guzzle/src/Client.php
0 → 100644
vendor/guzzlehttp/guzzle/src/Middleware.php
0 → 100644
vendor/guzzlehttp/guzzle/src/Pool.php
0 → 100644
vendor/guzzlehttp/guzzle/src/UriTemplate.php
0 → 100644
vendor/guzzlehttp/guzzle/src/functions.php
0 → 100644
vendor/guzzlehttp/promises/CHANGELOG.md
0 → 100644
vendor/guzzlehttp/promises/LICENSE
0 → 100644
vendor/guzzlehttp/promises/Makefile
0 → 100644
vendor/guzzlehttp/promises/README.md
0 → 100644
vendor/guzzlehttp/promises/composer.json
0 → 100644
| { | |||
| "name": "guzzlehttp/promises", | |||
| "description": "Guzzle promises library", | |||
| "keywords": ["promise"], | |||
| "license": "MIT", | |||
| "authors": [ | |||
| { | |||
| "name": "Michael Dowling", | |||
| "email": "mtdowling@gmail.com", | |||
| "homepage": "https://github.com/mtdowling" | |||
| } | |||
| ], | |||
| "require": { | |||
| "php": ">=5.5" | |||
| }, | |||
| "require-dev": { | |||
| "symfony/phpunit-bridge": "^4.4 || ^5.1" | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "GuzzleHttp\\Promise\\": "src/" | |||
| }, | |||
| "files": ["src/functions_include.php"] | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "GuzzleHttp\\Promise\\Tests\\": "tests/" | |||
| } | |||
| }, | |||
| "scripts": { | |||
| "test": "vendor/bin/simple-phpunit", | |||
| "test-ci": "vendor/bin/simple-phpunit --coverage-text" | |||
| }, | |||
| "extra": { | |||
| "branch-alias": { | |||
| "dev-master": "1.4-dev" | |||
| } | |||
| } | |||
| } |
vendor/guzzlehttp/promises/src/Coroutine.php
0 → 100644
vendor/guzzlehttp/promises/src/Create.php
0 → 100644
vendor/guzzlehttp/promises/src/Each.php
0 → 100644
vendor/guzzlehttp/promises/src/Is.php
0 → 100644
vendor/guzzlehttp/promises/src/Promise.php
0 → 100644
vendor/guzzlehttp/promises/src/TaskQueue.php
0 → 100644
vendor/guzzlehttp/promises/src/Utils.php
0 → 100644
vendor/guzzlehttp/promises/src/functions.php
0 → 100644
vendor/guzzlehttp/psr7/.php_cs.dist
0 → 100644
vendor/guzzlehttp/psr7/CHANGELOG.md
0 → 100644
vendor/guzzlehttp/psr7/LICENSE
0 → 100644
vendor/guzzlehttp/psr7/README.md
0 → 100644
vendor/guzzlehttp/psr7/composer.json
0 → 100644
| { | |||
| "name": "guzzlehttp/psr7", | |||
| "type": "library", | |||
| "description": "PSR-7 message implementation that also provides common utility methods", | |||
| "keywords": ["request", "response", "message", "stream", "http", "uri", "url", "psr-7"], | |||
| "license": "MIT", | |||
| "authors": [ | |||
| { | |||
| "name": "Michael Dowling", | |||
| "email": "mtdowling@gmail.com", | |||
| "homepage": "https://github.com/mtdowling" | |||
| }, | |||
| { | |||
| "name": "Tobias Schultze", | |||
| "homepage": "https://github.com/Tobion" | |||
| } | |||
| ], | |||
| "require": { | |||
| "php": ">=5.4.0", | |||
| "psr/http-message": "~1.0", | |||
| "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" | |||
| }, | |||
| "require-dev": { | |||
| "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10", | |||
| "ext-zlib": "*" | |||
| }, | |||
| "provide": { | |||
| "psr/http-message-implementation": "1.0" | |||
| }, | |||
| "suggest": { | |||
| "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "GuzzleHttp\\Psr7\\": "src/" | |||
| }, | |||
| "files": ["src/functions_include.php"] | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "GuzzleHttp\\Tests\\Psr7\\": "tests/" | |||
| } | |||
| }, | |||
| "extra": { | |||
| "branch-alias": { | |||
| "dev-master": "1.7-dev" | |||
| } | |||
| } | |||
| } |
vendor/guzzlehttp/psr7/src/AppendStream.php
0 → 100644
vendor/guzzlehttp/psr7/src/BufferStream.php
0 → 100644
vendor/guzzlehttp/psr7/src/CachingStream.php
0 → 100644
vendor/guzzlehttp/psr7/src/FnStream.php
0 → 100644
vendor/guzzlehttp/psr7/src/Header.php
0 → 100644
vendor/guzzlehttp/psr7/src/InflateStream.php
0 → 100644
vendor/guzzlehttp/psr7/src/LimitStream.php
0 → 100644
vendor/guzzlehttp/psr7/src/Message.php
0 → 100644
vendor/guzzlehttp/psr7/src/MessageTrait.php
0 → 100644
vendor/guzzlehttp/psr7/src/MimeType.php
0 → 100644
vendor/guzzlehttp/psr7/src/NoSeekStream.php
0 → 100644
vendor/guzzlehttp/psr7/src/PumpStream.php
0 → 100644
vendor/guzzlehttp/psr7/src/Query.php
0 → 100644
vendor/guzzlehttp/psr7/src/Request.php
0 → 100644
vendor/guzzlehttp/psr7/src/Response.php
0 → 100644
vendor/guzzlehttp/psr7/src/Rfc7230.php
0 → 100644
vendor/guzzlehttp/psr7/src/ServerRequest.php
0 → 100644
vendor/guzzlehttp/psr7/src/Stream.php
0 → 100644
vendor/guzzlehttp/psr7/src/StreamWrapper.php
0 → 100644
vendor/guzzlehttp/psr7/src/UploadedFile.php
0 → 100644
vendor/guzzlehttp/psr7/src/Uri.php
0 → 100644
vendor/guzzlehttp/psr7/src/UriNormalizer.php
0 → 100644
vendor/guzzlehttp/psr7/src/UriResolver.php
0 → 100644
vendor/guzzlehttp/psr7/src/Utils.php
0 → 100644
vendor/guzzlehttp/psr7/src/functions.php
0 → 100644
vendor/psr/http-message/CHANGELOG.md
0 → 100644
vendor/psr/http-message/LICENSE
0 → 100644
vendor/psr/http-message/README.md
0 → 100644
vendor/psr/http-message/composer.json
0 → 100644
| { | |||
| "name": "psr/http-message", | |||
| "description": "Common interface for HTTP messages", | |||
| "keywords": ["psr", "psr-7", "http", "http-message", "request", "response"], | |||
| "homepage": "https://github.com/php-fig/http-message", | |||
| "license": "MIT", | |||
| "authors": [ | |||
| { | |||
| "name": "PHP-FIG", | |||
| "homepage": "http://www.php-fig.org/" | |||
| } | |||
| ], | |||
| "require": { | |||
| "php": ">=5.3.0" | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "Psr\\Http\\Message\\": "src/" | |||
| } | |||
| }, | |||
| "extra": { | |||
| "branch-alias": { | |||
| "dev-master": "1.0.x-dev" | |||
| } | |||
| } | |||
| } |
vendor/psr/http-message/src/UriInterface.php
0 → 100644
vendor/ralouphie/getallheaders/LICENSE
0 → 100644
vendor/ralouphie/getallheaders/README.md
0 → 100644
vendor/ralouphie/getallheaders/composer.json
0 → 100644
| { | |||
| "name": "ralouphie/getallheaders", | |||
| "description": "A polyfill for getallheaders.", | |||
| "license": "MIT", | |||
| "authors": [ | |||
| { | |||
| "name": "Ralph Khattar", | |||
| "email": "ralph.khattar@gmail.com" | |||
| } | |||
| ], | |||
| "require": { | |||
| "php": ">=5.6" | |||
| }, | |||
| "require-dev": { | |||
| "phpunit/phpunit": "^5 || ^6.5", | |||
| "php-coveralls/php-coveralls": "^2.1" | |||
| }, | |||
| "autoload": { | |||
| "files": ["src/getallheaders.php"] | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "getallheaders\\Tests\\": "tests/" | |||
| } | |||
| } | |||
| } |
Please
register
or
sign in
to comment