├── vendor
├── clue
│ └── stream-filter
│ │ ├── .gitignore
│ │ ├── src
│ │ └── functions_include.php
│ │ ├── examples
│ │ ├── uppercase.php
│ │ ├── base64_encode.php
│ │ └── base64_decode.php
│ │ ├── .travis.yml
│ │ ├── phpunit.xml.dist
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── tests
│ │ ├── FunTest.php
│ │ └── FunZlibTest.php
│ │ └── CHANGELOG.md
├── php-http
│ ├── message
│ │ ├── apigen.neon
│ │ ├── src
│ │ │ ├── Exception.php
│ │ │ ├── filters.php
│ │ │ ├── Exception
│ │ │ │ └── UnexpectedValueException.php
│ │ │ ├── UriFactory
│ │ │ │ ├── GuzzleUriFactory.php
│ │ │ │ ├── DiactorosUriFactory.php
│ │ │ │ └── SlimUriFactory.php
│ │ │ ├── StreamFactory
│ │ │ │ ├── GuzzleStreamFactory.php
│ │ │ │ ├── DiactorosStreamFactory.php
│ │ │ │ └── SlimStreamFactory.php
│ │ │ ├── Encoding
│ │ │ │ ├── DechunkStream.php
│ │ │ │ ├── ChunkStream.php
│ │ │ │ ├── Filter
│ │ │ │ │ └── Chunk.php
│ │ │ │ ├── DeflateStream.php
│ │ │ │ ├── CompressStream.php
│ │ │ │ ├── InflateStream.php
│ │ │ │ ├── DecompressStream.php
│ │ │ │ ├── GzipDecodeStream.php
│ │ │ │ └── GzipEncodeStream.php
│ │ │ ├── Formatter.php
│ │ │ ├── RequestMatcher.php
│ │ │ ├── Authentication.php
│ │ │ ├── RequestMatcher
│ │ │ │ ├── CallbackRequestMatcher.php
│ │ │ │ ├── RegexRequestMatcher.php
│ │ │ │ └── RequestMatcher.php
│ │ │ ├── Authentication
│ │ │ │ ├── Bearer.php
│ │ │ │ ├── BasicAuth.php
│ │ │ │ ├── RequestConditional.php
│ │ │ │ ├── QueryParam.php
│ │ │ │ ├── AutoBasicAuth.php
│ │ │ │ ├── Chain.php
│ │ │ │ ├── Wsse.php
│ │ │ │ └── Matching.php
│ │ │ ├── Formatter
│ │ │ │ └── SimpleFormatter.php
│ │ │ ├── MessageFactory
│ │ │ │ ├── GuzzleMessageFactory.php
│ │ │ │ ├── DiactorosMessageFactory.php
│ │ │ │ └── SlimMessageFactory.php
│ │ │ ├── Decorator
│ │ │ │ ├── ResponseDecorator.php
│ │ │ │ └── RequestDecorator.php
│ │ │ └── CookieUtil.php
│ │ ├── LICENSE
│ │ ├── composer.json
│ │ └── README.md
│ ├── discovery
│ │ ├── src
│ │ │ ├── Exception.php
│ │ │ ├── Exception
│ │ │ │ ├── PuliUnavailableException.php
│ │ │ │ ├── ClassInstantiationFailedException.php
│ │ │ │ ├── NotFoundException.php
│ │ │ │ ├── StrategyUnavailableException.php
│ │ │ │ ├── DiscoveryFailedException.php
│ │ │ │ └── NoCandidateFoundException.php
│ │ │ ├── NotFoundException.php
│ │ │ ├── Strategy
│ │ │ │ ├── DiscoveryStrategy.php
│ │ │ │ └── MockClientStrategy.php
│ │ │ ├── HttpClientDiscovery.php
│ │ │ ├── Psr18ClientDiscovery.php
│ │ │ ├── HttpAsyncClientDiscovery.php
│ │ │ ├── UriFactoryDiscovery.php
│ │ │ ├── StreamFactoryDiscovery.php
│ │ │ └── MessageFactoryDiscovery.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── composer.json
│ ├── guzzle6-adapter
│ │ ├── src
│ │ │ ├── Exception
│ │ │ │ └── UnexpectedValueException.php
│ │ │ └── Client.php
│ │ ├── puli.json
│ │ ├── LICENSE
│ │ ├── composer.json
│ │ └── README.md
│ ├── message-factory
│ │ ├── src
│ │ │ ├── MessageFactory.php
│ │ │ ├── UriFactory.php
│ │ │ ├── StreamFactory.php
│ │ │ ├── RequestFactory.php
│ │ │ └── ResponseFactory.php
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── CHANGELOG.md
│ │ └── puli.json
│ ├── httplug
│ │ ├── puli.json
│ │ ├── src
│ │ │ ├── Exception
│ │ │ │ ├── TransferException.php
│ │ │ │ ├── NetworkException.php
│ │ │ │ ├── RequestException.php
│ │ │ │ └── HttpException.php
│ │ │ ├── Exception.php
│ │ │ ├── HttpAsyncClient.php
│ │ │ ├── HttpClient.php
│ │ │ └── Promise
│ │ │ │ ├── HttpRejectedPromise.php
│ │ │ │ └── HttpFulfilledPromise.php
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ └── README.md
│ └── promise
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── src
│ │ ├── FulfilledPromise.php
│ │ ├── RejectedPromise.php
│ │ └── Promise.php
│ │ └── README.md
├── guzzlehttp
│ ├── guzzle
│ │ ├── src
│ │ │ ├── Exception
│ │ │ │ ├── TooManyRedirectsException.php
│ │ │ │ ├── TransferException.php
│ │ │ │ ├── ClientException.php
│ │ │ │ ├── ServerException.php
│ │ │ │ ├── GuzzleException.php
│ │ │ │ ├── SeekException.php
│ │ │ │ ├── ConnectException.php
│ │ │ │ └── BadResponseException.php
│ │ │ ├── functions_include.php
│ │ │ ├── Handler
│ │ │ │ ├── CurlFactoryInterface.php
│ │ │ │ ├── CurlHandler.php
│ │ │ │ └── Proxy.php
│ │ │ └── Cookie
│ │ │ │ └── SessionCookieJar.php
│ │ ├── LICENSE
│ │ └── composer.json
│ ├── psr7
│ │ ├── src
│ │ │ ├── functions_include.php
│ │ │ ├── NoSeekStream.php
│ │ │ ├── Rfc7230.php
│ │ │ ├── LazyOpenStream.php
│ │ │ ├── DroppingStream.php
│ │ │ └── InflateStream.php
│ │ ├── LICENSE
│ │ └── composer.json
│ └── promises
│ │ ├── src
│ │ ├── functions_include.php
│ │ ├── CancellationException.php
│ │ ├── PromisorInterface.php
│ │ ├── AggregateException.php
│ │ ├── TaskQueueInterface.php
│ │ ├── RejectionException.php
│ │ ├── TaskQueue.php
│ │ └── FulfilledPromise.php
│ │ ├── Makefile
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ └── CHANGELOG.md
├── autoload.php
├── composer
│ ├── autoload_classmap.php
│ ├── autoload_namespaces.php
│ ├── autoload_files.php
│ ├── LICENSE
│ └── autoload_psr4.php
├── psr
│ ├── http-client
│ │ ├── src
│ │ │ ├── ClientExceptionInterface.php
│ │ │ ├── ClientInterface.php
│ │ │ ├── RequestExceptionInterface.php
│ │ │ └── NetworkExceptionInterface.php
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── LICENSE
│ └── http-message
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ └── CHANGELOG.md
├── ralouphie
│ └── getallheaders
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ └── getallheaders.php
└── vinkla
│ └── instagram
│ ├── src
│ └── InstagramException.php
│ ├── LICENSE
│ └── composer.json
├── src
├── Resources
│ ├── public
│ │ └── administration
│ │ │ ├── instagram-feed.068de44ee9066192bbe9.hot-update.js
│ │ │ ├── instagram-feed.09796dc7720da7026262.hot-update.js
│ │ │ ├── instagram-feed.1909fdc1a4cff5db8436.hot-update.js
│ │ │ ├── instagram-feed.19b5576d360c320d0d07.hot-update.js
│ │ │ ├── instagram-feed.1b0b8a479243265b0205.hot-update.js
│ │ │ ├── instagram-feed.1b2ee1b6d275e1fadca2.hot-update.js
│ │ │ ├── instagram-feed.2385f0fa7ee964811f20.hot-update.js
│ │ │ ├── instagram-feed.23be3e680522c7e9fd2c.hot-update.js
│ │ │ ├── instagram-feed.268229382a784eabbe27.hot-update.js
│ │ │ ├── instagram-feed.26f8362cd23e2a9ed33c.hot-update.js
│ │ │ ├── instagram-feed.2ba01d4b31aafa13abd0.hot-update.js
│ │ │ ├── instagram-feed.2d065639932dc355c8f7.hot-update.js
│ │ │ ├── instagram-feed.314a54dce5f02f22b88a.hot-update.js
│ │ │ ├── instagram-feed.3c50ec283d8ae576f5fb.hot-update.js
│ │ │ ├── instagram-feed.49c27e82694c527b9305.hot-update.js
│ │ │ ├── instagram-feed.4bc0c94247cc45eabae2.hot-update.js
│ │ │ ├── instagram-feed.4fafae4e74c35bc2216b.hot-update.js
│ │ │ ├── instagram-feed.61758b561252857ef333.hot-update.js
│ │ │ ├── instagram-feed.64ba6201712dc26cacdb.hot-update.js
│ │ │ ├── instagram-feed.65d1790de7717897956a.hot-update.js
│ │ │ ├── instagram-feed.6775d41c1136115cd9a1.hot-update.js
│ │ │ ├── instagram-feed.6c83c334df00f821da62.hot-update.js
│ │ │ ├── instagram-feed.6d5aed61a63bfe2a94bd.hot-update.js
│ │ │ ├── instagram-feed.728726e14c4dd51a668c.hot-update.js
│ │ │ ├── instagram-feed.74e7672bc15fd39a29a3.hot-update.js
│ │ │ ├── instagram-feed.8044cbf3f9fd9f07ee59.hot-update.js
│ │ │ ├── instagram-feed.87cf95543b591026940e.hot-update.js
│ │ │ ├── instagram-feed.9336d629cb082ffa5ec5.hot-update.js
│ │ │ ├── instagram-feed.93872ede2ae3895da8e7.hot-update.js
│ │ │ ├── instagram-feed.995b93f121503a16c7a3.hot-update.js
│ │ │ ├── instagram-feed.a3c8e84f025e7565bef1.hot-update.js
│ │ │ ├── instagram-feed.a8b59be77d6ab4ff4e35.hot-update.js
│ │ │ ├── instagram-feed.a95f873bc616e004685b.hot-update.js
│ │ │ ├── instagram-feed.aaaa59ffd6c3a073ba19.hot-update.js
│ │ │ ├── instagram-feed.b6a029dfea1e6ded056c.hot-update.js
│ │ │ ├── instagram-feed.b767c4f43fdf40707341.hot-update.js
│ │ │ ├── instagram-feed.bc1e2b4c6b2432a66a09.hot-update.js
│ │ │ ├── instagram-feed.c1a15e87568c9e223681.hot-update.js
│ │ │ ├── instagram-feed.d85a790714ae33152d43.hot-update.js
│ │ │ ├── instagram-feed.dcd016907e7fe32048ba.hot-update.js
│ │ │ ├── instagram-feed.ef9ab1e5136744dad803.hot-update.js
│ │ │ └── css
│ │ │ └── instagram-feed.css
│ ├── storefront
│ │ ├── main.scss
│ │ ├── main.js
│ │ └── instagram-plugin
│ │ │ └── instagram-plugin.plugin.js
│ ├── views
│ │ ├── block
│ │ │ └── cms-block-image-text-reversed.html.twig
│ │ └── administration
│ │ │ ├── index.html.twig
│ │ │ └── module
│ │ │ └── sw-cms
│ │ │ └── page
│ │ │ └── sw-cms-detail
│ │ │ └── sw-cms-detail.html.twig
│ ├── administration
│ │ ├── main.js
│ │ └── module
│ │ │ └── sw-cms
│ │ │ ├── elements
│ │ │ └── instagram
│ │ │ │ ├── preview
│ │ │ │ ├── sw-cms-el-preview-instagram.scss
│ │ │ │ └── index.js
│ │ │ │ ├── index.js
│ │ │ │ ├── component
│ │ │ │ ├── sw-cms-el-instagram.html.twig
│ │ │ │ ├── index.js
│ │ │ │ └── sw-cms-el-instagram.scss
│ │ │ │ └── config
│ │ │ │ ├── index.js
│ │ │ │ └── sw-cms-el-config-instagram.html.twig
│ │ │ └── blocks
│ │ │ └── text-image
│ │ │ └── image-text-reversed
│ │ │ ├── preview
│ │ │ ├── sw-cms-preview-image-text-reversed.scss
│ │ │ ├── index.js
│ │ │ └── sw-cms-preview-image-text-reversed.html.twig
│ │ │ ├── component
│ │ │ ├── sw-cms-block-image-text-reversed.scss
│ │ │ ├── index.js
│ │ │ └── sw-cms-block-image-text-reversed.html.twig
│ │ │ └── index.js
│ ├── config
│ │ ├── routes.xml
│ │ ├── services.xml
│ │ └── config.xml
│ └── dist
│ │ └── storefront
│ │ └── js
│ │ └── instagram-feed.js
├── InstagramFeed.php
└── Storefront
│ └── Controller
│ └── InstagramFeedController.php
└── composer.json
/vendor/clue/stream-filter/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor
2 | /composer.lock
3 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.068de44ee9066192bbe9.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.09796dc7720da7026262.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.1909fdc1a4cff5db8436.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.19b5576d360c320d0d07.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.1b0b8a479243265b0205.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.1b2ee1b6d275e1fadca2.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.2385f0fa7ee964811f20.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.23be3e680522c7e9fd2c.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.268229382a784eabbe27.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.26f8362cd23e2a9ed33c.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.2ba01d4b31aafa13abd0.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.2d065639932dc355c8f7.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.314a54dce5f02f22b88a.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.3c50ec283d8ae576f5fb.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.49c27e82694c527b9305.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.4bc0c94247cc45eabae2.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.4fafae4e74c35bc2216b.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.61758b561252857ef333.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.64ba6201712dc26cacdb.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.65d1790de7717897956a.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.6775d41c1136115cd9a1.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.6c83c334df00f821da62.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.6d5aed61a63bfe2a94bd.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.728726e14c4dd51a668c.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.74e7672bc15fd39a29a3.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.8044cbf3f9fd9f07ee59.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.87cf95543b591026940e.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.9336d629cb082ffa5ec5.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.93872ede2ae3895da8e7.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.995b93f121503a16c7a3.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.a3c8e84f025e7565bef1.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.a8b59be77d6ab4ff4e35.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.a95f873bc616e004685b.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.aaaa59ffd6c3a073ba19.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.b6a029dfea1e6ded056c.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.b767c4f43fdf40707341.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.bc1e2b4c6b2432a66a09.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.c1a15e87568c9e223681.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.d85a790714ae33152d43.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.dcd016907e7fe32048ba.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/public/administration/instagram-feed.ef9ab1e5136744dad803.hot-update.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Resources/storefront/main.scss:
--------------------------------------------------------------------------------
1 | .cms-elemet-instagram-opener {
2 | background: #fff;
3 | }
4 |
--------------------------------------------------------------------------------
/src/Resources/views/block/cms-block-image-text-reversed.html.twig:
--------------------------------------------------------------------------------
1 | {% sw_extends '@Storefront/block/cms-block-image-text.html.twig' %}
--------------------------------------------------------------------------------
/vendor/php-http/message/apigen.neon:
--------------------------------------------------------------------------------
1 | source:
2 | - src/
3 |
4 | destination: build/api/
5 |
6 | templateTheme: bootstrap
7 |
--------------------------------------------------------------------------------
/src/Resources/administration/main.js:
--------------------------------------------------------------------------------
1 | import './module/sw-cms/blocks/text-image/image-text-reversed';
2 | import './module/sw-cms/elements/instagram';
3 |
--------------------------------------------------------------------------------
/vendor/clue/stream-filter/src/functions_include.php:
--------------------------------------------------------------------------------
1 |
9 | */
10 | interface Exception
11 | {
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/php-http/guzzle6-adapter/src/Exception/UnexpectedValueException.php:
--------------------------------------------------------------------------------
1 |
9 | */
10 | interface MessageFactory extends RequestFactory, ResponseFactory
11 | {
12 | }
13 |
--------------------------------------------------------------------------------
/src/Resources/administration/module/sw-cms/elements/instagram/preview/index.js:
--------------------------------------------------------------------------------
1 | import { Component } from 'src/core/shopware';
2 | import template from './sw-cms-el-preview-instagram.html.twig';
3 | import './sw-cms-el-preview-instagram.scss';
4 |
5 | Component.register('sw-cms-el-preview-instagram', {
6 | template
7 | });
8 |
--------------------------------------------------------------------------------
/src/InstagramFeed.php:
--------------------------------------------------------------------------------
1 |
9 | */
10 | final class PuliUnavailableException extends StrategyUnavailableException
11 | {
12 | }
13 |
--------------------------------------------------------------------------------
/src/Resources/administration/module/sw-cms/blocks/text-image/image-text-reversed/component/index.js:
--------------------------------------------------------------------------------
1 | import { Component } from 'src/core/shopware';
2 | import template from './sw-cms-block-image-text-reversed.html.twig';
3 | import './sw-cms-block-image-text-reversed.scss';
4 |
5 | Component.register('sw-cms-block-image-text-reversed', {
6 | template
7 | });
8 |
--------------------------------------------------------------------------------
/src/Resources/administration/module/sw-cms/blocks/text-image/image-text-reversed/preview/index.js:
--------------------------------------------------------------------------------
1 | import { Component } from 'src/core/shopware';
2 | import template from './sw-cms-preview-image-text-reversed.html.twig';
3 | import './sw-cms-preview-image-text-reversed.scss';
4 |
5 | Component.register('sw-cms-preview-image-text-reversed', {
6 | template
7 | });
8 |
--------------------------------------------------------------------------------
/vendor/guzzlehttp/promises/src/PromisorInterface.php:
--------------------------------------------------------------------------------
1 |
11 | */
12 | class TransferException extends \RuntimeException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/php-http/httplug/src/Exception.php:
--------------------------------------------------------------------------------
1 |
11 | */
12 | interface Exception extends PsrClientException
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php:
--------------------------------------------------------------------------------
1 |
11 | */
12 | final class ClassInstantiationFailedException extends \RuntimeException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/src/Resources/config/routes.xml:
--------------------------------------------------------------------------------
1 |
2 |
Lorem ipsum dolor sit amet, consetetur sadipscing elitr.
6 |