Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit 3dc79d4

Browse files
author
Alex Florisca
committed
Adding /vendor directory to release
1 parent 749bd03 commit 3dc79d4

File tree

165 files changed

+9661
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+9661
-0
lines changed

vendor/autoload.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
// autoload.php @generated by Composer
4+
5+
if (PHP_VERSION_ID < 50600) {
6+
if (!headers_sent()) {
7+
header('HTTP/1.1 500 Internal Server Error');
8+
}
9+
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
10+
if (!ini_get('display_errors')) {
11+
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
12+
fwrite(STDERR, $err);
13+
} elseif (!headers_sent()) {
14+
echo $err;
15+
}
16+
}
17+
trigger_error(
18+
$err,
19+
E_USER_ERROR
20+
);
21+
}
22+
23+
require_once __DIR__ . '/composer/autoload_real.php';
24+
25+
return ComposerAutoloaderInit395db247f47609229b332e970f518499::getLoader();

vendor/autoload_packages.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
/**
3+
* This file was automatically generated by automattic/jetpack-autoloader.
4+
*
5+
* @package automattic/jetpack-autoloader
6+
*/
7+
8+
namespace Automattic\Jetpack\Autoloader\jp395db247f47609229b332e970f518499;
9+
10+
// phpcs:ignore
11+
12+
require_once __DIR__ . '/jetpack-autoloader/class-autoloader.php';
13+
Autoloader::init();
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tests/php/tmp
Lines changed: 341 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,341 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [2.11.12] - 2022-11-22
9+
### Changed
10+
- Updated package dependencies. [#27043]
11+
12+
## [2.11.11] - 2022-10-25
13+
### Changed
14+
- Sort data in generated `vendor/composer/jetpack_autoload_classmap.php` to avoid spurious diffs. [#26929]
15+
16+
## [2.11.10] - 2022-10-05
17+
18+
- Tests: Clear `COMPOSER_AUTH` environment variable when running Composer for tests. [#26404]
19+
20+
## [2.11.9] - 2022-09-27
21+
### Fixed
22+
- Tests: Clear `COMPOSER_AUTH` environment variable when running Composer for tests. [#26404]
23+
24+
## [2.11.8] - 2022-09-20
25+
### Fixed
26+
- Tests: skip test if it requires a version of Composer not compatible with the running version of PHP. [#26143]
27+
28+
## [2.11.7] - 2022-07-26
29+
### Changed
30+
- Updated package dependencies. [#25158]
31+
32+
## [2.11.6] - 2022-06-21
33+
### Changed
34+
- Renaming `master` to `trunk`.
35+
36+
## [2.11.5] - 2022-05-18
37+
### Fixed
38+
- Fix new PHPCS sniffs. [#24366]
39+
40+
## [2.11.4] - 2022-04-26
41+
### Changed
42+
- Updated package dependencies.
43+
44+
## [2.11.3] - 2022-04-19
45+
### Changed
46+
- PHPCS: Fix `WordPress.Security.ValidatedSanitizedInput`
47+
48+
## [2.11.2] - 2022-03-29
49+
### Changed
50+
- Microperformance: Use === null instead of is_null
51+
52+
## [2.11.1] - 2022-03-08
53+
### Removed
54+
- Removed the Upgrade Handler.
55+
56+
## [2.11.0] - 2022-03-08
57+
### Added
58+
- On plugin update, pre-load all (non-PSR-4) classes from the plugin to avoid mid-upgrade fatals.
59+
60+
## [2.10.13] - 2022-03-01
61+
### Fixed
62+
- Fix tests for upstream phpunit change.
63+
64+
## [2.10.12] - 2022-01-25
65+
### Changed
66+
- Updated package dependencies.
67+
68+
## [2.10.11] - 2022-01-04
69+
### Changed
70+
- Switch to pcov for code coverage.
71+
- Updated package dependencies
72+
73+
## [2.10.10] - 2021-11-16
74+
### Added
75+
- Soft return if autoloader chain is not available.
76+
77+
## [2.10.9] - 2021-11-02
78+
### Changed
79+
- Set `convertDeprecationsToExceptions` true in PHPUnit config.
80+
81+
## [2.10.8] - 2021-10-13
82+
### Changed
83+
- Updated package dependencies.
84+
85+
## [2.10.7] - 2021-10-07
86+
### Changed
87+
- Updated package dependencies
88+
89+
## [2.10.6] - 2021-09-28
90+
### Changed
91+
- Updated package dependencies.
92+
93+
## [2.10.5] - 2021-08-31
94+
### Changed
95+
- Run composer update on test-php command instead of phpunit
96+
- Tests: update PHPUnit polyfills dependency (yoast/phpunit-polyfills).
97+
98+
## [2.10.4] - 2021-08-10
99+
### Changed
100+
- Updated package dependencies.
101+
102+
## [2.10.3] - 2021-05-25
103+
### Changed
104+
- Updated package dependencies.
105+
106+
## [2.10.2] - 2021-04-27
107+
### Changed
108+
- Updated package dependencies.
109+
110+
## [2.10.1] - 2021-03-30
111+
### Added
112+
- Composer alias for dev-master, to improve dependencies
113+
- Tests: Added code coverage transformation
114+
115+
### Changed
116+
- Update package dependencies.
117+
118+
### Fixed
119+
- Fix coverage test
120+
- Fix uninstallation fatal
121+
- Update tests for changed composer 2.0.9 hash.
122+
- Use `composer update` rather than `install` in scripts, as composer.lock isn't checked in.
123+
124+
## [2.10.0] - 2021-02-09
125+
126+
- Autoloader: test suite refactor
127+
128+
## [2.9.1] - 2021-02-05
129+
130+
- CI: Make tests more generic
131+
- Autoloader: stricter type-checking on WP functions
132+
- Autoloader: prevent transitive plugin execution
133+
134+
## [2.9.0] - 2021-01-25
135+
136+
- Autoloader: revised latest autoloader inclusion semantics
137+
- Add mirror-repo information to all current composer packages
138+
- Monorepo: Reorganize all projects
139+
- Autoloader: Don't cache deactivating plugins
140+
141+
## [2.8.0] - 2020-12-18
142+
143+
## [2.7.1] - 2020-12-18
144+
145+
- Autoloader: Added realpath resolution to plugin paths
146+
147+
## [2.7.0] - 2020-12-08
148+
149+
- Autoloader: Preemptively load unknown plugins from cache
150+
- Removed unwanted dot
151+
- Pin dependencies
152+
- Packages: Update for PHP 8 testing
153+
154+
## [2.6.0] - 2020-11-19
155+
156+
- Autoloader: AutoloadGenerator no longer extends Composer's AutoloadGenerator class
157+
- Autoloader: Reuse an existing autoloader suffix if available
158+
- Updated PHPCS: Packages and Debugger
159+
160+
## [2.5.0] - 2020-10-08
161+
162+
- Autoloader: remove the defined('JETPACK_AUTOLOAD_DEV') checks from the tests
163+
164+
## [2.4.0] - 2020-09-28
165+
166+
- Autoloader: remove the plugins_loaded bullet point from the README
167+
- Packages: avoid PHPCS warnings
168+
- Autoloader: add PSR-0 support
169+
- Autoloader: Detect filtering of active_plugins
170+
- Autoloader: Support unoptimized PSR-4
171+
172+
## [2.3.0] - 2020-08-21
173+
174+
- Autoloader: remove the plugin update hook
175+
176+
## [2.2.0] - 2020-08-14
177+
178+
- Autoloader: don't reset the autoloader version during plugin update
179+
- CI: Try collect js coverage
180+
181+
## [2.1.0] - 2020-07-27
182+
183+
- Autoloader: convert '\' directory separators to '/' in plugin paths
184+
- Autoloader: Avoid a PHP warning when an empty string is passed to `is_directory_plugin()`.
185+
- Autoloader: Tests: Use a string with define
186+
187+
## [2.0.2] - 2020-07-09
188+
189+
- Autoloader: Avoid a PHP warning when an empty string is passed to `is_directory_plugin()`.
190+
191+
## [2.0.1] - 2020-07-02
192+
193+
- Autoloader: Tests: Use a string with define
194+
195+
## [2.0.0] - 2020-06-29
196+
197+
## [2.0.0-beta] - 2020-06-29
198+
199+
- Autoloader: Support Composer v2.0
200+
- Autoloader: use paths to identify plugins instead of the directories
201+
- Autoloader: fix the fatal that occurs during plugin update
202+
- Autoloader: add fallback check for plugin path in mu-plugins
203+
- Autoloader: use JETPACK__PLUGIN_DIR when looking for the jetpack plugin directory.
204+
- Feature Branch: Update the Autoloader
205+
- PHPCS: Clean up the packages
206+
- PHPCS Updates after WPCS 2.3
207+
208+
## [1.7.0] - 2020-04-23
209+
210+
- Jetpack: Move comment notification override back to the constructor
211+
212+
## [1.6.0] - 2020-03-26
213+
214+
- Autoloader: Remove file check to improve performance.
215+
216+
## [1.5.0] - 2020-02-25
217+
218+
- Jetpack: instantiate manager object if it's null
219+
220+
## [1.4.1] - 2020-02-14
221+
222+
- Autoloader: Load only latest version of autoload files to avoid conflicts.
223+
224+
## [1.4.0] - 2020-01-23
225+
226+
- Autoloader: Remove the ignored classes
227+
228+
## [1.3.8] - 2020-01-14
229+
230+
- Trying to add deterministic initialization.
231+
- Autoloader: Remove Manager_Interface and Plugin\Tracking from ignored list
232+
- Autoloader: Remove Jetpack_IXR_Client from ignore list
233+
234+
## [1.3.7] - 2019-12-10
235+
236+
## [1.3.6] - 2019-12-09
237+
238+
- Autoloader: Use long-form sytax for array
239+
240+
## [1.3.5] - 2019-11-26
241+
242+
- Fix/php notice status
243+
244+
## [1.3.4] - 2019-11-08
245+
246+
- Deprecate Jetpack::is_development_mode() in favor of the packaged Status()-&gt;is_development_mode()
247+
248+
## [1.3.3] - 2019-10-28
249+
250+
- Packages: Add gitattributes files to all packages that need th…
251+
252+
## [1.3.2] - 2019-09-24
253+
254+
- Autoloader: Cover scenarios where composer/autoload_files.php…
255+
256+
## [1.3.1] - 2019-09-20
257+
258+
- Docs: Unify usage of @package phpdoc tags
259+
260+
## [1.3.0] - 2019-09-14
261+
262+
- Fix for empty namespaces. #13459
263+
- Connection: Move the Jetpack IXR client to the package
264+
- Adds full connection cycle capability to the Connection package.
265+
- Jetpack 7.5: Back compatibility package
266+
267+
## [1.2.0] - 2019-06-24
268+
269+
- Jetpack DNA: Add full classmap support to Autoloader
270+
- Move Jetpack_Sync_Main from legacy to PSR-4
271+
272+
## [1.1.0] - 2019-06-19
273+
274+
- Packages: Move autoloader tests to the package
275+
- DNA: Move Jetpack Usage tracking to its own file
276+
- Jetpack DNA: More isolation of Tracks Package
277+
- Autoloader: Ignore XMLRPC_Connector if called too early
278+
- Autoloader: Ignore Jetpack_Signature if called too early
279+
280+
## 1.0.0 - 2019-06-11
281+
282+
- Add Custom Autoloader
283+
284+
[2.11.12]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.11...v2.11.12
285+
[2.11.11]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.10...v2.11.11
286+
[2.11.10]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.9...v2.11.10
287+
[2.11.9]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.8...v2.11.9
288+
[2.11.8]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.7...v2.11.8
289+
[2.11.7]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.6...v2.11.7
290+
[2.11.6]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.5...v2.11.6
291+
[2.11.5]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.4...v2.11.5
292+
[2.11.4]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.3...v2.11.4
293+
[2.11.3]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.2...v2.11.3
294+
[2.11.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.1...v2.11.2
295+
[2.11.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.0...v2.11.1
296+
[2.11.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.13...v2.11.0
297+
[2.10.13]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.12...v2.10.13
298+
[2.10.12]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.11...v2.10.12
299+
[2.10.11]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.10...v2.10.11
300+
[2.10.10]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.9...v2.10.10
301+
[2.10.9]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.8...v2.10.9
302+
[2.10.8]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.7...v2.10.8
303+
[2.10.7]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.6...v2.10.7
304+
[2.10.6]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.5...v2.10.6
305+
[2.10.5]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.4...v2.10.5
306+
[2.10.4]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.3...v2.10.4
307+
[2.10.3]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.2...v2.10.3
308+
[2.10.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.1...v2.10.2
309+
[2.10.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.0...v2.10.1
310+
[2.10.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.9.1...v2.10.0
311+
[2.9.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.9.0...v2.9.1
312+
[2.9.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.8.0...v2.9.0
313+
[2.8.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.7.1...v2.8.0
314+
[2.7.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.7.0...v2.7.1
315+
[2.7.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.6.0...v2.7.0
316+
[2.6.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.5.0...v2.6.0
317+
[2.5.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.4.0...v2.5.0
318+
[2.4.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.3.0...v2.4.0
319+
[2.3.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.2.0...v2.3.0
320+
[2.2.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.1.0...v2.2.0
321+
[2.1.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.2...v2.1.0
322+
[2.0.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.1...v2.0.2
323+
[2.0.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.0...v2.0.1
324+
[2.0.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.0-beta...v2.0.0
325+
[2.0.0-beta]: https://github.com/Automattic/jetpack-autoloader/compare/v1.7.0...v2.0.0-beta
326+
[1.7.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.6.0...v1.7.0
327+
[1.6.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.5.0...v1.6.0
328+
[1.5.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.4.1...v1.5.0
329+
[1.4.1]: https://github.com/Automattic/jetpack-autoloader/compare/v1.4.0...v1.4.1
330+
[1.4.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.8...v1.4.0
331+
[1.3.8]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.7...v1.3.8
332+
[1.3.7]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.6...v1.3.7
333+
[1.3.6]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.5...v1.3.6
334+
[1.3.5]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.4...v1.3.5
335+
[1.3.4]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.3...v1.3.4
336+
[1.3.3]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.2...v1.3.3
337+
[1.3.2]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.1...v1.3.2
338+
[1.3.1]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.0...v1.3.1
339+
[1.3.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.2.0...v1.3.0
340+
[1.2.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.1.0...v1.2.0
341+
[1.1.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.0.0...v1.1.0

0 commit comments

Comments
 (0)