├── .gitignore ├── .idea ├── .gitignore ├── modules.xml ├── php.xml ├── vcs.xml └── wp-wix-clone.iml ├── LICENCE ├── README.md ├── docker-compose.yml ├── packages ├── wix-client │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── src │ │ ├── Api │ │ └── SingleLogin.php │ │ ├── Core │ │ ├── DecryptionService.php │ │ └── HttpService.php │ │ └── Features │ │ ├── SecureHostConnection.php │ │ └── UiWPCSAdminTenantSettings.php └── wix-host │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── src │ ├── Api │ ├── SingleLogin.php │ └── TenantsAuthKeys.php │ ├── Core │ ├── EncryptionService.php │ ├── HttpService.php │ ├── WPCSService.php │ └── WPCSTenant.php │ └── Features │ ├── TenantsSubscription.php │ ├── UiAccountSubscriptionsSettings.php │ ├── UiWPCSAdminSettings.php │ ├── UiWcTenantsCheckout.php │ └── UiWcWPCSProductVersions.php └── scripts ├── build.sh ├── cronjob.sh └── watch.sh /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | build 3 | .db 4 | 5 | # Created by https://www.toptal.com/developers/gitignore/api/phpstorm,wordpress 6 | # Edit at https://www.toptal.com/developers/gitignore?templates=phpstorm,wordpress 7 | 8 | ### PhpStorm ### 9 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 10 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 11 | 12 | # User-specific stuff 13 | .idea/**/workspace.xml 14 | .idea/**/tasks.xml 15 | .idea/**/usage.statistics.xml 16 | .idea/**/dictionaries 17 | .idea/**/shelf 18 | .DS_Store 19 | vendor 20 | 21 | # AWS User-specific 22 | .idea/**/aws.xml 23 | 24 | # Generated files 25 | .idea/**/contentModel.xml 26 | 27 | # Sensitive or high-churn files 28 | .idea/**/dataSources/ 29 | .idea/**/dataSources.ids 30 | .idea/**/dataSources.local.xml 31 | .idea/**/sqlDataSources.xml 32 | .idea/**/dynamic.xml 33 | .idea/**/uiDesigner.xml 34 | .idea/**/dbnavigator.xml 35 | 36 | # Gradle 37 | .idea/**/gradle.xml 38 | .idea/**/libraries 39 | 40 | # Gradle and Maven with auto-import 41 | # When using Gradle or Maven with auto-import, you should exclude module files, 42 | # since they will be recreated, and may cause churn. Uncomment if using 43 | # auto-import. 44 | # .idea/artifacts 45 | # .idea/compiler.xml 46 | # .idea/jarRepositories.xml 47 | # .idea/modules.xml 48 | # .idea/*.iml 49 | # .idea/modules 50 | # *.iml 51 | # *.ipr 52 | 53 | # CMake 54 | cmake-build-*/ 55 | 56 | # Mongo Explorer plugin 57 | .idea/**/mongoSettings.xml 58 | 59 | # File-based project format 60 | *.iws 61 | 62 | # IntelliJ 63 | out/ 64 | 65 | # mpeltonen/sbt-idea plugin 66 | .idea_modules/ 67 | 68 | # JIRA plugin 69 | atlassian-ide-plugin.xml 70 | 71 | # Cursive Clojure plugin 72 | .idea/replstate.xml 73 | 74 | # SonarLint plugin 75 | .idea/sonarlint/ 76 | 77 | # Crashlytics plugin (for Android Studio and IntelliJ) 78 | com_crashlytics_export_strings.xml 79 | crashlytics.properties 80 | crashlytics-build.properties 81 | fabric.properties 82 | 83 | # Editor-based Rest Client 84 | .idea/httpRequests 85 | 86 | # Android studio 3.1+ serialized cache file 87 | .idea/caches/build_file_checksums.ser 88 | 89 | ### PhpStorm Patch ### 90 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 91 | 92 | # *.iml 93 | # modules.xml 94 | # .idea/misc.xml 95 | # *.ipr 96 | 97 | # Sonarlint plugin 98 | # https://plugins.jetbrains.com/plugin/7973-sonarlint 99 | .idea/**/sonarlint/ 100 | 101 | # SonarQube Plugin 102 | # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin 103 | .idea/**/sonarIssues.xml 104 | 105 | # Markdown Navigator plugin 106 | # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced 107 | .idea/**/markdown-navigator.xml 108 | .idea/**/markdown-navigator-enh.xml 109 | .idea/**/markdown-navigator/ 110 | 111 | # Cache file creation bug 112 | # See https://youtrack.jetbrains.com/issue/JBR-2257 113 | .idea/$CACHE_FILE$ 114 | 115 | # CodeStream plugin 116 | # https://plugins.jetbrains.com/plugin/12206-codestream 117 | .idea/codestream.xml 118 | 119 | # Azure Toolkit for IntelliJ plugin 120 | # https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij 121 | .idea/**/azureSettings.xml 122 | 123 | ### WordPress ### 124 | # Core 125 | # 126 | # Note: if you want to stage/commit WP core files 127 | # you can delete this whole section/until Configuration. 128 | /wp-admin/ 129 | /wp-content/index.php 130 | /wp-content/languages 131 | /wp-content/plugins/index.php 132 | /wp-content/themes/index.php 133 | /wp-includes/ 134 | /index.php 135 | /license.txt 136 | /readme.html 137 | /wp-*.php 138 | /xmlrpc.php 139 | 140 | # Configuration 141 | wp-config.php 142 | 143 | # Example themes 144 | /wp-content/themes/twenty*/ 145 | 146 | # Example plugin 147 | /wp-content/plugins/hello.php 148 | 149 | # Uploads 150 | /wp-content/uploads/ 151 | 152 | # Log files 153 | *.log 154 | 155 | # htaccess 156 | /.htaccess 157 | 158 | # All plugins 159 | # Note: If you wish to whitelist plugins, 160 | # uncomment the next line 161 | #/wp-content/plugins 162 | 163 | # All themes 164 | # Note: If you wish to whitelist themes, 165 | # uncomment the next line 166 | #/wp-content/themes 167 | 168 | 169 | # End of https://www.toptal.com/developers/gitignore/api/phpstorm,wordpress 170 | /vendor/ 171 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/wp-wix-clone.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wix SaaS Clone using WordPress, WooCommerce, WPCS & k8s 2 | 3 | This is a Wix Clone build using various technologies to illustrate how easy it is to build SaaS products using WordPress 4 | 5 | ## [YouTube Video](http://www.youtube.com/watch?v=shEh0-P7pz0) 6 | 7 | [![Building Wix SaaS Clone using WordPress, WooCommerce, WPCS & k8s](http://img.youtube.com/vi/Sa_38G-pp0o/0.jpg)](http://www.youtube.com/watch?v=Sa_38G-pp0o "Building Wix SaaS Clone using WordPress, WooCommerce, WPCS & k8s") 8 | 9 | ## Local Development 10 | 11 | ### Required tools 12 | 13 | - Docker and Docker-Compose 14 | - Composer 15 | - `fswarch` & `rsync` 16 | 17 | ### Steps 18 | 19 | - `git clone` the project 20 | - Run `composer install` inside `src` directory 21 | - Run to create dist directories `mkdir dist && mkdir dist/host && mkdir dist/client` 22 | - Run `docker-compose up` 23 | - Run the following command to sync files between src and dist 24 | 25 | ```shell 26 | fswatch -o packages/wix-host | xargs -n1 -I{} rsync -a packages/wix-host dist/host/plugins 27 | ``` 28 | 29 | ```shell 30 | fswatch -o packages/wix-client | xargs -n1 -I{} rsync -a packages/wix-client dist/client/plugins 31 | ``` 32 | 33 | ## Building 34 | 35 | Run the following command to build the plugins 36 | 37 | ```shell 38 | bash scripts/build.sh 39 | ``` 40 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "3.7" 2 | 3 | services: 4 | wordpress-host: 5 | image: wordpress:6.0.0-php8.0 6 | restart: always 7 | ports: 8 | - "80:80" 9 | environment: 10 | WORDPRESS_DB_HOST: db-host 11 | WORDPRESS_DB_USER: wp_db_user 12 | WORDPRESS_DB_PASSWORD: wp_db_pass 13 | WORDPRESS_DB_NAME: wp_db 14 | WORDPRESS_DEBUG: 1 15 | volumes: 16 | - ./dist/host/plugins:/var/www/html/wp-content/plugins 17 | - ./dist/host/themes:/var/www/html/wp-content/themes 18 | 19 | wordpress-client: 20 | image: wordpress:6.0.0-php8.0 21 | restart: always 22 | ports: 23 | - "4000:80" 24 | environment: 25 | WORDPRESS_DB_HOST: db-client 26 | WORDPRESS_DB_USER: wp_db_user 27 | WORDPRESS_DB_PASSWORD: wp_db_pass 28 | WORDPRESS_DB_NAME: wp_db 29 | WORDPRESS_DEBUG: 1 30 | volumes: 31 | - ./dist/client/plugins:/var/www/html/wp-content/plugins 32 | - ./dist/client/themes:/var/www/html/wp-content/themes 33 | 34 | db-host: 35 | image: mysql:5.7 36 | platform: linux/amd64 37 | restart: always 38 | environment: 39 | MYSQL_DATABASE: wp_db 40 | MYSQL_USER: wp_db_user 41 | MYSQL_PASSWORD: wp_db_pass 42 | MYSQL_RANDOM_ROOT_PASSWORD: '1' 43 | volumes: 44 | - ./dist/host/.db:/var/lib/mysql 45 | 46 | db-client: 47 | image: mysql:5.7 48 | platform: linux/amd64 49 | restart: always 50 | environment: 51 | MYSQL_DATABASE: wp_db 52 | MYSQL_USER: wp_db_user 53 | MYSQL_PASSWORD: wp_db_pass 54 | MYSQL_RANDOM_ROOT_PASSWORD: '1' 55 | volumes: 56 | - ./dist/client/.db:/var/lib/mysql 57 | -------------------------------------------------------------------------------- /packages/wix-client/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "abduvik/wix-clone-client", 3 | "description": "WordPress plugin to communicate with Wix-Clone Host", 4 | "type": "project", 5 | "autoload": { 6 | "psr-4": { 7 | "WixCloneClient\\": "src/" 8 | } 9 | }, 10 | "autoload-dev": { 11 | "psr-4": { 12 | "Tests\\": "tests/" 13 | } 14 | }, 15 | "authors": [ 16 | { 17 | "name": "abduvik", 18 | "email": "contact@abdu.dev" 19 | } 20 | ], 21 | "require-dev": { 22 | "phpunit/phpunit": "^9.5" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /packages/wix-client/composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "1743a25c3bbb261574d45c7650c65275", 8 | "packages": [], 9 | "packages-dev": [ 10 | { 11 | "name": "doctrine/instantiator", 12 | "version": "1.4.1", 13 | "source": { 14 | "type": "git", 15 | "url": "https://github.com/doctrine/instantiator.git", 16 | "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc" 17 | }, 18 | "dist": { 19 | "type": "zip", 20 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc", 21 | "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc", 22 | "shasum": "" 23 | }, 24 | "require": { 25 | "php": "^7.1 || ^8.0" 26 | }, 27 | "require-dev": { 28 | "doctrine/coding-standard": "^9", 29 | "ext-pdo": "*", 30 | "ext-phar": "*", 31 | "phpbench/phpbench": "^0.16 || ^1", 32 | "phpstan/phpstan": "^1.4", 33 | "phpstan/phpstan-phpunit": "^1", 34 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", 35 | "vimeo/psalm": "^4.22" 36 | }, 37 | "type": "library", 38 | "autoload": { 39 | "psr-4": { 40 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 41 | } 42 | }, 43 | "notification-url": "https://packagist.org/downloads/", 44 | "license": [ 45 | "MIT" 46 | ], 47 | "authors": [ 48 | { 49 | "name": "Marco Pivetta", 50 | "email": "ocramius@gmail.com", 51 | "homepage": "https://ocramius.github.io/" 52 | } 53 | ], 54 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 55 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html", 56 | "keywords": [ 57 | "constructor", 58 | "instantiate" 59 | ], 60 | "support": { 61 | "issues": "https://github.com/doctrine/instantiator/issues", 62 | "source": "https://github.com/doctrine/instantiator/tree/1.4.1" 63 | }, 64 | "funding": [ 65 | { 66 | "url": "https://www.doctrine-project.org/sponsorship.html", 67 | "type": "custom" 68 | }, 69 | { 70 | "url": "https://www.patreon.com/phpdoctrine", 71 | "type": "patreon" 72 | }, 73 | { 74 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", 75 | "type": "tidelift" 76 | } 77 | ], 78 | "time": "2022-03-03T08:28:38+00:00" 79 | }, 80 | { 81 | "name": "myclabs/deep-copy", 82 | "version": "1.11.0", 83 | "source": { 84 | "type": "git", 85 | "url": "https://github.com/myclabs/DeepCopy.git", 86 | "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614" 87 | }, 88 | "dist": { 89 | "type": "zip", 90 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614", 91 | "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614", 92 | "shasum": "" 93 | }, 94 | "require": { 95 | "php": "^7.1 || ^8.0" 96 | }, 97 | "conflict": { 98 | "doctrine/collections": "<1.6.8", 99 | "doctrine/common": "<2.13.3 || >=3,<3.2.2" 100 | }, 101 | "require-dev": { 102 | "doctrine/collections": "^1.6.8", 103 | "doctrine/common": "^2.13.3 || ^3.2.2", 104 | "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" 105 | }, 106 | "type": "library", 107 | "autoload": { 108 | "files": [ 109 | "src/DeepCopy/deep_copy.php" 110 | ], 111 | "psr-4": { 112 | "DeepCopy\\": "src/DeepCopy/" 113 | } 114 | }, 115 | "notification-url": "https://packagist.org/downloads/", 116 | "license": [ 117 | "MIT" 118 | ], 119 | "description": "Create deep copies (clones) of your objects", 120 | "keywords": [ 121 | "clone", 122 | "copy", 123 | "duplicate", 124 | "object", 125 | "object graph" 126 | ], 127 | "support": { 128 | "issues": "https://github.com/myclabs/DeepCopy/issues", 129 | "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0" 130 | }, 131 | "funding": [ 132 | { 133 | "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", 134 | "type": "tidelift" 135 | } 136 | ], 137 | "time": "2022-03-03T13:19:32+00:00" 138 | }, 139 | { 140 | "name": "nikic/php-parser", 141 | "version": "v4.14.0", 142 | "source": { 143 | "type": "git", 144 | "url": "https://github.com/nikic/PHP-Parser.git", 145 | "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1" 146 | }, 147 | "dist": { 148 | "type": "zip", 149 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1", 150 | "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1", 151 | "shasum": "" 152 | }, 153 | "require": { 154 | "ext-tokenizer": "*", 155 | "php": ">=7.0" 156 | }, 157 | "require-dev": { 158 | "ircmaxell/php-yacc": "^0.0.7", 159 | "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" 160 | }, 161 | "bin": [ 162 | "bin/php-parse" 163 | ], 164 | "type": "library", 165 | "extra": { 166 | "branch-alias": { 167 | "dev-master": "4.9-dev" 168 | } 169 | }, 170 | "autoload": { 171 | "psr-4": { 172 | "PhpParser\\": "lib/PhpParser" 173 | } 174 | }, 175 | "notification-url": "https://packagist.org/downloads/", 176 | "license": [ 177 | "BSD-3-Clause" 178 | ], 179 | "authors": [ 180 | { 181 | "name": "Nikita Popov" 182 | } 183 | ], 184 | "description": "A PHP parser written in PHP", 185 | "keywords": [ 186 | "parser", 187 | "php" 188 | ], 189 | "support": { 190 | "issues": "https://github.com/nikic/PHP-Parser/issues", 191 | "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0" 192 | }, 193 | "time": "2022-05-31T20:59:12+00:00" 194 | }, 195 | { 196 | "name": "phar-io/manifest", 197 | "version": "2.0.3", 198 | "source": { 199 | "type": "git", 200 | "url": "https://github.com/phar-io/manifest.git", 201 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53" 202 | }, 203 | "dist": { 204 | "type": "zip", 205 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", 206 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53", 207 | "shasum": "" 208 | }, 209 | "require": { 210 | "ext-dom": "*", 211 | "ext-phar": "*", 212 | "ext-xmlwriter": "*", 213 | "phar-io/version": "^3.0.1", 214 | "php": "^7.2 || ^8.0" 215 | }, 216 | "type": "library", 217 | "extra": { 218 | "branch-alias": { 219 | "dev-master": "2.0.x-dev" 220 | } 221 | }, 222 | "autoload": { 223 | "classmap": [ 224 | "src/" 225 | ] 226 | }, 227 | "notification-url": "https://packagist.org/downloads/", 228 | "license": [ 229 | "BSD-3-Clause" 230 | ], 231 | "authors": [ 232 | { 233 | "name": "Arne Blankerts", 234 | "email": "arne@blankerts.de", 235 | "role": "Developer" 236 | }, 237 | { 238 | "name": "Sebastian Heuer", 239 | "email": "sebastian@phpeople.de", 240 | "role": "Developer" 241 | }, 242 | { 243 | "name": "Sebastian Bergmann", 244 | "email": "sebastian@phpunit.de", 245 | "role": "Developer" 246 | } 247 | ], 248 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", 249 | "support": { 250 | "issues": "https://github.com/phar-io/manifest/issues", 251 | "source": "https://github.com/phar-io/manifest/tree/2.0.3" 252 | }, 253 | "time": "2021-07-20T11:28:43+00:00" 254 | }, 255 | { 256 | "name": "phar-io/version", 257 | "version": "3.2.1", 258 | "source": { 259 | "type": "git", 260 | "url": "https://github.com/phar-io/version.git", 261 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" 262 | }, 263 | "dist": { 264 | "type": "zip", 265 | "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", 266 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", 267 | "shasum": "" 268 | }, 269 | "require": { 270 | "php": "^7.2 || ^8.0" 271 | }, 272 | "type": "library", 273 | "autoload": { 274 | "classmap": [ 275 | "src/" 276 | ] 277 | }, 278 | "notification-url": "https://packagist.org/downloads/", 279 | "license": [ 280 | "BSD-3-Clause" 281 | ], 282 | "authors": [ 283 | { 284 | "name": "Arne Blankerts", 285 | "email": "arne@blankerts.de", 286 | "role": "Developer" 287 | }, 288 | { 289 | "name": "Sebastian Heuer", 290 | "email": "sebastian@phpeople.de", 291 | "role": "Developer" 292 | }, 293 | { 294 | "name": "Sebastian Bergmann", 295 | "email": "sebastian@phpunit.de", 296 | "role": "Developer" 297 | } 298 | ], 299 | "description": "Library for handling version information and constraints", 300 | "support": { 301 | "issues": "https://github.com/phar-io/version/issues", 302 | "source": "https://github.com/phar-io/version/tree/3.2.1" 303 | }, 304 | "time": "2022-02-21T01:04:05+00:00" 305 | }, 306 | { 307 | "name": "phpdocumentor/reflection-common", 308 | "version": "2.2.0", 309 | "source": { 310 | "type": "git", 311 | "url": "https://github.com/phpDocumentor/ReflectionCommon.git", 312 | "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" 313 | }, 314 | "dist": { 315 | "type": "zip", 316 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", 317 | "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", 318 | "shasum": "" 319 | }, 320 | "require": { 321 | "php": "^7.2 || ^8.0" 322 | }, 323 | "type": "library", 324 | "extra": { 325 | "branch-alias": { 326 | "dev-2.x": "2.x-dev" 327 | } 328 | }, 329 | "autoload": { 330 | "psr-4": { 331 | "phpDocumentor\\Reflection\\": "src/" 332 | } 333 | }, 334 | "notification-url": "https://packagist.org/downloads/", 335 | "license": [ 336 | "MIT" 337 | ], 338 | "authors": [ 339 | { 340 | "name": "Jaap van Otterdijk", 341 | "email": "opensource@ijaap.nl" 342 | } 343 | ], 344 | "description": "Common reflection classes used by phpdocumentor to reflect the code structure", 345 | "homepage": "http://www.phpdoc.org", 346 | "keywords": [ 347 | "FQSEN", 348 | "phpDocumentor", 349 | "phpdoc", 350 | "reflection", 351 | "static analysis" 352 | ], 353 | "support": { 354 | "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", 355 | "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" 356 | }, 357 | "time": "2020-06-27T09:03:43+00:00" 358 | }, 359 | { 360 | "name": "phpdocumentor/reflection-docblock", 361 | "version": "5.3.0", 362 | "source": { 363 | "type": "git", 364 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", 365 | "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" 366 | }, 367 | "dist": { 368 | "type": "zip", 369 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", 370 | "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", 371 | "shasum": "" 372 | }, 373 | "require": { 374 | "ext-filter": "*", 375 | "php": "^7.2 || ^8.0", 376 | "phpdocumentor/reflection-common": "^2.2", 377 | "phpdocumentor/type-resolver": "^1.3", 378 | "webmozart/assert": "^1.9.1" 379 | }, 380 | "require-dev": { 381 | "mockery/mockery": "~1.3.2", 382 | "psalm/phar": "^4.8" 383 | }, 384 | "type": "library", 385 | "extra": { 386 | "branch-alias": { 387 | "dev-master": "5.x-dev" 388 | } 389 | }, 390 | "autoload": { 391 | "psr-4": { 392 | "phpDocumentor\\Reflection\\": "src" 393 | } 394 | }, 395 | "notification-url": "https://packagist.org/downloads/", 396 | "license": [ 397 | "MIT" 398 | ], 399 | "authors": [ 400 | { 401 | "name": "Mike van Riel", 402 | "email": "me@mikevanriel.com" 403 | }, 404 | { 405 | "name": "Jaap van Otterdijk", 406 | "email": "account@ijaap.nl" 407 | } 408 | ], 409 | "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", 410 | "support": { 411 | "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", 412 | "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" 413 | }, 414 | "time": "2021-10-19T17:43:47+00:00" 415 | }, 416 | { 417 | "name": "phpdocumentor/type-resolver", 418 | "version": "1.6.1", 419 | "source": { 420 | "type": "git", 421 | "url": "https://github.com/phpDocumentor/TypeResolver.git", 422 | "reference": "77a32518733312af16a44300404e945338981de3" 423 | }, 424 | "dist": { 425 | "type": "zip", 426 | "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3", 427 | "reference": "77a32518733312af16a44300404e945338981de3", 428 | "shasum": "" 429 | }, 430 | "require": { 431 | "php": "^7.2 || ^8.0", 432 | "phpdocumentor/reflection-common": "^2.0" 433 | }, 434 | "require-dev": { 435 | "ext-tokenizer": "*", 436 | "psalm/phar": "^4.8" 437 | }, 438 | "type": "library", 439 | "extra": { 440 | "branch-alias": { 441 | "dev-1.x": "1.x-dev" 442 | } 443 | }, 444 | "autoload": { 445 | "psr-4": { 446 | "phpDocumentor\\Reflection\\": "src" 447 | } 448 | }, 449 | "notification-url": "https://packagist.org/downloads/", 450 | "license": [ 451 | "MIT" 452 | ], 453 | "authors": [ 454 | { 455 | "name": "Mike van Riel", 456 | "email": "me@mikevanriel.com" 457 | } 458 | ], 459 | "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", 460 | "support": { 461 | "issues": "https://github.com/phpDocumentor/TypeResolver/issues", 462 | "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1" 463 | }, 464 | "time": "2022-03-15T21:29:03+00:00" 465 | }, 466 | { 467 | "name": "phpspec/prophecy", 468 | "version": "v1.15.0", 469 | "source": { 470 | "type": "git", 471 | "url": "https://github.com/phpspec/prophecy.git", 472 | "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13" 473 | }, 474 | "dist": { 475 | "type": "zip", 476 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13", 477 | "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13", 478 | "shasum": "" 479 | }, 480 | "require": { 481 | "doctrine/instantiator": "^1.2", 482 | "php": "^7.2 || ~8.0, <8.2", 483 | "phpdocumentor/reflection-docblock": "^5.2", 484 | "sebastian/comparator": "^3.0 || ^4.0", 485 | "sebastian/recursion-context": "^3.0 || ^4.0" 486 | }, 487 | "require-dev": { 488 | "phpspec/phpspec": "^6.0 || ^7.0", 489 | "phpunit/phpunit": "^8.0 || ^9.0" 490 | }, 491 | "type": "library", 492 | "extra": { 493 | "branch-alias": { 494 | "dev-master": "1.x-dev" 495 | } 496 | }, 497 | "autoload": { 498 | "psr-4": { 499 | "Prophecy\\": "src/Prophecy" 500 | } 501 | }, 502 | "notification-url": "https://packagist.org/downloads/", 503 | "license": [ 504 | "MIT" 505 | ], 506 | "authors": [ 507 | { 508 | "name": "Konstantin Kudryashov", 509 | "email": "ever.zet@gmail.com", 510 | "homepage": "http://everzet.com" 511 | }, 512 | { 513 | "name": "Marcello Duarte", 514 | "email": "marcello.duarte@gmail.com" 515 | } 516 | ], 517 | "description": "Highly opinionated mocking framework for PHP 5.3+", 518 | "homepage": "https://github.com/phpspec/prophecy", 519 | "keywords": [ 520 | "Double", 521 | "Dummy", 522 | "fake", 523 | "mock", 524 | "spy", 525 | "stub" 526 | ], 527 | "support": { 528 | "issues": "https://github.com/phpspec/prophecy/issues", 529 | "source": "https://github.com/phpspec/prophecy/tree/v1.15.0" 530 | }, 531 | "time": "2021-12-08T12:19:24+00:00" 532 | }, 533 | { 534 | "name": "phpunit/php-code-coverage", 535 | "version": "9.2.15", 536 | "source": { 537 | "type": "git", 538 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 539 | "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f" 540 | }, 541 | "dist": { 542 | "type": "zip", 543 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f", 544 | "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f", 545 | "shasum": "" 546 | }, 547 | "require": { 548 | "ext-dom": "*", 549 | "ext-libxml": "*", 550 | "ext-xmlwriter": "*", 551 | "nikic/php-parser": "^4.13.0", 552 | "php": ">=7.3", 553 | "phpunit/php-file-iterator": "^3.0.3", 554 | "phpunit/php-text-template": "^2.0.2", 555 | "sebastian/code-unit-reverse-lookup": "^2.0.2", 556 | "sebastian/complexity": "^2.0", 557 | "sebastian/environment": "^5.1.2", 558 | "sebastian/lines-of-code": "^1.0.3", 559 | "sebastian/version": "^3.0.1", 560 | "theseer/tokenizer": "^1.2.0" 561 | }, 562 | "require-dev": { 563 | "phpunit/phpunit": "^9.3" 564 | }, 565 | "suggest": { 566 | "ext-pcov": "*", 567 | "ext-xdebug": "*" 568 | }, 569 | "type": "library", 570 | "extra": { 571 | "branch-alias": { 572 | "dev-master": "9.2-dev" 573 | } 574 | }, 575 | "autoload": { 576 | "classmap": [ 577 | "src/" 578 | ] 579 | }, 580 | "notification-url": "https://packagist.org/downloads/", 581 | "license": [ 582 | "BSD-3-Clause" 583 | ], 584 | "authors": [ 585 | { 586 | "name": "Sebastian Bergmann", 587 | "email": "sebastian@phpunit.de", 588 | "role": "lead" 589 | } 590 | ], 591 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 592 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 593 | "keywords": [ 594 | "coverage", 595 | "testing", 596 | "xunit" 597 | ], 598 | "support": { 599 | "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", 600 | "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15" 601 | }, 602 | "funding": [ 603 | { 604 | "url": "https://github.com/sebastianbergmann", 605 | "type": "github" 606 | } 607 | ], 608 | "time": "2022-03-07T09:28:20+00:00" 609 | }, 610 | { 611 | "name": "phpunit/php-file-iterator", 612 | "version": "3.0.6", 613 | "source": { 614 | "type": "git", 615 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 616 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" 617 | }, 618 | "dist": { 619 | "type": "zip", 620 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", 621 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", 622 | "shasum": "" 623 | }, 624 | "require": { 625 | "php": ">=7.3" 626 | }, 627 | "require-dev": { 628 | "phpunit/phpunit": "^9.3" 629 | }, 630 | "type": "library", 631 | "extra": { 632 | "branch-alias": { 633 | "dev-master": "3.0-dev" 634 | } 635 | }, 636 | "autoload": { 637 | "classmap": [ 638 | "src/" 639 | ] 640 | }, 641 | "notification-url": "https://packagist.org/downloads/", 642 | "license": [ 643 | "BSD-3-Clause" 644 | ], 645 | "authors": [ 646 | { 647 | "name": "Sebastian Bergmann", 648 | "email": "sebastian@phpunit.de", 649 | "role": "lead" 650 | } 651 | ], 652 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 653 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 654 | "keywords": [ 655 | "filesystem", 656 | "iterator" 657 | ], 658 | "support": { 659 | "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", 660 | "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" 661 | }, 662 | "funding": [ 663 | { 664 | "url": "https://github.com/sebastianbergmann", 665 | "type": "github" 666 | } 667 | ], 668 | "time": "2021-12-02T12:48:52+00:00" 669 | }, 670 | { 671 | "name": "phpunit/php-invoker", 672 | "version": "3.1.1", 673 | "source": { 674 | "type": "git", 675 | "url": "https://github.com/sebastianbergmann/php-invoker.git", 676 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" 677 | }, 678 | "dist": { 679 | "type": "zip", 680 | "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", 681 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", 682 | "shasum": "" 683 | }, 684 | "require": { 685 | "php": ">=7.3" 686 | }, 687 | "require-dev": { 688 | "ext-pcntl": "*", 689 | "phpunit/phpunit": "^9.3" 690 | }, 691 | "suggest": { 692 | "ext-pcntl": "*" 693 | }, 694 | "type": "library", 695 | "extra": { 696 | "branch-alias": { 697 | "dev-master": "3.1-dev" 698 | } 699 | }, 700 | "autoload": { 701 | "classmap": [ 702 | "src/" 703 | ] 704 | }, 705 | "notification-url": "https://packagist.org/downloads/", 706 | "license": [ 707 | "BSD-3-Clause" 708 | ], 709 | "authors": [ 710 | { 711 | "name": "Sebastian Bergmann", 712 | "email": "sebastian@phpunit.de", 713 | "role": "lead" 714 | } 715 | ], 716 | "description": "Invoke callables with a timeout", 717 | "homepage": "https://github.com/sebastianbergmann/php-invoker/", 718 | "keywords": [ 719 | "process" 720 | ], 721 | "support": { 722 | "issues": "https://github.com/sebastianbergmann/php-invoker/issues", 723 | "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" 724 | }, 725 | "funding": [ 726 | { 727 | "url": "https://github.com/sebastianbergmann", 728 | "type": "github" 729 | } 730 | ], 731 | "time": "2020-09-28T05:58:55+00:00" 732 | }, 733 | { 734 | "name": "phpunit/php-text-template", 735 | "version": "2.0.4", 736 | "source": { 737 | "type": "git", 738 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 739 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" 740 | }, 741 | "dist": { 742 | "type": "zip", 743 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", 744 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", 745 | "shasum": "" 746 | }, 747 | "require": { 748 | "php": ">=7.3" 749 | }, 750 | "require-dev": { 751 | "phpunit/phpunit": "^9.3" 752 | }, 753 | "type": "library", 754 | "extra": { 755 | "branch-alias": { 756 | "dev-master": "2.0-dev" 757 | } 758 | }, 759 | "autoload": { 760 | "classmap": [ 761 | "src/" 762 | ] 763 | }, 764 | "notification-url": "https://packagist.org/downloads/", 765 | "license": [ 766 | "BSD-3-Clause" 767 | ], 768 | "authors": [ 769 | { 770 | "name": "Sebastian Bergmann", 771 | "email": "sebastian@phpunit.de", 772 | "role": "lead" 773 | } 774 | ], 775 | "description": "Simple template engine.", 776 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 777 | "keywords": [ 778 | "template" 779 | ], 780 | "support": { 781 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues", 782 | "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" 783 | }, 784 | "funding": [ 785 | { 786 | "url": "https://github.com/sebastianbergmann", 787 | "type": "github" 788 | } 789 | ], 790 | "time": "2020-10-26T05:33:50+00:00" 791 | }, 792 | { 793 | "name": "phpunit/php-timer", 794 | "version": "5.0.3", 795 | "source": { 796 | "type": "git", 797 | "url": "https://github.com/sebastianbergmann/php-timer.git", 798 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" 799 | }, 800 | "dist": { 801 | "type": "zip", 802 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", 803 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", 804 | "shasum": "" 805 | }, 806 | "require": { 807 | "php": ">=7.3" 808 | }, 809 | "require-dev": { 810 | "phpunit/phpunit": "^9.3" 811 | }, 812 | "type": "library", 813 | "extra": { 814 | "branch-alias": { 815 | "dev-master": "5.0-dev" 816 | } 817 | }, 818 | "autoload": { 819 | "classmap": [ 820 | "src/" 821 | ] 822 | }, 823 | "notification-url": "https://packagist.org/downloads/", 824 | "license": [ 825 | "BSD-3-Clause" 826 | ], 827 | "authors": [ 828 | { 829 | "name": "Sebastian Bergmann", 830 | "email": "sebastian@phpunit.de", 831 | "role": "lead" 832 | } 833 | ], 834 | "description": "Utility class for timing", 835 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 836 | "keywords": [ 837 | "timer" 838 | ], 839 | "support": { 840 | "issues": "https://github.com/sebastianbergmann/php-timer/issues", 841 | "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" 842 | }, 843 | "funding": [ 844 | { 845 | "url": "https://github.com/sebastianbergmann", 846 | "type": "github" 847 | } 848 | ], 849 | "time": "2020-10-26T13:16:10+00:00" 850 | }, 851 | { 852 | "name": "phpunit/phpunit", 853 | "version": "9.5.21", 854 | "source": { 855 | "type": "git", 856 | "url": "https://github.com/sebastianbergmann/phpunit.git", 857 | "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1" 858 | }, 859 | "dist": { 860 | "type": "zip", 861 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1", 862 | "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1", 863 | "shasum": "" 864 | }, 865 | "require": { 866 | "doctrine/instantiator": "^1.3.1", 867 | "ext-dom": "*", 868 | "ext-json": "*", 869 | "ext-libxml": "*", 870 | "ext-mbstring": "*", 871 | "ext-xml": "*", 872 | "ext-xmlwriter": "*", 873 | "myclabs/deep-copy": "^1.10.1", 874 | "phar-io/manifest": "^2.0.3", 875 | "phar-io/version": "^3.0.2", 876 | "php": ">=7.3", 877 | "phpspec/prophecy": "^1.12.1", 878 | "phpunit/php-code-coverage": "^9.2.13", 879 | "phpunit/php-file-iterator": "^3.0.5", 880 | "phpunit/php-invoker": "^3.1.1", 881 | "phpunit/php-text-template": "^2.0.3", 882 | "phpunit/php-timer": "^5.0.2", 883 | "sebastian/cli-parser": "^1.0.1", 884 | "sebastian/code-unit": "^1.0.6", 885 | "sebastian/comparator": "^4.0.5", 886 | "sebastian/diff": "^4.0.3", 887 | "sebastian/environment": "^5.1.3", 888 | "sebastian/exporter": "^4.0.3", 889 | "sebastian/global-state": "^5.0.1", 890 | "sebastian/object-enumerator": "^4.0.3", 891 | "sebastian/resource-operations": "^3.0.3", 892 | "sebastian/type": "^3.0", 893 | "sebastian/version": "^3.0.2" 894 | }, 895 | "require-dev": { 896 | "phpspec/prophecy-phpunit": "^2.0.1" 897 | }, 898 | "suggest": { 899 | "ext-soap": "*", 900 | "ext-xdebug": "*" 901 | }, 902 | "bin": [ 903 | "phpunit" 904 | ], 905 | "type": "library", 906 | "extra": { 907 | "branch-alias": { 908 | "dev-master": "9.5-dev" 909 | } 910 | }, 911 | "autoload": { 912 | "files": [ 913 | "src/Framework/Assert/Functions.php" 914 | ], 915 | "classmap": [ 916 | "src/" 917 | ] 918 | }, 919 | "notification-url": "https://packagist.org/downloads/", 920 | "license": [ 921 | "BSD-3-Clause" 922 | ], 923 | "authors": [ 924 | { 925 | "name": "Sebastian Bergmann", 926 | "email": "sebastian@phpunit.de", 927 | "role": "lead" 928 | } 929 | ], 930 | "description": "The PHP Unit Testing framework.", 931 | "homepage": "https://phpunit.de/", 932 | "keywords": [ 933 | "phpunit", 934 | "testing", 935 | "xunit" 936 | ], 937 | "support": { 938 | "issues": "https://github.com/sebastianbergmann/phpunit/issues", 939 | "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21" 940 | }, 941 | "funding": [ 942 | { 943 | "url": "https://phpunit.de/sponsors.html", 944 | "type": "custom" 945 | }, 946 | { 947 | "url": "https://github.com/sebastianbergmann", 948 | "type": "github" 949 | } 950 | ], 951 | "time": "2022-06-19T12:14:25+00:00" 952 | }, 953 | { 954 | "name": "sebastian/cli-parser", 955 | "version": "1.0.1", 956 | "source": { 957 | "type": "git", 958 | "url": "https://github.com/sebastianbergmann/cli-parser.git", 959 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" 960 | }, 961 | "dist": { 962 | "type": "zip", 963 | "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", 964 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", 965 | "shasum": "" 966 | }, 967 | "require": { 968 | "php": ">=7.3" 969 | }, 970 | "require-dev": { 971 | "phpunit/phpunit": "^9.3" 972 | }, 973 | "type": "library", 974 | "extra": { 975 | "branch-alias": { 976 | "dev-master": "1.0-dev" 977 | } 978 | }, 979 | "autoload": { 980 | "classmap": [ 981 | "src/" 982 | ] 983 | }, 984 | "notification-url": "https://packagist.org/downloads/", 985 | "license": [ 986 | "BSD-3-Clause" 987 | ], 988 | "authors": [ 989 | { 990 | "name": "Sebastian Bergmann", 991 | "email": "sebastian@phpunit.de", 992 | "role": "lead" 993 | } 994 | ], 995 | "description": "Library for parsing CLI options", 996 | "homepage": "https://github.com/sebastianbergmann/cli-parser", 997 | "support": { 998 | "issues": "https://github.com/sebastianbergmann/cli-parser/issues", 999 | "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" 1000 | }, 1001 | "funding": [ 1002 | { 1003 | "url": "https://github.com/sebastianbergmann", 1004 | "type": "github" 1005 | } 1006 | ], 1007 | "time": "2020-09-28T06:08:49+00:00" 1008 | }, 1009 | { 1010 | "name": "sebastian/code-unit", 1011 | "version": "1.0.8", 1012 | "source": { 1013 | "type": "git", 1014 | "url": "https://github.com/sebastianbergmann/code-unit.git", 1015 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" 1016 | }, 1017 | "dist": { 1018 | "type": "zip", 1019 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", 1020 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", 1021 | "shasum": "" 1022 | }, 1023 | "require": { 1024 | "php": ">=7.3" 1025 | }, 1026 | "require-dev": { 1027 | "phpunit/phpunit": "^9.3" 1028 | }, 1029 | "type": "library", 1030 | "extra": { 1031 | "branch-alias": { 1032 | "dev-master": "1.0-dev" 1033 | } 1034 | }, 1035 | "autoload": { 1036 | "classmap": [ 1037 | "src/" 1038 | ] 1039 | }, 1040 | "notification-url": "https://packagist.org/downloads/", 1041 | "license": [ 1042 | "BSD-3-Clause" 1043 | ], 1044 | "authors": [ 1045 | { 1046 | "name": "Sebastian Bergmann", 1047 | "email": "sebastian@phpunit.de", 1048 | "role": "lead" 1049 | } 1050 | ], 1051 | "description": "Collection of value objects that represent the PHP code units", 1052 | "homepage": "https://github.com/sebastianbergmann/code-unit", 1053 | "support": { 1054 | "issues": "https://github.com/sebastianbergmann/code-unit/issues", 1055 | "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" 1056 | }, 1057 | "funding": [ 1058 | { 1059 | "url": "https://github.com/sebastianbergmann", 1060 | "type": "github" 1061 | } 1062 | ], 1063 | "time": "2020-10-26T13:08:54+00:00" 1064 | }, 1065 | { 1066 | "name": "sebastian/code-unit-reverse-lookup", 1067 | "version": "2.0.3", 1068 | "source": { 1069 | "type": "git", 1070 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", 1071 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" 1072 | }, 1073 | "dist": { 1074 | "type": "zip", 1075 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", 1076 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", 1077 | "shasum": "" 1078 | }, 1079 | "require": { 1080 | "php": ">=7.3" 1081 | }, 1082 | "require-dev": { 1083 | "phpunit/phpunit": "^9.3" 1084 | }, 1085 | "type": "library", 1086 | "extra": { 1087 | "branch-alias": { 1088 | "dev-master": "2.0-dev" 1089 | } 1090 | }, 1091 | "autoload": { 1092 | "classmap": [ 1093 | "src/" 1094 | ] 1095 | }, 1096 | "notification-url": "https://packagist.org/downloads/", 1097 | "license": [ 1098 | "BSD-3-Clause" 1099 | ], 1100 | "authors": [ 1101 | { 1102 | "name": "Sebastian Bergmann", 1103 | "email": "sebastian@phpunit.de" 1104 | } 1105 | ], 1106 | "description": "Looks up which function or method a line of code belongs to", 1107 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", 1108 | "support": { 1109 | "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", 1110 | "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" 1111 | }, 1112 | "funding": [ 1113 | { 1114 | "url": "https://github.com/sebastianbergmann", 1115 | "type": "github" 1116 | } 1117 | ], 1118 | "time": "2020-09-28T05:30:19+00:00" 1119 | }, 1120 | { 1121 | "name": "sebastian/comparator", 1122 | "version": "4.0.6", 1123 | "source": { 1124 | "type": "git", 1125 | "url": "https://github.com/sebastianbergmann/comparator.git", 1126 | "reference": "55f4261989e546dc112258c7a75935a81a7ce382" 1127 | }, 1128 | "dist": { 1129 | "type": "zip", 1130 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382", 1131 | "reference": "55f4261989e546dc112258c7a75935a81a7ce382", 1132 | "shasum": "" 1133 | }, 1134 | "require": { 1135 | "php": ">=7.3", 1136 | "sebastian/diff": "^4.0", 1137 | "sebastian/exporter": "^4.0" 1138 | }, 1139 | "require-dev": { 1140 | "phpunit/phpunit": "^9.3" 1141 | }, 1142 | "type": "library", 1143 | "extra": { 1144 | "branch-alias": { 1145 | "dev-master": "4.0-dev" 1146 | } 1147 | }, 1148 | "autoload": { 1149 | "classmap": [ 1150 | "src/" 1151 | ] 1152 | }, 1153 | "notification-url": "https://packagist.org/downloads/", 1154 | "license": [ 1155 | "BSD-3-Clause" 1156 | ], 1157 | "authors": [ 1158 | { 1159 | "name": "Sebastian Bergmann", 1160 | "email": "sebastian@phpunit.de" 1161 | }, 1162 | { 1163 | "name": "Jeff Welch", 1164 | "email": "whatthejeff@gmail.com" 1165 | }, 1166 | { 1167 | "name": "Volker Dusch", 1168 | "email": "github@wallbash.com" 1169 | }, 1170 | { 1171 | "name": "Bernhard Schussek", 1172 | "email": "bschussek@2bepublished.at" 1173 | } 1174 | ], 1175 | "description": "Provides the functionality to compare PHP values for equality", 1176 | "homepage": "https://github.com/sebastianbergmann/comparator", 1177 | "keywords": [ 1178 | "comparator", 1179 | "compare", 1180 | "equality" 1181 | ], 1182 | "support": { 1183 | "issues": "https://github.com/sebastianbergmann/comparator/issues", 1184 | "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6" 1185 | }, 1186 | "funding": [ 1187 | { 1188 | "url": "https://github.com/sebastianbergmann", 1189 | "type": "github" 1190 | } 1191 | ], 1192 | "time": "2020-10-26T15:49:45+00:00" 1193 | }, 1194 | { 1195 | "name": "sebastian/complexity", 1196 | "version": "2.0.2", 1197 | "source": { 1198 | "type": "git", 1199 | "url": "https://github.com/sebastianbergmann/complexity.git", 1200 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" 1201 | }, 1202 | "dist": { 1203 | "type": "zip", 1204 | "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", 1205 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", 1206 | "shasum": "" 1207 | }, 1208 | "require": { 1209 | "nikic/php-parser": "^4.7", 1210 | "php": ">=7.3" 1211 | }, 1212 | "require-dev": { 1213 | "phpunit/phpunit": "^9.3" 1214 | }, 1215 | "type": "library", 1216 | "extra": { 1217 | "branch-alias": { 1218 | "dev-master": "2.0-dev" 1219 | } 1220 | }, 1221 | "autoload": { 1222 | "classmap": [ 1223 | "src/" 1224 | ] 1225 | }, 1226 | "notification-url": "https://packagist.org/downloads/", 1227 | "license": [ 1228 | "BSD-3-Clause" 1229 | ], 1230 | "authors": [ 1231 | { 1232 | "name": "Sebastian Bergmann", 1233 | "email": "sebastian@phpunit.de", 1234 | "role": "lead" 1235 | } 1236 | ], 1237 | "description": "Library for calculating the complexity of PHP code units", 1238 | "homepage": "https://github.com/sebastianbergmann/complexity", 1239 | "support": { 1240 | "issues": "https://github.com/sebastianbergmann/complexity/issues", 1241 | "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" 1242 | }, 1243 | "funding": [ 1244 | { 1245 | "url": "https://github.com/sebastianbergmann", 1246 | "type": "github" 1247 | } 1248 | ], 1249 | "time": "2020-10-26T15:52:27+00:00" 1250 | }, 1251 | { 1252 | "name": "sebastian/diff", 1253 | "version": "4.0.4", 1254 | "source": { 1255 | "type": "git", 1256 | "url": "https://github.com/sebastianbergmann/diff.git", 1257 | "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d" 1258 | }, 1259 | "dist": { 1260 | "type": "zip", 1261 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d", 1262 | "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d", 1263 | "shasum": "" 1264 | }, 1265 | "require": { 1266 | "php": ">=7.3" 1267 | }, 1268 | "require-dev": { 1269 | "phpunit/phpunit": "^9.3", 1270 | "symfony/process": "^4.2 || ^5" 1271 | }, 1272 | "type": "library", 1273 | "extra": { 1274 | "branch-alias": { 1275 | "dev-master": "4.0-dev" 1276 | } 1277 | }, 1278 | "autoload": { 1279 | "classmap": [ 1280 | "src/" 1281 | ] 1282 | }, 1283 | "notification-url": "https://packagist.org/downloads/", 1284 | "license": [ 1285 | "BSD-3-Clause" 1286 | ], 1287 | "authors": [ 1288 | { 1289 | "name": "Sebastian Bergmann", 1290 | "email": "sebastian@phpunit.de" 1291 | }, 1292 | { 1293 | "name": "Kore Nordmann", 1294 | "email": "mail@kore-nordmann.de" 1295 | } 1296 | ], 1297 | "description": "Diff implementation", 1298 | "homepage": "https://github.com/sebastianbergmann/diff", 1299 | "keywords": [ 1300 | "diff", 1301 | "udiff", 1302 | "unidiff", 1303 | "unified diff" 1304 | ], 1305 | "support": { 1306 | "issues": "https://github.com/sebastianbergmann/diff/issues", 1307 | "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" 1308 | }, 1309 | "funding": [ 1310 | { 1311 | "url": "https://github.com/sebastianbergmann", 1312 | "type": "github" 1313 | } 1314 | ], 1315 | "time": "2020-10-26T13:10:38+00:00" 1316 | }, 1317 | { 1318 | "name": "sebastian/environment", 1319 | "version": "5.1.4", 1320 | "source": { 1321 | "type": "git", 1322 | "url": "https://github.com/sebastianbergmann/environment.git", 1323 | "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7" 1324 | }, 1325 | "dist": { 1326 | "type": "zip", 1327 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7", 1328 | "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7", 1329 | "shasum": "" 1330 | }, 1331 | "require": { 1332 | "php": ">=7.3" 1333 | }, 1334 | "require-dev": { 1335 | "phpunit/phpunit": "^9.3" 1336 | }, 1337 | "suggest": { 1338 | "ext-posix": "*" 1339 | }, 1340 | "type": "library", 1341 | "extra": { 1342 | "branch-alias": { 1343 | "dev-master": "5.1-dev" 1344 | } 1345 | }, 1346 | "autoload": { 1347 | "classmap": [ 1348 | "src/" 1349 | ] 1350 | }, 1351 | "notification-url": "https://packagist.org/downloads/", 1352 | "license": [ 1353 | "BSD-3-Clause" 1354 | ], 1355 | "authors": [ 1356 | { 1357 | "name": "Sebastian Bergmann", 1358 | "email": "sebastian@phpunit.de" 1359 | } 1360 | ], 1361 | "description": "Provides functionality to handle HHVM/PHP environments", 1362 | "homepage": "http://www.github.com/sebastianbergmann/environment", 1363 | "keywords": [ 1364 | "Xdebug", 1365 | "environment", 1366 | "hhvm" 1367 | ], 1368 | "support": { 1369 | "issues": "https://github.com/sebastianbergmann/environment/issues", 1370 | "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4" 1371 | }, 1372 | "funding": [ 1373 | { 1374 | "url": "https://github.com/sebastianbergmann", 1375 | "type": "github" 1376 | } 1377 | ], 1378 | "time": "2022-04-03T09:37:03+00:00" 1379 | }, 1380 | { 1381 | "name": "sebastian/exporter", 1382 | "version": "4.0.4", 1383 | "source": { 1384 | "type": "git", 1385 | "url": "https://github.com/sebastianbergmann/exporter.git", 1386 | "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9" 1387 | }, 1388 | "dist": { 1389 | "type": "zip", 1390 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9", 1391 | "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9", 1392 | "shasum": "" 1393 | }, 1394 | "require": { 1395 | "php": ">=7.3", 1396 | "sebastian/recursion-context": "^4.0" 1397 | }, 1398 | "require-dev": { 1399 | "ext-mbstring": "*", 1400 | "phpunit/phpunit": "^9.3" 1401 | }, 1402 | "type": "library", 1403 | "extra": { 1404 | "branch-alias": { 1405 | "dev-master": "4.0-dev" 1406 | } 1407 | }, 1408 | "autoload": { 1409 | "classmap": [ 1410 | "src/" 1411 | ] 1412 | }, 1413 | "notification-url": "https://packagist.org/downloads/", 1414 | "license": [ 1415 | "BSD-3-Clause" 1416 | ], 1417 | "authors": [ 1418 | { 1419 | "name": "Sebastian Bergmann", 1420 | "email": "sebastian@phpunit.de" 1421 | }, 1422 | { 1423 | "name": "Jeff Welch", 1424 | "email": "whatthejeff@gmail.com" 1425 | }, 1426 | { 1427 | "name": "Volker Dusch", 1428 | "email": "github@wallbash.com" 1429 | }, 1430 | { 1431 | "name": "Adam Harvey", 1432 | "email": "aharvey@php.net" 1433 | }, 1434 | { 1435 | "name": "Bernhard Schussek", 1436 | "email": "bschussek@gmail.com" 1437 | } 1438 | ], 1439 | "description": "Provides the functionality to export PHP variables for visualization", 1440 | "homepage": "https://www.github.com/sebastianbergmann/exporter", 1441 | "keywords": [ 1442 | "export", 1443 | "exporter" 1444 | ], 1445 | "support": { 1446 | "issues": "https://github.com/sebastianbergmann/exporter/issues", 1447 | "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4" 1448 | }, 1449 | "funding": [ 1450 | { 1451 | "url": "https://github.com/sebastianbergmann", 1452 | "type": "github" 1453 | } 1454 | ], 1455 | "time": "2021-11-11T14:18:36+00:00" 1456 | }, 1457 | { 1458 | "name": "sebastian/global-state", 1459 | "version": "5.0.5", 1460 | "source": { 1461 | "type": "git", 1462 | "url": "https://github.com/sebastianbergmann/global-state.git", 1463 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" 1464 | }, 1465 | "dist": { 1466 | "type": "zip", 1467 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", 1468 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", 1469 | "shasum": "" 1470 | }, 1471 | "require": { 1472 | "php": ">=7.3", 1473 | "sebastian/object-reflector": "^2.0", 1474 | "sebastian/recursion-context": "^4.0" 1475 | }, 1476 | "require-dev": { 1477 | "ext-dom": "*", 1478 | "phpunit/phpunit": "^9.3" 1479 | }, 1480 | "suggest": { 1481 | "ext-uopz": "*" 1482 | }, 1483 | "type": "library", 1484 | "extra": { 1485 | "branch-alias": { 1486 | "dev-master": "5.0-dev" 1487 | } 1488 | }, 1489 | "autoload": { 1490 | "classmap": [ 1491 | "src/" 1492 | ] 1493 | }, 1494 | "notification-url": "https://packagist.org/downloads/", 1495 | "license": [ 1496 | "BSD-3-Clause" 1497 | ], 1498 | "authors": [ 1499 | { 1500 | "name": "Sebastian Bergmann", 1501 | "email": "sebastian@phpunit.de" 1502 | } 1503 | ], 1504 | "description": "Snapshotting of global state", 1505 | "homepage": "http://www.github.com/sebastianbergmann/global-state", 1506 | "keywords": [ 1507 | "global state" 1508 | ], 1509 | "support": { 1510 | "issues": "https://github.com/sebastianbergmann/global-state/issues", 1511 | "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" 1512 | }, 1513 | "funding": [ 1514 | { 1515 | "url": "https://github.com/sebastianbergmann", 1516 | "type": "github" 1517 | } 1518 | ], 1519 | "time": "2022-02-14T08:28:10+00:00" 1520 | }, 1521 | { 1522 | "name": "sebastian/lines-of-code", 1523 | "version": "1.0.3", 1524 | "source": { 1525 | "type": "git", 1526 | "url": "https://github.com/sebastianbergmann/lines-of-code.git", 1527 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" 1528 | }, 1529 | "dist": { 1530 | "type": "zip", 1531 | "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", 1532 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", 1533 | "shasum": "" 1534 | }, 1535 | "require": { 1536 | "nikic/php-parser": "^4.6", 1537 | "php": ">=7.3" 1538 | }, 1539 | "require-dev": { 1540 | "phpunit/phpunit": "^9.3" 1541 | }, 1542 | "type": "library", 1543 | "extra": { 1544 | "branch-alias": { 1545 | "dev-master": "1.0-dev" 1546 | } 1547 | }, 1548 | "autoload": { 1549 | "classmap": [ 1550 | "src/" 1551 | ] 1552 | }, 1553 | "notification-url": "https://packagist.org/downloads/", 1554 | "license": [ 1555 | "BSD-3-Clause" 1556 | ], 1557 | "authors": [ 1558 | { 1559 | "name": "Sebastian Bergmann", 1560 | "email": "sebastian@phpunit.de", 1561 | "role": "lead" 1562 | } 1563 | ], 1564 | "description": "Library for counting the lines of code in PHP source code", 1565 | "homepage": "https://github.com/sebastianbergmann/lines-of-code", 1566 | "support": { 1567 | "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", 1568 | "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" 1569 | }, 1570 | "funding": [ 1571 | { 1572 | "url": "https://github.com/sebastianbergmann", 1573 | "type": "github" 1574 | } 1575 | ], 1576 | "time": "2020-11-28T06:42:11+00:00" 1577 | }, 1578 | { 1579 | "name": "sebastian/object-enumerator", 1580 | "version": "4.0.4", 1581 | "source": { 1582 | "type": "git", 1583 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", 1584 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" 1585 | }, 1586 | "dist": { 1587 | "type": "zip", 1588 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", 1589 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", 1590 | "shasum": "" 1591 | }, 1592 | "require": { 1593 | "php": ">=7.3", 1594 | "sebastian/object-reflector": "^2.0", 1595 | "sebastian/recursion-context": "^4.0" 1596 | }, 1597 | "require-dev": { 1598 | "phpunit/phpunit": "^9.3" 1599 | }, 1600 | "type": "library", 1601 | "extra": { 1602 | "branch-alias": { 1603 | "dev-master": "4.0-dev" 1604 | } 1605 | }, 1606 | "autoload": { 1607 | "classmap": [ 1608 | "src/" 1609 | ] 1610 | }, 1611 | "notification-url": "https://packagist.org/downloads/", 1612 | "license": [ 1613 | "BSD-3-Clause" 1614 | ], 1615 | "authors": [ 1616 | { 1617 | "name": "Sebastian Bergmann", 1618 | "email": "sebastian@phpunit.de" 1619 | } 1620 | ], 1621 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", 1622 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", 1623 | "support": { 1624 | "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", 1625 | "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" 1626 | }, 1627 | "funding": [ 1628 | { 1629 | "url": "https://github.com/sebastianbergmann", 1630 | "type": "github" 1631 | } 1632 | ], 1633 | "time": "2020-10-26T13:12:34+00:00" 1634 | }, 1635 | { 1636 | "name": "sebastian/object-reflector", 1637 | "version": "2.0.4", 1638 | "source": { 1639 | "type": "git", 1640 | "url": "https://github.com/sebastianbergmann/object-reflector.git", 1641 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" 1642 | }, 1643 | "dist": { 1644 | "type": "zip", 1645 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", 1646 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", 1647 | "shasum": "" 1648 | }, 1649 | "require": { 1650 | "php": ">=7.3" 1651 | }, 1652 | "require-dev": { 1653 | "phpunit/phpunit": "^9.3" 1654 | }, 1655 | "type": "library", 1656 | "extra": { 1657 | "branch-alias": { 1658 | "dev-master": "2.0-dev" 1659 | } 1660 | }, 1661 | "autoload": { 1662 | "classmap": [ 1663 | "src/" 1664 | ] 1665 | }, 1666 | "notification-url": "https://packagist.org/downloads/", 1667 | "license": [ 1668 | "BSD-3-Clause" 1669 | ], 1670 | "authors": [ 1671 | { 1672 | "name": "Sebastian Bergmann", 1673 | "email": "sebastian@phpunit.de" 1674 | } 1675 | ], 1676 | "description": "Allows reflection of object attributes, including inherited and non-public ones", 1677 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", 1678 | "support": { 1679 | "issues": "https://github.com/sebastianbergmann/object-reflector/issues", 1680 | "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" 1681 | }, 1682 | "funding": [ 1683 | { 1684 | "url": "https://github.com/sebastianbergmann", 1685 | "type": "github" 1686 | } 1687 | ], 1688 | "time": "2020-10-26T13:14:26+00:00" 1689 | }, 1690 | { 1691 | "name": "sebastian/recursion-context", 1692 | "version": "4.0.4", 1693 | "source": { 1694 | "type": "git", 1695 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 1696 | "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172" 1697 | }, 1698 | "dist": { 1699 | "type": "zip", 1700 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172", 1701 | "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172", 1702 | "shasum": "" 1703 | }, 1704 | "require": { 1705 | "php": ">=7.3" 1706 | }, 1707 | "require-dev": { 1708 | "phpunit/phpunit": "^9.3" 1709 | }, 1710 | "type": "library", 1711 | "extra": { 1712 | "branch-alias": { 1713 | "dev-master": "4.0-dev" 1714 | } 1715 | }, 1716 | "autoload": { 1717 | "classmap": [ 1718 | "src/" 1719 | ] 1720 | }, 1721 | "notification-url": "https://packagist.org/downloads/", 1722 | "license": [ 1723 | "BSD-3-Clause" 1724 | ], 1725 | "authors": [ 1726 | { 1727 | "name": "Sebastian Bergmann", 1728 | "email": "sebastian@phpunit.de" 1729 | }, 1730 | { 1731 | "name": "Jeff Welch", 1732 | "email": "whatthejeff@gmail.com" 1733 | }, 1734 | { 1735 | "name": "Adam Harvey", 1736 | "email": "aharvey@php.net" 1737 | } 1738 | ], 1739 | "description": "Provides functionality to recursively process PHP variables", 1740 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 1741 | "support": { 1742 | "issues": "https://github.com/sebastianbergmann/recursion-context/issues", 1743 | "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" 1744 | }, 1745 | "funding": [ 1746 | { 1747 | "url": "https://github.com/sebastianbergmann", 1748 | "type": "github" 1749 | } 1750 | ], 1751 | "time": "2020-10-26T13:17:30+00:00" 1752 | }, 1753 | { 1754 | "name": "sebastian/resource-operations", 1755 | "version": "3.0.3", 1756 | "source": { 1757 | "type": "git", 1758 | "url": "https://github.com/sebastianbergmann/resource-operations.git", 1759 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" 1760 | }, 1761 | "dist": { 1762 | "type": "zip", 1763 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", 1764 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", 1765 | "shasum": "" 1766 | }, 1767 | "require": { 1768 | "php": ">=7.3" 1769 | }, 1770 | "require-dev": { 1771 | "phpunit/phpunit": "^9.0" 1772 | }, 1773 | "type": "library", 1774 | "extra": { 1775 | "branch-alias": { 1776 | "dev-master": "3.0-dev" 1777 | } 1778 | }, 1779 | "autoload": { 1780 | "classmap": [ 1781 | "src/" 1782 | ] 1783 | }, 1784 | "notification-url": "https://packagist.org/downloads/", 1785 | "license": [ 1786 | "BSD-3-Clause" 1787 | ], 1788 | "authors": [ 1789 | { 1790 | "name": "Sebastian Bergmann", 1791 | "email": "sebastian@phpunit.de" 1792 | } 1793 | ], 1794 | "description": "Provides a list of PHP built-in functions that operate on resources", 1795 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", 1796 | "support": { 1797 | "issues": "https://github.com/sebastianbergmann/resource-operations/issues", 1798 | "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" 1799 | }, 1800 | "funding": [ 1801 | { 1802 | "url": "https://github.com/sebastianbergmann", 1803 | "type": "github" 1804 | } 1805 | ], 1806 | "time": "2020-09-28T06:45:17+00:00" 1807 | }, 1808 | { 1809 | "name": "sebastian/type", 1810 | "version": "3.0.0", 1811 | "source": { 1812 | "type": "git", 1813 | "url": "https://github.com/sebastianbergmann/type.git", 1814 | "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad" 1815 | }, 1816 | "dist": { 1817 | "type": "zip", 1818 | "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad", 1819 | "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad", 1820 | "shasum": "" 1821 | }, 1822 | "require": { 1823 | "php": ">=7.3" 1824 | }, 1825 | "require-dev": { 1826 | "phpunit/phpunit": "^9.5" 1827 | }, 1828 | "type": "library", 1829 | "extra": { 1830 | "branch-alias": { 1831 | "dev-master": "3.0-dev" 1832 | } 1833 | }, 1834 | "autoload": { 1835 | "classmap": [ 1836 | "src/" 1837 | ] 1838 | }, 1839 | "notification-url": "https://packagist.org/downloads/", 1840 | "license": [ 1841 | "BSD-3-Clause" 1842 | ], 1843 | "authors": [ 1844 | { 1845 | "name": "Sebastian Bergmann", 1846 | "email": "sebastian@phpunit.de", 1847 | "role": "lead" 1848 | } 1849 | ], 1850 | "description": "Collection of value objects that represent the types of the PHP type system", 1851 | "homepage": "https://github.com/sebastianbergmann/type", 1852 | "support": { 1853 | "issues": "https://github.com/sebastianbergmann/type/issues", 1854 | "source": "https://github.com/sebastianbergmann/type/tree/3.0.0" 1855 | }, 1856 | "funding": [ 1857 | { 1858 | "url": "https://github.com/sebastianbergmann", 1859 | "type": "github" 1860 | } 1861 | ], 1862 | "time": "2022-03-15T09:54:48+00:00" 1863 | }, 1864 | { 1865 | "name": "sebastian/version", 1866 | "version": "3.0.2", 1867 | "source": { 1868 | "type": "git", 1869 | "url": "https://github.com/sebastianbergmann/version.git", 1870 | "reference": "c6c1022351a901512170118436c764e473f6de8c" 1871 | }, 1872 | "dist": { 1873 | "type": "zip", 1874 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", 1875 | "reference": "c6c1022351a901512170118436c764e473f6de8c", 1876 | "shasum": "" 1877 | }, 1878 | "require": { 1879 | "php": ">=7.3" 1880 | }, 1881 | "type": "library", 1882 | "extra": { 1883 | "branch-alias": { 1884 | "dev-master": "3.0-dev" 1885 | } 1886 | }, 1887 | "autoload": { 1888 | "classmap": [ 1889 | "src/" 1890 | ] 1891 | }, 1892 | "notification-url": "https://packagist.org/downloads/", 1893 | "license": [ 1894 | "BSD-3-Clause" 1895 | ], 1896 | "authors": [ 1897 | { 1898 | "name": "Sebastian Bergmann", 1899 | "email": "sebastian@phpunit.de", 1900 | "role": "lead" 1901 | } 1902 | ], 1903 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 1904 | "homepage": "https://github.com/sebastianbergmann/version", 1905 | "support": { 1906 | "issues": "https://github.com/sebastianbergmann/version/issues", 1907 | "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" 1908 | }, 1909 | "funding": [ 1910 | { 1911 | "url": "https://github.com/sebastianbergmann", 1912 | "type": "github" 1913 | } 1914 | ], 1915 | "time": "2020-09-28T06:39:44+00:00" 1916 | }, 1917 | { 1918 | "name": "theseer/tokenizer", 1919 | "version": "1.2.1", 1920 | "source": { 1921 | "type": "git", 1922 | "url": "https://github.com/theseer/tokenizer.git", 1923 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" 1924 | }, 1925 | "dist": { 1926 | "type": "zip", 1927 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", 1928 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", 1929 | "shasum": "" 1930 | }, 1931 | "require": { 1932 | "ext-dom": "*", 1933 | "ext-tokenizer": "*", 1934 | "ext-xmlwriter": "*", 1935 | "php": "^7.2 || ^8.0" 1936 | }, 1937 | "type": "library", 1938 | "autoload": { 1939 | "classmap": [ 1940 | "src/" 1941 | ] 1942 | }, 1943 | "notification-url": "https://packagist.org/downloads/", 1944 | "license": [ 1945 | "BSD-3-Clause" 1946 | ], 1947 | "authors": [ 1948 | { 1949 | "name": "Arne Blankerts", 1950 | "email": "arne@blankerts.de", 1951 | "role": "Developer" 1952 | } 1953 | ], 1954 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", 1955 | "support": { 1956 | "issues": "https://github.com/theseer/tokenizer/issues", 1957 | "source": "https://github.com/theseer/tokenizer/tree/1.2.1" 1958 | }, 1959 | "funding": [ 1960 | { 1961 | "url": "https://github.com/theseer", 1962 | "type": "github" 1963 | } 1964 | ], 1965 | "time": "2021-07-28T10:34:58+00:00" 1966 | }, 1967 | { 1968 | "name": "webmozart/assert", 1969 | "version": "1.11.0", 1970 | "source": { 1971 | "type": "git", 1972 | "url": "https://github.com/webmozarts/assert.git", 1973 | "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" 1974 | }, 1975 | "dist": { 1976 | "type": "zip", 1977 | "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", 1978 | "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", 1979 | "shasum": "" 1980 | }, 1981 | "require": { 1982 | "ext-ctype": "*", 1983 | "php": "^7.2 || ^8.0" 1984 | }, 1985 | "conflict": { 1986 | "phpstan/phpstan": "<0.12.20", 1987 | "vimeo/psalm": "<4.6.1 || 4.6.2" 1988 | }, 1989 | "require-dev": { 1990 | "phpunit/phpunit": "^8.5.13" 1991 | }, 1992 | "type": "library", 1993 | "extra": { 1994 | "branch-alias": { 1995 | "dev-master": "1.10-dev" 1996 | } 1997 | }, 1998 | "autoload": { 1999 | "psr-4": { 2000 | "Webmozart\\Assert\\": "src/" 2001 | } 2002 | }, 2003 | "notification-url": "https://packagist.org/downloads/", 2004 | "license": [ 2005 | "MIT" 2006 | ], 2007 | "authors": [ 2008 | { 2009 | "name": "Bernhard Schussek", 2010 | "email": "bschussek@gmail.com" 2011 | } 2012 | ], 2013 | "description": "Assertions to validate method input/output with nice error messages.", 2014 | "keywords": [ 2015 | "assert", 2016 | "check", 2017 | "validate" 2018 | ], 2019 | "support": { 2020 | "issues": "https://github.com/webmozarts/assert/issues", 2021 | "source": "https://github.com/webmozarts/assert/tree/1.11.0" 2022 | }, 2023 | "time": "2022-06-03T18:03:27+00:00" 2024 | } 2025 | ], 2026 | "aliases": [], 2027 | "minimum-stability": "stable", 2028 | "stability-flags": [], 2029 | "prefer-stable": false, 2030 | "prefer-lowest": false, 2031 | "platform": [], 2032 | "platform-dev": [], 2033 | "plugin-api-version": "2.3.0" 2034 | } 2035 | -------------------------------------------------------------------------------- /packages/wix-client/index.php: -------------------------------------------------------------------------------- 1 | decryptionService = $decryptionService; 19 | 20 | add_action('rest_api_init', [$this, 'register_rest_routes']); 21 | } 22 | 23 | public function register_rest_routes() 24 | { 25 | register_rest_route(static::$NAMESPACE, '/single_login/verify', array( 26 | 'methods' => 'GET', 27 | 'callback' => [$this, 'verify_single_login'], 28 | )); 29 | } 30 | 31 | public function verify_single_login(WP_REST_Request $request) 32 | { 33 | $token_encoded = urlencode($request->get_param('token')); 34 | $token_decoded = base64_decode(urldecode($token_encoded)); 35 | $public_key = WIX_HOST_PUBLIC_KEYS; 36 | $data = $this->decryptionService->decrypt($public_key, $token_decoded); 37 | 38 | if (!$data) { 39 | return new WP_Error('Critical Failure'); 40 | } 41 | 42 | $data = json_decode($data); 43 | $user_email = $data->email; 44 | $user = get_user_by_email($user_email); 45 | 46 | if (!$user) { 47 | return new WP_Error('User not found'); 48 | } 49 | 50 | wp_clear_auth_cookie(); 51 | wp_set_current_user($user->ID); 52 | wp_set_auth_cookie($user->ID); 53 | do_action('wp_login', $user->user_login, $user); 54 | wp_redirect(admin_url()); 55 | exit(); 56 | } 57 | } -------------------------------------------------------------------------------- /packages/wix-client/src/Core/DecryptionService.php: -------------------------------------------------------------------------------- 1 | base_uri = $base_uri; 12 | } 13 | 14 | public function get($uri) 15 | { 16 | $response = wp_remote_get($this->base_uri . $uri); 17 | 18 | return json_decode($response['body']); 19 | } 20 | } -------------------------------------------------------------------------------- /packages/wix-client/src/Features/SecureHostConnection.php: -------------------------------------------------------------------------------- 1 | httpService = $httpService; 16 | add_action('wpcs_tenant_created', [$this, 'get_tenant_public_id']); 17 | } 18 | 19 | public function get_tenant_public_id($external_id) 20 | { 21 | $response = $this->httpService->get('/v1/tenant/public_keys?external_id=' . $external_id); 22 | 23 | $public_key = $response->public_key; 24 | 25 | update_option(static::TENANT_PUBLIC_KEY, $public_key); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /packages/wix-client/src/Features/UiWPCSAdminTenantSettings.php: -------------------------------------------------------------------------------- 1 | WPCS.io Admin
'; 28 | settings_fields('wpcs-admin-tenant'); 29 | do_settings_sections('wpcs-admin-tenant'); 30 | submit_button(); 31 | echo '
'; 32 | } 33 | 34 | public function add_wpcs_admin_settings() 35 | { 36 | add_settings_section( 37 | 'wpcs_admin_tenant_settings', 38 | 'Host Website Settings', 39 | fn() => "

