Completed
Push — master ( 897b53...970f4e )
by Maxence
16s queued 14s
created
lib/Vendor/Psr/Http/Message/UploadedFileFactoryInterface.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -4,25 +4,25 @@
 block discarded – undo
4 4
 
5 5
 interface UploadedFileFactoryInterface
6 6
 {
7
-    /**
8
-     * Create a new uploaded file.
9
-     *
10
-     * If a size is not provided it will be determined by checking the size of
11
-     * the file.
12
-     *
13
-     * @see http://php.net/manual/features.file-upload.post-method.php
14
-     * @see http://php.net/manual/features.file-upload.errors.php
15
-     *
16
-     * @param StreamInterface $stream Underlying stream representing the
17
-     *     uploaded file content.
18
-     * @param int|null $size in bytes
19
-     * @param int $error PHP file upload error
20
-     * @param string|null $clientFilename Filename as provided by the client, if any.
21
-     * @param string|null $clientMediaType Media type as provided by the client, if any.
22
-     *
23
-     * @return UploadedFileInterface
24
-     *
25
-     * @throws \InvalidArgumentException If the file resource is not readable.
26
-     */
27
-    public function createUploadedFile(StreamInterface $stream, ?int $size = null, int $error = \UPLOAD_ERR_OK, ?string $clientFilename = null, ?string $clientMediaType = null) : UploadedFileInterface;
7
+	/**
8
+	 * Create a new uploaded file.
9
+	 *
10
+	 * If a size is not provided it will be determined by checking the size of
11
+	 * the file.
12
+	 *
13
+	 * @see http://php.net/manual/features.file-upload.post-method.php
14
+	 * @see http://php.net/manual/features.file-upload.errors.php
15
+	 *
16
+	 * @param StreamInterface $stream Underlying stream representing the
17
+	 *     uploaded file content.
18
+	 * @param int|null $size in bytes
19
+	 * @param int $error PHP file upload error
20
+	 * @param string|null $clientFilename Filename as provided by the client, if any.
21
+	 * @param string|null $clientMediaType Media type as provided by the client, if any.
22
+	 *
23
+	 * @return UploadedFileInterface
24
+	 *
25
+	 * @throws \InvalidArgumentException If the file resource is not readable.
26
+	 */
27
+	public function createUploadedFile(StreamInterface $stream, ?int $size = null, int $error = \UPLOAD_ERR_OK, ?string $clientFilename = null, ?string $clientMediaType = null) : UploadedFileInterface;
28 28
 }
Please login to merge, or discard this patch.
lib/Vendor/Elastic/Elasticsearch/Client.php 2 patches
Indentation   +119 added lines, -119 removed lines patch added patch discarded remove patch
@@ -26,123 +26,123 @@
 block discarded – undo
26 26
 use Psr\Log\LoggerInterface;
27 27
 final class Client implements ClientInterface
