From 24d578d392e31d76107a9e86be2f135584f4717c Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Tue, 9 Jul 2019 02:33:41 +0000 Subject: [PATCH] composer update --- composer.json | 5 +- composer.lock | 91 +- vendor/balping/json-raw-encoder/.gitignore | 1 + vendor/balping/json-raw-encoder/LICENSE | 674 ++++++++ vendor/balping/json-raw-encoder/README.md | 102 ++ vendor/balping/json-raw-encoder/composer.json | 30 + vendor/balping/json-raw-encoder/composer.lock | 1474 +++++++++++++++++ vendor/balping/json-raw-encoder/phpunit.xml | 17 + .../balping/json-raw-encoder/src/Encoder.php | 51 + vendor/balping/json-raw-encoder/src/Raw.php | 57 + .../balping/json-raw-encoder/src/Replacer.php | 48 + .../json-raw-encoder/tests/RawEncoderTest.php | 58 + .../json-raw-encoder/tests/ReplacerTest.php | 63 + vendor/composer/ClassLoader.php | 2 +- vendor/composer/autoload_classmap.php | 36 +- vendor/composer/autoload_psr4.php | 2 + vendor/composer/autoload_static.php | 46 +- vendor/composer/installed.json | 93 ++ vendor/consoletvs/charts/.gitattributes | 2 + vendor/consoletvs/charts/.gitignore | 1 + vendor/consoletvs/charts/LICENSE | 21 + vendor/consoletvs/charts/README.md | 28 + vendor/consoletvs/charts/composer.json | 31 + .../charts/src/ChartsServiceProvider.php | 46 + .../charts/src/Classes/BaseChart.php | 542 ++++++ .../charts/src/Classes/C3/Chart.php | 59 + .../charts/src/Classes/C3/Dataset.php | 33 + .../charts/src/Classes/Chartjs/Chart.php | 45 + .../charts/src/Classes/Chartjs/Dataset.php | 41 + .../charts/src/Classes/DatasetClass.php | 129 ++ .../charts/src/Classes/Echarts/Chart.php | 69 + .../charts/src/Classes/Echarts/Dataset.php | 67 + .../charts/src/Classes/Frappe/Chart.php | 85 + .../charts/src/Classes/Frappe/Dataset.php | 39 + .../charts/src/Classes/Fusioncharts/Chart.php | 82 + .../src/Classes/Fusioncharts/Dataset.php | 98 ++ .../charts/src/Classes/Highcharts/Chart.php | 56 + .../charts/src/Classes/Highcharts/Dataset.php | 93 ++ .../consoletvs/charts/src/Classes/README.md | 3 + .../charts/src/Commands/ChartsCommand.php | 133 ++ .../consoletvs/charts/src/Commands/README.md | 3 + .../charts/src/Commands/stubs/chart.stub | 18 + .../consoletvs/charts/src/Config/charts.php | 15 + .../charts/src/Features/C3/Chart.php | 59 + .../charts/src/Features/C3/Dataset.php | 8 + .../charts/src/Features/Chartjs/Chart.php | 117 ++ .../charts/src/Features/Chartjs/Dataset.php | 86 + .../charts/src/Features/Echarts/Chart.php | 183 ++ .../charts/src/Features/Echarts/Dataset.php | 26 + .../charts/src/Features/Frappe/Chart.php | 128 ++ .../charts/src/Features/Frappe/Dataset.php | 20 + .../src/Features/Fusioncharts/Chart.php | 90 + .../src/Features/Fusioncharts/Dataset.php | 26 + .../charts/src/Features/Highcharts/Chart.php | 123 ++ .../src/Features/Highcharts/Dataset.php | 26 + vendor/consoletvs/charts/src/Views/README.md | 3 + .../charts/src/Views/c3/container.blade.php | 3 + .../charts/src/Views/c3/script.blade.php | 29 + .../src/Views/chartjs/container.blade.php | 2 + .../charts/src/Views/chartjs/script.blade.php | 41 + .../src/Views/echarts/container.blade.php | 3 + .../charts/src/Views/echarts/script.blade.php | 29 + .../src/Views/frappe/container.blade.php | 3 + .../charts/src/Views/frappe/script.blade.php | 44 + .../Views/fusioncharts/container.blade.php | 3 + .../src/Views/fusioncharts/script.blade.php | 48 + .../src/Views/highcharts/container.blade.php | 3 + .../src/Views/highcharts/script.blade.php | 27 + .../charts/src/Views/init.blade.php | 17 + .../charts/src/Views/loader.blade.php | 40 + 70 files changed, 5770 insertions(+), 6 deletions(-) create mode 100644 vendor/balping/json-raw-encoder/.gitignore create mode 100644 vendor/balping/json-raw-encoder/LICENSE create mode 100644 vendor/balping/json-raw-encoder/README.md create mode 100644 vendor/balping/json-raw-encoder/composer.json create mode 100644 vendor/balping/json-raw-encoder/composer.lock create mode 100644 vendor/balping/json-raw-encoder/phpunit.xml create mode 100644 vendor/balping/json-raw-encoder/src/Encoder.php create mode 100644 vendor/balping/json-raw-encoder/src/Raw.php create mode 100644 vendor/balping/json-raw-encoder/src/Replacer.php create mode 100644 vendor/balping/json-raw-encoder/tests/RawEncoderTest.php create mode 100644 vendor/balping/json-raw-encoder/tests/ReplacerTest.php create mode 100644 vendor/consoletvs/charts/.gitattributes create mode 100644 vendor/consoletvs/charts/.gitignore create mode 100644 vendor/consoletvs/charts/LICENSE create mode 100644 vendor/consoletvs/charts/README.md create mode 100644 vendor/consoletvs/charts/composer.json create mode 100644 vendor/consoletvs/charts/src/ChartsServiceProvider.php create mode 100644 vendor/consoletvs/charts/src/Classes/BaseChart.php create mode 100644 vendor/consoletvs/charts/src/Classes/C3/Chart.php create mode 100644 vendor/consoletvs/charts/src/Classes/C3/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Classes/Chartjs/Chart.php create mode 100644 vendor/consoletvs/charts/src/Classes/Chartjs/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Classes/DatasetClass.php create mode 100644 vendor/consoletvs/charts/src/Classes/Echarts/Chart.php create mode 100644 vendor/consoletvs/charts/src/Classes/Echarts/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Classes/Frappe/Chart.php create mode 100644 vendor/consoletvs/charts/src/Classes/Frappe/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Classes/Fusioncharts/Chart.php create mode 100644 vendor/consoletvs/charts/src/Classes/Fusioncharts/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Classes/Highcharts/Chart.php create mode 100644 vendor/consoletvs/charts/src/Classes/Highcharts/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Classes/README.md create mode 100644 vendor/consoletvs/charts/src/Commands/ChartsCommand.php create mode 100644 vendor/consoletvs/charts/src/Commands/README.md create mode 100644 vendor/consoletvs/charts/src/Commands/stubs/chart.stub create mode 100644 vendor/consoletvs/charts/src/Config/charts.php create mode 100644 vendor/consoletvs/charts/src/Features/C3/Chart.php create mode 100644 vendor/consoletvs/charts/src/Features/C3/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Features/Chartjs/Chart.php create mode 100644 vendor/consoletvs/charts/src/Features/Chartjs/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Features/Echarts/Chart.php create mode 100644 vendor/consoletvs/charts/src/Features/Echarts/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Features/Frappe/Chart.php create mode 100644 vendor/consoletvs/charts/src/Features/Frappe/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Features/Fusioncharts/Chart.php create mode 100644 vendor/consoletvs/charts/src/Features/Fusioncharts/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Features/Highcharts/Chart.php create mode 100644 vendor/consoletvs/charts/src/Features/Highcharts/Dataset.php create mode 100644 vendor/consoletvs/charts/src/Views/README.md create mode 100644 vendor/consoletvs/charts/src/Views/c3/container.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/c3/script.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/chartjs/container.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/chartjs/script.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/echarts/container.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/echarts/script.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/frappe/container.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/frappe/script.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/fusioncharts/container.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/fusioncharts/script.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/highcharts/container.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/highcharts/script.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/init.blade.php create mode 100644 vendor/consoletvs/charts/src/Views/loader.blade.php diff --git a/composer.json b/composer.json index d7f7c9159..22a6f9249 100644 --- a/composer.json +++ b/composer.json @@ -6,17 +6,18 @@ "type": "project", "require": { "php": "^7.1.3", + "consoletvs/charts": "6.*", "eveseat/eseye": "^1.1", "fideloper/proxy": "^4.0", "guzzlehttp/guzzle": "^6.3", + "khill/lavacharts": "3.1.*", "laravel/framework": "5.8.*", "laravel/horizon": "^3.1", "laravel/socialite": "^3.1", "laravel/tinker": "^1.0", "laravelcollective/html": "^5.8.0", "predis/predis": "^1.1", - "twbs/bootstrap": "^4.1", - "khill/lavacharts" : "3.1.*" + "twbs/bootstrap": "^4.1" }, "require-dev": { "beyondcode/laravel-dump-server": "^1.0", diff --git a/composer.lock b/composer.lock index 44334e726..7c8bad539 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,51 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "338c19197729ee706a00a6f970e48247", + "content-hash": "80e7526fced64d02bc8bc746b8939ea8", "packages": [ + { + "name": "balping/json-raw-encoder", + "version": "v1.0.0", + "source": { + "type": "git", + "url": "https://github.com/balping/json-raw-encoder.git", + "reference": "c404b7fc0e04ddf5d298e53105c5fc306f523195" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/balping/json-raw-encoder/zipball/c404b7fc0e04ddf5d298e53105c5fc306f523195", + "reference": "c404b7fc0e04ddf5d298e53105c5fc306f523195", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Balping\\JsonRaw\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0-only" + ], + "authors": [ + { + "name": "Balázs Dura-Kovács" + } + ], + "description": "Encode arrays to json with raw JS objects (eg. callbacks) in them", + "keywords": [ + "callback", + "encode", + "json" + ], + "time": "2018-05-04T15:38:02+00:00" + }, { "name": "cakephp/chronos", "version": "1.2.8", @@ -63,6 +106,52 @@ ], "time": "2019-06-17T15:19:18+00:00" }, + { + "name": "consoletvs/charts", + "version": "6.5.0", + "source": { + "type": "git", + "url": "https://github.com/ConsoleTVs/Charts.git", + "reference": "63e8c604e65df77e8844527906ee80b53695e219" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ConsoleTVs/Charts/zipball/63e8c604e65df77e8844527906ee80b53695e219", + "reference": "63e8c604e65df77e8844527906ee80b53695e219", + "shasum": "" + }, + "require": { + "balping/json-raw-encoder": "^1.0", + "illuminate/console": "5.*", + "illuminate/support": "5.*", + "php": ">=7.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ConsoleTVs\\Charts\\ChartsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ConsoleTVs\\Charts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Èrik Campobadal Forés", + "email": "soc@erik.cat" + } + ], + "description": "The laravel charting package", + "time": "2019-04-21T13:30:11+00:00" + }, { "name": "dnoegel/php-xdg-base-dir", "version": "0.1", diff --git a/vendor/balping/json-raw-encoder/.gitignore b/vendor/balping/json-raw-encoder/.gitignore new file mode 100644 index 000000000..48b8bf907 --- /dev/null +++ b/vendor/balping/json-raw-encoder/.gitignore @@ -0,0 +1 @@ +vendor/ diff --git a/vendor/balping/json-raw-encoder/LICENSE b/vendor/balping/json-raw-encoder/LICENSE new file mode 100644 index 000000000..94a9ed024 --- /dev/null +++ b/vendor/balping/json-raw-encoder/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/vendor/balping/json-raw-encoder/README.md b/vendor/balping/json-raw-encoder/README.md new file mode 100644 index 000000000..2c85546a9 --- /dev/null +++ b/vendor/balping/json-raw-encoder/README.md @@ -0,0 +1,102 @@ +# Json Raw Encoder + +Use this package to encode arrays to JSON with raw JS objects (eg. callbacks) in them. + + +## Installation + +```bash +composer require balping/json-raw-encoder +``` + + + +## Usage + +Suppose you need to pass a callback to a JSON object. + +```php + 'cat', + 'count' => 42, + 'callback' => 'function(a){alert(a);}' + ]; +?> + + + let bar = + bar.callback('hello'); //error + +``` + +However, the above array will be encoded as + +```json +{"type":"cat","count":42,"callback":"function(a){alert(a);}"} +``` + +On this object, you cannot call `callback()`, as `callback` is a string and not a function. + +To get around this problem, use `Raw` objects provided by this package: + +```php + 'cat', + 'count' => 42, + 'callback' => new Raw('function(a){alert(a);}') + ]; +?> + + + let bar = + bar.callback('hello'); //prints hello + +``` + +Now, the encoded JSON looks like this. Notice, that there are no parentheses around the function. + +```js +{"type":"cat","count":42,"callback":function(a){alert(a);}} +``` + +Calling `bar.callback()` now works, as `callback` is a function and not a string. + +## Using with third party libraries + +It is possible that the serialisation is done by a library (eg. Fractal), and not by your code, i.e. you cannot replace `json_encode` with `Encoder::encode()`. + +In this case, you can still pass callbacks to JSON, by passing the encoded json and an array of all raw objects to `Replacer::replace()`: + +```php + +use Balping\JsonRaw\Raw; +use Balping\JsonRaw\Replacer; + +$rawObjects = []; + +$array = [ + 'type' => 'cat', + 'count' => 42, + 'callback' => $rawObjects[] = new Raw('function(a){alert(a);}') +]; + +// you cannot alter the behaviour of a third party encoder +$encoded = $thirdParty->jsonEncode($array); + +echo Replacer::replace($encoded, $rawObjects); +``` + +Result: + +```js +{"type":"cat","count":42,"callback":function(a){alert(a);}} +``` + +## License + +This package is licensed under GPLv3. diff --git a/vendor/balping/json-raw-encoder/composer.json b/vendor/balping/json-raw-encoder/composer.json new file mode 100644 index 000000000..55b328b53 --- /dev/null +++ b/vendor/balping/json-raw-encoder/composer.json @@ -0,0 +1,30 @@ +{ + "name": "balping/json-raw-encoder", + "description": "Encode arrays to json with raw JS objects (eg. callbacks) in them", + "keywords": ["json", "encode", "callback"], + "type": "library", + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "license": "GPL-3.0-only", + "authors": [ + { + "name": "Balázs Dura-Kovács" + } + ], + "autoload": { + "psr-4": { + "Balping\\JsonRaw\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Balping\\JsonRaw\\Tests\\": "tests/" + } + }, + "minimum-stability": "dev", + "prefer-stable": true +} diff --git a/vendor/balping/json-raw-encoder/composer.lock b/vendor/balping/json-raw-encoder/composer.lock new file mode 100644 index 000000000..96b28c9b3 --- /dev/null +++ b/vendor/balping/json-raw-encoder/composer.lock @@ -0,0 +1,1474 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", + "This file is @generated automatically" + ], + "content-hash": "ba6fafafd0cc64a04986eb2f5db549a9", + "packages": [], + "packages-dev": [ + { + "name": "doctrine/instantiator", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", + "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "athletic/athletic": "~0.1.8", + "ext-pdo": "*", + "ext-phar": "*", + "phpunit/phpunit": "^6.2.3", + "squizlabs/php_codesniffer": "^3.0.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.com/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://github.com/doctrine/instantiator", + "keywords": [ + "constructor", + "instantiate" + ], + "time": "2017-07-22T11:58:36+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.7.0", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^4.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "time": "2017-10-19T19:58:43+00:00" + }, + { + "name": "phar-io/manifest", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", + "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "phar-io/version": "^1.0.1", + "php": "^5.6 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "time": "2017-03-05T18:14:27+00:00" + }, + { + "name": "phar-io/version", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df", + "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "time": "2017-03-05T17:38:23+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "shasum": "" + }, + "require": { + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ], + "time": "2017-09-11T18:02:19+00:00" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "4.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08", + "shasum": "" + }, + "require": { + "php": "^7.0", + "phpdocumentor/reflection-common": "^1.0.0", + "phpdocumentor/type-resolver": "^0.4.0", + "webmozart/assert": "^1.0" + }, + "require-dev": { + "doctrine/instantiator": "~1.0.5", + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "time": "2017-11-30T07:14:17+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "0.4.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", + "shasum": "" + }, + "require": { + "php": "^5.5 || ^7.0", + "phpdocumentor/reflection-common": "^1.0" + }, + "require-dev": { + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^5.2||^4.8.24" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "time": "2017-07-14T14:27:02+00:00" + }, + { + "name": "phpspec/prophecy", + "version": "1.7.6", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/33a7e3c4fda54e912ff6338c48823bd5c0f0b712", + "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.2", + "php": "^5.3|^7.0", + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", + "sebastian/comparator": "^1.1|^2.0|^3.0", + "sebastian/recursion-context": "^1.0|^2.0|^3.0" + }, + "require-dev": { + "phpspec/phpspec": "^2.5|^3.2", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.7.x-dev" + } + }, + "autoload": { + "psr-0": { + "Prophecy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" + ], + "time": "2018-04-18T13:57:24+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "6.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "52187754b0eed0b8159f62a6fa30073327e8c2ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/52187754b0eed0b8159f62a6fa30073327e8c2ca", + "reference": "52187754b0eed0b8159f62a6fa30073327e8c2ca", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xmlwriter": "*", + "php": "^7.1", + "phpunit/php-file-iterator": "^1.4.2", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-token-stream": "^3.0", + "sebastian/code-unit-reverse-lookup": "^1.0.1", + "sebastian/environment": "^3.1", + "sebastian/version": "^2.0.1", + "theseer/tokenizer": "^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "suggest": { + "ext-xdebug": "^2.6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "time": "2018-04-29T14:59:09+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "1.4.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "time": "2017-11-27T13:52:08+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "time": "2015-06-21T13:50:34+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f", + "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "time": "2018-02-01T13:07:23+00:00" + }, + { + "name": "phpunit/php-token-stream", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-token-stream.git", + "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/21ad88bbba7c3d93530d93994e0a33cd45f02ace", + "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Wrapper around PHP's tokenizer extension.", + "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "keywords": [ + "tokenizer" + ], + "time": "2018-02-01T13:16:43+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "7.1.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "ca64dba53b88aba6af32aebc6b388068db95c435" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ca64dba53b88aba6af32aebc6b388068db95c435", + "reference": "ca64dba53b88aba6af32aebc6b388068db95c435", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "myclabs/deep-copy": "^1.6.1", + "phar-io/manifest": "^1.0.1", + "phar-io/version": "^1.0", + "php": "^7.1", + "phpspec/prophecy": "^1.7", + "phpunit/php-code-coverage": "^6.0.1", + "phpunit/php-file-iterator": "^1.4.3", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-timer": "^2.0", + "phpunit/phpunit-mock-objects": "^6.1.1", + "sebastian/comparator": "^3.0", + "sebastian/diff": "^3.0", + "sebastian/environment": "^3.1", + "sebastian/exporter": "^3.1", + "sebastian/global-state": "^2.0", + "sebastian/object-enumerator": "^3.0.3", + "sebastian/resource-operations": "^1.0", + "sebastian/version": "^2.0.1" + }, + "require-dev": { + "ext-pdo": "*" + }, + "suggest": { + "ext-xdebug": "*", + "phpunit/php-invoker": "^2.0" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "time": "2018-04-29T15:09:19+00:00" + }, + { + "name": "phpunit/phpunit-mock-objects", + "version": "6.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", + "reference": "70c740bde8fd9ea9ea295be1cd875dd7b267e157" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/70c740bde8fd9ea9ea295be1cd875dd7b267e157", + "reference": "70c740bde8fd9ea9ea295be1cd875dd7b267e157", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.5", + "php": "^7.1", + "phpunit/php-text-template": "^1.2.1", + "sebastian/exporter": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "suggest": { + "ext-soap": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Mock Object library for PHPUnit", + "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", + "keywords": [ + "mock", + "xunit" + ], + "time": "2018-04-11T04:50:36+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "time": "2017-03-04T06:30:41+00:00" + }, + { + "name": "sebastian/comparator", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "ed5fd2281113729f1ebcc64d101ad66028aeb3d5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/ed5fd2281113729f1ebcc64d101ad66028aeb3d5", + "reference": "ed5fd2281113729f1ebcc64d101ad66028aeb3d5", + "shasum": "" + }, + "require": { + "php": "^7.1", + "sebastian/diff": "^3.0", + "sebastian/exporter": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "time": "2018-04-18T13:33:00+00:00" + }, + { + "name": "sebastian/diff", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/e09160918c66281713f1c324c1f4c4c3037ba1e8", + "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0", + "symfony/process": "^2 || ^3.3 || ^4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "time": "2018-02-01T13:45:15+00:00" + }, + { + "name": "sebastian/environment", + "version": "3.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", + "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "time": "2017-07-01T08:51:00+00:00" + }, + { + "name": "sebastian/exporter", + "version": "3.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "234199f4528de6d12aaa58b612e98f7d36adb937" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937", + "reference": "234199f4528de6d12aaa58b612e98f7d36adb937", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "http://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "time": "2017-04-03T13:19:02+00:00" + }, + { + "name": "sebastian/global-state", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "time": "2017-04-27T15:39:26+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "time": "2017-08-03T12:35:26+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "773f97c67f28de00d397be301821b06708fca0be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", + "reference": "773f97c67f28de00d397be301821b06708fca0be", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "time": "2017-03-29T09:07:27+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "time": "2017-03-03T06:23:57+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", + "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", + "shasum": "" + }, + "require": { + "php": ">=5.6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "time": "2015-07-28T20:34:47+00:00" + }, + { + "name": "sebastian/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "time": "2016-10-03T07:35:21+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b", + "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "time": "2017-04-07T12:08:54+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/webmozart/assert.git", + "reference": "0df1908962e7a3071564e857d86874dad1ef204a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", + "reference": "0df1908962e7a3071564e857d86874dad1ef204a", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "time": "2018-01-29T19:49:41+00:00" + } + ], + "aliases": [], + "minimum-stability": "dev", + "stability-flags": [], + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": ">=7.0" + }, + "platform-dev": [] +} diff --git a/vendor/balping/json-raw-encoder/phpunit.xml b/vendor/balping/json-raw-encoder/phpunit.xml new file mode 100644 index 000000000..83d6853d9 --- /dev/null +++ b/vendor/balping/json-raw-encoder/phpunit.xml @@ -0,0 +1,17 @@ + + + + + ./tests/ + + + \ No newline at end of file diff --git a/vendor/balping/json-raw-encoder/src/Encoder.php b/vendor/balping/json-raw-encoder/src/Encoder.php new file mode 100644 index 000000000..94098e4f2 --- /dev/null +++ b/vendor/balping/json-raw-encoder/src/Encoder.php @@ -0,0 +1,51 @@ +. + +*/ + +namespace Balping\JsonRaw; + +class Encoder { + /** + * Encode array containing Raw objects to JSON + * + * @see json_encode + * + * @param mixed $value + * @param int $options + * @param int $depth [optional] + * @return string|false + */ + static function encode($value, ...$args){ + $rawObjects = []; + + // find raw object items in the input array + array_walk_recursive($value, function($item) use (&$rawObjects){ + if(is_object($item) && is_a($item, Raw::class)){ + $rawObjects[] = &$item; + } + }); + + $encoded = json_encode($value, ...$args); + + return Replacer::replace($encoded, $rawObjects); + } +} diff --git a/vendor/balping/json-raw-encoder/src/Raw.php b/vendor/balping/json-raw-encoder/src/Raw.php new file mode 100644 index 000000000..14eb5a71d --- /dev/null +++ b/vendor/balping/json-raw-encoder/src/Raw.php @@ -0,0 +1,57 @@ +. + +*/ + +namespace Balping\JsonRaw; + +class Raw implements \JsonSerializable { + /** + * Unique identifier. Gets replaced with raw value + * after using built-in json_encode + * @var string + */ + protected $id; + + /** + * Raw value. This is passed to json without any modification + * (i.e. without escaping, etc.) + * @var string + */ + protected $value; + + public function __construct(string $value){ + $this->value = $value; + $this->id = bin2hex(random_bytes(20)); + } + + public function getId(){ + return $this->id; + } + + public function getValue(){ + return $this->value; + } + + public function jsonSerialize(){ + return $this->getId(); + } +} diff --git a/vendor/balping/json-raw-encoder/src/Replacer.php b/vendor/balping/json-raw-encoder/src/Replacer.php new file mode 100644 index 000000000..f5cc42480 --- /dev/null +++ b/vendor/balping/json-raw-encoder/src/Replacer.php @@ -0,0 +1,48 @@ +. + +*/ + +namespace Balping\JsonRaw; + +class Replacer { + /** + * Replace unique ids with raw values in an encoded json + * + * @param string $json encoded json + * @param array $rawObjects + * @return string + */ + static function replace(string $json, array $rawObjects){ + $encoded = &$json; + + // replace unique strings with raw values + foreach ($rawObjects as $rawObject) { + $encoded = str_replace( + '"'. $rawObject->getId() . '"', + $rawObject->getValue(), + $encoded + ); + } + + return $encoded; + } +} diff --git a/vendor/balping/json-raw-encoder/tests/RawEncoderTest.php b/vendor/balping/json-raw-encoder/tests/RawEncoderTest.php new file mode 100644 index 000000000..9852d1c5b --- /dev/null +++ b/vendor/balping/json-raw-encoder/tests/RawEncoderTest.php @@ -0,0 +1,58 @@ +. + +*/ + +namespace Balping\JsonRaw\Tests; + +use Balping\JsonRaw\Raw; +use Balping\JsonRaw\Encoder; +use PHPUnit\Framework\TestCase; + + +class RawEncoderTest extends TestCase { + + /** @test */ + public function callbacks_can_be_passed(){ + $array = [ + "a" => "string", + "b" => 42, + "callback" => new Raw(<<<'JS' +function(a){ + console.log(a); +} +JS + ) + ]; + + $json = Encoder::encode($array); + + $this->assertEquals(<<<'JSON' +{"a":"string","b":42,"callback":function(a){ + console.log(a); +}} +JSON + , $json); + + + } + +} \ No newline at end of file diff --git a/vendor/balping/json-raw-encoder/tests/ReplacerTest.php b/vendor/balping/json-raw-encoder/tests/ReplacerTest.php new file mode 100644 index 000000000..f9e95636f --- /dev/null +++ b/vendor/balping/json-raw-encoder/tests/ReplacerTest.php @@ -0,0 +1,63 @@ +. + +*/ + +namespace Balping\JsonRaw\Tests; + +use Balping\JsonRaw\Raw; +use Balping\JsonRaw\Replacer; +use PHPUnit\Framework\TestCase; + + +class ReplacerTest extends TestCase { + + /** @test */ + public function callbacks_can_be_passed(){ + $jsObjects = []; + + $array = [ + "a" => "string", + "b" => 42, + "callback" => $jsObjects[] = new Raw(<<<'JS' +function(a){ + console.log(a); +} +JS + ) + ]; + + // imagine this being a vendor function in library + $json = json_encode($array); + + $json = Replacer::replace($json, $jsObjects); + + $this->assertEquals(<<<'JSON' +{"a":"string","b":42,"callback":function(a){ + console.log(a); +}} +JSON + , $json); + + + } + +} \ No newline at end of file diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index 95f7e0978..dc02dfb11 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -377,7 +377,7 @@ class ClassLoader $subPath = $class; while (false !== $lastPos = strrpos($subPath, '\\')) { $subPath = substr($subPath, 0, $lastPos); - $search = $subPath . '\\'; + $search = $subPath.'\\'; if (isset($this->prefixDirsPsr4[$search])) { $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); foreach ($this->prefixDirsPsr4[$search] as $dir) { diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 1ac99ce29..3cc9b22a4 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -9,7 +9,7 @@ return array( 'App\\Console\\Commands\\CleanStaleDataCommand' => $baseDir . '/app/Console/Commands/Data/CleanStaleDataCommand.php', 'App\\Console\\Commands\\GetAssetsCommand' => $baseDir . '/app/Console/Commands/Assets/GetAssets.php', 'App\\Console\\Commands\\GetCorpsCommand' => $baseDir . '/app/Console/Commands/Corps/GetCorps.php', - 'App\\Console\\Commands\\GetEveContracts' => $baseDir . '/app/Console/Commands/Logistics/GetEveContracts.php', + 'App\\Console\\Commands\\GetEveContractsCommand' => $baseDir . '/app/Console/Commands/Logistics/GetEveContracts.php', 'App\\Console\\Commands\\GetStructuresCommand' => $baseDir . '/app/Console/Commands/Structures/GetStructures.php', 'App\\Console\\Commands\\HoldingFinancesCommand' => $baseDir . '/app/Console/Commands/Finances/HoldingFinances.php', 'App\\Console\\Commands\\MoonMailerCommand' => $baseDir . '/app/Console/Commands/Moons/MoonMailer.php', @@ -25,6 +25,7 @@ return array( 'App\\Http\\Controllers\\Controller' => $baseDir . '/app/Http/Controllers/Controller.php', 'App\\Http\\Controllers\\Dashboard\\AdminController' => $baseDir . '/app/Http/Controllers/Dashboard/AdminController.php', 'App\\Http\\Controllers\\Dashboard\\DashboardController' => $baseDir . '/app/Http/Controllers/Dashboard/DashboardController.php', + 'App\\Http\\Controllers\\Fuel\\FuelController' => $baseDir . '/app/Http/Controllers/Logistics/FuelController.php', 'App\\Http\\Controllers\\Logistics\\LogisticsController' => $baseDir . '/app/Http/Controllers/Logistics/LogisticsController.php', 'App\\Http\\Controllers\\Moons\\MoonsAdminController' => $baseDir . '/app/Http/Controllers/Moons/MoonsAdminController.php', 'App\\Http\\Controllers\\Moons\\MoonsController' => $baseDir . '/app/Http/Controllers/Moons/MoonsController.php', @@ -97,6 +98,8 @@ return array( 'App\\Models\\Jobs\\JobSendEveMail' => $baseDir . '/app/Models/Jobs/JobSendEveMail.php', 'App\\Models\\Jobs\\JobStatus' => $baseDir . '/app/Models/Jobs/JobStatus.php', 'App\\Models\\Logistics\\LogisticContract' => $baseDir . '/app/Models/Logistics/LogisticContract.php', + 'App\\Models\\Logistics\\LogisticsInsuranceDeposit' => $baseDir . '/app/Models/Logistics/LogisticsInsuranceDeposit.php', + 'App\\Models\\Logistics\\LogisticsInsurancePayout' => $baseDir . '/app/Models/Logistics/LogisticsInsurancePayout.php', 'App\\Models\\Lookups\\CharacterToCorporation' => $baseDir . '/app/Models/Lookups/CharacterToCorporation.php', 'App\\Models\\Lookups\\CorporationToAlliance' => $baseDir . '/app/Models/Lookups/CorporationToAlliance.php', 'App\\Models\\Lookups\\SolarSystem' => $baseDir . '/app/Models/Lookups/SolarSystem.php', @@ -132,6 +135,9 @@ return array( 'App\\SolarSystemDistance' => $baseDir . '/app/Models/Logistics/SolarSystemDistance.php', 'App\\Traits\\EveOAuth' => $baseDir . '/app/Traits/EveOAuth.php', 'AvailableUserPermissions' => $baseDir . '/database/seeds/AvailableUserPermissions.php', + 'Balping\\JsonRaw\\Encoder' => $vendorDir . '/balping/json-raw-encoder/src/Encoder.php', + 'Balping\\JsonRaw\\Raw' => $vendorDir . '/balping/json-raw-encoder/src/Raw.php', + 'Balping\\JsonRaw\\Replacer' => $vendorDir . '/balping/json-raw-encoder/src/Replacer.php', 'BeyondCode\\DumpServer\\DumpServerCommand' => $vendorDir . '/beyondcode/laravel-dump-server/src/DumpServerCommand.php', 'BeyondCode\\DumpServer\\DumpServerServiceProvider' => $vendorDir . '/beyondcode/laravel-dump-server/src/DumpServerServiceProvider.php', 'BeyondCode\\DumpServer\\Dumper' => $vendorDir . '/beyondcode/laravel-dump-server/src/Dumper.php', @@ -170,6 +176,34 @@ return array( 'Collective\\Html\\HtmlFacade' => $vendorDir . '/laravelcollective/html/src/HtmlFacade.php', 'Collective\\Html\\HtmlServiceProvider' => $vendorDir . '/laravelcollective/html/src/HtmlServiceProvider.php', 'ConfigTableSeeder' => $baseDir . '/database/seeds/ConfigTableSeeder.php', + 'ConsoleTVs\\Charts\\ChartsServiceProvider' => $vendorDir . '/consoletvs/charts/src/ChartsServiceProvider.php', + 'ConsoleTVs\\Charts\\Classes\\BaseChart' => $vendorDir . '/consoletvs/charts/src/Classes/BaseChart.php', + 'ConsoleTVs\\Charts\\Classes\\C3\\Chart' => $vendorDir . '/consoletvs/charts/src/Classes/C3/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\C3\\Dataset' => $vendorDir . '/consoletvs/charts/src/Classes/C3/Dataset.php', + 'ConsoleTVs\\Charts\\Classes\\Chartjs\\Chart' => $vendorDir . '/consoletvs/charts/src/Classes/Chartjs/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\Chartjs\\Dataset' => $vendorDir . '/consoletvs/charts/src/Classes/Chartjs/Dataset.php', + 'ConsoleTVs\\Charts\\Classes\\DatasetClass' => $vendorDir . '/consoletvs/charts/src/Classes/DatasetClass.php', + 'ConsoleTVs\\Charts\\Classes\\Echarts\\Chart' => $vendorDir . '/consoletvs/charts/src/Classes/Echarts/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\Echarts\\Dataset' => $vendorDir . '/consoletvs/charts/src/Classes/Echarts/Dataset.php', + 'ConsoleTVs\\Charts\\Classes\\Frappe\\Chart' => $vendorDir . '/consoletvs/charts/src/Classes/Frappe/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\Frappe\\Dataset' => $vendorDir . '/consoletvs/charts/src/Classes/Frappe/Dataset.php', + 'ConsoleTVs\\Charts\\Classes\\Fusioncharts\\Chart' => $vendorDir . '/consoletvs/charts/src/Classes/Fusioncharts/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\Fusioncharts\\Dataset' => $vendorDir . '/consoletvs/charts/src/Classes/Fusioncharts/Dataset.php', + 'ConsoleTVs\\Charts\\Classes\\Highcharts\\Chart' => $vendorDir . '/consoletvs/charts/src/Classes/Highcharts/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\Highcharts\\Dataset' => $vendorDir . '/consoletvs/charts/src/Classes/Highcharts/Dataset.php', + 'ConsoleTVs\\Charts\\Commands\\ChartsCommand' => $vendorDir . '/consoletvs/charts/src/Commands/ChartsCommand.php', + 'ConsoleTVs\\Charts\\Features\\C3\\Chart' => $vendorDir . '/consoletvs/charts/src/Features/C3/Chart.php', + 'ConsoleTVs\\Charts\\Features\\C3\\Dataset' => $vendorDir . '/consoletvs/charts/src/Features/C3/Dataset.php', + 'ConsoleTVs\\Charts\\Features\\Chartjs\\Chart' => $vendorDir . '/consoletvs/charts/src/Features/Chartjs/Chart.php', + 'ConsoleTVs\\Charts\\Features\\Chartjs\\Dataset' => $vendorDir . '/consoletvs/charts/src/Features/Chartjs/Dataset.php', + 'ConsoleTVs\\Charts\\Features\\Echarts\\Chart' => $vendorDir . '/consoletvs/charts/src/Features/Echarts/Chart.php', + 'ConsoleTVs\\Charts\\Features\\Echarts\\Dataset' => $vendorDir . '/consoletvs/charts/src/Features/Echarts/Dataset.php', + 'ConsoleTVs\\Charts\\Features\\Frappe\\Chart' => $vendorDir . '/consoletvs/charts/src/Features/Frappe/Chart.php', + 'ConsoleTVs\\Charts\\Features\\Frappe\\Dataset' => $vendorDir . '/consoletvs/charts/src/Features/Frappe/Dataset.php', + 'ConsoleTVs\\Charts\\Features\\Fusioncharts\\Chart' => $vendorDir . '/consoletvs/charts/src/Features/Fusioncharts/Chart.php', + 'ConsoleTVs\\Charts\\Features\\Fusioncharts\\Dataset' => $vendorDir . '/consoletvs/charts/src/Features/Fusioncharts/Dataset.php', + 'ConsoleTVs\\Charts\\Features\\Highcharts\\Chart' => $vendorDir . '/consoletvs/charts/src/Features/Highcharts/Chart.php', + 'ConsoleTVs\\Charts\\Features\\Highcharts\\Dataset' => $vendorDir . '/consoletvs/charts/src/Features/Highcharts/Dataset.php', 'Cron\\AbstractField' => $vendorDir . '/dragonmantank/cron-expression/src/Cron/AbstractField.php', 'Cron\\CronExpression' => $vendorDir . '/dragonmantank/cron-expression/src/Cron/CronExpression.php', 'Cron\\DayOfMonthField' => $vendorDir . '/dragonmantank/cron-expression/src/Cron/DayOfMonthField.php', diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index 7656c229b..9165ece69 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -67,9 +67,11 @@ return array( 'Doctrine\\Common\\Inflector\\' => array($vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector'), 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'), 'Cron\\' => array($vendorDir . '/dragonmantank/cron-expression/src/Cron'), + 'ConsoleTVs\\Charts\\' => array($vendorDir . '/consoletvs/charts/src'), 'Collective\\Html\\' => array($vendorDir . '/laravelcollective/html/src'), 'Cake\\Chronos\\' => array($vendorDir . '/cakephp/chronos/src'), 'BeyondCode\\DumpServer\\' => array($vendorDir . '/beyondcode/laravel-dump-server/src'), + 'Balping\\JsonRaw\\' => array($vendorDir . '/balping/json-raw-encoder/src'), 'App\\' => array($baseDir . '/app'), '' => array($vendorDir . '/nesbot/carbon/src'), ); diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 9375127d4..4c40eaea1 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -148,12 +148,14 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'C' => array ( 'Cron\\' => 5, + 'ConsoleTVs\\Charts\\' => 18, 'Collective\\Html\\' => 16, 'Cake\\Chronos\\' => 13, ), 'B' => array ( 'BeyondCode\\DumpServer\\' => 22, + 'Balping\\JsonRaw\\' => 16, ), 'A' => array ( @@ -408,6 +410,10 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 array ( 0 => __DIR__ . '/..' . '/dragonmantank/cron-expression/src/Cron', ), + 'ConsoleTVs\\Charts\\' => + array ( + 0 => __DIR__ . '/..' . '/consoletvs/charts/src', + ), 'Collective\\Html\\' => array ( 0 => __DIR__ . '/..' . '/laravelcollective/html/src', @@ -420,6 +426,10 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 array ( 0 => __DIR__ . '/..' . '/beyondcode/laravel-dump-server/src', ), + 'Balping\\JsonRaw\\' => + array ( + 0 => __DIR__ . '/..' . '/balping/json-raw-encoder/src', + ), 'App\\' => array ( 0 => __DIR__ . '/../..' . '/app', @@ -462,7 +472,7 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'App\\Console\\Commands\\CleanStaleDataCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Data/CleanStaleDataCommand.php', 'App\\Console\\Commands\\GetAssetsCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Assets/GetAssets.php', 'App\\Console\\Commands\\GetCorpsCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Corps/GetCorps.php', - 'App\\Console\\Commands\\GetEveContracts' => __DIR__ . '/../..' . '/app/Console/Commands/Logistics/GetEveContracts.php', + 'App\\Console\\Commands\\GetEveContractsCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Logistics/GetEveContracts.php', 'App\\Console\\Commands\\GetStructuresCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Structures/GetStructures.php', 'App\\Console\\Commands\\HoldingFinancesCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Finances/HoldingFinances.php', 'App\\Console\\Commands\\MoonMailerCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Moons/MoonMailer.php', @@ -478,6 +488,7 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'App\\Http\\Controllers\\Controller' => __DIR__ . '/../..' . '/app/Http/Controllers/Controller.php', 'App\\Http\\Controllers\\Dashboard\\AdminController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/AdminController.php', 'App\\Http\\Controllers\\Dashboard\\DashboardController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/DashboardController.php', + 'App\\Http\\Controllers\\Fuel\\FuelController' => __DIR__ . '/../..' . '/app/Http/Controllers/Logistics/FuelController.php', 'App\\Http\\Controllers\\Logistics\\LogisticsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Logistics/LogisticsController.php', 'App\\Http\\Controllers\\Moons\\MoonsAdminController' => __DIR__ . '/../..' . '/app/Http/Controllers/Moons/MoonsAdminController.php', 'App\\Http\\Controllers\\Moons\\MoonsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Moons/MoonsController.php', @@ -550,6 +561,8 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'App\\Models\\Jobs\\JobSendEveMail' => __DIR__ . '/../..' . '/app/Models/Jobs/JobSendEveMail.php', 'App\\Models\\Jobs\\JobStatus' => __DIR__ . '/../..' . '/app/Models/Jobs/JobStatus.php', 'App\\Models\\Logistics\\LogisticContract' => __DIR__ . '/../..' . '/app/Models/Logistics/LogisticContract.php', + 'App\\Models\\Logistics\\LogisticsInsuranceDeposit' => __DIR__ . '/../..' . '/app/Models/Logistics/LogisticsInsuranceDeposit.php', + 'App\\Models\\Logistics\\LogisticsInsurancePayout' => __DIR__ . '/../..' . '/app/Models/Logistics/LogisticsInsurancePayout.php', 'App\\Models\\Lookups\\CharacterToCorporation' => __DIR__ . '/../..' . '/app/Models/Lookups/CharacterToCorporation.php', 'App\\Models\\Lookups\\CorporationToAlliance' => __DIR__ . '/../..' . '/app/Models/Lookups/CorporationToAlliance.php', 'App\\Models\\Lookups\\SolarSystem' => __DIR__ . '/../..' . '/app/Models/Lookups/SolarSystem.php', @@ -585,6 +598,9 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'App\\SolarSystemDistance' => __DIR__ . '/../..' . '/app/Models/Logistics/SolarSystemDistance.php', 'App\\Traits\\EveOAuth' => __DIR__ . '/../..' . '/app/Traits/EveOAuth.php', 'AvailableUserPermissions' => __DIR__ . '/../..' . '/database/seeds/AvailableUserPermissions.php', + 'Balping\\JsonRaw\\Encoder' => __DIR__ . '/..' . '/balping/json-raw-encoder/src/Encoder.php', + 'Balping\\JsonRaw\\Raw' => __DIR__ . '/..' . '/balping/json-raw-encoder/src/Raw.php', + 'Balping\\JsonRaw\\Replacer' => __DIR__ . '/..' . '/balping/json-raw-encoder/src/Replacer.php', 'BeyondCode\\DumpServer\\DumpServerCommand' => __DIR__ . '/..' . '/beyondcode/laravel-dump-server/src/DumpServerCommand.php', 'BeyondCode\\DumpServer\\DumpServerServiceProvider' => __DIR__ . '/..' . '/beyondcode/laravel-dump-server/src/DumpServerServiceProvider.php', 'BeyondCode\\DumpServer\\Dumper' => __DIR__ . '/..' . '/beyondcode/laravel-dump-server/src/Dumper.php', @@ -623,6 +639,34 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'Collective\\Html\\HtmlFacade' => __DIR__ . '/..' . '/laravelcollective/html/src/HtmlFacade.php', 'Collective\\Html\\HtmlServiceProvider' => __DIR__ . '/..' . '/laravelcollective/html/src/HtmlServiceProvider.php', 'ConfigTableSeeder' => __DIR__ . '/../..' . '/database/seeds/ConfigTableSeeder.php', + 'ConsoleTVs\\Charts\\ChartsServiceProvider' => __DIR__ . '/..' . '/consoletvs/charts/src/ChartsServiceProvider.php', + 'ConsoleTVs\\Charts\\Classes\\BaseChart' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/BaseChart.php', + 'ConsoleTVs\\Charts\\Classes\\C3\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/C3/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\C3\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/C3/Dataset.php', + 'ConsoleTVs\\Charts\\Classes\\Chartjs\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/Chartjs/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\Chartjs\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/Chartjs/Dataset.php', + 'ConsoleTVs\\Charts\\Classes\\DatasetClass' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/DatasetClass.php', + 'ConsoleTVs\\Charts\\Classes\\Echarts\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/Echarts/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\Echarts\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/Echarts/Dataset.php', + 'ConsoleTVs\\Charts\\Classes\\Frappe\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/Frappe/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\Frappe\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/Frappe/Dataset.php', + 'ConsoleTVs\\Charts\\Classes\\Fusioncharts\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/Fusioncharts/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\Fusioncharts\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/Fusioncharts/Dataset.php', + 'ConsoleTVs\\Charts\\Classes\\Highcharts\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/Highcharts/Chart.php', + 'ConsoleTVs\\Charts\\Classes\\Highcharts\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Classes/Highcharts/Dataset.php', + 'ConsoleTVs\\Charts\\Commands\\ChartsCommand' => __DIR__ . '/..' . '/consoletvs/charts/src/Commands/ChartsCommand.php', + 'ConsoleTVs\\Charts\\Features\\C3\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/C3/Chart.php', + 'ConsoleTVs\\Charts\\Features\\C3\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/C3/Dataset.php', + 'ConsoleTVs\\Charts\\Features\\Chartjs\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/Chartjs/Chart.php', + 'ConsoleTVs\\Charts\\Features\\Chartjs\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/Chartjs/Dataset.php', + 'ConsoleTVs\\Charts\\Features\\Echarts\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/Echarts/Chart.php', + 'ConsoleTVs\\Charts\\Features\\Echarts\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/Echarts/Dataset.php', + 'ConsoleTVs\\Charts\\Features\\Frappe\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/Frappe/Chart.php', + 'ConsoleTVs\\Charts\\Features\\Frappe\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/Frappe/Dataset.php', + 'ConsoleTVs\\Charts\\Features\\Fusioncharts\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/Fusioncharts/Chart.php', + 'ConsoleTVs\\Charts\\Features\\Fusioncharts\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/Fusioncharts/Dataset.php', + 'ConsoleTVs\\Charts\\Features\\Highcharts\\Chart' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/Highcharts/Chart.php', + 'ConsoleTVs\\Charts\\Features\\Highcharts\\Dataset' => __DIR__ . '/..' . '/consoletvs/charts/src/Features/Highcharts/Dataset.php', 'Cron\\AbstractField' => __DIR__ . '/..' . '/dragonmantank/cron-expression/src/Cron/AbstractField.php', 'Cron\\CronExpression' => __DIR__ . '/..' . '/dragonmantank/cron-expression/src/Cron/CronExpression.php', 'Cron\\DayOfMonthField' => __DIR__ . '/..' . '/dragonmantank/cron-expression/src/Cron/DayOfMonthField.php', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index b8067f3a9..b36c1f1a9 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -1,4 +1,49 @@ [ + { + "name": "balping/json-raw-encoder", + "version": "v1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/balping/json-raw-encoder.git", + "reference": "c404b7fc0e04ddf5d298e53105c5fc306f523195" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/balping/json-raw-encoder/zipball/c404b7fc0e04ddf5d298e53105c5fc306f523195", + "reference": "c404b7fc0e04ddf5d298e53105c5fc306f523195", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "time": "2018-05-04T15:38:02+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Balping\\JsonRaw\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0-only" + ], + "authors": [ + { + "name": "Balázs Dura-Kovács" + } + ], + "description": "Encode arrays to json with raw JS objects (eg. callbacks) in them", + "keywords": [ + "callback", + "encode", + "json" + ] + }, { "name": "beyondcode/laravel-dump-server", "version": "1.2.2", @@ -121,6 +166,54 @@ "time" ] }, + { + "name": "consoletvs/charts", + "version": "6.5.0", + "version_normalized": "6.5.0.0", + "source": { + "type": "git", + "url": "https://github.com/ConsoleTVs/Charts.git", + "reference": "63e8c604e65df77e8844527906ee80b53695e219" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ConsoleTVs/Charts/zipball/63e8c604e65df77e8844527906ee80b53695e219", + "reference": "63e8c604e65df77e8844527906ee80b53695e219", + "shasum": "" + }, + "require": { + "balping/json-raw-encoder": "^1.0", + "illuminate/console": "5.*", + "illuminate/support": "5.*", + "php": ">=7.0" + }, + "time": "2019-04-21T13:30:11+00:00", + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ConsoleTVs\\Charts\\ChartsServiceProvider" + ] + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "ConsoleTVs\\Charts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Èrik Campobadal Forés", + "email": "soc@erik.cat" + } + ], + "description": "The laravel charting package" + }, { "name": "dnoegel/php-xdg-base-dir", "version": "0.1", diff --git a/vendor/consoletvs/charts/.gitattributes b/vendor/consoletvs/charts/.gitattributes new file mode 100644 index 000000000..dfe077042 --- /dev/null +++ b/vendor/consoletvs/charts/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/vendor/consoletvs/charts/.gitignore b/vendor/consoletvs/charts/.gitignore new file mode 100644 index 000000000..e43b0f988 --- /dev/null +++ b/vendor/consoletvs/charts/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/vendor/consoletvs/charts/LICENSE b/vendor/consoletvs/charts/LICENSE new file mode 100644 index 000000000..fd38634d0 --- /dev/null +++ b/vendor/consoletvs/charts/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) Èrik Campobadal Forés + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/consoletvs/charts/README.md b/vendor/consoletvs/charts/README.md new file mode 100644 index 000000000..64c4296e1 --- /dev/null +++ b/vendor/consoletvs/charts/README.md @@ -0,0 +1,28 @@ +

+

+StyleCI Status + +Build For Laravel +Total Downloads +Latest Stable Version +License +

+ +## What is charts? + +Charts is a PHP (Laravel) library to handle all the charts in your application. It supports multiple +charting libraries and they allow to be loaded over AJAX with a nice loading animation. + +It uses a simple API to create all the JS logic for you. You just need to write a few PHP lines :) + +## Documentation + +The documentation for the latest version of charts can be found here by pressing the image below. + +

+ +## Example screenshot + +A sample screenshot of a chartjs chart created using Charts. + +

\ No newline at end of file diff --git a/vendor/consoletvs/charts/composer.json b/vendor/consoletvs/charts/composer.json new file mode 100644 index 000000000..ecbca9ca5 --- /dev/null +++ b/vendor/consoletvs/charts/composer.json @@ -0,0 +1,31 @@ +{ + "name": "consoletvs/charts", + "description": "The laravel charting package", + "license": "MIT", + "type": "library", + "require": { + "php": ">=7.0", + "illuminate/support": "5.*", + "illuminate/console": "5.*", + "balping/json-raw-encoder": "^1.0" + }, + "authors": [ + { + "name": "Èrik Campobadal Forés ", + "email": "soc@erik.cat" + } + ], + "autoload": { + "psr-4": { + "ConsoleTVs\\Charts\\": "src/" + } + }, + "extra": { + "laravel": { + "providers": [ + "ConsoleTVs\\Charts\\ChartsServiceProvider" + ] + } + }, + "minimum-stability": "dev" +} \ No newline at end of file diff --git a/vendor/consoletvs/charts/src/ChartsServiceProvider.php b/vendor/consoletvs/charts/src/ChartsServiceProvider.php new file mode 100644 index 000000000..789097190 --- /dev/null +++ b/vendor/consoletvs/charts/src/ChartsServiceProvider.php @@ -0,0 +1,46 @@ +publishes([ + __DIR__.'/Config/charts.php' => config_path('charts.php'), + ], 'charts_config'); + + $this->loadViewsFrom(__DIR__.'/Views', 'charts'); + + $this->publishes([ + __DIR__.'/Views' => resource_path('views/vendor/charts'), + ]); + + if ($this->app->runningInConsole()) { + $this->commands([ + \ConsoleTVs\Charts\Commands\ChartsCommand::class, + ]); + } + } + + /** + * Register the application services. + * + * @return void + */ + public function register() + { + $this->mergeConfigFrom( + __DIR__.'/Config/charts.php', + 'charts' + ); + } +} diff --git a/vendor/consoletvs/charts/src/Classes/BaseChart.php b/vendor/consoletvs/charts/src/Classes/BaseChart.php new file mode 100644 index 000000000..79c2b5113 --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/BaseChart.php @@ -0,0 +1,542 @@ + 'text/javascript', + ]; + + /** + * Stores the available chart letters to create the ID. + * + * @var string + */ + private $chartLetters = 'abcdefghijklmnopqrstuvwxyz'; + + /** + * Chart constructor. + */ + public function __construct() + { + $this->id = substr(str_shuffle(str_repeat($x = $this->chartLetters, ceil(25 / strlen($x)))), 1, 25); + } + + /** + * Adds a new dataset to the chart. + * + * @param string $name + * @param array|Collection $data + */ + public function dataset(string $name, string $type, $data) + { + if ($data instanceof Collection) { + $data = $data->toArray(); + } + + $dataset = new $this->dataset($name, $type, $data); + + array_push($this->datasets, $dataset); + + return $dataset; + } + + /** + * Set the chart labels. + * + * @param array|Collection $labels + * + * @return self + */ + public function labels($labels) + { + if ($labels instanceof Collection) { + $labels = $labels->toArray(); + } + + $this->labels = $labels; + + return $this; + } + + /** + * Set the chart options. + * + * @param array|Collection $options + * @param bool $overwrite + * + * @return self + */ + public function options($options, bool $overwrite = false) + { + if (!empty($options['plugins'])) { + $options['plugins'] = new Raw(trim(preg_replace('/\s\s+/', ' ', $options['plugins']))); + } + + if ($options instanceof Collection) { + $options = $options->toArray(); + } + if ($overwrite) { + $this->options = $options; + } else { + $this->options = array_replace_recursive($this->options, $options); + } + + return $this; + } + + /** + * Set the plugins options. + * + * @param array|Collection $options + * @param bool $overwrite + * + * @return self + */ + public function plugins($plugins, bool $overwrite = true) + { + if ($plugins instanceof Collection) { + $plugins = $plugins->toArray(); + } + if ($overwrite) { + $this->plugins = $plugins; + } else { + $this->plugins = array_replace_recursive($this->plugins, $plugins); + } + + return $this; + } + + /** + * Set the chart container. + * + * @param string $container + * + * @return self + */ + public function container(string $container = null) + { + if (!$container) { + return View::make($this->container, ['chart' => $this]); + } + + $this->container = $container; + + return $this; + } + + /** + * Set the chart script. + * + * @param string $script + * + * @return self + */ + public function script(string $script = null) + { + if (count($this->datasets) == 0 && !$this->api_url) { + throw new \Exception('No datasets provided, please provide at least one dataset to generate a chart'); + } + + if (!$script) { + return View::make($this->script, ['chart' => $this]); + } + + $this->script = $script; + + return $this; + } + + /** + * Set the chart type. + * + * @param string $type + * + * @return self + */ + public function type(string $type) + { + $this->type = $type; + + return $this; + } + + /** + * Set the chart height. + * + * @param int $height + * + * @return self + */ + public function height(int $height) + { + $this->height = $height; + + return $this; + } + + /** + * Set the chart width. + * + * @param int $width + * + * @return self + */ + public function width(int $width) + { + $this->width = $width; + + return $this; + } + + /** + * Formats the type to be a correct output. + * + * @return string + */ + public function formatType() + { + return $this->type ? $this->type : $this->datasets[0]->type; + } + + /** + * Formats the labels to be a correct output. + * + * @return string + */ + public function formatLabels() + { + return Encoder::encode($this->labels); + } + + /** + * Formats the chart options. + * + * @param bool $strict + * + * @return string + */ + public function formatOptions(bool $strict = false, bool $noBraces = false) + { + if (!$strict && count($this->options) === 0) { + return ''; + } + + $options = Encoder::encode($this->options); + + return $noBraces ? substr($options, 1, -1) : $options; + } + + /** + * Formats the plugins options. + * + * @param bool $strict + * + * @return string + */ + public function formatPlugins(bool $strict = false, bool $noBraces = false) + { + if (!$strict && count($this->plugins) === 0) { + return ''; + } + + $plugins = str_replace('"', '', Encoder::encode($this->plugins)); + + return $noBraces ? substr($plugins, 1, -1) : $plugins; + } + + /** + * Use this to pass values to json without any modification + * Useful for defining callbacks. + * + * @param string $value + * + * @return \Balping\JsonRaw\Raw + */ + public function rawObject(string $value) + { + return new Raw($value); + } + + /** + * Reset the chart options. + * + * @return self + */ + public function reset() + { + return $this->options([], true); + } + + /** + * Formats the datasets for the output. + * + * @return string + */ + public function formatDatasets() + { + // This little boy was commented because it's not compatible + // in laravel < 5.4 + // + // return Collection::make($this->datasets) + // ->each + // ->matchValues(count($this->labels)) + // ->map + // ->format($this->labels) + // ->toJson(); + + return Encoder::encode( + Collection::make($this->datasets) + ->each(function ($dataset) { + $dataset->matchValues(count($this->labels)); + }) + ->map(function ($dataset) { + return $dataset->format($this->labels); + }) + ->toArray() + ); + } + + /** + * Indicates that the chart information will be loaded over API. + * + * @param string $api_url + * + * @return self + */ + public function load(string $api_url) + { + $this->api_url = $api_url; + + return $this; + } + + /** + * Determines if the chart should show a loader. + * + * @param bool $loader + * + * @return self + */ + public function loader(bool $loader) + { + $this->loader = $loader; + + return $this; + } + + /** + * Determines the loader color. + * + * @param string $color + * + * @return self + */ + public function loaderColor(string $color) + { + $this->loaderColor = $color; + + return $this; + } + + /** + * Alias for the formatDatasets() method. + * + * @return string + */ + public function api() + { + return $this->formatDatasets(); + } + + /** + * Sets an HTML attribute the the script tag of the chart. + * + * @param string $key + * @param string $value + * + * @return self + */ + public function setScriptAttribute(string $key, string $value) + { + $this->scriptAttributes[$key] = $value; + + return $this; + } + + /** + * Returns the string formatting of the script attributes. + * + * @return string + */ + public function displayScriptAttributes(): string + { + $result = ''; + foreach ($this->scriptAttributes as $key => $value) { + echo " {$key}=\"{$value}\""; + } + + return $result; + } + + /** + * Formats the container options. + * + * @param string $type + * @param bool $maxIfNull + * + * @return string + */ + public function formatContainerOptions(string $type = 'css', bool $maxIfNull = false) + { + $options = ''; + $height = ($maxIfNull && !$this->height) ? '100%' : $this->height; + $width = ($maxIfNull && !$this->width) ? '100%' : $this->width; + + switch ($type) { + case 'css': + $options .= " style='"; + (!$height) ?: $options .= "height: {$height}px !important;"; + (!$width) ?: $options .= "width: {$width}px !important;"; + $options .= "' "; + break; + case 'js': + if ($height) { + if (is_int($height)) { + $options .= "height: {$height}, "; + } else { + $options .= "height: '{$height}', "; + } + } + if ($width) { + if (is_int($width)) { + $options .= "width: {$width}, "; + } else { + $options .= "width: '{$width}', "; + } + } + break; + default: + (!$height) ?: $options .= " height='{$this->height}' "; + (!$this->width) ?: $options .= " width='{$this->width}' "; + } + + return $options; + } +} diff --git a/vendor/consoletvs/charts/src/Classes/C3/Chart.php b/vendor/consoletvs/charts/src/Classes/C3/Chart.php new file mode 100644 index 000000000..9322cbaf1 --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/C3/Chart.php @@ -0,0 +1,59 @@ +container = 'charts::c3.container'; + $this->script = 'charts::c3.script'; + + return $this; + } + + /** + * Formats the datasets. + * + * @return void + */ + public function formatDatasets() + { + $datasets = Collection::make($this->datasets); + + return json_encode([ + 'columns' => Collection::make($this->datasets) + ->each(function ($dataset) { + $dataset->matchValues(count($this->labels)); + }) + ->map(function ($dataset) { + return $dataset->format($this->labels); + }) + ->toArray(), + 'type' => $datasets->first()->type, + 'types' => $datasets->mapWithKeys(function ($d) { + return [$d->name => $d->type]; + })->toArray(), + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Classes/C3/Dataset.php b/vendor/consoletvs/charts/src/Classes/C3/Dataset.php new file mode 100644 index 000000000..9be254be2 --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/C3/Dataset.php @@ -0,0 +1,33 @@ +name], $this->values); + } +} diff --git a/vendor/consoletvs/charts/src/Classes/Chartjs/Chart.php b/vendor/consoletvs/charts/src/Classes/Chartjs/Chart.php new file mode 100644 index 000000000..6dfe2036e --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/Chartjs/Chart.php @@ -0,0 +1,45 @@ +container = 'charts::chartjs.container'; + $this->script = 'charts::chartjs.script'; + + return $this->options([ + 'maintainAspectRatio' => false, + 'scales' => [ + 'xAxes' => [], + 'yAxes' => [ + [ + 'ticks' => [ + 'beginAtZero' => true, + ], + ], + ], + ], + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Classes/Chartjs/Dataset.php b/vendor/consoletvs/charts/src/Classes/Chartjs/Dataset.php new file mode 100644 index 000000000..19c052f1a --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/Chartjs/Dataset.php @@ -0,0 +1,41 @@ +options([ + 'borderWidth' => 2, + ]); + } + + /** + * Formats the dataset for chartjs. + * + * @return array + */ + public function format() + { + return array_merge($this->options, [ + 'data' => $this->values, + 'label' => $this->name, + 'type' => $this->type, + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Classes/DatasetClass.php b/vendor/consoletvs/charts/src/Classes/DatasetClass.php new file mode 100644 index 000000000..09b6addd5 --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/DatasetClass.php @@ -0,0 +1,129 @@ +name = $name; + $this->type = $type; + $this->values = $values; + + return $this; + } + + /** + * Set the dataset type. + * + * @param string $type + * + * @return self + */ + public function type(string $type) + { + $this->type = $type; + + return $this; + } + + /** + * Set the dataset values. + * + * @param array|Collection $values + * + * @return self + */ + public function values($values) + { + if ($values instanceof Collection) { + $values = $values->toArray(); + } + + $this->values = $values; + + return $this; + } + + /** + * Set the dataset options. + * + * @param array|Collection $options + * @param bool $overwrite + * + * @return self + */ + public function options($options, bool $overwrite = false) + { + if ($overwrite) { + $this->options = $options; + } else { + $this->options = array_replace_recursive($this->options, $options); + } + + return $this; + } + + /** + * Matches the values of the dataset with the given number. + * + * @param int $values + * @param bool $strict + * + * @return void + */ + public function matchValues(int $values, bool $strict = false) + { + while (count($this->values) < $values) { + array_push($this->values, 0); + } + + if ($strict) { + $this->values = array_slice($this->values, 0, $values); + } + } +} diff --git a/vendor/consoletvs/charts/src/Classes/Echarts/Chart.php b/vendor/consoletvs/charts/src/Classes/Echarts/Chart.php new file mode 100644 index 000000000..b8d086702 --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/Echarts/Chart.php @@ -0,0 +1,69 @@ +container = 'charts::echarts.container'; + $this->script = 'charts::echarts.script'; + + return $this->options([ + 'legend' => [ + 'show' => true, + ], + 'tooltip' => [ + 'show' => true, + ], + 'xAxis' => [ + 'show' => true, + ], + 'yAxis' => [ + 'show' => true, + ], + ]); + } + + /** + * Formats the options. + * + * @return self + */ + public function formatOptions(bool $strict = false, bool $noBraces = false) + { + $this->options([ + 'xAxis' => [ + 'data' => json_decode($this->formatLabels()), + ], + ]); + + return parent::formatOptions($strict, $noBraces); + } +} diff --git a/vendor/consoletvs/charts/src/Classes/Echarts/Dataset.php b/vendor/consoletvs/charts/src/Classes/Echarts/Dataset.php new file mode 100644 index 000000000..fc5bfd5f8 --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/Echarts/Dataset.php @@ -0,0 +1,67 @@ +options, [ + 'data' => $this->getValues($labels), + 'name' => $this->name, + 'type' => strtolower($this->type), + ]); + } + + /** + * Get the formated values. + * + * @param array $labels + * + * @return array + */ + protected function getValues(array $labels) + { + if (in_array(strtolower($this->type), $this->specialDatasets)) { + return Collection::make($this->values) + ->map(function ($value, $key) use ($labels) { + return [ + 'name' => $labels[$key], + 'value' => $value, + ]; + })->toArray(); + } + + return $this->values; + } +} diff --git a/vendor/consoletvs/charts/src/Classes/Frappe/Chart.php b/vendor/consoletvs/charts/src/Classes/Frappe/Chart.php new file mode 100644 index 000000000..dcfe1f6b8 --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/Frappe/Chart.php @@ -0,0 +1,85 @@ +container = 'charts::frappe.container'; + $this->script = 'charts::frappe.script'; + + return $this->options([ + 'barOptions' => [ + 'spaceRatio' => 0.75, + ], + ]); + } + + /** + * Format the datasets. + * + * @param bool $strict + * @param bool $noBraces + * + * @return self + */ + public function formatOptions(bool $strict = false, bool $noBraces = false) + { + $colors = []; + $default = 0; + foreach ($this->datasets as $dataset) { + $color = $this->default_colors[$default]; + if (array_key_exists('color', $dataset->options)) { + $color = $dataset->options['color']; + unset($dataset->options['color']); + } else { + $default++; + } + array_push($colors, $color); + } + + $this->options([ + 'colors' => $colors, + ]); + + return parent::formatOptions($strict, $noBraces); + } +} diff --git a/vendor/consoletvs/charts/src/Classes/Frappe/Dataset.php b/vendor/consoletvs/charts/src/Classes/Frappe/Dataset.php new file mode 100644 index 000000000..dc05a85e4 --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/Frappe/Dataset.php @@ -0,0 +1,39 @@ +options([]); + } + + /** + * Formats the dataset for chartjs. + * + * @return array + */ + public function format() + { + return array_merge($this->options, [ + 'values' => $this->values, + 'name' => $this->name, + 'chartType' => $this->type, + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Classes/Fusioncharts/Chart.php b/vendor/consoletvs/charts/src/Classes/Fusioncharts/Chart.php new file mode 100644 index 000000000..f88c861a8 --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/Fusioncharts/Chart.php @@ -0,0 +1,82 @@ +container = 'charts::fusioncharts.container'; + $this->script = 'charts::fusioncharts.script'; + + return $this->options([ + 'bgColor' => '#ffffff', + 'borderAlpha' => 0, + 'canvasBorderAlpha' => 0, + 'usePlotGradientColor' => false, + 'plotBorderAlpha' => 0, + 'divlineColor' => '#22292F', + 'divLineIsDashed' => true, + 'showAlternateHGridColor' => false, + 'captionFontBold' => true, + 'captionFontSize' => 14, + 'subcaptionFontBold' => false, + 'subcaptionFontSize' => 14, + 'legendBorderAlpha' => 0, + 'legendShadow' => 0, + 'hoverfillcolor' => '#CCCCCC', + 'piebordercolor' => '#FFFFFF', + 'hoverfillcolor' => '#CCCCCC', + 'use3DLighting' => false, + 'showShadow' => false, + ]); + } + + /** + * Formats the labels for fusioncharts. + * + * @return string + */ + public function formatLabels() + { + return Collection::make($this->labels) + ->map(function ($label) { + return ['label' => $label]; + }) + ->toJson(); + } +} diff --git a/vendor/consoletvs/charts/src/Classes/Fusioncharts/Dataset.php b/vendor/consoletvs/charts/src/Classes/Fusioncharts/Dataset.php new file mode 100644 index 000000000..e52cdc4bf --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/Fusioncharts/Dataset.php @@ -0,0 +1,98 @@ +options, [ + 'data' => $this->formatValues($labels), + 'seriesName' => $this->name, + 'renderAs' => strtolower($this->type), + ]); + } + + /** + * Formats the chart values. + * + * @param array $labels + * + * @return array + */ + protected function formatValues(array $labels) + { + $values = Collection::make($this->values); + + if (in_array(strtolower($this->type), $this->specialDatasets)) { + $colors = $this->getColors($labels); + + return $values->map(function ($value, $key) use ($colors, $labels) { + $val = [ + 'label' => $labels[$key], + 'value' => $value, + ]; + + if ($colors->count() > 0) { + $val['color'] = $colors->get($key); + } + + return $val; + })->toArray(); + } + + return $values->map(function ($value) { + return [ + 'value' => $value, + ]; + })->toArray(); + } + + /** + * Get the chart colors. + * + * @param array $labels + * + * @return Collection + */ + protected function getColors(array $labels) + { + $colors = Collection::make(array_key_exists('color', $this->options) ? $this->options['color'] : []); + + while ($colors->count() < count($labels)) { + $colors->push($this->undefinedColor); + } + + return $colors; + } +} diff --git a/vendor/consoletvs/charts/src/Classes/Highcharts/Chart.php b/vendor/consoletvs/charts/src/Classes/Highcharts/Chart.php new file mode 100644 index 000000000..bdf7139ea --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/Highcharts/Chart.php @@ -0,0 +1,56 @@ +container = 'charts::highcharts.container'; + $this->script = 'charts::highcharts.script'; + + return $this->options([ + 'credits' => [ + 'enabled' => false, + ], + 'title' => [ + 'text' => null, + ], + ]); + } + + /** + * Format the options for highcharts. + * + * @return string + */ + public function formatOptions(bool $strict = false, bool $noBraces = false) + { + $this->options([ + 'xAxis' => [ + 'categories' => json_decode($this->formatLabels()), + ], + ]); + + return parent::formatOptions($strict, $noBraces); + } +} diff --git a/vendor/consoletvs/charts/src/Classes/Highcharts/Dataset.php b/vendor/consoletvs/charts/src/Classes/Highcharts/Dataset.php new file mode 100644 index 000000000..05c8b4a1c --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/Highcharts/Dataset.php @@ -0,0 +1,93 @@ +options, [ + 'data' => $this->formatValues($labels), + 'name' => $this->name, + 'type' => strtolower($this->type), + ]); + } + + /** + * Formats the values. + * + * @param array $labels + * + * @return array + */ + protected function formatValues(array $labels) + { + if (in_array(strtolower($this->type), $this->specialDatasets)) { + $colors = $this->getColors($labels); + + return Collection::make($this->values) + ->map(function ($value, $key) use ($colors, $labels) { + $val = [ + 'name' => $labels[$key], + 'y' => $value, + ]; + + if ($colors->count() > 0) { + $val['color'] = $colors->get($key); + } + + return $val; + })->toArray(); + } + + return $this->values; + } + + /** + * Get the dataset colors;. + * + * @param array $labels + * + * @return Collection + */ + protected function getColors(array $labels) + { + $colors = Collection::make(array_key_exists('color', $this->options) ? $this->options['color'] : []); + + while ($colors->count() < count($labels)) { + $colors->push($this->undefinedColor); + } + + return $colors; + } +} diff --git a/vendor/consoletvs/charts/src/Classes/README.md b/vendor/consoletvs/charts/src/Classes/README.md new file mode 100644 index 000000000..386f23892 --- /dev/null +++ b/vendor/consoletvs/charts/src/Classes/README.md @@ -0,0 +1,3 @@ +# Charts Classes + +All the charts classes are located in this folder diff --git a/vendor/consoletvs/charts/src/Commands/ChartsCommand.php b/vendor/consoletvs/charts/src/Commands/ChartsCommand.php new file mode 100644 index 000000000..40bb9abbc --- /dev/null +++ b/vendor/consoletvs/charts/src/Commands/ChartsCommand.php @@ -0,0 +1,133 @@ +line('[Charts] Creating chart...'); + + $this->handleParentMethodCall(); + + $name = $this->qualifyClass($this->getNameInput()); + $path = $this->getPath($name); + + $this->info("[Charts] Chart created! - Location: {$path}"); + } + + /** + * Build the class with the given name. + * + * @param string $name + * + * @return string + */ + protected function buildClass($name) + { + $stub = parent::buildClass($name); + + return str_replace( + ['Library'], + [$this->argument('library') ? ucfirst($this->argument('library')) : ucfirst(config('charts.default_library'))], + $stub + ); + } + + /** + * Get the default namespace for the class. + * + * @param string $rootNamespace + * + * @return string + */ + protected function getDefaultNamespace($rootNamespace) + { + return $rootNamespace.'\Charts'; + } + + /** + * Get the console command arguments. + * + * @return array + */ + protected function getArguments() + { + return [ + ['name', InputArgument::REQUIRED, 'The name of the chart file'], + + ['library', InputArgument::OPTIONAL, 'Library of the chart'], + ]; + } + + /** + * Calls the right parent method depending on laravel version. + * Adds support for Laravel v5.4. + * + * @return void + */ + protected function handleParentMethodCall() + { + if (!is_callable('parent::handle')) { + return parent::fire(); + } + + parent::handle(); + } + + /** + * Qualifies the class name by delegating to the right parent method. + * + * @param string $name + * + * @return string + */ + protected function qualifyClass($name) + { + if (!is_callable('parent::qualifyClass')) { + return parent::parseName($name); + } + + return parent::qualifyClass($name); + } +} diff --git a/vendor/consoletvs/charts/src/Commands/README.md b/vendor/consoletvs/charts/src/Commands/README.md new file mode 100644 index 000000000..aab671a28 --- /dev/null +++ b/vendor/consoletvs/charts/src/Commands/README.md @@ -0,0 +1,3 @@ +# Charts Commands + +All the charts commands are located in this folder diff --git a/vendor/consoletvs/charts/src/Commands/stubs/chart.stub b/vendor/consoletvs/charts/src/Commands/stubs/chart.stub new file mode 100644 index 000000000..ecca269a2 --- /dev/null +++ b/vendor/consoletvs/charts/src/Commands/stubs/chart.stub @@ -0,0 +1,18 @@ + 'Chartjs', +]; diff --git a/vendor/consoletvs/charts/src/Features/C3/Chart.php b/vendor/consoletvs/charts/src/Features/C3/Chart.php new file mode 100644 index 000000000..29b88ab8e --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/C3/Chart.php @@ -0,0 +1,59 @@ +options([ + 'legend' => [ + 'show' => $display, + ], + ]); + } + + /** + * Determines if the chart grid will be shown. + * + * @param bool $display + * + * @return self + */ + public function grid(bool $display) + { + return $this->options([ + 'grid' => [ + 'x' => [ + 'show' => $display, + ], + 'y' => [ + 'show' => $display, + ], + ], + ]); + } + + /** + * Determines if the chart tooltip will be shown. + * + * @param bool $display + * + * @return self + */ + public function tooltip(bool $display) + { + return $this->options([ + 'tooltip' => [ + 'show' => $display, + ], + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Features/C3/Dataset.php b/vendor/consoletvs/charts/src/Features/C3/Dataset.php new file mode 100644 index 000000000..ba5efae1f --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/C3/Dataset.php @@ -0,0 +1,8 @@ +displayLegend(!$display); + + return $this->displayAxes(!$display); + } + + /** + * Display the chart legend. + * + * @param bool $legend + * + * @return self + */ + public function displayLegend(bool $legend) + { + return $this->options([ + 'legend' => [ + 'display' => $legend, + ], + ]); + } + + /** + * Display the chart axis. + * + * @param bool $axes + * + * @return self + */ + public function displayAxes(bool $axes, bool $strict = false) + { + if ($strict) { + return $this->options([ + 'scale' => [ + 'display' => $axes, + ], + ]); + } + + return $this->options([ + 'scales' => [ + 'xAxes' => [ + [ + 'display' => $axes, + ], + ], + 'yAxes' => [ + [ + 'display' => $axes, + ], + ], + ], + ]); + } + + /** + * Set the bar width of the X Axis. + * + * @param float $width + * + * @return self + */ + public function barWidth(float $width) + { + return $this->options([ + 'scales' => [ + 'xAxes' => [ + [ + 'barPercentage' => $width, + ], + ], + ], + ]); + } + + /** + * Set the chart title. + * + * @param string $title + * @param int $font_size + * @param string $color + * @param string $font_weight + * @param string $font_family + * + * @return self + */ + public function title( + string $title, + int $font_size = 14, + string $color = '#666', + string $font_weight = 'bold', + string $font_family = "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif" + ) { + return $this->options([ + 'title' => [ + 'display' => true, + 'fontFamily' => $font_family, + 'fontSize' => $font_size, + 'fontColor' => $color, + 'fontStyle' => $font_weight, + 'text' => $title, + ], + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Features/Chartjs/Dataset.php b/vendor/consoletvs/charts/src/Features/Chartjs/Dataset.php new file mode 100644 index 000000000..5ef569bed --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/Chartjs/Dataset.php @@ -0,0 +1,86 @@ +toArray(); + } + + return $this->options([ + 'borderColor' => $color, + ]); + } + + /** + * Set the dataset background color. + * + * @param string|array|Collection $color + * + * @return self + */ + public function backgroundColor($color) + { + if ($color instanceof Collection) { + $color = $color->toArray(); + } + + return $this->options([ + 'backgroundColor' => $color, + ]); + } + + /** + * Determines if the dataset is filled. + * + * @param bool $filled + * + * @return self + */ + public function fill(bool $filled) + { + return $this->options([ + 'fill' => $filled, + ]); + } + + /** + * Set the chart line tension. + * + * @param int $tension + * + * @return self + */ + public function lineTension(float $tension) + { + return $this->options([ + 'lineTension' => $tension, + ]); + } + + /** + * Set the line to a dashed line in the chart options. + * + * @param array $dashed + * + * @return self + */ + public function dashed(array $dashed = [5]) + { + return $this->options([ + 'borderDash' => $dashed, + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Features/Echarts/Chart.php b/vendor/consoletvs/charts/src/Features/Echarts/Chart.php new file mode 100644 index 000000000..bcdc13630 --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/Echarts/Chart.php @@ -0,0 +1,183 @@ +options([ + 'legend' => [ + 'show' => $legend, + ], + ]); + } + + /** + * Show or hide the tooltip. + * + * @param bool $tooltip + * + * @return self + */ + public function tooltip(bool $tooltip) + { + return $this->options([ + 'tooltip' => [ + 'show' => $tooltip, + ], + ]); + } + + /** + * Set the chart label. + * + * @param string $label + * + * @return self + */ + public function label(string $label) + { + return $this->options([ + 'yAxis' => [ + 'name' => $label, + 'nameLocation' => 'middle', + ], + ]); + } + + /** + * Show the minimalistic. + * + * @param bool $minimalist + * + * @return self + */ + public function minimalist(bool $minimalist = true) + { + $this->displayAxes(!$minimalist); + $this->displayLegend(!$minimalist); + + return $this->options([ + 'xAxis' => [ + 'axisLabel' => [ + 'show' => !$minimalist, + ], + 'splitLine' => [ + 'show' => !$minimalist, + ], + ], + 'yAxis' => [ + 'axisLabel' => [ + 'show' => !$minimalist, + ], + 'splitLine' => [ + 'show' => !$minimalist, + ], + ], + ]); + } + + /** + * Display the chart axes. + * + * @param bool $display + * + * @return self + */ + public function displayAxes(bool $display) + { + return $this->options([ + 'xAxis' => [ + 'show' => $display, + 'axisLine' => [ + 'show' => $display, + ], + 'axisTick' => [ + 'show' => $display, + ], + ], + 'yAxis' => [ + 'show' => $display, + 'axisLine' => [ + 'show' => $display, + ], + 'axisTick' => [ + 'show' => $display, + ], + ], + ]); + } + + /** + * ALlow to export the chart. + * + * @return self + */ + public function export(bool $export = true, string $title = ' ') + { + return $this->options([ + 'toolbox' => [ + 'show' => true, + 'feature' => [ + 'saveAsImage' => [ + 'title' => $title, + ], + ], + ], + ]); + } + + /** + * Set the chart title. + * + * @param string $title + * @param int $font_size + * @param string $color + * @param bool $bold + * @param string $font_family + * + * @return self + */ + public function title( + string $title, + int $font_size = 14, + string $color = '#666', + bool $bold = true, + string $font_family = "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif" + ) { + return $this->options([ + 'title' => [ + 'show' => true, + 'text' => $title, + 'textStyle' => [ + 'fontFamily' => $font_family, + 'fontSize' => $font_size, + 'color' => $color, + 'fontWeight' => $bold, + ], + ], + ]); + } + + /** + * Set the chart theme. + * + * @param string $theme + * + * @return self + */ + public function theme(string $theme) + { + $this->theme = $theme; + + return $this; + } +} diff --git a/vendor/consoletvs/charts/src/Features/Echarts/Dataset.php b/vendor/consoletvs/charts/src/Features/Echarts/Dataset.php new file mode 100644 index 000000000..2457b3a8b --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/Echarts/Dataset.php @@ -0,0 +1,26 @@ +toArray(); + } + + return $this->options([ + 'color' => $color, + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Features/Frappe/Chart.php b/vendor/consoletvs/charts/src/Features/Frappe/Chart.php new file mode 100644 index 000000000..f893735b3 --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/Frappe/Chart.php @@ -0,0 +1,128 @@ +options([ + 'title' => $title, + ]); + } + + /** + * Determines the spaceRatio of the bars. + * + * @param float $space + * + * @return self + */ + public function spaceRatio(float $space = 0.75) + { + return $this->options([ + 'barOptions' => [ + 'spaceRatio' => $space, + ], + ]); + } + + /** + * Determines if the bars are stacked. + * + * @param bool $stacked + * + * @return self + */ + public function stacked(bool $stacked) + { + return $this->options([ + 'barOptions' => [ + 'stacked' => $stacked, + ], + ]); + } + + /** + * Makes the chart interactive with arrow keys and highlights the current active data point. + * + * @param bool $stacked + * + * @return self + */ + public function isNavigable(bool $value) + { + return $this->options([ + 'isNavigable' => $value, + ]); + } + + /** + * To display data values over bars or dots in an axis graph. + * + * @param bool $stacked + * + * @return self + */ + public function valuesOverPoints(bool $value) + { + return $this->options([ + 'valuesOverPoints' => $value, + ]); + } + + /** + * Determines if the lines will show a dot. + * + * @param bool $value + * + * @return self + */ + public function hideDots(bool $value) + { + return $this->options([ + 'lineOptions' => [ + 'hideDots' => $value, + ], + ]); + } + + /** + * Determines if the line will be hidden. + * + * @param bool $value + * + * @return self + */ + public function hideLine(bool $value) + { + return $this->options([ + 'lineOptions' => [ + 'hideDots' => $value, + ], + ]); + } + + /** + * Determines if the line will be a heatline. + * + * @param bool $value + * + * @return self + */ + public function heatline(bool $value) + { + return $this->options([ + 'lineOptions' => [ + 'heatline' => $value, + ], + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Features/Frappe/Dataset.php b/vendor/consoletvs/charts/src/Features/Frappe/Dataset.php new file mode 100644 index 000000000..7543ef851 --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/Frappe/Dataset.php @@ -0,0 +1,20 @@ +options([ + 'color' => $color, + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Features/Fusioncharts/Chart.php b/vendor/consoletvs/charts/src/Features/Fusioncharts/Chart.php new file mode 100644 index 000000000..a90935550 --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/Fusioncharts/Chart.php @@ -0,0 +1,90 @@ +options([ + 'yAxisName' => $label, + ]); + } + + /** + * Set the chart title. + * + * @param string $title + * @param int $font_size + * @param string $color + * @param bool $bold + * @param string $font_family + * + * @return self + */ + public function title( + string $title, + int $font_size = 16, + string $color = '#3D4852', + bool $bold = true, + string $font_family = "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif" + ) { + return $this->options([ + 'caption' => $title, + 'captionFontSize' => $font_size, + 'captionFontColor' => $color, + 'captionFontBold' => $bold, + 'captionFont' => $font_family, + ]); + } + + /** + * Set the chart subtitle. + * + * @param string $subtitle + * @param int $font_size + * @param string $color + * @param bool $bold + * @param string $font_family + * + * @return self + */ + public function subtitle( + string $subtitle, + int $font_size = 12, + string $color = '#3D4852', + bool $bold = true, + string $font_family = "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif" + ) { + return $this->options([ + 'subCaption' => $subtitle, + 'subCaptionFontSize' => $font_size, + 'subCaptionFontColor' => $color, + 'subCaptionFontBold' => $bold, + 'subCaptionFont' => $font_family, + ]); + } + + /** + * Determines if the chart should show the export button. + * + * @param bool $export + * @param bool $client + * + * @return self + */ + public function export(bool $export, bool $client = true) + { + return $this->options([ + 'exportenabled' => $export, + 'exportatclient' => $client, + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Features/Fusioncharts/Dataset.php b/vendor/consoletvs/charts/src/Features/Fusioncharts/Dataset.php new file mode 100644 index 000000000..de1db4e9f --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/Fusioncharts/Dataset.php @@ -0,0 +1,26 @@ +toArray(); + } + + return $this->options([ + 'color' => $color, + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Features/Highcharts/Chart.php b/vendor/consoletvs/charts/src/Features/Highcharts/Chart.php new file mode 100644 index 000000000..78f7d5854 --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/Highcharts/Chart.php @@ -0,0 +1,123 @@ +options([ + 'xAxis' => [ + 'visible' => $axes, + ], + 'yAxis' => [ + 'visible' => $axes, + ], + ]); + } + + /** + * Display the legend. + * + * @param bool $legend + * + * @return self + */ + public function displayLegend(bool $legend) + { + return $this->options([ + 'legend' => [ + 'enabled' => $legend, + ], + ]); + } + + /** + * Rotates the labels of the xAxis. + * + * @param float $angle + * + * @return self + */ + public function labelsRotation(float $angle) + { + return $this->options([ + 'xAxis' => [ + 'labels' => [ + 'rotation' => $angle, + ], + ], + ]); + } + + /** + * Set the chart style to minimalist. + * + * @param bool $display + * + * @return self + */ + public function minimalist(bool $display = false) + { + $this->displayLegend(!$display); + + return $this->displayAxes(!$display); + } + + /** + * Set the highcharts yAxis label. + * + * @param string $label + * + * @return self + */ + public function label(string $label) + { + return $this->options([ + 'yAxis' => [ + 'title' => [ + 'text' => $label, + ], + ], + ]); + } + + /** + * Set the chart title. + * + * @param string $title + * + * @return self + */ + public function title(string $title) + { + return $this->options([ + 'title' => [ + 'text' => $title, + ], + ]); + } + + /** + * Shapes the pie chart into a doughnut. + * + * @return self + */ + public function doughnut(int $size = 50) + { + return $this->options([ + 'plotOptions' => [ + 'pie' => [ + 'innerSize' => "{$size}%", + ], + ], + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Features/Highcharts/Dataset.php b/vendor/consoletvs/charts/src/Features/Highcharts/Dataset.php new file mode 100644 index 000000000..24b646cc7 --- /dev/null +++ b/vendor/consoletvs/charts/src/Features/Highcharts/Dataset.php @@ -0,0 +1,26 @@ +toArray(); + } + + return $this->options([ + 'color' => $color, + ]); + } +} diff --git a/vendor/consoletvs/charts/src/Views/README.md b/vendor/consoletvs/charts/src/Views/README.md new file mode 100644 index 000000000..4d8fa7a59 --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/README.md @@ -0,0 +1,3 @@ +# Charts Views + +All the charts views are located in this folder diff --git a/vendor/consoletvs/charts/src/Views/c3/container.blade.php b/vendor/consoletvs/charts/src/Views/c3/container.blade.php new file mode 100644 index 000000000..9671a5568 --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/c3/container.blade.php @@ -0,0 +1,3 @@ +
formatContainerOptions('css') !!}> +
+@include('charts::loader') \ No newline at end of file diff --git a/vendor/consoletvs/charts/src/Views/c3/script.blade.php b/vendor/consoletvs/charts/src/Views/c3/script.blade.php new file mode 100644 index 000000000..96c6e7c71 --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/c3/script.blade.php @@ -0,0 +1,29 @@ + diff --git a/vendor/consoletvs/charts/src/Views/chartjs/container.blade.php b/vendor/consoletvs/charts/src/Views/chartjs/container.blade.php new file mode 100644 index 000000000..487734349 --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/chartjs/container.blade.php @@ -0,0 +1,2 @@ + +@include('charts::loader') \ No newline at end of file diff --git a/vendor/consoletvs/charts/src/Views/chartjs/script.blade.php b/vendor/consoletvs/charts/src/Views/chartjs/script.blade.php new file mode 100644 index 000000000..ff3556765 --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/chartjs/script.blade.php @@ -0,0 +1,41 @@ + +@foreach ($chart->plugins as $plugin) + @include($chart->pluginsViews[$plugin]); +@endforeach + + diff --git a/vendor/consoletvs/charts/src/Views/echarts/container.blade.php b/vendor/consoletvs/charts/src/Views/echarts/container.blade.php new file mode 100644 index 000000000..9671a5568 --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/echarts/container.blade.php @@ -0,0 +1,3 @@ +
formatContainerOptions('css') !!}> +
+@include('charts::loader') \ No newline at end of file diff --git a/vendor/consoletvs/charts/src/Views/echarts/script.blade.php b/vendor/consoletvs/charts/src/Views/echarts/script.blade.php new file mode 100644 index 000000000..a3b6cad0c --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/echarts/script.blade.php @@ -0,0 +1,29 @@ + diff --git a/vendor/consoletvs/charts/src/Views/frappe/container.blade.php b/vendor/consoletvs/charts/src/Views/frappe/container.blade.php new file mode 100644 index 000000000..ffd5a3d3b --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/frappe/container.blade.php @@ -0,0 +1,3 @@ +
+
+@include('charts::loader') \ No newline at end of file diff --git a/vendor/consoletvs/charts/src/Views/frappe/script.blade.php b/vendor/consoletvs/charts/src/Views/frappe/script.blade.php new file mode 100644 index 000000000..e305783c0 --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/frappe/script.blade.php @@ -0,0 +1,44 @@ + diff --git a/vendor/consoletvs/charts/src/Views/fusioncharts/container.blade.php b/vendor/consoletvs/charts/src/Views/fusioncharts/container.blade.php new file mode 100644 index 000000000..8974fbf6e --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/fusioncharts/container.blade.php @@ -0,0 +1,3 @@ +
formatContainerOptions('css') !!}> +
+@include('charts::loader') diff --git a/vendor/consoletvs/charts/src/Views/fusioncharts/script.blade.php b/vendor/consoletvs/charts/src/Views/fusioncharts/script.blade.php new file mode 100644 index 000000000..7eae46823 --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/fusioncharts/script.blade.php @@ -0,0 +1,48 @@ + diff --git a/vendor/consoletvs/charts/src/Views/highcharts/container.blade.php b/vendor/consoletvs/charts/src/Views/highcharts/container.blade.php new file mode 100644 index 000000000..8974fbf6e --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/highcharts/container.blade.php @@ -0,0 +1,3 @@ +
formatContainerOptions('css') !!}> +
+@include('charts::loader') diff --git a/vendor/consoletvs/charts/src/Views/highcharts/script.blade.php b/vendor/consoletvs/charts/src/Views/highcharts/script.blade.php new file mode 100644 index 000000000..e47f5bc01 --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/highcharts/script.blade.php @@ -0,0 +1,27 @@ + diff --git a/vendor/consoletvs/charts/src/Views/init.blade.php b/vendor/consoletvs/charts/src/Views/init.blade.php new file mode 100644 index 000000000..9720d9238 --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/init.blade.php @@ -0,0 +1,17 @@ +let {{ $chart->id }}_rendered = false; +@if ($chart->api_url) +let {{ $chart->id }}_api_url = "{!! $chart->api_url !!}"; +@endif +let {{ $chart->id }}_load = function () { + if (document.getElementById("{{ $chart->id }}") && !{{ $chart->id }}_rendered) { + @if ($chart->api_url) + fetch({{ $chart->id }}_api_url) + .then(data => data.json()) + .then(data => { {{ $chart->id }}_create(data) }); + @else + {{ $chart->id }}_create({!! $chart->formatDatasets() !!}) + @endif + } +}; +window.addEventListener("load", {{ $chart->id }}_load); +document.addEventListener("turbolinks:load", {{ $chart->id }}_load); diff --git a/vendor/consoletvs/charts/src/Views/loader.blade.php b/vendor/consoletvs/charts/src/Views/loader.blade.php new file mode 100644 index 000000000..56eb7c81d --- /dev/null +++ b/vendor/consoletvs/charts/src/Views/loader.blade.php @@ -0,0 +1,40 @@ +
+ + + + + + + + + + + + + + + + + + + +