Intro text for our settings section

", 40 | 'wpcs-admin-tenant' 41 | ); 42 | 43 | register_setting('wpcs-admin-tenant', 'wix_host_website_url'); 44 | add_settings_field( 45 | 'wix_host_website_url', 46 | 'Host URL', 47 | [$this, 'render_settings_field'], 48 | 'wpcs-admin-tenant', 49 | 'wpcs_admin_tenant_settings', 50 | [ 51 | "id" => "wix_host_website_url", 52 | "title" => "Host URL", 53 | "type" => "text" 54 | ] 55 | ); 56 | } 57 | 58 | function render_settings_field($args) 59 | { 60 | echo ""; 61 | } 62 | } 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /packages/wix-host/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "abduvik/wix-clone-host", 3 | "description": "WordPress plugin to convert a WordPress installation to a Wix Clone website to allow selling WordPress website with subscriptions", 4 | "type": "project", 5 | "autoload": { 6 | "psr-4": { 7 | "WixCloneHost\\": "src/" 8 | } 9 | }, 10 | "autoload-dev": { 11 | "psr-4": { 12 | "Tests\\": "tests/" 13 | } 14 | }, 15 | "authors": [ 16 | { 17 | "name": "abduvik", 18 | "email": "contact@abdu.dev" 19 | } 20 | ], 21 | "require-dev": { 22 | "phpunit/phpunit": "^9.5" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /packages/wix-host/index.php: -------------------------------------------------------------------------------- 1 | encryptionService = $encryptionService; 19 | 20 | add_action('rest_api_init', [$this, 'register_rest_routes']); 21 | } 22 | 23 | public function register_rest_routes() 24 | { 25 | register_rest_route(static::$NAMESPACE, '/tenant/single_login', array( 26 | 'methods' => 'GET', 27 | 'callback' => [$this, 'generate_single_login_link'], 28 | 'permission_callback' => [$this, 'guard_generate_single_login_link'] 29 | )); 30 | } 31 | 32 | public function guard_generate_single_login_link(WP_REST_Request $request) 33 | { 34 | $subscription_id = $request->get_param('subscription_id'); 35 | $login_email = $request->get_param('email'); 36 | $get_order_id = get_post_meta($subscription_id, 'wps_parent_order', true); 37 | $order = new WC_Order($get_order_id); 38 | $order_email = $order->get_billing_email(); 39 | 40 | return $login_email === $order_email; 41 | } 42 | 43 | public function generate_single_login_link(WP_REST_Request $request) 44 | { 45 | $subscription_id = $request->get_param('subscription_id'); 46 | $email = $request->get_param('email'); 47 | 48 | $domain = get_post_meta($subscription_id, WPCSTenant::WPCS_DOMAIN_NAME_META, true); 49 | $base_domain = get_post_meta($subscription_id, WPCSTenant::WPCS_BASE_DOMAIN_NAME_META, true); 50 | 51 | $domain = $domain ?: $base_domain; 52 | 53 | $private_key = get_post_meta($subscription_id, WPCSTenant::WPCS_TENANT_PRIVATE_KEY_META, true); 54 | 55 | $login_data = [ 56 | 'email' => $email 57 | ]; 58 | 59 | $token = $this->encryptionService->encrypt($private_key, json_encode($login_data)); 60 | $token_encoded = urlencode(base64_encode($token)); 61 | $loginLink = 'https://' . $domain . "/wp-json/wpcs/v1/single_login/verify?token=" . $token_encoded; 62 | 63 | wp_redirect($loginLink); 64 | exit(); 65 | } 66 | } -------------------------------------------------------------------------------- /packages/wix-host/src/Api/TenantsAuthKeys.php: -------------------------------------------------------------------------------- 1 | 'GET', 23 | 'callback' => [$this, 'get_tenant_public_key'], 24 | )); 25 | } 26 | 27 | public function get_tenant_public_key(WP_REST_Request $request) 28 | { 29 | $external_id = $request->get_param('external_id'); 30 | 31 | try { 32 | $tenant = WPCSTenant::from_wpcs_external_id($external_id); 33 | $tenant_auth_keys = $tenant->get_auth_keys(); 34 | 35 | return [ 36 | 'public_key' => $tenant_auth_keys['public_key'] 37 | ]; 38 | 39 | } catch (Exception $e) { 40 | return new WP_Error('not_found'); 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /packages/wix-host/src/Core/EncryptionService.php: -------------------------------------------------------------------------------- 1 | 'sha512', 11 | "private_key_bits" => 4096, 12 | "private_key_type" => OPENSSL_KEYTYPE_RSA 13 | ]); 14 | $public_key = openssl_pkey_get_details($key_resource)['key']; 15 | openssl_pkey_export($key_resource, $private_key); 16 | 17 | return [ 18 | 'public_key' => $public_key, 19 | 'private_key' => $private_key 20 | ]; 21 | } 22 | 23 | public function encrypt($private_key, $data) 24 | { 25 | openssl_private_encrypt($data, $encrypted, $private_key); 26 | 27 | return $encrypted; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /packages/wix-host/src/Core/HttpService.php: -------------------------------------------------------------------------------- 1 | auth_keys = $auth_keys; 15 | $this->base_uri = $base_uri; 16 | } 17 | 18 | public function get($uri) 19 | { 20 | $response = wp_remote_get($this->base_uri . $uri, [ 21 | 'headers' => [ 22 | 'Authorization' => "Basic " . base64_encode($this->auth_keys), 23 | ] 24 | ]); 25 | 26 | if (is_wp_error($response)) { 27 | throw new Exception("Failed"); 28 | } 29 | 30 | return json_decode($response['body']); 31 | } 32 | 33 | public function post($uri, $data) 34 | { 35 | $response = wp_remote_post($this->base_uri . $uri, [ 36 | 'method' => 'POST', 37 | 'headers' => [ 38 | 'Authorization' => "Basic " . base64_encode($this->auth_keys), 39 | 'Content-Type' => 'application/json', 40 | ], 41 | 'body' => json_encode($data) 42 | ]); 43 | 44 | if (is_wp_error($response)) { 45 | throw new Exception("Failed"); 46 | } 47 | 48 | return json_decode($response['body']); 49 | } 50 | 51 | public function put($uri, $data) 52 | { 53 | $response = wp_remote_post($this->base_uri . $uri, [ 54 | 'method' => 'PUT', 55 | 'headers' => [ 56 | 'Authorization' => "Basic " . base64_encode($this->auth_keys), 57 | 'Content-Type' => 'application/json', 58 | ], 59 | 'body' => json_encode($data) 60 | ]); 61 | 62 | if (is_wp_error($response)) { 63 | throw new Exception("Failed"); 64 | } 65 | 66 | return json_decode($response['body']); 67 | } 68 | 69 | public function delete($uri) 70 | { 71 | $response = wp_remote_get($this->base_uri . $uri, [ 72 | 'method' => 'DELETE', 73 | 'headers' => [ 74 | 'Authorization' => "Basic " . base64_encode($this->auth_keys), 75 | ], 76 | ]); 77 | 78 | if (is_wp_error($response)) { 79 | throw new Exception("Failed"); 80 | } 81 | 82 | return json_decode($response['body']); 83 | } 84 | } -------------------------------------------------------------------------------- /packages/wix-host/src/Core/WPCSService.php: -------------------------------------------------------------------------------- 1 | httpService = $httpService; 12 | } 13 | 14 | public function get_available_product_versions() 15 | { 16 | return $this->httpService->get('/v1/versions'); 17 | } 18 | 19 | public function create_tenant($args) 20 | { 21 | $payload = [ 22 | 'versionId' => $args['version_id'], 23 | 'name' => $args['name'], 24 | 'tenantName' => $args['tenant_name'], 25 | 'tenantEmail' => $args['tenant_email'], 26 | 'tenantPassword' => $args['tenant_password'], 27 | 'tenantUserRole' => $args['tenant_user_role'] 28 | ]; 29 | 30 | if (isset($args['custom_domain_name'])) { 31 | $payload['customDomainName'] = $args['custom_domain_name']; 32 | } 33 | 34 | return $this->httpService->post('/v1/tenants', $payload); 35 | } 36 | 37 | public function delete_tenant($args) 38 | { 39 | return $this->httpService->delete('/v1/tenants?tenantId=' . $args['external_id']); 40 | } 41 | 42 | public function add_tenant_domain($args) 43 | { 44 | $this->httpService->post('/v1/tenants/domains?externalId=' . $args['external_id'], [ 45 | 'setAsMainDomain' => true, 46 | 'domainName' => $args['domain_name'], 47 | ]); 48 | } 49 | 50 | public function delete_tenant_domain($args) 51 | { 52 | $url = '/v1/tenants/domains?externalId=' . $args['external_id'] . "&domainName=" . $args['old_domain_name']; 53 | $this->httpService->delete($url); 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /packages/wix-host/src/Core/WPCSTenant.php: -------------------------------------------------------------------------------- 1 | subscription_id = $subscription_id; 22 | } 23 | 24 | /** 25 | * @throws Exception 26 | */ 27 | public static function from_wpcs_external_id(string $wpcs_external_id) 28 | { 29 | global $wpdb; 30 | 31 | $tbl = $wpdb->prefix . 'postmeta'; 32 | $prepare_guery = $wpdb->prepare("SELECT post_id FROM $tbl where meta_key ='" . static::WPCS_TENANT_EXTERNAL_ID_META . "' and meta_value = '%s'", $wpcs_external_id); 33 | $get_values = $wpdb->get_col($prepare_guery); 34 | 35 | // check results ## 36 | if (count($get_values) !== 1) { 37 | throw new Exception("not found"); 38 | } 39 | 40 | $subscription_id = $get_values[0]; 41 | 42 | return new WPCSTenant($subscription_id); 43 | } 44 | 45 | public function get_auth_keys(): array 46 | { 47 | $public_key = get_post_meta($this->subscription_id, static::WPCS_TENANT_PUBLIC_KEY_META, true); 48 | $private_key = get_post_meta($this->subscription_id, static::WPCS_TENANT_PRIVATE_KEY_META, true); 49 | 50 | return [ 51 | 'public_key' => $public_key, 52 | 'private_key' => $private_key, 53 | ]; 54 | } 55 | } -------------------------------------------------------------------------------- /packages/wix-host/src/Features/TenantsSubscription.php: -------------------------------------------------------------------------------- 1 | wpcsService = $wpcsService; 19 | $this->encryptionService = $encryptionService; 20 | 21 | add_action('wps_sfw_after_created_subscription', [$this, 'create_tenant_when_subscription_created'], 10, 2); 22 | 23 | // @todo: This can be exchanged for the demo 24 | add_action('wps_sfw_subscription_cancel', [$this, 'remove_tenant_when_subscription_expired']); 25 | // add_action('wps_sfw_expire_subscription_scheduler', [$this, 'remove_tenant_when_subscription_expired']); 26 | } 27 | 28 | public function create_tenant_when_subscription_created($subscription_id, $order_id) 29 | { 30 | $order = new WC_Order($order_id); 31 | $order_items = $order->get_items(); 32 | $product = reset($order_items); 33 | $wpcs_version_id = get_post_meta($product->get_product_id(), WPCSTenant::WPCS_PRODUCT_VERSION_META, true); 34 | $website_name = get_post_meta($order_id, WPCSTenant::WPCS_WEBSITE_NAME_META, true); 35 | $domain_name = get_post_meta($order_id, WPCSTenant::WPCS_DOMAIN_NAME_META, true); 36 | $password = wp_generate_password(); 37 | 38 | try { 39 | $args = [ 40 | 'version_id' => $wpcs_version_id, 41 | 'name' => sanitize_text_field($website_name), 42 | 'tenant_name' => $order->get_formatted_billing_full_name(), 43 | 'tenant_email' => $order->get_billing_email(), 44 | 'tenant_password' => $password, 45 | 'tenant_user_role' => 'editor', 46 | ]; 47 | 48 | if ($domain_name) { 49 | $args['custom_domain_name'] = sanitize_text_field($domain_name); 50 | } 51 | 52 | $new_tenant = $this->wpcsService->create_tenant($args); 53 | $keys = $this->encryptionService->generate_key_pair(); 54 | 55 | update_post_meta($subscription_id, WPCSTenant::WPCS_TENANT_EXTERNAL_ID_META, $new_tenant->externalId); 56 | update_post_meta($subscription_id, WPCSTenant::WPCS_TENANT_PUBLIC_KEY_META, $keys['public_key']); 57 | update_post_meta($subscription_id, WPCSTenant::WPCS_DOMAIN_NAME_META, sanitize_text_field($domain_name)); 58 | update_post_meta($subscription_id, WPCSTenant::WPCS_BASE_DOMAIN_NAME_META, $new_tenant->baseDomain); 59 | update_post_meta($subscription_id, WPCSTenant::WPCS_TENANT_PRIVATE_KEY_META, $keys['private_key']); 60 | 61 | $this->send_created_email([ 62 | 'email' => $order->get_billing_email(), 63 | 'password' => $password, 64 | 'domain' => $new_tenant->baseDomain 65 | ]); 66 | 67 | } catch (Exception $e) { 68 | print_r($e); 69 | } 70 | } 71 | 72 | public function send_created_email($args) 73 | { 74 | wp_mail($args['email'], 'Your website is being created', " 75 | 76 | 77 | 78 |