28 28
 {
29
-    const CLIENT_NAME = 'es';
30
-    const VERSION = '8.13.0';
31
-    const API_COMPATIBILITY_HEADER = '%s/vnd.elasticsearch+%s; compatible-with=8';
32
-    use ClientEndpointsTrait;
33
-    use EndpointTrait;
34
-    use NamespaceTrait;
35
-    protected Transport $transport;
36
-    protected LoggerInterface $logger;
37
-    /**
38
-     * Specify is the request is asyncronous
39
-     */
40
-    protected bool $async = \false;
41
-    /**
42
-     * Enable or disable the x-elastic-meta-header
43
-     */
44
-    protected bool $elasticMetaHeader = \true;
45
-    /**
46
-     * Enable or disable the response Exception
47
-     */
48
-    protected bool $responseException = \true;
49
-    /**
50
-     * The endpoint namespace storage 
51
-     */
52
-    protected array $namespace;
53
-    public function __construct(Transport $transport, LoggerInterface $logger)
54
-    {
55
-        $this->transport = $transport;
56
-        $this->logger = $logger;
57
-        $this->defaultTransportSettings($this->transport);
58
-    }
59
-    /**
60
-     * @inheritdoc
61
-     */
62
-    public function getTransport() : Transport
63
-    {
64
-        return $this->transport;
65
-    }
66
-    /**
67
-     * @inheritdoc
68
-     */
69
-    public function getLogger() : LoggerInterface
70
-    {
71
-        return $this->logger;
72
-    }
73
-    /**
74
-     * Set the default settings for Elasticsearch
75
-     */
76
-    protected function defaultTransportSettings(Transport $transport) : void
77
-    {
78
-        $transport->setUserAgent('elasticsearch-php', self::VERSION);
79
-    }
80
-    /**
81
-     * @inheritdoc
82
-     */
83
-    public function setAsync(bool $async) : self
84
-    {
85
-        $this->async = $async;
86
-        return $this;
87
-    }
88
-    /**
89
-     * @inheritdoc
90
-     */
91
-    public function getAsync() : bool
92
-    {
93
-        return $this->async;
94
-    }
95
-    /**
96
-     * @inheritdoc
97
-     */
98
-    public function setElasticMetaHeader(bool $active) : self
99
-    {
100
-        $this->elasticMetaHeader = $active;
101
-        return $this;
102
-    }
103
-    /**
104
-     * @inheritdoc
105
-     */
106
-    public function getElasticMetaHeader() : bool
107
-    {
108
-        return $this->elasticMetaHeader;
109
-    }
110
-    /**
111
-     * @inheritdoc
112
-     */
113
-    public function setResponseException(bool $active) : self
114
-    {
115
-        $this->responseException = $active;
116
-        return $this;
117
-    }
118
-    /**
119
-     * @inheritdoc
120
-     */
121
-    public function getResponseException() : bool
122
-    {
123
-        return $this->responseException;
124
-    }
125
-    /**
126
-     * @inheritdoc
127
-     */
128
-    public function sendRequest(RequestInterface $request)
129
-    {
130
-        // If async returns a Promise
131
-        if ($this->getAsync()) {
132
-            if ($this->getElasticMetaHeader()) {
133
-                $this->transport->setElasticMetaHeader(Client::CLIENT_NAME, Client::VERSION, \true);
134
-            }
135
-            $this->transport->setAsyncOnSuccess($request->getMethod() === 'HEAD' ? new AsyncOnSuccessNoException() : ($this->getResponseException() ? new AsyncOnSuccess() : new AsyncOnSuccessNoException()));
136
-            return $this->transport->sendAsyncRequest($request);
137
-        }
138
-        if ($this->getElasticMetaHeader()) {
139
-            $this->transport->setElasticMetaHeader(Client::CLIENT_NAME, Client::VERSION, \false);
140
-        }
141
-        $start = \microtime(\true);
142
-        $response = $this->transport->sendRequest($request);
143
-        $this->logger->info(\sprintf("Response time in %.3f sec", \microtime(\true) - $start));
144
-        $result = new Elasticsearch();
145
-        $result->setResponse($response, $request->getMethod() === 'HEAD' ? \false : $this->getResponseException());
146
-        return $result;
147
-    }
29
+	const CLIENT_NAME = 'es';
30
+	const VERSION = '8.13.0';
31
+	const API_COMPATIBILITY_HEADER = '%s/vnd.elasticsearch+%s; compatible-with=8';
32
+	use ClientEndpointsTrait;
33
+	use EndpointTrait;
34
+	use NamespaceTrait;
35
+	protected Transport $transport;
36
+	protected LoggerInterface $logger;
37
+	/**
38
+	 * Specify is the request is asyncronous
39
+	 */
40
+	protected bool $async = \false;
41
+	/**
42
+	 * Enable or disable the x-elastic-meta-header
43
+	 */
44
+	protected bool $elasticMetaHeader = \true;
45
+	/**
46
+	 * Enable or disable the response Exception
47
+	 */
48
+	protected bool $responseException = \true;
49
+	/**
50
+	 * The endpoint namespace storage 
51
+	 */
52
+	protected array $namespace;
53
+	public function __construct(Transport $transport, LoggerInterface $logger)
54
+	{
55
+		$this->transport = $transport;
56
+		$this->logger = $logger;
57
+		$this->defaultTransportSettings($this->transport);
58
+	}
59
+	/**
60
+	 * @inheritdoc
61
+	 */
62
+	public function getTransport() : Transport
63
+	{
64
+		return $this->transport;
65
+	}
66
+	/**
67
+	 * @inheritdoc
68
+	 */
69
+	public function getLogger() : LoggerInterface
70
+	{
71
+		return $this->logger;
72
+	}
73
+	/**
74
+	 * Set the default settings for Elasticsearch
75
+	 */
76
+	protected function defaultTransportSettings(Transport $transport) : void
77
+	{
78
+		$transport->setUserAgent('elasticsearch-php', self::VERSION);
79
+	}
80
+	/**
81
+	 * @inheritdoc
82
+	 */
83
+	public function setAsync(bool $async) : self
84
+	{
85
+		$this->async = $async;
86
+		return $this;
87
+	}
88
+	/**
89
+	 * @inheritdoc
90
+	 */
91
+	public function getAsync() : bool
92
+	{
93
+		return $this->async;
94
+	}
95
+	/**
96
+	 * @inheritdoc
97
+	 */
98
+	public function setElasticMetaHeader(bool $active) : self
99
+	{
100
+		$this->elasticMetaHeader = $active;
101
+		return $this;
102
+	}
103
+	/**
104
+	 * @inheritdoc
105
+	 */
106
+	public function getElasticMetaHeader() : bool
107
+	{
108
+		return $this->elasticMetaHeader;
109
+	}
110
+	/**
111
+	 * @inheritdoc
112
+	 */
113
+	public function setResponseException(bool $active) : self
114
+	{
115
+		$this->responseException = $active;
116
+		return $this;
117
+	}
118
+	/**
119
+	 * @inheritdoc
120
+	 */
121
+	public function getResponseException() : bool
122
+	{
123
+		return $this->responseException;
124
+	}
125
+	/**
126
+	 * @inheritdoc
127
+	 */
128
+	public function sendRequest(RequestInterface $request)
129
+	{
130
+		// If async returns a Promise
131
+		if ($this->getAsync()) {
132
+			if ($this->getElasticMetaHeader()) {
133
+				$this->transport->setElasticMetaHeader(Client::CLIENT_NAME, Client::VERSION, \true);
134
+			}
135
+			$this->transport->setAsyncOnSuccess($request->getMethod() === 'HEAD' ? new AsyncOnSuccessNoException() : ($this->getResponseException() ? new AsyncOnSuccess() : new AsyncOnSuccessNoException()));
136
+			return $this->transport->sendAsyncRequest($request);
137
+		}
138
+		if ($this->getElasticMetaHeader()) {
139
+			$this->transport->setElasticMetaHeader(Client::CLIENT_NAME, Client::VERSION, \false);
140
+		}
141
+		$start = \microtime(\true);
142
+		$response = $this->transport->sendRequest($request);
143
+		$this->logger->info(\sprintf("Response time in %.3f sec", \microtime(\true) - $start));
144
+		$result = new Elasticsearch();
145
+		$result->setResponse($response, $request->getMethod() === 'HEAD' ? \false : $this->getResponseException());
146
+		return $result;
147
+	}
148 148
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,7 @@
 block discarded – undo
24 24
 use OCA\FullTextSearch_Elasticsearch\Vendor\Http\Promise\Promise;
25 25
 use OCA\FullTextSearch_Elasticsearch\Vendor\Psr\Http\Message\RequestInterface;
26 26
 use Psr\Log\LoggerInterface;
27
-final class Client implements ClientInterface
28
-{
27
+final class Client implements ClientInterface {
29 28
     const CLIENT_NAME = 'es';
30 29
     const VERSION = '8.13.0';
31 30
     const API_COMPATIBILITY_HEADER = '%s/vnd.elasticsearch+%s; compatible-with=8';
Please login to merge, or discard this patch.
lib/Vendor/Elastic/Elasticsearch/ClientBuilder.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,7 @@
 block discarded – undo
30 30
 use OCA\FullTextSearch_Elasticsearch\Vendor\Psr\Http\Client\ClientInterface;
31 31
 use Psr\Log\LoggerInterface;
32 32
 use ReflectionClass;
33
-class ClientBuilder
34
-{
33
+class ClientBuilder {
35 34
     const DEFAULT_HOST = 'localhost:9200';
36 35
     /**
37 36
      * PSR-18 client
Please login to merge, or discard this patch.
lib/Vendor/Elastic/Elasticsearch/ClientInterface.php 2 patches
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -21,43 +21,43 @@
 block discarded – undo
21 21
 use Psr\Log\LoggerInterface;
22 22
 interface ClientInterface
23 23
 {
24
-    /**
25
-     * Get the Elastic\Transport\Transport
26
-     */
27
-    public function getTransport() : Transport;
28
-    /**
29
-     * Get the PSR-3 logger
30
-     */
31
-    public function getLogger() : LoggerInterface;
32
-    /**
33
-     * Set the asyncronous HTTP request
34
-     */
35
-    public function setAsync(bool $async) : self;
36
-    /**
37
-     * Get the asyncronous HTTP request setting
38
-     */
39
-    public function getAsync() : bool;
40
-    /**
41
-     * Enable or disable the x-elastic-client-meta header
42
-     */
43
-    public function setElasticMetaHeader(bool $active) : self;
44
-    /**
45
-     * Get the status of x-elastic-client-meta header
46
-     */
47
-    public function getElasticMetaHeader() : bool;
48
-    /**
49
-     * Enable or disable the response Exception
50
-     */
51
-    public function setResponseException(bool $active) : self;
52
-    /**
53
-     * Get the status of response Exception
54
-     */
55
-    public function getResponseException() : bool;
56
-    /**
57
-     * Send the HTTP request using the Elastic Transport.
58
-     * It manages syncronous and asyncronus requests using Client::getAsync()
59
-     * 
60
-     * @return Elasticsearch|Promise
61
-     */
62
-    public function sendRequest(RequestInterface $request);
24
+	/**
25
+	 * Get the Elastic\Transport\Transport
26
+	 */
27
+	public function getTransport() : Transport;
28
+	/**
29
+	 * Get the PSR-3 logger
30
+	 */
31
+	public function getLogger() : LoggerInterface;
32
+	/**
33
+	 * Set the asyncronous HTTP request
34
+	 */
35
+	public function setAsync(bool $async) : self;
36
+	/**
37
+	 * Get the asyncronous HTTP request setting
38
+	 */
39
+	public function getAsync() : bool;
40
+	/**
41
+	 * Enable or disable the x-elastic-client-meta header
42
+	 */
43
+	public function setElasticMetaHeader(bool $active) : self;
44
+	/**
45
+	 * Get the status of x-elastic-client-meta header
46
+	 */
47
+	public function getElasticMetaHeader() : bool;
48
+	/**
49
+	 * Enable or disable the response Exception
50
+	 */
51
+	public function setResponseException(bool $active) : self;
52
+	/**
53
+	 * Get the status of response Exception
54
+	 */
55
+	public function getResponseException() : bool;
56
+	/**
57
+	 * Send the HTTP request using the Elastic Transport.
58
+	 * It manages syncronous and asyncronus requests using Client::getAsync()
59
+	 * 
60
+	 * @return Elasticsearch|Promise
61
+	 */
62
+	public function sendRequest(RequestInterface $request);
63 63
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@
 block discarded – undo
19 19
 use OCA\FullTextSearch_Elasticsearch\Vendor\Http\Promise\Promise;
20 20
 use OCA\FullTextSearch_Elasticsearch\Vendor\Psr\Http\Message\RequestInterface;
21 21
 use Psr\Log\LoggerInterface;
22
-interface ClientInterface
23
-{
22
+interface ClientInterface {
24 23
     /**
25 24
      * Get the Elastic\Transport\Transport
26 25
      */
Please login to merge, or discard this patch.
lib/Vendor/Elastic/Transport/TransportBuilder.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,7 @@
 block discarded – undo
24 24
 use Psr\Log\LoggerInterface;
25 25
 use Psr\Log\NullLogger;
26 26
 use Throwable;
27
-class TransportBuilder
28
-{
27
+class TransportBuilder {
29 28
     protected ClientInterface $client;
30 29
     protected NodePoolInterface $nodePool;
31 30
     protected LoggerInterface $logger;
Please login to merge, or discard this patch.
vendor-bin/php-scoper/vendor/composer/installed.php 2 patches
Indentation   +237 added lines, -237 removed lines patch added patch discarded remove patch
@@ -1,239 +1,239 @@
 block discarded – undo
1 1
 <?php return array(
2
-    'root' => array(
3
-        'pretty_version' => 'dev-master',
4
-        'version' => 'dev-master',
5
-        'type' => 'library',
6
-        'install_path' => __DIR__ . '/../../',
7
-        'aliases' => array(),
8
-        'reference' => '897b531f0cb6ac818b4c580f7ef30a340e4c3c97',
9
-        'name' => '__root__',
10
-        'dev' => true,
11
-    ),
12
-    'versions' => array(
13
-        '__root__' => array(
14
-            'pretty_version' => 'dev-master',
15
-            'version' => 'dev-master',
16
-            'type' => 'library',
17
-            'install_path' => __DIR__ . '/../../',
18
-            'aliases' => array(),
19
-            'reference' => '897b531f0cb6ac818b4c580f7ef30a340e4c3c97',
20
-            'dev_requirement' => false,
21
-        ),
22
-        'composer/package-versions-deprecated' => array(
23
-            'pretty_version' => '1.11.99.5',
24
-            'version' => '1.11.99.5',
25
-            'type' => 'composer-plugin',
26
-            'install_path' => __DIR__ . '/./package-versions-deprecated',
27
-            'aliases' => array(),
28
-            'reference' => 'b4f54f74ef3453349c24a845d22392cd31e65f1d',
29
-            'dev_requirement' => false,
30
-        ),
31
-        'fidry/console' => array(
32
-            'pretty_version' => '0.2.0',
33
-            'version' => '0.2.0.0',
34
-            'type' => 'library',
35
-            'install_path' => __DIR__ . '/../fidry/console',
36
-            'aliases' => array(),
37
-            'reference' => '850f9a7f8d231d6d5d18a91e67152268ed1afa62',
38
-            'dev_requirement' => false,
39
-        ),
40
-        'humbug/php-scoper' => array(
41
-            'pretty_version' => '0.17.0',
42
-            'version' => '0.17.0.0',
43
-            'type' => 'library',
44
-            'install_path' => __DIR__ . '/../humbug/php-scoper',
45
-            'aliases' => array(),
46
-            'reference' => 'cb23986d9309a10eaa284242f2169723af4e4a7e',
47
-            'dev_requirement' => false,
48
-        ),
49
-        'jetbrains/phpstorm-stubs' => array(
50
-            'pretty_version' => 'v2021.3',
51
-            'version' => '2021.3.0.0',
52
-            'type' => 'library',
53
-            'install_path' => __DIR__ . '/../jetbrains/phpstorm-stubs',
54
-            'aliases' => array(),
55
-            'reference' => 'c790a8fa467ff5d3f11b0e7c1f3698abbe37b182',
56
-            'dev_requirement' => false,
57
-        ),
58
-        'nikic/php-parser' => array(
59
-            'pretty_version' => 'v4.19.1',
60
-            'version' => '4.19.1.0',
61
-            'type' => 'library',
62
-            'install_path' => __DIR__ . '/../nikic/php-parser',
63
-            'aliases' => array(),
64
-            'reference' => '4e1b88d21c69391150ace211e9eaf05810858d0b',
65
-            'dev_requirement' => false,
66
-        ),
67
-        'ocramius/package-versions' => array(
68
-            'dev_requirement' => false,
69
-            'replaced' => array(
70
-                0 => '1.11.99',
71
-            ),
72
-        ),
73
-        'psr/container' => array(
74
-            'pretty_version' => '1.1.2',
75
-            'version' => '1.1.2.0',
76
-            'type' => 'library',
77
-            'install_path' => __DIR__ . '/../psr/container',
78
-            'aliases' => array(),
79
-            'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea',
80
-            'dev_requirement' => false,
81
-        ),
82
-        'psr/event-dispatcher' => array(
83
-            'pretty_version' => '1.0.0',
84
-            'version' => '1.0.0.0',
85
-            'type' => 'library',
86
-            'install_path' => __DIR__ . '/../psr/event-dispatcher',
87
-            'aliases' => array(),
88
-            'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0',
89
-            'dev_requirement' => false,
90
-        ),
91
-        'psr/log-implementation' => array(
92
-            'dev_requirement' => false,
93
-            'provided' => array(
94
-                0 => '1.0|2.0',
95
-            ),
96
-        ),
97
-        'symfony/console' => array(
98
-            'pretty_version' => 'v5.4.36',
99
-            'version' => '5.4.36.0',
100
-            'type' => 'library',
101
-            'install_path' => __DIR__ . '/../symfony/console',
102
-            'aliases' => array(),
103
-            'reference' => '39f75d9d73d0c11952fdcecf4877b4d0f62a8f6e',
104
-            'dev_requirement' => false,
105
-        ),
106
-        'symfony/deprecation-contracts' => array(
107
-            'pretty_version' => 'v3.4.0',
108
-            'version' => '3.4.0.0',
109
-            'type' => 'library',
110
-            'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
111
-            'aliases' => array(),
112
-            'reference' => '7c3aff79d10325257a001fcf92d991f24fc967cf',
113
-            'dev_requirement' => false,
114
-        ),
115
-        'symfony/event-dispatcher-contracts' => array(
116
-            'pretty_version' => 'v2.5.3',
117
-            'version' => '2.5.3.0',
118
-            'type' => 'library',
119
-            'install_path' => __DIR__ . '/../symfony/event-dispatcher-contracts',
120
-            'aliases' => array(),
121
-            'reference' => '540f4c73e87fd0c71ca44a6aa305d024ac68cb73',
122
-            'dev_requirement' => false,
123
-        ),
124
-        'symfony/filesystem' => array(
125
-            'pretty_version' => 'v5.4.38',
126
-            'version' => '5.4.38.0',
127
-            'type' => 'library',
128
-            'install_path' => __DIR__ . '/../symfony/filesystem',
129
-            'aliases' => array(),
130
-            'reference' => '899330a01056077271e2f614c7b28b0379a671eb',
131
-            'dev_requirement' => false,
132
-        ),
133
-        'symfony/finder' => array(
134
-            'pretty_version' => 'v5.4.35',
135
-            'version' => '5.4.35.0',
136
-            'type' => 'library',
137
-            'install_path' => __DIR__ . '/../symfony/finder',
138
-            'aliases' => array(),
139
-            'reference' => 'abe6d6f77d9465fed3cd2d029b29d03b56b56435',
140
-            'dev_requirement' => false,
141
-        ),
142
-        'symfony/polyfill-ctype' => array(
143
-            'pretty_version' => 'v1.29.0',
144
-            'version' => '1.29.0.0',
145
-            'type' => 'library',
146
-            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
147
-            'aliases' => array(),
148
-            'reference' => 'ef4d7e442ca910c4764bce785146269b30cb5fc4',
149
-            'dev_requirement' => false,
150
-        ),
151
-        'symfony/polyfill-intl-grapheme' => array(
152
-            'pretty_version' => 'v1.29.0',
153
-            'version' => '1.29.0.0',
154
-            'type' => 'library',
155
-            'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme',
156
-            'aliases' => array(),
157
-            'reference' => '32a9da87d7b3245e09ac426c83d334ae9f06f80f',
158
-            'dev_requirement' => false,
159
-        ),
160
-        'symfony/polyfill-intl-normalizer' => array(
161
-            'pretty_version' => 'v1.29.0',
162
-            'version' => '1.29.0.0',
163
-            'type' => 'library',
164
-            'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer',
165
-            'aliases' => array(),
166
-            'reference' => 'bc45c394692b948b4d383a08d7753968bed9a83d',
167
-            'dev_requirement' => false,
168
-        ),
169
-        'symfony/polyfill-mbstring' => array(
170
-            'pretty_version' => 'v1.29.0',
171
-            'version' => '1.29.0.0',
172
-            'type' => 'library',
173
-            'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
174
-            'aliases' => array(),
175
-            'reference' => '9773676c8a1bb1f8d4340a62efe641cf76eda7ec',
176
-            'dev_requirement' => false,
177
-        ),
178
-        'symfony/polyfill-php73' => array(
179
-            'dev_requirement' => false,
180
-            'replaced' => array(
181
-                0 => '*',
182
-            ),
183
-        ),
184
-        'symfony/polyfill-php80' => array(
185
-            'pretty_version' => 'v1.29.0',
186
-            'version' => '1.29.0.0',
187
-            'type' => 'library',
188
-            'install_path' => __DIR__ . '/../symfony/polyfill-php80',
189
-            'aliases' => array(),
190
-            'reference' => '87b68208d5c1188808dd7839ee1e6c8ec3b02f1b',
191
-            'dev_requirement' => false,
192
-        ),
193
-        'symfony/polyfill-php81' => array(
194
-            'pretty_version' => 'v1.29.0',
195
-            'version' => '1.29.0.0',
196
-            'type' => 'library',
197
-            'install_path' => __DIR__ . '/../symfony/polyfill-php81',
198
-            'aliases' => array(),
199
-            'reference' => 'c565ad1e63f30e7477fc40738343c62b40bc672d',
200
-            'dev_requirement' => false,
201
-        ),
202
-        'symfony/service-contracts' => array(
203
-            'pretty_version' => 'v2.5.3',
204
-            'version' => '2.5.3.0',
205
-            'type' => 'library',
206
-            'install_path' => __DIR__ . '/../symfony/service-contracts',
207
-            'aliases' => array(),
208
-            'reference' => 'a2329596ddc8fd568900e3fc76cba42489ecc7f3',
209
-            'dev_requirement' => false,
210
-        ),
211
-        'symfony/string' => array(
212
-            'pretty_version' => 'v6.4.4',
213
-            'version' => '6.4.4.0',
214
-            'type' => 'library',
215
-            'install_path' => __DIR__ . '/../symfony/string',
216
-            'aliases' => array(),
217
-            'reference' => '4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9',
218
-            'dev_requirement' => false,
219
-        ),
220
-        'thecodingmachine/safe' => array(
221
-            'pretty_version' => 'v1.3.3',
222
-            'version' => '1.3.3.0',
223
-            'type' => 'library',
224
-            'install_path' => __DIR__ . '/../thecodingmachine/safe',
225
-            'aliases' => array(),
226
-            'reference' => 'a8ab0876305a4cdaef31b2350fcb9811b5608dbc',
227
-            'dev_requirement' => false,
228
-        ),
229
-        'webmozart/assert' => array(
230
-            'pretty_version' => '1.11.0',
231
-            'version' => '1.11.0.0',
232
-            'type' => 'library',
233
-            'install_path' => __DIR__ . '/../webmozart/assert',
234
-            'aliases' => array(),
235
-            'reference' => '11cb2199493b2f8a3b53e7f19068fc6aac760991',
236
-            'dev_requirement' => false,
237
-        ),
238
-    ),
2
+	'root' => array(
3
+		'pretty_version' => 'dev-master',
4
+		'version' => 'dev-master',
5
+		'type' => 'library',
6
+		'install_path' => __DIR__ . '/../../',
7
+		'aliases' => array(),
8
+		'reference' => '897b531f0cb6ac818b4c580f7ef30a340e4c3c97',
9
+		'name' => '__root__',
10
+		'dev' => true,
11
+	),
12
+	'versions' => array(
13
+		'__root__' => array(
14
+			'pretty_version' => 'dev-master',
15
+			'version' => 'dev-master',
16
+			'type' => 'library',
17
+			'install_path' => __DIR__ . '/../../',
18
+			'aliases' => array(),
19
+			'reference' => '897b531f0cb6ac818b4c580f7ef30a340e4c3c97',
20
+			'dev_requirement' => false,
21
+		),
22
+		'composer/package-versions-deprecated' => array(
23
+			'pretty_version' => '1.11.99.5',
24
+			'version' => '1.11.99.5',
25
+			'type' => 'composer-plugin',
26
+			'install_path' => __DIR__ . '/./package-versions-deprecated',
27
+			'aliases' => array(),
28
+			'reference' => 'b4f54f74ef3453349c24a845d22392cd31e65f1d',
29
+			'dev_requirement' => false,
30
+		),
31
+		'fidry/console' => array(
32
+			'pretty_version' => '0.2.0',
33
+			'version' => '0.2.0.0',
34
+			'type' => 'library',
35
+			'install_path' => __DIR__ . '/../fidry/console',
36
+			'aliases' => array(),
37
+			'reference' => '850f9a7f8d231d6d5d18a91e67152268ed1afa62',
38
+			'dev_requirement' => false,
39
+		),
40
+		'humbug/php-scoper' => array(
41
+			'pretty_version' => '0.17.0',
42
+			'version' => '0.17.0.0',
43
+			'type' => 'library',
44
+			'install_path' => __DIR__ . '/../humbug/php-scoper',
45
+			'aliases' => array(),
46
+			'reference' => 'cb23986d9309a10eaa284242f2169723af4e4a7e',
47
+			'dev_requirement' => false,
48
+		),
49
+		'jetbrains/phpstorm-stubs' => array(
50
+			'pretty_version' => 'v2021.3',
51
+			'version' => '2021.3.0.0',
52
+			'type' => 'library',
53
+			'install_path' => __DIR__ . '/../jetbrains/phpstorm-stubs',
54
+			'aliases' => array(),
55
+			'reference' => 'c790a8fa467ff5d3f11b0e7c1f3698abbe37b182',
56
+			'dev_requirement' => false,
57
+		),
58
+		'nikic/php-parser' => array(
59
+			'pretty_version' => 'v4.19.1',
60
+			'version' => '4.19.1.0',
61
+			'type' => 'library',
62
+			'install_path' => __DIR__ . '/../nikic/php-parser',
63
+			'aliases' => array(),
64
+			'reference' => '4e1b88d21c69391150ace211e9eaf05810858d0b',
65
+			'dev_requirement' => false,
66
+		),
67
+		'ocramius/package-versions' => array(
68
+			'dev_requirement' => false,
69
+			'replaced' => array(
70
+				0 => '1.11.99',
71
+			),
72
+		),
73
+		'psr/container' => array(
74
+			'pretty_version' => '1.1.2',
75
+			'version' => '1.1.2.0',
76
+			'type' => 'library',
77
+			'install_path' => __DIR__ . '/../psr/container',
78
+			'aliases' => array(),
79
+			'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea',
80
+			'dev_requirement' => false,
81
+		),
82
+		'psr/event-dispatcher' => array(
83
+			'pretty_version' => '1.0.0',
84
+			'version' => '1.0.0.0',
85
+			'type' => 'library',
86
+			'install_path' => __DIR__ . '/../psr/event-dispatcher',
87
+			'aliases' => array(),
88
+			'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0',
89
+			'dev_requirement' => false,
90
+		),
91
+		'psr/log-implementation' => array(
92
+			'dev_requirement' => false,
93
+			'provided' => array(
94
+				0 => '1.0|2.0',
95
+			),
96
+		),
97
+		'symfony/console' => array(
98
+			'pretty_version' => 'v5.4.36',
99
+			'version' => '5.4.36.0',
100
+			'type' => 'library',
101
+			'install_path' => __DIR__ . '/../symfony/console',
102
+			'aliases' => array(),
103
+			'reference' => '39f75d9d73d0c11952fdcecf4877b4d0f62a8f6e',
104
+			'dev_requirement' => false,
105
+		),
106
+		'symfony/deprecation-contracts' => array(
107
+			'pretty_version' => 'v3.4.0',
108
+			'version' => '3.4.0.0',
109
+			'type' => 'library',
110
+			'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
111
+			'aliases' => array(),
112
+			'reference' => '7c3aff79d10325257a001fcf92d991f24fc967cf',
113
+			'dev_requirement' => false,
114
+		),
115
+		'symfony/event-dispatcher-contracts' => array(
116
+			'pretty_version' => 'v2.5.3',
117
+			'version' => '2.5.3.0',
118
+			'type' => 'library',
119
+			'install_path' => __DIR__ . '/../symfony/event-dispatcher-contracts',
120
+			'aliases' => array(),
121
+			'reference' => '540f4c73e87fd0c71ca44a6aa305d024ac68cb73',
122
+			'dev_requirement' => false,
123
+		),
124
+		'symfony/filesystem' => array(
125
+			'pretty_version' => 'v5.4.38',
126
+			'version' => '5.4.38.0',
127
+			'type' => 'library',
128
+			'install_path' => __DIR__ . '/../symfony/filesystem',
129
+			'aliases' => array(),
130
+			'reference' => '899330a01056077271e2f614c7b28b0379a671eb',
131
+			'dev_requirement' => false,
132
+		),
133
+		'symfony/finder' => array(
134
+			'pretty_version' => 'v5.4.35',
135
+			'version' => '5.4.35.0',
136
+			'type' => 'library',
137
+			'install_path' => __DIR__ . '/../symfony/finder',
138
+			'aliases' => array(),
139
+			'reference' => 'abe6d6f77d9465fed3cd2d029b29d03b56b56435',
140
+			'dev_requirement' => false,
141
+		),
142
+		'symfony/polyfill-ctype' => array(
143
+			'pretty_version' => 'v1.29.0',
144
+			'version' => '1.29.0.0',
145
+			'type' => 'library',
146
+			'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
147
+			'aliases' => array(),
148
+			'reference' => 'ef4d7e442ca910c4764bce785146269b30cb5fc4',
149
+			'dev_requirement' => false,
150
+		),
151
+		'symfony/polyfill-intl-grapheme' => array(
152
+			'pretty_version' => 'v1.29.0',
153
+			'version' => '1.29.0.0',
154
+			'type' => 'library',
155
+			'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme',
156
+			'aliases' => array(),
157
+			'reference' => '32a9da87d7b3245e09ac426c83d334ae9f06f80f',
158
+			'dev_requirement' => false,
159
+		),
160
+		'symfony/polyfill-intl-normalizer' => array(
161
+			'pretty_version' => 'v1.29.0',
162
+			'version' => '1.29.0.0',
163
+			'type' => 'library',
164
+			'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer',
165
+			'aliases' => array(),
166
+			'reference' => 'bc45c394692b948b4d383a08d7753968bed9a83d',
167
+			'dev_requirement' => false,
168
+		),
169
+		'symfony/polyfill-mbstring' => array(
170
+			'pretty_version' => 'v1.29.0',
171
+			'version' => '1.29.0.0',
172
+			'type' => 'library',
173
+			'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
174
+			'aliases' => array(),
175
+			'reference' => '9773676c8a1bb1f8d4340a62efe641cf76eda7ec',
176
+			'dev_requirement' => false,
177
+		),
178
+		'symfony/polyfill-php73' => array(
179
+			'dev_requirement' => false,
180
+			'replaced' => array(
181
+				0 => '*',
182
+			),
183
+		),
184
+		'symfony/polyfill-php80' => array(
185
+			'pretty_version' => 'v1.29.0',
186
+			'version' => '1.29.0.0',
187
+			'type' => 'library',
188
+			'install_path' => __DIR__ . '/../symfony/polyfill-php80',
189
+			'aliases' => array(),
190
+			'reference' => '87b68208d5c1188808dd7839ee1e6c8ec3b02f1b',
191
+			'dev_requirement' => false,
192
+		),
193
+		'symfony/polyfill-php81' => array(
194
+			'pretty_version' => 'v1.29.0',
195
+			'version' => '1.29.0.0',
196
+			'type' => 'library',
197
+			'install_path' => __DIR__ . '/../symfony/polyfill-php81',
198
+			'aliases' => array(),
199
+			'reference' => 'c565ad1e63f30e7477fc40738343c62b40bc672d',
200
+			'dev_requirement' => false,
201
+		),
202
+		'symfony/service-contracts' => array(
203
+			'pretty_version' => 'v2.5.3',
204
+			'version' => '2.5.3.0',
205
+			'type' => 'library',
206
+			'install_path' => __DIR__ . '/../symfony/service-contracts',
207
+			'aliases' => array(),
208
+			'reference' => 'a2329596ddc8fd568900e3fc76cba42489ecc7f3',
209
+			'dev_requirement' => false,
210
+		),
211
+		'symfony/string' => array(
212
+			'pretty_version' => 'v6.4.4',
213
+			'version' => '6.4.4.0',
214
+			'type' => 'library',
215
+			'install_path' => __DIR__ . '/../symfony/string',
216
+			'aliases' => array(),
217
+			'reference' => '4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9',
218
+			'dev_requirement' => false,
219
+		),
220
+		'thecodingmachine/safe' => array(
221
+			'pretty_version' => 'v1.3.3',
222
+			'version' => '1.3.3.0',
223
+			'type' => 'library',
224
+			'install_path' => __DIR__ . '/../thecodingmachine/safe',
225
+			'aliases' => array(),
226
+			'reference' => 'a8ab0876305a4cdaef31b2350fcb9811b5608dbc',
227
+			'dev_requirement' => false,
228
+		),
229
+		'webmozart/assert' => array(
230
+			'pretty_version' => '1.11.0',
231
+			'version' => '1.11.0.0',
232
+			'type' => 'library',
233
+			'install_path' => __DIR__ . '/../webmozart/assert',
234
+			'aliases' => array(),
235
+			'reference' => '11cb2199493b2f8a3b53e7f19068fc6aac760991',
236
+			'dev_requirement' => false,
237
+		),
238
+	),
239 239
 );
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
         'pretty_version' => 'dev-master',
4 4
         'version' => 'dev-master',
5 5
         'type' => 'library',
6
-        'install_path' => __DIR__ . '/../../',
6
+        'install_path' => __DIR__.'/../../',
7 7
         'aliases' => array(),
8 8
         'reference' => '897b531f0cb6ac818b4c580f7ef30a340e4c3c97',
9 9
         'name' => '__root__',
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
             'pretty_version' => 'dev-master',
15 15
             'version' => 'dev-master',
16 16
             'type' => 'library',
17
-            'install_path' => __DIR__ . '/../../',
17
+            'install_path' => __DIR__.'/../../',
18 18
             'aliases' => array(),
19 19
             'reference' => '897b531f0cb6ac818b4c580f7ef30a340e4c3c97',
20 20
             'dev_requirement' => false,
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
             'pretty_version' => '1.11.99.5',
24 24
             'version' => '1.11.99.5',
25 25
             'type' => 'composer-plugin',
26
-            'install_path' => __DIR__ . '/./package-versions-deprecated',
26
+            'install_path' => __DIR__.'/./package-versions-deprecated',
27 27
             'aliases' => array(),
28 28
             'reference' => 'b4f54f74ef3453349c24a845d22392cd31e65f1d',
29 29
             'dev_requirement' => false,
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
             'pretty_version' => '0.2.0',
33 33
             'version' => '0.2.0.0',
34 34
             'type' => 'library',
35
-            'install_path' => __DIR__ . '/../fidry/console',
35
+            'install_path' => __DIR__.'/../fidry/console',
36 36
             'aliases' => array(),
37 37
             'reference' => '850f9a7f8d231d6d5d18a91e67152268ed1afa62',
38 38
             'dev_requirement' => false,
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             'pretty_version' => '0.17.0',
42 42
             'version' => '0.17.0.0',
43 43
             'type' => 'library',
44
-            'install_path' => __DIR__ . '/../humbug/php-scoper',
44
+            'install_path' => __DIR__.'/../humbug/php-scoper',
45 45
             'aliases' => array(),
46 46
             'reference' => 'cb23986d9309a10eaa284242f2169723af4e4a7e',
47 47
             'dev_requirement' => false,
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             'pretty_version' => 'v2021.3',
51 51
             'version' => '2021.3.0.0',
52 52
             'type' => 'library',
53
-            'install_path' => __DIR__ . '/../jetbrains/phpstorm-stubs',
53
+            'install_path' => __DIR__.'/../jetbrains/phpstorm-stubs',
54 54
             'aliases' => array(),
55 55
             'reference' => 'c790a8fa467ff5d3f11b0e7c1f3698abbe37b182',
56 56
             'dev_requirement' => false,
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
             'pretty_version' => 'v4.19.1',
60 60
             'version' => '4.19.1.0',
61 61
             'type' => 'library',
62
-            'install_path' => __DIR__ . '/../nikic/php-parser',
62
+            'install_path' => __DIR__.'/../nikic/php-parser',
63 63
             'aliases' => array(),
64 64
             'reference' => '4e1b88d21c69391150ace211e9eaf05810858d0b',
65 65
             'dev_requirement' => false,
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
             'pretty_version' => '1.1.2',
75 75
             'version' => '1.1.2.0',
76 76
             'type' => 'library',
77
-            'install_path' => __DIR__ . '/../psr/container',
77
+            'install_path' => __DIR__.'/../psr/container',
78 78
             'aliases' => array(),
79 79
             'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea',
80 80
             'dev_requirement' => false,
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
             'pretty_version' => '1.0.0',
84 84
             'version' => '1.0.0.0',
85 85
             'type' => 'library',
86
-            'install_path' => __DIR__ . '/../psr/event-dispatcher',
86
+            'install_path' => __DIR__.'/../psr/event-dispatcher',
87 87
             'aliases' => array(),
88 88
             'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0',
89 89
             'dev_requirement' => false,
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             'pretty_version' => 'v5.4.36',
99 99
             'version' => '5.4.36.0',
100 100
             'type' => 'library',
101
-            'install_path' => __DIR__ . '/../symfony/console',
101
+            'install_path' => __DIR__.'/../symfony/console',
102 102
             'aliases' => array(),
103 103
             'reference' => '39f75d9d73d0c11952fdcecf4877b4d0f62a8f6e',
104 104
             'dev_requirement' => false,
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
             'pretty_version' => 'v3.4.0',
108 108
             'version' => '3.4.0.0',
109 109
             'type' => 'library',
110
-            'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
110
+            'install_path' => __DIR__.'/../symfony/deprecation-contracts',
111 111
             'aliases' => array(),
112 112
             'reference' => '7c3aff79d10325257a001fcf92d991f24fc967cf',
113 113
             'dev_requirement' => false,
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
             'pretty_version' => 'v2.5.3',
117 117
             'version' => '2.5.3.0',
118 118
             'type' => 'library',
119
-            'install_path' => __DIR__ . '/../symfony/event-dispatcher-contracts',
119
+            'install_path' => __DIR__.'/../symfony/event-dispatcher-contracts',
120 120
             'aliases' => array(),
121 121
             'reference' => '540f4c73e87fd0c71ca44a6aa305d024ac68cb73',
122 122
             'dev_requirement' => false,
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             'pretty_version' => 'v5.4.38',
126 126
             'version' => '5.4.38.0',
127 127
             'type' => 'library',
128
-            'install_path' => __DIR__ . '/../symfony/filesystem',
128
+            'install_path' => __DIR__.'/../symfony/filesystem',
129 129
             'aliases' => array(),
130 130
             'reference' => '899330a01056077271e2f614c7b28b0379a671eb',
131 131
             'dev_requirement' => false,
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
             'pretty_version' => 'v5.4.35',
135 135
             'version' => '5.4.35.0',
136 136
             'type' => 'library',
137
-            'install_path' => __DIR__ . '/../symfony/finder',
137
+            'install_path' => __DIR__.'/../symfony/finder',
138 138
             'aliases' => array(),
139 139
             'reference' => 'abe6d6f77d9465fed3cd2d029b29d03b56b56435',
140 140
             'dev_requirement' => false,
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
             'pretty_version' => 'v1.29.0',
144 144
             'version' => '1.29.0.0',
145 145
             'type' => 'library',
146
-            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
146
+            'install_path' => __DIR__.'/../symfony/polyfill-ctype',
147 147
             'aliases' => array(),
148 148
             'reference' => 'ef4d7e442ca910c4764bce785146269b30cb5fc4',
149 149
             'dev_requirement' => false,
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
             'pretty_version' => 'v1.29.0',
153 153
             'version' => '1.29.0.0',
154 154
             'type' => 'library',
155
-            'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme',
155
+            'install_path' => __DIR__.'/../symfony/polyfill-intl-grapheme',
156 156
             'aliases' => array(),
157 157
             'reference' => '32a9da87d7b3245e09ac426c83d334ae9f06f80f',
158 158
             'dev_requirement' => false,
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
             'pretty_version' => 'v1.29.0',
162 162
             'version' => '1.29.0.0',
163 163
             'type' => 'library',
164
-            'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer',
164
+            'install_path' => __DIR__.'/../symfony/polyfill-intl-normalizer',
165 165
             'aliases' => array(),
166 166
             'reference' => 'bc45c394692b948b4d383a08d7753968bed9a83d',
167 167
             'dev_requirement' => false,
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
             'pretty_version' => 'v1.29.0',
171 171
             'version' => '1.29.0.0',
172 172
             'type' => 'library',
173
-            'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
173
+            'install_path' => __DIR__.'/../symfony/polyfill-mbstring',
174 174
             'aliases' => array(),
175 175
             'reference' => '9773676c8a1bb1f8d4340a62efe641cf76eda7ec',
176 176
             'dev_requirement' => false,
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
             'pretty_version' => 'v1.29.0',
186 186
             'version' => '1.29.0.0',
187 187
             'type' => 'library',
188
-            'install_path' => __DIR__ . '/../symfony/polyfill-php80',
188
+            'install_path' => __DIR__.'/../symfony/polyfill-php80',
189 189
             'aliases' => array(),
190 190
             'reference' => '87b68208d5c1188808dd7839ee1e6c8ec3b02f1b',
191 191
             'dev_requirement' => false,
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
             'pretty_version' => 'v1.29.0',
195 195
             'version' => '1.29.0.0',
196 196
             'type' => 'library',
197
-            'install_path' => __DIR__ . '/../symfony/polyfill-php81',
197
+            'install_path' => __DIR__.'/../symfony/polyfill-php81',
198 198
             'aliases' => array(),
199 199
             'reference' => 'c565ad1e63f30e7477fc40738343c62b40bc672d',
200 200
             'dev_requirement' => false,
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
             'pretty_version' => 'v2.5.3',
204 204
             'version' => '2.5.3.0',
205 205
             'type' => 'library',
206
-            'install_path' => __DIR__ . '/../symfony/service-contracts',
206
+            'install_path' => __DIR__.'/../symfony/service-contracts',
207 207
             'aliases' => array(),
208 208
             'reference' => 'a2329596ddc8fd568900e3fc76cba42489ecc7f3',
209 209
             'dev_requirement' => false,
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
             'pretty_version' => 'v6.4.4',
213 213
             'version' => '6.4.4.0',
214 214
             'type' => 'library',
215
-            'install_path' => __DIR__ . '/../symfony/string',
215
+            'install_path' => __DIR__.'/../symfony/string',
216 216
             'aliases' => array(),
217 217
             'reference' => '4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9',
218 218
             'dev_requirement' => false,
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
             'pretty_version' => 'v1.3.3',
222 222
             'version' => '1.3.3.0',
223 223
             'type' => 'library',
224
-            'install_path' => __DIR__ . '/../thecodingmachine/safe',
224
+            'install_path' => __DIR__.'/../thecodingmachine/safe',
225 225
             'aliases' => array(),
226 226
             'reference' => 'a8ab0876305a4cdaef31b2350fcb9811b5608dbc',
227 227
             'dev_requirement' => false,
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
             'pretty_version' => '1.11.0',
231 231
             'version' => '1.11.0.0',
232 232
             'type' => 'library',
233
-            'install_path' => __DIR__ . '/../webmozart/assert',
233
+            'install_path' => __DIR__.'/../webmozart/assert',
234 234
             'aliases' => array(),
235 235
             'reference' => '11cb2199493b2f8a3b53e7f19068fc6aac760991',
236 236
             'dev_requirement' => false,
Please login to merge, or discard this patch.