diff --git a/README.md b/README.md
index 63a5b11..3895792 100644
--- a/README.md
+++ b/README.md
@@ -12,6 +12,10 @@ A Bootstrap based ROBLOX revival website.
- [ ] Make Create assets/game page
- [x] Make Catalog page (functional)
- [ ] Make Credits page
+- [ ] Make Placelauncher.ashx require a token for joining then proceed to start a game on a gameserver with soap
+- [ ] Make renders
+- [ ] Make Admin panel and make it only accessible to admin users (show stuff like how many games are running cpu usage on the webserver how many users are online that kind of stuff)
+- [ ] Add Recaptcha (https://developers.google.com/recaptcha/old/docs/php, ask mario to make a public key if u want to do this feature)
# Leaking
You should never leak the source code in any way. If you do, you will be banned forever and demoted.
diff --git a/core/config.php b/core/config.php
index e06c4cc..2ca8897 100644
--- a/core/config.php
+++ b/core/config.php
@@ -15,7 +15,9 @@ if($devmode) {
}
$gameSettings = [
- "privatekey" => ""
+ "privatekey" => "-----BEGIN RSA PRIVATE KEY-----
+MIICXQIBAAKBgQDhO7uhMz3jBLoSB/SHWhnE5tVxn7P6BlirPVrZEWVUxjyC5ybhZpyjL/r6KBlvhgyn67h2t3gNL043K0uXDAFXCIOWopR6e3fUybie8jI8mJQR1/rWbdcSK/UdSA4IDTULOz/PQxd/U75cy6AHlkpF1YqyMaNMNQsHyV7lbcNXGQIDAQABAoGAMRcf0galGnHRTFTHiyisLSpSoy03wOrZMJlyz5TnDQ8X6UAQTVhcE4VFonhS8ue4onDSB639UIJa/dNF6moHcFP+vh8I2eEdpmPPSkIpB+Y1iYiJGRVbWkbEAPCy/UFGrqAsp2a0rk1BAYuaPwVeXRL72mU0ml2OsdY14liCP7ECQQDnHSetgyNzfDUJ/hUABWaLdWewAOHk/R4rPNtd/lFNd8m/mExOqOF6BCHJ/fpYTec1f6K8ysrsYwA+uGqNd64DAkEA+Xx5wBu36z6EsjiaHyL6VtySiJDCTv2pHzfeU4Q+mBi7ciH2mZnmAZlGdzTAU8EcbrRvkmY9tuT5wtvzIHI5swJBAJB8fa3Qan1sjYwtuNtGhRFy2NwD8TXDuPS3Gz3sHNAdr5eEk1Ap7KznoGgzzCsgqQedQBRfg/W8/w43JQZEaBkCQDINQu/Dn9ZWKJEIwgLVJZwfjFZRlGn8gd19e+ENevFQpOp03eBa+8X+ViC8OImVCHs9P9UDJgZ3UZRCRDiSMfkCQQC7HpVCnGc6sH/+gD9IiN3i8+UMDhMRjnam4VdujgkeDqXCvJZdehpKEQvtLqnGYFmhe7wLRenR6J8zlj02W4Nv
+-----END RSA PRIVATE KEY-----"
];
$site = [
diff --git a/piedmid/.rtlcssrc.json b/piedmid/.rtlcssrc.json
new file mode 100644
index 0000000..e5fe60f
--- /dev/null
+++ b/piedmid/.rtlcssrc.json
@@ -0,0 +1,3 @@
+{
+ "map": true
+}
diff --git a/piedmid/CONTRIBUTING.md b/piedmid/CONTRIBUTING.md
new file mode 100644
index 0000000..6c3c5a7
--- /dev/null
+++ b/piedmid/CONTRIBUTING.md
@@ -0,0 +1,52 @@
+# Contributing to phpMyAdmin
+
+As an open-source project, phpMyAdmin welcomes contributions of many forms.
+
+## Bug reporting
+
+We appreciate your effort to improve phpMyAdmin by submitting a bug report. Before doing so, please check the following things:
+
+1. Check whether the bug you face **hasn't been already reported**. Duplicate reports take us time, that we could be used to fix other bugs or make improvements.
+
+2. Specify the phpMyAdmin, server, PHP, MySQL and browser information that may be helpful to fix the problem, especially exact **version numbers**.
+
+3. If you got some error, please **describe what happened** and add an error message. Reports like "I get an error when I clicked on some link" are useless.
+
+4. Provide easy steps to reproduce and if possible include your table structure (``SHOW CREATE TABLE `tbl_name`;``); if your problem implies specific data, attach a small export file for sample rows.
+
+5. **Security problems** should not be reported here. See [our security page](https://www.phpmyadmin.net/security/).
+
+Thanks for your help!
+
+Please report [bugs on GitHub][1].
+
+[1]: https://github.com/phpmyadmin/phpmyadmin/issues/new
+
+## Patches submission
+
+Patches are welcome as [pull requests on GitHub][2]. Please include a
+Signed-off-by tag in the commit message (you can do this by passing [`--signoff`][4] parameter to Git).
+
+When creating the commit on GitHub or using some other tool which does not have
+direct support for this, it is the same as adding `Signed-off-by: Your name `
+as the last line of the commit message.
+
+Example: `Signed-off-by: Jane Smith `
+
+Note that by submitting patches with the Signed-off-by tag, you are giving
+permission to license the patch as GPLv2-or-later. See [the DCO file][3] for details.
+
+
+[2]: https://github.com/phpmyadmin/phpmyadmin/pulls
+[3]: https://github.com/phpmyadmin/phpmyadmin/blob/master/DCO
+[4]: https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff
+
+## Triage issues [](https://www.codetriage.com/phpmyadmin/phpmyadmin)
+
+You can triage issues, which may include reproducing bug reports or asking for vital information, such as version numbers or reproduction instructions. If you would like to start triaging issues, one easy way to get started is to [subscribe to phpMyAdmin on CodeTriage](https://www.codetriage.com/phpmyadmin/phpmyadmin).
+
+## More information
+
+You can find more information on our website:
+
+https://www.phpmyadmin.net/contribute/
diff --git a/piedmid/ChangeLog b/piedmid/ChangeLog
new file mode 100644
index 0000000..1c60a19
--- /dev/null
+++ b/piedmid/ChangeLog
@@ -0,0 +1,868 @@
+phpMyAdmin - ChangeLog
+======================
+
+5.2.0 (2022-05-10)
+- issue #16521 Upgrade Bootstrap to version 5
+- issue #16521 Drop support for Internet Explorer and others
+- issue Upgrade to shapefile 3
+- issue #16555 Bump minimum PHP version to 7.2
+- issue Remove the phpseclib dependency
+- issue Upgrade Symfony components to version 5.2
+- issue Upgrade to Motranslator 4
+- issue #16005 Improve the performance of the Export logic
+- issue #16829 Add "NOT LIKE %...%" operator to Table search
+- issue #16845 Fixed some links not passing through url.php
+- issue #16382 Remove apc upload progress method (all upload progress code was removed from the PHP extension)
+- issue #16974 Replace zxcvbn by zxcvbn-ts
+- issue #15691 Disable the last column checkbox in the column list dropdown instead of not allowing un-check
+- issue #16138 Ignore the length of integer types and show a warning on MySQL >= 8.0.18
+- issue Add support for the Mroonga engine
+- issue Double click column name to directly copy to clipboard
+- issue #16425 Add "DELETE FROM" table on table operations page
+- issue #16482 Add a select all link for table-specific privileges
+- issue #14276 Add support for account locking
+- issue #17143 Use composer/ca-bundle to manage the CA cert file
+- issue #17143 Require the openssl PHP extension
+- issue #17171 Remove the printview.css file from themes
+- issue #17203 Redesign the export and the import pages
+- issue #16197 Replace the master/slave terminology
+- issue #17257 Replace libraries/vendor_config.php constants with an array
+- issue Add the Bootstrap theme
+- issue #17499 Remove stickyfilljs JavaScript dependency
+
+5.1.4 (not yet released)
+- issue #17287 Fixed sorting the database list with "statistics" enabled on "Data" column creates a PHP type error
+- issue #17368 Fix for invalid cache when losing access to config storage after it being cached
+- issue #17387 Fix session cookie not respecting the CookieSameSite configuration directive in PHP 7.2
+- issue #16769 Fix create index form accepting too many columns
+- issue #16816 Disable editing to system schemas
+- issue #16853 Add better error handling when IndexedDB is not working
+- issue Fixed incorrect escaping of special MySQL characters on some pages
+- issue #17188 Fix GIS visualization with an edited query
+- issue #17418 Remove the use of the deprecated `strftime` function in OpenDocument exports
+- issue #17111 Enable tabindex recompute on preview button while insert new rows
+- issue #17474 Fix invalid SQL generated when PRIMARY/UNIQUE key contains a POINT column
+- issue #17484 Fix setup's CSS not loading when the URL doesn't have a trailing slash
+- issue #17494 Remove jQuery SVG JavaScript dependency
+- issue #17335 Fix column visibility dropdown when the column name is too long
+- issue #17445 Fix issue when exporting using Firefox or Safari on PHP 8.1.4
+- issue Update JavaScript dependencies
+- issue #17428 Fix case where errors were thrown when browsing a table
+- issue #17508 Fix UI issue when user accounts page has the initials navigation bar
+
+5.1.3 (2022-02-10)
+- issue #17308 Fix broken pagination links in the navigation sidebar
+- issue #17331 Fix MariaDB has no support for system variable "disabled_storage_engines"
+- issue #17315 Fix unsupported operand types in Results.php when running "SHOW PROCESSLIST" SQL query
+- issue #17288 Fixed importing browser settings question box after login when having no pmadb
+- issue #17288 Fix "First day of calendar" user override has no effect
+- issue #17239 Fixed repeating headers are not working
+- issue #17298 Fixed import of email-adresses or links from ODS results in empty contents
+- issue #17344 Fixed a type error on ODS import with non string values
+- issue #17239 Fixed header row show/hide columns buttons on each line after hover are shown on each row
+- issue [security] Fix for path disclosure under certain server configurations (if display_errors is on, for instance)
+
+5.1.2 (2022-01-20)
+- issue Replaced MySQL documentation redirected links
+- issue #16960 Fix JS error on Designer visual builder on some modal buttons
+- issue Re-build openlayers JS dependency from the source files and provide a smaller JS bundle
+- issue Fixed imports and theme detection depending on the current working dir
+- issue Update JavaScript dependencies
+- issue #16935 Remove hardcoded row length for "$cfg['CharTextareaRows']" to allow back values < 7
+- issue #16977 Fix encoding of enum and set values on edit value
+- issue Fix set value as selected when it has special chars on edit value enum
+- issue #16896 Fix distinct URLs broken on nullable text fields
+- issue Fixed two possible PHP errors using INT data
+- issue Fixed possible warning "Undefined index: output_format" on export
+- issue Fixed warning "Undefined index: ods_recognize_percentages" on Import ODS
+- issue Fixed warning "Undefined array key "ods_recognize_currency" on Import ODS
+- issue #16982 Fixed "Notice: Undefined index: foreign_keys_data" on Designer remove relation
+- issue Backquote phpMyAdmin table name on internal relation delete query for Designer
+- issue #16982 Do not try to delete internal relations if they are not configured
+- issue #16982 Show success messages on Designer for add and remove relation operations
+- issue Fixed possible "Undefined index: clause_is_unique" on replace value in cell
+- issue #16991 Fixed case where $_SERVER['REQUEST_METHOD'] is undefined
+- issue Fixed configuration error handler registration
+- issue #16997 Fixed server variables get/set value not working on multi server server > 1
+- issue #16998 Fixed Multi table query submit on server > 1 logged out user
+- issue #17000 Fixed Multi edit on central columns on server > 1 logged out user
+- issue #17001 Fix PHP error on query submit without a table name on multi table query box
+- issue #16999 Fixed multi table query results shows for 1 sec and then page refreshes
+- issue Fixed a non translated button text on central columns add
+- issue Fixed table width on Query by example page for large screens
+- issue #16975 Fixed NULL default had a value on insert with datatime fields
+- issue #16994 Fixed missing privilege escaping when assigning multiple databases with '_' to an user
+- issue #16864 Fixed the margin on the last database of the tree on all themes when scrollbars are displayed
+- issue #17011 Fixed the database tree line that was not continuous on database groups
+- issue Build more syntax correct URLs on JS internal redirects
+- issue #16976 Fix wrong link when a table is moved from a database to another
+- issue #16985 Fix case-sensitive issue of innodb_file_format=barracuda vs innodb_file_format=Barracuda
+- issue Fixed duplicate quote in navigation nodes
+- issue #17006 Disable the URL limit for the MariaDB analyser feature
+- issue Fix calls to fetchRow using two parameters but the function has only one parameter
+- issue #17020 Fixed "Notice Undefined index: sql_query" on Insert page
+- issue Fix reported "Undefined index: FirstDayOfCalendar"
+- issue Fix reported "Undefined index: environment"
+- issue Fix "TypeError: strlen() expects parameter 1 to be string, null given" on databases listing
+- issue #16973 Fix "Undefined array key "n0_pos2_name"" on databases listing
+- issue Use the correct min MySQL version for axis-order (8.0.1) instead of (8.0.11)
+- issue Use the queries we asked the user confirmation for on DELETE and TRUNCATE table actions
+- issue #16994 Fixed editing specific privileges for a database covered by a wildcard privilege
+- issue #16994 Fixed escaping of the database name for databases containing '_' on users edit
+- issue #16994 Only escape once on grant/revoke privileges for databases containing '_' or '%'
+- issue #16994 Only show databases without a privilege on multi select for user grant databases
+- issue Removed un-expected query success message from the Table export page
+- issue #17026 Handle possible invalid boolean values injected in SaveDir or UploadDir causing "TypeError: mb_substr()"
+- issue #16981 Enable cookie parameter "SameSite" on "phpMyAdmin" cookie for PHP >= 7.3
+- issue #16966 Encode "#" to have the anchor part of the destination URL on SQL highlight terms URLs
+- issue #17004 Fix PHP errors due to removed variable "innodb_file_format" on MariaDB >= 10.6.0 and MySQL >= 8.0.0
+- issue #16842 Fixed missing password modes on PerconaDB
+- issue #16947 Fix "Change login information" form not working
+- issue #17004 Fix Advisor for MariaDB >= 10.5 because of removed "innodb_log_files_in_group" variable
+- issue #17037 Fix change structure does not surface errors
+- issue #17016 Fixed online Transaction, errors not reported on structure edit
+- issue #17042 Fix SQL escaping bug on DB name with special chars on submit query with rollback option
+- issue #17027 Better handle the display of sorted binary columns in results summary
+- issue #16398 Quote non numeric values on parameterized queries
+- issue Fixed duplicate HTML escaping on foreign keys select value modal
+- issue #15370 Fixed edit routine UI incorrectly removes too many escape slashes
+- issue #14631 Fix enum with comma produces incorrect search dropdown on search pages
+- issue Fix gis visualization position and limit parameters have no effect
+- issue #16995 Fix edit binary foreign key adds a 1 to the value on the selected value
+- issue #13614 Fixed escaping the database names when granting privileges on tables
+- issue #11834 Fixed adding a new user on "privileges" tab of a table with a database name using a "_" character
+- issue #17033 Fixed scaling of line width and point size in GIS visualization
+- issue #17054 Removed "DEL" character from generated random strings for Blowfish secret auto-generated by setup
+- issue #17019 Fixed "Browse" button visible when creating a table from the database structure view
+- issue #16804 Fixed numbers where left-aligned rather than right-aligned
+- issue Fixed Metro theme text color for buttons in the browse table navigation bar
+- issue #14796 Fix export Database page, UI prevents from exporting procedures only
+- issue #15225 Fix Command+click on macOS opens links in same tab
+- issue #17014 Fix column names in first row when importing from CSV where the first line contains column names
+- issue Fix prevent scrolling the page when scrolling in GIS visualization
+- issue Fix GIS visualization save file with a different label or column
+- issue Fixed GIS saving image as png with a label
+- issue Fixed if label is just the number zero, it was treated as no label in the OpenLayers map
+- issue #17039 Fix unable to have 2FA working with a "pmadb" config value != phpmyadmin
+- issue #17079 Fixed missing spatial functions in Insert/Edit page
+- issue Fixed broken docs link after a FK data type mismatch error
+- issue Fix don't add multiple OpenLayers maps, remove listeners on dispose on GIS visualization
+- issue #14502 Uncheck the "ignore" checkbox when the user chooses a value in the foreign key list on Insert page
+- issue #14502 Uncheck the "ignore" checkbox when the user saves the GIS value on Insert page
+- issue #17018 Fixed cannot save data from GIS editor for spatial column on Insert page
+- issue #17084 Fixed ErrorHandler not showing errors when phpMyAdmin session does not work at all
+- issue #17062 Fixed pagination issues when working with identically named tables in separate databases
+- issue #17046 Fix "Uncaught TypeError: htmlspecialchars() expects parameter 1 to be string, null given"
+- issue #16942 Fix table Import with CSV using LOAD DATA LOCAL causes error "LOAD DATA LOCAL INFILE is forbidden"
+- issue #16942 Fix auto-detection for "LOAD DATA LOCAL INFILE" LOCAL option
+- issue #16067 Make select elements with multiple items resizable
+- issue Fix the display of Indexes that use Expressions and not column names
+- issue Allow to create the phpMyAdmin storage database using a different name than "phpmyadmin" using the interface
+- issue #17092 Document that "$cfg['Servers'][$i]['designer_coords']" was removed in version 4.3.0
+- issue #16906 Support special table names for pmadb storage table names
+- issue #16906 Fix a caching effect on the feature list after creating the tables
+- issue #16906 Better report errors when creating the pmadb or it's tables
+- issue #16906 Create the pmadb tables using the names configured and not the default names
+- issue #16906 Create the phpMyAdmin storage database using the configured "['pmadb']" name and not always "phpmyadmin"
+- issue #16906 Prevent incorrect overriding of configured values after a pmadb fix
+- issue #16906 Use the control connection to create the storage database and tables and not the user connection
+- issue #16693 Fix can't see SQL after adding a new column
+- issue #12753 Show table structure after adding a new column
+- issue Fix a PHP notice when logging out
+- issue #17090 Fix bbcode not rendered for error messages on setup
+- issue #17198 Fix the database selection when the navigation tree is disabled
+- issue #17228 Fixed copy to clipboard with NULL values gives non usable text
+- issue #16746 Replace samyoul/u2f-php-server by code-lts/u2f-php-server
+- issue #16005 Performance improvement on the Import and Export pages
+- issue #17247 Fix triple HTML encoding
+- issue #17259 Fix broken link in the Simulate DML query modal
+- issue #16746 Update tcpdf dependency to ^6.4.4 for PHP 8.1 compatibility
+- issue #16746 Update twig dependency to "^2.14.9 || ^3.3.5" for PHP 8.1 compatibility
+- issue [security] Add configuration directive $cfg['Servers'][$i]['hide_connection_errors'] to allow hiding host names and other error details when login fails
+- issue [security] Add configuration directive $cfg['URLQueryEncryption'] to allow encrypting senstive information in the URL
+- issue [security] Fix a scenario where an authenticated user can disable two factor authentication (PMASA-2022-1)
+- issue [security] Fix XSS and HTML injection attacks in the graphical setup page (PMASA-2022-2)
+
+5.1.1 (2021-06-04)
+- issue #13325 Fixed created procedure shows up in triggers and events and vice-versa
+- issue Fixed adding an event shows an empty row
+- issue #16706 Fixed a PHP error when visualizing a nullable geometry column
+- issue Fixed a PHP type error when exporting triggers to ODF
+- issue #16659 Fixed the Column Drop arrow to make it responsive
+- issue #16677 Improved the Font size of an executed SQL query
+- issue #16677 Fixed Metro theme DB tree background
+- issue #16713 Fixed "PhpMyAdmin\Url::getFromRoute" PHP error for old config values
+- issue #16713 Add a legacy fallback for the old config value of "$cfg['DefaultTabDatabase']" and others
+- issue #16698 Fix relative fallback URL to './' instead of '/'
+- issue Fixed Yaml export to quote strings even when they are numeric
+- issue #16704 Fixed PHP type errors on the substring transformation
+- issue #14026 Fixed error messages and conditions for MD5 and AES_* functions
+- issue #16708 Fixed PHP "Uncaught TypeError: hash_hmac()" on double quick edit
+- issue #16709 Fix TCPDF open_basedir issue due to internal guessing code from TCPDF
+- issue #16729 Fixed the silencing error management for PHP >= 8.0
+- issue #16604 Set back tables width like in 5.0 versions
+- issue #16716 Fixed rename button disappears after a column drop on table structure page
+- issue #15628 Fixed "JSON encoding failed: Malformed UTF-8 characters" when browsing data that uses binary to IP transformation
+- issue #14395 Fixed display chart with timeline & series name column trigger JS error
+- issue #16738 Fixed quick search submit is not working on multi server server > 1
+- issue #16717 Fixed main drawer js call slowing down the page and remove the reflow effect
+- issue Fixed a PHP notice "Undefined index: pred_username"
+- issue #16744 Fixed "Uncaught TypeError: XMLWriter::writeAttribute()" on Designer SVG export
+- issue Fixed an PHP undefined index notice on export
+- issue #14555 Fixed JavaScript error when auto completion is open (upgraded CodeMirror to 5.60.0)
+- issue #16647 Fixed preferences form not showing texts and not respecting TabsMode config
+- issue Fixed escape_mysql_wildcards Twig filter
+- issue Change text from "Null" to "NULL" on grid edit popup
+- issue Translate a non translated string on a change password page
+- issue Fix designer modal buttons sizes for pmahomme and bootstrap themes
+- issue #16694 Fixed "Triggers" page not visible for user table specific privileges
+- issue #14430 Fixed execute button is disabled for routines
+- issue #16703 Fixed SQL option to Export specific rows from a table
+- issue #16656 Fixed error messages are not always translated
+- issue #16728 Fixed wrong SQL query built on table structure index for new column
+- issue #16647 Fixed table search forms not showing texts and not respecting TabsMode config
+- issue #16758 Fixed copy to clipboard feature not working on ja or zh_TW languages because of the non ascii colon
+- issue #16601 Update tcpdf dependency to ^6.4.1
+- issue #16770 Fixed a notice or warning, when clicking on Structure tab
+- issue #16756 Fixed refresh UI on server status
+- issue Fixed a PHP notice when searching for .git/commondir on the login page for users using ShowGitRevision
+- issue Fixed reported PHP notice on export save template
+- issue Fixed reported PHP warnings on server status page
+- issue #15629 Fixed datetime decimals displayed (.00000) after edit
+- issue #16780 Fixed new event shows an empty row
+- issue #16765 Fixed new lines in text fields are doubled
+- issue Fix "Connection" label always shown on table create, should be hidden like it's input
+- issue #16773 Fix do not use cast as binary for an empty text value on edit button condition
+- issue Fixed a JS error on a missing script on zoom search
+- issue Added button style on the reset charts of zoom search
+- issue Fixed number of rows not kept when changing sort by index value
+- issue #16784 Fixed spacing between icons when using NavigationTreeDefaultTabTable2 configuration
+- issue #16786 Fixed browser error when clicking the logo with NavigationLogoLink configuration
+- issue Fixed a type error when getting the special schema links
+- issue #16789 Fix create PHP code removes ; from SQL query on Structure snapshot
+- issue #16791 Fixed "Undefined index table_schema" on special schema table
+- issue Fixed "DESCRIBE FILES;" broken links in query results
+- issue #16790 Fixed "Undefined index field_name" PHP error
+- issue #16605 Fixed vertical alignment issue on tables for pmahomme theme
+- issue #16798 Fix ServerConfigChecks: Link 'trusted proxies list' not terminated properly (translation)
+- issue #16805 Fixed shortcut keys not working
+- issue #16821 Fix "Show all rows" un-check checkbox creates a JS error if the page was reloaded
+- issue Remove redundant jQuery Event Drag plugin
+- issue Fix PHP type error on GIS nullable data
+- issue Fix not working export to PNG, SVG, PDF on GIS visualization
+- issue Fix float values type errors on GIS export to PNG, SVG, PDF
+- issue #16792 Fixed URL generation by removing un-needed & escaping for & char
+- issue #16777 Fixed Non-UTF8 Primary Key text value edit row
+- issue #16836 Fixed extra whitespaces in binary edit values causes a JS validation error message
+- issue #15566 Support RTL mode on the Designer
+- issue #16810 Fixed SQL query shown twice on drop column success
+- issue #16404 Fixed JS password generation fails after a new user creation failure
+- issue #16837 Fixed PHP error on execute query "create table event(...)"
+- issue Fixed a PHP warning that was occuring on wrong chmod on config files
+- issue Fixed a JS error on dismiss notification modal
+- issue #16793 Upgrade CodeMirror to 5.61.0 to fix a JS error on scroll in SQL query box
+- issue Fix password management for Percona Server lacking PASSWORD function
+- issue Fixed "data is undefined" JS error
+- issue Fixed 2 un-translated buttons on central columns edit
+- issue #16810 Fixed SQL query shown twice on central columns actions
+- issue #16771 Fixed PHP array export to work on very large datasets
+- issue #16847 Fixed JSON export nullable binary PHP error
+- issue #16847 Fixed JSON export text fields and binary data
+- issue #14773 Fix exporting a raw query is not working
+- issue #16734 Fixed memory limit reached, use SQL COUNT(*) instead of fetch and count results
+- issue #16723 Fixed option to perform ALTER ONLINE is not available on edit of an existing column
+- issue Add missing CSS style on "Filter" button on monitor results table header
+- issue Fixed non working "Filter" button on monitor results table header
+- issue #16420 Fixed single clicking on row starts editing even if GridEditing is set to double-click
+- issue #16854 Fixed "Undefined index: SERVER_SOFTWARE" on very minimal PHP FPM setups
+- issue #16863 Fixed replication setting up a replica is not working
+- issue #16843 Fixed vertical alignment in Metro and pmahomme themes on user accounts overview
+- issue Fixed "phpMyAdmin configuration storage" link on settings page warning
+- issue #16871 Fixed PHP and JS errors on normalization steps
+- issue Fixed CSS missing classes on normalization buttons
+- issue #16437 Fixed sticky top position when using smaller screen sizes
+- issue #16895 Fixed wrong table count on space separated numbers
+- issue #16882 Fixed table delete resets count to 0
+- issue #16892 Fixed current_timestamp() stringified on INSERT for date field
+- issue #16911 Fixed PHP 8.1 "Method mysqli::get_client_info() is deprecated"
+- issue Fix "array_fill(): Argument #2 ($count) must be of type int, string" for "$cfg['InsertRows']"
+- issue #14130 Created new messages for U2F errors
+- issue #16920 Fixed "Uncaught TypeError: PhpMyAdmin\Import::detectType()" on ODS import
+- issue #16926 Fixed ODS import warning: Undefined array key "ods_empty_rows"
+- issue #16888 Fixed JS error on renaming tables in saved Designer page
+- issue #16504 Fixed create view dialog is too big and won't scroll (on small screens)
+- issue #16931 Fixed php notice "Undefined index: utf8mb3" on MySQL 8.0.11+ servers with default utf8 server charset
+
+5.1.0 (2021-02-24)
+- issue #15350 Change Media (MIME) type references to Media type
+- issue #15377 Add a request router
+- issue Automatically focus input in the two-factor authentication window
+- issue #15509 Replace gender-specific pronouns with gender-neutral pronouns
+- issue #15491 Improve complexity of generated passwords
+- issue #14909 Add a configuration option to define the 1st day of week
+- issue #12726 Made user names clickable in user accounts overview
+- issue #15729 Improve virtuality dropdown for MariaDB > 10.1
+- issue #15312 Added an option to perform ALTER ONLINE (ALGORITHM=INPLACE) when editing a table structure
+- issue Added missing 'IF EXISTS' to 'DROP EVENT' when exporting databases
+- issue #15232 Improve the padding in query result tool links
+- issue #15064 Support exporting raw SQL queries
+- issue #15555 Added ip2long transformation
+- issue #15194 Fixed horizontal scroll on structure edit page
+- issue #14820 Move table hide buttons in navigation to avoid hiding a table by mistake
+- issue #14947 Use correct MySQL version if the version is 8.0 or above for documentation links
+- issue #15790 Use "MariaDB Documentation" instead of "MySQL Documentation" on a MariaDB server
+- issue #15880 Change "Show Query" link to a button
+- issue #13371 Automatically toggle the radio button to "Create a page and save it" on Designer
+- issue #12969 Tap and hold will not dismiss the error box anymore, you can now copy the error
+- issue #15582 Don't disable "Empty" table button after clicking it
+- issue #15662 Stay on the structure page after editing/adding/dropping indexes
+- issue #15663 show structure after adding a column
+- issue #16005 Remove symfony/yaml dependency
+- issue #16005 Improve performance of dependency injection system by removing yaml parsing
+- issue #15447 Disable phpMyAdmin storage database checkbox on databases list
+- issue #16001 Add autocomplete attributes on login form
+- issue #13519 Add "Preview SQL" option on Index dialog box when creating a new table
+- issue #15954 Fixed export maximal length of created query input is too small
+- issue Redesign the server status advisor page
+- issue #13124 Use same height for SQL query textarea and Columns select in SQL page
+- issue #16005 Add a new vendor constant "CACHE_DIR" that defaults to "libraries/cache/" and store routing cache into this folder
+- issue #16005 Warm-up the routing cache before building the release
+- issue #16005 Use --optimize-autoloader when installing composer vendors before building the release
+- issue #15992 Add back the table name to the printable version on "Structure" page
+- issue #14815 Allow simplifying exported view syntax to only "CREATE VIEW"
+- issue #15496 Add $cfg['CaptchaSiteVerifyURL'] for Google ReCaptcha siteVerifyUrl
+- issue #14772 Add the password_hash PHP function as an option when inserting data
+- issue #15136 Add a notice for Hex converter giving invalid results
+- issue #16139 Use a textarea for JSON columns
+- issue #16223 Make JSON input transformation editor less narrow
+- issue #14340 Add a button on Export Page to show the SQL Query
+- issue #16304 Add support for INET6 column type
+- issue #16337 Fix example insert/update query default values
+- issue #12961 Remove indexes from table relation
+- issue #13557 Use a full list of functions instead of a separated one on insert/edit page "Function" selector
+- issue #14795 Include routines in the export in a predictable order
+- issue #16227 Fixed autocomplete is not working in case the table name is quoted by "`" symbols
+- issue #15463 Force BINARY comparison when looking at privileges to avoid an SQL error on privileges tab
+- issue #16430 Fixed Windows error message uses trailing / instead of \
+- issue #16316 Added support for "SameSite=Strict" on cookies using configuration "$cfg['CookieSameSite']"
+- issue #16451 Fixed AWS RDS IAM authentication doesn't work because pma_password is truncated
+- issue #16451 Show an error message when the security limit is reached instead of silently trimming the password to avoid confusion
+- issue #15001 Add back Login Cookie Validity setting to the features form
+- issue #16457 Add config parameters to support third-party ReCaptcha v2 compatible APIs like hCaptcha
+- issue #13077 Moved tools section to left on large devices (Bootstrap xl)
+- issue #15711 Moved some buttons to left on large devices (Bootstrap xl)
+- issue #15584 Add $cfg['MysqlSslWarningSafeHosts'] to set the red text black when ssl is not used on a private network
+- issue #15652 Replace deprecated FOUND_ROWS() function call on "distinct values" feature
+- issue Export blobs as hex on JSON export
+- issue #16095 Fix leading space not shown in a CHAR column when browsing a table
+- issue Make procedures/functions SQL editor both side scrollable
+- issue #16407 Bump pragmarx/google2fa conflict to >8.0
+- issue #14953 Added a rename Button to use RENAME INDEX syntax of MySQL 5.7 (and MariaDB >= 10.5.2)
+- issue #16477 Fixed no Option to enter TABLE specific permissions when the database name contains an "_" (underscore)
+- issue #16498 Fixed empty text not appearing after deleting all Routines
+- issue #16467 Fixed a PHP notice "Trying to access array offset on value of type null" on Designer PDF export
+- issue #15658 Fixed saving UI displayed columns on a non database request fails
+- issue #16495 Fix drop tables checkbox is above the checkbox for foreign keys
+- issue #16485 Fix visual query builder missing "Build Query" button
+- issue #16565 Added 'IF EXISTS' to 'DROP EVENT' when updating events to avoid replication issues
+- issue Removed metro fonts that where Apache-2.0 files that are incompatible with GPL-2.0
+- issue #16464 Made the relation view default to the current database when creating relations
+- issue #16463 Fixed 'REFERENCES' privilege checkbox's title on new MySQL versions and on MariaDB
+- issue #16405 Added jest as a Unit Testing tool for our javascript code
+- issue #16252 Fixed the too small font size when editing rows (textareas)
+- issue #16585 Fixed BLOB to JPG transformation PHP errors
+- issue Made the console setup async to avoid blocking the page render
+- issue #16429 Use PHP 8.0 fixed version (commit) for TCPDF
+- issue #16005 Major performance improvements on browsing a lot of rows
+- issue #16595 Fixed editing columns having a `_` in their name in specific conditions
+- issue #16608 Fix "Sort by key" restore auto saved value
+- issue #16611 Fixed unable to add tables to rename aliases twice on Export
+- issue #16621 Fixed link HTML messed up in Advisor
+- issue #16622 Fixed Advisor formatting incorrect for long_query_time notice
+- issue #15389 Fixed reset current page indicator after deleting all rows to current page and not page 1
+- issue #15997 Fixed auto save query
+- issue #15997 Made auto saved query database or database+table independent
+- issue #16641 Fixed query generation that was allowing JSON to have a length
+- issue #15994 Fixed the selected value detection for "on update current_timestamp"
+- issue #16614 Fixed PHP 8.0 dataseek offset call to the MySQLI extension
+- issue #16662 Fixed Uncaught TypeError on "delete" button click of a database search results page
+- issue Fixed Undefined index: selected_usr when the user tried to delete no selected user
+- issue #16657 Fixed the QBE interface when the configuration storage is not enabled
+- issue #16479 Fix our Selenium test-suite
+- issue #16669 Fixed table search modal for BETWEEN
+- issue #16667 Fixed LIKE and TINYINT in search not working properly
+- issue #16424 Fixed numerical search in table and zoom
+- issue Improve the version handling (new Version class) and add a VERSION_SUFFIX for vendors
+- issue #14494 Fix uncaught TypeError when editing partitioning
+- issue #16525 Fix PHP 8.0 failing tests when comparing 0 to ''
+- issue #16429 Fixed PHP 8.0 errors on preg_replace and operand types
+- issue #16490 Fixed PHP 8.0 function libxml_disable_entity_loader() is deprecated
+- issue #16429 Fixed failing unit tests on PHP 8.0
+- issue #16609 Fixed Sql.rearrangeStickyColumns is not a function
+
+5.0.4 (2020-10-15)
+- issue #16245 Fix failed Zoom search clears existing values
+- issue Fixed a PHP error when reporting a particular JS error
+- issue #16326 Fixed latitude and longitude swap for geometries in edit mode
+- issue #16032 Fix CREATE TABLE not being tracked when auto tracking is enabled
+- issue #16397 Fix compatibility problems with older PHP versions (also issue #16399)
+- issue #16396 Fix broken two-factor authentication
+
+5.0.3 (2020-10-09)
+- issue #15983 Require twig ^2.9
+- issue Fix option to import files locally appearing as not available
+- issue #16048 Fix to allow NULL as a default bit value
+- issue #16062 Fix "htmlspecialchars() expects parameter 1 to be string, null given" on Export xml
+- issue #16078 Fix no charts in monitor when using a decimal separator ","
+- issue #16041 Fix IN(...) clause doesn't permit multiple values on "Search" page
+- issue #14411 Support double tap to edit on mobile
+- issue #16043 Fix php error "Use of undefined constant MYSQLI_TYPE_JSON" when using the mysqlnd extension
+- issue #14611 Fix fatal JS error on index creation after using Enter key to submit the form
+- issue #16012 Set "axis-order" to swap lon and lat on MySQL >= 8.1
+- issue #16104 Fixed overwriting a bookmarked query causes a PHP fatal error
+- issue Fix typo in a condition in the Sql class
+- issue #15996 Fix local setup doc links pointing to a wrong location
+- issue #16093 Fix error importing utf-8 with bom sql file
+- issue #16089 2FA UX enhancement: autofocus 2FA input
+- issue #16127 Fix table column description PHP error when ['DisableIS'] = true;
+- issue #16130 Fix local documentation links display when a PHP extension is missing
+- issue Fix some twig code deprecations for php 8
+- issue Fix ENUM and SET display when editing procedures and functions
+- issue Keep full query state on "auto refresh" process list
+- issue Keep columns order on "auto refresh" process list
+- issue Fixed editing a failed query from the error message
+- issue #16166 Fix the alter user privileges query to make it MySQL 8.0.11+ compatible
+- issue Fix copy table to another database when the nbr of DBs is > $cfg['MaxDbList']
+- issue #16157 Fix relations of tables having spaces or special chars not showing in the Designer
+- issue #16052 Fix a very rare JS error occuring on mousemove event
+- issue #16162 Make a foreign key link clickable in a new tab after the value was saved and replaced
+- issue #16163 Fixed a PHP notice "Undefined index: column_info" on views
+- issue #14478 Fix the data stream when exporting data in file mode
+- issue #16184 Fix templates/ directory not found error
+- issue #16184 Remove chdir logic to fix PHP fatal error "Uncaught TypeError: chdir()"
+- issue Support for Twig 3
+- issue Allow phpmyadmin/twig-i18n-extension ^3.0
+- issue #16201 Trim spaces for integer values in table search
+- issue #16076 Fixed cannot edit or export TIMESTAMP column with default CURRENT_TIMESTAMP in MySQL >= 8.0.13
+- issue #16226 Fix error 500 after copying a table
+- issue #16222 Fixed can't use the search page when the table name has special characters
+- issue #16248 Fix zoom search is not performing input validation on INT columns
+- issue #16248 Fix javascript error when typing in INT fields on zoom search page
+- issue Fix type errors when using saved searches
+- issue #16261 Fix missing headings on modals of "User Accounts -> Export"
+- issue #16146 Fixed sorting did not keep the selector of number of rows
+- issue #16194 Fixed SQL query does not appear in case of editing view where definer is not you on MySQL 8
+- issue #16255 Fix tinyint(1) shown as INT on Search page
+- issue #16256 Fix "Warning: error_reporting() has been disabled for security reasons" on php 7.x
+- issue #15367 Fix "Change or reconfigure primary server" link
+- issue #15367 Fix first replica links, start, stop, ignore links
+- issue #16058 Add "PMA_single_signon_HMAC_secret" for signon auths to make special links work and udate examples
+- issue #16269 Support ReCaptcha v2 checkbox width "$cfg['CaptchaMethod'] = 'checkbox';"
+- issue #14644 Use Doctum instead of Sami
+- issue #16086 Fix "Browse" headings shift when scrolling
+- issue #15328 Fix no message after import of zipped shapefile without php-zip
+- issue #14326 Fix PHP error when exporting without php-zip
+- issue #16318 Fix Profiling doesn't sum the number of calls
+- issue #16319 Fixed a Russian translation mistake on search results total text
+- issue #15634 Only use session_set_cookie_params once on PHP >= 7.3.0 versions for single signon auth
+- issue #14698 Fixed database named as 'New' (language variable) causes PHP fatal error
+- issue #16355 Make textareas both sides resizable
+- issue #16366 Fix column definition form not showing default value
+- issue #16342 Fixed multi-table query (db_multi_table_query.php) alias show the same alias for all columns
+- issue #15109 Fixed using ST_GeomFromText + GUI on insert throws an error
+- issue #16325 Fixed editing Geometry data throws error on using the GUI
+- issue [security] Fix XSS vulnerability with the transformation feature (PMASA-2020-5)
+- issue [security] Fix SQL injection vulnerability with search feature (PMASA-2020-6)
+
+5.0.2 (2020-03-20)
+- issue Fixed deprecation warning "implode(): Passing glue string after array is deprecated." function on export page
+- issue #15767 Fixed can not copy user account since 5.0 - "error #1133"
+- issue #15772 Fixed error code 500 during pagination of the tables in a database
+- issue #16009 Fix php error "Trying to access array offset on value of type null" on column distinct values feature
+- issue #15741 Fix fatal javascript error on clicking "Pick from Central Columns"
+- issue #15773 Fixed a view named "views" adds an expand button
+- issue #15432 Fixed names of the pages in the designer should be unique
+- issue #14310 Fixed column selector "See more" removes "Preview SQL" and "Save" area
+- issue Fixed wrong jQuery function call in table search page
+- issue #15761 Fix uncaught TypeError when using "$cfg['ServerDefault'] = 0;"
+- issue #15780 Fixed unexpected UI of action links (text only mode)
+- issue #15674 Replace twig/extensions with phpmyadmin/twig-i18n-extension
+- issue #15799 Change location of profiling state documentation to fix column ordering
+- issue #15720 Fix designer adding all available tables to a designer page after adding a new relationship
+- issue #15791 Replace facebook/webdriver by php-webdriver/webdriver
+- issue #15802 Removed SET AUTOCOMMIT=0 from SQL export
+- issue #15818 Fix table borders missing on theme original since 5.0.0
+- issue #13864 Fix ENUM's radiobuttons reset on "Continue insertion with" changes
+- issue #15811 Fixed browse foreign values doesn't show a modal with grid edit
+- issue #15817 Fix "new table" layout issue on original theme
+- issue #15798 Fixed not needed prompt before abandoning changes on SQL tab after only changing a checkbox
+- issue #15833 Fix php TypeError when submitting unchanged data
+- issue Fix php notice "Trying to access array offset on value of type bool" on Designer
+- issue #13326 Added integer validations on search page
+- issue #15200 Fixed server-side HTTPS detection misses support for Forwarded HTTP Extension (RFC 7239)
+- issue #15831 Fixed DB names starting with "b" being cut off in , User account page
+- issue #15850 Fixed display content from "information_schema.PROCESSLIST"
+- issue #15836 Fixed "has no type" error on export and import pages for "Chinese traditional" users
+- issue #15863 Fixed designer move menu icon not changing directions and tables menu list resize button
+- issue #15854 Fixed black borders for full screen mode on Designer
+- issue #15899 Fix "Uncaught TypeError: mb_strtoupper()" on the relational view of a view
+- issue Fixed some php uncaught errors and notices on user missing extension
+- issue #15926 Fixed PhpMyAdmin\Core::getRealSize('8000M') returns a float instead of an int
+- issue #15410 Fixed auto increment reset issue where the last value of AI was saved an could destroy the "good" value
+- issue #15187 Fixed editing a row and using 'insert as new row' uses primary key 0 instead of NULL
+- issue #15877 Fixed php error "preg_match() expects parameter 2 to be string, null given" on some specific tables
+- issue #15795 Fix broken link on "MySQL said" error message
+- issue #15781 Fix illegal string offset error on structure page of 'information_schema' database
+- issue #15745 Fix version 5.0.1 suggests 4.9.4 as latest stable version
+- issue #15958 Fix uncaught TypeError when sorting database tables by size or by rows
+- issue #15830 Fix strftime issue on windows for Japanese users on "Structure" tab
+- issue Windows testsuite fixes
+- issue #15879 Added missing CSS class on "simulate query" button
+- issue #15401 Fixed php notice "Undefined index HMAC_secret" for users upgrading phpMyAdmin without a log-out
+- issue #15810 Fixed unexpected heading on add a new procedure, trigger, function, routine modals
+- issue #15970 Removed wrong html a tag on "Replication status" header
+- issue Add missing css classes on some buttons
+- issue #15937 Make modals draggability/expand (down) work after a screen zoom change
+- issue Fix php notice "Undefined index: on_delete" while creating a foreign key
+- issue #15876 Fixed select "IN (...)" is a simple select instead of a multiple select
+- issue Fix maxlength for User and Host on replication add user form
+- issue #15282 Fixed MySQL 8.0 password syntax error when creating a replication user
+- issue #15986 Fixed php fatal error "Uncaught TypeError: array_flip() expects parameter 1 to be array, null given"
+- issue Fixed php fatal error "Uncaught TypeError: htmlspecialchars() expects parameter 1 to be string, int given"
+- issue Support phpunit 9.0
+- issue Fix error in NavigationTree where $key might be sent as an int instead of a str to urlencode
+- issue #16022 Fix uncaught TypeError on browse foreigners
+- issue Fix failure if relational display field value is NULL - "Display column for relationships"
+- issue #16033 Remove vendor bin files from non source version of phpMyAdmin
+- issue #15898 [security] Fix escape tbl_storage_engine argument used on tbl_create.php
+- issue #15224 Don't fire keyboard shortcuts while SQL query area is focused (on a mobile for example)
+- issue [security] Fix SQL injection with certain usernames (PMASA-2020-2)
+- issue [security] Fix SQL injection in particular search situations (PMASA-2020-3)
+- issue [security] Fix SQL injection and XSS flaw (PMASA-2020-4)
+- issue Deprecate "options" for the external transformation; options must now be hard-coded along with the program name directly in the file.
+
+5.0.1 (2020-01-07)
+- issue #15719 Fixed error 500 when browsing a table when $cfg['LimitChars'] used a string and not an int value
+- issue #14936 Fixed display NULL on numeric fields has showing empty string since 5.0.0
+- issue #15722 Fix get Database structure fails with PHP error on replicated server
+- issue #15723 Fix can't browse certain tables since 5.0.0 update
+- issue Prevent line wrap in DB structure size column
+- issue Remove extra line break from downloaded blob content
+- issue #15725 Fixed error 500 when exporting - set time limit when $cfg['ExecTimeLimit'] used a string and not an int value
+- issue #15726 Fixed double delete icons on enum editor
+- issue #15717 Fixed warning popup not dissapearing on table stucture when using actions without any column selection
+- issue #15693 Fixed focus of active tab is lost by clicking refresh option on browse tab
+- issue #15734 Fix Uncaught TypeError: http_build_query() in setup
+- issue Fix double slash in path when $cfg['TempDir'] has a trailing slash
+- issue #14875 Fix shp file import tests where failing when php dbase extension was enabled
+- issue #14299 Fix JS error "PMA_makegrid is not defined" when clicking on a table from the "Insert" tab opened in a new tab
+- issue #15351 Fixed 2FA setting removed each time the user edits another configuration setting
+- issue [security] Fix SQL injection vulnerability on the user accounts page (PMASA-2020-1)
+
+5.0.0 (2019-12-26)
+- issue #13896 Drop support for PHP 5.5, PHP 5.6, PHP 7.0 and HHVM
+- issue #14007 Enable columns names by default for CSV exports
+- issue #13919 Remove font size feature
+- issue #12373 Add Metro theme
+- issue #14155 Add move columns preview SQL button
+- issue #14296 Enable strict mode in PHP files
+- issue #13627 Increase field width for editing varchar fields
+- issue #12603 Show warning for users with the default values for controluser and controlpass
+- issue #14589 Fix rendering of column comments in Safari, improve display in all browsers
+- issue #14330 New features for csv import plugin
+- issue #14417 Automatically add index while editing an existing row and setting auto increment
+- issue #13057 Add export option to drop user security definers from views
+- issue #14404 Drop view and or replace added to exporting view
+- issue #14594 Database "Search" selects all tables by default
+- issue #12158 Auto expand the single database
+- issue #13067 Inconsistency with submit buttons
+- issue #14683 Improper message in Show Hidden Navigation Tree Items
+- issue #14695 Remove unlabeled default collation from the bottom of the database list; this information is available elsewhere
+- issue #14677 Security confirm() before running UPDATE statement without WHERE condition
+- issue #13023 Show errors at the bottom of the page and add copy query button for errors in processing sql queries
+- issue #14633 Use Sass instead of PHP to compile CSS
+- issue #14765 Add initial support for Bootstrap 4
+- issue #14829 Change table column comment field from input to textarea
+- issue #14725 Console: ctrl+l clear line and ctrl+u clear console
+- issue #14837 Use charset 'windows-1252' when format is MS Excel
+- issue #15030 Move 'More settings' link from 'Appearance settings' to 'General settings'
+- issue #15029 Remove the redundant 'i' help/tool tip in page settings "Query History Length" area
+- issue #13424 Importing CSV now uses file name as the table name instead of 'TABLE #'
+- issue #14926 Add an Edit link for each view in tables list
+- issue #14890 Display column details in navigation bar
+- issue #14977 Add title for group in navigation bar
+- issue #14927 Show InnoDB table overhead (free space)
+- issue #15072 Add 'Close' button to the Monitor Instructions modal
+- issue #15174 Improved filter method in server variables page
+- issue #15266 Add an external dependency injection system
+- issue #15350 Change MIME type references to Media (MIME) type
+- issue Fixed url.php crashing because it's not loading the DatabaseInterface service
+- issue #15540 Fixed uncaught TypeError: htmlspecialchars() in NavigationTree
+- issue Fix twig deprecation notices for php 8.0
+- issue #15435 Fix ReCAPTCHA couldn't find user-provided function: Functions.recaptchaCallback
+- issue #15623 Fix width of picker modal and remove date picker for int fields
+- issue #14732 Fixed can't rename primary key with auto increment
+- issue #15677 Fix show process-list triggers a php exception
+- issue #15697 Fix uncaught php error: "Call to a member function get() on null" in db_export.php when exporting a table from the list
+
+4.9.9 (not yet released)
+- issue #17305 Fix syntax error for PHP 5
+- issue #17307 Fix hide_connection_errors being undefined when a controluser is set
+
+4.9.8 (2022-01-20)
+- issue #14321 Display a correct error page when "$cfg['Servers'][$i]['SignonURL']" is empty for auth_type=signon
+- issue #14321 [security] Remove leaked HTML on signon page redirect before login for auth_type=signon
+- issue [security] Add configuration directive $cfg['Servers'][$i]['hide_connection_errors'] to allow hiding host names and other error details when login fails
+- issue [security] Add configuration directive $cfg['URLQueryEncryption'] to allow encrypting senstive information in the URL
+- issue [security] Fix a scenario where an authenticated user can disable two factor authentication
+
+4.9.7 (2020-10-15)
+- issue #16397 Fix compatibility problems with older PHP versions (also issue #16399)
+- issue #16396 Fix broken two-factor authentication
+
+4.9.6 (2020-10-09)
+- issue [security] Fix XSS vulnerability with the transformation feature (PMASA-2020-5)
+- issue [security] Fix SQL injection vulnerability with search feature (PMASA-2020-6)
+
+4.9.5 (2020-03-20)
+- issue [security] Fix SQL injection with certain usernames (PMASA-2020-2)
+- issue [security] Fix SQL injection in particular search situations (PMASA-2020-3)
+- issue [security] Fix SQL injection and XSS flaw (PMASA-2020-4)
+- issue Deprecate "options" for the external transformation; options must now be hard-coded along with the program name directly in the file.
+
+4.9.4 (2020-01-07)
+- issue #15724 Fix 2FA was disabled by a bug
+- issue [security] Fix SQL injection vulnerability on the user accounts page (PMASA-2020-1)
+
+4.9.3 (2019-12-26)
+- issue #15570 Fix page contents go underneath of floating menubar in some cases
+- issue #15591 Fix php notice 'Undefined index: foreign_keys_data' on relations view when the user has column access
+- issue #15592 Fix php warning "error_reporting() has been disabled for security reasons"
+- issue #15434 Fix middle click on table sort column name shows a blank page
+- issue Fix php notice "Undefined index table_create_time" when setting displayed columns on results of a view
+- issue #15571 Fix fatal error when trying to edit row with row checked and button under the table
+- issue #15633 Fix designer set display field broken for php 5.x versions
+- issue #15621 Support CloudFront-Forwarded-Proto header for Amazon CloudFront proxy
+- issue Fix php 8.0 php notices - Undefined index on login page
+- issue #15640 Fix php 7.4 error when trying to access array offset on value of type null on table browse
+- issue #15641 Fix replication actions where broken (start slave, stop slave, reset, ...)
+- issue #15608 Fix DisableIS is broken when with controluser configured (database list broken)
+- issue #15614 Fix undefined offset on index page for MySQL 5.7.8 (server charset)
+- issue #15692 Fix JavaScript error when user has not enough privilege to view query statistics.
+- issue #14248 Fixed date selection in search menu missing higher Z-index value
+- issue Fix Uncaught php TypeError on php 8.0 when adding a column to table create form
+- issue #15682 Fix calendar not taking current time as default value
+- issue #15636 Fix php error trying to access array offset on value o type null on replication GUI
+- issue #15695 Fix input field for the time in datetime picker is disabled
+
+4.9.2 (2019-11-21)
+- issue #14184 Change the cookie name from phpMyAdmin to phpMyAdmin_https for HTTPS, fixes many "Failed to set session cookie" errors
+- issue #15304 Fix ssl_use php error
+- issue #14804 Fix undefined index: ssl_* variables
+- issue #14245 Fix mysql 8.0.3 and above fails on advisor
+- issue #15499 Fix unparenthesized php deprecation
+- issue #15482 Fix URL encoding plus sign (+) in the table or DB name when configuring foreign keys
+- issue #14898 Fixed bottom table in list in left panel blocked by horizontal scroll bar
+- issue #15161 Fix text area overflows its parent element on "Query" page
+- issue #15511 Fixed exporting users after a delete will delete all selected users on "Users" page
+- issue #14598 Fixed checking referencial integrity on "Operations" page
+- issue #14433 Fix "You do not have privileges to manipulate with the users!" on root superadmin
+- issue #15391 Fix GIS polygon of a geometry field is not drawn on "GIS visualization"
+- issue #15311 Fix adjust privileges on copy database fails with MariaDB
+- issue #15477 Fix display referential integrity check for InnoDB
+- issue #15236 Support phpunit 8 in our test suite to help packaging phpMyAdmin on Debian
+- issue #15522 Fix missing image error fills logs, removed ic_b_info icon from icon list
+- issue #15537 Fixed some issues with the sort by key selectors
+- issue #15546 Fix operators precedence in DatabaseInterface class
+- issue #14906 Test test suite on 32-bit systems
+- issue Fix Long2IP transformation issue with PHP 7.1
+- issue #14951 Fix moving columns with DEFAULT NULL doesn't work on MariaDB 10.2+
+- issue #14951 Fix moving columns with INT AND DEFAULT CURRENT_TIMESTAMP doesn't work on MariaDB
+- issue #12241 Fixed table alias is removed when exporting a query
+- issue #15316 Fixed cross join clause is removed on export
+- issue #14809 Fix error "is_uploaded_file() expects parameter 1 to be string" when inserting blobs from files
+- issue #15127 Fix white square when refreshing designer or browsing other pages
+- issue #13912 Detect when phpMyAdmin storage tables are not accessible, help users browse corrupt DBs
+- issue #15465 Display profiling when query outputs no rows
+- issue Fix setting and removing display field on Designer
+- issue Added a warning when trying to set a display field on Designer and configuration storage is not setup
+- issue #15327 Fix shift-click in Export misses a checkbox
+- issue [security] Fix improperly sanitized data when showing the Git branch (thanks to Ali Hubail for this report)
+- issue [security] Fix security weaknesses in Designer feature,including a flaw where an attacker could trigger an SQL injection attack (PMASA-2019-5)
+
+4.9.1 (2019-09-20)
+- issue #15313 Added support for Twig 2
+- issue #15315 Fix cannot edit or export column with default CURRENT_TIMESTAMP in MySQL >= 8.0.13
+- issue Fix a TypeError in Import class with PHP 8
+- issue #14270 Fix Middle-click on foreign key link broken
+- issue #14363 Fix broken relational links in tables
+- issue #14987 Fix weird error for empty collation
+- issue #15334 Fix export of GIS visualisation not working (PNG, PDF, SVG)
+- issue #14918 Use hex for the phpMyAdmin session token
+- issue Added GB18030 Chinese collations description
+- issue Added Russian, Swedish, Slovak and Chinese UCA 9.0.0 collations description
+- issue Added description for the _ks (kana-sensitive) collation suffix
+- issue Added description for the _nopad (NO PAD) collation suffix
+- issue #15404 Remove array/string curly braces access
+- issue #15427 Fixed "FilterLanguages" option does not work (configuration)
+- issue #15202 Fixed creating user with single quote in password results in no password user
+- issue #14950 Fixed left database overview "add column" triggers error
+- issue #15363 Fix remove unexpected quotes on text fields (structure and insert)
+- issue Fix NULL wrongly checked on field change
+- issue #15388 Fix allow to rollback an empty statement
+- issue #14291 Fixed incorrect linkage from one table's value to another table
+- issue #15446 Fix tables added from other databases are not collapsing in the designer section
+- issue #14945 Fix designer page save fails if dB name contains period
+- issue Display an error when trying to import in designer a table that's already imported
+- issue Fix many bugs when adding new tables to designer
+- issue Update CodeMirror to v5.48.4
+- issue Update jQuery Migrate to v3.1.0
+- issue Update jQuery Validation to v1.19.1
+- issue Update jQuery to v3.4.1
+- issue Update js-cookie to v2.2.1
+- issue Remove fieldset closing tag when setting global privileges
+- issue #15425 Fix backslash in column name resulting an error in editing
+- issue #15380 Fix Status - Advisor error
+- issue #15439 Fix designer page status not updated when added a new table from another database
+- issue #15440 Fix page number is not being updated in the URL after saving a designer's page
+- issue Fix reloading a designer's page
+- issue Fix designer full screen mode button and text stuck when exiting full-screen mode
+- issue Reduced possibility of causing heavy server traffic between the database and web servers
+- issue Fix a situation where a server could be deleted while an administator is using the setup script
+
+4.9.0.1 (2019-06-04)
+- issue #14478 phpMyAdmin no longer streams the export data
+- issue #14514 Tables with SYSTEM VERSIONING show up as views instead of tables
+- issue #14515 Values cannot be edited in SYSTEM VERSIONING tables with INVISIBLE timestamps
+- issue Fix header icon on server plugins page
+- issue #14298 Fixed error 500 on MultiTableQuery page when a empty query is passed
+- issue #14402 Fixed fatal javascript error while adding index to a new column
+- issue #14896 Fixed issue with plus/minus icon when refreshing an expanded database
+- issue #14922 Fixed json encode error in export
+- issue #13975 Fixed missing query time in German (fix decimal number format issue)
+- issue #14503 Fixed JavaScript events not activating on input (sql bookmark issue)
+- issue #14898 Fixed Bottom table is blocked in database list (left panel)
+- issue #14425 Fixed Null Checkbox automatically unmarked
+- issue #14870 Display correct date and time in Zip files
+- issue #14763 Fixed the loading symbol not appearing when refreshing the navigation
+- issue #14607 Count rows only if needed
+- issue #14832 Show Designer combo boxes when adding a constraint
+- issue #14948 Fix change password is not showing password strength difference at the second attempt
+- issue #14868 Fix edit view
+- issue #14943 Fixed loading Forever when creating new view without filling any field
+- issue #14843 Fix Bookmark::get() id matching SQL
+- issue #14734 Fixed invalid default value for bit field
+- issue #14311 Fixed undefined index in setup script
+- issue #14991 Fixed TypeError in GIS editor
+- issue Fixed GIS data editor for multi server setup
+- issue #14312 Fixed type error in setup script when adding new server
+- issue #14053 Fix missed padding on query results
+- issue #14826 Fixed javascript error PMA_messages is not defined
+- issue Show error message if config-set fails and not "loading..." forever
+- issue #14359 Prevent multiple error modals, and error-report request spamming from script
+- issue Fixed error reporting javascript errors on multi server setup
+- issue Fixed wrong property name on TableStructureController
+- issue #14811 Fix SHOW FULL TABLES FROM when a table is locked
+- issue #14916 Fix bug when creating or editing views
+- issue #14931 Fixed php error when using a query like SELECT 1 INTO @a; SELECT @a; in inline query edit
+- issue #15074 Make the server logo visible on theme "original"
+- issue #15077 Fixed incorrect page numbers
+- issue #14205 Fixed "No tables found in database" when you delete all tables from last page
+- issue #14957 Virtuality is not selected when editing generated column (added virtuality(stored) option for mariadb)
+- issue #14853 Insert page should not allow entering things into virtual columns
+- issue #15110 Fixed TypeError e.preventDefaulut is not a function
+- issue #15115 Improved label in Settings export, clarifying that it's a JSON file
+- issue #14816 Fixed [designer] Cannot read property 'style' of null
+- issue Fixed [designer] Add new tables with database/table list modal
+- issue Fixed query format on multi server setup
+- issue Fixed remove partitioning on multi server setup
+- issue Fixed normalization
+- issue Fixed 'RESET SLAVE' button on replication slave
+- issue Fixed sending a php error report on multi server setup
+- issue Fixed downloading of monitor parameters for IE 11, Edge, Chrome and others
+- issue #15141 Fixed php notice Undefined index: designer_settings
+- issue #12729 Fixed sticky table header over dropdown menu
+- issue #15140 Fixed edit link does not work on failed insert
+- issue #14334 Fixed export table structure shows rows fields
+- issue #15010 Fixed empty SQL preview modal on tbl_relation
+- issue #14673 Fixed innodb & MySQL 8: DYNAMIC & COMPRESSED ROW_FORMAT missing
+- issue Fixed empty success message when adding a new INDEX from left panel
+- issue #15150 Fixed generate password hidden on second open of change password modal
+- issue Fixed import XML data with leading zeros
+- issue #15036 Fixed missing input fields checks for MaxSizeForInputField
+- issue #15119 Fixed uninterpreted HTML on Settings->Export page
+- issue #15159 Fixed missing query time and database in console
+- issue #13713 Fixed column comments in the floating table header
+- issue #15177 Fixed label alignment on login page
+- issue #15210 Fixed a typo in the english name of the Albanian language
+- issue Fixed issue when resetting charset in import.php
+- issue #14460 Fixed forms where submitted multiple times on CTRL + ENTER
+- issue #15038 Fixed console height was allowing a negative values
+- issue #15219 Fixed 'No Password' option does not switch automatically to 'Use Text Field' in add user account
+- issue Fixed importing the exported config on Server status monitor page
+- issue #15228 Fixed php notice 'Undefined index: foreign_keys_data' on designer when the user has column access
+- issue #12900 Fixed designer page saving gives error when configuration storage is not set up
+- issue #15229 Fixed php notice, added support for 'DELETE HISTORY' table privilege (MariaDB >= 10.3.4)
+- issue #14527 Fixed import settings function not working
+- issue #14908 Fixed uninterpreted HTML on Settings->Import (missing data error descriptions)
+- issue #14800 Fixed status->Processes doesn't show full query process list page
+- issue #14833 Fixed sort by Time not working in process list page
+- issue #14982 Fixed setting "null" keep an "enum" value
+- issue #14401 Fixed insert rows keypress Enter behavior
+- issue #15146 Fixed error reports can not be sent because they are too large
+- issue #15205 Fixed useless backquotes on sql preview modal when deleting an index
+- issue #13178 Fixed issues with uppercase table and database names (lower_case_table_names=1)
+- issue #14383 Fixed warning when browsing certain tables (GIS data)
+- issue #12865 Fixed MySQL 8.0.0 issues with GIS display
+- issue #15059 Fixed "Server charset" in "Database server" tab showing wrong information
+- issue #14614 Fixed mysql error "#2014 - Commands out of sync; you can't run this command now" on sql query
+- issue #15238 Fixed phpMyAdmin 4.8.5 doesn't show privileges of procedures (raw html displayed instead)
+- issue #13726 Fixed can not copy user on Percona Server 5.7
+- issue #15239 Fixed javascript error while fetching latest version info and switching pages
+- issue #14301 Fixed javascript error when editing a JSON data type column
+- issue #15240 Fixed apply a Settings form with errors shows a JSON response after using return back
+- issue #15043 Fixed multiple errors printing on Settings page
+- issue #15037 Fixed unexpected behavior of reset button on Settings
+- issue #15157 Fixed 'Settings' tab not marked as active when browsing 2FA settings
+- issue #14934 Fixed all fields readonly on Edit/Insert screens
+- issue #14588 Fixed export of geometry objects, GIS objects are now exported as hex
+- issue #14412 Better handling of errors with Signon authentication type
+- issue Added support for AUTO_INCREMENT when using ROCKSDB, on Operations page
+- issue #15276 Fixed partitioning is missing in Structure page UI (MySQL 8.0)
+- issue #14252 Fixed DisableIS and database tree list (new database missing when refreshing the list)
+- issue #14621 Removed "Propose table structure" on MySQL 8.0
+- issue Fixed editing of virtual columns on PerconaDB
+- issue #13854 Fixed column options are ignored for GENERATED/VIRTUAL/STORED columns
+- issue #15262 Fixed incorrect display of charset column (raw html)
+- issue Added explicit parentheses in nested ternary operators
+- issue #15287 Fix auto_increment field is too small
+- issue #15283 Fix tries to change collation on views when changing collation on all tables/fields
+- issue Fixed empty PMA_gotoWhitelist JavaScript array
+- issue #15079 Fixed responsive behaviour of instruction dialog box
+- issue #10846 Fixed javascript error when renaming a table
+- issue Updated sql-parser to version 4.3.2
+- issue [security] SQL injection in Designer (PMASA-2019-3)
+- issue [security] CSRF attack on 'cookie' login form (PMASA-2019-4)
+
+4.8.5 (2019-01-25)
+- issue Developer debug data was saved to the PHP error log
+- issue #14217 Fix issue when adding user on MySQL 8.0.11
+- issue #13788 Exporting a view structure based on another view with a sub-query throws no database selected error
+- issue #14635 Fix PHP error in GitRevision, error in processing request, error code 200
+- issue #14787 Cannot execute stored procedure
+- issue Add Burmese language
+- issue #14794 Not responding to click, frozen interface, plugin Text_Plain_Sql error
+- issue #14786 Table level Operations functions missing
+- issue #14791 PHP warning, db_export.php#L91 urldecode()
+- issue #14775 Export to SQL format not available for tables
+- issue #14782 Error message shown instead of two-factor QR code when adding 2fa to a user
+- issue [security] Arbitrary file read/delete relating to MySQL LOAD DATA LOCAL INFILE and an evil server instance (PMASA-2019-1)
+- issue [security] SQL injection in Designer (PMASA-2019-2)
+
+ --- Older ChangeLogs can be found on our project website ---
+ https://www.phpmyadmin.net/old-stuff/ChangeLogs/
+
+# vim: et ts=4 sw=4 sts=4
+# vim: ft=changelog fenc=utf-8
+# vim: fde=getline(v\:lnum-1)=~'^\\s*$'&&getline(v\:lnum)=~'\\S'?'>1'\:1&&v\:lnum>4&&getline(v\:lnum)!~'^#'
+# vim: fdn=1 fdm=expr
diff --git a/piedmid/LICENSE b/piedmid/LICENSE
new file mode 100644
index 0000000..d159169
--- /dev/null
+++ b/piedmid/LICENSE
@@ -0,0 +1,339 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ , 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/piedmid/README b/piedmid/README
new file mode 100644
index 0000000..c0a2364
--- /dev/null
+++ b/piedmid/README
@@ -0,0 +1,52 @@
+phpMyAdmin - Readme
+===================
+
+Version 5.2.0
+
+A web interface for MySQL and MariaDB.
+
+https://www.phpmyadmin.net/
+
+Summary
+-------
+
+phpMyAdmin is intended to handle the administration of MySQL over the web.
+For a summary of features, list of requirements, and installation instructions,
+please see the documentation in the ./doc/ folder or at https://docs.phpmyadmin.net/
+
+Copyright
+---------
+
+Copyright © 1998 onwards -- the phpMyAdmin team
+
+Certain libraries are copyrighted by their respective authors;
+see the full copyright list for details.
+
+For full copyright information, please see ./doc/copyright.rst
+
+License
+-------
+
+This program is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License version 2, as published by the
+Free Software Foundation.
+
+This program is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see .
+
+Licensing of current contributions
+----------------------------------
+
+Beginning on 2013-12-01, new contributions to this codebase are all licensed
+under terms compatible with GPLv2-or-later. phpMyAdmin is currently
+transitioning older code to GPLv2-or-later, but work is not yet complete.
+
+Enjoy!
+------
+
+The phpMyAdmin team
diff --git a/piedmid/RELEASE-DATE-5.2.0 b/piedmid/RELEASE-DATE-5.2.0
new file mode 100644
index 0000000..7c5eb4c
--- /dev/null
+++ b/piedmid/RELEASE-DATE-5.2.0
@@ -0,0 +1 @@
+Wed May 11 04:20:05 UTC 2022
diff --git a/piedmid/babel.config.json b/piedmid/babel.config.json
new file mode 100644
index 0000000..d6e9390
--- /dev/null
+++ b/piedmid/babel.config.json
@@ -0,0 +1,4 @@
+{
+ "presets": ["@babel/preset-env"],
+ "sourceType": "script"
+}
diff --git a/piedmid/composer.json b/piedmid/composer.json
new file mode 100644
index 0000000..4726ad0
--- /dev/null
+++ b/piedmid/composer.json
@@ -0,0 +1,139 @@
+{
+ "name": "phpmyadmin/phpmyadmin",
+ "type": "project",
+ "description": "A web interface for MySQL and MariaDB",
+ "keywords": ["phpmyadmin","mysql","web"],
+ "homepage": "https://www.phpmyadmin.net/",
+ "support": {
+ "forum": "https://www.phpmyadmin.net/support/",
+ "issues": "https://github.com/phpmyadmin/phpmyadmin/issues",
+ "wiki": "https://wiki.phpmyadmin.net/",
+ "docs": "https://docs.phpmyadmin.net/",
+ "source": "https://github.com/phpmyadmin/phpmyadmin"
+ },
+ "license": "GPL-2.0-only",
+ "authors": [
+ {
+ "name": "The phpMyAdmin Team",
+ "email": "developers@phpmyadmin.net",
+ "homepage": "https://www.phpmyadmin.net/team/"
+ }
+ ],
+ "non-feature-branches": ["RELEASE_.*"],
+ "autoload": {
+ "psr-4": {
+ "PhpMyAdmin\\": "libraries/classes"
+ },
+ "files": ["vendor/phpmyadmin/motranslator/src/functions.php"]
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "PhpMyAdmin\\Tests\\": "test/classes",
+ "PhpMyAdmin\\Tests\\Selenium\\": "test/selenium/"
+ }
+ },
+ "repositories": [
+ {
+ "type": "composer",
+ "url": "https://www.phpmyadmin.net"
+ }
+ ],
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "ext-hash": "*",
+ "ext-iconv": "*",
+ "ext-json": "*",
+ "ext-mysqli": "*",
+ "ext-openssl": "*",
+ "ext-pcre": "*",
+ "ext-xml": "*",
+ "composer/ca-bundle": "^1.2",
+ "google/recaptcha": "^1.1",
+ "nikic/fast-route": "^1.3",
+ "paragonie/sodium_compat": "^1.17",
+ "phpmyadmin/motranslator": "^5.0",
+ "phpmyadmin/shapefile": "^3.0.1",
+ "phpmyadmin/sql-parser": "^5.5",
+ "phpmyadmin/twig-i18n-extension": "^4.0",
+ "psr/http-factory": "^1.0",
+ "psr/http-message": "^1.0",
+ "slim/psr7": "^1.4",
+ "symfony/config": "^5.2.3",
+ "symfony/dependency-injection": "^5.2.3",
+ "symfony/expression-language": "^5.2.3",
+ "symfony/polyfill-ctype": "^1.17.0",
+ "symfony/polyfill-mbstring": "^1.17.0",
+ "symfony/polyfill-php80": "^1.16",
+ "twig/twig": "^3.3.5",
+ "webmozart/assert": "^1.10",
+ "williamdes/mariadb-mysql-kbs": "^1.2"
+ },
+ "conflict": {
+ "bacon/bacon-qr-code": "<2.0",
+ "pragmarx/google2fa-qrcode": "<2.1",
+ "tecnickcom/tcpdf": "<6.4.4"
+ },
+ "suggest": {
+ "ext-curl": "Updates checking",
+ "ext-opcache": "Better performance",
+ "ext-zlib": "For gz import and export",
+ "ext-bz2": "For bzip2 import and export",
+ "ext-zip": "For zip import and export",
+ "ext-gd2": "For image transformations",
+ "ext-mbstring": "For best performance",
+ "ext-sodium": "Better encryption performance",
+ "tecnickcom/tcpdf": "For PDF support",
+ "pragmarx/google2fa-qrcode": "^2.1 - For 2FA authentication",
+ "bacon/bacon-qr-code": "^2.0 - For 2FA authentication",
+ "code-lts/u2f-php-server": "For FIDO U2F authentication"
+ },
+ "require-dev": {
+ "bacon/bacon-qr-code": "^2.0",
+ "code-lts/u2f-php-server": "^1.2",
+ "php-webdriver/webdriver": "^1.11",
+ "phpmyadmin/coding-standard": "^3.0.0",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.4.8",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpstan/phpstan-webmozart-assert": "^1.0",
+ "phpunit/phpunit": "^8.5 || ^9.5",
+ "pragmarx/google2fa-qrcode": "^2.1",
+ "psalm/plugin-phpunit": "^0.16.1",
+ "roave/security-advisories": "dev-latest",
+ "symfony/console": "^5.2.3",
+ "tecnickcom/tcpdf": "^6.4.4",
+ "vimeo/psalm": "^4.22"
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.2.x-dev"
+ }
+ },
+ "scripts": {
+ "phpcbf": "@php phpcbf",
+ "phpcs": "@php phpcs",
+ "phpstan": "@php phpstan analyse",
+ "psalm": "@php psalm --no-diff",
+ "phpunit": "@php phpunit --color=always",
+ "test": [
+ "@phpcs",
+ "@phpstan",
+ "@psalm",
+ "@phpunit"
+ ],
+ "update:baselines": [
+ "@php phpstan analyse --generate-baseline",
+ "@php psalm --set-baseline=psalm-baseline.xml"
+ ],
+ "twig-lint": "@php scripts/console lint:twig --ansi --show-deprecations"
+ },
+ "config":{
+ "sort-packages": true,
+ "discard-changes": true,
+ "allow-plugins": {
+ "dealerdirect/phpcodesniffer-composer-installer": true,
+ "phpstan/extension-installer": true,
+ "composer/package-versions-deprecated": true
+ }
+ }
+}
diff --git a/piedmid/composer.lock b/piedmid/composer.lock
new file mode 100644
index 0000000..319f076
--- /dev/null
+++ b/piedmid/composer.lock
@@ -0,0 +1,6868 @@
+{
+ "_readme": [
+ "This file locks the dependencies of your project to a known state",
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
+ "This file is @generated automatically"
+ ],
+ "content-hash": "45d3b2604e9ba52357ab66d3234afc76",
+ "packages": [
+ {
+ "name": "bacon/bacon-qr-code",
+ "version": "2.0.7",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Bacon/BaconQrCode.git",
+ "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
+ "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
+ "shasum": ""
+ },
+ "require": {
+ "dasprid/enum": "^1.0.3",
+ "ext-iconv": "*",
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "phly/keep-a-changelog": "^2.1",
+ "phpunit/phpunit": "^7 | ^8 | ^9",
+ "spatie/phpunit-snapshot-assertions": "^4.2.9",
+ "squizlabs/php_codesniffer": "^3.4"
+ },
+ "suggest": {
+ "ext-imagick": "to generate QR code images"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "BaconQrCode\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-2-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ben Scholzen 'DASPRiD'",
+ "email": "mail@dasprids.de",
+ "homepage": "https://dasprids.de/",
+ "role": "Developer"
+ }
+ ],
+ "description": "BaconQrCode is a QR code generator for PHP.",
+ "homepage": "https://github.com/Bacon/BaconQrCode",
+ "support": {
+ "issues": "https://github.com/Bacon/BaconQrCode/issues",
+ "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.7"
+ },
+ "time": "2022-03-14T02:02:36+00:00"
+ },
+ {
+ "name": "code-lts/u2f-php-server",
+ "version": "v1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/code-lts/U2F-php-server.git",
+ "reference": "59b3b28185e7fa255180a61278f6f65739082771"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/code-lts/U2F-php-server/zipball/59b3b28185e7fa255180a61278f6f65739082771",
+ "reference": "59b3b28185e7fa255180a61278f6f65739082771",
+ "shasum": ""
+ },
+ "require": {
+ "ext-openssl": "*",
+ "php": "^7.1 || ^8.0"
+ },
+ "replace": {
+ "samyoul/u2f-php-server": "*"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7 || ^8 || ^9"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "CodeLts\\U2F\\U2FServer\\": [
+ "src/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-2-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Samuel Hawksby-Robinson",
+ "email": "samuel@samyoul.com"
+ },
+ {
+ "name": "William Desportes",
+ "email": "williamdes@wdes.fr"
+ }
+ ],
+ "description": "Server side handling class for FIDO U2F registration and authentication",
+ "homepage": "https://github.com/code-lts/U2F-php-server#readme",
+ "support": {
+ "issues": "https://github.com/code-lts/U2F-php-server/issues",
+ "source": "https://github.com/code-lts/U2F-php-server"
+ },
+ "time": "2021-12-12T11:02:35+00:00"
+ },
+ {
+ "name": "composer/ca-bundle",
+ "version": "1.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/ca-bundle.git",
+ "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b",
+ "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b",
+ "shasum": ""
+ },
+ "require": {
+ "ext-openssl": "*",
+ "ext-pcre": "*",
+ "php": "^5.3.2 || ^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^0.12.55",
+ "psr/log": "^1.0",
+ "symfony/phpunit-bridge": "^4.2 || ^5",
+ "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\CaBundle\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
+ "keywords": [
+ "cabundle",
+ "cacert",
+ "certificate",
+ "ssl",
+ "tls"
+ ],
+ "support": {
+ "irc": "irc://irc.freenode.org/composer",
+ "issues": "https://github.com/composer/ca-bundle/issues",
+ "source": "https://github.com/composer/ca-bundle/tree/1.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-10-28T20:44:15+00:00"
+ },
+ {
+ "name": "dasprid/enum",
+ "version": "1.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/DASPRiD/Enum.git",
+ "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
+ "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
+ "shasum": ""
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7 | ^8 | ^9",
+ "squizlabs/php_codesniffer": "^3.4"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "DASPRiD\\Enum\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-2-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ben Scholzen 'DASPRiD'",
+ "email": "mail@dasprids.de",
+ "homepage": "https://dasprids.de/",
+ "role": "Developer"
+ }
+ ],
+ "description": "PHP 7.1 enum implementation",
+ "keywords": [
+ "enum",
+ "map"
+ ],
+ "support": {
+ "issues": "https://github.com/DASPRiD/Enum/issues",
+ "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
+ },
+ "time": "2020-10-02T16:03:48+00:00"
+ },
+ {
+ "name": "fig/http-message-util",
+ "version": "1.1.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-message-util.git",
+ "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
+ "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3 || ^7.0 || ^8.0"
+ },
+ "suggest": {
+ "psr/http-message": "The package containing the PSR-7 interfaces"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Fig\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
+ "keywords": [
+ "http",
+ "http-message",
+ "psr",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/http-message-util/issues",
+ "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
+ },
+ "time": "2020-11-24T22:02:12+00:00"
+ },
+ {
+ "name": "google/recaptcha",
+ "version": "1.2.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/google/recaptcha.git",
+ "reference": "614f25a9038be4f3f2da7cbfd778dc5b357d2419"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/google/recaptcha/zipball/614f25a9038be4f3f2da7cbfd778dc5b357d2419",
+ "reference": "614f25a9038be4f3f2da7cbfd778dc5b357d2419",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.5"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^2.2.20|^2.15",
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpunit": "^4.8.36|^5.7.27|^6.59|^7.5.11"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "ReCaptcha\\": "src/ReCaptcha"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.",
+ "homepage": "https://www.google.com/recaptcha/",
+ "keywords": [
+ "Abuse",
+ "captcha",
+ "recaptcha",
+ "spam"
+ ],
+ "support": {
+ "forum": "https://groups.google.com/forum/#!forum/recaptcha",
+ "issues": "https://github.com/google/recaptcha/issues",
+ "source": "https://github.com/google/recaptcha"
+ },
+ "time": "2020-03-31T17:50:54+00:00"
+ },
+ {
+ "name": "nikic/fast-route",
+ "version": "v1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nikic/FastRoute.git",
+ "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
+ "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.4.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35|~5.7"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "FastRoute\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Nikita Popov",
+ "email": "nikic@php.net"
+ }
+ ],
+ "description": "Fast request router for PHP",
+ "keywords": [
+ "router",
+ "routing"
+ ],
+ "support": {
+ "issues": "https://github.com/nikic/FastRoute/issues",
+ "source": "https://github.com/nikic/FastRoute/tree/master"
+ },
+ "time": "2018-02-13T20:26:39+00:00"
+ },
+ {
+ "name": "paragonie/constant_time_encoding",
+ "version": "v2.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/paragonie/constant_time_encoding.git",
+ "reference": "9229e15f2e6ba772f0c55dd6986c563b937170a8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/9229e15f2e6ba772f0c55dd6986c563b937170a8",
+ "reference": "9229e15f2e6ba772f0c55dd6986c563b937170a8",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7|^8"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6|^7|^8|^9",
+ "vimeo/psalm": "^1|^2|^3|^4"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "ParagonIE\\ConstantTime\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Paragon Initiative Enterprises",
+ "email": "security@paragonie.com",
+ "homepage": "https://paragonie.com",
+ "role": "Maintainer"
+ },
+ {
+ "name": "Steve 'Sc00bz' Thomas",
+ "email": "steve@tobtu.com",
+ "homepage": "https://www.tobtu.com",
+ "role": "Original Developer"
+ }
+ ],
+ "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
+ "keywords": [
+ "base16",
+ "base32",
+ "base32_decode",
+ "base32_encode",
+ "base64",
+ "base64_decode",
+ "base64_encode",
+ "bin2hex",
+ "encoding",
+ "hex",
+ "hex2bin",
+ "rfc4648"
+ ],
+ "support": {
+ "email": "info@paragonie.com",
+ "issues": "https://github.com/paragonie/constant_time_encoding/issues",
+ "source": "https://github.com/paragonie/constant_time_encoding"
+ },
+ "time": "2022-01-17T05:32:27+00:00"
+ },
+ {
+ "name": "paragonie/random_compat",
+ "version": "v9.99.100",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/paragonie/random_compat.git",
+ "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
+ "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">= 7"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "4.*|5.*",
+ "vimeo/psalm": "^1"
+ },
+ "suggest": {
+ "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
+ },
+ "type": "library",
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Paragon Initiative Enterprises",
+ "email": "security@paragonie.com",
+ "homepage": "https://paragonie.com"
+ }
+ ],
+ "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
+ "keywords": [
+ "csprng",
+ "polyfill",
+ "pseudorandom",
+ "random"
+ ],
+ "support": {
+ "email": "info@paragonie.com",
+ "issues": "https://github.com/paragonie/random_compat/issues",
+ "source": "https://github.com/paragonie/random_compat"
+ },
+ "time": "2020-10-15T08:29:30+00:00"
+ },
+ {
+ "name": "paragonie/sodium_compat",
+ "version": "v1.17.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/paragonie/sodium_compat.git",
+ "reference": "ac994053faac18d386328c91c7900f930acadf1e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/ac994053faac18d386328c91c7900f930acadf1e",
+ "reference": "ac994053faac18d386328c91c7900f930acadf1e",
+ "shasum": ""
+ },
+ "require": {
+ "paragonie/random_compat": ">=1",
+ "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
+ },
+ "suggest": {
+ "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
+ "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "autoload.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "ISC"
+ ],
+ "authors": [
+ {
+ "name": "Paragon Initiative Enterprises",
+ "email": "security@paragonie.com"
+ },
+ {
+ "name": "Frank Denis",
+ "email": "jedisct1@pureftpd.org"
+ }
+ ],
+ "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
+ "keywords": [
+ "Authentication",
+ "BLAKE2b",
+ "ChaCha20",
+ "ChaCha20-Poly1305",
+ "Chapoly",
+ "Curve25519",
+ "Ed25519",
+ "EdDSA",
+ "Edwards-curve Digital Signature Algorithm",
+ "Elliptic Curve Diffie-Hellman",
+ "Poly1305",
+ "Pure-PHP cryptography",
+ "RFC 7748",
+ "RFC 8032",
+ "Salpoly",
+ "Salsa20",
+ "X25519",
+ "XChaCha20-Poly1305",
+ "XSalsa20-Poly1305",
+ "Xchacha20",
+ "Xsalsa20",
+ "aead",
+ "cryptography",
+ "ecdh",
+ "elliptic curve",
+ "elliptic curve cryptography",
+ "encryption",
+ "libsodium",
+ "php",
+ "public-key cryptography",
+ "secret-key cryptography",
+ "side-channel resistant"
+ ],
+ "support": {
+ "issues": "https://github.com/paragonie/sodium_compat/issues",
+ "source": "https://github.com/paragonie/sodium_compat/tree/v1.17.1"
+ },
+ "time": "2022-03-23T19:32:04+00:00"
+ },
+ {
+ "name": "phpmyadmin/motranslator",
+ "version": "5.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpmyadmin/motranslator.git",
+ "reference": "87baa97809ec556c40e4cba4bdef998a2de2a003"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpmyadmin/motranslator/zipball/87baa97809ec556c40e4cba4bdef998a2de2a003",
+ "reference": "87baa97809ec556c40e4cba4bdef998a2de2a003",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0",
+ "symfony/expression-language": "^4.0 || ^5.0 || ^6.0"
+ },
+ "require-dev": {
+ "phpmyadmin/coding-standard": "^3.0.0",
+ "phpstan/phpstan": "^1.4.6",
+ "phpunit/phpunit": "^7.4 || ^8 || ^9"
+ },
+ "suggest": {
+ "ext-apcu": "Needed for ACPu-backed translation cache"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PhpMyAdmin\\MoTranslator\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "authors": [
+ {
+ "name": "The phpMyAdmin Team",
+ "email": "developers@phpmyadmin.net",
+ "homepage": "https://www.phpmyadmin.net/team/"
+ }
+ ],
+ "description": "Translation API for PHP using Gettext MO files",
+ "homepage": "https://github.com/phpmyadmin/motranslator",
+ "keywords": [
+ "gettext",
+ "i18n",
+ "mo",
+ "translator"
+ ],
+ "support": {
+ "issues": "https://github.com/phpmyadmin/motranslator/issues",
+ "source": "https://github.com/phpmyadmin/motranslator"
+ },
+ "time": "2022-04-26T11:24:50+00:00"
+ },
+ {
+ "name": "phpmyadmin/shapefile",
+ "version": "3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpmyadmin/shapefile.git",
+ "reference": "c232198ef49d3484f26acfe2d12cab103da9371a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpmyadmin/shapefile/zipball/c232198ef49d3484f26acfe2d12cab103da9371a",
+ "reference": "c232198ef49d3484f26acfe2d12cab103da9371a",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "phpmyadmin/coding-standard": "^2.1.1",
+ "phpstan/phpstan": "^0.12.37",
+ "phpstan/phpstan-phpunit": "^0.12.6",
+ "phpunit/phpunit": "^7.4 || ^8 || ^9"
+ },
+ "suggest": {
+ "ext-dbase": "For dbf files parsing"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PhpMyAdmin\\ShapeFile\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "authors": [
+ {
+ "name": "The phpMyAdmin Team",
+ "email": "developers@phpmyadmin.net",
+ "homepage": "https://www.phpmyadmin.net/team/"
+ }
+ ],
+ "description": "ESRI ShapeFile library for PHP",
+ "homepage": "https://github.com/phpmyadmin/shapefile",
+ "keywords": [
+ "ESRI",
+ "Shapefile",
+ "dbf",
+ "geo",
+ "geospatial",
+ "shape",
+ "shp"
+ ],
+ "support": {
+ "issues": "https://github.com/phpmyadmin/shapefile/issues",
+ "source": "https://github.com/phpmyadmin/shapefile"
+ },
+ "time": "2021-02-06T04:52:58+00:00"
+ },
+ {
+ "name": "phpmyadmin/sql-parser",
+ "version": "5.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpmyadmin/sql-parser.git",
+ "reference": "8ab99cd0007d880f49f5aa1807033dbfa21b1cb5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpmyadmin/sql-parser/zipball/8ab99cd0007d880f49f5aa1807033dbfa21b1cb5",
+ "reference": "8ab99cd0007d880f49f5aa1807033dbfa21b1cb5",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0",
+ "symfony/polyfill-mbstring": "^1.3"
+ },
+ "conflict": {
+ "phpmyadmin/motranslator": "<3.0"
+ },
+ "require-dev": {
+ "phpmyadmin/coding-standard": "^3.0",
+ "phpmyadmin/motranslator": "^4.0 || ^5.0",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.2",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpunit/php-code-coverage": "*",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
+ "psalm/plugin-phpunit": "^0.16.1",
+ "vimeo/psalm": "^4.11",
+ "zumba/json-serializer": "^3.0"
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance",
+ "phpmyadmin/motranslator": "Translate messages to your favorite locale"
+ },
+ "bin": [
+ "bin/highlight-query",
+ "bin/lint-query",
+ "bin/tokenize-query"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PhpMyAdmin\\SqlParser\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "authors": [
+ {
+ "name": "The phpMyAdmin Team",
+ "email": "developers@phpmyadmin.net",
+ "homepage": "https://www.phpmyadmin.net/team/"
+ }
+ ],
+ "description": "A validating SQL lexer and parser with a focus on MySQL dialect.",
+ "homepage": "https://github.com/phpmyadmin/sql-parser",
+ "keywords": [
+ "analysis",
+ "lexer",
+ "parser",
+ "sql"
+ ],
+ "support": {
+ "issues": "https://github.com/phpmyadmin/sql-parser/issues",
+ "source": "https://github.com/phpmyadmin/sql-parser"
+ },
+ "time": "2021-12-09T04:31:52+00:00"
+ },
+ {
+ "name": "phpmyadmin/twig-i18n-extension",
+ "version": "v4.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpmyadmin/twig-i18n-extension.git",
+ "reference": "c0d0dd171cd1c7733bf152fd44b61055843df052"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpmyadmin/twig-i18n-extension/zipball/c0d0dd171cd1c7733bf152fd44b61055843df052",
+ "reference": "c0d0dd171cd1c7733bf152fd44b61055843df052",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0",
+ "twig/twig": "^1.42.3|^2.0|^3.0"
+ },
+ "require-dev": {
+ "phpmyadmin/coding-standard": "^3.0.0",
+ "phpmyadmin/motranslator": "^5.2",
+ "phpstan/phpstan": "^0.12.66",
+ "phpunit/phpunit": "^7 || ^8 || ^9"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PhpMyAdmin\\Twig\\Extensions\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "The phpMyAdmin Team",
+ "email": "developers@phpmyadmin.net",
+ "homepage": "https://www.phpmyadmin.net/team/"
+ }
+ ],
+ "description": "Internationalization support for Twig via the gettext library",
+ "keywords": [
+ "gettext",
+ "i18n"
+ ],
+ "support": {
+ "issues": "https://github.com/phpmyadmin/twig-i18n-extension/issues",
+ "source": "https://github.com/phpmyadmin/twig-i18n-extension"
+ },
+ "time": "2021-06-10T15:53:38+00:00"
+ },
+ {
+ "name": "pragmarx/google2fa",
+ "version": "8.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/antonioribeiro/google2fa.git",
+ "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/26c4c5cf30a2844ba121760fd7301f8ad240100b",
+ "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b",
+ "shasum": ""
+ },
+ "require": {
+ "paragonie/constant_time_encoding": "^1.0|^2.0",
+ "php": "^7.1|^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^0.12.18",
+ "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PragmaRX\\Google2FA\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Antonio Carlos Ribeiro",
+ "email": "acr@antoniocarlosribeiro.com",
+ "role": "Creator & Designer"
+ }
+ ],
+ "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
+ "keywords": [
+ "2fa",
+ "Authentication",
+ "Two Factor Authentication",
+ "google2fa"
+ ],
+ "support": {
+ "issues": "https://github.com/antonioribeiro/google2fa/issues",
+ "source": "https://github.com/antonioribeiro/google2fa/tree/8.0.0"
+ },
+ "time": "2020-04-05T10:47:18+00:00"
+ },
+ {
+ "name": "pragmarx/google2fa-qrcode",
+ "version": "v2.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/antonioribeiro/google2fa-qrcode.git",
+ "reference": "0459a5d7bab06b11a09a365288d41a41d2afe63f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/antonioribeiro/google2fa-qrcode/zipball/0459a5d7bab06b11a09a365288d41a41d2afe63f",
+ "reference": "0459a5d7bab06b11a09a365288d41a41d2afe63f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1",
+ "pragmarx/google2fa": ">=4.0"
+ },
+ "require-dev": {
+ "bacon/bacon-qr-code": "^2.0",
+ "chillerlan/php-qrcode": "^1.0|^2.0|^3.0|^4.0",
+ "khanamiryan/qrcode-detector-decoder": "^1.0",
+ "phpunit/phpunit": "~4|~5|~6|~7|~8|~9"
+ },
+ "suggest": {
+ "bacon/bacon-qr-code": "For QR Code generation, requires imagick",
+ "chillerlan/php-qrcode": "For QR Code generation"
+ },
+ "type": "library",
+ "extra": {
+ "component": "package",
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PragmaRX\\Google2FAQRCode\\": "src/",
+ "PragmaRX\\Google2FAQRCode\\Tests\\": "tests/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Antonio Carlos Ribeiro",
+ "email": "acr@antoniocarlosribeiro.com",
+ "role": "Creator & Designer"
+ }
+ ],
+ "description": "QR Code package for Google2FA",
+ "keywords": [
+ "2fa",
+ "Authentication",
+ "Two Factor Authentication",
+ "google2fa",
+ "qr code",
+ "qrcode"
+ ],
+ "support": {
+ "issues": "https://github.com/antonioribeiro/google2fa-qrcode/issues",
+ "source": "https://github.com/antonioribeiro/google2fa-qrcode/tree/v2.1.1"
+ },
+ "time": "2021-07-07T17:06:15+00:00"
+ },
+ {
+ "name": "psr/cache",
+ "version": "1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/cache.git",
+ "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
+ "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Cache\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for caching libraries",
+ "keywords": [
+ "cache",
+ "psr",
+ "psr-6"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/cache/tree/master"
+ },
+ "time": "2016-08-06T20:24:11+00:00"
+ },
+ {
+ "name": "psr/container",
+ "version": "1.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
+ "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Container\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
+ "keywords": [
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/container/issues",
+ "source": "https://github.com/php-fig/container/tree/1.1.1"
+ },
+ "time": "2021-03-05T17:36:06+00:00"
+ },
+ {
+ "name": "psr/http-factory",
+ "version": "1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-factory.git",
+ "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
+ "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0.0",
+ "psr/http-message": "^1.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interfaces for PSR-7 HTTP message factories",
+ "keywords": [
+ "factory",
+ "http",
+ "message",
+ "psr",
+ "psr-17",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-factory/tree/master"
+ },
+ "time": "2019-04-30T12:38:16+00:00"
+ },
+ {
+ "name": "psr/http-message",
+ "version": "1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-message.git",
+ "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
+ "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for HTTP messages",
+ "homepage": "https://github.com/php-fig/http-message",
+ "keywords": [
+ "http",
+ "http-message",
+ "psr",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-message/tree/master"
+ },
+ "time": "2016-08-06T14:39:51+00:00"
+ },
+ {
+ "name": "psr/log",
+ "version": "1.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
+ "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Log\\": "Psr/Log/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
+ "keywords": [
+ "log",
+ "psr",
+ "psr-3"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/log/tree/1.1.4"
+ },
+ "time": "2021-05-03T11:20:27+00:00"
+ },
+ {
+ "name": "ralouphie/getallheaders",
+ "version": "3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ralouphie/getallheaders.git",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpunit": "^5 || ^6.5"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/getallheaders.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ralph Khattar",
+ "email": "ralph.khattar@gmail.com"
+ }
+ ],
+ "description": "A polyfill for getallheaders.",
+ "support": {
+ "issues": "https://github.com/ralouphie/getallheaders/issues",
+ "source": "https://github.com/ralouphie/getallheaders/tree/develop"
+ },
+ "time": "2019-03-08T08:55:37+00:00"
+ },
+ {
+ "name": "slim/psr7",
+ "version": "1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/slimphp/Slim-Psr7.git",
+ "reference": "0dca983ca32a26f4a91fb11173b7b9eaee29e9d6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/0dca983ca32a26f4a91fb11173b7b9eaee29e9d6",
+ "reference": "0dca983ca32a26f4a91fb11173b7b9eaee29e9d6",
+ "shasum": ""
+ },
+ "require": {
+ "fig/http-message-util": "^1.1.5",
+ "php": "^7.2 || ^8.0",
+ "psr/http-factory": "^1.0",
+ "psr/http-message": "^1.0",
+ "ralouphie/getallheaders": "^3",
+ "symfony/polyfill-php80": "^1.22"
+ },
+ "provide": {
+ "psr/http-factory-implementation": "1.0",
+ "psr/http-message-implementation": "1.0"
+ },
+ "require-dev": {
+ "adriansuter/php-autoload-override": "^1.2",
+ "ext-json": "*",
+ "http-interop/http-factory-tests": "^0.9.0",
+ "php-http/psr7-integration-tests": "dev-master",
+ "phpstan/phpstan": "^0.12",
+ "phpunit/phpunit": "^8.5 || ^9.5",
+ "squizlabs/php_codesniffer": "^3.6",
+ "weirdan/prophecy-shim": "^1.0 || ^2.0.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Slim\\Psr7\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Josh Lockhart",
+ "email": "hello@joshlockhart.com",
+ "homepage": "http://joshlockhart.com"
+ },
+ {
+ "name": "Andrew Smith",
+ "email": "a.smith@silentworks.co.uk",
+ "homepage": "http://silentworks.co.uk"
+ },
+ {
+ "name": "Rob Allen",
+ "email": "rob@akrabat.com",
+ "homepage": "http://akrabat.com"
+ },
+ {
+ "name": "Pierre Berube",
+ "email": "pierre@lgse.com",
+ "homepage": "http://www.lgse.com"
+ }
+ ],
+ "description": "Strict PSR-7 implementation",
+ "homepage": "https://www.slimframework.com",
+ "keywords": [
+ "http",
+ "psr-7",
+ "psr7"
+ ],
+ "support": {
+ "issues": "https://github.com/slimphp/Slim-Psr7/issues",
+ "source": "https://github.com/slimphp/Slim-Psr7/tree/1.4"
+ },
+ "time": "2021-05-08T18:22:56+00:00"
+ },
+ {
+ "name": "symfony/cache",
+ "version": "v5.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/cache.git",
+ "reference": "4c6747cf7e56c6b8e3094dd24852bd3e364375b1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/cache/zipball/4c6747cf7e56c6b8e3094dd24852bd3e364375b1",
+ "reference": "4c6747cf7e56c6b8e3094dd24852bd3e364375b1",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "psr/cache": "^1.0|^2.0",
+ "psr/log": "^1.1|^2|^3",
+ "symfony/cache-contracts": "^1.1.7|^2",
+ "symfony/deprecation-contracts": "^2.1|^3",
+ "symfony/polyfill-php73": "^1.9",
+ "symfony/polyfill-php80": "^1.16",
+ "symfony/service-contracts": "^1.1|^2|^3",
+ "symfony/var-exporter": "^4.4|^5.0|^6.0"
+ },
+ "conflict": {
+ "doctrine/dbal": "<2.13.1",
+ "symfony/dependency-injection": "<4.4",
+ "symfony/http-kernel": "<4.4",
+ "symfony/var-dumper": "<4.4"
+ },
+ "provide": {
+ "psr/cache-implementation": "1.0|2.0",
+ "psr/simple-cache-implementation": "1.0|2.0",
+ "symfony/cache-implementation": "1.0|2.0"
+ },
+ "require-dev": {
+ "cache/integration-tests": "dev-master",
+ "doctrine/cache": "^1.6|^2.0",
+ "doctrine/dbal": "^2.13.1|^3.0",
+ "predis/predis": "^1.1",
+ "psr/simple-cache": "^1.0|^2.0",
+ "symfony/config": "^4.4|^5.0|^6.0",
+ "symfony/dependency-injection": "^4.4|^5.0|^6.0",
+ "symfony/filesystem": "^4.4|^5.0|^6.0",
+ "symfony/http-kernel": "^4.4|^5.0|^6.0",
+ "symfony/messenger": "^4.4|^5.0|^6.0",
+ "symfony/var-dumper": "^4.4|^5.0|^6.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Cache\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "caching",
+ "psr6"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/cache/tree/v5.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-26T13:19:20+00:00"
+ },
+ {
+ "name": "symfony/cache-contracts",
+ "version": "v2.5.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/cache-contracts.git",
+ "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
+ "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "psr/cache": "^1.0|^2.0|^3.0"
+ },
+ "suggest": {
+ "symfony/cache-implementation": ""
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "2.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Cache\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to caching",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/cache-contracts/tree/v2.5.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-01-02T09:53:40+00:00"
+ },
+ {
+ "name": "symfony/config",
+ "version": "v5.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/config.git",
+ "reference": "9f8964f56f7234f8ace16f66cb3fbae950c04e68"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/config/zipball/9f8964f56f7234f8ace16f66cb3fbae950c04e68",
+ "reference": "9f8964f56f7234f8ace16f66cb3fbae950c04e68",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1|^3",
+ "symfony/filesystem": "^4.4|^5.0|^6.0",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-php80": "^1.16",
+ "symfony/polyfill-php81": "^1.22"
+ },
+ "conflict": {
+ "symfony/finder": "<4.4"
+ },
+ "require-dev": {
+ "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
+ "symfony/finder": "^4.4|^5.0|^6.0",
+ "symfony/messenger": "^4.4|^5.0|^6.0",
+ "symfony/service-contracts": "^1.1|^2|^3",
+ "symfony/yaml": "^4.4|^5.0|^6.0"
+ },
+ "suggest": {
+ "symfony/yaml": "To use the yaml reference dumper"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Config\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/config/tree/v5.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-12T16:02:29+00:00"
+ },
+ {
+ "name": "symfony/dependency-injection",
+ "version": "v5.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/dependency-injection.git",
+ "reference": "855e29cd715ad62bb840c9841fe09a7cde50811f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/855e29cd715ad62bb840c9841fe09a7cde50811f",
+ "reference": "855e29cd715ad62bb840c9841fe09a7cde50811f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "psr/container": "^1.1.1",
+ "symfony/deprecation-contracts": "^2.1|^3",
+ "symfony/polyfill-php80": "^1.16",
+ "symfony/polyfill-php81": "^1.22",
+ "symfony/service-contracts": "^1.1.6|^2"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2",
+ "symfony/config": "<5.3",
+ "symfony/finder": "<4.4",
+ "symfony/proxy-manager-bridge": "<4.4",
+ "symfony/yaml": "<4.4.26"
+ },
+ "provide": {
+ "psr/container-implementation": "1.0",
+ "symfony/service-implementation": "1.0|2.0"
+ },
+ "require-dev": {
+ "symfony/config": "^5.3|^6.0",
+ "symfony/expression-language": "^4.4|^5.0|^6.0",
+ "symfony/yaml": "^4.4.26|^5.0|^6.0"
+ },
+ "suggest": {
+ "symfony/config": "",
+ "symfony/expression-language": "For using expressions in service container configuration",
+ "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
+ "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
+ "symfony/yaml": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\DependencyInjection\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Allows you to standardize and centralize the way objects are constructed in your application",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/dependency-injection/tree/v5.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-26T13:08:29+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v2.5.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
+ "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "2.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-01-02T09:53:40+00:00"
+ },
+ {
+ "name": "symfony/expression-language",
+ "version": "v5.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/expression-language.git",
+ "reference": "9d186e1eecf9e3461c6adbdf1acf614b8da9def9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/expression-language/zipball/9d186e1eecf9e3461c6adbdf1acf614b8da9def9",
+ "reference": "9d186e1eecf9e3461c6adbdf1acf614b8da9def9",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/cache": "^4.4|^5.0|^6.0",
+ "symfony/service-contracts": "^1.1|^2|^3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\ExpressionLanguage\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an engine that can compile and evaluate expressions",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/expression-language/tree/v5.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-08T05:07:18+00:00"
+ },
+ {
+ "name": "symfony/filesystem",
+ "version": "v5.4.7",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/filesystem.git",
+ "reference": "3a4442138d80c9f7b600fb297534ac718b61d37f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/3a4442138d80c9f7b600fb297534ac718b61d37f",
+ "reference": "3a4442138d80c9f7b600fb297534ac718b61d37f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.8",
+ "symfony/polyfill-php80": "^1.16"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Filesystem\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides basic utilities for the filesystem",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/filesystem/tree/v5.4.7"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-01T12:33:59+00:00"
+ },
+ {
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.25.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "30885182c981ab175d4d034db0f6f469898070ab"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
+ "reference": "30885182c981ab175d4d034db0f6f469898070ab",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-ctype": "*"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.23-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Ctype\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for ctype functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-10-20T20:35:02+00:00"
+ },
+ {
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.25.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
+ "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-mbstring": "*"
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.23-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for the Mbstring extension",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-11-30T18:21:41+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php73",
+ "version": "v1.25.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php73.git",
+ "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
+ "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.23-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php73\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-06-05T21:20:04+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php80",
+ "version": "v1.25.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
+ "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.23-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php80\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-03-04T08:16:47+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php81",
+ "version": "v1.25.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php81.git",
+ "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
+ "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.23-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php81\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-09-13T13:58:11+00:00"
+ },
+ {
+ "name": "symfony/service-contracts",
+ "version": "v2.5.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
+ "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "psr/container": "^1.1",
+ "symfony/deprecation-contracts": "^2.1|^3"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2"
+ },
+ "suggest": {
+ "symfony/service-implementation": ""
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "2.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Service\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to writing services",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-03-13T20:07:29+00:00"
+ },
+ {
+ "name": "symfony/var-exporter",
+ "version": "v5.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/var-exporter.git",
+ "reference": "7e132a3fcd4b57add721b4207236877b6017ec93"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/var-exporter/zipball/7e132a3fcd4b57add721b4207236877b6017ec93",
+ "reference": "7e132a3fcd4b57add721b4207236877b6017ec93",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/polyfill-php80": "^1.16"
+ },
+ "require-dev": {
+ "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\VarExporter\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Allows exporting any serializable PHP data structure to plain PHP code",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "clone",
+ "construct",
+ "export",
+ "hydrate",
+ "instantiate",
+ "serialize"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/var-exporter/tree/v5.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-26T13:19:20+00:00"
+ },
+ {
+ "name": "tecnickcom/tcpdf",
+ "version": "6.4.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/tecnickcom/TCPDF.git",
+ "reference": "42cd0f9786af7e5db4fcedaa66f717b0d0032320"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/42cd0f9786af7e5db4fcedaa66f717b0d0032320",
+ "reference": "42cd0f9786af7e5db4fcedaa66f717b0d0032320",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "config",
+ "include",
+ "tcpdf.php",
+ "tcpdf_parser.php",
+ "tcpdf_import.php",
+ "tcpdf_barcodes_1d.php",
+ "tcpdf_barcodes_2d.php",
+ "include/tcpdf_colors.php",
+ "include/tcpdf_filters.php",
+ "include/tcpdf_font_data.php",
+ "include/tcpdf_fonts.php",
+ "include/tcpdf_images.php",
+ "include/tcpdf_static.php",
+ "include/barcodes/datamatrix.php",
+ "include/barcodes/pdf417.php",
+ "include/barcodes/qrcode.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "LGPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "Nicola Asuni",
+ "email": "info@tecnick.com",
+ "role": "lead"
+ }
+ ],
+ "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
+ "homepage": "http://www.tcpdf.org/",
+ "keywords": [
+ "PDFD32000-2008",
+ "TCPDF",
+ "barcodes",
+ "datamatrix",
+ "pdf",
+ "pdf417",
+ "qrcode"
+ ],
+ "support": {
+ "issues": "https://github.com/tecnickcom/TCPDF/issues",
+ "source": "https://github.com/tecnickcom/TCPDF/tree/6.4.4"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations¤cy_code=GBP&business=paypal@tecnick.com&item_name=donation%20for%20tcpdf%20project",
+ "type": "custom"
+ }
+ ],
+ "time": "2021-12-31T08:39:24+00:00"
+ },
+ {
+ "name": "twig/twig",
+ "version": "v3.3.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/twigphp/Twig.git",
+ "reference": "8442df056c51b706793adf80a9fd363406dd3674"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/twigphp/Twig/zipball/8442df056c51b706793adf80a9fd363406dd3674",
+ "reference": "8442df056c51b706793adf80a9fd363406dd3674",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/polyfill-ctype": "^1.8",
+ "symfony/polyfill-mbstring": "^1.3"
+ },
+ "require-dev": {
+ "psr/container": "^1.0",
+ "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.3-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Twig\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com",
+ "homepage": "http://fabien.potencier.org",
+ "role": "Lead Developer"
+ },
+ {
+ "name": "Twig Team",
+ "role": "Contributors"
+ },
+ {
+ "name": "Armin Ronacher",
+ "email": "armin.ronacher@active-4.com",
+ "role": "Project Founder"
+ }
+ ],
+ "description": "Twig, the flexible, fast, and secure template language for PHP",
+ "homepage": "https://twig.symfony.com",
+ "keywords": [
+ "templating"
+ ],
+ "support": {
+ "issues": "https://github.com/twigphp/Twig/issues",
+ "source": "https://github.com/twigphp/Twig/tree/v3.3.10"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/twig/twig",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-06T06:47:41+00:00"
+ },
+ {
+ "name": "webmozart/assert",
+ "version": "1.10.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/webmozarts/assert.git",
+ "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
+ "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "phpstan/phpstan": "<0.12.20",
+ "vimeo/psalm": "<4.6.1 || 4.6.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5.13"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.10-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Webmozart\\Assert\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Assertions to validate method input/output with nice error messages.",
+ "keywords": [
+ "assert",
+ "check",
+ "validate"
+ ],
+ "support": {
+ "issues": "https://github.com/webmozarts/assert/issues",
+ "source": "https://github.com/webmozarts/assert/tree/1.10.0"
+ },
+ "time": "2021-03-09T10:59:23+00:00"
+ },
+ {
+ "name": "williamdes/mariadb-mysql-kbs",
+ "version": "v1.2.13",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/williamdes/mariadb-mysql-kbs.git",
+ "reference": "f5c1b00d4bcfb27c06595ae172aa69da1815bfa9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/williamdes/mariadb-mysql-kbs/zipball/f5c1b00d4bcfb27c06595ae172aa69da1815bfa9",
+ "reference": "f5c1b00d4bcfb27c06595ae172aa69da1815bfa9",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.2",
+ "phpunit/phpunit": "^7 || ^8 || ^9",
+ "swaggest/json-schema": "^0.12.29",
+ "wdes/coding-standard": "^3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Williamdes\\MariaDBMySQLKBS\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MPL-2.0"
+ ],
+ "authors": [
+ {
+ "name": "William Desportes",
+ "email": "williamdes@wdes.fr"
+ }
+ ],
+ "description": "An index of the MariaDB and MySQL Knowledge bases",
+ "homepage": "https://github.com/williamdes/mariadb-mysql-kbs",
+ "keywords": [
+ "composer-package",
+ "dataset",
+ "json",
+ "kb",
+ "knowledge-base",
+ "library",
+ "mariadb",
+ "mariadb-knowledge-bases",
+ "mysql",
+ "mysql-knowledge-bases",
+ "npm-package"
+ ],
+ "support": {
+ "email": "williamdes@wdes.fr",
+ "issues": "https://github.com/williamdes/mariadb-mysql-kbs/issues",
+ "source": "https://github.com/williamdes/mariadb-mysql-kbs"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/williamdes",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/williamdes/mariadb-mysql-kbs",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-12-19T22:53:51+00:00"
+ }
+ ],
+ "packages-dev": [
+ {
+ "name": "amphp/amp",
+ "version": "v2.6.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/amphp/amp.git",
+ "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/amphp/amp/zipball/9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
+ "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "amphp/php-cs-fixer-config": "dev-master",
+ "amphp/phpunit-util": "^1",
+ "ext-json": "*",
+ "jetbrains/phpstorm-stubs": "^2019.3",
+ "phpunit/phpunit": "^7 | ^8 | ^9",
+ "psalm/phar": "^3.11@dev",
+ "react/promise": "^2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "lib/functions.php",
+ "lib/Internal/functions.php"
+ ],
+ "psr-4": {
+ "Amp\\": "lib"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Daniel Lowrey",
+ "email": "rdlowrey@php.net"
+ },
+ {
+ "name": "Aaron Piotrowski",
+ "email": "aaron@trowski.com"
+ },
+ {
+ "name": "Bob Weinand",
+ "email": "bobwei9@hotmail.com"
+ },
+ {
+ "name": "Niklas Keller",
+ "email": "me@kelunik.com"
+ }
+ ],
+ "description": "A non-blocking concurrency framework for PHP applications.",
+ "homepage": "https://amphp.org/amp",
+ "keywords": [
+ "async",
+ "asynchronous",
+ "awaitable",
+ "concurrency",
+ "event",
+ "event-loop",
+ "future",
+ "non-blocking",
+ "promise"
+ ],
+ "support": {
+ "irc": "irc://irc.freenode.org/amphp",
+ "issues": "https://github.com/amphp/amp/issues",
+ "source": "https://github.com/amphp/amp/tree/v2.6.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/amphp",
+ "type": "github"
+ }
+ ],
+ "time": "2022-02-20T17:52:18+00:00"
+ },
+ {
+ "name": "amphp/byte-stream",
+ "version": "v1.8.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/amphp/byte-stream.git",
+ "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd",
+ "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd",
+ "shasum": ""
+ },
+ "require": {
+ "amphp/amp": "^2",
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "amphp/php-cs-fixer-config": "dev-master",
+ "amphp/phpunit-util": "^1.4",
+ "friendsofphp/php-cs-fixer": "^2.3",
+ "jetbrains/phpstorm-stubs": "^2019.3",
+ "phpunit/phpunit": "^6 || ^7 || ^8",
+ "psalm/phar": "^3.11.4"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "lib/functions.php"
+ ],
+ "psr-4": {
+ "Amp\\ByteStream\\": "lib"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Aaron Piotrowski",
+ "email": "aaron@trowski.com"
+ },
+ {
+ "name": "Niklas Keller",
+ "email": "me@kelunik.com"
+ }
+ ],
+ "description": "A stream abstraction to make working with non-blocking I/O simple.",
+ "homepage": "http://amphp.org/byte-stream",
+ "keywords": [
+ "amp",
+ "amphp",
+ "async",
+ "io",
+ "non-blocking",
+ "stream"
+ ],
+ "support": {
+ "irc": "irc://irc.freenode.org/amphp",
+ "issues": "https://github.com/amphp/byte-stream/issues",
+ "source": "https://github.com/amphp/byte-stream/tree/v1.8.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/amphp",
+ "type": "github"
+ }
+ ],
+ "time": "2021-03-30T17:13:30+00:00"
+ },
+ {
+ "name": "composer/package-versions-deprecated",
+ "version": "1.11.99.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/package-versions-deprecated.git",
+ "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
+ "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.1.0 || ^2.0",
+ "php": "^7 || ^8"
+ },
+ "replace": {
+ "ocramius/package-versions": "1.11.99"
+ },
+ "require-dev": {
+ "composer/composer": "^1.9.3 || ^2.0@dev",
+ "ext-zip": "^1.13",
+ "phpunit/phpunit": "^6.5 || ^7"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "PackageVersions\\Installer",
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PackageVersions\\": "src/PackageVersions"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
+ },
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be"
+ }
+ ],
+ "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
+ "support": {
+ "issues": "https://github.com/composer/package-versions-deprecated/issues",
+ "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-01-17T14:14:24+00:00"
+ },
+ {
+ "name": "composer/pcre",
+ "version": "2.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/pcre.git",
+ "reference": "c8e9d27cfc5ed22643c19c160455b473ffd8aabe"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/pcre/zipball/c8e9d27cfc5ed22643c19c160455b473ffd8aabe",
+ "reference": "c8e9d27cfc5ed22643c19c160455b473ffd8aabe",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "symfony/phpunit-bridge": "^5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\Pcre\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
+ "keywords": [
+ "PCRE",
+ "preg",
+ "regex",
+ "regular expression"
+ ],
+ "support": {
+ "issues": "https://github.com/composer/pcre/issues",
+ "source": "https://github.com/composer/pcre/tree/2.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-02-25T20:05:29+00:00"
+ },
+ {
+ "name": "composer/semver",
+ "version": "3.3.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/semver.git",
+ "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
+ "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.2 || ^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.4",
+ "symfony/phpunit-bridge": "^4.2 || ^5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\Semver\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nils Adermann",
+ "email": "naderman@naderman.de",
+ "homepage": "http://www.naderman.de"
+ },
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ },
+ {
+ "name": "Rob Bast",
+ "email": "rob.bast@gmail.com",
+ "homepage": "http://robbast.nl"
+ }
+ ],
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
+ "keywords": [
+ "semantic",
+ "semver",
+ "validation",
+ "versioning"
+ ],
+ "support": {
+ "irc": "irc://irc.freenode.org/composer",
+ "issues": "https://github.com/composer/semver/issues",
+ "source": "https://github.com/composer/semver/tree/3.3.2"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-01T19:23:25+00:00"
+ },
+ {
+ "name": "composer/xdebug-handler",
+ "version": "3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/xdebug-handler.git",
+ "reference": "ced299686f41dce890debac69273b47ffe98a40c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
+ "reference": "ced299686f41dce890debac69273b47ffe98a40c",
+ "shasum": ""
+ },
+ "require": {
+ "composer/pcre": "^1 || ^2 || ^3",
+ "php": "^7.2.5 || ^8.0",
+ "psr/log": "^1 || ^2 || ^3"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "symfony/phpunit-bridge": "^6.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Composer\\XdebugHandler\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "John Stevenson",
+ "email": "john-stevenson@blueyonder.co.uk"
+ }
+ ],
+ "description": "Restarts a process without Xdebug.",
+ "keywords": [
+ "Xdebug",
+ "performance"
+ ],
+ "support": {
+ "irc": "irc://irc.freenode.org/composer",
+ "issues": "https://github.com/composer/xdebug-handler/issues",
+ "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-02-25T21:32:43+00:00"
+ },
+ {
+ "name": "dealerdirect/phpcodesniffer-composer-installer",
+ "version": "v0.7.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
+ "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
+ "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.0 || ^2.0",
+ "php": ">=5.3",
+ "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
+ },
+ "require-dev": {
+ "composer/composer": "*",
+ "php-parallel-lint/php-parallel-lint": "^1.3.1",
+ "phpcompatibility/php-compatibility": "^9.0"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
+ },
+ "autoload": {
+ "psr-4": {
+ "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Franck Nijhof",
+ "email": "franck.nijhof@dealerdirect.com",
+ "homepage": "http://www.frenck.nl",
+ "role": "Developer / IT Manager"
+ },
+ {
+ "name": "Contributors",
+ "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors"
+ }
+ ],
+ "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
+ "homepage": "http://www.dealerdirect.com",
+ "keywords": [
+ "PHPCodeSniffer",
+ "PHP_CodeSniffer",
+ "code quality",
+ "codesniffer",
+ "composer",
+ "installer",
+ "phpcbf",
+ "phpcs",
+ "plugin",
+ "qa",
+ "quality",
+ "standard",
+ "standards",
+ "style guide",
+ "stylecheck",
+ "tests"
+ ],
+ "support": {
+ "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
+ "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
+ },
+ "time": "2022-02-04T12:51:07+00:00"
+ },
+ {
+ "name": "dnoegel/php-xdg-base-dir",
+ "version": "v0.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
+ "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
+ "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "XdgBaseDir\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "implementation of xdg base directory specification for php",
+ "support": {
+ "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
+ "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
+ },
+ "time": "2019-12-04T15:06:13+00:00"
+ },
+ {
+ "name": "doctrine/coding-standard",
+ "version": "9.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/coding-standard.git",
+ "reference": "35a2452c6025cb739c3244b3348bcd1604df07d1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/coding-standard/zipball/35a2452c6025cb739c3244b3348bcd1604df07d1",
+ "reference": "35a2452c6025cb739c3244b3348bcd1604df07d1",
+ "shasum": ""
+ },
+ "require": {
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
+ "php": "^7.1 || ^8.0",
+ "slevomat/coding-standard": "^7.0.0",
+ "squizlabs/php_codesniffer": "^3.6.0"
+ },
+ "type": "phpcodesniffer-standard",
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Steve Müller",
+ "email": "st.mueller@dzh-online.de"
+ }
+ ],
+ "description": "The Doctrine Coding Standard is a set of PHPCS rules applied to all Doctrine projects.",
+ "homepage": "https://www.doctrine-project.org/projects/coding-standard.html",
+ "keywords": [
+ "checks",
+ "code",
+ "coding",
+ "cs",
+ "doctrine",
+ "rules",
+ "sniffer",
+ "sniffs",
+ "standard",
+ "style"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/coding-standard/issues",
+ "source": "https://github.com/doctrine/coding-standard/tree/9.0.0"
+ },
+ "time": "2021-04-12T15:11:14+00:00"
+ },
+ {
+ "name": "doctrine/instantiator",
+ "version": "1.4.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/instantiator.git",
+ "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
+ "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^9",
+ "ext-pdo": "*",
+ "ext-phar": "*",
+ "phpbench/phpbench": "^0.16 || ^1",
+ "phpstan/phpstan": "^1.4",
+ "phpstan/phpstan-phpunit": "^1",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
+ "vimeo/psalm": "^4.22"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com",
+ "homepage": "https://ocramius.github.io/"
+ }
+ ],
+ "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
+ "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
+ "keywords": [
+ "constructor",
+ "instantiate"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/instantiator/issues",
+ "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-03-03T08:28:38+00:00"
+ },
+ {
+ "name": "felixfbecker/advanced-json-rpc",
+ "version": "v3.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
+ "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
+ "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
+ "shasum": ""
+ },
+ "require": {
+ "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
+ "php": "^7.1 || ^8.0",
+ "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.0 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "AdvancedJsonRpc\\": "lib/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "ISC"
+ ],
+ "authors": [
+ {
+ "name": "Felix Becker",
+ "email": "felix.b@outlook.com"
+ }
+ ],
+ "description": "A more advanced JSONRPC implementation",
+ "support": {
+ "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
+ "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
+ },
+ "time": "2021-06-11T22:34:44+00:00"
+ },
+ {
+ "name": "felixfbecker/language-server-protocol",
+ "version": "v1.5.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
+ "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/6e82196ffd7c62f7794d778ca52b69feec9f2842",
+ "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "*",
+ "squizlabs/php_codesniffer": "^3.1",
+ "vimeo/psalm": "^4.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "LanguageServerProtocol\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "ISC"
+ ],
+ "authors": [
+ {
+ "name": "Felix Becker",
+ "email": "felix.b@outlook.com"
+ }
+ ],
+ "description": "PHP classes for the Language Server Protocol",
+ "keywords": [
+ "language",
+ "microsoft",
+ "php",
+ "server"
+ ],
+ "support": {
+ "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
+ "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.2"
+ },
+ "time": "2022-03-02T22:36:06+00:00"
+ },
+ {
+ "name": "myclabs/deep-copy",
+ "version": "1.11.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/myclabs/DeepCopy.git",
+ "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
+ "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "conflict": {
+ "doctrine/collections": "<1.6.8",
+ "doctrine/common": "<2.13.3 || >=3,<3.2.2"
+ },
+ "require-dev": {
+ "doctrine/collections": "^1.6.8",
+ "doctrine/common": "^2.13.3 || ^3.2.2",
+ "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/DeepCopy/deep_copy.php"
+ ],
+ "psr-4": {
+ "DeepCopy\\": "src/DeepCopy/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Create deep copies (clones) of your objects",
+ "keywords": [
+ "clone",
+ "copy",
+ "duplicate",
+ "object",
+ "object graph"
+ ],
+ "support": {
+ "issues": "https://github.com/myclabs/DeepCopy/issues",
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
+ },
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-03-03T13:19:32+00:00"
+ },
+ {
+ "name": "netresearch/jsonmapper",
+ "version": "v4.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/cweiske/jsonmapper.git",
+ "reference": "8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d",
+ "reference": "8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-pcre": "*",
+ "ext-reflection": "*",
+ "ext-spl": "*",
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0",
+ "squizlabs/php_codesniffer": "~3.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-0": {
+ "JsonMapper": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "OSL-3.0"
+ ],
+ "authors": [
+ {
+ "name": "Christian Weiske",
+ "email": "cweiske@cweiske.de",
+ "homepage": "http://github.com/cweiske/jsonmapper/",
+ "role": "Developer"
+ }
+ ],
+ "description": "Map nested JSON structures onto PHP classes",
+ "support": {
+ "email": "cweiske@cweiske.de",
+ "issues": "https://github.com/cweiske/jsonmapper/issues",
+ "source": "https://github.com/cweiske/jsonmapper/tree/v4.0.0"
+ },
+ "time": "2020-12-01T19:48:11+00:00"
+ },
+ {
+ "name": "nikic/php-parser",
+ "version": "v4.13.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nikic/PHP-Parser.git",
+ "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
+ "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "php": ">=7.0"
+ },
+ "require-dev": {
+ "ircmaxell/php-yacc": "^0.0.7",
+ "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
+ },
+ "bin": [
+ "bin/php-parse"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.9-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PhpParser\\": "lib/PhpParser"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Nikita Popov"
+ }
+ ],
+ "description": "A PHP parser written in PHP",
+ "keywords": [
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/nikic/PHP-Parser/issues",
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
+ },
+ "time": "2021-11-30T19:35:32+00:00"
+ },
+ {
+ "name": "openlss/lib-array2xml",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nullivex/lib-array2xml.git",
+ "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
+ "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-0": {
+ "LSS": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Bryan Tong",
+ "email": "bryan@nullivex.com",
+ "homepage": "https://www.nullivex.com"
+ },
+ {
+ "name": "Tony Butler",
+ "email": "spudz76@gmail.com",
+ "homepage": "https://www.nullivex.com"
+ }
+ ],
+ "description": "Array2XML conversion library credit to lalit.org",
+ "homepage": "https://www.nullivex.com",
+ "keywords": [
+ "array",
+ "array conversion",
+ "xml",
+ "xml conversion"
+ ],
+ "support": {
+ "issues": "https://github.com/nullivex/lib-array2xml/issues",
+ "source": "https://github.com/nullivex/lib-array2xml/tree/master"
+ },
+ "time": "2019-03-29T20:06:56+00:00"
+ },
+ {
+ "name": "phar-io/manifest",
+ "version": "2.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/manifest.git",
+ "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
+ "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-phar": "*",
+ "ext-xmlwriter": "*",
+ "phar-io/version": "^3.0.1",
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
+ "support": {
+ "issues": "https://github.com/phar-io/manifest/issues",
+ "source": "https://github.com/phar-io/manifest/tree/2.0.3"
+ },
+ "time": "2021-07-20T11:28:43+00:00"
+ },
+ {
+ "name": "phar-io/version",
+ "version": "3.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/version.git",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Library for handling version information and constraints",
+ "support": {
+ "issues": "https://github.com/phar-io/version/issues",
+ "source": "https://github.com/phar-io/version/tree/3.2.1"
+ },
+ "time": "2022-02-21T01:04:05+00:00"
+ },
+ {
+ "name": "php-webdriver/webdriver",
+ "version": "1.12.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-webdriver/php-webdriver.git",
+ "reference": "b27ddf458d273c7d4602106fcaf978aa0b7fe15a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/b27ddf458d273c7d4602106fcaf978aa0b7fe15a",
+ "reference": "b27ddf458d273c7d4602106fcaf978aa0b7fe15a",
+ "shasum": ""
+ },
+ "require": {
+ "ext-curl": "*",
+ "ext-json": "*",
+ "ext-zip": "*",
+ "php": "^5.6 || ~7.0 || ^8.0",
+ "symfony/polyfill-mbstring": "^1.12",
+ "symfony/process": "^2.8 || ^3.1 || ^4.0 || ^5.0 || ^6.0"
+ },
+ "replace": {
+ "facebook/webdriver": "*"
+ },
+ "require-dev": {
+ "ondram/ci-detector": "^2.1 || ^3.5 || ^4.0",
+ "php-coveralls/php-coveralls": "^2.4",
+ "php-mock/php-mock-phpunit": "^1.1 || ^2.0",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpunit/phpunit": "^5.7 || ^7 || ^8 || ^9",
+ "squizlabs/php_codesniffer": "^3.5",
+ "symfony/var-dumper": "^3.3 || ^4.0 || ^5.0 || ^6.0"
+ },
+ "suggest": {
+ "ext-SimpleXML": "For Firefox profile creation"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "lib/Exception/TimeoutException.php"
+ ],
+ "psr-4": {
+ "Facebook\\WebDriver\\": "lib/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "A PHP client for Selenium WebDriver. Previously facebook/webdriver.",
+ "homepage": "https://github.com/php-webdriver/php-webdriver",
+ "keywords": [
+ "Chromedriver",
+ "geckodriver",
+ "php",
+ "selenium",
+ "webdriver"
+ ],
+ "support": {
+ "issues": "https://github.com/php-webdriver/php-webdriver/issues",
+ "source": "https://github.com/php-webdriver/php-webdriver/tree/1.12.1"
+ },
+ "time": "2022-05-03T12:16:34+00:00"
+ },
+ {
+ "name": "phpdocumentor/reflection-common",
+ "version": "2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "opensource@ijaap.nl"
+ }
+ ],
+ "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
+ "homepage": "http://www.phpdoc.org",
+ "keywords": [
+ "FQSEN",
+ "phpDocumentor",
+ "phpdoc",
+ "reflection",
+ "static analysis"
+ ],
+ "support": {
+ "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
+ },
+ "time": "2020-06-27T09:03:43+00:00"
+ },
+ {
+ "name": "phpdocumentor/reflection-docblock",
+ "version": "5.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
+ "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
+ "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
+ "shasum": ""
+ },
+ "require": {
+ "ext-filter": "*",
+ "php": "^7.2 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.2",
+ "phpdocumentor/type-resolver": "^1.3",
+ "webmozart/assert": "^1.9.1"
+ },
+ "require-dev": {
+ "mockery/mockery": "~1.3.2",
+ "psalm/phar": "^4.8"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Mike van Riel",
+ "email": "me@mikevanriel.com"
+ },
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "account@ijaap.nl"
+ }
+ ],
+ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
+ "support": {
+ "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
+ },
+ "time": "2021-10-19T17:43:47+00:00"
+ },
+ {
+ "name": "phpdocumentor/type-resolver",
+ "version": "1.6.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/TypeResolver.git",
+ "reference": "77a32518733312af16a44300404e945338981de3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
+ "reference": "77a32518733312af16a44300404e945338981de3",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.0"
+ },
+ "require-dev": {
+ "ext-tokenizer": "*",
+ "psalm/phar": "^4.8"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Mike van Riel",
+ "email": "me@mikevanriel.com"
+ }
+ ],
+ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
+ "support": {
+ "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
+ },
+ "time": "2022-03-15T21:29:03+00:00"
+ },
+ {
+ "name": "phpmyadmin/coding-standard",
+ "version": "3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpmyadmin/coding-standard.git",
+ "reference": "d187e307c91518ce676ee91a81145dcc90b25d9f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpmyadmin/coding-standard/zipball/d187e307c91518ce676ee91a81145dcc90b25d9f",
+ "reference": "d187e307c91518ce676ee91a81145dcc90b25d9f",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/coding-standard": "^9.0.0",
+ "php": "^7.1 || ^8.0",
+ "squizlabs/php_codesniffer": "^3.6.0"
+ },
+ "type": "phpcodesniffer-standard",
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "The phpMyAdmin Team",
+ "email": "developers@phpmyadmin.net",
+ "homepage": "https://www.phpmyadmin.net/team/"
+ }
+ ],
+ "description": "phpMyAdmin PHP_CodeSniffer Coding Standard",
+ "keywords": [
+ "codesniffer",
+ "phpcs",
+ "phpmyadmin"
+ ],
+ "support": {
+ "issues": "https://github.com/phpmyadmin/coding-standard/issues",
+ "source": "https://github.com/phpmyadmin/coding-standard"
+ },
+ "time": "2021-04-19T04:47:12+00:00"
+ },
+ {
+ "name": "phpspec/prophecy",
+ "version": "v1.15.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpspec/prophecy.git",
+ "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
+ "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/instantiator": "^1.2",
+ "php": "^7.2 || ~8.0, <8.2",
+ "phpdocumentor/reflection-docblock": "^5.2",
+ "sebastian/comparator": "^3.0 || ^4.0",
+ "sebastian/recursion-context": "^3.0 || ^4.0"
+ },
+ "require-dev": {
+ "phpspec/phpspec": "^6.0 || ^7.0",
+ "phpunit/phpunit": "^8.0 || ^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Prophecy\\": "src/Prophecy"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Konstantin Kudryashov",
+ "email": "ever.zet@gmail.com",
+ "homepage": "http://everzet.com"
+ },
+ {
+ "name": "Marcello Duarte",
+ "email": "marcello.duarte@gmail.com"
+ }
+ ],
+ "description": "Highly opinionated mocking framework for PHP 5.3+",
+ "homepage": "https://github.com/phpspec/prophecy",
+ "keywords": [
+ "Double",
+ "Dummy",
+ "fake",
+ "mock",
+ "spy",
+ "stub"
+ ],
+ "support": {
+ "issues": "https://github.com/phpspec/prophecy/issues",
+ "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
+ },
+ "time": "2021-12-08T12:19:24+00:00"
+ },
+ {
+ "name": "phpstan/extension-installer",
+ "version": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpstan/extension-installer.git",
+ "reference": "66c7adc9dfa38b6b5838a9fb728b68a7d8348051"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/66c7adc9dfa38b6b5838a9fb728b68a7d8348051",
+ "reference": "66c7adc9dfa38b6b5838a9fb728b68a7d8348051",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.1 || ^2.0",
+ "php": "^7.1 || ^8.0",
+ "phpstan/phpstan": ">=0.11.6"
+ },
+ "require-dev": {
+ "composer/composer": "^1.8",
+ "phing/phing": "^2.16.3",
+ "php-parallel-lint/php-parallel-lint": "^1.2.0",
+ "phpstan/phpstan-strict-rules": "^0.11 || ^0.12"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "PHPStan\\ExtensionInstaller\\Plugin"
+ },
+ "autoload": {
+ "psr-4": {
+ "PHPStan\\ExtensionInstaller\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Composer plugin for automatic installation of PHPStan extensions",
+ "support": {
+ "issues": "https://github.com/phpstan/extension-installer/issues",
+ "source": "https://github.com/phpstan/extension-installer/tree/1.1.0"
+ },
+ "time": "2020-12-13T13:06:13+00:00"
+ },
+ {
+ "name": "phpstan/phpdoc-parser",
+ "version": "1.5.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpstan/phpdoc-parser.git",
+ "reference": "981cc368a216c988e862a75e526b6076987d1b50"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/981cc368a216c988e862a75e526b6076987d1b50",
+ "reference": "981cc368a216c988e862a75e526b6076987d1b50",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^1.5",
+ "phpstan/phpstan-strict-rules": "^1.0",
+ "phpunit/phpunit": "^9.5",
+ "symfony/process": "^5.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PHPStan\\PhpDocParser\\": [
+ "src/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "PHPDoc parser with support for nullable, intersection and generic types",
+ "support": {
+ "issues": "https://github.com/phpstan/phpdoc-parser/issues",
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/1.5.1"
+ },
+ "time": "2022-05-05T11:32:40+00:00"
+ },
+ {
+ "name": "phpstan/phpstan",
+ "version": "1.6.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpstan/phpstan.git",
+ "reference": "d76498c5531232cb8386ceb6004f7e013138d3ba"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d76498c5531232cb8386ceb6004f7e013138d3ba",
+ "reference": "d76498c5531232cb8386ceb6004f7e013138d3ba",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2|^8.0"
+ },
+ "conflict": {
+ "phpstan/phpstan-shim": "*"
+ },
+ "bin": [
+ "phpstan",
+ "phpstan.phar"
+ ],
+ "type": "library",
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "PHPStan - PHP Static Analysis Tool",
+ "support": {
+ "issues": "https://github.com/phpstan/phpstan/issues",
+ "source": "https://github.com/phpstan/phpstan/tree/1.6.8"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/ondrejmirtes",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/phpstan",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/phpstan",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-05-10T06:54:21+00:00"
+ },
+ {
+ "name": "phpstan/phpstan-phpunit",
+ "version": "1.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpstan/phpstan-phpunit.git",
+ "reference": "4a3c437c09075736285d1cabb5c75bf27ed0bc84"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/4a3c437c09075736285d1cabb5c75bf27ed0bc84",
+ "reference": "4a3c437c09075736285d1cabb5c75bf27ed0bc84",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.5.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<7.0"
+ },
+ "require-dev": {
+ "nikic/php-parser": "^4.13.0",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/phpstan-strict-rules": "^1.0",
+ "phpunit/phpunit": "^9.5"
+ },
+ "type": "phpstan-extension",
+ "extra": {
+ "phpstan": {
+ "includes": [
+ "extension.neon",
+ "rules.neon"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PHPStan\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "PHPUnit extensions and rules for PHPStan",
+ "support": {
+ "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
+ "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.1.1"
+ },
+ "time": "2022-04-20T15:24:25+00:00"
+ },
+ {
+ "name": "phpstan/phpstan-webmozart-assert",
+ "version": "1.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpstan/phpstan-webmozart-assert.git",
+ "reference": "45ee1042e80e8dc1a7fd17dad98fe3bdcd6fb139"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpstan/phpstan-webmozart-assert/zipball/45ee1042e80e8dc1a7fd17dad98fe3bdcd6fb139",
+ "reference": "45ee1042e80e8dc1a7fd17dad98fe3bdcd6fb139",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.6.4"
+ },
+ "require-dev": {
+ "nikic/php-parser": "^4.13.0",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.0",
+ "phpunit/phpunit": "^9.5",
+ "webmozart/assert": "^1.10.0"
+ },
+ "type": "phpstan-extension",
+ "extra": {
+ "phpstan": {
+ "includes": [
+ "extension.neon"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PHPStan\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "PHPStan webmozart/assert extension",
+ "support": {
+ "issues": "https://github.com/phpstan/phpstan-webmozart-assert/issues",
+ "source": "https://github.com/phpstan/phpstan-webmozart-assert/tree/1.1.3"
+ },
+ "time": "2022-05-09T08:53:03+00:00"
+ },
+ {
+ "name": "phpunit/php-code-coverage",
+ "version": "7.0.15",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
+ "reference": "819f92bba8b001d4363065928088de22f25a3a48"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
+ "reference": "819f92bba8b001d4363065928088de22f25a3a48",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-xmlwriter": "*",
+ "php": ">=7.2",
+ "phpunit/php-file-iterator": "^2.0.2",
+ "phpunit/php-text-template": "^1.2.1",
+ "phpunit/php-token-stream": "^3.1.3 || ^4.0",
+ "sebastian/code-unit-reverse-lookup": "^1.0.1",
+ "sebastian/environment": "^4.2.2",
+ "sebastian/version": "^2.0.1",
+ "theseer/tokenizer": "^1.1.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.2.2"
+ },
+ "suggest": {
+ "ext-xdebug": "^2.7.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "7.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
+ "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
+ "keywords": [
+ "coverage",
+ "testing",
+ "xunit"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2021-07-26T12:20:09+00:00"
+ },
+ {
+ "name": "phpunit/php-file-iterator",
+ "version": "2.0.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
+ "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
+ "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "FilterIterator implementation that filters files based on a list of suffixes.",
+ "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+ "keywords": [
+ "filesystem",
+ "iterator"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2021-12-02T12:42:26+00:00"
+ },
+ {
+ "name": "phpunit/php-text-template",
+ "version": "1.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
+ "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+ "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.3"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Simple template engine.",
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+ "keywords": [
+ "template"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
+ "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
+ },
+ "time": "2015-06-21T13:50:34+00:00"
+ },
+ {
+ "name": "phpunit/php-timer",
+ "version": "2.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
+ "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
+ "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Utility class for timing",
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
+ "keywords": [
+ "timer"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-timer/issues",
+ "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:20:02+00:00"
+ },
+ {
+ "name": "phpunit/php-token-stream",
+ "version": "3.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-token-stream.git",
+ "reference": "9c1da83261628cb24b6a6df371b6e312b3954768"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9c1da83261628cb24b6a6df371b6e312b3954768",
+ "reference": "9c1da83261628cb24b6a6df371b6e312b3954768",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Wrapper around PHP's tokenizer extension.",
+ "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
+ "keywords": [
+ "tokenizer"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
+ "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "abandoned": true,
+ "time": "2021-07-26T12:15:06+00:00"
+ },
+ {
+ "name": "phpunit/phpunit",
+ "version": "8.5.26",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/phpunit.git",
+ "reference": "ef117c59fc4c54a979021b26d08a3373e386606d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ef117c59fc4c54a979021b26d08a3373e386606d",
+ "reference": "ef117c59fc4c54a979021b26d08a3373e386606d",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/instantiator": "^1.3.1",
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
+ "ext-xmlwriter": "*",
+ "myclabs/deep-copy": "^1.10.0",
+ "phar-io/manifest": "^2.0.3",
+ "phar-io/version": "^3.0.2",
+ "php": ">=7.2",
+ "phpspec/prophecy": "^1.10.3",
+ "phpunit/php-code-coverage": "^7.0.12",
+ "phpunit/php-file-iterator": "^2.0.4",
+ "phpunit/php-text-template": "^1.2.1",
+ "phpunit/php-timer": "^2.1.2",
+ "sebastian/comparator": "^3.0.2",
+ "sebastian/diff": "^3.0.2",
+ "sebastian/environment": "^4.2.3",
+ "sebastian/exporter": "^3.1.2",
+ "sebastian/global-state": "^3.0.0",
+ "sebastian/object-enumerator": "^3.0.3",
+ "sebastian/resource-operations": "^2.0.1",
+ "sebastian/type": "^1.1.3",
+ "sebastian/version": "^2.0.1"
+ },
+ "require-dev": {
+ "ext-pdo": "*"
+ },
+ "suggest": {
+ "ext-soap": "*",
+ "ext-xdebug": "*",
+ "phpunit/php-invoker": "^2.0.0"
+ },
+ "bin": [
+ "phpunit"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "8.5-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "The PHP Unit Testing framework.",
+ "homepage": "https://phpunit.de/",
+ "keywords": [
+ "phpunit",
+ "testing",
+ "xunit"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit/issues",
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.26"
+ },
+ "funding": [
+ {
+ "url": "https://phpunit.de/sponsors.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2022-04-01T12:34:39+00:00"
+ },
+ {
+ "name": "psalm/plugin-phpunit",
+ "version": "0.16.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/psalm/psalm-plugin-phpunit.git",
+ "reference": "5dd3be04f37a857d52880ef6af2524a441dfef24"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/psalm/psalm-plugin-phpunit/zipball/5dd3be04f37a857d52880ef6af2524a441dfef24",
+ "reference": "5dd3be04f37a857d52880ef6af2524a441dfef24",
+ "shasum": ""
+ },
+ "require": {
+ "composer/package-versions-deprecated": "^1.10",
+ "composer/semver": "^1.4 || ^2.0 || ^3.0",
+ "ext-simplexml": "*",
+ "php": "^7.1 || ^8.0",
+ "vimeo/psalm": "dev-master || dev-4.x || ^4.5"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<7.5"
+ },
+ "require-dev": {
+ "codeception/codeception": "^4.0.3",
+ "php": "^7.3 || ^8.0",
+ "phpunit/phpunit": "^7.5 || ^8.0 || ^9.0",
+ "squizlabs/php_codesniffer": "^3.3.1",
+ "weirdan/codeception-psalm-module": "^0.11.0",
+ "weirdan/prophecy-shim": "^1.0 || ^2.0"
+ },
+ "type": "psalm-plugin",
+ "extra": {
+ "psalm": {
+ "pluginClass": "Psalm\\PhpUnitPlugin\\Plugin"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psalm\\PhpUnitPlugin\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Matt Brown",
+ "email": "github@muglug.com"
+ }
+ ],
+ "description": "Psalm plugin for PHPUnit",
+ "support": {
+ "issues": "https://github.com/psalm/psalm-plugin-phpunit/issues",
+ "source": "https://github.com/psalm/psalm-plugin-phpunit/tree/0.16.1"
+ },
+ "time": "2021-06-18T23:56:46+00:00"
+ },
+ {
+ "name": "roave/security-advisories",
+ "version": "dev-latest",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Roave/SecurityAdvisories.git",
+ "reference": "c99945852fb9e9de3bc89c90f24b4c8ef47668fd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/c99945852fb9e9de3bc89c90f24b4c8ef47668fd",
+ "reference": "c99945852fb9e9de3bc89c90f24b4c8ef47668fd",
+ "shasum": ""
+ },
+ "conflict": {
+ "3f/pygmentize": "<1.2",
+ "admidio/admidio": "<4.1.9",
+ "adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3",
+ "akaunting/akaunting": "<2.1.13",
+ "alextselegidis/easyappointments": "<1.4.3",
+ "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
+ "amazing/media2click": ">=1,<1.3.3",
+ "amphp/artax": "<1.0.6|>=2,<2.0.6",
+ "amphp/http": "<1.0.1",
+ "amphp/http-client": ">=4,<4.4",
+ "anchorcms/anchor-cms": "<=0.12.7",
+ "andreapollastri/cipi": "<=3.1.15",
+ "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6",
+ "appwrite/server-ce": "<0.11.1|>=0.12,<0.12.2",
+ "area17/twill": "<1.2.5|>=2,<2.5.3",
+ "asymmetricrypt/asymmetricrypt": ">=0,<9.9.99",
+ "aws/aws-sdk-php": ">=3,<3.2.1",
+ "bagisto/bagisto": "<0.1.5",
+ "barrelstrength/sprout-base-email": "<1.2.7",
+ "barrelstrength/sprout-forms": "<3.9",
+ "barryvdh/laravel-translation-manager": "<0.6.2",
+ "baserproject/basercms": "<4.5.4",
+ "billz/raspap-webgui": "<=2.6.6",
+ "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
+ "bmarshall511/wordpress_zero_spam": "<5.2.13",
+ "bolt/bolt": "<3.7.2",
+ "bolt/core": "<=4.2",
+ "bottelet/flarepoint": "<2.2.1",
+ "brightlocal/phpwhois": "<=4.2.5",
+ "buddypress/buddypress": "<7.2.1",
+ "bugsnag/bugsnag-laravel": ">=2,<2.0.2",
+ "bytefury/crater": "<6.0.2",
+ "cachethq/cachet": "<2.5.1",
+ "cakephp/cakephp": "<4.0.6",
+ "cardgate/magento2": "<2.0.33",
+ "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
+ "cartalyst/sentry": "<=2.1.6",
+ "catfan/medoo": "<1.7.5",
+ "centreon/centreon": "<20.10.7",
+ "cesnet/simplesamlphp-module-proxystatistics": "<3.1",
+ "codeception/codeception": "<3.1.3|>=4,<4.1.22",
+ "codeigniter/framework": "<=3.0.6",
+ "codeigniter4/framework": "<4.1.9",
+ "codiad/codiad": "<=2.8.4",
+ "composer/composer": "<1.10.26|>=2-alpha.1,<2.2.12|>=2.3,<2.3.5",
+ "concrete5/concrete5": "<9",
+ "concrete5/core": "<8.5.7",
+ "contao-components/mediaelement": ">=2.14.2,<2.21.1",
+ "contao/contao": ">=4,<4.4.56|>=4.5,<4.9.18|>=4.10,<4.11.7|>=4.13,<4.13.3",
+ "contao/core": ">=2,<3.5.39",
+ "contao/core-bundle": "<4.9.18|>=4.10,<4.11.7|>=4.13,<4.13.3|= 4.10.0",
+ "contao/listing-bundle": ">=4,<4.4.8",
+ "contao/managed-edition": "<=1.5",
+ "craftcms/cms": "<3.7.29",
+ "croogo/croogo": "<3.0.7",
+ "cuyz/valinor": ">=0.5,<0.7",
+ "czproject/git-php": "<4.0.3",
+ "darylldoyle/safe-svg": "<1.9.10",
+ "datadog/dd-trace": ">=0.30,<0.30.2",
+ "david-garcia/phpwhois": "<=4.3.1",
+ "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1",
+ "directmailteam/direct-mail": "<5.2.4",
+ "doctrine/annotations": ">=1,<1.2.7",
+ "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2",
+ "doctrine/common": ">=2,<2.4.3|>=2.5,<2.5.1",
+ "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4",
+ "doctrine/doctrine-bundle": "<1.5.2",
+ "doctrine/doctrine-module": "<=0.7.1",
+ "doctrine/mongodb-odm": ">=1,<1.0.2",
+ "doctrine/mongodb-odm-bundle": ">=2,<3.0.1",
+ "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4",
+ "dolibarr/dolibarr": "<16|>= 3.3.beta1, < 13.0.2",
+ "dompdf/dompdf": "<1.2.1",
+ "drupal/core": ">=7,<7.88|>=8,<9.2.13|>=9.3,<9.3.6",
+ "drupal/drupal": ">=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4",
+ "dweeves/magmi": "<=0.7.24",
+ "ecodev/newsletter": "<=4",
+ "ectouch/ectouch": "<=2.7.2",
+ "elgg/elgg": "<3.3.24|>=4,<4.0.5",
+ "endroid/qr-code-bundle": "<3.4.2",
+ "enshrined/svg-sanitize": "<0.15",
+ "erusev/parsedown": "<1.7.2",
+ "ether/logs": "<3.0.4",
+ "ezsystems/demobundle": ">=5.4,<5.4.6.1",
+ "ezsystems/ez-support-tools": ">=2.2,<2.2.3",
+ "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1",
+ "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1",
+ "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24",
+ "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.27",
+ "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1",
+ "ezsystems/ezplatform-kernel": "<=1.2.5|>=1.3,<1.3.17",
+ "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8",
+ "ezsystems/ezplatform-richtext": ">=2.3,<=2.3.7",
+ "ezsystems/ezplatform-user": ">=1,<1.0.1",
+ "ezsystems/ezpublish-kernel": "<=6.13.8.1|>=7,<7.5.28",
+ "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.6,<=2019.3.5.1",
+ "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
+ "ezsystems/repository-forms": ">=2.3,<2.3.2.1",
+ "ezyang/htmlpurifier": "<4.1.1",
+ "facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",
+ "facturascripts/facturascripts": "<2022.6",
+ "feehi/cms": "<=2.1.1",
+ "feehi/feehicms": "<=0.1.3",
+ "fenom/fenom": "<=2.12.1",
+ "firebase/php-jwt": "<2",
+ "flarum/core": ">=1,<=1.0.1",
+ "flarum/sticky": ">=0.1-beta.14,<=0.1-beta.15",
+ "flarum/tags": "<=0.1-beta.13",
+ "fluidtypo3/vhs": "<5.1.1",
+ "fooman/tcpdf": "<6.2.22",
+ "forkcms/forkcms": "<5.11.1",
+ "fossar/tcpdf-parser": "<6.2.22",
+ "francoisjacquet/rosariosis": "<8.1.1",
+ "friendsofsymfony/oauth2-php": "<1.3",
+ "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",
+ "friendsofsymfony/user-bundle": ">=1.2,<1.3.5",
+ "friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
+ "froala/wysiwyg-editor": "<3.2.7",
+ "froxlor/froxlor": "<=0.10.22",
+ "fuel/core": "<1.8.1",
+ "gaoming13/wechat-php-sdk": "<=1.10.2",
+ "genix/cms": "<=1.1.11",
+ "getgrav/grav": "<1.7.31",
+ "getkirby/cms": "<3.5.8",
+ "getkirby/panel": "<2.5.14",
+ "gilacms/gila": "<=1.11.4",
+ "globalpayments/php-sdk": "<2",
+ "google/protobuf": "<3.15",
+ "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",
+ "gree/jose": "<=2.2",
+ "gregwar/rst": "<1.0.3",
+ "grumpydictator/firefly-iii": "<5.6.5",
+ "guzzlehttp/guzzle": ">=4-rc.2,<4.2.4|>=5,<5.3.1|>=6,<6.2.1",
+ "guzzlehttp/psr7": "<1.8.4|>=2,<2.1.1",
+ "helloxz/imgurl": "<=2.31",
+ "hillelcoren/invoice-ninja": "<5.3.35",
+ "hjue/justwriting": "<=1",
+ "hov/jobfair": "<1.0.13|>=2,<2.0.2",
+ "hyn/multi-tenant": ">=5.6,<5.7.2",
+ "ibexa/core": ">=4,<4.0.5|>=4.1,<4.1.2",
+ "ibexa/post-install": "<=1.0.4",
+ "icecoder/icecoder": "<=8.1",
+ "illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10",
+ "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4",
+ "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40",
+ "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
+ "illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75",
+ "impresscms/impresscms": "<=1.4.3",
+ "in2code/femanager": "<5.5.1|>=6,<6.3.1",
+ "intelliants/subrion": "<=4.2.1",
+ "ivankristianto/phpwhois": "<=4.3",
+ "jackalope/jackalope-doctrine-dbal": "<1.7.4",
+ "james-heinrich/getid3": "<1.9.21",
+ "joomla/archive": "<1.1.12|>=2,<2.0.1",
+ "joomla/filesystem": "<1.6.2|>=2,<2.0.1",
+ "joomla/filter": "<1.4.4|>=2,<2.0.1",
+ "joomla/input": ">=2,<2.0.2",
+ "joomla/session": "<1.3.1",
+ "jsdecena/laracom": "<2.0.9",
+ "jsmitty12/phpwhois": "<5.1",
+ "kazist/phpwhois": "<=4.2.6",
+ "kevinpapst/kimai2": "<1.16.7",
+ "kitodo/presentation": "<3.1.2",
+ "klaviyo/magento2-extension": ">=1,<3",
+ "kreait/firebase-php": ">=3.2,<3.8.1",
+ "la-haute-societe/tcpdf": "<6.2.22",
+ "laminas/laminas-form": "<2.17.1|>=3,<3.0.2|>=3.1,<3.1.1",
+ "laminas/laminas-http": "<2.14.2",
+ "laravel/fortify": "<1.11.1",
+ "laravel/framework": "<6.20.42|>=7,<7.30.6|>=8,<8.75",
+ "laravel/laravel": "<=5.8.38",
+ "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10",
+ "latte/latte": "<2.10.8",
+ "lavalite/cms": "<=5.8",
+ "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5",
+ "league/commonmark": "<0.18.3",
+ "league/flysystem": "<1.1.4|>=2,<2.1.1",
+ "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",
+ "librenms/librenms": "<22.2.2",
+ "limesurvey/limesurvey": "<3.27.19",
+ "livehelperchat/livehelperchat": "<=3.91",
+ "livewire/livewire": ">2.2.4,<2.2.6",
+ "lms/routes": "<2.1.1",
+ "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2",
+ "luyadev/yii-helpers": "<1.2.1",
+ "magento/community-edition": ">=2,<2.2.10|>=2.3,<2.3.3",
+ "magento/magento1ce": "<1.9.4.3",
+ "magento/magento1ee": ">=1,<1.14.4.3",
+ "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2-p.2",
+ "marcwillmann/turn": "<0.3.3",
+ "matyhtf/framework": "<3.0.6",
+ "mautic/core": "<4.2|= 2.13.1",
+ "mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35",
+ "microweber/microweber": "<1.3",
+ "miniorange/miniorange-saml": "<1.4.3",
+ "mittwald/typo3_forum": "<1.2.1",
+ "modx/revolution": "<= 2.8.3-pl|<2.8",
+ "monolog/monolog": ">=1.8,<1.12",
+ "moodle/moodle": "<3.9.13|>=3.10-beta,<3.10.10|>=3.11,<3.11.6",
+ "mustache/mustache": ">=2,<2.14.1",
+ "namshi/jose": "<2.2",
+ "neoan3-apps/template": "<1.1.1",
+ "neorazorx/facturascripts": "<2022.4",
+ "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
+ "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3",
+ "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.9.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3",
+ "neos/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
+ "netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15",
+ "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",
+ "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
+ "nilsteampassnet/teampass": "<=2.1.27.36",
+ "nukeviet/nukeviet": "<4.3.4",
+ "nystudio107/craft-seomatic": "<3.4.12",
+ "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
+ "october/backend": "<1.1.2",
+ "october/cms": "= 1.1.1|= 1.0.471|= 1.0.469|>=1.0.319,<1.0.469",
+ "october/october": ">=1.0.319,<1.0.466|>=2.1,<2.1.12",
+ "october/rain": "<1.0.472|>=1.1,<1.1.2",
+ "october/system": "<1.0.475|>=1.1,<1.1.11|>=2,<2.1.27",
+ "onelogin/php-saml": "<2.10.4",
+ "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5",
+ "open-web-analytics/open-web-analytics": "<1.7.4",
+ "opencart/opencart": "<=3.0.3.2",
+ "openid/php-openid": "<2.3",
+ "openmage/magento-lts": "<19.4.15|>=20,<20.0.13",
+ "orchid/platform": ">=9,<9.4.4",
+ "oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7",
+ "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<4.2.8",
+ "padraic/humbug_get_contents": "<1.1.2",
+ "pagarme/pagarme-php": ">=0,<3",
+ "pagekit/pagekit": "<=1.0.18",
+ "paragonie/random_compat": "<2",
+ "passbolt/passbolt_api": "<2.11",
+ "paypal/merchant-sdk-php": "<3.12",
+ "pear/archive_tar": "<1.4.14",
+ "pear/crypt_gpg": "<1.6.7",
+ "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1",
+ "personnummer/personnummer": "<3.0.2",
+ "phanan/koel": "<5.1.4",
+ "phpfastcache/phpfastcache": "<6.1.5|>=7,<7.1.2|>=8,<8.0.7",
+ "phpmailer/phpmailer": "<6.5",
+ "phpmussel/phpmussel": ">=1,<1.6",
+ "phpmyadmin/phpmyadmin": "<5.1.3",
+ "phpoffice/phpexcel": "<1.8",
+ "phpoffice/phpspreadsheet": "<1.16",
+ "phpseclib/phpseclib": "<2.0.31|>=3,<3.0.7",
+ "phpservermon/phpservermon": "<=3.5.2",
+ "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5,<5.6.3",
+ "phpwhois/phpwhois": "<=4.2.5",
+ "phpxmlrpc/extras": "<0.6.1",
+ "pimcore/data-hub": "<1.2.4",
+ "pimcore/pimcore": "<10.4",
+ "pocketmine/bedrock-protocol": "<8.0.2",
+ "pocketmine/pocketmine-mp": "<4.2.9",
+ "pressbooks/pressbooks": "<5.18",
+ "prestashop/autoupgrade": ">=4,<4.10.1",
+ "prestashop/contactform": ">1.0.1,<4.3",
+ "prestashop/gamification": "<2.3.2",
+ "prestashop/prestashop": ">=1.7,<=1.7.8.2",
+ "prestashop/productcomments": ">=4,<4.2.1",
+ "prestashop/ps_emailsubscription": "<2.6.1",
+ "prestashop/ps_facetedsearch": "<3.4.1",
+ "prestashop/ps_linklist": "<3.1",
+ "privatebin/privatebin": "<1.4",
+ "propel/propel": ">=2-alpha.1,<=2-alpha.7",
+ "propel/propel1": ">=1,<=1.7.1",
+ "pterodactyl/panel": "<1.7",
+ "ptrofimov/beanstalk_console": "<1.7.14",
+ "pusher/pusher-php-server": "<2.2.1",
+ "pwweb/laravel-core": "<=0.3.6-beta",
+ "rainlab/debugbar-plugin": "<3.1",
+ "remdex/livehelperchat": "<3.99",
+ "rmccue/requests": ">=1.6,<1.8",
+ "robrichards/xmlseclibs": "<3.0.4",
+ "rudloff/alltube": "<3.0.3",
+ "s-cart/s-cart": "<6.7.2",
+ "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1",
+ "sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9",
+ "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11",
+ "sensiolabs/connect": "<4.2.3",
+ "serluck/phpwhois": "<=4.2.6",
+ "shopware/core": "<=6.4.9",
+ "shopware/platform": "<=6.4.9",
+ "shopware/production": "<=6.3.5.2",
+ "shopware/shopware": "<5.7.9",
+ "shopware/storefront": "<=6.4.8.1",
+ "showdoc/showdoc": "<2.10.4",
+ "silverstripe/admin": ">=1,<1.8.1",
+ "silverstripe/assets": ">=1,<1.4.7|>=1.5,<1.5.2",
+ "silverstripe/cms": "<4.3.6|>=4.4,<4.4.4",
+ "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1",
+ "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
+ "silverstripe/framework": "<4.10.1",
+ "silverstripe/graphql": "<3.5.2|>=4-alpha.1,<4-alpha.2|= 4.0.0-alpha1",
+ "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
+ "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4",
+ "silverstripe/subsites": ">=2,<2.1.1",
+ "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
+ "silverstripe/userforms": "<3",
+ "simple-updates/phpwhois": "<=1",
+ "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4",
+ "simplesamlphp/simplesamlphp": "<1.18.6",
+ "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",
+ "simplito/elliptic-php": "<1.0.6",
+ "slim/slim": "<2.6",
+ "smarty/smarty": "<3.1.43|>=4,<4.0.3",
+ "snipe/snipe-it": "<5.4.3|>= 6.0.0-RC-1, <= 6.0.0-RC-5",
+ "socalnick/scn-social-auth": "<1.15.2",
+ "socialiteproviders/steam": "<1.1",
+ "spipu/html2pdf": "<5.2.4",
+ "spoonity/tcpdf": "<6.2.22",
+ "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
+ "ssddanbrown/bookstack": "<22.2.3",
+ "statamic/cms": "<3.2.39|>=3.3,<3.3.2",
+ "stormpath/sdk": ">=0,<9.9.99",
+ "studio-42/elfinder": "<2.1.59",
+ "subrion/cms": "<=4.2.1",
+ "sulu/sulu": "= 2.4.0-RC1|<1.6.44|>=2,<2.2.18|>=2.3,<2.3.8",
+ "swiftmailer/swiftmailer": ">=4,<5.4.5",
+ "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
+ "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
+ "sylius/grid-bundle": "<1.10.1",
+ "sylius/paypal-plugin": ">=1,<1.2.4|>=1.3,<1.3.1",
+ "sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
+ "sylius/sylius": "<1.9.10|>=1.10,<1.10.11|>=1.11,<1.11.2",
+ "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99",
+ "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4",
+ "symbiote/silverstripe-versionedfiles": "<=2.0.3",
+ "symfont/process": ">=0,<4",
+ "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",
+ "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
+ "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",
+ "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1",
+ "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<=5.3.14|>=5.4.3,<=5.4.3|>=6.0.3,<=6.0.3|= 6.0.3|= 5.4.3|= 5.3.14",
+ "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7",
+ "symfony/http-kernel": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5|>=5.2,<5.3.12",
+ "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
+ "symfony/maker-bundle": ">=1.27,<1.29.2|>=1.30,<1.31.1",
+ "symfony/mime": ">=4.3,<4.3.8",
+ "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
+ "symfony/polyfill": ">=1,<1.10",
+ "symfony/polyfill-php55": ">=1,<1.10",
+ "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
+ "symfony/routing": ">=2,<2.0.19",
+ "symfony/security": ">=2,<2.7.51|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.8",
+ "symfony/security-bundle": ">=2,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11|>=5.3,<5.3.12",
+ "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.9",
+ "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
+ "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8",
+ "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.3.2",
+ "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12",
+ "symfony/symfony": ">=2,<3.4.49|>=4,<4.4.35|>=5,<5.3.12|>=5.3.14,<=5.3.14|>=5.4.3,<=5.4.3|>=6.0.3,<=6.0.3",
+ "symfony/translation": ">=2,<2.0.17",
+ "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3",
+ "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",
+ "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
+ "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7",
+ "t3/dce": ">=2.2,<2.6.2",
+ "t3g/svg-sanitizer": "<1.0.3",
+ "tastyigniter/tastyigniter": "<3.3",
+ "tecnickcom/tcpdf": "<6.2.22",
+ "terminal42/contao-tablelookupwizard": "<3.3.5",
+ "thelia/backoffice-default-template": ">=2.1,<2.1.2",
+ "thelia/thelia": ">=2.1-beta.1,<2.1.3",
+ "theonedemon/phpwhois": "<=4.2.5",
+ "tinymce/tinymce": "<5.10",
+ "titon/framework": ">=0,<9.9.99",
+ "topthink/framework": "<6.0.9",
+ "topthink/think": "<=6.0.9",
+ "topthink/thinkphp": "<=3.2.3",
+ "tribalsystems/zenario": "<9.2.55826",
+ "truckersmp/phpwhois": "<=4.3.1",
+ "twig/twig": "<1.38|>=2,<2.14.11|>=3,<3.3.8",
+ "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.29|>=10,<10.4.19|>=11,<11.5",
+ "typo3/cms-backend": ">=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",
+ "typo3/cms-core": ">=6.2,<=6.2.56|>=7,<=7.6.52|>=8,<=8.7.41|>=9,<9.5.29|>=10,<10.4.19|>=11,<11.5",
+ "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",
+ "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
+ "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3",
+ "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
+ "typo3/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
+ "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10",
+ "ua-parser/uap-php": "<3.8",
+ "unisharp/laravel-filemanager": "<=2.3",
+ "userfrosting/userfrosting": ">=0.3.1,<4.6.3",
+ "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",
+ "vanilla/safecurl": "<0.9.2",
+ "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4",
+ "vrana/adminer": "<4.8.1",
+ "wallabag/tcpdf": "<6.2.22",
+ "wanglelecc/laracms": "<=1.0.3",
+ "web-auth/webauthn-framework": ">=3.3,<3.3.4",
+ "webcoast/deferred-image-processing": "<1.0.2",
+ "wikimedia/parsoid": "<0.12.2",
+ "willdurand/js-translation-bundle": "<2.1.1",
+ "wp-cli/wp-cli": "<2.5",
+ "wpanel/wpanel4-cms": "<=4.3.1",
+ "wwbn/avideo": "<=11.6",
+ "yeswiki/yeswiki": "<4.1",
+ "yetiforce/yetiforce-crm": "<=6.3",
+ "yidashi/yii2cmf": "<=2",
+ "yii2mod/yii2-cms": "<1.9.2",
+ "yiisoft/yii": ">=1.1.14,<1.1.15",
+ "yiisoft/yii2": "<2.0.38",
+ "yiisoft/yii2-bootstrap": "<2.0.4",
+ "yiisoft/yii2-dev": "<2.0.43",
+ "yiisoft/yii2-elasticsearch": "<2.0.5",
+ "yiisoft/yii2-gii": "<2.0.4",
+ "yiisoft/yii2-jui": "<2.0.4",
+ "yiisoft/yii2-redis": "<2.0.8",
+ "yoast-seo-for-typo3/yoast_seo": "<7.2.3",
+ "yourls/yourls": "<=1.8.2",
+ "zendesk/zendesk_api_client_php": "<2.2.11",
+ "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3",
+ "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",
+ "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",
+ "zendframework/zend-db": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.10|>=2.3,<2.3.5",
+ "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",
+ "zendframework/zend-diactoros": "<1.8.4",
+ "zendframework/zend-feed": "<2.10.3",
+ "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",
+ "zendframework/zend-http": "<2.8.1",
+ "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",
+ "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",
+ "zendframework/zend-mail": ">=2,<2.4.11|>=2.5,<2.7.2",
+ "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",
+ "zendframework/zend-session": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.9|>=2.3,<2.3.4",
+ "zendframework/zend-validator": ">=2.3,<2.3.6",
+ "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",
+ "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",
+ "zendframework/zendframework": "<=3",
+ "zendframework/zendframework1": "<1.12.20",
+ "zendframework/zendopenid": ">=2,<2.0.2",
+ "zendframework/zendxml": ">=1,<1.0.1",
+ "zetacomponents/mail": "<1.8.2",
+ "zf-commons/zfc-user": "<1.2.2",
+ "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3",
+ "zfr/zfr-oauth2-server-module": "<0.1.2",
+ "zoujingli/thinkadmin": "<6.0.22"
+ },
+ "default-branch": true,
+ "type": "metapackage",
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com",
+ "role": "maintainer"
+ },
+ {
+ "name": "Ilya Tribusean",
+ "email": "slash3b@gmail.com",
+ "role": "maintainer"
+ }
+ ],
+ "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
+ "support": {
+ "issues": "https://github.com/Roave/SecurityAdvisories/issues",
+ "source": "https://github.com/Roave/SecurityAdvisories/tree/latest"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/Ocramius",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-05-06T13:19:01+00:00"
+ },
+ {
+ "name": "sebastian/code-unit-reverse-lookup",
+ "version": "1.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
+ "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
+ "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Looks up which function or method a line of code belongs to",
+ "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
+ "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:15:22+00:00"
+ },
+ {
+ "name": "sebastian/comparator",
+ "version": "3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/comparator.git",
+ "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
+ "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1",
+ "sebastian/diff": "^3.0",
+ "sebastian/exporter": "^3.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@2bepublished.at"
+ }
+ ],
+ "description": "Provides the functionality to compare PHP values for equality",
+ "homepage": "https://github.com/sebastianbergmann/comparator",
+ "keywords": [
+ "comparator",
+ "compare",
+ "equality"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/comparator/issues",
+ "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T08:04:30+00:00"
+ },
+ {
+ "name": "sebastian/diff",
+ "version": "3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/diff.git",
+ "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
+ "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.5 || ^8.0",
+ "symfony/process": "^2 || ^3.3 || ^4"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
+ }
+ ],
+ "description": "Diff implementation",
+ "homepage": "https://github.com/sebastianbergmann/diff",
+ "keywords": [
+ "diff",
+ "udiff",
+ "unidiff",
+ "unified diff"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
+ "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:59:04+00:00"
+ },
+ {
+ "name": "sebastian/environment",
+ "version": "4.2.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/environment.git",
+ "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
+ "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.5"
+ },
+ "suggest": {
+ "ext-posix": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.2-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Provides functionality to handle HHVM/PHP environments",
+ "homepage": "http://www.github.com/sebastianbergmann/environment",
+ "keywords": [
+ "Xdebug",
+ "environment",
+ "hhvm"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/environment/issues",
+ "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:53:42+00:00"
+ },
+ {
+ "name": "sebastian/exporter",
+ "version": "3.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/exporter.git",
+ "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
+ "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0",
+ "sebastian/recursion-context": "^3.0"
+ },
+ "require-dev": {
+ "ext-mbstring": "*",
+ "phpunit/phpunit": "^8.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.1.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Provides the functionality to export PHP variables for visualization",
+ "homepage": "http://www.github.com/sebastianbergmann/exporter",
+ "keywords": [
+ "export",
+ "exporter"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/exporter/issues",
+ "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2021-11-11T13:51:24+00:00"
+ },
+ {
+ "name": "sebastian/global-state",
+ "version": "3.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/global-state.git",
+ "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/de036ec91d55d2a9e0db2ba975b512cdb1c23921",
+ "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2",
+ "sebastian/object-reflector": "^1.1.1",
+ "sebastian/recursion-context": "^3.0"
+ },
+ "require-dev": {
+ "ext-dom": "*",
+ "phpunit/phpunit": "^8.0"
+ },
+ "suggest": {
+ "ext-uopz": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Snapshotting of global state",
+ "homepage": "http://www.github.com/sebastianbergmann/global-state",
+ "keywords": [
+ "global state"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/global-state/issues",
+ "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2022-02-10T06:55:38+00:00"
+ },
+ {
+ "name": "sebastian/object-enumerator",
+ "version": "3.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-enumerator.git",
+ "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
+ "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0",
+ "sebastian/object-reflector": "^1.1.1",
+ "sebastian/recursion-context": "^3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Traverses array structures and object graphs to enumerate all referenced objects",
+ "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
+ "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:40:27+00:00"
+ },
+ {
+ "name": "sebastian/object-reflector",
+ "version": "1.1.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-reflector.git",
+ "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
+ "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Allows reflection of object attributes, including inherited and non-public ones",
+ "homepage": "https://github.com/sebastianbergmann/object-reflector/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
+ "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:37:18+00:00"
+ },
+ {
+ "name": "sebastian/recursion-context",
+ "version": "3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/recursion-context.git",
+ "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
+ "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ }
+ ],
+ "description": "Provides functionality to recursively process PHP variables",
+ "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:34:24+00:00"
+ },
+ {
+ "name": "sebastian/resource-operations",
+ "version": "2.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/resource-operations.git",
+ "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
+ "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Provides a list of PHP built-in functions that operate on resources",
+ "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
+ "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:30:19+00:00"
+ },
+ {
+ "name": "sebastian/type",
+ "version": "1.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/type.git",
+ "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
+ "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Collection of value objects that represent the types of the PHP type system",
+ "homepage": "https://github.com/sebastianbergmann/type",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/type/issues",
+ "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-30T07:25:11+00:00"
+ },
+ {
+ "name": "sebastian/version",
+ "version": "2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/version.git",
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that helps with managing the version number of Git-hosted PHP projects",
+ "homepage": "https://github.com/sebastianbergmann/version",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/version/issues",
+ "source": "https://github.com/sebastianbergmann/version/tree/master"
+ },
+ "time": "2016-10-03T07:35:21+00:00"
+ },
+ {
+ "name": "slevomat/coding-standard",
+ "version": "7.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/slevomat/coding-standard.git",
+ "reference": "b4f96a8beea515d2d89141b7b9ad72f526d84071"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/b4f96a8beea515d2d89141b7b9ad72f526d84071",
+ "reference": "b4f96a8beea515d2d89141b7b9ad72f526d84071",
+ "shasum": ""
+ },
+ "require": {
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpdoc-parser": "^1.5.1",
+ "squizlabs/php_codesniffer": "^3.6.2"
+ },
+ "require-dev": {
+ "phing/phing": "2.17.3",
+ "php-parallel-lint/php-parallel-lint": "1.3.2",
+ "phpstan/phpstan": "1.4.10|1.6.7",
+ "phpstan/phpstan-deprecation-rules": "1.0.0",
+ "phpstan/phpstan-phpunit": "1.0.0|1.1.1",
+ "phpstan/phpstan-strict-rules": "1.2.3",
+ "phpunit/phpunit": "7.5.20|8.5.21|9.5.20"
+ },
+ "type": "phpcodesniffer-standard",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "7.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "SlevomatCodingStandard\\": "SlevomatCodingStandard"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
+ "support": {
+ "issues": "https://github.com/slevomat/coding-standard/issues",
+ "source": "https://github.com/slevomat/coding-standard/tree/7.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/kukulich",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-05-06T10:58:42+00:00"
+ },
+ {
+ "name": "squizlabs/php_codesniffer",
+ "version": "3.6.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
+ "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/5e4e71592f69da17871dba6e80dd51bce74a351a",
+ "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a",
+ "shasum": ""
+ },
+ "require": {
+ "ext-simplexml": "*",
+ "ext-tokenizer": "*",
+ "ext-xmlwriter": "*",
+ "php": ">=5.4.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
+ },
+ "bin": [
+ "bin/phpcs",
+ "bin/phpcbf"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Greg Sherwood",
+ "role": "lead"
+ }
+ ],
+ "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
+ "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
+ "keywords": [
+ "phpcs",
+ "standards"
+ ],
+ "support": {
+ "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
+ "source": "https://github.com/squizlabs/PHP_CodeSniffer",
+ "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
+ },
+ "time": "2021-12-12T21:44:58+00:00"
+ },
+ {
+ "name": "symfony/console",
+ "version": "v5.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/console.git",
+ "reference": "ffe3aed36c4d60da2cf1b0a1cee6b8f2e5fa881b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/console/zipball/ffe3aed36c4d60da2cf1b0a1cee6b8f2e5fa881b",
+ "reference": "ffe3aed36c4d60da2cf1b0a1cee6b8f2e5fa881b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1|^3",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php73": "^1.9",
+ "symfony/polyfill-php80": "^1.16",
+ "symfony/service-contracts": "^1.1|^2|^3",
+ "symfony/string": "^5.1|^6.0"
+ },
+ "conflict": {
+ "psr/log": ">=3",
+ "symfony/dependency-injection": "<4.4",
+ "symfony/dotenv": "<5.1",
+ "symfony/event-dispatcher": "<4.4",
+ "symfony/lock": "<4.4",
+ "symfony/process": "<4.4"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2",
+ "symfony/config": "^4.4|^5.0|^6.0",
+ "symfony/dependency-injection": "^4.4|^5.0|^6.0",
+ "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
+ "symfony/lock": "^4.4|^5.0|^6.0",
+ "symfony/process": "^4.4|^5.0|^6.0",
+ "symfony/var-dumper": "^4.4|^5.0|^6.0"
+ },
+ "suggest": {
+ "psr/log": "For using the console logger",
+ "symfony/event-dispatcher": "",
+ "symfony/lock": "",
+ "symfony/process": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Console\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Eases the creation of beautiful and testable command line interfaces",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "cli",
+ "command line",
+ "console",
+ "terminal"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/console/tree/v5.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-12T16:02:29+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-grapheme",
+ "version": "v1.25.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+ "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
+ "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.23-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's grapheme_* functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "grapheme",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-11-23T21:10:46+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-normalizer",
+ "version": "v1.25.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
+ "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.23-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "intl",
+ "normalizer",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-02-19T12:13:01+00:00"
+ },
+ {
+ "name": "symfony/process",
+ "version": "v5.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/process.git",
+ "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
+ "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/polyfill-php80": "^1.16"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Process\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Executes commands in sub-processes",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/process/tree/v5.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-08T05:07:18+00:00"
+ },
+ {
+ "name": "symfony/string",
+ "version": "v5.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/string.git",
+ "reference": "3c061a76bff6d6ea427d85e12ad1bb8ed8cd43e8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/string/zipball/3c061a76bff6d6ea427d85e12ad1bb8ed8cd43e8",
+ "reference": "3c061a76bff6d6ea427d85e12ad1bb8ed8cd43e8",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-intl-grapheme": "~1.0",
+ "symfony/polyfill-intl-normalizer": "~1.0",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php80": "~1.15"
+ },
+ "conflict": {
+ "symfony/translation-contracts": ">=3.0"
+ },
+ "require-dev": {
+ "symfony/error-handler": "^4.4|^5.0|^6.0",
+ "symfony/http-client": "^4.4|^5.0|^6.0",
+ "symfony/translation-contracts": "^1.1|^2",
+ "symfony/var-exporter": "^4.4|^5.0|^6.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\String\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "grapheme",
+ "i18n",
+ "string",
+ "unicode",
+ "utf-8",
+ "utf8"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/string/tree/v5.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-19T10:40:37+00:00"
+ },
+ {
+ "name": "theseer/tokenizer",
+ "version": "1.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/theseer/tokenizer.git",
+ "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
+ "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-tokenizer": "*",
+ "ext-xmlwriter": "*",
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
+ "support": {
+ "issues": "https://github.com/theseer/tokenizer/issues",
+ "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theseer",
+ "type": "github"
+ }
+ ],
+ "time": "2021-07-28T10:34:58+00:00"
+ },
+ {
+ "name": "vimeo/psalm",
+ "version": "4.23.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/vimeo/psalm.git",
+ "reference": "f1fe6ff483bf325c803df9f510d09a03fd796f88"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/vimeo/psalm/zipball/f1fe6ff483bf325c803df9f510d09a03fd796f88",
+ "reference": "f1fe6ff483bf325c803df9f510d09a03fd796f88",
+ "shasum": ""
+ },
+ "require": {
+ "amphp/amp": "^2.4.2",
+ "amphp/byte-stream": "^1.5",
+ "composer/package-versions-deprecated": "^1.8.0",
+ "composer/semver": "^1.4 || ^2.0 || ^3.0",
+ "composer/xdebug-handler": "^1.1 || ^2.0 || ^3.0",
+ "dnoegel/php-xdg-base-dir": "^0.1.1",
+ "ext-ctype": "*",
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-simplexml": "*",
+ "ext-tokenizer": "*",
+ "felixfbecker/advanced-json-rpc": "^3.0.3",
+ "felixfbecker/language-server-protocol": "^1.5",
+ "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
+ "nikic/php-parser": "^4.13",
+ "openlss/lib-array2xml": "^1.0",
+ "php": "^7.1|^8",
+ "sebastian/diff": "^3.0 || ^4.0",
+ "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0 || ^6.0",
+ "symfony/polyfill-php80": "^1.25",
+ "webmozart/path-util": "^2.3"
+ },
+ "provide": {
+ "psalm/psalm": "self.version"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.2",
+ "brianium/paratest": "^4.0||^6.0",
+ "ext-curl": "*",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpdocumentor/reflection-docblock": "^5",
+ "phpmyadmin/sql-parser": "5.1.0||dev-master",
+ "phpspec/prophecy": ">=1.9.0",
+ "phpunit/phpunit": "^9.0",
+ "psalm/plugin-phpunit": "^0.16",
+ "slevomat/coding-standard": "^7.0",
+ "squizlabs/php_codesniffer": "^3.5",
+ "symfony/process": "^4.3 || ^5.0 || ^6.0",
+ "weirdan/prophecy-shim": "^1.0 || ^2.0"
+ },
+ "suggest": {
+ "ext-curl": "In order to send data to shepherd",
+ "ext-igbinary": "^2.0.5 is required, used to serialize caching data"
+ },
+ "bin": [
+ "psalm",
+ "psalm-language-server",
+ "psalm-plugin",
+ "psalm-refactor",
+ "psalter"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.x-dev",
+ "dev-3.x": "3.x-dev",
+ "dev-2.x": "2.x-dev",
+ "dev-1.x": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php",
+ "src/spl_object_id.php"
+ ],
+ "psr-4": {
+ "Psalm\\": "src/Psalm/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Matthew Brown"
+ }
+ ],
+ "description": "A static analysis tool for finding errors in PHP applications",
+ "keywords": [
+ "code",
+ "inspection",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/vimeo/psalm/issues",
+ "source": "https://github.com/vimeo/psalm/tree/4.23.0"
+ },
+ "time": "2022-04-28T17:35:49+00:00"
+ },
+ {
+ "name": "webmozart/path-util",
+ "version": "2.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/webmozart/path-util.git",
+ "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
+ "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.3",
+ "webmozart/assert": "~1.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.6",
+ "sebastian/version": "^1.0.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.3-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Webmozart\\PathUtil\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
+ "support": {
+ "issues": "https://github.com/webmozart/path-util/issues",
+ "source": "https://github.com/webmozart/path-util/tree/2.3.0"
+ },
+ "abandoned": "symfony/filesystem",
+ "time": "2015-12-17T08:42:14+00:00"
+ }
+ ],
+ "aliases": [],
+ "minimum-stability": "stable",
+ "stability-flags": {
+ "roave/security-advisories": 20
+ },
+ "prefer-stable": false,
+ "prefer-lowest": false,
+ "platform": {
+ "php": "^7.2.5 || ^8.0",
+ "ext-hash": "*",
+ "ext-iconv": "*",
+ "ext-json": "*",
+ "ext-mysqli": "*",
+ "ext-openssl": "*",
+ "ext-pcre": "*",
+ "ext-xml": "*"
+ },
+ "platform-dev": [],
+ "platform-overrides": {
+ "php": "7.2.5"
+ },
+ "plugin-api-version": "2.2.0"
+}
diff --git a/piedmid/config.inc.php b/piedmid/config.inc.php
new file mode 100644
index 0000000..ed40d89
--- /dev/null
+++ b/piedmid/config.inc.php
@@ -0,0 +1,160 @@
+.
+ */
+
+declare(strict_types=1);
+
+/**
+ * This is needed for cookie based authentication to encrypt password in
+ * cookie. Needs to be 32 chars long.
+ */
+$cfg['blowfish_secret'] = 'gozngpozngpzrgpzkgozfgozhgozjgoz'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
+
+/**
+ * Servers configuration
+ */
+$i = 0;
+
+/**
+ * First server
+ */
+$i++;
+/* Authentication type */
+$cfg['Servers'][$i]['auth_type'] = 'cookie';
+/* Server parameters */
+$cfg['Servers'][$i]['host'] = 'localhost';
+$cfg['Servers'][$i]['compress'] = false;
+$cfg['Servers'][$i]['AllowNoPassword'] = true;
+
+/**
+ * phpMyAdmin configuration storage settings.
+ */
+
+/* User used to manipulate with storage */
+// $cfg['Servers'][$i]['controlhost'] = '';
+// $cfg['Servers'][$i]['controlport'] = '';
+// $cfg['Servers'][$i]['controluser'] = 'pma';
+// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
+
+/* Storage database and tables */
+// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
+// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
+// $cfg['Servers'][$i]['relation'] = 'pma__relation';
+// $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
+// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
+// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
+// $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
+// $cfg['Servers'][$i]['history'] = 'pma__history';
+// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
+// $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
+// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
+// $cfg['Servers'][$i]['recent'] = 'pma__recent';
+// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
+// $cfg['Servers'][$i]['users'] = 'pma__users';
+// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
+// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
+// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
+// $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
+// $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
+// $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
+
+/**
+ * End of servers configuration
+ */
+
+/**
+ * Directories for saving/loading files from server
+ */
+$cfg['UploadDir'] = '';
+$cfg['SaveDir'] = '';
+
+/**
+ * Whether to display icons or text or both icons and text in table row
+ * action segment. Value can be either of 'icons', 'text' or 'both'.
+ * default = 'both'
+ */
+//$cfg['RowActionType'] = 'icons';
+
+/**
+ * Defines whether a user should be displayed a "show all (records)"
+ * button in browse mode or not.
+ * default = false
+ */
+//$cfg['ShowAll'] = true;
+
+/**
+ * Number of rows displayed when browsing a result set. If the result
+ * set contains more rows, "Previous" and "Next".
+ * Possible values: 25, 50, 100, 250, 500
+ * default = 25
+ */
+//$cfg['MaxRows'] = 50;
+
+/**
+ * Disallow editing of binary fields
+ * valid values are:
+ * false allow editing
+ * 'blob' allow editing except for BLOB fields
+ * 'noblob' disallow editing except for BLOB fields
+ * 'all' disallow editing
+ * default = 'blob'
+ */
+//$cfg['ProtectBinary'] = false;
+
+/**
+ * Default language to use, if not browser-defined or user-defined
+ * (you find all languages in the locale folder)
+ * uncomment the desired line:
+ * default = 'en'
+ */
+//$cfg['DefaultLang'] = 'en';
+//$cfg['DefaultLang'] = 'de';
+
+/**
+ * How many columns should be used for table display of a database?
+ * (a value larger than 1 results in some information being hidden)
+ * default = 1
+ */
+//$cfg['PropertiesNumColumns'] = 2;
+
+/**
+ * Set to true if you want DB-based query history.If false, this utilizes
+ * JS-routines to display query history (lost by window close)
+ *
+ * This requires configuration storage enabled, see above.
+ * default = false
+ */
+//$cfg['QueryHistoryDB'] = true;
+
+/**
+ * When using DB-based query history, how many entries should be kept?
+ * default = 25
+ */
+//$cfg['QueryHistoryMax'] = 100;
+
+/**
+ * Whether or not to query the user before sending the error report to
+ * the phpMyAdmin team when a JavaScript error occurs
+ *
+ * Available options
+ * ('ask' | 'always' | 'never')
+ * default = 'ask'
+ */
+//$cfg['SendErrorReports'] = 'always';
+
+/**
+ * 'URLQueryEncryption' defines whether phpMyAdmin will encrypt sensitive data from the URL query string.
+ * 'URLQueryEncryptionSecretKey' is a 32 bytes long secret key used to encrypt/decrypt the URL query string.
+ */
+//$cfg['URLQueryEncryption'] = true;
+//$cfg['URLQueryEncryptionSecretKey'] = '';
+
+/**
+ * You can find more configuration options in the documentation
+ * in the doc/ folder or at .
+ */
diff --git a/piedmid/config.sample.inc.php b/piedmid/config.sample.inc.php
new file mode 100644
index 0000000..34b6a9d
--- /dev/null
+++ b/piedmid/config.sample.inc.php
@@ -0,0 +1,160 @@
+.
+ */
+
+declare(strict_types=1);
+
+/**
+ * This is needed for cookie based authentication to encrypt password in
+ * cookie. Needs to be 32 chars long.
+ */
+$cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
+
+/**
+ * Servers configuration
+ */
+$i = 0;
+
+/**
+ * First server
+ */
+$i++;
+/* Authentication type */
+$cfg['Servers'][$i]['auth_type'] = 'cookie';
+/* Server parameters */
+$cfg['Servers'][$i]['host'] = 'localhost';
+$cfg['Servers'][$i]['compress'] = false;
+$cfg['Servers'][$i]['AllowNoPassword'] = false;
+
+/**
+ * phpMyAdmin configuration storage settings.
+ */
+
+/* User used to manipulate with storage */
+// $cfg['Servers'][$i]['controlhost'] = '';
+// $cfg['Servers'][$i]['controlport'] = '';
+// $cfg['Servers'][$i]['controluser'] = 'pma';
+// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
+
+/* Storage database and tables */
+// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
+// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
+// $cfg['Servers'][$i]['relation'] = 'pma__relation';
+// $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
+// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
+// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
+// $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
+// $cfg['Servers'][$i]['history'] = 'pma__history';
+// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
+// $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
+// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
+// $cfg['Servers'][$i]['recent'] = 'pma__recent';
+// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
+// $cfg['Servers'][$i]['users'] = 'pma__users';
+// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
+// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
+// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
+// $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
+// $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
+// $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
+
+/**
+ * End of servers configuration
+ */
+
+/**
+ * Directories for saving/loading files from server
+ */
+$cfg['UploadDir'] = '';
+$cfg['SaveDir'] = '';
+
+/**
+ * Whether to display icons or text or both icons and text in table row
+ * action segment. Value can be either of 'icons', 'text' or 'both'.
+ * default = 'both'
+ */
+//$cfg['RowActionType'] = 'icons';
+
+/**
+ * Defines whether a user should be displayed a "show all (records)"
+ * button in browse mode or not.
+ * default = false
+ */
+//$cfg['ShowAll'] = true;
+
+/**
+ * Number of rows displayed when browsing a result set. If the result
+ * set contains more rows, "Previous" and "Next".
+ * Possible values: 25, 50, 100, 250, 500
+ * default = 25
+ */
+//$cfg['MaxRows'] = 50;
+
+/**
+ * Disallow editing of binary fields
+ * valid values are:
+ * false allow editing
+ * 'blob' allow editing except for BLOB fields
+ * 'noblob' disallow editing except for BLOB fields
+ * 'all' disallow editing
+ * default = 'blob'
+ */
+//$cfg['ProtectBinary'] = false;
+
+/**
+ * Default language to use, if not browser-defined or user-defined
+ * (you find all languages in the locale folder)
+ * uncomment the desired line:
+ * default = 'en'
+ */
+//$cfg['DefaultLang'] = 'en';
+//$cfg['DefaultLang'] = 'de';
+
+/**
+ * How many columns should be used for table display of a database?
+ * (a value larger than 1 results in some information being hidden)
+ * default = 1
+ */
+//$cfg['PropertiesNumColumns'] = 2;
+
+/**
+ * Set to true if you want DB-based query history.If false, this utilizes
+ * JS-routines to display query history (lost by window close)
+ *
+ * This requires configuration storage enabled, see above.
+ * default = false
+ */
+//$cfg['QueryHistoryDB'] = true;
+
+/**
+ * When using DB-based query history, how many entries should be kept?
+ * default = 25
+ */
+//$cfg['QueryHistoryMax'] = 100;
+
+/**
+ * Whether or not to query the user before sending the error report to
+ * the phpMyAdmin team when a JavaScript error occurs
+ *
+ * Available options
+ * ('ask' | 'always' | 'never')
+ * default = 'ask'
+ */
+//$cfg['SendErrorReports'] = 'always';
+
+/**
+ * 'URLQueryEncryption' defines whether phpMyAdmin will encrypt sensitive data from the URL query string.
+ * 'URLQueryEncryptionSecretKey' is a 32 bytes long secret key used to encrypt/decrypt the URL query string.
+ */
+//$cfg['URLQueryEncryption'] = true;
+//$cfg['URLQueryEncryptionSecretKey'] = '';
+
+/**
+ * You can find more configuration options in the documentation
+ * in the doc/ folder or at .
+ */
diff --git a/piedmid/doc/html/_images/chart.png b/piedmid/doc/html/_images/chart.png
new file mode 100644
index 0000000..14fe4d4
Binary files /dev/null and b/piedmid/doc/html/_images/chart.png differ
diff --git a/piedmid/doc/html/_images/column_chart.png b/piedmid/doc/html/_images/column_chart.png
new file mode 100644
index 0000000..2e5c39b
Binary files /dev/null and b/piedmid/doc/html/_images/column_chart.png differ
diff --git a/piedmid/doc/html/_images/line_chart.png b/piedmid/doc/html/_images/line_chart.png
new file mode 100644
index 0000000..4f32fdb
Binary files /dev/null and b/piedmid/doc/html/_images/line_chart.png differ
diff --git a/piedmid/doc/html/_images/pie_chart.png b/piedmid/doc/html/_images/pie_chart.png
new file mode 100644
index 0000000..fc176af
Binary files /dev/null and b/piedmid/doc/html/_images/pie_chart.png differ
diff --git a/piedmid/doc/html/_images/pma-relations-links.png b/piedmid/doc/html/_images/pma-relations-links.png
new file mode 100644
index 0000000..a96adad
Binary files /dev/null and b/piedmid/doc/html/_images/pma-relations-links.png differ
diff --git a/piedmid/doc/html/_images/pma-relations-relation-link.png b/piedmid/doc/html/_images/pma-relations-relation-link.png
new file mode 100644
index 0000000..a13433d
Binary files /dev/null and b/piedmid/doc/html/_images/pma-relations-relation-link.png differ
diff --git a/piedmid/doc/html/_images/pma-relations-relation-name.png b/piedmid/doc/html/_images/pma-relations-relation-name.png
new file mode 100644
index 0000000..2247c49
Binary files /dev/null and b/piedmid/doc/html/_images/pma-relations-relation-name.png differ
diff --git a/piedmid/doc/html/_images/pma-relations-relation-view-link.png b/piedmid/doc/html/_images/pma-relations-relation-view-link.png
new file mode 100644
index 0000000..20e108a
Binary files /dev/null and b/piedmid/doc/html/_images/pma-relations-relation-view-link.png differ
diff --git a/piedmid/doc/html/_images/query_result_operations.png b/piedmid/doc/html/_images/query_result_operations.png
new file mode 100644
index 0000000..c789e53
Binary files /dev/null and b/piedmid/doc/html/_images/query_result_operations.png differ
diff --git a/piedmid/doc/html/_images/scatter_chart.png b/piedmid/doc/html/_images/scatter_chart.png
new file mode 100644
index 0000000..cbe5338
Binary files /dev/null and b/piedmid/doc/html/_images/scatter_chart.png differ
diff --git a/piedmid/doc/html/_images/spline_chart.png b/piedmid/doc/html/_images/spline_chart.png
new file mode 100644
index 0000000..d6f764f
Binary files /dev/null and b/piedmid/doc/html/_images/spline_chart.png differ
diff --git a/piedmid/doc/html/_images/timeline_chart.png b/piedmid/doc/html/_images/timeline_chart.png
new file mode 100644
index 0000000..ed2781c
Binary files /dev/null and b/piedmid/doc/html/_images/timeline_chart.png differ
diff --git a/piedmid/doc/html/_images/usergroups.png b/piedmid/doc/html/_images/usergroups.png
new file mode 100644
index 0000000..07eaee1
Binary files /dev/null and b/piedmid/doc/html/_images/usergroups.png differ
diff --git a/piedmid/doc/html/_sources/bookmarks.rst.txt b/piedmid/doc/html/_sources/bookmarks.rst.txt
new file mode 100644
index 0000000..0da9194
--- /dev/null
+++ b/piedmid/doc/html/_sources/bookmarks.rst.txt
@@ -0,0 +1,77 @@
+.. _bookmarks:
+
+Bookmarks
+=========
+
+.. note::
+
+ You need to have configured the :ref:`linked-tables` for using bookmarks
+ feature.
+
+Storing bookmarks
+-----------------
+
+Any query that is executed can be marked as a bookmark on the page
+where the results are displayed. You will find a button labeled
+:guilabel:`Bookmark this query` just at the end of the page. As soon as you have
+stored a bookmark, that query is linked to the database.
+You can now access a bookmark dropdown on each page where the query box appears on for that database.
+
+Variables inside bookmarks
+--------------------------
+
+Inside a query, you can also add placeholders for variables.
+This is done by inserting into the query SQL comments between ``/*`` and
+``*/``. The special string ``[VARIABLE{variable-number}]`` is used inside the comments.
+Be aware that the whole query minus the SQL comments must be
+valid by itself, otherwise you won't be able to store it as a bookmark.
+Also, note that the text 'VARIABLE' is case-sensitive.
+
+When you execute the bookmark, everything typed into the *Variables*
+input boxes on the query box page will replace the strings ``/*[VARIABLE{variable-number}]*/`` in
+your stored query.
+
+Also remember, that everything else inside the ``/*[VARIABLE{variable-number}]*/`` string for
+your query will remain the way it is, but will be stripped of the ``/**/``
+chars. So you can use:
+
+.. code-block:: mysql
+
+ /*, [VARIABLE1] AS myname */
+
+which will be expanded to
+
+.. code-block:: mysql
+
+ , VARIABLE1 as myname
+
+in your query, where VARIABLE1 is the string you entered in the Variable 1 input box.
+
+A more complex example, say you have stored this query:
+
+.. code-block:: mysql
+
+ SELECT Name, Address FROM addresses WHERE 1 /* AND Name LIKE '%[VARIABLE1]%' */
+
+If you wish to enter "phpMyAdmin" as the variable for the stored query, the full
+query will be:
+
+.. code-block:: mysql
+
+ SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin%'
+
+**NOTE THE ABSENCE OF SPACES** inside the ``/**/`` construct. Any spaces
+inserted there will be later also inserted as spaces in your query and may lead
+to unexpected results especially when using the variable expansion inside of a
+"LIKE ''" expression.
+
+Browsing a table using a bookmark
+---------------------------------
+
+When a bookmark has the same name as the table, it will be used as the query when browsing
+this table.
+
+.. seealso::
+
+ :ref:`faqbookmark`,
+ :ref:`faq6_22`
diff --git a/piedmid/doc/html/_sources/charts.rst.txt b/piedmid/doc/html/_sources/charts.rst.txt
new file mode 100644
index 0000000..4896d9d
--- /dev/null
+++ b/piedmid/doc/html/_sources/charts.rst.txt
@@ -0,0 +1,143 @@
+.. _charts:
+
+Charts
+======
+
+.. versionadded:: 3.4.0
+
+Since phpMyAdmin version 3.4.0, you can easily generate charts from a SQL query
+by clicking the "Display chart" link in the "Query results operations" area.
+
+.. image:: images/query_result_operations.png
+
+A window layer "Display chart" is shown in which you can customize the chart with the following options.
+
+- Chart type: Allows you to choose the type of chart. Supported types are bar charts, column charts, line charts, spline charts, area charts, pie charts and timeline charts (only the chart types applicable for current series selection are offered).
+- X-axis: Allows to choose the field for the main axis.
+- Series: Allows to choose series for the chart. You can choose multiple series.
+- Title: Allows specifying a title for the chart which is displayed above the chart.
+- X-axis and Y-axis labels: Allows specifying labels for axes.
+- Start row and a number of rows: Allows generating charts only for a specified number of rows of the results set.
+
+.. image:: images/chart.png
+
+Chart implementation
+--------------------
+
+Charts in phpMyAdmin are drawn using `jqPlot `_ jQuery library.
+
+Examples
+--------
+
+Pie chart
++++++++++
+
+Query results for a simple pie chart can be generated with:
+
+.. code-block:: mysql
+
+ SELECT 'Food' AS 'expense',
+ 1250 AS 'amount' UNION
+ SELECT 'Accommodation', 500 UNION
+ SELECT 'Travel', 720 UNION
+ SELECT 'Misc', 220
+
+And the result of this query is:
+
++---------------+--------+
+| expense | amount |
++===============+========+
+| Food | 1250 |
++---------------+--------+
+| Accommodation | 500 |
++---------------+--------+
+| Travel | 720 |
++---------------+--------+
+| Misc | 220 |
++---------------+--------+
+
+Choosing expense as the X-axis and amount in series:
+
+.. image:: images/pie_chart.png
+
+Bar and column chart
+++++++++++++++++++++
+
+Both bar charts and column chats support stacking. Upon selecting one of these types a checkbox is displayed to select stacking.
+
+Query results for a simple bar or column chart can be generated with:
+
+.. code-block:: mysql
+
+ SELECT
+ 'ACADEMY DINOSAUR' AS 'title',
+ 0.99 AS 'rental_rate',
+ 20.99 AS 'replacement_cost' UNION
+ SELECT 'ACE GOLDFINGER', 4.99, 12.99 UNION
+ SELECT 'ADAPTATION HOLES', 2.99, 18.99 UNION
+ SELECT 'AFFAIR PREJUDICE', 2.99, 26.99 UNION
+ SELECT 'AFRICAN EGG', 2.99, 22.99
+
+And the result of this query is:
+
++------------------+--------------+-------------------+
+| title | rental_rate | replacement_cost |
++==================+==============+===================+
+| ACADEMY DINOSAUR | 0.99 | 20.99 |
++------------------+--------------+-------------------+
+| ACE GOLDFINGER | 4.99 | 12.99 |
++------------------+--------------+-------------------+
+| ADAPTATION HOLES | 2.99 | 18.99 |
++------------------+--------------+-------------------+
+| AFFAIR PREJUDICE | 2.99 | 26.99 |
++------------------+--------------+-------------------+
+| AFRICAN EGG | 2.99 | 22.99 |
++------------------+--------------+-------------------+
+
+Choosing title as the X-axis and rental_rate and replacement_cost as series:
+
+.. image:: images/column_chart.png
+
+Scatter chart
++++++++++++++
+
+Scatter charts are useful in identifying the movement of one or more variable(s) compared to another variable.
+
+Using the same data set from bar and column charts section and choosing replacement_cost as the X-axis and rental_rate in series:
+
+.. image:: images/scatter_chart.png
+
+Line, spline and timeline charts
+++++++++++++++++++++++++++++++++
+
+These charts can be used to illustrate trends in underlying data. Spline charts draw smooth lines while timeline charts draw X-axis taking the distances between the dates/time into consideration.
+
+Query results for a simple line, spline or timeline chart can be generated with:
+
+.. code-block:: mysql
+
+ SELECT
+ DATE('2006-01-08') AS 'date',
+ 2056 AS 'revenue',
+ 1378 AS 'cost' UNION
+ SELECT DATE('2006-01-09'), 1898, 2301 UNION
+ SELECT DATE('2006-01-15'), 1560, 600 UNION
+ SELECT DATE('2006-01-17'), 3457, 1565
+
+And the result of this query is:
+
++------------+---------+------+
+| date | revenue | cost |
++============+=========+======+
+| 2016-01-08 | 2056 | 1378 |
++------------+---------+------+
+| 2006-01-09 | 1898 | 2301 |
++------------+---------+------+
+| 2006-01-15 | 1560 | 600 |
++------------+---------+------+
+| 2006-01-17 | 3457 | 1565 |
++------------+---------+------+
+
+.. image:: images/line_chart.png
+.. image:: images/spline_chart.png
+.. image:: images/timeline_chart.png
diff --git a/piedmid/doc/html/_sources/config.rst.txt b/piedmid/doc/html/_sources/config.rst.txt
new file mode 100644
index 0000000..5594823
--- /dev/null
+++ b/piedmid/doc/html/_sources/config.rst.txt
@@ -0,0 +1,3932 @@
+.. index:: config.inc.php
+
+.. _config:
+
+Configuration
+=============
+
+All configurable data is placed in :file:`config.inc.php` in phpMyAdmin's
+toplevel directory. If this file does not exist, please refer to the
+:ref:`setup` section to create one. This file only needs to contain the
+parameters you want to change from their corresponding default value in
+:file:`libraries/config.default.php` (this file is not intended for changes).
+
+.. seealso::
+
+ :ref:`config-examples` for examples of configurations
+
+If a directive is missing from your file, you can just add another line with
+the file. This file is for over-writing the defaults; if you wish to use the
+default value there's no need to add a line here.
+
+The parameters which relate to design (like colors) are placed in
+:file:`themes/themename/scss/_variables.scss`. You might also want to create
+:file:`config.footer.inc.php` and :file:`config.header.inc.php` files to add
+your site specific code to be included on start and end of each page.
+
+.. note::
+
+ Some distributions (eg. Debian or Ubuntu) store :file:`config.inc.php` in
+ ``/etc/phpmyadmin`` instead of within phpMyAdmin sources.
+
+Basic settings
+--------------
+
+.. config:option:: $cfg['PmaAbsoluteUri']
+
+ :type: string
+ :default: ``''``
+
+ .. versionchanged:: 4.6.5
+
+ This setting was not available in phpMyAdmin 4.6.0 - 4.6.4.
+
+ Sets here the complete :term:`URL` (with full path) to your phpMyAdmin
+ installation's directory. E.g.
+ ``https://www.example.net/path_to_your_phpMyAdmin_directory/``. Note also
+ that the :term:`URL` on most of web servers are case sensitive (even on
+ Windows). Don’t forget the trailing slash at the end.
+
+ Starting with version 2.3.0, it is advisable to try leaving this blank. In
+ most cases phpMyAdmin automatically detects the proper setting. Users of
+ port forwarding or complex reverse proxy setup might need to set this.
+
+ A good test is to browse a table, edit a row and save it. There should be
+ an error message if phpMyAdmin is having trouble auto–detecting the correct
+ value. If you get an error that this must be set or if the autodetect code
+ fails to detect your path, please post a bug report on our bug tracker so
+ we can improve the code.
+
+ .. seealso:: :ref:`faq1_40`, :ref:`faq2_5`, :ref:`faq4_7`, :ref:`faq5_16`
+
+.. config:option:: $cfg['PmaNoRelation_DisableWarning']
+
+ :type: boolean
+ :default: false
+
+ Starting with version 2.3.0 phpMyAdmin offers a lot of features to
+ work with master / foreign – tables (see :config:option:`$cfg['Servers'][$i]['pmadb']`).
+
+ If you tried to set this
+ up and it does not work for you, have a look on the :guilabel:`Structure` page
+ of one database where you would like to use it. You will find a link
+ that will analyze why those features have been disabled.
+
+ If you do not want to use those features set this variable to ``true`` to
+ stop this message from appearing.
+
+.. config:option:: $cfg['AuthLog']
+
+ :type: string
+ :default: ``'auto'``
+
+ .. versionadded:: 4.8.0
+
+ This is supported since phpMyAdmin 4.8.0.
+
+ Configure authentication logging destination. Failed (or all, depending on
+ :config:option:`$cfg['AuthLogSuccess']`) authentication attempts will be
+ logged according to this directive:
+
+ ``auto``
+ Let phpMyAdmin automatically choose between ``syslog`` and ``php``.
+ ``syslog``
+ Log using syslog, using AUTH facility, on most systems this ends up
+ in :file:`/var/log/auth.log`.
+ ``php``
+ Log into PHP error log.
+ ``sapi``
+ Log into PHP SAPI logging.
+ ``/path/to/file``
+ Any other value is treated as a filename and log entries are written there.
+
+ .. note::
+
+ When logging to a file, make sure its permissions are correctly set
+ for a web server user, the setup should closely match instructions
+ described in :config:option:`$cfg['TempDir']`:
+
+.. config:option:: $cfg['AuthLogSuccess']
+
+ :type: boolean
+ :default: false
+
+ .. versionadded:: 4.8.0
+
+ This is supported since phpMyAdmin 4.8.0.
+
+ Whether to log successful authentication attempts into
+ :config:option:`$cfg['AuthLog']`.
+
+.. config:option:: $cfg['SuhosinDisableWarning']
+
+ :type: boolean
+ :default: false
+
+ A warning is displayed on the main page if Suhosin is detected.
+
+ You can set this parameter to ``true`` to stop this message from appearing.
+
+.. config:option:: $cfg['LoginCookieValidityDisableWarning']
+
+ :type: boolean
+ :default: false
+
+ A warning is displayed on the main page if the PHP parameter
+ session.gc_maxlifetime is lower than cookie validity configured in phpMyAdmin.
+
+ You can set this parameter to ``true`` to stop this message from appearing.
+
+.. config:option:: $cfg['ServerLibraryDifference_DisableWarning']
+
+ :type: boolean
+ :default: false
+
+ .. deprecated:: 4.7.0
+
+ This setting was removed as the warning has been removed as well.
+
+ A warning is displayed on the main page if there is a difference
+ between the MySQL library and server version.
+
+ You can set this parameter to ``true`` to stop this message from appearing.
+
+.. config:option:: $cfg['ReservedWordDisableWarning']
+
+ :type: boolean
+ :default: false
+
+ This warning is displayed on the Structure page of a table if one or more
+ column names match with words which are MySQL reserved.
+
+ If you want to turn off this warning, you can set it to ``true`` and
+ warning will no longer be displayed.
+
+.. config:option:: $cfg['TranslationWarningThreshold']
+
+ :type: integer
+ :default: 80
+
+ Show warning about incomplete translations on certain threshold.
+
+.. config:option:: $cfg['SendErrorReports']
+
+ :type: string
+ :default: ``'ask'``
+
+ Valid values are:
+
+ * ``ask``
+ * ``always``
+ * ``never``
+
+ Sets the default behavior for JavaScript error reporting.
+
+ Whenever an error is detected in the JavaScript execution, an error report
+ may be sent to the phpMyAdmin team if the user agrees.
+
+ The default setting of ``'ask'`` will ask the user everytime there is a new
+ error report. However you can set this parameter to ``'always'`` to send error
+ reports without asking for confirmation or you can set it to ``'never'`` to
+ never send error reports.
+
+ This directive is available both in the configuration file and in users
+ preferences. If the person in charge of a multi-user installation prefers
+ to disable this feature for all users, a value of ``'never'`` should be
+ set, and the :config:option:`$cfg['UserprefsDisallow']` directive should
+ contain ``'SendErrorReports'`` in one of its array values.
+
+.. config:option:: $cfg['ConsoleEnterExecutes']
+
+ :type: boolean
+ :default: false
+
+ Setting this to ``true`` allows the user to execute queries by pressing Enter
+ instead of Ctrl+Enter. A new line can be inserted by pressing Shift+Enter.
+
+ The behaviour of the console can be temporarily changed using console's
+ settings interface.
+
+.. config:option:: $cfg['AllowThirdPartyFraming']
+
+ :type: boolean|string
+ :default: false
+
+ Setting this to ``true`` allows phpMyAdmin to be included inside a frame,
+ and is a potential security hole allowing cross-frame scripting attacks or
+ clickjacking. Setting this to 'sameorigin' prevents phpMyAdmin to be
+ included from another document in a frame, unless that document belongs
+ to the same domain.
+
+Server connection settings
+--------------------------
+
+.. config:option:: $cfg['Servers']
+
+ :type: array
+ :default: one server array with settings listed below
+
+ Since version 1.4.2, phpMyAdmin supports the administration of multiple
+ MySQL servers. Therefore, a :config:option:`$cfg['Servers']`-array has been
+ added which contains the login information for the different servers. The
+ first :config:option:`$cfg['Servers'][$i]['host']` contains the hostname of
+ the first server, the second :config:option:`$cfg['Servers'][$i]['host']`
+ the hostname of the second server, etc. In
+ :file:`libraries/config.default.php`, there is only one section for server
+ definition, however you can put as many as you need in
+ :file:`config.inc.php`, copy that block or needed parts (you don't have to
+ define all settings, just those you need to change).
+
+ .. note::
+
+ The :config:option:`$cfg['Servers']` array starts with
+ $cfg['Servers'][1]. Do not use $cfg['Servers'][0]. If you want more
+ than one server, just copy following section (including $i
+ increment) several times. There is no need to define full server
+ array, just define values you need to change.
+
+.. config:option:: $cfg['Servers'][$i]['host']
+
+ :type: string
+ :default: ``'localhost'``
+
+ The hostname or :term:`IP` address of your $i-th MySQL-server. E.g.
+ ``localhost``.
+
+ Possible values are:
+
+ * hostname, e.g., ``'localhost'`` or ``'mydb.example.org'``
+ * IP address, e.g., ``'127.0.0.1'`` or ``'192.168.10.1'``
+ * IPv6 address, e.g. ``2001:cdba:0000:0000:0000:0000:3257:9652``
+ * dot - ``'.'``, i.e., use named pipes on windows systems
+ * empty - ``''``, disables this server
+
+ .. note::
+
+ The hostname ``localhost`` is handled specially by MySQL and it uses
+ the socket based connection protocol. To use TCP/IP networking, use an
+ IP address or hostname such as ``127.0.0.1`` or ``db.example.com``. You
+ can configure the path to the socket with
+ :config:option:`$cfg['Servers'][$i]['socket']`.
+
+ .. seealso::
+
+ :config:option:`$cfg['Servers'][$i]['port']`,
+
+
+.. config:option:: $cfg['Servers'][$i]['port']
+
+ :type: string
+ :default: ``''``
+
+ The port-number of your $i-th MySQL-server. Default is 3306 (leave
+ blank).
+
+ .. note::
+
+ If you use ``localhost`` as the hostname, MySQL ignores this port number
+ and connects with the socket, so if you want to connect to a port
+ different from the default port, use ``127.0.0.1`` or the real hostname
+ in :config:option:`$cfg['Servers'][$i]['host']`.
+
+ .. seealso::
+
+ :config:option:`$cfg['Servers'][$i]['host']`,
+
+
+.. config:option:: $cfg['Servers'][$i]['socket']
+
+ :type: string
+ :default: ``''``
+
+ The path to the socket to use. Leave blank for default. To determine
+ the correct socket, check your MySQL configuration or, using the
+ :command:`mysql` command–line client, issue the ``status`` command. Among the
+ resulting information displayed will be the socket used.
+
+ .. note::
+
+ This takes effect only if :config:option:`$cfg['Servers'][$i]['host']` is set
+ to ``localhost``.
+
+ .. seealso::
+
+ :config:option:`$cfg['Servers'][$i]['host']`,
+
+
+.. config:option:: $cfg['Servers'][$i]['ssl']
+
+ :type: boolean
+ :default: false
+
+ Whether to enable SSL for the connection between phpMyAdmin and the MySQL
+ server to secure the connection.
+
+ When using the ``'mysql'`` extension,
+ none of the remaining ``'ssl...'`` configuration options apply.
+
+ We strongly recommend the ``'mysqli'`` extension when using this option.
+
+ .. seealso::
+
+ :ref:`ssl`,
+ :ref:`example-google-ssl`,
+ :ref:`example-aws-ssl`,
+ :config:option:`$cfg['Servers'][$i]['ssl_key']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_cert']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_verify']`
+
+.. config:option:: $cfg['Servers'][$i]['ssl_key']
+
+ :type: string
+ :default: NULL
+
+ Path to the client key file when using SSL for connecting to the MySQL
+ server. This is used to authenticate the client to the server.
+
+ For example:
+
+ .. code-block:: php
+
+ $cfg['Servers'][$i]['ssl_key'] = '/etc/mysql/server-key.pem';
+
+ .. seealso::
+
+ :ref:`ssl`,
+ :ref:`example-google-ssl`,
+ :ref:`example-aws-ssl`,
+ :config:option:`$cfg['Servers'][$i]['ssl']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_cert']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_verify']`
+
+.. config:option:: $cfg['Servers'][$i]['ssl_cert']
+
+ :type: string
+ :default: NULL
+
+ Path to the client certificate file when using SSL for connecting to the
+ MySQL server. This is used to authenticate the client to the server.
+
+ .. seealso::
+
+ :ref:`ssl`,
+ :ref:`example-google-ssl`,
+ :ref:`example-aws-ssl`,
+ :config:option:`$cfg['Servers'][$i]['ssl']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_key']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_verify']`
+
+.. config:option:: $cfg['Servers'][$i]['ssl_ca']
+
+ :type: string
+ :default: NULL
+
+ Path to the CA file when using SSL for connecting to the MySQL server.
+
+ .. seealso::
+
+ :ref:`ssl`,
+ :ref:`example-google-ssl`,
+ :ref:`example-aws-ssl`,
+ :config:option:`$cfg['Servers'][$i]['ssl']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_key']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_cert']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_verify']`
+
+.. config:option:: $cfg['Servers'][$i]['ssl_ca_path']
+
+ :type: string
+ :default: NULL
+
+ Directory containing trusted SSL CA certificates in PEM format.
+
+ .. seealso::
+
+ :ref:`ssl`,
+ :ref:`example-google-ssl`,
+ :ref:`example-aws-ssl`,
+ :config:option:`$cfg['Servers'][$i]['ssl']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_key']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_cert']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_verify']`
+
+.. config:option:: $cfg['Servers'][$i]['ssl_ciphers']
+
+ :type: string
+ :default: NULL
+
+ List of allowable ciphers for SSL connections to the MySQL server.
+
+ .. seealso::
+
+ :ref:`ssl`,
+ :ref:`example-google-ssl`,
+ :ref:`example-aws-ssl`,
+ :config:option:`$cfg['Servers'][$i]['ssl']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_key']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_cert']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_verify']`
+
+.. config:option:: $cfg['Servers'][$i]['ssl_verify']
+
+ :type: boolean
+ :default: true
+
+ .. versionadded:: 4.6.0
+
+ This is supported since phpMyAdmin 4.6.0.
+
+ If your PHP install uses the MySQL Native Driver (mysqlnd), your
+ MySQL server is 5.6 or later, and your SSL certificate is self-signed,
+ there is a chance your SSL connection will fail due to validation.
+ Setting this to ``false`` will disable the validation check.
+
+ Since PHP 5.6.0 it also verifies whether server name matches CN of its
+ certificate. There is currently no way to disable just this check without
+ disabling complete SSL verification.
+
+ .. warning::
+
+ Disabling the certificate verification defeats purpose of using SSL.
+ This will make the connection vulnerable to man in the middle attacks.
+
+ .. note::
+
+ This flag only works with PHP 5.6.16 or later.
+
+ .. seealso::
+
+ :ref:`ssl`,
+ :ref:`example-google-ssl`,
+ :ref:`example-aws-ssl`,
+ :config:option:`$cfg['Servers'][$i]['ssl']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_key']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_cert']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_verify']`
+
+.. config:option:: $cfg['Servers'][$i]['connect_type']
+
+ :type: string
+ :default: ``'tcp'``
+
+ .. deprecated:: 4.7.0
+
+ This setting is no longer used as of 4.7.0, since MySQL decides the
+ connection type based on host, so it could lead to unexpected results.
+ Please set :config:option:`$cfg['Servers'][$i]['host']` accordingly
+ instead.
+
+ What type connection to use with the MySQL server. Your options are
+ ``'socket'`` and ``'tcp'``. It defaults to tcp as that is nearly guaranteed
+ to be available on all MySQL servers, while sockets are not supported on
+ some platforms. To use the socket mode, your MySQL server must be on the
+ same machine as the Web server.
+
+.. config:option:: $cfg['Servers'][$i]['compress']
+
+ :type: boolean
+ :default: false
+
+ Whether to use a compressed protocol for the MySQL server connection
+ or not (experimental).
+
+.. _controlhost:
+.. config:option:: $cfg['Servers'][$i]['controlhost']
+
+ :type: string
+ :default: ``''``
+
+ Permits to use an alternate host to hold the configuration storage
+ data.
+
+ .. seealso::
+
+ :config:option:`$cfg['Servers'][$i]['control_*']`
+
+.. _controlport:
+.. config:option:: $cfg['Servers'][$i]['controlport']
+
+ :type: string
+ :default: ``''``
+
+ Permits to use an alternate port to connect to the host that
+ holds the configuration storage.
+
+ .. seealso::
+
+ :config:option:`$cfg['Servers'][$i]['control_*']`
+
+.. _controluser:
+.. config:option:: $cfg['Servers'][$i]['controluser']
+
+ :type: string
+ :default: ``''``
+
+.. config:option:: $cfg['Servers'][$i]['controlpass']
+
+ :type: string
+ :default: ``''``
+
+ This special account is used to access :ref:`linked-tables`.
+ You don't need it in single user case, but if phpMyAdmin is shared it
+ is recommended to give access to :ref:`linked-tables` only to this user
+ and configure phpMyAdmin to use it. All users will then be able to use
+ the features without need to have direct access to :ref:`linked-tables`.
+
+ .. versionchanged:: 2.2.5
+ those were called ``stduser`` and ``stdpass``
+
+ .. seealso::
+
+ :ref:`setup`,
+ :ref:`authentication_modes`,
+ :ref:`linked-tables`,
+ :config:option:`$cfg['Servers'][$i]['pmadb']`,
+ :config:option:`$cfg['Servers'][$i]['controlhost']`,
+ :config:option:`$cfg['Servers'][$i]['controlport']`,
+ :config:option:`$cfg['Servers'][$i]['control_*']`
+
+.. config:option:: $cfg['Servers'][$i]['control_*']
+
+ :type: mixed
+
+ .. versionadded:: 4.7.0
+
+ You can change any MySQL connection setting for control link (used to
+ access :ref:`linked-tables`) using configuration prefixed with ``control_``.
+
+ This can be used to change any aspect of the control connection, which by
+ default uses same parameters as the user one.
+
+ For example you can configure SSL for the control connection:
+
+ .. code-block:: php
+
+ // Enable SSL
+ $cfg['Servers'][$i]['control_ssl'] = true;
+ // Client secret key
+ $cfg['Servers'][$i]['control_ssl_key'] = '../client-key.pem';
+ // Client certificate
+ $cfg['Servers'][$i]['control_ssl_cert'] = '../client-cert.pem';
+ // Server certification authority
+ $cfg['Servers'][$i]['control_ssl_ca'] = '../server-ca.pem';
+
+ .. seealso::
+
+ :config:option:`$cfg['Servers'][$i]['ssl']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_key']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_cert']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_verify']`
+
+.. config:option:: $cfg['Servers'][$i]['auth_type']
+
+ :type: string
+ :default: ``'cookie'``
+
+ Whether config or cookie or :term:`HTTP` or signon authentication should be
+ used for this server.
+
+ * 'config' authentication (``$auth_type = 'config'``) is the plain old
+ way: username and password are stored in :file:`config.inc.php`.
+ * 'cookie' authentication mode (``$auth_type = 'cookie'``) allows you to
+ log in as any valid MySQL user with the help of cookies.
+ * 'http' authentication allows you to log in as any
+ valid MySQL user via HTTP-Auth.
+ * 'signon' authentication mode (``$auth_type = 'signon'``) allows you to
+ log in from prepared PHP session data or using supplied PHP script.
+
+ .. seealso:: :ref:`authentication_modes`
+
+.. _servers_auth_http_realm:
+.. config:option:: $cfg['Servers'][$i]['auth_http_realm']
+
+ :type: string
+ :default: ``''``
+
+ When using auth\_type = ``http``, this field allows to define a custom
+ :term:`HTTP` Basic Auth Realm which will be displayed to the user. If not
+ explicitly specified in your configuration, a string combined of
+ "phpMyAdmin " and either :config:option:`$cfg['Servers'][$i]['verbose']` or
+ :config:option:`$cfg['Servers'][$i]['host']` will be used.
+
+.. _servers_auth_swekey_config:
+.. config:option:: $cfg['Servers'][$i]['auth_swekey_config']
+
+ :type: string
+ :default: ``''``
+
+ .. versionadded:: 3.0.0.0
+
+ This setting was named `$cfg['Servers'][$i]['auth_feebee_config']` and was renamed before the `3.0.0.0` release.
+
+ .. deprecated:: 4.6.4
+
+ This setting was removed because their servers are no longer working and it was not working correctly.
+
+ .. deprecated:: 4.0.10.17
+
+ This setting was removed in a maintenance release because their servers are no longer working and it was not working correctly.
+
+ The name of the file containing swekey ids and login names for hardware
+ authentication. Leave empty to deactivate this feature.
+
+.. _servers_user:
+.. config:option:: $cfg['Servers'][$i]['user']
+
+ :type: string
+ :default: ``'root'``
+
+.. config:option:: $cfg['Servers'][$i]['password']
+
+ :type: string
+ :default: ``''``
+
+ When using :config:option:`$cfg['Servers'][$i]['auth_type']` set to
+ 'config', this is the user/password-pair which phpMyAdmin will use to
+ connect to the MySQL server. This user/password pair is not needed when
+ :term:`HTTP` or cookie authentication is used
+ and should be empty.
+
+.. _servers_nopassword:
+.. config:option:: $cfg['Servers'][$i]['nopassword']
+
+ :type: boolean
+ :default: false
+
+ .. deprecated:: 4.7.0
+
+ This setting was removed as it can produce unexpected results.
+
+ Allow attempt to log in without password when a login with password
+ fails. This can be used together with http authentication, when
+ authentication is done some other way and phpMyAdmin gets user name
+ from auth and uses empty password for connecting to MySQL. Password
+ login is still tried first, but as fallback, no password method is
+ tried.
+
+.. _servers_only_db:
+.. config:option:: $cfg['Servers'][$i]['only_db']
+
+ :type: string or array
+ :default: ``''``
+
+ If set to a (an array of) database name(s), only this (these)
+ database(s) will be shown to the user. Since phpMyAdmin 2.2.1,
+ this/these database(s) name(s) may contain MySQL wildcards characters
+ ("\_" and "%"): if you want to use literal instances of these
+ characters, escape them (I.E. use ``'my\_db'`` and not ``'my_db'``).
+
+ This setting is an efficient way to lower the server load since the
+ latter does not need to send MySQL requests to build the available
+ database list. But **it does not replace the privileges rules of the
+ MySQL database server**. If set, it just means only these databases
+ will be displayed but **not that all other databases can't be used.**
+
+ An example of using more that one database:
+
+ .. code-block:: php
+
+ $cfg['Servers'][$i]['only_db'] = ['db1', 'db2'];
+
+ .. versionchanged:: 4.0.0
+ Previous versions permitted to specify the display order of
+ the database names via this directive.
+
+.. config:option:: $cfg['Servers'][$i]['hide_db']
+
+ :type: string
+ :default: ``''``
+
+ Regular expression for hiding some databases from unprivileged users.
+ This only hides them from listing, but a user is still able to access
+ them (using, for example, the SQL query area). To limit access, use
+ the MySQL privilege system. For example, to hide all databases
+ starting with the letter "a", use
+
+ .. code-block:: php
+
+ $cfg['Servers'][$i]['hide_db'] = '^a';
+
+ and to hide both "db1" and "db2" use
+
+ .. code-block:: php
+
+ $cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';
+
+ More information on regular expressions can be found in the `PCRE
+ pattern syntax
+ `_ portion
+ of the PHP reference manual.
+
+.. config:option:: $cfg['Servers'][$i]['verbose']
+
+ :type: string
+ :default: ``''``
+
+ Only useful when using phpMyAdmin with multiple server entries. If
+ set, this string will be displayed instead of the hostname in the
+ pull-down menu on the main page. This can be useful if you want to
+ show only certain databases on your system, for example. For HTTP
+ auth, all non-US-ASCII characters will be stripped.
+
+.. config:option:: $cfg['Servers'][$i]['extension']
+
+ :type: string
+ :default: ``'mysqli'``
+
+ .. deprecated:: 4.2.0
+
+ This setting was removed. The ``mysql`` extension will only be used when
+ the ``mysqli`` extension is not available. As of 5.0.0, only the
+ ``mysqli`` extension can be used.
+
+ The PHP MySQL extension to use (``mysql`` or ``mysqli``).
+
+ It is recommended to use ``mysqli`` in all installations.
+
+.. config:option:: $cfg['Servers'][$i]['pmadb']
+
+ :type: string
+ :default: ``''``
+
+ The name of the database containing the phpMyAdmin configuration
+ storage.
+
+ See the :ref:`linked-tables` section in this document to see the benefits of
+ this feature, and for a quick way of creating this database and the needed
+ tables.
+
+ If you are the only user of this phpMyAdmin installation, you can use your
+ current database to store those special tables; in this case, just put your
+ current database name in :config:option:`$cfg['Servers'][$i]['pmadb']`. For a
+ multi-user installation, set this parameter to the name of your central
+ database containing the phpMyAdmin configuration storage.
+
+.. _bookmark:
+.. config:option:: $cfg['Servers'][$i]['bookmarktable']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 2.2.0
+
+ Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This
+ can be useful for queries you often run. To allow the usage of this
+ functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * enter the table name in :config:option:`$cfg['Servers'][$i]['bookmarktable']`
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. _relation:
+.. config:option:: $cfg['Servers'][$i]['relation']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 2.2.4
+
+ Since release 2.2.4 you can describe, in a special 'relation' table,
+ which column is a key in another table (a foreign key). phpMyAdmin
+ currently uses this to:
+
+ * make clickable, when you browse the master table, the data values that
+ point to the foreign table;
+ * display in an optional tool-tip the "display column" when browsing the
+ master table, if you move the mouse to a column containing a foreign
+ key (use also the 'table\_info' table); (see :ref:`faqdisplay`)
+ * in edit/insert mode, display a drop-down list of possible foreign keys
+ (key value and "display column" are shown) (see :ref:`faq6_21`)
+ * display links on the table properties page, to check referential
+ integrity (display missing foreign keys) for each described key;
+ * in query-by-example, create automatic joins (see :ref:`faq6_6`)
+ * enable you to get a :term:`PDF` schema of
+ your database (also uses the table\_coords table).
+
+ The keys can be numeric or character.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the relation table name in :config:option:`$cfg['Servers'][$i]['relation']`
+ * now as normal user open phpMyAdmin and for each one of your tables
+ where you want to use this feature, click :guilabel:`Structure/Relation view/`
+ and choose foreign columns.
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+ .. note::
+
+ In the current version, ``master_db`` must be the same as ``foreign_db``.
+ Those columns have been put in future development of the cross-db
+ relations.
+
+.. _table_info:
+.. config:option:: $cfg['Servers'][$i]['table_info']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 2.3.0
+
+ Since release 2.3.0 you can describe, in a special 'table\_info'
+ table, which column is to be displayed as a tool-tip when moving the
+ cursor over the corresponding key. This configuration variable will
+ hold the name of this special table. To allow the usage of this
+ functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['table\_info']` (e.g.
+ ``pma__table_info``)
+ * then for each table where you want to use this feature, click
+ "Structure/Relation view/Choose column to display" to choose the
+ column.
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+ .. seealso:: :ref:`faqdisplay`
+
+.. _table_coords:
+.. config:option:: $cfg['Servers'][$i]['table_coords']
+
+ :type: string or false
+ :default: ``''``
+
+ The designer feature can save your page layout; by pressing the "Save page" or "Save page as"
+ button in the expanding designer menu, you can customize the layout and have it loaded the next
+ time you use the designer. That layout is stored in this table. Furthermore, this table is also
+ required for using the PDF relation export feature, see
+ :config:option:`$cfg['Servers'][$i]['pdf\_pages']` for additional details.
+
+.. config:option:: $cfg['Servers'][$i]['pdf_pages']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 2.3.0
+
+ Since release 2.3.0 you can have phpMyAdmin create :term:`PDF` pages
+ showing the relations between your tables. Further, the designer interface
+ permits visually managing the relations. To do this it needs two tables
+ "pdf\_pages" (storing information about the available :term:`PDF` pages)
+ and "table\_coords" (storing coordinates where each table will be placed on
+ a :term:`PDF` schema output). You must be using the "relation" feature.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the correct table names in
+ :config:option:`$cfg['Servers'][$i]['table\_coords']` and
+ :config:option:`$cfg['Servers'][$i]['pdf\_pages']`
+
+ This feature can be disabled by setting either of the configurations to ``false``.
+
+ .. seealso:: :ref:`faqpdf`.
+
+.. _designer_coords:
+.. config:option:: $cfg['Servers'][$i]['designer_coords']
+
+ :type: string
+ :default: ``''``
+
+ .. versionadded:: 2.10.0
+
+ Since release 2.10.0 a Designer interface is available; it permits to
+ visually manage the relations.
+
+ .. deprecated:: 4.3.0
+
+ This setting was removed and the Designer table positioning data is now stored into :config:option:`$cfg['Servers'][$i]['table\_coords']`.
+
+ .. note::
+ You can now delete the table `pma__designer_coords` from your phpMyAdmin configuration storage database and remove :config:option:`$cfg['Servers'][$i]['designer\_coords']` from your configuration file.
+
+.. _col_com:
+.. config:option:: $cfg['Servers'][$i]['column_info']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 2.3.0
+
+ This part requires a content update! Since release 2.3.0 you can
+ store comments to describe each column for each table. These will then
+ be shown on the "printview".
+
+ Starting with release 2.5.0, comments are consequently used on the table
+ property pages and table browse view, showing up as tool-tips above the
+ column name (properties page) or embedded within the header of table in
+ browse view. They can also be shown in a table dump. Please see the
+ relevant configuration directives later on.
+
+ Also new in release 2.5.0 is a MIME- transformation system which is also
+ based on the following table structure. See :ref:`transformations` for
+ further information. To use the MIME- transformation system, your
+ column\_info table has to have the three new columns 'mimetype',
+ 'transformation', 'transformation\_options'.
+
+ Starting with release 4.3.0, a new input-oriented transformation system
+ has been introduced. Also, backward compatibility code used in the old
+ transformations system was removed. As a result, an update to column\_info
+ table is necessary for previous transformations and the new input-oriented
+ transformation system to work. phpMyAdmin will upgrade it automatically
+ for you by analyzing your current column\_info table structure.
+ However, if something goes wrong with the auto-upgrade then you can
+ use the SQL script found in ``./sql/upgrade_column_info_4_3_0+.sql``
+ to upgrade it manually.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['column\_info']` (e.g.
+ ``pma__column_info``)
+ * to update your PRE-2.5.0 Column\_comments table use this: and
+ remember that the Variable in :file:`config.inc.php` has been renamed from
+ :samp:`$cfg['Servers'][$i]['column\_comments']` to
+ :config:option:`$cfg['Servers'][$i]['column\_info']`
+
+ .. code-block:: mysql
+
+ ALTER TABLE `pma__column_comments`
+ ADD `mimetype` VARCHAR( 255 ) NOT NULL,
+ ADD `transformation` VARCHAR( 255 ) NOT NULL,
+ ADD `transformation_options` VARCHAR( 255 ) NOT NULL;
+ * to update your PRE-4.3.0 Column\_info table manually use this
+ ``./sql/upgrade_column_info_4_3_0+.sql`` SQL script.
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+ .. note::
+
+ For auto-upgrade functionality to work, your
+ :config:option:`$cfg['Servers'][$i]['controluser']` must have ALTER privilege on
+ ``phpmyadmin`` database. See the `MySQL documentation for GRANT
+ `_ on how to
+ ``GRANT`` privileges to a user.
+
+.. _history:
+.. config:option:: $cfg['Servers'][$i]['history']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 2.5.0
+
+ Since release 2.5.0 you can store your :term:`SQL` history, which means all
+ queries you entered manually into the phpMyAdmin interface. If you don't
+ want to use a table-based history, you can use the JavaScript-based
+ history.
+
+ Using that, all your history items are deleted when closing the window.
+ Using :config:option:`$cfg['QueryHistoryMax']` you can specify an amount of
+ history items you want to have on hold. On every login, this list gets cut
+ to the maximum amount.
+
+ The query history is only available if JavaScript is enabled in
+ your browser.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['history']` (e.g.
+ ``pma__history``)
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. _recent:
+.. config:option:: $cfg['Servers'][$i]['recent']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 3.5.0
+
+ Since release 3.5.0 you can show recently used tables in the
+ navigation panel. It helps you to jump across table directly, without
+ the need to select the database, and then select the table. Using
+ :config:option:`$cfg['NumRecentTables']` you can configure the maximum number
+ of recent tables shown. When you select a table from the list, it will jump to
+ the page specified in :config:option:`$cfg['NavigationTreeDefaultTabTable']`.
+
+ Without configuring the storage, you can still access the recently used tables,
+ but it will disappear after you logout.
+
+ To allow the usage of this functionality persistently:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['recent']` (e.g.
+ ``pma__recent``)
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. _favorite:
+.. config:option:: $cfg['Servers'][$i]['favorite']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 4.2.0
+
+ Since release 4.2.0 you can show a list of selected tables in the
+ navigation panel. It helps you to jump to the table directly, without
+ the need to select the database, and then select the table. When you
+ select a table from the list, it will jump to the page specified in
+ :config:option:`$cfg['NavigationTreeDefaultTabTable']`.
+
+ You can add tables to this list or remove tables from it in database
+ structure page by clicking on the star icons next to table names. Using
+ :config:option:`$cfg['NumFavoriteTables']` you can configure the maximum
+ number of favorite tables shown.
+
+ Without configuring the storage, you can still access the favorite tables,
+ but it will disappear after you logout.
+
+ To allow the usage of this functionality persistently:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['favorite']` (e.g.
+ ``pma__favorite``)
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. _table_uiprefs:
+.. config:option:: $cfg['Servers'][$i]['table_uiprefs']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 3.5.0
+
+ Since release 3.5.0 phpMyAdmin can be configured to remember several
+ things (sorted column :config:option:`$cfg['RememberSorting']`, column order,
+ and column visibility from a database table) for browsing tables. Without
+ configuring the storage, these features still can be used, but the values will
+ disappear after you logout.
+
+ To allow the usage of these functionality persistently:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['table\_uiprefs']` (e.g.
+ ``pma__table_uiprefs``)
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. config:option:: $cfg['Servers'][$i]['users']
+
+ :type: string or false
+ :default: ``''``
+
+ The table used by phpMyAdmin to store user name information for associating with user groups.
+ See the next entry on :config:option:`$cfg['Servers'][$i]['usergroups']` for more details
+ and the suggested settings.
+
+.. config:option:: $cfg['Servers'][$i]['usergroups']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 4.1.0
+
+ Since release 4.1.0 you can create different user groups with menu items
+ attached to them. Users can be assigned to these groups and the logged in
+ user would only see menu items configured to the usergroup they are assigned to.
+ To do this it needs two tables "usergroups" (storing allowed menu items for each
+ user group) and "users" (storing users and their assignments to user groups).
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the correct table names in
+ :config:option:`$cfg['Servers'][$i]['users']` (e.g. ``pma__users``) and
+ :config:option:`$cfg['Servers'][$i]['usergroups']` (e.g. ``pma__usergroups``)
+
+ This feature can be disabled by setting either of the configurations to ``false``.
+
+ .. seealso:: :ref:`configurablemenus`
+
+.. _navigationhiding:
+.. config:option:: $cfg['Servers'][$i]['navigationhiding']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 4.1.0
+
+ Since release 4.1.0 you can hide/show items in the navigation tree.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['navigationhiding']` (e.g.
+ ``pma__navigationhiding``)
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. _central_columns:
+.. config:option:: $cfg['Servers'][$i]['central_columns']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 4.3.0
+
+ Since release 4.3.0 you can have a central list of columns per database.
+ You can add/remove columns to the list as per your requirement. These columns
+ in the central list will be available to use while you create a new column for
+ a table or create a table itself. You can select a column from central list
+ while creating a new column, it will save you from writing the same column definition
+ over again or from writing different names for similar column.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['central_columns']` (e.g.
+ ``pma__central_columns``)
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. _designer_settings:
+.. config:option:: $cfg['Servers'][$i]['designer_settings']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 4.5.0
+
+ Since release 4.5.0 your designer settings can be remembered.
+ Your choice regarding 'Angular/Direct Links', 'Snap to Grid', 'Toggle Relation Lines',
+ 'Small/Big All', 'Move Menu' and 'Pin Text' can be remembered persistently.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['designer_settings']` (e.g.
+ ``pma__designer_settings``)
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. _savedsearches:
+.. config:option:: $cfg['Servers'][$i]['savedsearches']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 4.2.0
+
+ Since release 4.2.0 you can save and load query-by-example searches from the Database > Query panel.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['savedsearches']` (e.g.
+ ``pma__savedsearches``)
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. _export_templates:
+.. config:option:: $cfg['Servers'][$i]['export_templates']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 4.5.0
+
+ Since release 4.5.0 you can save and load export templates.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['export_templates']` (e.g.
+ ``pma__export_templates``)
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. _tracking:
+.. config:option:: $cfg['Servers'][$i]['tracking']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 3.3.x
+
+ Since release 3.3.x a tracking mechanism is available. It helps you to
+ track every :term:`SQL` command which is
+ executed by phpMyAdmin. The mechanism supports logging of data
+ manipulation and data definition statements. After enabling it you can
+ create versions of tables.
+
+ The creation of a version has two effects:
+
+ * phpMyAdmin saves a snapshot of the table, including structure and
+ indexes.
+ * phpMyAdmin logs all commands which change the structure and/or data of
+ the table and links these commands with the version number.
+
+ Of course you can view the tracked changes. On the :guilabel:`Tracking`
+ page a complete report is available for every version. For the report you
+ can use filters, for example you can get a list of statements within a date
+ range. When you want to filter usernames you can enter \* for all names or
+ you enter a list of names separated by ','. In addition you can export the
+ (filtered) report to a file or to a temporary database.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['tracking']` (e.g.
+ ``pma__tracking``)
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. _tracking2:
+.. config:option:: $cfg['Servers'][$i]['tracking_version_auto_create']
+
+ :type: boolean
+ :default: false
+
+ Whether the tracking mechanism creates versions for tables and views
+ automatically.
+
+ If this is set to true and you create a table or view with
+
+ * CREATE TABLE ...
+ * CREATE VIEW ...
+
+ and no version exists for it, the mechanism will create a version for
+ you automatically.
+
+.. _tracking3:
+.. config:option:: $cfg['Servers'][$i]['tracking_default_statements']
+
+ :type: string
+ :default: ``'CREATE TABLE,ALTER TABLE,DROP TABLE,RENAME TABLE,CREATE INDEX,DROP INDEX,INSERT,UPDATE,DELETE,TRUNCATE,REPLACE,CREATE VIEW,ALTER VIEW,DROP VIEW,CREATE DATABASE,ALTER DATABASE,DROP DATABASE'``
+
+ Defines the list of statements the auto-creation uses for new
+ versions.
+
+.. _tracking4:
+.. config:option:: $cfg['Servers'][$i]['tracking_add_drop_view']
+
+ :type: boolean
+ :default: true
+
+ Whether a `DROP VIEW IF EXISTS` statement will be added as first line to
+ the log when creating a view.
+
+.. _tracking5:
+.. config:option:: $cfg['Servers'][$i]['tracking_add_drop_table']
+
+ :type: boolean
+ :default: true
+
+ Whether a `DROP TABLE IF EXISTS` statement will be added as first line
+ to the log when creating a table.
+
+.. _tracking6:
+.. config:option:: $cfg['Servers'][$i]['tracking_add_drop_database']
+
+ :type: boolean
+ :default: true
+
+ Whether a `DROP DATABASE IF EXISTS` statement will be added as first
+ line to the log when creating a database.
+
+.. _userconfig:
+.. config:option:: $cfg['Servers'][$i]['userconfig']
+
+ :type: string or false
+ :default: ``''``
+
+ .. versionadded:: 3.4.x
+
+ Since release 3.4.x phpMyAdmin allows users to set most preferences by
+ themselves and store them in the database.
+
+ If you don't allow for storing preferences in
+ :config:option:`$cfg['Servers'][$i]['pmadb']`, users can still personalize
+ phpMyAdmin, but settings will be saved in browser's local storage, or, it
+ is is unavailable, until the end of session.
+
+ To allow the usage of this functionality:
+
+ * set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
+ * put the table name in :config:option:`$cfg['Servers'][$i]['userconfig']`
+
+ This feature can be disabled by setting the configuration to ``false``.
+
+.. config:option:: $cfg['Servers'][$i]['MaxTableUiprefs']
+
+ :type: integer
+ :default: 100
+
+ Maximum number of rows saved in
+ :config:option:`$cfg['Servers'][$i]['table_uiprefs']` table.
+
+ When tables are dropped or renamed,
+ :config:option:`$cfg['Servers'][$i]['table_uiprefs']` may contain invalid data
+ (referring to tables which no longer exist). We only keep this number of newest
+ rows in :config:option:`$cfg['Servers'][$i]['table_uiprefs']` and automatically
+ delete older rows.
+
+.. config:option:: $cfg['Servers'][$i]['SessionTimeZone']
+
+ :type: string
+ :default: ``''``
+
+ Sets the time zone used by phpMyAdmin. Leave blank to use the time zone of your
+ database server. Possible values are explained at
+ https://dev.mysql.com/doc/refman/8.0/en/time-zone-support.html
+
+ This is useful when your database server uses a time zone which is different from the
+ time zone you want to use in phpMyAdmin.
+
+.. config:option:: $cfg['Servers'][$i]['AllowRoot']
+
+ :type: boolean
+ :default: true
+
+ Whether to allow root access. This is just a shortcut for the
+ :config:option:`$cfg['Servers'][$i]['AllowDeny']['rules']` below.
+
+.. config:option:: $cfg['Servers'][$i]['AllowNoPassword']
+
+ :type: boolean
+ :default: false
+
+ Whether to allow logins without a password. The default value of
+ ``false`` for this parameter prevents unintended access to a MySQL
+ server with was left with an empty password for root or on which an
+ anonymous (blank) user is defined.
+
+.. _servers_allowdeny_order:
+.. config:option:: $cfg['Servers'][$i]['AllowDeny']['order']
+
+ :type: string
+ :default: ``''``
+
+ If your rule order is empty, then :term:`IP`
+ authorization is disabled.
+
+ If your rule order is set to
+ ``'deny,allow'`` then the system applies all deny rules followed by
+ allow rules. Access is allowed by default. Any client which does not
+ match a Deny command or does match an Allow command will be allowed
+ access to the server.
+
+ If your rule order is set to ``'allow,deny'``
+ then the system applies all allow rules followed by deny rules. Access
+ is denied by default. Any client which does not match an Allow
+ directive or does match a Deny directive will be denied access to the
+ server.
+
+ If your rule order is set to ``'explicit'``, authorization is
+ performed in a similar fashion to rule order 'deny,allow', with the
+ added restriction that your host/username combination **must** be
+ listed in the *allow* rules, and not listed in the *deny* rules. This
+ is the **most** secure means of using Allow/Deny rules, and was
+ available in Apache by specifying allow and deny rules without setting
+ any order.
+
+ Please also see :config:option:`$cfg['TrustedProxies']` for
+ detecting IP address behind proxies.
+
+.. _servers_allowdeny_rules:
+.. config:option:: $cfg['Servers'][$i]['AllowDeny']['rules']
+
+ :type: array of strings
+ :default: array()
+
+ The general format for the rules is as such:
+
+ .. code-block:: none
+
+ <'allow' | 'deny'> [from]
+
+ If you wish to match all users, it is possible to use a ``'%'`` as a
+ wildcard in the *username* field.
+
+ There are a few shortcuts you can
+ use in the *ipmask* field as well (please note that those containing
+ SERVER\_ADDRESS might not be available on all webservers):
+
+ .. code-block:: none
+
+ 'all' -> 0.0.0.0/0
+ 'localhost' -> 127.0.0.1/8
+ 'localnetA' -> SERVER_ADDRESS/8
+ 'localnetB' -> SERVER_ADDRESS/16
+ 'localnetC' -> SERVER_ADDRESS/24
+
+ Having an empty rule list is equivalent to either using ``'allow %
+ from all'`` if your rule order is set to ``'deny,allow'`` or ``'deny %
+ from all'`` if your rule order is set to ``'allow,deny'`` or
+ ``'explicit'``.
+
+ For the :term:`IP Address` matching
+ system, the following work:
+
+ * ``xxx.xxx.xxx.xxx`` (an exact :term:`IP Address`)
+ * ``xxx.xxx.xxx.[yyy-zzz]`` (an :term:`IP Address` range)
+ * ``xxx.xxx.xxx.xxx/nn`` (CIDR, Classless Inter-Domain Routing type :term:`IP` addresses)
+
+ But the following does not work:
+
+ * ``xxx.xxx.xxx.xx[yyy-zzz]`` (partial :term:`IP` address range)
+
+ For :term:`IPv6` addresses, the following work:
+
+ * ``xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx`` (an exact :term:`IPv6` address)
+ * ``xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:[yyyy-zzzz]`` (an :term:`IPv6` address range)
+ * ``xxxx:xxxx:xxxx:xxxx/nn`` (CIDR, Classless Inter-Domain Routing type :term:`IPv6` addresses)
+
+ But the following does not work:
+
+ * ``xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xx[yyy-zzz]`` (partial :term:`IPv6` address range)
+
+ Examples:
+
+ .. code-block:: none
+
+ $cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny';
+ $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow bob from all'];
+ // Allow only 'bob' to connect from any host
+
+ $cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny';
+ $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow mary from 192.168.100.[50-100]'];
+ // Allow only 'mary' to connect from host 192.168.100.50 through 192.168.100.100
+
+ $cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny';
+ $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow % from 192.168.[5-6].10'];
+ // Allow any user to connect from host 192.168.5.10 or 192.168.6.10
+
+ $cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny';
+ $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow root from 192.168.5.50','allow % from 192.168.6.10'];
+ // Allow any user to connect from 192.168.6.10, and additionally allow root to connect from 192.168.5.50
+
+.. config:option:: $cfg['Servers'][$i]['DisableIS']
+
+ :type: boolean
+ :default: false
+
+ Disable using ``INFORMATION_SCHEMA`` to retrieve information (use
+ ``SHOW`` commands instead), because of speed issues when many
+ databases are present.
+
+ .. note::
+
+ Enabling this option might give you a big performance boost on older
+ MySQL servers.
+
+.. config:option:: $cfg['Servers'][$i]['SignonScript']
+
+ :type: string
+ :default: ``''``
+
+ .. versionadded:: 3.5.0
+
+ Name of PHP script to be sourced and executed to obtain login
+ credentials. This is alternative approach to session based single
+ signon. The script has to provide a function called
+ ``get_login_credentials`` which returns list of username and
+ password, accepting single parameter of existing username (can be
+ empty). See :file:`examples/signon-script.php` for an example:
+
+ .. literalinclude:: ../examples/signon-script.php
+ :language: php
+
+ .. seealso:: :ref:`auth_signon`
+
+.. config:option:: $cfg['Servers'][$i]['SignonSession']
+
+ :type: string
+ :default: ``''``
+
+ Name of session which will be used for signon authentication method.
+ You should use something different than ``phpMyAdmin``, because this
+ is session which phpMyAdmin uses internally. Takes effect only if
+ :config:option:`$cfg['Servers'][$i]['SignonScript']` is not configured.
+
+ .. seealso:: :ref:`auth_signon`
+
+.. config:option:: $cfg['Servers'][$i]['SignonCookieParams']
+
+ :type: array
+ :default: ``array()``
+
+ .. versionadded:: 4.7.0
+
+ An associative array of session cookie parameters of other authentication system.
+ It is not needed if the other system doesn't use session_set_cookie_params().
+ Keys should include 'lifetime', 'path', 'domain', 'secure' or 'httponly'.
+ Valid values are mentioned in `session_get_cookie_params `_, they should be set to same values as the
+ other application uses. Takes effect only if
+ :config:option:`$cfg['Servers'][$i]['SignonScript']` is not configured.
+
+ .. seealso:: :ref:`auth_signon`
+
+.. config:option:: $cfg['Servers'][$i]['SignonURL']
+
+ :type: string
+ :default: ``''``
+
+ :term:`URL` where user will be redirected
+ to log in for signon authentication method. Should be absolute
+ including protocol.
+
+ .. seealso:: :ref:`auth_signon`
+
+.. config:option:: $cfg['Servers'][$i]['LogoutURL']
+
+ :type: string
+ :default: ``''``
+
+ :term:`URL` where user will be redirected
+ after logout (doesn't affect config authentication method). Should be
+ absolute including protocol.
+
+.. config:option:: $cfg['Servers'][$i]['hide_connection_errors']
+
+ :type: boolean
+ :default: false
+
+ .. versionadded:: 4.9.8
+
+ Whether to show or hide detailed MySQL/MariaDB connection errors on the login page.
+
+ .. note::
+
+ This error message can contain the target database server hostname or IP address,
+ which may reveal information about your network to an attacker.
+
+Generic settings
+----------------
+
+.. config:option:: $cfg['DisableShortcutKeys']
+
+ :type: boolean
+ :default: false
+
+ You can disable phpMyAdmin shortcut keys by setting :config:option:`$cfg['DisableShortcutKeys']` to false.
+
+.. config:option:: $cfg['ServerDefault']
+
+ :type: integer
+ :default: 1
+
+ If you have more than one server configured, you can set
+ :config:option:`$cfg['ServerDefault']` to any one of them to autoconnect to that
+ server when phpMyAdmin is started, or set it to 0 to be given a list
+ of servers without logging in.
+
+ If you have only one server configured,
+ :config:option:`$cfg['ServerDefault']` MUST be set to that server.
+
+.. config:option:: $cfg['VersionCheck']
+
+ :type: boolean
+ :default: true
+
+ Enables check for latest versions using JavaScript on the main phpMyAdmin
+ page or by directly accessing `index.php?route=/version-check`.
+
+ .. note::
+
+ This setting can be adjusted by your vendor.
+
+.. config:option:: $cfg['ProxyUrl']
+
+ :type: string
+ :default: ``''``
+
+ The url of the proxy to be used when phpmyadmin needs to access the outside
+ internet such as when retrieving the latest version info or submitting error
+ reports. You need this if the server where phpMyAdmin is installed does not
+ have direct access to the internet.
+ The format is: "hostname:portnumber"
+
+.. config:option:: $cfg['ProxyUser']
+
+ :type: string
+ :default: ``''``
+
+ The username for authenticating with the proxy. By default, no
+ authentication is performed. If a username is supplied, Basic
+ Authentication will be performed. No other types of authentication
+ are currently supported.
+
+.. config:option:: $cfg['ProxyPass']
+
+ :type: string
+ :default: ``''``
+
+ The password for authenticating with the proxy.
+
+.. config:option:: $cfg['MaxDbList']
+
+ :type: integer
+ :default: 100
+
+ The maximum number of database names to be displayed in the main panel's
+ database list.
+
+.. config:option:: $cfg['MaxTableList']
+
+ :type: integer
+ :default: 250
+
+ The maximum number of table names to be displayed in the main panel's
+ list (except on the Export page).
+
+.. config:option:: $cfg['ShowHint']
+
+ :type: boolean
+ :default: true
+
+ Whether or not to show hints (for example, hints when hovering over
+ table headers).
+
+.. config:option:: $cfg['MaxCharactersInDisplayedSQL']
+
+ :type: integer
+ :default: 1000
+
+ The maximum number of characters when a :term:`SQL` query is displayed. The
+ default limit of 1000 should be correct to avoid the display of tons of
+ hexadecimal codes that represent BLOBs, but some users have real
+ :term:`SQL` queries that are longer than 1000 characters. Also, if a
+ query's length exceeds this limit, this query is not saved in the history.
+
+.. config:option:: $cfg['PersistentConnections']
+
+ :type: boolean
+ :default: false
+
+ Whether `persistent connections `_ should be used or not.
+
+.. seealso::
+
+ `mysqli documentation for persistent connections `_
+
+.. config:option:: $cfg['ForceSSL']
+
+ :type: boolean
+ :default: false
+
+ .. deprecated:: 4.6.0
+
+ This setting is no longer available since phpMyAdmin 4.6.0. Please
+ adjust your webserver instead.
+
+ Whether to force using https while accessing phpMyAdmin. In a reverse
+ proxy setup, setting this to ``true`` is not supported.
+
+ .. note::
+
+ In some setups (like separate SSL proxy or load balancer) you might
+ have to set :config:option:`$cfg['PmaAbsoluteUri']` for correct
+ redirection.
+
+.. config:option:: $cfg['MysqlSslWarningSafeHosts']
+
+ :type: array
+ :default: ``['127.0.0.1', 'localhost']``
+
+ This search is case-sensitive and will match the exact string only.
+ If your setup does not use SSL but is safe because you are using a
+ local connection or private network, you can add your hostname or :term:`IP` to the list.
+ You can also remove the default entries to only include yours.
+
+ This check uses the value of :config:option:`$cfg['Servers'][$i]['host']`.
+
+ .. versionadded:: 5.1.0
+
+ Example configuration
+
+ .. code-block:: php
+
+ $cfg['MysqlSslWarningSafeHosts'] = ['127.0.0.1', 'localhost', 'mariadb.local'];
+
+
+.. config:option:: $cfg['ExecTimeLimit']
+
+ :type: integer [number of seconds]
+ :default: 300
+
+ Set the number of seconds a script is allowed to run. If seconds is
+ set to zero, no time limit is imposed. This setting is used while
+ importing/exporting dump files but has
+ no effect when PHP is running in safe mode.
+
+.. config:option:: $cfg['SessionSavePath']
+
+ :type: string
+ :default: ``''``
+
+ Path for storing session data (`session\_save\_path PHP parameter
+ `_).
+
+ .. warning::
+
+ This folder should not be publicly accessible through the webserver,
+ otherwise you risk leaking private data from your session.
+
+.. config:option:: $cfg['MemoryLimit']
+
+ :type: string [number of bytes]
+ :default: ``'-1'``
+
+ Set the number of bytes a script is allowed to allocate. If set to
+ ``'-1'``, no limit is imposed. If set to ``'0'``, no change of the
+ memory limit is attempted and the :file:`php.ini` ``memory_limit`` is
+ used.
+
+ This setting is used while importing/exporting dump files
+ so you definitely don't want to put here a too low
+ value. It has no effect when PHP is running in safe mode.
+
+ You can also use any string as in :file:`php.ini`, eg. '16M'. Ensure you
+ don't omit the suffix (16 means 16 bytes!)
+
+.. config:option:: $cfg['SkipLockedTables']
+
+ :type: boolean
+ :default: false
+
+ Mark used tables and make it possible to show databases with locked
+ tables (since MySQL 3.23.30).
+
+.. config:option:: $cfg['ShowSQL']
+
+ :type: boolean
+ :default: true
+
+ Defines whether :term:`SQL` queries
+ generated by phpMyAdmin should be displayed or not.
+
+.. config:option:: $cfg['RetainQueryBox']
+
+ :type: boolean
+ :default: false
+
+ Defines whether the :term:`SQL` query box
+ should be kept displayed after its submission.
+
+.. config:option:: $cfg['CodemirrorEnable']
+
+ :type: boolean
+ :default: true
+
+ Defines whether to use a Javascript code editor for SQL query boxes.
+ CodeMirror provides syntax highlighting and line numbers. However,
+ middle-clicking for pasting the clipboard contents in some Linux
+ distributions (such as Ubuntu) is not supported by all browsers.
+
+.. config:option:: $cfg['DefaultForeignKeyChecks']
+
+ :type: string
+ :default: ``'default'``
+
+ Default value of the checkbox for foreign key checks, to disable/enable
+ foreign key checks for certain queries. The possible values are ``'default'``,
+ ``'enable'`` or ``'disable'``. If set to ``'default'``, the value of the
+ MySQL variable ``FOREIGN_KEY_CHECKS`` is used.
+
+.. config:option:: $cfg['AllowUserDropDatabase']
+
+ :type: boolean
+ :default: false
+
+ .. warning::
+
+ This is not a security measure as there will be always ways to
+ circumvent this. If you want to prohibit users from dropping databases,
+ revoke their corresponding DROP privilege.
+
+ Defines whether normal users (non-administrator) are allowed to delete
+ their own database or not. If set as false, the link :guilabel:`Drop
+ Database` will not be shown, and even a ``DROP DATABASE mydatabase`` will
+ be rejected. Quite practical for :term:`ISP` 's with many customers.
+
+ This limitation of :term:`SQL` queries is not as strict as when using MySQL
+ privileges. This is due to nature of :term:`SQL` queries which might be
+ quite complicated. So this choice should be viewed as help to avoid
+ accidental dropping rather than strict privilege limitation.
+
+.. config:option:: $cfg['Confirm']
+
+ :type: boolean
+ :default: true
+
+ Whether a warning ("Are your really sure...") should be displayed when
+ you're about to lose data.
+
+.. config:option:: $cfg['UseDbSearch']
+
+ :type: boolean
+ :default: true
+
+ Define whether the "search string inside database" is enabled or not.
+
+.. config:option:: $cfg['IgnoreMultiSubmitErrors']
+
+ :type: boolean
+ :default: false
+
+ Define whether phpMyAdmin will continue executing a multi-query
+ statement if one of the queries fails. Default is to abort execution.
+
+.. config:option:: $cfg['enable_drag_drop_import']
+
+ :type: boolean
+ :default: true
+
+ Whether or not the drag and drop import feature is enabled.
+ When enabled, a user can drag a file in to their browser and phpMyAdmin will
+ attempt to import the file.
+
+.. config:option:: $cfg['URLQueryEncryption']
+
+ :type: boolean
+ :default: false
+
+ .. versionadded:: 4.9.8
+
+ Define whether phpMyAdmin will encrypt sensitive data (like database name
+ and table name) from the URL query string. Default is to not encrypt the URL
+ query string.
+
+.. config:option:: $cfg['URLQueryEncryptionSecretKey']
+
+ :type: string
+ :default: ``''``
+
+ .. versionadded:: 4.9.8
+
+ A secret key used to encrypt/decrypt the URL query string.
+ Should be 32 bytes long.
+
+Cookie authentication options
+-----------------------------
+
+.. config:option:: $cfg['blowfish_secret']
+
+ :type: string
+ :default: ``''``
+
+ The "cookie" auth\_type uses AES algorithm to encrypt the password. If you
+ are using the "cookie" auth\_type, enter here a random passphrase of your
+ choice. It will be used internally by the AES algorithm: you won’t be
+ prompted for this passphrase.
+
+ The secret should be 32 characters long. Using shorter will lead to weaker security
+ of encrypted cookies, using longer will cause no harm.
+
+ .. note::
+
+ The configuration is called blowfish_secret for historical reasons as
+ Blowfish algorithm was originally used to do the encryption.
+
+ .. versionchanged:: 3.1.0
+ Since version 3.1.0 phpMyAdmin can generate this on the fly, but it
+ makes a bit weaker security as this generated secret is stored in
+ session and furthermore it makes impossible to recall user name from
+ cookie.
+
+.. config:option:: $cfg['CookieSameSite']
+
+ :type: string
+ :default: ``'Strict'``
+
+ .. versionadded:: 5.1.0
+
+ It sets SameSite attribute of the Set-Cookie :term:`HTTP` response header.
+ Valid values are:
+
+ * ``Lax``
+ * ``Strict``
+ * ``None``
+
+ .. seealso:: `rfc6265 bis `_
+
+.. config:option:: $cfg['LoginCookieRecall']
+
+ :type: boolean
+ :default: true
+
+ Define whether the previous login should be recalled or not in cookie
+ authentication mode.
+
+ This is automatically disabled if you do not have
+ configured :config:option:`$cfg['blowfish_secret']`.
+
+.. config:option:: $cfg['LoginCookieValidity']
+
+ :type: integer [number of seconds]
+ :default: 1440
+
+ Define how long a login cookie is valid. Please note that php
+ configuration option `session.gc\_maxlifetime
+ `_ might limit session validity and if the session is lost,
+ the login cookie is also invalidated. So it is a good idea to set
+ ``session.gc_maxlifetime`` at least to the same value of
+ :config:option:`$cfg['LoginCookieValidity']`.
+
+.. config:option:: $cfg['LoginCookieStore']
+
+ :type: integer [number of seconds]
+ :default: 0
+
+ Define how long login cookie should be stored in browser. Default 0
+ means that it will be kept for existing session. This is recommended
+ for not trusted environments.
+
+.. config:option:: $cfg['LoginCookieDeleteAll']
+
+ :type: boolean
+ :default: true
+
+ If enabled (default), logout deletes cookies for all servers,
+ otherwise only for current one. Setting this to false makes it easy to
+ forget to log out from other server, when you are using more of them.
+
+.. _AllowArbitraryServer:
+.. config:option:: $cfg['AllowArbitraryServer']
+
+ :type: boolean
+ :default: false
+
+ If enabled, allows you to log in to arbitrary servers using cookie
+ authentication.
+
+ .. note::
+
+ Please use this carefully, as this may allow users access to MySQL servers
+ behind the firewall where your :term:`HTTP` server is placed.
+ See also :config:option:`$cfg['ArbitraryServerRegexp']`.
+
+.. config:option:: $cfg['ArbitraryServerRegexp']
+
+ :type: string
+ :default: ``''``
+
+ Restricts the MySQL servers to which the user can log in when
+ :config:option:`$cfg['AllowArbitraryServer']` is enabled by
+ matching the :term:`IP` or the hostname of the MySQL server
+ to the given regular expression. The regular expression must be enclosed
+ with a delimiter character.
+
+ It is recommended to include start and end symbols in the regular
+ expression, so that you can avoid partial matches on the string.
+
+ **Examples:**
+
+ .. code-block:: php
+
+ // Allow connection to three listed servers:
+ $cfg['ArbitraryServerRegexp'] = '/^(server|another|yetdifferent)$/';
+
+ // Allow connection to range of IP addresses:
+ $cfg['ArbitraryServerRegexp'] = '@^192\.168\.0\.[0-9]{1,}$@';
+
+ // Allow connection to server name ending with -mysql:
+ $cfg['ArbitraryServerRegexp'] = '@^[^:]\-mysql$@';
+
+ .. note::
+
+ The whole server name is matched, it can include port as well. Due to
+ way MySQL is permissive in connection parameters, it is possible to use
+ connection strings as ```server:3306-mysql```. This can be used to
+ bypass regular expression by the suffix, while connecting to another
+ server.
+
+.. config:option:: $cfg['CaptchaMethod']
+
+ :type: string
+ :default: ``'invisible'``
+
+ Valid values are:
+
+ * ``'invisible'`` Use an invisible captcha checking method;
+ * ``'checkbox'`` Use a checkbox to confirm the user is not a robot.
+
+ .. versionadded:: 5.0.3
+
+.. config:option:: $cfg['CaptchaApi']
+
+ :type: string
+ :default: ``'https://www.google.com/recaptcha/api.js'``
+
+ .. versionadded:: 5.1.0
+
+ The URL for the reCaptcha v2 service's API, either Google's or a compatible one.
+
+.. config:option:: $cfg['CaptchaCsp']
+
+ :type: string
+ :default: ``'https://apis.google.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://ssl.gstatic.com/'``
+
+ .. versionadded:: 5.1.0
+
+ The Content-Security-Policy snippet (URLs from which to allow embedded content)
+ for the reCaptcha v2 service, either Google's or a compatible one.
+
+.. config:option:: $cfg['CaptchaRequestParam']
+
+ :type: string
+ :default: ``'g-recaptcha'``
+
+ .. versionadded:: 5.1.0
+
+ The request parameter used for the reCaptcha v2 service.
+
+.. config:option:: $cfg['CaptchaResponseParam']
+
+ :type: string
+ :default: ``'g-recaptcha-response'``
+
+ .. versionadded:: 5.1.0
+
+ The response parameter used for the reCaptcha v2 service.
+
+.. config:option:: $cfg['CaptchaLoginPublicKey']
+
+ :type: string
+ :default: ``''``
+
+ The public key for the reCaptcha service that can be obtained from the
+ "Admin Console" on https://www.google.com/recaptcha/about/.
+
+ .. seealso::
+
+ reCaptcha will be then used in :ref:`cookie`.
+
+ .. versionadded:: 4.1.0
+
+.. config:option:: $cfg['CaptchaLoginPrivateKey']
+
+ :type: string
+ :default: ``''``
+
+ The private key for the reCaptcha service that can be obtained from the
+ "Admin Console" on https://www.google.com/recaptcha/about/.
+
+ .. seealso::
+
+ reCaptcha will be then used in :ref:`cookie`.
+
+ .. versionadded:: 4.1.0
+
+.. config:option:: $cfg['CaptchaSiteVerifyURL']
+
+ :type: string
+ :default: ``''``
+
+ The URL for the reCaptcha service to do siteverify action.
+
+ reCaptcha will be then used in :ref:`cookie`.
+
+ .. versionadded:: 5.1.0
+
+Navigation panel setup
+----------------------
+
+.. config:option:: $cfg['ShowDatabasesNavigationAsTree']
+
+ :type: boolean
+ :default: true
+
+ In the navigation panel, replaces the database tree with a selector
+
+.. config:option:: $cfg['FirstLevelNavigationItems']
+
+ :type: integer
+ :default: 100
+
+ The number of first level databases that can be displayed on each page
+ of navigation tree.
+
+.. config:option:: $cfg['MaxNavigationItems']
+
+ :type: integer
+ :default: 50
+
+ The number of items (tables, columns, indexes) that can be displayed on each
+ page of the navigation tree.
+
+.. config:option:: $cfg['NavigationTreeEnableGrouping']
+
+ :type: boolean
+ :default: true
+
+ Defines whether to group the databases based on a common prefix
+ in their name :config:option:`$cfg['NavigationTreeDbSeparator']`.
+
+.. config:option:: $cfg['NavigationTreeDbSeparator']
+
+ :type: string
+ :default: ``'_'``
+
+ The string used to separate the parts of the database name when
+ showing them in a tree.
+
+.. config:option:: $cfg['NavigationTreeTableSeparator']
+
+ :type: string or array
+ :default: ``'__'``
+
+ Defines a string to be used to nest table spaces. This means if you have
+ tables like ``first__second__third`` this will be shown as a three-level
+ hierarchy like: first > second > third. If set to false or empty, the
+ feature is disabled. NOTE: You should not use this separator at the
+ beginning or end of a table name or multiple times after another without
+ any other characters in between.
+
+.. config:option:: $cfg['NavigationTreeTableLevel']
+
+ :type: integer
+ :default: 1
+
+ Defines how many sublevels should be displayed when splitting up
+ tables by the above separator.
+
+.. config:option:: $cfg['NumRecentTables']
+
+ :type: integer
+ :default: 10
+
+ The maximum number of recently used tables shown in the navigation
+ panel. Set this to 0 (zero) to disable the listing of recent tables.
+
+.. config:option:: $cfg['NumFavoriteTables']
+
+ :type: integer
+ :default: 10
+
+ The maximum number of favorite tables shown in the navigation
+ panel. Set this to 0 (zero) to disable the listing of favorite tables.
+
+.. config:option:: $cfg['ZeroConf']
+
+ :type: boolean
+ :default: true
+
+ Enables Zero Configuration mode in which the user will be offered a choice to
+ create phpMyAdmin configuration storage in the current database
+ or use the existing one, if already present.
+
+ This setting has no effect if the phpMyAdmin configuration storage database
+ is properly created and the related configuration directives (such as
+ :config:option:`$cfg['Servers'][$i]['pmadb']` and so on) are configured.
+
+.. config:option:: $cfg['NavigationLinkWithMainPanel']
+
+ :type: boolean
+ :default: true
+
+ Defines whether or not to link with main panel by highlighting
+ the current database or table.
+
+.. config:option:: $cfg['NavigationDisplayLogo']
+
+ :type: boolean
+ :default: true
+
+ Defines whether or not to display the phpMyAdmin logo at the top of
+ the navigation panel.
+
+.. config:option:: $cfg['NavigationLogoLink']
+
+ :type: string
+ :default: ``'index.php'``
+
+ Enter the :term:`URL` where the logo in the navigation panel will point to.
+ For use especially with self made theme which changes this.
+ For relative/internal URLs, you need to have leading `` ./ `` or trailing characters `` ? `` such as ``'./index.php?route=/server/sql?'``.
+ For external URLs, you should include URL protocol schemes (``http`` or ``https``) with absolute URLs.
+
+ You may want to make the link open in a new browser tab, for that you need to use :config:option:`$cfg['NavigationLogoLinkWindow']`
+
+.. config:option:: $cfg['NavigationLogoLinkWindow']
+
+ :type: string
+ :default: ``'main'``
+
+ Whether to open the linked page in the main window (``main``) or in a
+ new one (``new``). Note: use ``new`` if you are linking to
+ ``phpmyadmin.net``.
+
+ To open the link in the main window you will need to add the value of :config:option:`$cfg['NavigationLogoLink']`
+ to :config:option:`$cfg['CSPAllow']` because of the :term:`Content Security Policy` header.
+
+.. config:option:: $cfg['NavigationTreeDisplayItemFilterMinimum']
+
+ :type: integer
+ :default: 30
+
+ Defines the minimum number of items (tables, views, routines and
+ events) to display a JavaScript filter box above the list of items in
+ the navigation tree.
+
+ To disable the filter completely some high number can be used (e.g. 9999)
+
+.. config:option:: $cfg['NavigationTreeDisplayDbFilterMinimum']
+
+ :type: integer
+ :default: 30
+
+ Defines the minimum number of databases to display a JavaScript filter
+ box above the list of databases in the navigation tree.
+
+ To disable the filter completely some high number can be used
+ (e.g. 9999)
+
+.. config:option:: $cfg['NavigationDisplayServers']
+
+ :type: boolean
+ :default: true
+
+ Defines whether or not to display a server choice at the top of the
+ navigation panel.
+
+.. config:option:: $cfg['DisplayServersList']
+
+ :type: boolean
+ :default: false
+
+ Defines whether to display this server choice as links instead of in a
+ drop-down.
+
+.. config:option:: $cfg['NavigationTreeDefaultTabTable']
+
+ :type: string
+ :default: ``'structure'``
+
+ Defines the tab displayed by default when clicking the small icon next
+ to each table name in the navigation panel. The possible values are the
+ localized equivalent of:
+
+ * ``structure``
+ * ``sql``
+ * ``search``
+ * ``insert``
+ * ``browse``
+
+.. config:option:: $cfg['NavigationTreeDefaultTabTable2']
+
+ :type: string
+ :default: null
+
+ Defines the tab displayed by default when clicking the second small icon next
+ to each table name in the navigation panel. The possible values are the
+ localized equivalent of:
+
+ * ``(empty)``
+ * ``structure``
+ * ``sql``
+ * ``search``
+ * ``insert``
+ * ``browse``
+
+.. config:option:: $cfg['NavigationTreeEnableExpansion']
+
+ :type: boolean
+ :default: true
+
+ Whether to offer the possibility of tree expansion in the navigation panel.
+
+.. config:option:: $cfg['NavigationTreeShowTables']
+
+ :type: boolean
+ :default: true
+
+ Whether to show tables under database in the navigation panel.
+
+.. config:option:: $cfg['NavigationTreeShowViews']
+
+ :type: boolean
+ :default: true
+
+ Whether to show views under database in the navigation panel.
+
+.. config:option:: $cfg['NavigationTreeShowFunctions']
+
+ :type: boolean
+ :default: true
+
+ Whether to show functions under database in the navigation panel.
+
+.. config:option:: $cfg['NavigationTreeShowProcedures']
+
+ :type: boolean
+ :default: true
+
+ Whether to show procedures under database in the navigation panel.
+
+.. config:option:: $cfg['NavigationTreeShowEvents']
+
+ :type: boolean
+ :default: true
+
+ Whether to show events under database in the navigation panel.
+
+.. config:option:: $cfg['NavigationWidth']
+
+ :type: integer
+ :default: 240
+
+ Navigation panel width, set to 0 to collapse it by default.
+
+Main panel
+----------
+
+.. config:option:: $cfg['ShowStats']
+
+ :type: boolean
+ :default: true
+
+ Defines whether or not to display space usage and statistics about
+ databases and tables. Note that statistics requires at least MySQL
+ 3.23.3 and that, at this date, MySQL doesn't return such information
+ for Berkeley DB tables.
+
+.. config:option:: $cfg['ShowServerInfo']
+
+ :type: boolean
+ :default: true
+
+ Defines whether to display detailed server information on main page.
+ You can additionally hide more information by using
+ :config:option:`$cfg['Servers'][$i]['verbose']`.
+
+.. config:option:: $cfg['ShowPhpInfo']
+
+ :type: boolean
+ :default: false
+
+ Defines whether to display the :guilabel:`PHP information` or not at
+ the starting main (right) frame.
+
+ Please note that to block the usage of ``phpinfo()`` in scripts, you have to
+ put this in your :file:`php.ini`:
+
+ .. code-block:: ini
+
+ disable_functions = phpinfo()
+
+ .. warning::
+
+ Enabling phpinfo page will leak quite a lot of information about server
+ setup. Is it not recommended to enable this on shared installations.
+
+ This might also make easier some remote attacks on your installations,
+ so enable this only when needed.
+
+.. config:option:: $cfg['ShowChgPassword']
+
+ :type: boolean
+ :default: true
+
+ Defines whether to display the :guilabel:`Change password` link or not at
+ the starting main (right) frame. This setting does not check MySQL commands
+ entered directly.
+
+ Please note that enabling the :guilabel:`Change password` link has no effect
+ with config authentication mode: because of the hard coded password value
+ in the configuration file, end users can't be allowed to change their
+ passwords.
+
+.. config:option:: $cfg['ShowCreateDb']
+
+ :type: boolean
+ :default: true
+
+ Defines whether to display the form for creating database or not at the
+ starting main (right) frame. This setting does not check MySQL commands
+ entered directly.
+
+.. config:option:: $cfg['ShowGitRevision']
+
+ :type: boolean
+ :default: true
+
+ Defines whether to display information about the current Git revision (if
+ applicable) on the main panel.
+
+.. config:option:: $cfg['MysqlMinVersion']
+
+ :type: array
+
+ Defines the minimum supported MySQL version. The default is chosen
+ by the phpMyAdmin team; however this directive was asked by a developer
+ of the Plesk control panel to ease integration with older MySQL servers
+ (where most of the phpMyAdmin features work).
+
+Database structure
+------------------
+
+.. config:option:: $cfg['ShowDbStructureCreation']
+
+ :type: boolean
+ :default: false
+
+ Defines whether the database structure page (tables list) has a
+ "Creation" column that displays when each table was created.
+
+.. config:option:: $cfg['ShowDbStructureLastUpdate']
+
+ :type: boolean
+ :default: false
+
+ Defines whether the database structure page (tables list) has a "Last
+ update" column that displays when each table was last updated.
+
+.. config:option:: $cfg['ShowDbStructureLastCheck']
+
+ :type: boolean
+ :default: false
+
+ Defines whether the database structure page (tables list) has a "Last
+ check" column that displays when each table was last checked.
+
+.. config:option:: $cfg['HideStructureActions']
+
+ :type: boolean
+ :default: true
+
+ Defines whether the table structure actions are hidden under a ":guilabel:`More`"
+ drop-down.
+
+.. config:option:: $cfg['ShowColumnComments']
+
+ :type: boolean
+ :default: true
+
+ Defines whether to show column comments as a column in the table structure view.
+
+Browse mode
+-----------
+
+.. config:option:: $cfg['TableNavigationLinksMode']
+
+ :type: string
+ :default: ``'icons'``
+
+ Defines whether the table navigation links contain ``'icons'``, ``'text'``
+ or ``'both'``.
+
+.. config:option:: $cfg['ActionLinksMode']
+
+ :type: string
+ :default: ``'both'``
+
+ If set to ``icons``, will display icons instead of text for db and table
+ properties links (like :guilabel:`Browse`, :guilabel:`Select`,
+ :guilabel:`Insert`, ...). Can be set to ``'both'``
+ if you want icons AND text. When set to ``text``, will only show text.
+
+.. config:option:: $cfg['RowActionType']
+
+ :type: string
+ :default: ``'both'``
+
+ Whether to display icons or text or both icons and text in table row action
+ segment. Value can be either of ``'icons'``, ``'text'`` or ``'both'``.
+
+.. config:option:: $cfg['ShowAll']
+
+ :type: boolean
+ :default: false
+
+ Defines whether a user should be displayed a ":guilabel:`Show all`" button in browse
+ mode or not in all cases. By default it is shown only on small tables (less
+ than 500 rows) to avoid performance issues while getting too many rows.
+
+.. config:option:: $cfg['MaxRows']
+
+ :type: integer
+ :default: 25
+
+ Number of rows displayed when browsing a result set and no LIMIT
+ clause is used. If the result set contains more rows, ":guilabel:`Previous`" and
+ ":guilabel:`Next`" links will be shown. Possible values: 25,50,100,250,500.
+
+.. config:option:: $cfg['Order']
+
+ :type: string
+ :default: ``'SMART'``
+
+ Defines whether columns are displayed in ascending (``ASC``) order, in
+ descending (``DESC``) order or in a "smart" (``SMART``) order - I.E.
+ descending order for columns of type TIME, DATE, DATETIME and
+ TIMESTAMP, ascending order else- by default.
+
+ .. versionchanged:: 3.4.0
+ Since phpMyAdmin 3.4.0 the default value is ``'SMART'``.
+
+.. config:option:: $cfg['GridEditing']
+
+ :type: string
+ :default: ``'double-click'``
+
+ Defines which action (``double-click`` or ``click``) triggers grid
+ editing. Can be deactivated with the ``disabled`` value.
+
+.. config:option:: $cfg['RelationalDisplay']
+
+ :type: string
+ :default: ``'K'``
+
+ Defines the initial behavior for Options > Relational. ``K``, which
+ is the default, displays the key while ``D`` shows the display column.
+
+.. config:option:: $cfg['SaveCellsAtOnce']
+
+ :type: boolean
+ :default: false
+
+ Defines whether or not to save all edited cells at once for grid
+ editing.
+
+Editing mode
+------------
+
+.. config:option:: $cfg['ProtectBinary']
+
+ :type: boolean or string
+ :default: ``'blob'``
+
+ Defines whether ``BLOB`` or ``BINARY`` columns are protected from
+ editing when browsing a table's content. Valid values are:
+
+ * ``false`` to allow editing of all columns;
+ * ``'blob'`` to allow editing of all columns except ``BLOBS``;
+ * ``'noblob'`` to disallow editing of all columns except ``BLOBS`` (the
+ opposite of ``'blob'``);
+ * ``'all'`` to disallow editing of all ``BINARY`` or ``BLOB`` columns.
+
+.. config:option:: $cfg['ShowFunctionFields']
+
+ :type: boolean
+ :default: true
+
+ Defines whether or not MySQL functions fields should be initially
+ displayed in edit/insert mode. Since version 2.10, the user can toggle
+ this setting from the interface.
+
+.. config:option:: $cfg['ShowFieldTypesInDataEditView']
+
+ :type: boolean
+ :default: true
+
+ Defines whether or not type fields should be initially displayed in
+ edit/insert mode. The user can toggle this setting from the interface.
+
+.. config:option:: $cfg['InsertRows']
+
+ :type: integer
+ :default: 2
+
+ Defines the default number of rows to be entered from the Insert page.
+ Users can manually change this from the bottom of that page to add or remove
+ blank rows.
+
+.. config:option:: $cfg['ForeignKeyMaxLimit']
+
+ :type: integer
+ :default: 100
+
+ If there are fewer items than this in the set of foreign keys, then a
+ drop-down box of foreign keys is presented, in the style described by
+ the :config:option:`$cfg['ForeignKeyDropdownOrder']` setting.
+
+.. config:option:: $cfg['ForeignKeyDropdownOrder']
+
+ :type: array
+ :default: array('content-id', 'id-content')
+
+ For the foreign key drop-down fields, there are several methods of
+ display, offering both the key and value data. The contents of the
+ array should be one or both of the following strings: ``content-id``,
+ ``id-content``.
+
+Export and import settings
+--------------------------
+
+.. config:option:: $cfg['ZipDump']
+
+ :type: boolean
+ :default: true
+
+.. config:option:: $cfg['GZipDump']
+
+ :type: boolean
+ :default: true
+
+.. config:option:: $cfg['BZipDump']
+
+ :type: boolean
+ :default: true
+
+ Defines whether to allow the use of zip/GZip/BZip2 compression when
+ creating a dump file
+
+.. config:option:: $cfg['CompressOnFly']
+
+ :type: boolean
+ :default: true
+
+ Defines whether to allow on the fly compression for GZip/BZip2
+ compressed exports. This doesn't affect smaller dumps and allows users
+ to create larger dumps that won't otherwise fit in memory due to php
+ memory limit. Produced files contain more GZip/BZip2 headers, but all
+ normal programs handle this correctly.
+
+.. config:option:: $cfg['Export']
+
+ :type: array
+ :default: array(...)
+
+ In this array are defined default parameters for export, names of
+ items are similar to texts seen on export page, so you can easily
+ identify what they mean.
+
+.. config:option:: $cfg['Export']['format']
+
+ :type: string
+ :default: ``'sql'``
+
+ Default export format.
+
+.. config:option:: $cfg['Export']['method']
+
+ :type: string
+ :default: ``'quick'``
+
+ Defines how the export form is displayed when it loads. Valid values
+ are:
+
+ * ``quick`` to display the minimum number of options to configure
+ * ``custom`` to display every available option to configure
+ * ``custom-no-form`` same as ``custom`` but does not display the option
+ of using quick export
+
+.. config:option:: $cfg['Export']['charset']
+
+ :type: string
+ :default: ``''``
+
+ Defines charset for generated export. By default no charset conversion is
+ done assuming UTF-8.
+
+.. config:option:: $cfg['Export']['file_template_table']
+
+ :type: string
+ :default: ``'@TABLE@'``
+
+ Default filename template for table exports.
+
+ .. seealso:: :ref:`faq6_27`
+
+.. config:option:: $cfg['Export']['file_template_database']
+
+ :type: string
+ :default: ``'@DATABASE@'``
+
+ Default filename template for database exports.
+
+ .. seealso:: :ref:`faq6_27`
+
+.. config:option:: $cfg['Export']['file_template_server']
+
+ :type: string
+ :default: ``'@SERVER@'``
+
+ Default filename template for server exports.
+
+ .. seealso:: :ref:`faq6_27`
+
+.. config:option:: $cfg['Export']['remove_definer_from_definitions']
+
+ :type: boolean
+ :default: false
+
+ Remove DEFINER clause from the event, view and routine definitions.
+
+ .. versionadded:: 5.2.0
+
+.. config:option:: $cfg['Import']
+
+ :type: array
+ :default: array(...)
+
+ In this array are defined default parameters for import, names of
+ items are similar to texts seen on import page, so you can easily
+ identify what they mean.
+
+.. config:option:: $cfg['Import']['charset']
+
+ :type: string
+ :default: ``''``
+
+ Defines charset for import. By default no charset conversion is done
+ assuming UTF-8.
+
+Tabs display settings
+---------------------
+
+.. config:option:: $cfg['TabsMode']
+
+ :type: string
+ :default: ``'both'``
+
+ Defines whether the menu tabs contain ``'icons'``, ``'text'`` or ``'both'``.
+
+.. config:option:: $cfg['PropertiesNumColumns']
+
+ :type: integer
+ :default: 1
+
+ How many columns will be utilized to display the tables on the database
+ property view? When setting this to a value larger than 1, the type of the
+ database will be omitted for more display space.
+
+.. config:option:: $cfg['DefaultTabServer']
+
+ :type: string
+ :default: ``'welcome'``
+
+ Defines the tab displayed by default on server view. The possible values
+ are the localized equivalent of:
+
+ * ``welcome`` (recommended for multi-user setups)
+ * ``databases``,
+ * ``status``
+ * ``variables``
+ * ``privileges``
+
+.. config:option:: $cfg['DefaultTabDatabase']
+
+ :type: string
+ :default: ``'structure'``
+
+ Defines the tab displayed by default on database view. The possible values
+ are the localized equivalent of:
+
+ * ``structure``
+ * ``sql``
+ * ``search``
+ * ``operations``
+
+.. config:option:: $cfg['DefaultTabTable']
+
+ :type: string
+ :default: ``'browse'``
+
+ Defines the tab displayed by default on table view. The possible values
+ are the localized equivalent of:
+
+ * ``structure``
+ * ``sql``
+ * ``search``
+ * ``insert``
+ * ``browse``
+
+PDF Options
+-----------
+
+.. config:option:: $cfg['PDFPageSizes']
+
+ :type: array
+ :default: ``array('A3', 'A4', 'A5', 'letter', 'legal')``
+
+ Array of possible paper sizes for creating PDF pages.
+
+ You should never need to change this.
+
+.. config:option:: $cfg['PDFDefaultPageSize']
+
+ :type: string
+ :default: ``'A4'``
+
+ Default page size to use when creating PDF pages. Valid values are any
+ listed in :config:option:`$cfg['PDFPageSizes']`.
+
+Languages
+---------
+
+.. config:option:: $cfg['DefaultLang']
+
+ :type: string
+ :default: ``'en'``
+
+ Defines the default language to use, if not browser-defined or user-
+ defined. The corresponding language file needs to be in
+ locale/*code*/LC\_MESSAGES/phpmyadmin.mo.
+
+.. config:option:: $cfg['DefaultConnectionCollation']
+
+ :type: string
+ :default: ``'utf8mb4_general_ci'``
+
+ Defines the default connection collation to use, if not user-defined.
+ See the `MySQL documentation for charsets
+ `_
+ for list of possible values.
+
+.. config:option:: $cfg['Lang']
+
+ :type: string
+ :default: not set
+
+ Force language to use. The corresponding language file needs to be in
+ locale/*code*/LC\_MESSAGES/phpmyadmin.mo.
+
+.. config:option:: $cfg['FilterLanguages']
+
+ :type: string
+ :default: ``''``
+
+ Limit list of available languages to those matching the given regular
+ expression. For example if you want only Czech and English, you should
+ set filter to ``'^(cs|en)'``.
+
+.. config:option:: $cfg['RecodingEngine']
+
+ :type: string
+ :default: ``'auto'``
+
+ You can select here which functions will be used for character set
+ conversion. Possible values are:
+
+ * auto - automatically use available one (first is tested iconv, then
+ recode)
+ * iconv - use iconv or libiconv functions
+ * recode - use recode\_string function
+ * mb - use :term:`mbstring` extension
+ * none - disable encoding conversion
+
+ Enabled charset conversion activates a pull-down menu in the Export
+ and Import pages, to choose the character set when exporting a file.
+ The default value in this menu comes from
+ :config:option:`$cfg['Export']['charset']` and :config:option:`$cfg['Import']['charset']`.
+
+.. config:option:: $cfg['IconvExtraParams']
+
+ :type: string
+ :default: ``'//TRANSLIT'``
+
+ Specify some parameters for iconv used in charset conversion. See
+ `iconv documentation `_ for details. By default
+ ``//TRANSLIT`` is used, so that invalid characters will be
+ transliterated.
+
+.. config:option:: $cfg['AvailableCharsets']
+
+ :type: array
+ :default: array(...)
+
+ Available character sets for MySQL conversion. You can add your own
+ (any of supported by recode/iconv) or remove these which you don't
+ use. Character sets will be shown in same order as here listed, so if
+ you frequently use some of these move them to the top.
+
+Web server settings
+-------------------
+
+.. config:option:: $cfg['OBGzip']
+
+ :type: string/boolean
+ :default: ``'auto'``
+
+ Defines whether to use GZip output buffering for increased speed in
+ :term:`HTTP` transfers. Set to
+ true/false for enabling/disabling. When set to 'auto' (string),
+ phpMyAdmin tries to enable output buffering and will automatically
+ disable it if your browser has some problems with buffering. IE6 with
+ a certain patch is known to cause data corruption when having enabled
+ buffering.
+
+.. config:option:: $cfg['TrustedProxies']
+
+ :type: array
+ :default: array()
+
+ Lists proxies and HTTP headers which are trusted for
+ :config:option:`$cfg['Servers'][$i]['AllowDeny']['order']`. This list is by
+ default empty, you need to fill in some trusted proxy servers if you
+ want to use rules for IP addresses behind proxy.
+
+ The following example specifies that phpMyAdmin should trust a
+ HTTP\_X\_FORWARDED\_FOR (``X-Forwarded-For``) header coming from the proxy
+ 1.2.3.4:
+
+ .. code-block:: php
+
+ $cfg['TrustedProxies'] = ['1.2.3.4' => 'HTTP_X_FORWARDED_FOR'];
+
+ The :config:option:`$cfg['Servers'][$i]['AllowDeny']['rules']` directive uses the
+ client's IP address as usual.
+
+.. config:option:: $cfg['GD2Available']
+
+ :type: string
+ :default: ``'auto'``
+
+ Specifies whether GD >= 2 is available. If yes it can be used for MIME
+ transformations. Possible values are:
+
+ * auto - automatically detect
+ * yes - GD 2 functions can be used
+ * no - GD 2 function cannot be used
+
+.. config:option:: $cfg['CheckConfigurationPermissions']
+
+ :type: boolean
+ :default: true
+
+ We normally check the permissions on the configuration file to ensure
+ it's not world writable. However, phpMyAdmin could be installed on a
+ NTFS filesystem mounted on a non-Windows server, in which case the
+ permissions seems wrong but in fact cannot be detected. In this case a
+ sysadmin would set this parameter to ``false``.
+
+.. config:option:: $cfg['LinkLengthLimit']
+
+ :type: integer
+ :default: 1000
+
+ Limit for length of :term:`URL` in links. When length would be above this
+ limit, it is replaced by form with button. This is required as some web
+ servers (:term:`IIS`) have problems with long :term:`URL` .
+
+.. config:option:: $cfg['CSPAllow']
+
+ :type: string
+ :default: ``''``
+
+ Additional string to include in allowed script and image sources in Content
+ Security Policy header.
+
+ This can be useful when you want to include some external JavaScript files
+ in :file:`config.footer.inc.php` or :file:`config.header.inc.php`, which
+ would be normally not allowed by :term:`Content Security Policy`.
+
+ To allow some sites, just list them within the string:
+
+ .. code-block:: php
+
+ $cfg['CSPAllow'] = 'example.com example.net';
+
+ .. versionadded:: 4.0.4
+
+.. config:option:: $cfg['DisableMultiTableMaintenance']
+
+ :type: boolean
+ :default: false
+
+ In the database Structure page, it's possible to mark some tables then
+ choose an operation like optimizing for many tables. This can slow
+ down a server; therefore, setting this to ``true`` prevents this kind
+ of multiple maintenance operation.
+
+Theme settings
+--------------
+
+ Please directly modify :file:`themes/themename/scss/_variables.scss`, although
+ your changes will be overwritten with the next update.
+
+Design customization
+--------------------
+
+.. config:option:: $cfg['NavigationTreePointerEnable']
+
+ :type: boolean
+ :default: true
+
+ When set to true, hovering over an item in the navigation panel causes that item to be marked
+ (the background is highlighted).
+
+.. config:option:: $cfg['BrowsePointerEnable']
+
+ :type: boolean
+ :default: true
+
+ When set to true, hovering over a row in the Browse page causes that row to be marked (the background
+ is highlighted).
+
+.. config:option:: $cfg['BrowseMarkerEnable']
+
+ :type: boolean
+ :default: true
+
+ When set to true, a data row is marked (the background is highlighted) when the row is selected
+ with the checkbox.
+
+.. config:option:: $cfg['LimitChars']
+
+ :type: integer
+ :default: 50
+
+ Maximum number of characters shown in any non-numeric field on browse
+ view. Can be turned off by a toggle button on the browse page.
+
+.. config:option:: $cfg['RowActionLinks']
+
+ :type: string
+ :default: ``'left'``
+
+ Defines the place where table row links (Edit, Copy, Delete) would be
+ put when tables contents are displayed (you may have them displayed at
+ the left side, right side, both sides or nowhere).
+
+.. config:option:: $cfg['RowActionLinksWithoutUnique']
+
+ :type: boolean
+ :default: false
+
+ Defines whether to show row links (Edit, Copy, Delete) and checkboxes
+ for multiple row operations even when the selection does not have a :term:`unique key`.
+ Using row actions in the absence of a unique key may result in different/more
+ rows being affected since there is no guaranteed way to select the exact row(s).
+
+.. config:option:: $cfg['RememberSorting']
+
+ :type: boolean
+ :default: true
+
+ If enabled, remember the sorting of each table when browsing them.
+
+.. config:option:: $cfg['TablePrimaryKeyOrder']
+
+ :type: string
+ :default: ``'NONE'``
+
+ This defines the default sort order for the tables, having a :term:`primary key`,
+ when there is no sort order defines externally.
+ Acceptable values : ['NONE', 'ASC', 'DESC']
+
+.. config:option:: $cfg['ShowBrowseComments']
+
+ :type: boolean
+ :default: true
+
+.. config:option:: $cfg['ShowPropertyComments']
+
+ :type: boolean
+ :default: true
+
+ By setting the corresponding variable to ``true`` you can enable the
+ display of column comments in Browse or Property display. In browse
+ mode, the comments are shown inside the header. In property mode,
+ comments are displayed using a CSS-formatted dashed-line below the
+ name of the column. The comment is shown as a tool-tip for that
+ column.
+
+.. config:option:: $cfg['FirstDayOfCalendar']
+
+ :type: integer
+ :default: 0
+
+ This will define the first day of week in the calendar. The number
+ can be set from 0 to 6, which represents the seven days of the week,
+ Sunday to Saturday respectively. This value can also be configured by the user
+ in :guilabel:`Settings` -> :guilabel:`Features` -> :guilabel:`General` -> :guilabel:`First day of calendar` field.
+
+Text fields
+-----------
+
+.. config:option:: $cfg['CharEditing']
+
+ :type: string
+ :default: ``'input'``
+
+ Defines which type of editing controls should be used for CHAR and
+ VARCHAR columns. Applies to data editing and also to the default values
+ in structure editing. Possible values are:
+
+ * input - this allows to limit size of text to size of columns in MySQL,
+ but has problems with newlines in columns
+ * textarea - no problems with newlines in columns, but also no length
+ limitations
+
+.. config:option:: $cfg['MinSizeForInputField']
+
+ :type: integer
+ :default: 4
+
+ Defines the minimum size for input fields generated for CHAR and
+ VARCHAR columns.
+
+.. config:option:: $cfg['MaxSizeForInputField']
+
+ :type: integer
+ :default: 60
+
+ Defines the maximum size for input fields generated for CHAR and
+ VARCHAR columns.
+
+.. config:option:: $cfg['TextareaCols']
+
+ :type: integer
+ :default: 40
+
+.. config:option:: $cfg['TextareaRows']
+
+ :type: integer
+ :default: 15
+
+.. config:option:: $cfg['CharTextareaCols']
+
+ :type: integer
+ :default: 40
+
+.. config:option:: $cfg['CharTextareaRows']
+
+ :type: integer
+ :default: 7
+
+ Number of columns and rows for the textareas. This value will be
+ emphasized (\*2) for :term:`SQL` query
+ textareas and (\*1.25) for :term:`SQL`
+ textareas inside the query window.
+
+ The Char\* values are used for CHAR
+ and VARCHAR editing (if configured via :config:option:`$cfg['CharEditing']`).
+
+ .. versionchanged:: 5.0.0
+
+ The default value was changed from 2 to 7.
+
+.. config:option:: $cfg['LongtextDoubleTextarea']
+
+ :type: boolean
+ :default: true
+
+ Defines whether textarea for LONGTEXT columns should have double size.
+
+.. config:option:: $cfg['TextareaAutoSelect']
+
+ :type: boolean
+ :default: false
+
+ Defines if the whole textarea of the query box will be selected on
+ click.
+
+.. config:option:: $cfg['EnableAutocompleteForTablesAndColumns']
+
+ :type: boolean
+ :default: true
+
+ Whether to enable autocomplete for table and column names in any
+ SQL query box.
+
+SQL query box settings
+----------------------
+
+.. config:option:: $cfg['SQLQuery']['Edit']
+
+ :type: boolean
+ :default: true
+
+ Whether to display an edit link to change a query in any SQL Query
+ box.
+
+.. config:option:: $cfg['SQLQuery']['Explain']
+
+ :type: boolean
+ :default: true
+
+ Whether to display a link to explain a SELECT query in any SQL Query
+ box.
+
+.. config:option:: $cfg['SQLQuery']['ShowAsPHP']
+
+ :type: boolean
+ :default: true
+
+ Whether to display a link to wrap a query in PHP code in any SQL Query
+ box.
+
+.. config:option:: $cfg['SQLQuery']['Refresh']
+
+ :type: boolean
+ :default: true
+
+ Whether to display a link to refresh a query in any SQL Query box.
+
+.. _web-dirs:
+
+Web server upload/save/import directories
+-----------------------------------------
+
+If PHP is running in safe mode, all directories must be owned by the same user
+as the owner of the phpMyAdmin scripts.
+
+If the directory where phpMyAdmin is installed is subject to an
+``open_basedir`` restriction, you need to create a temporary directory in some
+directory accessible by the PHP interpreter.
+
+For security reasons, all directories should be outside the tree published by
+webserver. If you cannot avoid having this directory published by webserver,
+limit access to it either by web server configuration (for example using
+.htaccess or web.config files) or place at least an empty :file:`index.html`
+file there, so that directory listing is not possible. However as long as the
+directory is accessible by web server, an attacker can guess filenames to download
+the files.
+
+.. config:option:: $cfg['UploadDir']
+
+ :type: string
+ :default: ``''``
+
+ The name of the directory where :term:`SQL` files have been uploaded by
+ other means than phpMyAdmin (for example, FTP). Those files are available
+ under a drop-down box when you click the database or table name, then the
+ Import tab.
+
+ If
+ you want different directory for each user, %u will be replaced with
+ username.
+
+ Please note that the file names must have the suffix ".sql"
+ (or ".sql.bz2" or ".sql.gz" if support for compressed formats is
+ enabled).
+
+ This feature is useful when your file is too big to be
+ uploaded via :term:`HTTP`, or when file
+ uploads are disabled in PHP.
+
+ .. warning::
+
+ Please see top of this chapter (:ref:`web-dirs`) for instructions how
+ to setup this directory and how to make its usage secure.
+
+ .. seealso::
+
+ See :ref:`faq1_16` for alternatives.
+
+.. config:option:: $cfg['SaveDir']
+
+ :type: string
+ :default: ``''``
+
+ The name of the webserver directory where exported files can be saved.
+
+ If you want a different directory for each user, %u will be replaced with the
+ username.
+
+ Please note that the directory must exist and has to be writable for
+ the user running webserver.
+
+ .. warning::
+
+ Please see top of this chapter (:ref:`web-dirs`) for instructions how
+ to setup this directory and how to make its usage secure.
+
+.. config:option:: $cfg['TempDir']
+
+ :type: string
+ :default: ``'./tmp/'``
+
+ The name of the directory where temporary files can be stored. It is used
+ for several purposes, currently:
+
+ * The templates cache which speeds up page loading.
+ * ESRI Shapefiles import, see :ref:`faq6_30`.
+ * To work around limitations of ``open_basedir`` for uploaded files, see
+ :ref:`faq1_11`.
+
+ This directory should have as strict permissions as possible as the only
+ user required to access this directory is the one who runs the webserver.
+ If you have root privileges, simply make this user owner of this directory
+ and make it accessible only by it:
+
+ .. code-block:: sh
+
+ chown www-data:www-data tmp
+ chmod 700 tmp
+
+ If you cannot change owner of the directory, you can achieve a similar
+ setup using :term:`ACL`:
+
+ .. code-block:: sh
+
+ chmod 700 tmp
+ setfacl -m "g:www-data:rwx" tmp
+ setfacl -d -m "g:www-data:rwx" tmp
+
+ If neither of above works for you, you can still make the directory
+ :command:`chmod 777`, but it might impose risk of other users on system
+ reading and writing data in this directory.
+
+ .. warning::
+
+ Please see top of this chapter (:ref:`web-dirs`) for instructions how
+ to setup this directory and how to make its usage secure.
+
+Various display setting
+-----------------------
+
+.. config:option:: $cfg['RepeatCells']
+
+ :type: integer
+ :default: 100
+
+ Repeat the headers every X cells, or 0 to deactivate.
+
+.. config:option:: $cfg['QueryHistoryDB']
+
+ :type: boolean
+ :default: false
+
+.. config:option:: $cfg['QueryHistoryMax']
+
+ :type: integer
+ :default: 25
+
+ If :config:option:`$cfg['QueryHistoryDB']` is set to ``true``, all your
+ Queries are logged to a table, which has to be created by you (see
+ :config:option:`$cfg['Servers'][$i]['history']`). If set to false, all your
+ queries will be appended to the form, but only as long as your window is
+ opened they remain saved.
+
+ When using the JavaScript based query window, it will always get updated
+ when you click on a new table/db to browse and will focus if you click on
+ :guilabel:`Edit SQL` after using a query. You can suppress updating the
+ query window by checking the box :guilabel:`Do not overwrite this query
+ from outside the window` below the query textarea. Then you can browse
+ tables/databases in the background without losing the contents of the
+ textarea, so this is especially useful when composing a query with tables
+ you first have to look in. The checkbox will get automatically checked
+ whenever you change the contents of the textarea. Please uncheck the button
+ whenever you definitely want the query window to get updated even though
+ you have made alterations.
+
+ If :config:option:`$cfg['QueryHistoryDB']` is set to ``true`` you can
+ specify the amount of saved history items using
+ :config:option:`$cfg['QueryHistoryMax']`.
+
+.. config:option:: $cfg['BrowseMIME']
+
+ :type: boolean
+ :default: true
+
+ Enable :ref:`transformations`.
+
+.. config:option:: $cfg['MaxExactCount']
+
+ :type: integer
+ :default: 50000
+
+ For InnoDB tables, determines for how large tables phpMyAdmin should
+ get the exact row count using ``SELECT COUNT``. If the approximate row
+ count as returned by ``SHOW TABLE STATUS`` is smaller than this value,
+ ``SELECT COUNT`` will be used, otherwise the approximate count will be
+ used.
+
+ .. versionchanged:: 4.8.0
+
+ The default value was lowered to 50000 for performance reasons.
+
+ .. versionchanged:: 4.2.6
+
+ The default value was changed to 500000.
+
+ .. seealso:: :ref:`faq3_11`
+
+.. config:option:: $cfg['MaxExactCountViews']
+
+ :type: integer
+ :default: 0
+
+ For VIEWs, since obtaining the exact count could have an impact on
+ performance, this value is the maximum to be displayed, using a
+ ``SELECT COUNT ... LIMIT``. Setting this to 0 bypasses any row
+ counting.
+
+.. config:option:: $cfg['NaturalOrder']
+
+ :type: boolean
+ :default: true
+
+ Sorts database and table names according to natural order (for
+ example, t1, t2, t10). Currently implemented in the navigation panel
+ and in Database view, for the table list.
+
+.. config:option:: $cfg['InitialSlidersState']
+
+ :type: string
+ :default: ``'closed'``
+
+ If set to ``'closed'``, the visual sliders are initially in a closed
+ state. A value of ``'open'`` does the reverse. To completely disable
+ all visual sliders, use ``'disabled'``.
+
+.. config:option:: $cfg['UserprefsDisallow']
+
+ :type: array
+ :default: array()
+
+ Contains names of configuration options (keys in ``$cfg`` array) that
+ users can't set through user preferences. For possible values, refer
+ to classes under :file:`libraries/classes/Config/Forms/User/`.
+
+.. config:option:: $cfg['UserprefsDeveloperTab']
+
+ :type: boolean
+ :default: false
+
+ .. versionadded:: 3.4.0
+
+ Activates in the user preferences a tab containing options for
+ developers of phpMyAdmin.
+
+Page titles
+-----------
+
+.. config:option:: $cfg['TitleTable']
+
+ :type: string
+ :default: ``'@HTTP_HOST@ / @VSERVER@ / @DATABASE@ / @TABLE@ | @PHPMYADMIN@'``
+
+.. config:option:: $cfg['TitleDatabase']
+
+ :type: string
+ :default: ``'@HTTP_HOST@ / @VSERVER@ / @DATABASE@ | @PHPMYADMIN@'``
+
+.. config:option:: $cfg['TitleServer']
+
+ :type: string
+ :default: ``'@HTTP_HOST@ / @VSERVER@ | @PHPMYADMIN@'``
+
+.. config:option:: $cfg['TitleDefault']
+
+ :type: string
+ :default: ``'@HTTP_HOST@ | @PHPMYADMIN@'``
+
+ Allows you to specify window's title bar. You can use :ref:`faq6_27`.
+
+Theme manager settings
+----------------------
+
+.. config:option:: $cfg['ThemeManager']
+
+ :type: boolean
+ :default: true
+
+ Enables user-selectable themes. See :ref:`faqthemes`.
+
+.. config:option:: $cfg['ThemeDefault']
+
+ :type: string
+ :default: ``'pmahomme'``
+
+ The default theme (a subdirectory under :file:`./themes/`).
+
+.. config:option:: $cfg['ThemePerServer']
+
+ :type: boolean
+ :default: false
+
+ Whether to allow different theme for each server.
+
+.. config:option:: $cfg['FontSize']
+
+ :type: string
+ :default: '82%'
+
+ .. deprecated:: 5.0.0
+
+ This setting was removed as the browser is more efficient,
+ thus no need of this option.
+
+ Font size to use, is applied in CSS.
+
+Default queries
+---------------
+
+.. config:option:: $cfg['DefaultQueryTable']
+
+ :type: string
+ :default: ``'SELECT * FROM @TABLE@ WHERE 1'``
+
+.. config:option:: $cfg['DefaultQueryDatabase']
+
+ :type: string
+ :default: ``''``
+
+ Default queries that will be displayed in query boxes when user didn't
+ specify any. You can use standard :ref:`faq6_27`.
+
+MySQL settings
+--------------
+
+.. config:option:: $cfg['DefaultFunctions']
+
+ :type: array
+ :default: ``array('FUNC_CHAR' => '', 'FUNC_DATE' => '', 'FUNC_NUMBER' => '', 'FUNC_SPATIAL' => 'GeomFromText', 'FUNC_UUID' => 'UUID', 'first_timestamp' => 'NOW')``
+
+ Functions selected by default when inserting/changing row, Functions
+ are defined for meta types as (``FUNC_NUMBER``, ``FUNC_DATE``, ``FUNC_CHAR``,
+ ``FUNC_SPATIAL``, ``FUNC_UUID``) and for ``first_timestamp``, which is used
+ for first timestamp column in table.
+
+ Example configuration
+
+ .. code-block:: php
+
+ $cfg['DefaultFunctions'] = [
+ 'FUNC_CHAR' => '',
+ 'FUNC_DATE' => '',
+ 'FUNC_NUMBER' => '',
+ 'FUNC_SPATIAL' => 'ST_GeomFromText',
+ 'FUNC_UUID' => 'UUID',
+ 'first_timestamp' => 'UTC_TIMESTAMP',
+ ];
+
+Default options for Transformations
+-----------------------------------
+
+.. config:option:: $cfg['DefaultTransformations']
+
+ :type: array
+ :default: An array with below listed key-values
+
+.. config:option:: $cfg['DefaultTransformations']['Substring']
+
+ :type: array
+ :default: array(0, 'all', '…')
+
+.. config:option:: $cfg['DefaultTransformations']['Bool2Text']
+
+ :type: array
+ :default: array('T', 'F')
+
+.. config:option:: $cfg['DefaultTransformations']['External']
+
+ :type: array
+ :default: array(0, '-f /dev/null -i -wrap -q', 1, 1)
+
+.. config:option:: $cfg['DefaultTransformations']['PreApPend']
+
+ :type: array
+ :default: array('', '')
+
+.. config:option:: $cfg['DefaultTransformations']['Hex']
+
+ :type: array
+ :default: array('2')
+
+.. config:option:: $cfg['DefaultTransformations']['DateFormat']
+
+ :type: array
+ :default: array(0, '', 'local')
+
+.. config:option:: $cfg['DefaultTransformations']['Inline']
+
+ :type: array
+ :default: array('100', 100)
+
+.. config:option:: $cfg['DefaultTransformations']['TextImageLink']
+
+ :type: array
+ :default: array('', 100, 50)
+
+.. config:option:: $cfg['DefaultTransformations']['TextLink']
+
+ :type: array
+ :default: array('', '', '')
+
+Console settings
+----------------
+
+.. note::
+
+ These settings are mostly meant to be changed by user.
+
+.. config:option:: $cfg['Console']['StartHistory']
+
+ :type: boolean
+ :default: false
+
+ Show query history at start
+
+.. config:option:: $cfg['Console']['AlwaysExpand']
+
+ :type: boolean
+ :default: false
+
+ Always expand query messages
+
+.. config:option:: $cfg['Console']['CurrentQuery']
+
+ :type: boolean
+ :default: true
+
+ Show current browsing query
+
+.. config:option:: $cfg['Console']['EnterExecutes']
+
+ :type: boolean
+ :default: false
+
+ Execute queries on Enter and insert new line with Shift+Enter
+
+.. config:option:: $cfg['Console']['DarkTheme']
+
+ :type: boolean
+ :default: false
+
+ Switch to dark theme
+
+.. config:option:: $cfg['Console']['Mode']
+
+ :type: string
+ :default: 'info'
+
+ Console mode
+
+.. config:option:: $cfg['Console']['Height']
+
+ :type: integer
+ :default: 92
+
+ Console height
+
+Developer
+---------
+
+.. warning::
+
+ These settings might have huge effect on performance or security.
+
+.. config:option:: $cfg['environment']
+
+ :type: string
+ :default: ``'production'``
+
+ Sets the working environment.
+
+ This only needs to be changed when you are developing phpMyAdmin itself.
+ The ``development`` mode may display debug information in some places.
+
+ Possible values are ``'production'`` or ``'development'``.
+
+.. config:option:: $cfg['DBG']
+
+ :type: array
+ :default: []
+
+.. config:option:: $cfg['DBG']['sql']
+
+ :type: boolean
+ :default: false
+
+ Enable logging queries and execution times to be
+ displayed in the console's Debug SQL tab.
+
+.. config:option:: $cfg['DBG']['sqllog']
+
+ :type: boolean
+ :default: false
+
+ Enable logging of queries and execution times to the syslog.
+ Requires :config:option:`$cfg['DBG']['sql']` to be enabled.
+
+.. config:option:: $cfg['DBG']['demo']
+
+ :type: boolean
+ :default: false
+
+ Enable to let server present itself as demo server.
+ This is used for `phpMyAdmin demo server `_.
+
+ It currently changes following behavior:
+
+ * There is welcome message on the main page.
+ * There is footer information about demo server and used Git revision.
+ * The setup script is enabled even with existing configuration.
+ * The setup does not try to connect to the MySQL server.
+
+.. config:option:: $cfg['DBG']['simple2fa']
+
+ :type: boolean
+ :default: false
+
+ Can be used for testing two-factor authentication using :ref:`simple2fa`.
+
+.. _config-examples:
+
+Examples
+--------
+
+See following configuration snippets for typical setups of phpMyAdmin.
+
+Basic example
++++++++++++++
+
+Example configuration file, which can be copied to :file:`config.inc.php` to
+get some core configuration layout; it is distributed with phpMyAdmin as
+:file:`config.sample.inc.php`. Please note that it does not contain all
+configuration options, only the most frequently used ones.
+
+.. literalinclude:: ../config.sample.inc.php
+ :language: php
+
+.. warning::
+
+ Don't use the controluser 'pma' if it does not yet exist and don't use 'pmapass'
+ as password.
+
+.. _example-signon:
+
+Example for signon authentication
++++++++++++++++++++++++++++++++++
+
+This example uses :file:`examples/signon.php` to demonstrate usage of :ref:`auth_signon`:
+
+.. code-block:: php
+
+
+
+.. _example-aws-ssl:
+
+Amazon RDS Aurora with SSL
+++++++++++++++++++++++++++
+
+To connect phpMyAdmin to an Amazon RDS Aurora MySQL database instance using SSL,
+download the CA server certificate and tell phpMyAdmin to use it:
+
+.. code-block:: php
+
+ // Address of your instance
+ $cfg['Servers'][$i]['host'] = 'replace-me-custer-name.cluster-replace-me-id.replace-me-region.rds.amazonaws.com';
+ // Use SSL for connection
+ $cfg['Servers'][$i]['ssl'] = true;
+ // You need to have the region CA file and the authority CA file (2019 edition CA for example) in the PEM bundle for it to work
+ $cfg['Servers'][$i]['ssl_ca'] = '../rds-combined-ca-bundle.pem';
+ // Enable SSL verification
+ $cfg['Servers'][$i]['ssl_verify'] = true;
+
+.. seealso::
+
+ :ref:`ssl`,
+ :config:option:`$cfg['Servers'][$i]['ssl']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_ca']`,
+ :config:option:`$cfg['Servers'][$i]['ssl_verify']`
+
+.. seealso::
+
+ - Current RDS CA bundle for all regions https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem
+ - The RDS CA (2019 edition) for the region `eu-west-3` without the parent CA https://s3.amazonaws.com/rds-downloads/rds-ca-2019-eu-west-3.pem
+ - `List of available Amazon RDS CA files `_
+ - `Amazon MySQL Aurora security guide `_
+ - `Amazon certificates bundles per region `_
+
+reCaptcha using hCaptcha
+++++++++++++++++++++++++
+
+.. code-block:: php
+
+ $cfg['CaptchaApi'] = 'https://www.hcaptcha.com/1/api.js';
+ $cfg['CaptchaCsp'] = 'https://hcaptcha.com https://*.hcaptcha.com';
+ $cfg['CaptchaRequestParam'] = 'h-captcha';
+ $cfg['CaptchaResponseParam'] = 'h-captcha-response';
+ $cfg['CaptchaSiteVerifyURL'] = 'https://hcaptcha.com/siteverify';
+ // This is the secret key from hCaptcha dashboard
+ $cfg['CaptchaLoginPrivateKey'] = '0xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
+ // This is the site key from hCaptcha dashboard
+ $cfg['CaptchaLoginPublicKey'] = 'xxx-xxx-xxx-xxx-xxxx';
+
+.. seealso:: `hCaptcha website `_
+.. seealso:: `hCaptcha Developer Guide `_
diff --git a/piedmid/doc/html/_sources/copyright.rst.txt b/piedmid/doc/html/_sources/copyright.rst.txt
new file mode 100644
index 0000000..ed18723
--- /dev/null
+++ b/piedmid/doc/html/_sources/copyright.rst.txt
@@ -0,0 +1,42 @@
+.. _copyright:
+
+Copyright
+=========
+
+.. code-block:: none
+
+ Copyright (C) 1998-2000 Tobias Ratschiller
+ Copyright (C) 2001-2018 Marc Delisle
+ Olivier Müller
+ Robin Johnson
+ Alexander M. Turek
+ Michal Čihař
+ Garvin Hicking
+ Michael Keck
+ Sebastian Mendel
+ [check credits for more details]
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License version 2, as
+published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see .
+
+Third party licenses
+++++++++++++++++++++
+
+phpMyAdmin includes several third-party libraries which come under their
+respective licenses.
+
+jQuery's license, which is where we got the files under js/vendor/jquery/ is
+(MIT|GPL), a copy of each license is available in this repository (GPL
+is available as LICENSE, MIT as js/vendor/jquery/MIT-LICENSE.txt).
+
+The download kit additionally includes several composer libraries. See their
+licensing information in the vendor/ directory.
diff --git a/piedmid/doc/html/_sources/credits.rst.txt b/piedmid/doc/html/_sources/credits.rst.txt
new file mode 100644
index 0000000..24d074d
--- /dev/null
+++ b/piedmid/doc/html/_sources/credits.rst.txt
@@ -0,0 +1,1080 @@
+.. _credits:
+
+Credits
+=======
+
+Credits, in chronological order
++++++++++++++++++++++++++++++++
+
+* Tobias Ratschiller
+
+ * creator of the phpMyAdmin project
+
+ * maintainer from 1998 to summer 2000
+
+* Marc Delisle
+
+ * multi-language version in December 1998
+
+ * various fixes and improvements
+
+ * first version of the :term:`SQL` analyser (most of it)
+
+ * maintainer from 2001 to 2015
+
+* Olivier Müller
+
+ * started SourceForge phpMyAdmin project in March 2001
+
+ * sync'ed different existing CVS trees with new features and bugfixes
+
+ * multi-language improvements, dynamic language selection
+
+ * many bugfixes and improvements
+
+* Loïc Chapeaux
+
+ * rewrote and optimized JavaScript, DHTML and DOM stuff
+
+ * rewrote the scripts so they fit the :term:`PEAR` coding standards and
+ generate XHTML1.0 and CSS2 compliant codes
+
+ * improved the language detection system
+
+ * many bugfixes and improvements
+
+* Robin Johnson
+
+ * database maintenance controls
+
+ * table type code
+
+ * Host authentication :term:`IP` Allow/Deny
+
+ * DB-based configuration (Not completed)
+
+ * :term:`SQL` parser and pretty-printer
+
+ * :term:`SQL` validator
+
+ * many bugfixes and improvements
+
+* Armel Fauveau
+
+ * bookmarks feature
+
+ * multiple dump feature
+
+ * gzip dump feature
+
+ * zip dump feature
+
+* Geert Lund
+
+ * various fixes
+
+ * moderator of the phpMyAdmin former users forum at phpwizard.net
+
+* Korakot Chaovavanich
+
+ * "insert as new row" feature
+
+* Pete Kelly
+
+ * rewrote and fix dump code
+
+ * bugfixes
+
+* Steve Alberty
+
+ * rewrote dump code for PHP4
+
+ * mySQL table statistics
+
+ * bugfixes
+
+* Benjamin Gandon
+
+ * main author of the version 2.1.0.1
+
+ * bugfixes
+
+* Alexander M. Turek
+
+ * MySQL 4.0 / 4.1 / 5.0 compatibility
+
+ * abstract database interface (PMA\_DBI) with MySQLi support
+
+ * privileges administration
+
+ * :term:`XML` exports
+
+ * various features and fixes
+
+ * German language file updates
+
+* Mike Beck
+
+ * automatic joins in QBE
+
+ * links column in printview
+
+ * Relation view
+
+* Michal Čihař
+
+ * enhanced index creation/display feature
+
+ * feature to use a different charset for HTML than for MySQL
+
+ * improvements of export feature
+
+ * various features and fixes
+
+ * Czech language file updates
+
+ * created current website for phpMyAdmin
+
+* Christophe Gesché from the "MySQL Form Generator for PHPMyAdmin"
+ (https://sourceforge.net/projects/phpmysqlformgen/)
+
+ * suggested the patch for multiple table printviews
+
+* Garvin Hicking
+
+ * built the patch for vertical display of table rows
+
+ * built the Javascript based Query window + :term:`SQL` history
+
+ * Improvement of column/db comments
+
+ * (MIME)-Transformations for columns
+
+ * Use custom alias names for Databases in left frame
+
+ * hierarchical/nested table display
+
+ * :term:`PDF`-scratchboard for WYSIWYG-
+ distribution of :term:`PDF` relations
+
+ * new icon sets
+
+ * vertical display of column properties page
+
+ * some bugfixes, features, support, German language additions
+
+* Yukihiro Kawada
+
+ * japanese kanji encoding conversion feature
+
+* Piotr Roszatycki and Dan Wilson
+
+ * the Cookie authentication mode
+
+* Axel Sander
+
+ * table relation-links feature
+
+* Maxime Delorme
+
+ * :term:`PDF` schema output, thanks also to
+ Olivier Plathey for the "FPDF" library (see ), Steven
+ Wittens for the "UFPDF" library and
+ Nicola Asuni for the "TCPDF" library (see ).
+
+* Olof Edlund
+
+ * :term:`SQL` validator server
+
+* Ivan R. Lanin
+
+ * phpMyAdmin logo (until June 2004)
+
+* Mike Cochrane
+
+ * blowfish library from the Horde project (withdrawn in release 4.0)
+
+* Marcel Tschopp
+
+ * mysqli support
+
+ * many bugfixes and improvements
+
+* Nicola Asuni (Tecnick.com)
+
+ * TCPDF library ()
+
+* Michael Keck
+
+ * redesign for 2.6.0
+
+ * phpMyAdmin sailboat logo (June 2004)
+
+* Mathias Landhäußer
+
+ * Representation at conferences
+
+* Sebastian Mendel
+
+ * interface improvements
+
+ * various bugfixes
+
+* Ivan A Kirillov
+
+ * new relations Designer
+
+* Raj Kissu Rajandran (Google Summer of Code 2008)
+
+ * BLOBstreaming support (withdrawn in release 4.0)
+
+* Piotr Przybylski (Google Summer of Code 2008, 2010 and 2011)
+
+ * improved setup script
+
+ * user preferences
+
+ * Drizzle support
+
+* Derek Schaefer (Google Summer of Code 2009)
+
+ * Improved the import system
+
+* Alexander Rutkowski (Google Summer of Code 2009)
+
+ * Tracking mechanism
+
+* Zahra Naeem (Google Summer of Code 2009)
+
+ * Synchronization feature (removed in release 4.0)
+
+* Tomáš Srnka (Google Summer of Code 2009)
+
+ * Replication support
+
+* Muhammad Adnan (Google Summer of Code 2010)
+
+ * Relation schema export to multiple formats
+
+* Lori Lee (Google Summer of Code 2010)
+
+ * User interface improvements
+
+ * ENUM/SET editor
+
+ * Simplified interface for export/import
+
+* Ninad Pundalik (Google Summer of Code 2010)
+
+ * AJAXifying the interface
+
+* Martynas Mickevičius (Google Summer of Code 2010)
+
+ * Charts
+
+* Barrie Leslie
+
+ * BLOBstreaming support with PBMS PHP extension (withdrawn in release
+ 4.0)
+
+* Ankit Gupta (Google Summer of Code 2010)
+
+ * Visual query builder
+
+* Madhura Jayaratne (Google Summer of Code 2011)
+
+ * OpenGIS support
+
+* Ammar Yasir (Google Summer of Code 2011)
+
+ * Zoom search
+
+* Aris Feryanto (Google Summer of Code 2011)
+
+ * Browse-mode improvements
+
+* Thilanka Kaushalya (Google Summer of Code 2011)
+
+ * AJAXification
+
+* Tyron Madlener (Google Summer of Code 2011)
+
+ * Query statistics and charts for the status page
+
+* Zarubin Stas (Google Summer of Code 2011)
+
+ * Automated testing
+
+* Rouslan Placella (Google Summer of Code 2011 and 2012)
+
+ * Improved support for Stored Routines, Triggers and Events
+
+ * Italian translation updates
+
+ * Removal of frames, new navigation
+
+* Dieter Adriaenssens
+
+ * Various bugfixes
+
+ * Dutch translation updates
+
+* Alex Marin (Google Summer of Code 2012)
+
+ * New plugins and properties system
+
+* Thilina Buddika Abeyrathna (Google Summer of Code 2012)
+
+ * Refactoring
+
+* Atul Pratap Singh (Google Summer of Code 2012)
+
+ * Refactoring
+
+* Chanaka Indrajith (Google Summer of Code 2012)
+
+ * Refactoring
+
+* Yasitha Pandithawatta (Google Summer of Code 2012)
+
+ * Automated testing
+
+* Jim Wigginton (phpseclib.sourceforge.net)
+
+ * phpseclib
+
+* Bin Zu (Google Summer of Code 2013)
+
+ * Refactoring
+
+* Supun Nakandala (Google Summer of Code 2013)
+
+ * Refactoring
+
+* Mohamed Ashraf (Google Summer of Code 2013)
+
+ * AJAX error reporting
+
+* Adam Kang (Google Summer of Code 2013)
+
+ * Automated testing
+
+* Ayush Chaudhary (Google Summer of Code 2013)
+
+ * Automated testing
+
+* Kasun Chathuranga (Google Summer of Code 2013)
+
+ * Interface improvements
+
+* Hugues Peccatte
+
+ * Load/save query by example (database search bookmarks)
+
+* Smita Kumari (Google Summer of Code 2014)
+
+ * Central list of columns
+
+ * Improve table structure (normalization)
+
+* Ashutosh Dhundhara (Google Summer of Code 2014)
+
+ * Interface improvements
+
+* Dhananjay Nakrani (Google Summer of Code 2014)
+
+ * PHP error reporting
+
+* Edward Cheng (Google Summer of Code 2014)
+
+ * SQL Query Console
+
+* Kankanamge Bimal Yashodha (Google Summer of Code 2014)
+
+ * Refactoring: Designer/schema integration
+
+* Chirayu Chiripal (Google Summer of Code 2014)
+
+ * Custom field handlers (Input based MIME transformations)
+
+ * Export with table/column name changes
+
+* Dan Ungureanu (Google Summer of Code 2015)
+
+ * New parser and analyzer
+
+* Nisarg Jhaveri (Google Summer of Code 2015)
+
+ * Page-related settings
+
+ * SQL debugging integration to the Console
+
+ * Other UI improvements
+
+* Deven Bansod (Google Summer of Code 2015)
+
+ * Print view using CSS
+
+ * Other UI improvements and new features
+
+* Deven Bansod (Google Summer of Code 2017)
+
+ * Improvements to the Error Reporting Server
+
+ * Improved Selenium testing
+
+* Manish Bisht (Google Summer of Code 2017)
+
+ * Mobile user interface
+
+ * Remove inline JavaScript code
+
+ * Other UI improvements
+
+* Raghuram Vadapalli (Google Summer of Code 2017)
+
+ * Multi-table query interface
+
+ * Allow Designer to work with tables from other databases
+
+ * Other UI improvements
+
+* Maurício Meneghini Fauth
+
+ * Major improvements and upgrades to the JavaScript core
+ * Modernize JavaScript library functionality
+ * Modernize templating and introduce Twig
+
+* William Desportes
+
+ * Coding style improvements based on PHPStan
+ * Improve links to external MySQL and MariaDB documentation
+ * Numerous other bug fixes
+
+* Emanuel Bronshtein
+
+ * Comprehensive security assessment and suggestions
+
+* Lakshya Arora (Google Summer of Code 2018)
+
+ * Various improvements including:
+
+ * Integrate user preferences with local storage
+ * Use a modal login after session expiration
+ * Add support for CHECK CONSTRAINTS
+ * and more!
+
+* Saksham Gupta (Google Summer of Code 2018)
+
+ * Automated theme generator tool
+
+* Leonardo Strozzi (Google Summer of Code 2018)
+
+ * Refactoring Twig templates and other internal code improvements
+
+* Piyush Vijay (Google Summer of Code 2018)
+
+ * Modernize the JavaScript code including introducing Webpack, Babel, and Yarn as well as eslint and Jsdoc
+
+And also to the following people who have contributed minor changes,
+enhancements, bugfixes or support for a new language since version
+2.1.0:
+
+Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita,
+Péter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow, Mats
+Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kläger,
+Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg,
+Andreas Pauley, Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval
+Sarna, www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun,
+Peter Svec, Michael Tacelosky, Rachim Tamsjadi, Kositer Uros, Luís V.,
+Martijn W. van der Lee, Algis Vainauskas, Daniel Villanueva, Vinay,
+Ignacio Vazquez-Abrams, Chee Wai, Jakub Wilk, Thomas Michael
+Winningham, Vilius Zigmantas, "Manuzhai".
+
+Translators
++++++++++++
+
+Following people have contributed to translation of phpMyAdmin:
+
+* Albanian
+
+ * Arben Çokaj
+
+* Arabic
+
+ * Ahmed Saleh Abd El-Raouf Ismae
+ * Ahmed Saad
+ * hassan mokhtari
+
+* Armenian
+
+ * Andrey Aleksanyants
+
+* Azerbaijani
+
+ * Mircəlal <01youknowme\_at\_gmail.com>
+ * Huseyn
+ * Sevdimali İsa
+ * Jafar
+
+* Belarusian
+
+ * Viktar Palstsiuk
+
+* Bulgarian
+
+ * Boyan Kehayov
+ * Valter Georgiev
+ * Valentin Mladenov
+ * P
+ * krasimir
+
+* Catalan
+
+ * josep constanti
+ * Xavier Navarro
+
+* Chinese (China)
+
+ * Vincent Lau <3092849\_at\_qq.com>
+ * Zheng Dan
+ * disorderman
+ * Rex Lee
+ *
+ * popcorner
+ * Yizhou Qiang
+ * zz
+ * Terry Weng
+ * whh
+
+* Chinese (Taiwan)
+
+ * Albert Song
+ * Chien Wei Lin
+ * Peter Dave Hello
+
+* Colognian
+
+ * Purodha
+
+* Czech
+
+ * Aleš Hakl
+ * Dalibor Straka
+ * Martin Vidner
+ * Ondra Šimeček
+ * Jan Palider
+ * Petr Kateřiňák
+
+* Danish
+
+ * Aputsiaĸ Niels Janussen
+ * Dennis Jakobsen
+ * Jonas
+ * Claus Svalekjaer
+
+* Dutch
+
+ * A. Voogt
+ * dingo thirteen
+ * Robin van der Vliet
+ * Dieter Adriaenssens
+ * Niko Strijbol
+
+* English (United Kingdom)
+
+ * Dries Verschuere
+ * Francisco Rocha
+ * Marc Delisle
+ * Marek Tomaštík
+
+* Esperanto
+
+ * Eliovir
+ * Robin van der Vliet
+
+* Estonian
+
+ * Kristjan Räts
+
+* Finnish
+
+ * Juha Remes
+ * Lari Oesch
+
+* French
+
+ * Marc Delisle
+
+* Frisian
+
+ * Robin van der Vliet
+
+* Galician
+
+ * Xosé Calvo
+
+* German
+
+ * Julian Ladisch
+ * Jan Erik Zassenhaus
+ * Lasse Goericke
+ * Matthias Bluthardt
+ * Michael Koch
+ * Ann + J.M.
+ *
+ * Phillip Rohmberger
+ * Hauke Henningsen
+
+* Greek
+
+ * Παναγιώτης Παπάζογλου
+
+* Hebrew
+
+ * Moshe Harush
+ * Yaron Shahrabani
+ * Eyal Visoker
+
+* Hindi
+
+ * Atul Pratap Singh
+ * Yogeshwar
+ * Deven Bansod
+ * Kushagra Pandey
+ * Nisarg Jhaveri
+ * Roohan Kazi
+ * Yugal Pantola
+
+* Hungarian
+
+ * Akos Eros
+ * Dániel Tóth
+ * Szász Attila
+ * Balázs Úr
+
+* Indonesian
+
+ * Deky Arifianto
+ * Andika Triwidada
+ * Dadan Setia
+ * Dadan Setia
+ * Yohanes Edwin
+ * Fadhiil Rachman
+ * Benny
+ * Tommy Surbakti
+ * Zufar Fathi Suhardi
+
+* Interlingua
+
+ * Giovanni Sora
+
+* Italian
+
+ * Francesco Saverio Giacobazzi
+ * Marco Pozzato
+ * Stefano Martinelli
+
+* Japanese
+
+ * k725
+ * Hiroshi Chiyokawa
+ * Masahiko HISAKAWA
+ * worldwideskier
+
+* Kannada
+
+ * Robin van der Vliet
+ * Shameem Ahmed A Mulla
+
+* Korean
+
+ * Bumsoo Kim
+ * Kyeong Su Shin
+ * Dongyoung Kim
+ * Myung-han Yu
+ * JongDeok
+ * Yong Kim
+ * 이경준
+ * Seongki Shin
+ * Yoon Bum-Jong
+ * Koo Youngmin
+
+* Kurdish Sorani
+
+ * Alan Hilal
+ * Aso Naderi
+ * muhammad
+ * Zrng Abdulla
+
+* Latvian
+
+ * Latvian TV
+ * Edgars Neimanis
+ * Ukko
+
+* Limburgish
+
+ * Robin van der Vliet
+
+* Lithuanian
+
+ * Vytautas Motuzas
+
+* Malay
+
+ * Amir Hamzah
+ * diprofinfiniti
+
+* Nepali
+
+ * Nabin Ghimire
+
+* Norwegian Bokmål
+
+ * Børge Holm-Wennberg
+ * Tor Stokkan
+ * Espen Frøyshov
+ * Kurt Eilertsen
+ * Christoffer Haugom
+ * Sebastian
+ * Tomas
+
+* Persian
+
+ * ashkan shirian
+ * HM
+
+* Polish
+
+ * Andrzej
+ * Przemo
+ * Krystian Biesaga
+ * Maciej Gryniuk
+ * Michał VonFlynee
+
+* Portuguese
+
+ * Alexandre Badalo
+ * João Rodrigues
+ * Pedro Ribeiro
+ * Sandro Amaral
+
+* Portuguese (Brazil)
+
+ * Alex Rohleder
+ * bruno mendax
+ * Danilo GUia
+ * Douglas Rafael Morais Kollar
+ * Douglas Eccker
+ * Ed Jr
+ * Guilherme Souza Silva
+ * Guilherme Seibt
+ * Helder Santana
+ * Junior Zancan
+ * Luis
+ * Marcos Algeri
+ * Marc Delisle
+ * Renato Rodrigues de Lima Júnio
+ * Thiago Casotti
+ * Victor Laureano
+ * Vinícius Araújo
+ * Washington Bruno Rodrigues Cav
+ * Yan Gabriel
+
+* Punjabi
+
+ * Robin van der Vliet
+
+* Romanian
+
+ * Alex
+ * Costel Cocerhan
+ * Ion Adrian-Ionut
+ * Raul Molnar
+ * Deleted User
+ * Stefan Murariu
+
+* Russian
+
+ * Andrey Aleksanyants
+ *
+ * Robin van der Vliet
+ * Хомутов Иван Сергеевич
+ * Alexey Rubinov
+ * Олег Карпов
+ * Egorov Artyom
+
+* Serbian
+
+ * Smart Kid
+
+* Sinhala
+
+ * Madhura Jayaratne
+
+* Slovak
+
+ * Martin Lacina
+ * Patrik Kollmann
+ * Jozef Pistej
+
+* Slovenian
+
+ * Domen
+
+* Spanish
+
+ * Luis García Sevillano
+ * Franco
+ * Luis Ruiz
+ * Macofe
+ * Matías Bellone
+ * Rodrigo A.
+ * FAMMA TV NOTICIAS MEDIOS DE CO
+ * Ronnie Simon
+
+* Swedish
+
+ * Anders Jonsson
+
+* Tamil
+
+ * கணேஷ் குமார்
+ * Achchuthan Yogarajah
+ * Rifthy Ahmed
+
+* Thai
+
+ *
+ * Somthanat W.
+
+* Turkish
+
+ * Burak Yavuz
+
+* Ukrainian
+
+ * Сергій Педько