Hello,

79 |

You can now login here to your new website

80 |

Admin Url: https://{$args['domain']}/wp-admin

81 |

Email : {$args['email']}

82 |

Password : {$args['password']}

83 | 84 | 85 | ", ['Content-Type: text/html; charset=UTF-8']); 86 | } 87 | 88 | public function remove_tenant_when_subscription_expired($subscription_id) 89 | { 90 | $tenant_external_id = get_post_meta($subscription_id, WPCSTenant::WPCS_TENANT_EXTERNAL_ID_META, true); 91 | $this->wpcsService->delete_tenant([ 92 | 'external_id' => $tenant_external_id 93 | ]); 94 | } 95 | } -------------------------------------------------------------------------------- /packages/wix-host/src/Features/UiAccountSubscriptionsSettings.php: -------------------------------------------------------------------------------- 1 | wpcsService = $wpcsService; 17 | 18 | add_action('wps_sfw_subscription_details_html', [$this, 'render_single_login'], 1, 25); 19 | add_action('wps_sfw_subscription_details_html', [$this, 'render_edit_domain'], 1, 30); 20 | add_action('remove_tenant_old_domain', [$this, 'remove_tenant_old_domain'], 1, 2); 21 | } 22 | 23 | public function render_single_login($subscription_id) 24 | { 25 | $get_order_id = get_post_meta($subscription_id, 'wps_parent_order', true); 26 | $order = new WC_Order($get_order_id); 27 | $email = $order->get_billing_email(); 28 | $loginLink = '/wp-json/wpcs/v1/tenant/single_login?subscription_id=' . $subscription_id . '&email=' . $email; 29 | 30 | echo "Login as: $email "; 31 | } 32 | 33 | public function render_edit_domain($subscription_id) 34 | { 35 | $this->handle_update_subscription_domain($subscription_id); 36 | $domain_name = get_post_meta($subscription_id, WPCSTenant::WPCS_DOMAIN_NAME_META, true); 37 | $base_domain_name = get_post_meta($subscription_id, WPCSTenant::WPCS_BASE_DOMAIN_NAME_META, true); 38 | 39 | $domain_name = $domain_name ?: $base_domain_name; 40 | 41 | echo '

Website Details

'; 42 | echo "
43 |

44 | 45 | 46 |

47 | 48 |


"; 49 | echo '

Before verifying a domain, make sure that its DNS contains the following settings.

50 |

For the domain apex add A records with the following IPs as their values:

51 |
52 | 54.74.209.56
53 | 54.75.81.37
54 | 54.216.187.86
55 | 
56 |

If you are verifying a subdomain, create a CNAME record with the value:

57 |
public.eu1.wpcs.io
'; 58 | echo '

Website Status

'; 59 | } 60 | 61 | public function handle_update_subscription_domain($subscription_id) 62 | { 63 | $domain = sanitize_text_field($_POST['domain_name']); 64 | 65 | $tenant_external_id = get_post_meta($subscription_id, WPCSTenant::WPCS_TENANT_EXTERNAL_ID_META, true); 66 | $tenant_current_domain_name = get_post_meta($subscription_id, WPCSTenant::WPCS_DOMAIN_NAME_META, true); 67 | 68 | if (!isset($_POST['domain_name']) || $_POST['domain_name'] === $tenant_current_domain_name) { 69 | return; 70 | } 71 | 72 | try { 73 | $this->wpcsService->add_tenant_domain([ 74 | 'external_id' => $tenant_external_id, 75 | 'domain_name' => $domain, 76 | ]); 77 | 78 | update_post_meta($subscription_id, WPCSTenant::WPCS_DOMAIN_NAME_META, $domain); 79 | 80 | if ($tenant_current_domain_name) { 81 | wp_schedule_single_event(time() + 300, 'remove_tenant_old_domain', [$tenant_external_id, $tenant_current_domain_name]); 82 | } 83 | } catch (Exception $e) { 84 | } 85 | } 86 | 87 | public function remove_tenant_old_domain($external_id, $old_domain_name) 88 | { 89 | $this->wpcsService->delete_tenant_domain([ 90 | 'external_id' => $external_id, 91 | 'old_domain_name' => $old_domain_name, 92 | ]); 93 | } 94 | } -------------------------------------------------------------------------------- /packages/wix-host/src/Features/UiWPCSAdminSettings.php: -------------------------------------------------------------------------------- 1 | WPCS.io Admin
'; 28 | settings_fields('wpcs-admin'); 29 | do_settings_sections('wpcs-admin'); 30 | submit_button(); 31 | echo '
'; 32 | } 33 | 34 | public function add_wpcs_admin_settings() 35 | { 36 | add_settings_section( 37 | 'wpcs_credentials', 38 | 'WPCS Credentials', 39 | fn() => "

Intro text for our settings section

", 40 | 'wpcs-admin' 41 | ); 42 | 43 | register_setting('wpcs-admin', 'wpcs_credentials_region_setting'); 44 | add_settings_field( 45 | 'wpcs_credentials_region_setting', 46 | 'WPCS Region', 47 | [$this, 'render_settings_field'], 48 | 'wpcs-admin', 49 | 'wpcs_credentials', 50 | [ 51 | "id" => "wpcs_credentials_region_setting", 52 | "title" => "WPCS Region", 53 | "type" => "text" 54 | ] 55 | ); 56 | 57 | register_setting('wpcs-admin', 'wpcs_credentials_api_key_setting'); 58 | add_settings_field( 59 | 'wpcs_credentials_api_key_setting', 60 | 'WPCS API Key', 61 | [$this, 'render_settings_field'], 62 | 'wpcs-admin', 63 | 'wpcs_credentials', 64 | [ 65 | "id" => "wpcs_credentials_api_key_setting", 66 | "title" => "WPCS API Key", 67 | "type" => "text" 68 | ] 69 | ); 70 | 71 | register_setting('wpcs-admin', 'wpcs_credentials_api_secret_setting'); 72 | add_settings_field( 73 | 'wpcs_credentials_api_secret_setting', 74 | 'WPCS API Secret', 75 | [$this, 'render_settings_field'], 76 | 'wpcs-admin', 77 | 'wpcs_credentials', 78 | [ 79 | "id" => "wpcs_credentials_api_secret_setting", 80 | "title" => "WPCS API Secret", 81 | "type" => "password" 82 | ] 83 | ); 84 | 85 | 86 | } 87 | 88 | function render_settings_field($args) 89 | { 90 | echo ""; 91 | } 92 | } 93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /packages/wix-host/src/Features/UiWcTenantsCheckout.php: -------------------------------------------------------------------------------- 1 | 'Website Name', 19 | 'required' => true, 20 | 'priority' => 20, 21 | ]; 22 | 23 | $fields['billing'][WPCSTenant::WPCS_DOMAIN_NAME_META] = [ 24 | 'label' => 'Domain Name', 25 | 'required' => false, 26 | 'priority' => 21, 27 | 'placeholder' => 'example.com' 28 | ]; 29 | 30 | return $fields; 31 | } 32 | 33 | function add_wpcs_checkout_fields($order_id) 34 | { 35 | update_post_meta($order_id, WPCSTenant::WPCS_WEBSITE_NAME_META, sanitize_text_field($_POST[WPCSTenant::WPCS_WEBSITE_NAME_META])); 36 | update_post_meta($order_id, WPCSTenant::WPCS_DOMAIN_NAME_META, sanitize_text_field($_POST[WPCSTenant::WPCS_DOMAIN_NAME_META])); 37 | } 38 | } -------------------------------------------------------------------------------- /packages/wix-host/src/Features/UiWcWPCSProductVersions.php: -------------------------------------------------------------------------------- 1 | wpcsService = $wpcsService; 15 | 16 | add_action('add_meta_boxes', [$this, 'create_woocommerce_wpcs_versions_selector']); 17 | add_action('save_post', [$this, 'save_woocommerce_wpcs_versions_selector']); 18 | } 19 | 20 | public function create_woocommerce_wpcs_versions_selector() 21 | { 22 | add_meta_box( 23 | 'wpcs_product_version_selector', 24 | 'WPCS Version Selector', 25 | [$this, 'render_woocommerce_wpcs_versions_selector'], 26 | 'product', 27 | 'side', 28 | 'high' 29 | ); 30 | } 31 | 32 | public function render_woocommerce_wpcs_versions_selector($post) 33 | { 34 | $versions = $this->wpcsService->get_available_product_versions(); 35 | 36 | $available_versions = array_filter($versions, function ($version) { 37 | return $version->statusName === 'Done'; 38 | }); 39 | 40 | $current_version = get_post_meta($post->ID, WPCSTenant::WPCS_PRODUCT_VERSION_META, true); 41 | 42 | echo ''; 43 | echo "'; 50 | } 51 | 52 | public function save_woocommerce_wpcs_versions_selector($post_id) 53 | { 54 | if (array_key_exists(WPCSTenant::WPCS_PRODUCT_VERSION_META, $_POST) && $_POST['post_type'] === 'product') { 55 | update_post_meta( 56 | $post_id, 57 | WPCSTenant::WPCS_PRODUCT_VERSION_META, 58 | $_POST[WPCSTenant::WPCS_PRODUCT_VERSION_META] 59 | ); 60 | } 61 | } 62 | } -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- 1 | rm -rf build 2 | mkdir build 3 | 4 | cp -R packages/wix-host build/wix-host 5 | cp -R packages/wix-client build/wix-client 6 | 7 | rm -rf build/wix-host/vendor 8 | rm -rf build/wix-client/vendor 9 | 10 | (cd build/wix-host && composer install --no-dev) 11 | (cd build/wix-client && composer install --no-dev) 12 | 13 | 14 | (cd build && zip -r wix-host.zip wix-host) 15 | (cd build && zip -r wix-client.zip wix-client) 16 | 17 | rm -rf build/wix-host 18 | rm -rf build/wix-client -------------------------------------------------------------------------------- /scripts/cronjob.sh: -------------------------------------------------------------------------------- 1 | sudo echo "* * * * * root curl http://localhost/wp-cron.php" > /etc/cron.d/wpcron -------------------------------------------------------------------------------- /scripts/watch.sh: -------------------------------------------------------------------------------- 1 | fswatch -o packages/wix-host | xargs -n1 -I{} rsync -a packages/wix-host dist/host/plugins 2 | fswatch -o packages/wix-client | xargs -n1 -I{} rsync -a packages/wix-client dist/client/plugins 3 | --------------------------------------------------------------------------------