├── .gitignore ├── tests ├── FunctionTest.php └── TestCase.php ├── src ├── Traits │ └── HasSubdomain.php ├── Facade │ └── Subdomains.php ├── Controller │ └── SubdomainController.php ├── Middleware │ └── HasSubdomain.php ├── ServiceProvider.php └── Subdomains.php ├── phpunit.xml ├── config └── subdomains.php ├── composer.json ├── README.md ├── LICENSE └── composer.lock /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | \.idea/ 3 | 4 | vendor/ 5 | -------------------------------------------------------------------------------- /tests/FunctionTest.php: -------------------------------------------------------------------------------- 1 | assertEquals('app',$parameter); 12 | } 13 | } -------------------------------------------------------------------------------- /src/Traits/HasSubdomain.php: -------------------------------------------------------------------------------- 1 | ) 18 | } 19 | } -------------------------------------------------------------------------------- /src/Facade/Subdomains.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 14 | tests 15 | 16 | 17 | 18 | 19 | src/ 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- 1 | app->singleton(Subdomains::class, function ($app) { 14 | $name = config('subdomains.subdomain'); 15 | $value = $app->make(Request::class)->route($name); 16 | return new Subdomains($name,$value); 17 | }); 18 | } 19 | 20 | public function boot() 21 | { 22 | $config_path = __DIR__ . "/../config/subdomains.php"; 23 | $this->publishes([$config_path => config_path('subdomains.php')]); 24 | } 25 | } -------------------------------------------------------------------------------- /config/subdomains.php: -------------------------------------------------------------------------------- 1 | 'app', 7 | 8 | /* 9 | * The model that owns subdomains 10 | */ 11 | 'model' => '\App\Company', 12 | 13 | /* 14 | * The column in the user 15 | */ 16 | 'column' => 'slug', 17 | 18 | 'middleware' => [ 19 | 20 | /* 21 | * The user model to perform authentication checking on 22 | */ 23 | 'user_model' => '\App\User', 24 | 25 | /* 26 | * The function/relationship that defines the link between the user model and the subdomain owner 27 | * Can return Collection/Array of Models or single model 28 | */ 29 | 'function' => 'companies', 30 | ] 31 | ]; -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | Subdomains::class, 28 | ]; 29 | } 30 | } -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kofoworola/laravel-subdomain", 3 | "type": "library", 4 | "license": "GPL-3.0-only", 5 | "authors": [ 6 | { 7 | "name": "Kofo Okesola", 8 | "email": "okesolakofo@gmail.com" 9 | } 10 | ], 11 | "require": { 12 | "php": "^7.1.3", 13 | "illuminate/routing": "5.5.x|5.6.x|5.7.x", 14 | "illuminate/session": "5.5.x|5.6.x|5.7.x", 15 | "illuminate/support": "5.5.x|5.6.x|5.7.x" 16 | }, 17 | "autoload": { 18 | "psr-4": { 19 | "kofoworola\\Subdomains\\": "src" 20 | } 21 | }, 22 | "autoload-dev": { 23 | "psr-4": { 24 | "kofoworola\\Subdomains\\Tests\\": "tests/" 25 | } 26 | }, 27 | "require-dev": { 28 | "orchestra/testbench": "^3.7", 29 | "phpunit/phpunit": "^7.4" 30 | }, 31 | "extra": { 32 | "laravel": { 33 | "providers": [ 34 | "kofoworola\\Subdomains\\ServiceProvider" 35 | ], 36 | "aliases": { 37 | "Subdomains": "kofoworola\\Subdomains\\Facade\\Subdomains" 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/Subdomains.php: -------------------------------------------------------------------------------- 1 | name = $name; 25 | $this->value = $value; 26 | } 27 | 28 | /** 29 | * Get name of parameter 30 | * @return \Illuminate\Config\Repository|mixed 31 | */ 32 | public function name(){ 33 | return $this->name; 34 | } 35 | 36 | /** 37 | * Set the value of the subdomain called 38 | * @param $value 39 | */ 40 | public function setValue($value){ 41 | $this->value = $value; 42 | } 43 | 44 | /** 45 | * Get value of subdomain being called 46 | * @return mixed 47 | */ 48 | public function value(){ 49 | return $this->value; 50 | } 51 | 52 | /** 53 | * Get owner model of current subdomain 54 | * @return mixed 55 | */ 56 | public function owner(){ 57 | if(!$this->owner){ 58 | $owner = config('subdomains.model'); 59 | $column = config('subdomains.column'); 60 | $this->owner = $owner::where($column,$this->value)->first(); 61 | } 62 | return $this->owner; 63 | } 64 | 65 | /** 66 | * Checks if the user owns the current model 67 | * @param null $user 68 | * @return bool 69 | */ 70 | public function ownsModel($user = null){ 71 | $user = $user ?? Auth::user(); 72 | $function = config('subdomains.middleware')['function']; 73 | $owner = $this->owner(); 74 | 75 | $models = $user->$function ?? $user->$function(); 76 | if($models instanceof Collection || is_array($models)){ 77 | $models = collect($models); 78 | $filtered = $models->filter(function ($value,$key) use ($owner){ 79 | return $value->getKey() == $owner->getKey(); 80 | }); 81 | if($filtered->count() < 1) 82 | return false; 83 | else 84 | return true; 85 | } 86 | elseif (!is_null($models)){ 87 | return $models->getKey() == $owner->getKey(); 88 | } 89 | return false; 90 | } 91 | 92 | public function route($route,$param = [],$model= null){ 93 | $model = $model ?? $this->owner(); 94 | if(is_null($model)) 95 | { 96 | abort("505","The model instance could not be found"); 97 | return; 98 | } 99 | 100 | $name = $this->name(); 101 | $column = config('subdomains.column'); 102 | $data[$name] = $model->$column; 103 | $data = array_merge($data, $param); 104 | return route($route,$data); 105 | } 106 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Associate models to dynamic subdomains in laravel 2 | 3 | Easily setup dynamic subdomains registered to models on your application 4 | e.g `company1.myapp.com` 5 | 6 | * [Intallation](#installation) 7 | * [Config](#config) 8 | * [Usage](#usage) 9 | * [Facade](#facade) 10 | * [Middleware](#middleware) 11 | 12 | ## Installation 13 | You can install this package via composer by 14 | 15 | ```composer require kofoworola/laravel-subdomain ``` 16 | 17 | *In Laravel 5.5 and below add this to your providers and aliases array 18 | ``` 19 | 'providers'=>[ 20 | //... 21 | kofoworola\Subdomains\ServiceProvider::class 22 | ] 23 | ``` 24 | 25 | ``` 26 | 'aliases' => [ 27 | //.. 28 | 'Subdomains': kofoworola\Subdomains\Facade\Subdomains::class 29 | ] 30 | ``` 31 | 32 | Then run `php artisan vendor:publish` to publish the configuration file 33 | 34 | ## Config 35 | The `config/subdomains.php` file: 36 | ```$xslt 37 | 'app', 43 | 44 | /* 45 | * The model that owns subdomains 46 | */ 47 | 'model' => '\App\Company', 48 | 49 | /* 50 | * The column in the user 51 | */ 52 | 'column' => 'slug', 53 | 54 | 'middleware' => [ 55 | 56 | /* 57 | * The user model to perform authentication checking on 58 | */ 59 | 'user_model' => '\App\User', 60 | 61 | /* 62 | * The function/relationship that defines the link between the user model and the subdomain owner 63 | * Can return Collection/Array of Models or single model 64 | */ 65 | 'function' => 'companies', 66 | ] 67 | ]; 68 | ``` 69 | Once you have published the package, you can then set the configuration to your application's setup 70 | 71 | ## Usage 72 | After setting up your routes to catch subdomains e.g 73 | ```$xslt 74 | Route::group(['domain' => '{app}.subdomains.app','middleware' => ['auth']],function (){ 75 | Route::get('/','SubController@index')->name('index'); 76 | Route::get('/{param}',SubController@param)->name('param') 77 | //Rest of routes 78 | }); 79 | ``` 80 | Make sure all controller assigned to subdomains extend the `\kofoworola\Subdomains\Controller\SubdomainController` class: 81 | ```$xslt 82 | use kofoworola\Subdomains\Controller\SubdomainController; 83 | 84 | class SubController extends SubdomainController 85 | { 86 | public function index(){ 87 | return 'hello'; 88 | } 89 | 90 | /* 91 | * No need to get the subdomain value via parameter for every method redundantly 92 | * You can get it through the subdomain facade when needed 93 | */ 94 | public function param($param){ 95 | return $param; 96 | } 97 | } 98 | 99 | ``` 100 | The parent controller automatically removes the subdomain parameter from list of paremeters 101 | so you don't have to add it to you parameter list everytime you want to get another parameter 102 | 103 | ## Facade 104 | Using the `kofoworola\Subdomains\Facade\Subdomains` facade you can access helper functions: 105 | 106 | ### Getting the name of the parameter 107 | Use `Subdomains::name()` to get the name of the subdomain parameter 108 | 109 | ### Getting the value of the subdomain 110 | Use `Subdomains::value()` to get the value of the subdomain parameter 111 | 112 | ### Getting the owner of the subdomain 113 | Use `Subdomains::owner()` to get the model instance that owns the current subdomain 114 | 115 | ### Checking if the user has access to the subdomain 116 | `Subdomains::ownsModel($user = null)` returns true or false depending on whether the user has access to the subdomain 117 | 118 | If no user is passed the current logged in user is used 119 | 120 | ### Getting a subdomain route 121 | ```$xslt 122 | //If model is passed the value of its subdomain will be used to generate route 123 | //If not the current owner will be used 124 | 125 | Subdomains::route('route.name',$params = [],$model = null); 126 | ``` 127 | Can be used to generate a subdomain link 128 | 129 | ## Middleware 130 | You can also add the `\kofoworola\Subdomains\Middleware\HasSubdomain` middleware to your routes. 131 | Firstly register it in your `Kernel`: 132 | ```$xslt 133 | protected $routeMiddleware = [ 134 | //Rest of middlewares 135 | 'subdomain' => \kofoworola\Subdomains\Middleware\HasSubdomain::class, 136 | ]; 137 | ``` 138 | Then add it to your routes: 139 | ```$xslt 140 | Route::group(['domain' => '{app}.subdomains.app','middleware' => ['auth','subdomains']],function (){ 141 | //Rest of routes 142 | }); 143 | ``` 144 | 145 | The middleware will take care of verifying if: 146 | * The subdomain exists 147 | * The current user has access to the subdomain 148 | 149 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "e5cbd5608d694f377adf892d27d4a4df", 8 | "packages": [ 9 | { 10 | "name": "doctrine/inflector", 11 | "version": "v1.3.0", 12 | "source": { 13 | "type": "git", 14 | "url": "https://github.com/doctrine/inflector.git", 15 | "reference": "5527a48b7313d15261292c149e55e26eae771b0a" 16 | }, 17 | "dist": { 18 | "type": "zip", 19 | "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a", 20 | "reference": "5527a48b7313d15261292c149e55e26eae771b0a", 21 | "shasum": "" 22 | }, 23 | "require": { 24 | "php": "^7.1" 25 | }, 26 | "require-dev": { 27 | "phpunit/phpunit": "^6.2" 28 | }, 29 | "type": "library", 30 | "extra": { 31 | "branch-alias": { 32 | "dev-master": "1.3.x-dev" 33 | } 34 | }, 35 | "autoload": { 36 | "psr-4": { 37 | "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" 38 | } 39 | }, 40 | "notification-url": "https://packagist.org/downloads/", 41 | "license": [ 42 | "MIT" 43 | ], 44 | "authors": [ 45 | { 46 | "name": "Roman Borschel", 47 | "email": "roman@code-factory.org" 48 | }, 49 | { 50 | "name": "Benjamin Eberlei", 51 | "email": "kontakt@beberlei.de" 52 | }, 53 | { 54 | "name": "Guilherme Blanco", 55 | "email": "guilhermeblanco@gmail.com" 56 | }, 57 | { 58 | "name": "Jonathan Wage", 59 | "email": "jonwage@gmail.com" 60 | }, 61 | { 62 | "name": "Johannes Schmitt", 63 | "email": "schmittjoh@gmail.com" 64 | } 65 | ], 66 | "description": "Common String Manipulations with regard to casing and singular/plural rules.", 67 | "homepage": "http://www.doctrine-project.org", 68 | "keywords": [ 69 | "inflection", 70 | "pluralize", 71 | "singularize", 72 | "string" 73 | ], 74 | "time": "2018-01-09T20:05:19+00:00" 75 | }, 76 | { 77 | "name": "doctrine/lexer", 78 | "version": "v1.0.1", 79 | "source": { 80 | "type": "git", 81 | "url": "https://github.com/doctrine/lexer.git", 82 | "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" 83 | }, 84 | "dist": { 85 | "type": "zip", 86 | "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", 87 | "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", 88 | "shasum": "" 89 | }, 90 | "require": { 91 | "php": ">=5.3.2" 92 | }, 93 | "type": "library", 94 | "extra": { 95 | "branch-alias": { 96 | "dev-master": "1.0.x-dev" 97 | } 98 | }, 99 | "autoload": { 100 | "psr-0": { 101 | "Doctrine\\Common\\Lexer\\": "lib/" 102 | } 103 | }, 104 | "notification-url": "https://packagist.org/downloads/", 105 | "license": [ 106 | "MIT" 107 | ], 108 | "authors": [ 109 | { 110 | "name": "Roman Borschel", 111 | "email": "roman@code-factory.org" 112 | }, 113 | { 114 | "name": "Guilherme Blanco", 115 | "email": "guilhermeblanco@gmail.com" 116 | }, 117 | { 118 | "name": "Johannes Schmitt", 119 | "email": "schmittjoh@gmail.com" 120 | } 121 | ], 122 | "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", 123 | "homepage": "http://www.doctrine-project.org", 124 | "keywords": [ 125 | "lexer", 126 | "parser" 127 | ], 128 | "time": "2014-09-09T13:34:57+00:00" 129 | }, 130 | { 131 | "name": "dragonmantank/cron-expression", 132 | "version": "v2.2.0", 133 | "source": { 134 | "type": "git", 135 | "url": "https://github.com/dragonmantank/cron-expression.git", 136 | "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5" 137 | }, 138 | "dist": { 139 | "type": "zip", 140 | "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/92a2c3768d50e21a1f26a53cb795ce72806266c5", 141 | "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5", 142 | "shasum": "" 143 | }, 144 | "require": { 145 | "php": ">=7.0.0" 146 | }, 147 | "require-dev": { 148 | "phpunit/phpunit": "~6.4" 149 | }, 150 | "type": "library", 151 | "autoload": { 152 | "psr-4": { 153 | "Cron\\": "src/Cron/" 154 | } 155 | }, 156 | "notification-url": "https://packagist.org/downloads/", 157 | "license": [ 158 | "MIT" 159 | ], 160 | "authors": [ 161 | { 162 | "name": "Michael Dowling", 163 | "email": "mtdowling@gmail.com", 164 | "homepage": "https://github.com/mtdowling" 165 | }, 166 | { 167 | "name": "Chris Tankersley", 168 | "email": "chris@ctankersley.com", 169 | "homepage": "https://github.com/dragonmantank" 170 | } 171 | ], 172 | "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", 173 | "keywords": [ 174 | "cron", 175 | "schedule" 176 | ], 177 | "time": "2018-06-06T03:12:17+00:00" 178 | }, 179 | { 180 | "name": "egulias/email-validator", 181 | "version": "2.1.6", 182 | "source": { 183 | "type": "git", 184 | "url": "https://github.com/egulias/EmailValidator.git", 185 | "reference": "0578b32b30b22de3e8664f797cf846fc9246f786" 186 | }, 187 | "dist": { 188 | "type": "zip", 189 | "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0578b32b30b22de3e8664f797cf846fc9246f786", 190 | "reference": "0578b32b30b22de3e8664f797cf846fc9246f786", 191 | "shasum": "" 192 | }, 193 | "require": { 194 | "doctrine/lexer": "^1.0.1", 195 | "php": ">= 5.5" 196 | }, 197 | "require-dev": { 198 | "dominicsayers/isemail": "dev-master", 199 | "phpunit/phpunit": "^4.8.35||^5.7||^6.0", 200 | "satooshi/php-coveralls": "^1.0.1" 201 | }, 202 | "suggest": { 203 | "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" 204 | }, 205 | "type": "library", 206 | "extra": { 207 | "branch-alias": { 208 | "dev-master": "2.0.x-dev" 209 | } 210 | }, 211 | "autoload": { 212 | "psr-4": { 213 | "Egulias\\EmailValidator\\": "EmailValidator" 214 | } 215 | }, 216 | "notification-url": "https://packagist.org/downloads/", 217 | "license": [ 218 | "MIT" 219 | ], 220 | "authors": [ 221 | { 222 | "name": "Eduardo Gulias Davis" 223 | } 224 | ], 225 | "description": "A library for validating emails against several RFCs", 226 | "homepage": "https://github.com/egulias/EmailValidator", 227 | "keywords": [ 228 | "email", 229 | "emailvalidation", 230 | "emailvalidator", 231 | "validation", 232 | "validator" 233 | ], 234 | "time": "2018-09-25T20:47:26+00:00" 235 | }, 236 | { 237 | "name": "erusev/parsedown", 238 | "version": "1.7.1", 239 | "source": { 240 | "type": "git", 241 | "url": "https://github.com/erusev/parsedown.git", 242 | "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1" 243 | }, 244 | "dist": { 245 | "type": "zip", 246 | "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1", 247 | "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1", 248 | "shasum": "" 249 | }, 250 | "require": { 251 | "ext-mbstring": "*", 252 | "php": ">=5.3.0" 253 | }, 254 | "require-dev": { 255 | "phpunit/phpunit": "^4.8.35" 256 | }, 257 | "type": "library", 258 | "autoload": { 259 | "psr-0": { 260 | "Parsedown": "" 261 | } 262 | }, 263 | "notification-url": "https://packagist.org/downloads/", 264 | "license": [ 265 | "MIT" 266 | ], 267 | "authors": [ 268 | { 269 | "name": "Emanuil Rusev", 270 | "email": "hello@erusev.com", 271 | "homepage": "http://erusev.com" 272 | } 273 | ], 274 | "description": "Parser for Markdown.", 275 | "homepage": "http://parsedown.org", 276 | "keywords": [ 277 | "markdown", 278 | "parser" 279 | ], 280 | "time": "2018-03-08T01:11:30+00:00" 281 | }, 282 | { 283 | "name": "laravel/framework", 284 | "version": "v5.7.9", 285 | "source": { 286 | "type": "git", 287 | "url": "https://github.com/laravel/framework.git", 288 | "reference": "172f69f86bb86e107fb9fafff293b4b01291cf05" 289 | }, 290 | "dist": { 291 | "type": "zip", 292 | "url": "https://api.github.com/repos/laravel/framework/zipball/172f69f86bb86e107fb9fafff293b4b01291cf05", 293 | "reference": "172f69f86bb86e107fb9fafff293b4b01291cf05", 294 | "shasum": "" 295 | }, 296 | "require": { 297 | "doctrine/inflector": "^1.1", 298 | "dragonmantank/cron-expression": "^2.0", 299 | "erusev/parsedown": "^1.7", 300 | "ext-mbstring": "*", 301 | "ext-openssl": "*", 302 | "league/flysystem": "^1.0.8", 303 | "monolog/monolog": "^1.12", 304 | "nesbot/carbon": "^1.26.3", 305 | "opis/closure": "^3.1", 306 | "php": "^7.1.3", 307 | "psr/container": "^1.0", 308 | "psr/simple-cache": "^1.0", 309 | "ramsey/uuid": "^3.7", 310 | "swiftmailer/swiftmailer": "^6.0", 311 | "symfony/console": "^4.1", 312 | "symfony/debug": "^4.1", 313 | "symfony/finder": "^4.1", 314 | "symfony/http-foundation": "^4.1", 315 | "symfony/http-kernel": "^4.1", 316 | "symfony/process": "^4.1", 317 | "symfony/routing": "^4.1", 318 | "symfony/var-dumper": "^4.1", 319 | "tijsverkoyen/css-to-inline-styles": "^2.2.1", 320 | "vlucas/phpdotenv": "^2.2" 321 | }, 322 | "conflict": { 323 | "tightenco/collect": "<5.5.33" 324 | }, 325 | "replace": { 326 | "illuminate/auth": "self.version", 327 | "illuminate/broadcasting": "self.version", 328 | "illuminate/bus": "self.version", 329 | "illuminate/cache": "self.version", 330 | "illuminate/config": "self.version", 331 | "illuminate/console": "self.version", 332 | "illuminate/container": "self.version", 333 | "illuminate/contracts": "self.version", 334 | "illuminate/cookie": "self.version", 335 | "illuminate/database": "self.version", 336 | "illuminate/encryption": "self.version", 337 | "illuminate/events": "self.version", 338 | "illuminate/filesystem": "self.version", 339 | "illuminate/hashing": "self.version", 340 | "illuminate/http": "self.version", 341 | "illuminate/log": "self.version", 342 | "illuminate/mail": "self.version", 343 | "illuminate/notifications": "self.version", 344 | "illuminate/pagination": "self.version", 345 | "illuminate/pipeline": "self.version", 346 | "illuminate/queue": "self.version", 347 | "illuminate/redis": "self.version", 348 | "illuminate/routing": "self.version", 349 | "illuminate/session": "self.version", 350 | "illuminate/support": "self.version", 351 | "illuminate/translation": "self.version", 352 | "illuminate/validation": "self.version", 353 | "illuminate/view": "self.version" 354 | }, 355 | "require-dev": { 356 | "aws/aws-sdk-php": "^3.0", 357 | "doctrine/dbal": "^2.6", 358 | "filp/whoops": "^2.1.4", 359 | "league/flysystem-cached-adapter": "^1.0", 360 | "mockery/mockery": "^1.0", 361 | "moontoast/math": "^1.1", 362 | "orchestra/testbench-core": "3.7.*", 363 | "pda/pheanstalk": "^3.0", 364 | "phpunit/phpunit": "^7.0", 365 | "predis/predis": "^1.1.1", 366 | "symfony/css-selector": "^4.1", 367 | "symfony/dom-crawler": "^4.1", 368 | "true/punycode": "^2.1" 369 | }, 370 | "suggest": { 371 | "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).", 372 | "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).", 373 | "ext-pcntl": "Required to use all features of the queue worker.", 374 | "ext-posix": "Required to use all features of the queue worker.", 375 | "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).", 376 | "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).", 377 | "laravel/tinker": "Required to use the tinker console command (^1.0).", 378 | "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).", 379 | "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).", 380 | "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).", 381 | "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).", 382 | "moontoast/math": "Required to use ordered UUIDs (^1.1).", 383 | "nexmo/client": "Required to use the Nexmo transport (^1.0).", 384 | "pda/pheanstalk": "Required to use the beanstalk queue driver (^3.0).", 385 | "predis/predis": "Required to use the redis cache and queue drivers (^1.0).", 386 | "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).", 387 | "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.1).", 388 | "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.1).", 389 | "symfony/psr-http-message-bridge": "Required to psr7 bridging features (^1.0)." 390 | }, 391 | "type": "library", 392 | "extra": { 393 | "branch-alias": { 394 | "dev-master": "5.7-dev" 395 | } 396 | }, 397 | "autoload": { 398 | "files": [ 399 | "src/Illuminate/Foundation/helpers.php", 400 | "src/Illuminate/Support/helpers.php" 401 | ], 402 | "psr-4": { 403 | "Illuminate\\": "src/Illuminate/" 404 | } 405 | }, 406 | "notification-url": "https://packagist.org/downloads/", 407 | "license": [ 408 | "MIT" 409 | ], 410 | "authors": [ 411 | { 412 | "name": "Taylor Otwell", 413 | "email": "taylor@laravel.com" 414 | } 415 | ], 416 | "description": "The Laravel Framework.", 417 | "homepage": "https://laravel.com", 418 | "keywords": [ 419 | "framework", 420 | "laravel" 421 | ], 422 | "time": "2018-10-09T13:28:28+00:00" 423 | }, 424 | { 425 | "name": "league/flysystem", 426 | "version": "1.0.48", 427 | "source": { 428 | "type": "git", 429 | "url": "https://github.com/thephpleague/flysystem.git", 430 | "reference": "a6ded5b2f6055e2db97b4b859fdfca2b952b78aa" 431 | }, 432 | "dist": { 433 | "type": "zip", 434 | "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a6ded5b2f6055e2db97b4b859fdfca2b952b78aa", 435 | "reference": "a6ded5b2f6055e2db97b4b859fdfca2b952b78aa", 436 | "shasum": "" 437 | }, 438 | "require": { 439 | "ext-fileinfo": "*", 440 | "php": ">=5.5.9" 441 | }, 442 | "conflict": { 443 | "league/flysystem-sftp": "<1.0.6" 444 | }, 445 | "require-dev": { 446 | "phpspec/phpspec": "^3.4", 447 | "phpunit/phpunit": "^5.7.10" 448 | }, 449 | "suggest": { 450 | "ext-fileinfo": "Required for MimeType", 451 | "ext-ftp": "Allows you to use FTP server storage", 452 | "ext-openssl": "Allows you to use FTPS server storage", 453 | "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", 454 | "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", 455 | "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", 456 | "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", 457 | "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", 458 | "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", 459 | "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", 460 | "league/flysystem-webdav": "Allows you to use WebDAV storage", 461 | "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter", 462 | "spatie/flysystem-dropbox": "Allows you to use Dropbox storage", 463 | "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications" 464 | }, 465 | "type": "library", 466 | "extra": { 467 | "branch-alias": { 468 | "dev-master": "1.1-dev" 469 | } 470 | }, 471 | "autoload": { 472 | "psr-4": { 473 | "League\\Flysystem\\": "src/" 474 | } 475 | }, 476 | "notification-url": "https://packagist.org/downloads/", 477 | "license": [ 478 | "MIT" 479 | ], 480 | "authors": [ 481 | { 482 | "name": "Frank de Jonge", 483 | "email": "info@frenky.net" 484 | } 485 | ], 486 | "description": "Filesystem abstraction: Many filesystems, one API.", 487 | "keywords": [ 488 | "Cloud Files", 489 | "WebDAV", 490 | "abstraction", 491 | "aws", 492 | "cloud", 493 | "copy.com", 494 | "dropbox", 495 | "file systems", 496 | "files", 497 | "filesystem", 498 | "filesystems", 499 | "ftp", 500 | "rackspace", 501 | "remote", 502 | "s3", 503 | "sftp", 504 | "storage" 505 | ], 506 | "time": "2018-10-15T13:53:10+00:00" 507 | }, 508 | { 509 | "name": "monolog/monolog", 510 | "version": "1.23.0", 511 | "source": { 512 | "type": "git", 513 | "url": "https://github.com/Seldaek/monolog.git", 514 | "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4" 515 | }, 516 | "dist": { 517 | "type": "zip", 518 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4", 519 | "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4", 520 | "shasum": "" 521 | }, 522 | "require": { 523 | "php": ">=5.3.0", 524 | "psr/log": "~1.0" 525 | }, 526 | "provide": { 527 | "psr/log-implementation": "1.0.0" 528 | }, 529 | "require-dev": { 530 | "aws/aws-sdk-php": "^2.4.9 || ^3.0", 531 | "doctrine/couchdb": "~1.0@dev", 532 | "graylog2/gelf-php": "~1.0", 533 | "jakub-onderka/php-parallel-lint": "0.9", 534 | "php-amqplib/php-amqplib": "~2.4", 535 | "php-console/php-console": "^3.1.3", 536 | "phpunit/phpunit": "~4.5", 537 | "phpunit/phpunit-mock-objects": "2.3.0", 538 | "ruflin/elastica": ">=0.90 <3.0", 539 | "sentry/sentry": "^0.13", 540 | "swiftmailer/swiftmailer": "^5.3|^6.0" 541 | }, 542 | "suggest": { 543 | "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", 544 | "doctrine/couchdb": "Allow sending log messages to a CouchDB server", 545 | "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", 546 | "ext-mongo": "Allow sending log messages to a MongoDB server", 547 | "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", 548 | "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", 549 | "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", 550 | "php-console/php-console": "Allow sending log messages to Google Chrome", 551 | "rollbar/rollbar": "Allow sending log messages to Rollbar", 552 | "ruflin/elastica": "Allow sending log messages to an Elastic Search server", 553 | "sentry/sentry": "Allow sending log messages to a Sentry server" 554 | }, 555 | "type": "library", 556 | "extra": { 557 | "branch-alias": { 558 | "dev-master": "2.0.x-dev" 559 | } 560 | }, 561 | "autoload": { 562 | "psr-4": { 563 | "Monolog\\": "src/Monolog" 564 | } 565 | }, 566 | "notification-url": "https://packagist.org/downloads/", 567 | "license": [ 568 | "MIT" 569 | ], 570 | "authors": [ 571 | { 572 | "name": "Jordi Boggiano", 573 | "email": "j.boggiano@seld.be", 574 | "homepage": "http://seld.be" 575 | } 576 | ], 577 | "description": "Sends your logs to files, sockets, inboxes, databases and various web services", 578 | "homepage": "http://github.com/Seldaek/monolog", 579 | "keywords": [ 580 | "log", 581 | "logging", 582 | "psr-3" 583 | ], 584 | "time": "2017-06-19T01:22:40+00:00" 585 | }, 586 | { 587 | "name": "nesbot/carbon", 588 | "version": "1.34.0", 589 | "source": { 590 | "type": "git", 591 | "url": "https://github.com/briannesbitt/Carbon.git", 592 | "reference": "1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33" 593 | }, 594 | "dist": { 595 | "type": "zip", 596 | "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33", 597 | "reference": "1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33", 598 | "shasum": "" 599 | }, 600 | "require": { 601 | "php": ">=5.3.9", 602 | "symfony/translation": "~2.6 || ~3.0 || ~4.0" 603 | }, 604 | "require-dev": { 605 | "friendsofphp/php-cs-fixer": "~2", 606 | "phpunit/phpunit": "^4.8.35 || ^5.7" 607 | }, 608 | "type": "library", 609 | "extra": { 610 | "laravel": { 611 | "providers": [ 612 | "Carbon\\Laravel\\ServiceProvider" 613 | ] 614 | } 615 | }, 616 | "autoload": { 617 | "psr-4": { 618 | "": "src/" 619 | } 620 | }, 621 | "notification-url": "https://packagist.org/downloads/", 622 | "license": [ 623 | "MIT" 624 | ], 625 | "authors": [ 626 | { 627 | "name": "Brian Nesbitt", 628 | "email": "brian@nesbot.com", 629 | "homepage": "http://nesbot.com" 630 | } 631 | ], 632 | "description": "A simple API extension for DateTime.", 633 | "homepage": "http://carbon.nesbot.com", 634 | "keywords": [ 635 | "date", 636 | "datetime", 637 | "time" 638 | ], 639 | "time": "2018-09-20T19:36:25+00:00" 640 | }, 641 | { 642 | "name": "opis/closure", 643 | "version": "3.1.1", 644 | "source": { 645 | "type": "git", 646 | "url": "https://github.com/opis/closure.git", 647 | "reference": "d3209e46ad6c69a969b705df0738fd0dbe26ef9e" 648 | }, 649 | "dist": { 650 | "type": "zip", 651 | "url": "https://api.github.com/repos/opis/closure/zipball/d3209e46ad6c69a969b705df0738fd0dbe26ef9e", 652 | "reference": "d3209e46ad6c69a969b705df0738fd0dbe26ef9e", 653 | "shasum": "" 654 | }, 655 | "require": { 656 | "php": "^5.4 || ^7.0" 657 | }, 658 | "require-dev": { 659 | "jeremeamia/superclosure": "^2.0", 660 | "phpunit/phpunit": "^4.0" 661 | }, 662 | "type": "library", 663 | "extra": { 664 | "branch-alias": { 665 | "dev-master": "3.0.x-dev" 666 | } 667 | }, 668 | "autoload": { 669 | "psr-4": { 670 | "Opis\\Closure\\": "src/" 671 | }, 672 | "files": [ 673 | "functions.php" 674 | ] 675 | }, 676 | "notification-url": "https://packagist.org/downloads/", 677 | "license": [ 678 | "MIT" 679 | ], 680 | "authors": [ 681 | { 682 | "name": "Marius Sarca", 683 | "email": "marius.sarca@gmail.com" 684 | }, 685 | { 686 | "name": "Sorin Sarca", 687 | "email": "sarca_sorin@hotmail.com" 688 | } 689 | ], 690 | "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.", 691 | "homepage": "https://opis.io/closure", 692 | "keywords": [ 693 | "anonymous functions", 694 | "closure", 695 | "function", 696 | "serializable", 697 | "serialization", 698 | "serialize" 699 | ], 700 | "time": "2018-10-02T13:36:53+00:00" 701 | }, 702 | { 703 | "name": "paragonie/random_compat", 704 | "version": "v9.99.99", 705 | "source": { 706 | "type": "git", 707 | "url": "https://github.com/paragonie/random_compat.git", 708 | "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" 709 | }, 710 | "dist": { 711 | "type": "zip", 712 | "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", 713 | "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", 714 | "shasum": "" 715 | }, 716 | "require": { 717 | "php": "^7" 718 | }, 719 | "require-dev": { 720 | "phpunit/phpunit": "4.*|5.*", 721 | "vimeo/psalm": "^1" 722 | }, 723 | "suggest": { 724 | "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." 725 | }, 726 | "type": "library", 727 | "notification-url": "https://packagist.org/downloads/", 728 | "license": [ 729 | "MIT" 730 | ], 731 | "authors": [ 732 | { 733 | "name": "Paragon Initiative Enterprises", 734 | "email": "security@paragonie.com", 735 | "homepage": "https://paragonie.com" 736 | } 737 | ], 738 | "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", 739 | "keywords": [ 740 | "csprng", 741 | "polyfill", 742 | "pseudorandom", 743 | "random" 744 | ], 745 | "time": "2018-07-02T15:55:56+00:00" 746 | }, 747 | { 748 | "name": "psr/container", 749 | "version": "1.0.0", 750 | "source": { 751 | "type": "git", 752 | "url": "https://github.com/php-fig/container.git", 753 | "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" 754 | }, 755 | "dist": { 756 | "type": "zip", 757 | "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", 758 | "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", 759 | "shasum": "" 760 | }, 761 | "require": { 762 | "php": ">=5.3.0" 763 | }, 764 | "type": "library", 765 | "extra": { 766 | "branch-alias": { 767 | "dev-master": "1.0.x-dev" 768 | } 769 | }, 770 | "autoload": { 771 | "psr-4": { 772 | "Psr\\Container\\": "src/" 773 | } 774 | }, 775 | "notification-url": "https://packagist.org/downloads/", 776 | "license": [ 777 | "MIT" 778 | ], 779 | "authors": [ 780 | { 781 | "name": "PHP-FIG", 782 | "homepage": "http://www.php-fig.org/" 783 | } 784 | ], 785 | "description": "Common Container Interface (PHP FIG PSR-11)", 786 | "homepage": "https://github.com/php-fig/container", 787 | "keywords": [ 788 | "PSR-11", 789 | "container", 790 | "container-interface", 791 | "container-interop", 792 | "psr" 793 | ], 794 | "time": "2017-02-14T16:28:37+00:00" 795 | }, 796 | { 797 | "name": "psr/log", 798 | "version": "1.0.2", 799 | "source": { 800 | "type": "git", 801 | "url": "https://github.com/php-fig/log.git", 802 | "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" 803 | }, 804 | "dist": { 805 | "type": "zip", 806 | "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", 807 | "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", 808 | "shasum": "" 809 | }, 810 | "require": { 811 | "php": ">=5.3.0" 812 | }, 813 | "type": "library", 814 | "extra": { 815 | "branch-alias": { 816 | "dev-master": "1.0.x-dev" 817 | } 818 | }, 819 | "autoload": { 820 | "psr-4": { 821 | "Psr\\Log\\": "Psr/Log/" 822 | } 823 | }, 824 | "notification-url": "https://packagist.org/downloads/", 825 | "license": [ 826 | "MIT" 827 | ], 828 | "authors": [ 829 | { 830 | "name": "PHP-FIG", 831 | "homepage": "http://www.php-fig.org/" 832 | } 833 | ], 834 | "description": "Common interface for logging libraries", 835 | "homepage": "https://github.com/php-fig/log", 836 | "keywords": [ 837 | "log", 838 | "psr", 839 | "psr-3" 840 | ], 841 | "time": "2016-10-10T12:19:37+00:00" 842 | }, 843 | { 844 | "name": "psr/simple-cache", 845 | "version": "1.0.1", 846 | "source": { 847 | "type": "git", 848 | "url": "https://github.com/php-fig/simple-cache.git", 849 | "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" 850 | }, 851 | "dist": { 852 | "type": "zip", 853 | "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", 854 | "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", 855 | "shasum": "" 856 | }, 857 | "require": { 858 | "php": ">=5.3.0" 859 | }, 860 | "type": "library", 861 | "extra": { 862 | "branch-alias": { 863 | "dev-master": "1.0.x-dev" 864 | } 865 | }, 866 | "autoload": { 867 | "psr-4": { 868 | "Psr\\SimpleCache\\": "src/" 869 | } 870 | }, 871 | "notification-url": "https://packagist.org/downloads/", 872 | "license": [ 873 | "MIT" 874 | ], 875 | "authors": [ 876 | { 877 | "name": "PHP-FIG", 878 | "homepage": "http://www.php-fig.org/" 879 | } 880 | ], 881 | "description": "Common interfaces for simple caching", 882 | "keywords": [ 883 | "cache", 884 | "caching", 885 | "psr", 886 | "psr-16", 887 | "simple-cache" 888 | ], 889 | "time": "2017-10-23T01:57:42+00:00" 890 | }, 891 | { 892 | "name": "ramsey/uuid", 893 | "version": "3.8.0", 894 | "source": { 895 | "type": "git", 896 | "url": "https://github.com/ramsey/uuid.git", 897 | "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3" 898 | }, 899 | "dist": { 900 | "type": "zip", 901 | "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3", 902 | "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3", 903 | "shasum": "" 904 | }, 905 | "require": { 906 | "paragonie/random_compat": "^1.0|^2.0|9.99.99", 907 | "php": "^5.4 || ^7.0", 908 | "symfony/polyfill-ctype": "^1.8" 909 | }, 910 | "replace": { 911 | "rhumsaa/uuid": "self.version" 912 | }, 913 | "require-dev": { 914 | "codeception/aspect-mock": "^1.0 | ~2.0.0", 915 | "doctrine/annotations": "~1.2.0", 916 | "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0", 917 | "ircmaxell/random-lib": "^1.1", 918 | "jakub-onderka/php-parallel-lint": "^0.9.0", 919 | "mockery/mockery": "^0.9.9", 920 | "moontoast/math": "^1.1", 921 | "php-mock/php-mock-phpunit": "^0.3|^1.1", 922 | "phpunit/phpunit": "^4.7|^5.0|^6.5", 923 | "squizlabs/php_codesniffer": "^2.3" 924 | }, 925 | "suggest": { 926 | "ext-ctype": "Provides support for PHP Ctype functions", 927 | "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", 928 | "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", 929 | "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter", 930 | "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", 931 | "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", 932 | "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." 933 | }, 934 | "type": "library", 935 | "extra": { 936 | "branch-alias": { 937 | "dev-master": "3.x-dev" 938 | } 939 | }, 940 | "autoload": { 941 | "psr-4": { 942 | "Ramsey\\Uuid\\": "src/" 943 | } 944 | }, 945 | "notification-url": "https://packagist.org/downloads/", 946 | "license": [ 947 | "MIT" 948 | ], 949 | "authors": [ 950 | { 951 | "name": "Marijn Huizendveld", 952 | "email": "marijn.huizendveld@gmail.com" 953 | }, 954 | { 955 | "name": "Thibaud Fabre", 956 | "email": "thibaud@aztech.io" 957 | }, 958 | { 959 | "name": "Ben Ramsey", 960 | "email": "ben@benramsey.com", 961 | "homepage": "https://benramsey.com" 962 | } 963 | ], 964 | "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", 965 | "homepage": "https://github.com/ramsey/uuid", 966 | "keywords": [ 967 | "guid", 968 | "identifier", 969 | "uuid" 970 | ], 971 | "time": "2018-07-19T23:38:55+00:00" 972 | }, 973 | { 974 | "name": "swiftmailer/swiftmailer", 975 | "version": "v6.1.3", 976 | "source": { 977 | "type": "git", 978 | "url": "https://github.com/swiftmailer/swiftmailer.git", 979 | "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4" 980 | }, 981 | "dist": { 982 | "type": "zip", 983 | "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4", 984 | "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4", 985 | "shasum": "" 986 | }, 987 | "require": { 988 | "egulias/email-validator": "~2.0", 989 | "php": ">=7.0.0" 990 | }, 991 | "require-dev": { 992 | "mockery/mockery": "~0.9.1", 993 | "symfony/phpunit-bridge": "~3.3@dev" 994 | }, 995 | "suggest": { 996 | "ext-intl": "Needed to support internationalized email addresses", 997 | "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed" 998 | }, 999 | "type": "library", 1000 | "extra": { 1001 | "branch-alias": { 1002 | "dev-master": "6.1-dev" 1003 | } 1004 | }, 1005 | "autoload": { 1006 | "files": [ 1007 | "lib/swift_required.php" 1008 | ] 1009 | }, 1010 | "notification-url": "https://packagist.org/downloads/", 1011 | "license": [ 1012 | "MIT" 1013 | ], 1014 | "authors": [ 1015 | { 1016 | "name": "Chris Corbyn" 1017 | }, 1018 | { 1019 | "name": "Fabien Potencier", 1020 | "email": "fabien@symfony.com" 1021 | } 1022 | ], 1023 | "description": "Swiftmailer, free feature-rich PHP mailer", 1024 | "homepage": "https://swiftmailer.symfony.com", 1025 | "keywords": [ 1026 | "email", 1027 | "mail", 1028 | "mailer" 1029 | ], 1030 | "time": "2018-09-11T07:12:52+00:00" 1031 | }, 1032 | { 1033 | "name": "symfony/console", 1034 | "version": "v4.1.6", 1035 | "source": { 1036 | "type": "git", 1037 | "url": "https://github.com/symfony/console.git", 1038 | "reference": "dc7122fe5f6113cfaba3b3de575d31112c9aa60b" 1039 | }, 1040 | "dist": { 1041 | "type": "zip", 1042 | "url": "https://api.github.com/repos/symfony/console/zipball/dc7122fe5f6113cfaba3b3de575d31112c9aa60b", 1043 | "reference": "dc7122fe5f6113cfaba3b3de575d31112c9aa60b", 1044 | "shasum": "" 1045 | }, 1046 | "require": { 1047 | "php": "^7.1.3", 1048 | "symfony/polyfill-mbstring": "~1.0" 1049 | }, 1050 | "conflict": { 1051 | "symfony/dependency-injection": "<3.4", 1052 | "symfony/process": "<3.3" 1053 | }, 1054 | "require-dev": { 1055 | "psr/log": "~1.0", 1056 | "symfony/config": "~3.4|~4.0", 1057 | "symfony/dependency-injection": "~3.4|~4.0", 1058 | "symfony/event-dispatcher": "~3.4|~4.0", 1059 | "symfony/lock": "~3.4|~4.0", 1060 | "symfony/process": "~3.4|~4.0" 1061 | }, 1062 | "suggest": { 1063 | "psr/log-implementation": "For using the console logger", 1064 | "symfony/event-dispatcher": "", 1065 | "symfony/lock": "", 1066 | "symfony/process": "" 1067 | }, 1068 | "type": "library", 1069 | "extra": { 1070 | "branch-alias": { 1071 | "dev-master": "4.1-dev" 1072 | } 1073 | }, 1074 | "autoload": { 1075 | "psr-4": { 1076 | "Symfony\\Component\\Console\\": "" 1077 | }, 1078 | "exclude-from-classmap": [ 1079 | "/Tests/" 1080 | ] 1081 | }, 1082 | "notification-url": "https://packagist.org/downloads/", 1083 | "license": [ 1084 | "MIT" 1085 | ], 1086 | "authors": [ 1087 | { 1088 | "name": "Fabien Potencier", 1089 | "email": "fabien@symfony.com" 1090 | }, 1091 | { 1092 | "name": "Symfony Community", 1093 | "homepage": "https://symfony.com/contributors" 1094 | } 1095 | ], 1096 | "description": "Symfony Console Component", 1097 | "homepage": "https://symfony.com", 1098 | "time": "2018-10-03T08:15:46+00:00" 1099 | }, 1100 | { 1101 | "name": "symfony/css-selector", 1102 | "version": "v4.1.6", 1103 | "source": { 1104 | "type": "git", 1105 | "url": "https://github.com/symfony/css-selector.git", 1106 | "reference": "d67de79a70a27d93c92c47f37ece958bf8de4d8a" 1107 | }, 1108 | "dist": { 1109 | "type": "zip", 1110 | "url": "https://api.github.com/repos/symfony/css-selector/zipball/d67de79a70a27d93c92c47f37ece958bf8de4d8a", 1111 | "reference": "d67de79a70a27d93c92c47f37ece958bf8de4d8a", 1112 | "shasum": "" 1113 | }, 1114 | "require": { 1115 | "php": "^7.1.3" 1116 | }, 1117 | "type": "library", 1118 | "extra": { 1119 | "branch-alias": { 1120 | "dev-master": "4.1-dev" 1121 | } 1122 | }, 1123 | "autoload": { 1124 | "psr-4": { 1125 | "Symfony\\Component\\CssSelector\\": "" 1126 | }, 1127 | "exclude-from-classmap": [ 1128 | "/Tests/" 1129 | ] 1130 | }, 1131 | "notification-url": "https://packagist.org/downloads/", 1132 | "license": [ 1133 | "MIT" 1134 | ], 1135 | "authors": [ 1136 | { 1137 | "name": "Jean-François Simon", 1138 | "email": "jeanfrancois.simon@sensiolabs.com" 1139 | }, 1140 | { 1141 | "name": "Fabien Potencier", 1142 | "email": "fabien@symfony.com" 1143 | }, 1144 | { 1145 | "name": "Symfony Community", 1146 | "homepage": "https://symfony.com/contributors" 1147 | } 1148 | ], 1149 | "description": "Symfony CssSelector Component", 1150 | "homepage": "https://symfony.com", 1151 | "time": "2018-10-02T16:36:10+00:00" 1152 | }, 1153 | { 1154 | "name": "symfony/debug", 1155 | "version": "v4.1.6", 1156 | "source": { 1157 | "type": "git", 1158 | "url": "https://github.com/symfony/debug.git", 1159 | "reference": "e3f76ce6198f81994e019bb2b4e533e9de1b9b90" 1160 | }, 1161 | "dist": { 1162 | "type": "zip", 1163 | "url": "https://api.github.com/repos/symfony/debug/zipball/e3f76ce6198f81994e019bb2b4e533e9de1b9b90", 1164 | "reference": "e3f76ce6198f81994e019bb2b4e533e9de1b9b90", 1165 | "shasum": "" 1166 | }, 1167 | "require": { 1168 | "php": "^7.1.3", 1169 | "psr/log": "~1.0" 1170 | }, 1171 | "conflict": { 1172 | "symfony/http-kernel": "<3.4" 1173 | }, 1174 | "require-dev": { 1175 | "symfony/http-kernel": "~3.4|~4.0" 1176 | }, 1177 | "type": "library", 1178 | "extra": { 1179 | "branch-alias": { 1180 | "dev-master": "4.1-dev" 1181 | } 1182 | }, 1183 | "autoload": { 1184 | "psr-4": { 1185 | "Symfony\\Component\\Debug\\": "" 1186 | }, 1187 | "exclude-from-classmap": [ 1188 | "/Tests/" 1189 | ] 1190 | }, 1191 | "notification-url": "https://packagist.org/downloads/", 1192 | "license": [ 1193 | "MIT" 1194 | ], 1195 | "authors": [ 1196 | { 1197 | "name": "Fabien Potencier", 1198 | "email": "fabien@symfony.com" 1199 | }, 1200 | { 1201 | "name": "Symfony Community", 1202 | "homepage": "https://symfony.com/contributors" 1203 | } 1204 | ], 1205 | "description": "Symfony Debug Component", 1206 | "homepage": "https://symfony.com", 1207 | "time": "2018-10-02T16:36:10+00:00" 1208 | }, 1209 | { 1210 | "name": "symfony/event-dispatcher", 1211 | "version": "v4.1.6", 1212 | "source": { 1213 | "type": "git", 1214 | "url": "https://github.com/symfony/event-dispatcher.git", 1215 | "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e" 1216 | }, 1217 | "dist": { 1218 | "type": "zip", 1219 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/bfb30c2ad377615a463ebbc875eba64a99f6aa3e", 1220 | "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e", 1221 | "shasum": "" 1222 | }, 1223 | "require": { 1224 | "php": "^7.1.3" 1225 | }, 1226 | "conflict": { 1227 | "symfony/dependency-injection": "<3.4" 1228 | }, 1229 | "require-dev": { 1230 | "psr/log": "~1.0", 1231 | "symfony/config": "~3.4|~4.0", 1232 | "symfony/dependency-injection": "~3.4|~4.0", 1233 | "symfony/expression-language": "~3.4|~4.0", 1234 | "symfony/stopwatch": "~3.4|~4.0" 1235 | }, 1236 | "suggest": { 1237 | "symfony/dependency-injection": "", 1238 | "symfony/http-kernel": "" 1239 | }, 1240 | "type": "library", 1241 | "extra": { 1242 | "branch-alias": { 1243 | "dev-master": "4.1-dev" 1244 | } 1245 | }, 1246 | "autoload": { 1247 | "psr-4": { 1248 | "Symfony\\Component\\EventDispatcher\\": "" 1249 | }, 1250 | "exclude-from-classmap": [ 1251 | "/Tests/" 1252 | ] 1253 | }, 1254 | "notification-url": "https://packagist.org/downloads/", 1255 | "license": [ 1256 | "MIT" 1257 | ], 1258 | "authors": [ 1259 | { 1260 | "name": "Fabien Potencier", 1261 | "email": "fabien@symfony.com" 1262 | }, 1263 | { 1264 | "name": "Symfony Community", 1265 | "homepage": "https://symfony.com/contributors" 1266 | } 1267 | ], 1268 | "description": "Symfony EventDispatcher Component", 1269 | "homepage": "https://symfony.com", 1270 | "time": "2018-07-26T09:10:45+00:00" 1271 | }, 1272 | { 1273 | "name": "symfony/finder", 1274 | "version": "v4.1.6", 1275 | "source": { 1276 | "type": "git", 1277 | "url": "https://github.com/symfony/finder.git", 1278 | "reference": "1f17195b44543017a9c9b2d437c670627e96ad06" 1279 | }, 1280 | "dist": { 1281 | "type": "zip", 1282 | "url": "https://api.github.com/repos/symfony/finder/zipball/1f17195b44543017a9c9b2d437c670627e96ad06", 1283 | "reference": "1f17195b44543017a9c9b2d437c670627e96ad06", 1284 | "shasum": "" 1285 | }, 1286 | "require": { 1287 | "php": "^7.1.3" 1288 | }, 1289 | "type": "library", 1290 | "extra": { 1291 | "branch-alias": { 1292 | "dev-master": "4.1-dev" 1293 | } 1294 | }, 1295 | "autoload": { 1296 | "psr-4": { 1297 | "Symfony\\Component\\Finder\\": "" 1298 | }, 1299 | "exclude-from-classmap": [ 1300 | "/Tests/" 1301 | ] 1302 | }, 1303 | "notification-url": "https://packagist.org/downloads/", 1304 | "license": [ 1305 | "MIT" 1306 | ], 1307 | "authors": [ 1308 | { 1309 | "name": "Fabien Potencier", 1310 | "email": "fabien@symfony.com" 1311 | }, 1312 | { 1313 | "name": "Symfony Community", 1314 | "homepage": "https://symfony.com/contributors" 1315 | } 1316 | ], 1317 | "description": "Symfony Finder Component", 1318 | "homepage": "https://symfony.com", 1319 | "time": "2018-10-03T08:47:56+00:00" 1320 | }, 1321 | { 1322 | "name": "symfony/http-foundation", 1323 | "version": "v4.1.6", 1324 | "source": { 1325 | "type": "git", 1326 | "url": "https://github.com/symfony/http-foundation.git", 1327 | "reference": "d528136617ff24f530e70df9605acc1b788b08d4" 1328 | }, 1329 | "dist": { 1330 | "type": "zip", 1331 | "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d528136617ff24f530e70df9605acc1b788b08d4", 1332 | "reference": "d528136617ff24f530e70df9605acc1b788b08d4", 1333 | "shasum": "" 1334 | }, 1335 | "require": { 1336 | "php": "^7.1.3", 1337 | "symfony/polyfill-mbstring": "~1.1" 1338 | }, 1339 | "require-dev": { 1340 | "predis/predis": "~1.0", 1341 | "symfony/expression-language": "~3.4|~4.0" 1342 | }, 1343 | "type": "library", 1344 | "extra": { 1345 | "branch-alias": { 1346 | "dev-master": "4.1-dev" 1347 | } 1348 | }, 1349 | "autoload": { 1350 | "psr-4": { 1351 | "Symfony\\Component\\HttpFoundation\\": "" 1352 | }, 1353 | "exclude-from-classmap": [ 1354 | "/Tests/" 1355 | ] 1356 | }, 1357 | "notification-url": "https://packagist.org/downloads/", 1358 | "license": [ 1359 | "MIT" 1360 | ], 1361 | "authors": [ 1362 | { 1363 | "name": "Fabien Potencier", 1364 | "email": "fabien@symfony.com" 1365 | }, 1366 | { 1367 | "name": "Symfony Community", 1368 | "homepage": "https://symfony.com/contributors" 1369 | } 1370 | ], 1371 | "description": "Symfony HttpFoundation Component", 1372 | "homepage": "https://symfony.com", 1373 | "time": "2018-10-03T08:48:45+00:00" 1374 | }, 1375 | { 1376 | "name": "symfony/http-kernel", 1377 | "version": "v4.1.6", 1378 | "source": { 1379 | "type": "git", 1380 | "url": "https://github.com/symfony/http-kernel.git", 1381 | "reference": "f5e7c15a5d010be0e16ce798594c5960451d4220" 1382 | }, 1383 | "dist": { 1384 | "type": "zip", 1385 | "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f5e7c15a5d010be0e16ce798594c5960451d4220", 1386 | "reference": "f5e7c15a5d010be0e16ce798594c5960451d4220", 1387 | "shasum": "" 1388 | }, 1389 | "require": { 1390 | "php": "^7.1.3", 1391 | "psr/log": "~1.0", 1392 | "symfony/debug": "~3.4|~4.0", 1393 | "symfony/event-dispatcher": "~4.1", 1394 | "symfony/http-foundation": "^4.1.1", 1395 | "symfony/polyfill-ctype": "~1.8" 1396 | }, 1397 | "conflict": { 1398 | "symfony/config": "<3.4", 1399 | "symfony/dependency-injection": "<4.1", 1400 | "symfony/var-dumper": "<4.1.1", 1401 | "twig/twig": "<1.34|<2.4,>=2" 1402 | }, 1403 | "provide": { 1404 | "psr/log-implementation": "1.0" 1405 | }, 1406 | "require-dev": { 1407 | "psr/cache": "~1.0", 1408 | "symfony/browser-kit": "~3.4|~4.0", 1409 | "symfony/config": "~3.4|~4.0", 1410 | "symfony/console": "~3.4|~4.0", 1411 | "symfony/css-selector": "~3.4|~4.0", 1412 | "symfony/dependency-injection": "^4.1", 1413 | "symfony/dom-crawler": "~3.4|~4.0", 1414 | "symfony/expression-language": "~3.4|~4.0", 1415 | "symfony/finder": "~3.4|~4.0", 1416 | "symfony/process": "~3.4|~4.0", 1417 | "symfony/routing": "~3.4|~4.0", 1418 | "symfony/stopwatch": "~3.4|~4.0", 1419 | "symfony/templating": "~3.4|~4.0", 1420 | "symfony/translation": "~3.4|~4.0", 1421 | "symfony/var-dumper": "^4.1.1" 1422 | }, 1423 | "suggest": { 1424 | "symfony/browser-kit": "", 1425 | "symfony/config": "", 1426 | "symfony/console": "", 1427 | "symfony/dependency-injection": "", 1428 | "symfony/var-dumper": "" 1429 | }, 1430 | "type": "library", 1431 | "extra": { 1432 | "branch-alias": { 1433 | "dev-master": "4.1-dev" 1434 | } 1435 | }, 1436 | "autoload": { 1437 | "psr-4": { 1438 | "Symfony\\Component\\HttpKernel\\": "" 1439 | }, 1440 | "exclude-from-classmap": [ 1441 | "/Tests/" 1442 | ] 1443 | }, 1444 | "notification-url": "https://packagist.org/downloads/", 1445 | "license": [ 1446 | "MIT" 1447 | ], 1448 | "authors": [ 1449 | { 1450 | "name": "Fabien Potencier", 1451 | "email": "fabien@symfony.com" 1452 | }, 1453 | { 1454 | "name": "Symfony Community", 1455 | "homepage": "https://symfony.com/contributors" 1456 | } 1457 | ], 1458 | "description": "Symfony HttpKernel Component", 1459 | "homepage": "https://symfony.com", 1460 | "time": "2018-10-03T12:53:38+00:00" 1461 | }, 1462 | { 1463 | "name": "symfony/polyfill-ctype", 1464 | "version": "v1.9.0", 1465 | "source": { 1466 | "type": "git", 1467 | "url": "https://github.com/symfony/polyfill-ctype.git", 1468 | "reference": "e3d826245268269cd66f8326bd8bc066687b4a19" 1469 | }, 1470 | "dist": { 1471 | "type": "zip", 1472 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19", 1473 | "reference": "e3d826245268269cd66f8326bd8bc066687b4a19", 1474 | "shasum": "" 1475 | }, 1476 | "require": { 1477 | "php": ">=5.3.3" 1478 | }, 1479 | "suggest": { 1480 | "ext-ctype": "For best performance" 1481 | }, 1482 | "type": "library", 1483 | "extra": { 1484 | "branch-alias": { 1485 | "dev-master": "1.9-dev" 1486 | } 1487 | }, 1488 | "autoload": { 1489 | "psr-4": { 1490 | "Symfony\\Polyfill\\Ctype\\": "" 1491 | }, 1492 | "files": [ 1493 | "bootstrap.php" 1494 | ] 1495 | }, 1496 | "notification-url": "https://packagist.org/downloads/", 1497 | "license": [ 1498 | "MIT" 1499 | ], 1500 | "authors": [ 1501 | { 1502 | "name": "Symfony Community", 1503 | "homepage": "https://symfony.com/contributors" 1504 | }, 1505 | { 1506 | "name": "Gert de Pagter", 1507 | "email": "BackEndTea@gmail.com" 1508 | } 1509 | ], 1510 | "description": "Symfony polyfill for ctype functions", 1511 | "homepage": "https://symfony.com", 1512 | "keywords": [ 1513 | "compatibility", 1514 | "ctype", 1515 | "polyfill", 1516 | "portable" 1517 | ], 1518 | "time": "2018-08-06T14:22:27+00:00" 1519 | }, 1520 | { 1521 | "name": "symfony/polyfill-mbstring", 1522 | "version": "v1.9.0", 1523 | "source": { 1524 | "type": "git", 1525 | "url": "https://github.com/symfony/polyfill-mbstring.git", 1526 | "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8" 1527 | }, 1528 | "dist": { 1529 | "type": "zip", 1530 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8", 1531 | "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8", 1532 | "shasum": "" 1533 | }, 1534 | "require": { 1535 | "php": ">=5.3.3" 1536 | }, 1537 | "suggest": { 1538 | "ext-mbstring": "For best performance" 1539 | }, 1540 | "type": "library", 1541 | "extra": { 1542 | "branch-alias": { 1543 | "dev-master": "1.9-dev" 1544 | } 1545 | }, 1546 | "autoload": { 1547 | "psr-4": { 1548 | "Symfony\\Polyfill\\Mbstring\\": "" 1549 | }, 1550 | "files": [ 1551 | "bootstrap.php" 1552 | ] 1553 | }, 1554 | "notification-url": "https://packagist.org/downloads/", 1555 | "license": [ 1556 | "MIT" 1557 | ], 1558 | "authors": [ 1559 | { 1560 | "name": "Nicolas Grekas", 1561 | "email": "p@tchwork.com" 1562 | }, 1563 | { 1564 | "name": "Symfony Community", 1565 | "homepage": "https://symfony.com/contributors" 1566 | } 1567 | ], 1568 | "description": "Symfony polyfill for the Mbstring extension", 1569 | "homepage": "https://symfony.com", 1570 | "keywords": [ 1571 | "compatibility", 1572 | "mbstring", 1573 | "polyfill", 1574 | "portable", 1575 | "shim" 1576 | ], 1577 | "time": "2018-08-06T14:22:27+00:00" 1578 | }, 1579 | { 1580 | "name": "symfony/polyfill-php72", 1581 | "version": "v1.9.0", 1582 | "source": { 1583 | "type": "git", 1584 | "url": "https://github.com/symfony/polyfill-php72.git", 1585 | "reference": "95c50420b0baed23852452a7f0c7b527303ed5ae" 1586 | }, 1587 | "dist": { 1588 | "type": "zip", 1589 | "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/95c50420b0baed23852452a7f0c7b527303ed5ae", 1590 | "reference": "95c50420b0baed23852452a7f0c7b527303ed5ae", 1591 | "shasum": "" 1592 | }, 1593 | "require": { 1594 | "php": ">=5.3.3" 1595 | }, 1596 | "type": "library", 1597 | "extra": { 1598 | "branch-alias": { 1599 | "dev-master": "1.9-dev" 1600 | } 1601 | }, 1602 | "autoload": { 1603 | "psr-4": { 1604 | "Symfony\\Polyfill\\Php72\\": "" 1605 | }, 1606 | "files": [ 1607 | "bootstrap.php" 1608 | ] 1609 | }, 1610 | "notification-url": "https://packagist.org/downloads/", 1611 | "license": [ 1612 | "MIT" 1613 | ], 1614 | "authors": [ 1615 | { 1616 | "name": "Nicolas Grekas", 1617 | "email": "p@tchwork.com" 1618 | }, 1619 | { 1620 | "name": "Symfony Community", 1621 | "homepage": "https://symfony.com/contributors" 1622 | } 1623 | ], 1624 | "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", 1625 | "homepage": "https://symfony.com", 1626 | "keywords": [ 1627 | "compatibility", 1628 | "polyfill", 1629 | "portable", 1630 | "shim" 1631 | ], 1632 | "time": "2018-08-06T14:22:27+00:00" 1633 | }, 1634 | { 1635 | "name": "symfony/process", 1636 | "version": "v4.1.6", 1637 | "source": { 1638 | "type": "git", 1639 | "url": "https://github.com/symfony/process.git", 1640 | "reference": "ee33c0322a8fee0855afcc11fff81e6b1011b529" 1641 | }, 1642 | "dist": { 1643 | "type": "zip", 1644 | "url": "https://api.github.com/repos/symfony/process/zipball/ee33c0322a8fee0855afcc11fff81e6b1011b529", 1645 | "reference": "ee33c0322a8fee0855afcc11fff81e6b1011b529", 1646 | "shasum": "" 1647 | }, 1648 | "require": { 1649 | "php": "^7.1.3" 1650 | }, 1651 | "type": "library", 1652 | "extra": { 1653 | "branch-alias": { 1654 | "dev-master": "4.1-dev" 1655 | } 1656 | }, 1657 | "autoload": { 1658 | "psr-4": { 1659 | "Symfony\\Component\\Process\\": "" 1660 | }, 1661 | "exclude-from-classmap": [ 1662 | "/Tests/" 1663 | ] 1664 | }, 1665 | "notification-url": "https://packagist.org/downloads/", 1666 | "license": [ 1667 | "MIT" 1668 | ], 1669 | "authors": [ 1670 | { 1671 | "name": "Fabien Potencier", 1672 | "email": "fabien@symfony.com" 1673 | }, 1674 | { 1675 | "name": "Symfony Community", 1676 | "homepage": "https://symfony.com/contributors" 1677 | } 1678 | ], 1679 | "description": "Symfony Process Component", 1680 | "homepage": "https://symfony.com", 1681 | "time": "2018-10-02T12:40:59+00:00" 1682 | }, 1683 | { 1684 | "name": "symfony/routing", 1685 | "version": "v4.1.6", 1686 | "source": { 1687 | "type": "git", 1688 | "url": "https://github.com/symfony/routing.git", 1689 | "reference": "537803f0bdfede36b9acef052d2e4d447d9fa0e9" 1690 | }, 1691 | "dist": { 1692 | "type": "zip", 1693 | "url": "https://api.github.com/repos/symfony/routing/zipball/537803f0bdfede36b9acef052d2e4d447d9fa0e9", 1694 | "reference": "537803f0bdfede36b9acef052d2e4d447d9fa0e9", 1695 | "shasum": "" 1696 | }, 1697 | "require": { 1698 | "php": "^7.1.3" 1699 | }, 1700 | "conflict": { 1701 | "symfony/config": "<3.4", 1702 | "symfony/dependency-injection": "<3.4", 1703 | "symfony/yaml": "<3.4" 1704 | }, 1705 | "require-dev": { 1706 | "doctrine/annotations": "~1.0", 1707 | "psr/log": "~1.0", 1708 | "symfony/config": "~3.4|~4.0", 1709 | "symfony/dependency-injection": "~3.4|~4.0", 1710 | "symfony/expression-language": "~3.4|~4.0", 1711 | "symfony/http-foundation": "~3.4|~4.0", 1712 | "symfony/yaml": "~3.4|~4.0" 1713 | }, 1714 | "suggest": { 1715 | "doctrine/annotations": "For using the annotation loader", 1716 | "symfony/config": "For using the all-in-one router or any loader", 1717 | "symfony/dependency-injection": "For loading routes from a service", 1718 | "symfony/expression-language": "For using expression matching", 1719 | "symfony/http-foundation": "For using a Symfony Request object", 1720 | "symfony/yaml": "For using the YAML loader" 1721 | }, 1722 | "type": "library", 1723 | "extra": { 1724 | "branch-alias": { 1725 | "dev-master": "4.1-dev" 1726 | } 1727 | }, 1728 | "autoload": { 1729 | "psr-4": { 1730 | "Symfony\\Component\\Routing\\": "" 1731 | }, 1732 | "exclude-from-classmap": [ 1733 | "/Tests/" 1734 | ] 1735 | }, 1736 | "notification-url": "https://packagist.org/downloads/", 1737 | "license": [ 1738 | "MIT" 1739 | ], 1740 | "authors": [ 1741 | { 1742 | "name": "Fabien Potencier", 1743 | "email": "fabien@symfony.com" 1744 | }, 1745 | { 1746 | "name": "Symfony Community", 1747 | "homepage": "https://symfony.com/contributors" 1748 | } 1749 | ], 1750 | "description": "Symfony Routing Component", 1751 | "homepage": "https://symfony.com", 1752 | "keywords": [ 1753 | "router", 1754 | "routing", 1755 | "uri", 1756 | "url" 1757 | ], 1758 | "time": "2018-10-02T12:40:59+00:00" 1759 | }, 1760 | { 1761 | "name": "symfony/translation", 1762 | "version": "v4.1.6", 1763 | "source": { 1764 | "type": "git", 1765 | "url": "https://github.com/symfony/translation.git", 1766 | "reference": "9f0b61e339160a466ebcde167a6c5521c810e304" 1767 | }, 1768 | "dist": { 1769 | "type": "zip", 1770 | "url": "https://api.github.com/repos/symfony/translation/zipball/9f0b61e339160a466ebcde167a6c5521c810e304", 1771 | "reference": "9f0b61e339160a466ebcde167a6c5521c810e304", 1772 | "shasum": "" 1773 | }, 1774 | "require": { 1775 | "php": "^7.1.3", 1776 | "symfony/polyfill-mbstring": "~1.0" 1777 | }, 1778 | "conflict": { 1779 | "symfony/config": "<3.4", 1780 | "symfony/dependency-injection": "<3.4", 1781 | "symfony/yaml": "<3.4" 1782 | }, 1783 | "require-dev": { 1784 | "psr/log": "~1.0", 1785 | "symfony/config": "~3.4|~4.0", 1786 | "symfony/console": "~3.4|~4.0", 1787 | "symfony/dependency-injection": "~3.4|~4.0", 1788 | "symfony/finder": "~2.8|~3.0|~4.0", 1789 | "symfony/intl": "~3.4|~4.0", 1790 | "symfony/yaml": "~3.4|~4.0" 1791 | }, 1792 | "suggest": { 1793 | "psr/log-implementation": "To use logging capability in translator", 1794 | "symfony/config": "", 1795 | "symfony/yaml": "" 1796 | }, 1797 | "type": "library", 1798 | "extra": { 1799 | "branch-alias": { 1800 | "dev-master": "4.1-dev" 1801 | } 1802 | }, 1803 | "autoload": { 1804 | "psr-4": { 1805 | "Symfony\\Component\\Translation\\": "" 1806 | }, 1807 | "exclude-from-classmap": [ 1808 | "/Tests/" 1809 | ] 1810 | }, 1811 | "notification-url": "https://packagist.org/downloads/", 1812 | "license": [ 1813 | "MIT" 1814 | ], 1815 | "authors": [ 1816 | { 1817 | "name": "Fabien Potencier", 1818 | "email": "fabien@symfony.com" 1819 | }, 1820 | { 1821 | "name": "Symfony Community", 1822 | "homepage": "https://symfony.com/contributors" 1823 | } 1824 | ], 1825 | "description": "Symfony Translation Component", 1826 | "homepage": "https://symfony.com", 1827 | "time": "2018-10-02T16:36:10+00:00" 1828 | }, 1829 | { 1830 | "name": "symfony/var-dumper", 1831 | "version": "v4.1.6", 1832 | "source": { 1833 | "type": "git", 1834 | "url": "https://github.com/symfony/var-dumper.git", 1835 | "reference": "60319b45653580b0cdacca499344577d87732f16" 1836 | }, 1837 | "dist": { 1838 | "type": "zip", 1839 | "url": "https://api.github.com/repos/symfony/var-dumper/zipball/60319b45653580b0cdacca499344577d87732f16", 1840 | "reference": "60319b45653580b0cdacca499344577d87732f16", 1841 | "shasum": "" 1842 | }, 1843 | "require": { 1844 | "php": "^7.1.3", 1845 | "symfony/polyfill-mbstring": "~1.0", 1846 | "symfony/polyfill-php72": "~1.5" 1847 | }, 1848 | "conflict": { 1849 | "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", 1850 | "symfony/console": "<3.4" 1851 | }, 1852 | "require-dev": { 1853 | "ext-iconv": "*", 1854 | "symfony/process": "~3.4|~4.0", 1855 | "twig/twig": "~1.34|~2.4" 1856 | }, 1857 | "suggest": { 1858 | "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", 1859 | "ext-intl": "To show region name in time zone dump", 1860 | "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" 1861 | }, 1862 | "bin": [ 1863 | "Resources/bin/var-dump-server" 1864 | ], 1865 | "type": "library", 1866 | "extra": { 1867 | "branch-alias": { 1868 | "dev-master": "4.1-dev" 1869 | } 1870 | }, 1871 | "autoload": { 1872 | "files": [ 1873 | "Resources/functions/dump.php" 1874 | ], 1875 | "psr-4": { 1876 | "Symfony\\Component\\VarDumper\\": "" 1877 | }, 1878 | "exclude-from-classmap": [ 1879 | "/Tests/" 1880 | ] 1881 | }, 1882 | "notification-url": "https://packagist.org/downloads/", 1883 | "license": [ 1884 | "MIT" 1885 | ], 1886 | "authors": [ 1887 | { 1888 | "name": "Nicolas Grekas", 1889 | "email": "p@tchwork.com" 1890 | }, 1891 | { 1892 | "name": "Symfony Community", 1893 | "homepage": "https://symfony.com/contributors" 1894 | } 1895 | ], 1896 | "description": "Symfony mechanism for exploring and dumping PHP variables", 1897 | "homepage": "https://symfony.com", 1898 | "keywords": [ 1899 | "debug", 1900 | "dump" 1901 | ], 1902 | "time": "2018-10-02T16:36:10+00:00" 1903 | }, 1904 | { 1905 | "name": "tijsverkoyen/css-to-inline-styles", 1906 | "version": "2.2.1", 1907 | "source": { 1908 | "type": "git", 1909 | "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", 1910 | "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757" 1911 | }, 1912 | "dist": { 1913 | "type": "zip", 1914 | "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757", 1915 | "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757", 1916 | "shasum": "" 1917 | }, 1918 | "require": { 1919 | "php": "^5.5 || ^7.0", 1920 | "symfony/css-selector": "^2.7 || ^3.0 || ^4.0" 1921 | }, 1922 | "require-dev": { 1923 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" 1924 | }, 1925 | "type": "library", 1926 | "extra": { 1927 | "branch-alias": { 1928 | "dev-master": "2.2.x-dev" 1929 | } 1930 | }, 1931 | "autoload": { 1932 | "psr-4": { 1933 | "TijsVerkoyen\\CssToInlineStyles\\": "src" 1934 | } 1935 | }, 1936 | "notification-url": "https://packagist.org/downloads/", 1937 | "license": [ 1938 | "BSD-3-Clause" 1939 | ], 1940 | "authors": [ 1941 | { 1942 | "name": "Tijs Verkoyen", 1943 | "email": "css_to_inline_styles@verkoyen.eu", 1944 | "role": "Developer" 1945 | } 1946 | ], 1947 | "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", 1948 | "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", 1949 | "time": "2017-11-27T11:13:29+00:00" 1950 | }, 1951 | { 1952 | "name": "vlucas/phpdotenv", 1953 | "version": "v2.5.1", 1954 | "source": { 1955 | "type": "git", 1956 | "url": "https://github.com/vlucas/phpdotenv.git", 1957 | "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e" 1958 | }, 1959 | "dist": { 1960 | "type": "zip", 1961 | "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e", 1962 | "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e", 1963 | "shasum": "" 1964 | }, 1965 | "require": { 1966 | "php": ">=5.3.9" 1967 | }, 1968 | "require-dev": { 1969 | "phpunit/phpunit": "^4.8.35 || ^5.0" 1970 | }, 1971 | "type": "library", 1972 | "extra": { 1973 | "branch-alias": { 1974 | "dev-master": "2.5-dev" 1975 | } 1976 | }, 1977 | "autoload": { 1978 | "psr-4": { 1979 | "Dotenv\\": "src/" 1980 | } 1981 | }, 1982 | "notification-url": "https://packagist.org/downloads/", 1983 | "license": [ 1984 | "BSD-3-Clause" 1985 | ], 1986 | "authors": [ 1987 | { 1988 | "name": "Vance Lucas", 1989 | "email": "vance@vancelucas.com", 1990 | "homepage": "http://www.vancelucas.com" 1991 | } 1992 | ], 1993 | "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", 1994 | "keywords": [ 1995 | "dotenv", 1996 | "env", 1997 | "environment" 1998 | ], 1999 | "time": "2018-07-29T20:33:41+00:00" 2000 | } 2001 | ], 2002 | "packages-dev": [ 2003 | { 2004 | "name": "doctrine/instantiator", 2005 | "version": "1.1.0", 2006 | "source": { 2007 | "type": "git", 2008 | "url": "https://github.com/doctrine/instantiator.git", 2009 | "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda" 2010 | }, 2011 | "dist": { 2012 | "type": "zip", 2013 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", 2014 | "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", 2015 | "shasum": "" 2016 | }, 2017 | "require": { 2018 | "php": "^7.1" 2019 | }, 2020 | "require-dev": { 2021 | "athletic/athletic": "~0.1.8", 2022 | "ext-pdo": "*", 2023 | "ext-phar": "*", 2024 | "phpunit/phpunit": "^6.2.3", 2025 | "squizlabs/php_codesniffer": "^3.0.2" 2026 | }, 2027 | "type": "library", 2028 | "extra": { 2029 | "branch-alias": { 2030 | "dev-master": "1.2.x-dev" 2031 | } 2032 | }, 2033 | "autoload": { 2034 | "psr-4": { 2035 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 2036 | } 2037 | }, 2038 | "notification-url": "https://packagist.org/downloads/", 2039 | "license": [ 2040 | "MIT" 2041 | ], 2042 | "authors": [ 2043 | { 2044 | "name": "Marco Pivetta", 2045 | "email": "ocramius@gmail.com", 2046 | "homepage": "http://ocramius.github.com/" 2047 | } 2048 | ], 2049 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 2050 | "homepage": "https://github.com/doctrine/instantiator", 2051 | "keywords": [ 2052 | "constructor", 2053 | "instantiate" 2054 | ], 2055 | "time": "2017-07-22T11:58:36+00:00" 2056 | }, 2057 | { 2058 | "name": "fzaninotto/faker", 2059 | "version": "v1.8.0", 2060 | "source": { 2061 | "type": "git", 2062 | "url": "https://github.com/fzaninotto/Faker.git", 2063 | "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de" 2064 | }, 2065 | "dist": { 2066 | "type": "zip", 2067 | "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de", 2068 | "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de", 2069 | "shasum": "" 2070 | }, 2071 | "require": { 2072 | "php": "^5.3.3 || ^7.0" 2073 | }, 2074 | "require-dev": { 2075 | "ext-intl": "*", 2076 | "phpunit/phpunit": "^4.8.35 || ^5.7", 2077 | "squizlabs/php_codesniffer": "^1.5" 2078 | }, 2079 | "type": "library", 2080 | "extra": { 2081 | "branch-alias": { 2082 | "dev-master": "1.8-dev" 2083 | } 2084 | }, 2085 | "autoload": { 2086 | "psr-4": { 2087 | "Faker\\": "src/Faker/" 2088 | } 2089 | }, 2090 | "notification-url": "https://packagist.org/downloads/", 2091 | "license": [ 2092 | "MIT" 2093 | ], 2094 | "authors": [ 2095 | { 2096 | "name": "François Zaninotto" 2097 | } 2098 | ], 2099 | "description": "Faker is a PHP library that generates fake data for you.", 2100 | "keywords": [ 2101 | "data", 2102 | "faker", 2103 | "fixtures" 2104 | ], 2105 | "time": "2018-07-12T10:23:15+00:00" 2106 | }, 2107 | { 2108 | "name": "myclabs/deep-copy", 2109 | "version": "1.8.1", 2110 | "source": { 2111 | "type": "git", 2112 | "url": "https://github.com/myclabs/DeepCopy.git", 2113 | "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8" 2114 | }, 2115 | "dist": { 2116 | "type": "zip", 2117 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8", 2118 | "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8", 2119 | "shasum": "" 2120 | }, 2121 | "require": { 2122 | "php": "^7.1" 2123 | }, 2124 | "replace": { 2125 | "myclabs/deep-copy": "self.version" 2126 | }, 2127 | "require-dev": { 2128 | "doctrine/collections": "^1.0", 2129 | "doctrine/common": "^2.6", 2130 | "phpunit/phpunit": "^7.1" 2131 | }, 2132 | "type": "library", 2133 | "autoload": { 2134 | "psr-4": { 2135 | "DeepCopy\\": "src/DeepCopy/" 2136 | }, 2137 | "files": [ 2138 | "src/DeepCopy/deep_copy.php" 2139 | ] 2140 | }, 2141 | "notification-url": "https://packagist.org/downloads/", 2142 | "license": [ 2143 | "MIT" 2144 | ], 2145 | "description": "Create deep copies (clones) of your objects", 2146 | "keywords": [ 2147 | "clone", 2148 | "copy", 2149 | "duplicate", 2150 | "object", 2151 | "object graph" 2152 | ], 2153 | "time": "2018-06-11T23:09:50+00:00" 2154 | }, 2155 | { 2156 | "name": "orchestra/testbench", 2157 | "version": "v3.7.4", 2158 | "source": { 2159 | "type": "git", 2160 | "url": "https://github.com/orchestral/testbench.git", 2161 | "reference": "c569608fcecc9ee044f2485d58c1ac5fab26ee2f" 2162 | }, 2163 | "dist": { 2164 | "type": "zip", 2165 | "url": "https://api.github.com/repos/orchestral/testbench/zipball/c569608fcecc9ee044f2485d58c1ac5fab26ee2f", 2166 | "reference": "c569608fcecc9ee044f2485d58c1ac5fab26ee2f", 2167 | "shasum": "" 2168 | }, 2169 | "require": { 2170 | "laravel/framework": "~5.7.4", 2171 | "orchestra/testbench-core": "~3.7.5", 2172 | "php": ">=7.1", 2173 | "phpunit/phpunit": "^7.0" 2174 | }, 2175 | "require-dev": { 2176 | "mockery/mockery": "^1.0" 2177 | }, 2178 | "type": "library", 2179 | "extra": { 2180 | "branch-alias": { 2181 | "dev-master": "3.7-dev" 2182 | } 2183 | }, 2184 | "notification-url": "https://packagist.org/downloads/", 2185 | "license": [ 2186 | "MIT" 2187 | ], 2188 | "authors": [ 2189 | { 2190 | "name": "Mior Muhammad Zaki", 2191 | "email": "crynobone@gmail.com", 2192 | "homepage": "https://github.com/crynobone" 2193 | } 2194 | ], 2195 | "description": "Laravel Testing Helper for Packages Development", 2196 | "homepage": "http://orchestraplatform.com/docs/latest/components/testbench/", 2197 | "keywords": [ 2198 | "BDD", 2199 | "TDD", 2200 | "laravel", 2201 | "orchestra-platform", 2202 | "orchestral", 2203 | "testing" 2204 | ], 2205 | "time": "2018-10-07T02:44:38+00:00" 2206 | }, 2207 | { 2208 | "name": "orchestra/testbench-core", 2209 | "version": "v3.7.5", 2210 | "source": { 2211 | "type": "git", 2212 | "url": "https://github.com/orchestral/testbench-core.git", 2213 | "reference": "9ef7319cc288a613e38f456f0349907dfeb2587f" 2214 | }, 2215 | "dist": { 2216 | "type": "zip", 2217 | "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/9ef7319cc288a613e38f456f0349907dfeb2587f", 2218 | "reference": "9ef7319cc288a613e38f456f0349907dfeb2587f", 2219 | "shasum": "" 2220 | }, 2221 | "require": { 2222 | "fzaninotto/faker": "^1.4", 2223 | "php": ">=7.1" 2224 | }, 2225 | "require-dev": { 2226 | "laravel/framework": "~5.7.4", 2227 | "mockery/mockery": "^1.0", 2228 | "phpunit/phpunit": "^7.0" 2229 | }, 2230 | "suggest": { 2231 | "laravel/framework": "Required for testing (~5.7.4).", 2232 | "mockery/mockery": "Allow to use Mockery for testing (^1.0).", 2233 | "orchestra/testbench-browser-kit": "Allow to use legacy Laravel BrowserKit for testing (~3.7).", 2234 | "orchestra/testbench-dusk": "Allow to use Laravel Dusk for testing (~3.7).", 2235 | "phpunit/phpunit": "Allow to use PHPUnit for testing (^7.0)." 2236 | }, 2237 | "type": "library", 2238 | "extra": { 2239 | "branch-alias": { 2240 | "dev-master": "3.7-dev" 2241 | } 2242 | }, 2243 | "autoload": { 2244 | "psr-4": { 2245 | "Orchestra\\Testbench\\": "src/" 2246 | } 2247 | }, 2248 | "notification-url": "https://packagist.org/downloads/", 2249 | "license": [ 2250 | "MIT" 2251 | ], 2252 | "authors": [ 2253 | { 2254 | "name": "Mior Muhammad Zaki", 2255 | "email": "crynobone@gmail.com", 2256 | "homepage": "https://github.com/crynobone" 2257 | } 2258 | ], 2259 | "description": "Testing Helper for Laravel Development", 2260 | "homepage": "http://orchestraplatform.com/docs/latest/components/testbench/", 2261 | "keywords": [ 2262 | "BDD", 2263 | "TDD", 2264 | "laravel", 2265 | "orchestra-platform", 2266 | "orchestral", 2267 | "testing" 2268 | ], 2269 | "time": "2018-10-07T01:22:19+00:00" 2270 | }, 2271 | { 2272 | "name": "phar-io/manifest", 2273 | "version": "1.0.3", 2274 | "source": { 2275 | "type": "git", 2276 | "url": "https://github.com/phar-io/manifest.git", 2277 | "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" 2278 | }, 2279 | "dist": { 2280 | "type": "zip", 2281 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", 2282 | "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", 2283 | "shasum": "" 2284 | }, 2285 | "require": { 2286 | "ext-dom": "*", 2287 | "ext-phar": "*", 2288 | "phar-io/version": "^2.0", 2289 | "php": "^5.6 || ^7.0" 2290 | }, 2291 | "type": "library", 2292 | "extra": { 2293 | "branch-alias": { 2294 | "dev-master": "1.0.x-dev" 2295 | } 2296 | }, 2297 | "autoload": { 2298 | "classmap": [ 2299 | "src/" 2300 | ] 2301 | }, 2302 | "notification-url": "https://packagist.org/downloads/", 2303 | "license": [ 2304 | "BSD-3-Clause" 2305 | ], 2306 | "authors": [ 2307 | { 2308 | "name": "Arne Blankerts", 2309 | "email": "arne@blankerts.de", 2310 | "role": "Developer" 2311 | }, 2312 | { 2313 | "name": "Sebastian Heuer", 2314 | "email": "sebastian@phpeople.de", 2315 | "role": "Developer" 2316 | }, 2317 | { 2318 | "name": "Sebastian Bergmann", 2319 | "email": "sebastian@phpunit.de", 2320 | "role": "Developer" 2321 | } 2322 | ], 2323 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", 2324 | "time": "2018-07-08T19:23:20+00:00" 2325 | }, 2326 | { 2327 | "name": "phar-io/version", 2328 | "version": "2.0.1", 2329 | "source": { 2330 | "type": "git", 2331 | "url": "https://github.com/phar-io/version.git", 2332 | "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" 2333 | }, 2334 | "dist": { 2335 | "type": "zip", 2336 | "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", 2337 | "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", 2338 | "shasum": "" 2339 | }, 2340 | "require": { 2341 | "php": "^5.6 || ^7.0" 2342 | }, 2343 | "type": "library", 2344 | "autoload": { 2345 | "classmap": [ 2346 | "src/" 2347 | ] 2348 | }, 2349 | "notification-url": "https://packagist.org/downloads/", 2350 | "license": [ 2351 | "BSD-3-Clause" 2352 | ], 2353 | "authors": [ 2354 | { 2355 | "name": "Arne Blankerts", 2356 | "email": "arne@blankerts.de", 2357 | "role": "Developer" 2358 | }, 2359 | { 2360 | "name": "Sebastian Heuer", 2361 | "email": "sebastian@phpeople.de", 2362 | "role": "Developer" 2363 | }, 2364 | { 2365 | "name": "Sebastian Bergmann", 2366 | "email": "sebastian@phpunit.de", 2367 | "role": "Developer" 2368 | } 2369 | ], 2370 | "description": "Library for handling version information and constraints", 2371 | "time": "2018-07-08T19:19:57+00:00" 2372 | }, 2373 | { 2374 | "name": "phpdocumentor/reflection-common", 2375 | "version": "1.0.1", 2376 | "source": { 2377 | "type": "git", 2378 | "url": "https://github.com/phpDocumentor/ReflectionCommon.git", 2379 | "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" 2380 | }, 2381 | "dist": { 2382 | "type": "zip", 2383 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", 2384 | "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", 2385 | "shasum": "" 2386 | }, 2387 | "require": { 2388 | "php": ">=5.5" 2389 | }, 2390 | "require-dev": { 2391 | "phpunit/phpunit": "^4.6" 2392 | }, 2393 | "type": "library", 2394 | "extra": { 2395 | "branch-alias": { 2396 | "dev-master": "1.0.x-dev" 2397 | } 2398 | }, 2399 | "autoload": { 2400 | "psr-4": { 2401 | "phpDocumentor\\Reflection\\": [ 2402 | "src" 2403 | ] 2404 | } 2405 | }, 2406 | "notification-url": "https://packagist.org/downloads/", 2407 | "license": [ 2408 | "MIT" 2409 | ], 2410 | "authors": [ 2411 | { 2412 | "name": "Jaap van Otterdijk", 2413 | "email": "opensource@ijaap.nl" 2414 | } 2415 | ], 2416 | "description": "Common reflection classes used by phpdocumentor to reflect the code structure", 2417 | "homepage": "http://www.phpdoc.org", 2418 | "keywords": [ 2419 | "FQSEN", 2420 | "phpDocumentor", 2421 | "phpdoc", 2422 | "reflection", 2423 | "static analysis" 2424 | ], 2425 | "time": "2017-09-11T18:02:19+00:00" 2426 | }, 2427 | { 2428 | "name": "phpdocumentor/reflection-docblock", 2429 | "version": "4.3.0", 2430 | "source": { 2431 | "type": "git", 2432 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", 2433 | "reference": "94fd0001232e47129dd3504189fa1c7225010d08" 2434 | }, 2435 | "dist": { 2436 | "type": "zip", 2437 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", 2438 | "reference": "94fd0001232e47129dd3504189fa1c7225010d08", 2439 | "shasum": "" 2440 | }, 2441 | "require": { 2442 | "php": "^7.0", 2443 | "phpdocumentor/reflection-common": "^1.0.0", 2444 | "phpdocumentor/type-resolver": "^0.4.0", 2445 | "webmozart/assert": "^1.0" 2446 | }, 2447 | "require-dev": { 2448 | "doctrine/instantiator": "~1.0.5", 2449 | "mockery/mockery": "^1.0", 2450 | "phpunit/phpunit": "^6.4" 2451 | }, 2452 | "type": "library", 2453 | "extra": { 2454 | "branch-alias": { 2455 | "dev-master": "4.x-dev" 2456 | } 2457 | }, 2458 | "autoload": { 2459 | "psr-4": { 2460 | "phpDocumentor\\Reflection\\": [ 2461 | "src/" 2462 | ] 2463 | } 2464 | }, 2465 | "notification-url": "https://packagist.org/downloads/", 2466 | "license": [ 2467 | "MIT" 2468 | ], 2469 | "authors": [ 2470 | { 2471 | "name": "Mike van Riel", 2472 | "email": "me@mikevanriel.com" 2473 | } 2474 | ], 2475 | "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", 2476 | "time": "2017-11-30T07:14:17+00:00" 2477 | }, 2478 | { 2479 | "name": "phpdocumentor/type-resolver", 2480 | "version": "0.4.0", 2481 | "source": { 2482 | "type": "git", 2483 | "url": "https://github.com/phpDocumentor/TypeResolver.git", 2484 | "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" 2485 | }, 2486 | "dist": { 2487 | "type": "zip", 2488 | "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", 2489 | "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", 2490 | "shasum": "" 2491 | }, 2492 | "require": { 2493 | "php": "^5.5 || ^7.0", 2494 | "phpdocumentor/reflection-common": "^1.0" 2495 | }, 2496 | "require-dev": { 2497 | "mockery/mockery": "^0.9.4", 2498 | "phpunit/phpunit": "^5.2||^4.8.24" 2499 | }, 2500 | "type": "library", 2501 | "extra": { 2502 | "branch-alias": { 2503 | "dev-master": "1.0.x-dev" 2504 | } 2505 | }, 2506 | "autoload": { 2507 | "psr-4": { 2508 | "phpDocumentor\\Reflection\\": [ 2509 | "src/" 2510 | ] 2511 | } 2512 | }, 2513 | "notification-url": "https://packagist.org/downloads/", 2514 | "license": [ 2515 | "MIT" 2516 | ], 2517 | "authors": [ 2518 | { 2519 | "name": "Mike van Riel", 2520 | "email": "me@mikevanriel.com" 2521 | } 2522 | ], 2523 | "time": "2017-07-14T14:27:02+00:00" 2524 | }, 2525 | { 2526 | "name": "phpspec/prophecy", 2527 | "version": "1.8.0", 2528 | "source": { 2529 | "type": "git", 2530 | "url": "https://github.com/phpspec/prophecy.git", 2531 | "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06" 2532 | }, 2533 | "dist": { 2534 | "type": "zip", 2535 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06", 2536 | "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06", 2537 | "shasum": "" 2538 | }, 2539 | "require": { 2540 | "doctrine/instantiator": "^1.0.2", 2541 | "php": "^5.3|^7.0", 2542 | "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", 2543 | "sebastian/comparator": "^1.1|^2.0|^3.0", 2544 | "sebastian/recursion-context": "^1.0|^2.0|^3.0" 2545 | }, 2546 | "require-dev": { 2547 | "phpspec/phpspec": "^2.5|^3.2", 2548 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" 2549 | }, 2550 | "type": "library", 2551 | "extra": { 2552 | "branch-alias": { 2553 | "dev-master": "1.8.x-dev" 2554 | } 2555 | }, 2556 | "autoload": { 2557 | "psr-0": { 2558 | "Prophecy\\": "src/" 2559 | } 2560 | }, 2561 | "notification-url": "https://packagist.org/downloads/", 2562 | "license": [ 2563 | "MIT" 2564 | ], 2565 | "authors": [ 2566 | { 2567 | "name": "Konstantin Kudryashov", 2568 | "email": "ever.zet@gmail.com", 2569 | "homepage": "http://everzet.com" 2570 | }, 2571 | { 2572 | "name": "Marcello Duarte", 2573 | "email": "marcello.duarte@gmail.com" 2574 | } 2575 | ], 2576 | "description": "Highly opinionated mocking framework for PHP 5.3+", 2577 | "homepage": "https://github.com/phpspec/prophecy", 2578 | "keywords": [ 2579 | "Double", 2580 | "Dummy", 2581 | "fake", 2582 | "mock", 2583 | "spy", 2584 | "stub" 2585 | ], 2586 | "time": "2018-08-05T17:53:17+00:00" 2587 | }, 2588 | { 2589 | "name": "phpunit/php-code-coverage", 2590 | "version": "6.1.1", 2591 | "source": { 2592 | "type": "git", 2593 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 2594 | "reference": "b097681a19a48e52706f57e47a09594bac4f7cab" 2595 | }, 2596 | "dist": { 2597 | "type": "zip", 2598 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b097681a19a48e52706f57e47a09594bac4f7cab", 2599 | "reference": "b097681a19a48e52706f57e47a09594bac4f7cab", 2600 | "shasum": "" 2601 | }, 2602 | "require": { 2603 | "ext-dom": "*", 2604 | "ext-xmlwriter": "*", 2605 | "php": "^7.1", 2606 | "phpunit/php-file-iterator": "^2.0", 2607 | "phpunit/php-text-template": "^1.2.1", 2608 | "phpunit/php-token-stream": "^3.0", 2609 | "sebastian/code-unit-reverse-lookup": "^1.0.1", 2610 | "sebastian/environment": "^3.1 || ^4.0", 2611 | "sebastian/version": "^2.0.1", 2612 | "theseer/tokenizer": "^1.1" 2613 | }, 2614 | "require-dev": { 2615 | "phpunit/phpunit": "^7.0" 2616 | }, 2617 | "suggest": { 2618 | "ext-xdebug": "^2.6.0" 2619 | }, 2620 | "type": "library", 2621 | "extra": { 2622 | "branch-alias": { 2623 | "dev-master": "6.1-dev" 2624 | } 2625 | }, 2626 | "autoload": { 2627 | "classmap": [ 2628 | "src/" 2629 | ] 2630 | }, 2631 | "notification-url": "https://packagist.org/downloads/", 2632 | "license": [ 2633 | "BSD-3-Clause" 2634 | ], 2635 | "authors": [ 2636 | { 2637 | "name": "Sebastian Bergmann", 2638 | "email": "sebastian@phpunit.de", 2639 | "role": "lead" 2640 | } 2641 | ], 2642 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 2643 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 2644 | "keywords": [ 2645 | "coverage", 2646 | "testing", 2647 | "xunit" 2648 | ], 2649 | "time": "2018-10-18T09:01:38+00:00" 2650 | }, 2651 | { 2652 | "name": "phpunit/php-file-iterator", 2653 | "version": "2.0.2", 2654 | "source": { 2655 | "type": "git", 2656 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 2657 | "reference": "050bedf145a257b1ff02746c31894800e5122946" 2658 | }, 2659 | "dist": { 2660 | "type": "zip", 2661 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", 2662 | "reference": "050bedf145a257b1ff02746c31894800e5122946", 2663 | "shasum": "" 2664 | }, 2665 | "require": { 2666 | "php": "^7.1" 2667 | }, 2668 | "require-dev": { 2669 | "phpunit/phpunit": "^7.1" 2670 | }, 2671 | "type": "library", 2672 | "extra": { 2673 | "branch-alias": { 2674 | "dev-master": "2.0.x-dev" 2675 | } 2676 | }, 2677 | "autoload": { 2678 | "classmap": [ 2679 | "src/" 2680 | ] 2681 | }, 2682 | "notification-url": "https://packagist.org/downloads/", 2683 | "license": [ 2684 | "BSD-3-Clause" 2685 | ], 2686 | "authors": [ 2687 | { 2688 | "name": "Sebastian Bergmann", 2689 | "email": "sebastian@phpunit.de", 2690 | "role": "lead" 2691 | } 2692 | ], 2693 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 2694 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 2695 | "keywords": [ 2696 | "filesystem", 2697 | "iterator" 2698 | ], 2699 | "time": "2018-09-13T20:33:42+00:00" 2700 | }, 2701 | { 2702 | "name": "phpunit/php-text-template", 2703 | "version": "1.2.1", 2704 | "source": { 2705 | "type": "git", 2706 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 2707 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" 2708 | }, 2709 | "dist": { 2710 | "type": "zip", 2711 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 2712 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 2713 | "shasum": "" 2714 | }, 2715 | "require": { 2716 | "php": ">=5.3.3" 2717 | }, 2718 | "type": "library", 2719 | "autoload": { 2720 | "classmap": [ 2721 | "src/" 2722 | ] 2723 | }, 2724 | "notification-url": "https://packagist.org/downloads/", 2725 | "license": [ 2726 | "BSD-3-Clause" 2727 | ], 2728 | "authors": [ 2729 | { 2730 | "name": "Sebastian Bergmann", 2731 | "email": "sebastian@phpunit.de", 2732 | "role": "lead" 2733 | } 2734 | ], 2735 | "description": "Simple template engine.", 2736 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 2737 | "keywords": [ 2738 | "template" 2739 | ], 2740 | "time": "2015-06-21T13:50:34+00:00" 2741 | }, 2742 | { 2743 | "name": "phpunit/php-timer", 2744 | "version": "2.0.0", 2745 | "source": { 2746 | "type": "git", 2747 | "url": "https://github.com/sebastianbergmann/php-timer.git", 2748 | "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f" 2749 | }, 2750 | "dist": { 2751 | "type": "zip", 2752 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f", 2753 | "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f", 2754 | "shasum": "" 2755 | }, 2756 | "require": { 2757 | "php": "^7.1" 2758 | }, 2759 | "require-dev": { 2760 | "phpunit/phpunit": "^7.0" 2761 | }, 2762 | "type": "library", 2763 | "extra": { 2764 | "branch-alias": { 2765 | "dev-master": "2.0-dev" 2766 | } 2767 | }, 2768 | "autoload": { 2769 | "classmap": [ 2770 | "src/" 2771 | ] 2772 | }, 2773 | "notification-url": "https://packagist.org/downloads/", 2774 | "license": [ 2775 | "BSD-3-Clause" 2776 | ], 2777 | "authors": [ 2778 | { 2779 | "name": "Sebastian Bergmann", 2780 | "email": "sebastian@phpunit.de", 2781 | "role": "lead" 2782 | } 2783 | ], 2784 | "description": "Utility class for timing", 2785 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 2786 | "keywords": [ 2787 | "timer" 2788 | ], 2789 | "time": "2018-02-01T13:07:23+00:00" 2790 | }, 2791 | { 2792 | "name": "phpunit/php-token-stream", 2793 | "version": "3.0.0", 2794 | "source": { 2795 | "type": "git", 2796 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", 2797 | "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace" 2798 | }, 2799 | "dist": { 2800 | "type": "zip", 2801 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/21ad88bbba7c3d93530d93994e0a33cd45f02ace", 2802 | "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace", 2803 | "shasum": "" 2804 | }, 2805 | "require": { 2806 | "ext-tokenizer": "*", 2807 | "php": "^7.1" 2808 | }, 2809 | "require-dev": { 2810 | "phpunit/phpunit": "^7.0" 2811 | }, 2812 | "type": "library", 2813 | "extra": { 2814 | "branch-alias": { 2815 | "dev-master": "3.0-dev" 2816 | } 2817 | }, 2818 | "autoload": { 2819 | "classmap": [ 2820 | "src/" 2821 | ] 2822 | }, 2823 | "notification-url": "https://packagist.org/downloads/", 2824 | "license": [ 2825 | "BSD-3-Clause" 2826 | ], 2827 | "authors": [ 2828 | { 2829 | "name": "Sebastian Bergmann", 2830 | "email": "sebastian@phpunit.de" 2831 | } 2832 | ], 2833 | "description": "Wrapper around PHP's tokenizer extension.", 2834 | "homepage": "https://github.com/sebastianbergmann/php-token-stream/", 2835 | "keywords": [ 2836 | "tokenizer" 2837 | ], 2838 | "time": "2018-02-01T13:16:43+00:00" 2839 | }, 2840 | { 2841 | "name": "phpunit/phpunit", 2842 | "version": "7.4.1", 2843 | "source": { 2844 | "type": "git", 2845 | "url": "https://github.com/sebastianbergmann/phpunit.git", 2846 | "reference": "c5a120ade60992bd671a912188ee9ee9f8083bbd" 2847 | }, 2848 | "dist": { 2849 | "type": "zip", 2850 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c5a120ade60992bd671a912188ee9ee9f8083bbd", 2851 | "reference": "c5a120ade60992bd671a912188ee9ee9f8083bbd", 2852 | "shasum": "" 2853 | }, 2854 | "require": { 2855 | "doctrine/instantiator": "^1.1", 2856 | "ext-dom": "*", 2857 | "ext-json": "*", 2858 | "ext-libxml": "*", 2859 | "ext-mbstring": "*", 2860 | "ext-xml": "*", 2861 | "myclabs/deep-copy": "^1.7", 2862 | "phar-io/manifest": "^1.0.2", 2863 | "phar-io/version": "^2.0", 2864 | "php": "^7.1", 2865 | "phpspec/prophecy": "^1.7", 2866 | "phpunit/php-code-coverage": "^6.0.7", 2867 | "phpunit/php-file-iterator": "^2.0.1", 2868 | "phpunit/php-text-template": "^1.2.1", 2869 | "phpunit/php-timer": "^2.0", 2870 | "sebastian/comparator": "^3.0", 2871 | "sebastian/diff": "^3.0", 2872 | "sebastian/environment": "^3.1 || ^4.0", 2873 | "sebastian/exporter": "^3.1", 2874 | "sebastian/global-state": "^2.0", 2875 | "sebastian/object-enumerator": "^3.0.3", 2876 | "sebastian/resource-operations": "^2.0", 2877 | "sebastian/version": "^2.0.1" 2878 | }, 2879 | "conflict": { 2880 | "phpunit/phpunit-mock-objects": "*" 2881 | }, 2882 | "require-dev": { 2883 | "ext-pdo": "*" 2884 | }, 2885 | "suggest": { 2886 | "ext-soap": "*", 2887 | "ext-xdebug": "*", 2888 | "phpunit/php-invoker": "^2.0" 2889 | }, 2890 | "bin": [ 2891 | "phpunit" 2892 | ], 2893 | "type": "library", 2894 | "extra": { 2895 | "branch-alias": { 2896 | "dev-master": "7.4-dev" 2897 | } 2898 | }, 2899 | "autoload": { 2900 | "classmap": [ 2901 | "src/" 2902 | ] 2903 | }, 2904 | "notification-url": "https://packagist.org/downloads/", 2905 | "license": [ 2906 | "BSD-3-Clause" 2907 | ], 2908 | "authors": [ 2909 | { 2910 | "name": "Sebastian Bergmann", 2911 | "email": "sebastian@phpunit.de", 2912 | "role": "lead" 2913 | } 2914 | ], 2915 | "description": "The PHP Unit Testing framework.", 2916 | "homepage": "https://phpunit.de/", 2917 | "keywords": [ 2918 | "phpunit", 2919 | "testing", 2920 | "xunit" 2921 | ], 2922 | "time": "2018-10-18T09:02:52+00:00" 2923 | }, 2924 | { 2925 | "name": "sebastian/code-unit-reverse-lookup", 2926 | "version": "1.0.1", 2927 | "source": { 2928 | "type": "git", 2929 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", 2930 | "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" 2931 | }, 2932 | "dist": { 2933 | "type": "zip", 2934 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", 2935 | "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", 2936 | "shasum": "" 2937 | }, 2938 | "require": { 2939 | "php": "^5.6 || ^7.0" 2940 | }, 2941 | "require-dev": { 2942 | "phpunit/phpunit": "^5.7 || ^6.0" 2943 | }, 2944 | "type": "library", 2945 | "extra": { 2946 | "branch-alias": { 2947 | "dev-master": "1.0.x-dev" 2948 | } 2949 | }, 2950 | "autoload": { 2951 | "classmap": [ 2952 | "src/" 2953 | ] 2954 | }, 2955 | "notification-url": "https://packagist.org/downloads/", 2956 | "license": [ 2957 | "BSD-3-Clause" 2958 | ], 2959 | "authors": [ 2960 | { 2961 | "name": "Sebastian Bergmann", 2962 | "email": "sebastian@phpunit.de" 2963 | } 2964 | ], 2965 | "description": "Looks up which function or method a line of code belongs to", 2966 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", 2967 | "time": "2017-03-04T06:30:41+00:00" 2968 | }, 2969 | { 2970 | "name": "sebastian/comparator", 2971 | "version": "3.0.2", 2972 | "source": { 2973 | "type": "git", 2974 | "url": "https://github.com/sebastianbergmann/comparator.git", 2975 | "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" 2976 | }, 2977 | "dist": { 2978 | "type": "zip", 2979 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", 2980 | "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", 2981 | "shasum": "" 2982 | }, 2983 | "require": { 2984 | "php": "^7.1", 2985 | "sebastian/diff": "^3.0", 2986 | "sebastian/exporter": "^3.1" 2987 | }, 2988 | "require-dev": { 2989 | "phpunit/phpunit": "^7.1" 2990 | }, 2991 | "type": "library", 2992 | "extra": { 2993 | "branch-alias": { 2994 | "dev-master": "3.0-dev" 2995 | } 2996 | }, 2997 | "autoload": { 2998 | "classmap": [ 2999 | "src/" 3000 | ] 3001 | }, 3002 | "notification-url": "https://packagist.org/downloads/", 3003 | "license": [ 3004 | "BSD-3-Clause" 3005 | ], 3006 | "authors": [ 3007 | { 3008 | "name": "Jeff Welch", 3009 | "email": "whatthejeff@gmail.com" 3010 | }, 3011 | { 3012 | "name": "Volker Dusch", 3013 | "email": "github@wallbash.com" 3014 | }, 3015 | { 3016 | "name": "Bernhard Schussek", 3017 | "email": "bschussek@2bepublished.at" 3018 | }, 3019 | { 3020 | "name": "Sebastian Bergmann", 3021 | "email": "sebastian@phpunit.de" 3022 | } 3023 | ], 3024 | "description": "Provides the functionality to compare PHP values for equality", 3025 | "homepage": "https://github.com/sebastianbergmann/comparator", 3026 | "keywords": [ 3027 | "comparator", 3028 | "compare", 3029 | "equality" 3030 | ], 3031 | "time": "2018-07-12T15:12:46+00:00" 3032 | }, 3033 | { 3034 | "name": "sebastian/diff", 3035 | "version": "3.0.1", 3036 | "source": { 3037 | "type": "git", 3038 | "url": "https://github.com/sebastianbergmann/diff.git", 3039 | "reference": "366541b989927187c4ca70490a35615d3fef2dce" 3040 | }, 3041 | "dist": { 3042 | "type": "zip", 3043 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/366541b989927187c4ca70490a35615d3fef2dce", 3044 | "reference": "366541b989927187c4ca70490a35615d3fef2dce", 3045 | "shasum": "" 3046 | }, 3047 | "require": { 3048 | "php": "^7.1" 3049 | }, 3050 | "require-dev": { 3051 | "phpunit/phpunit": "^7.0", 3052 | "symfony/process": "^2 || ^3.3 || ^4" 3053 | }, 3054 | "type": "library", 3055 | "extra": { 3056 | "branch-alias": { 3057 | "dev-master": "3.0-dev" 3058 | } 3059 | }, 3060 | "autoload": { 3061 | "classmap": [ 3062 | "src/" 3063 | ] 3064 | }, 3065 | "notification-url": "https://packagist.org/downloads/", 3066 | "license": [ 3067 | "BSD-3-Clause" 3068 | ], 3069 | "authors": [ 3070 | { 3071 | "name": "Kore Nordmann", 3072 | "email": "mail@kore-nordmann.de" 3073 | }, 3074 | { 3075 | "name": "Sebastian Bergmann", 3076 | "email": "sebastian@phpunit.de" 3077 | } 3078 | ], 3079 | "description": "Diff implementation", 3080 | "homepage": "https://github.com/sebastianbergmann/diff", 3081 | "keywords": [ 3082 | "diff", 3083 | "udiff", 3084 | "unidiff", 3085 | "unified diff" 3086 | ], 3087 | "time": "2018-06-10T07:54:39+00:00" 3088 | }, 3089 | { 3090 | "name": "sebastian/environment", 3091 | "version": "3.1.0", 3092 | "source": { 3093 | "type": "git", 3094 | "url": "https://github.com/sebastianbergmann/environment.git", 3095 | "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" 3096 | }, 3097 | "dist": { 3098 | "type": "zip", 3099 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", 3100 | "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", 3101 | "shasum": "" 3102 | }, 3103 | "require": { 3104 | "php": "^7.0" 3105 | }, 3106 | "require-dev": { 3107 | "phpunit/phpunit": "^6.1" 3108 | }, 3109 | "type": "library", 3110 | "extra": { 3111 | "branch-alias": { 3112 | "dev-master": "3.1.x-dev" 3113 | } 3114 | }, 3115 | "autoload": { 3116 | "classmap": [ 3117 | "src/" 3118 | ] 3119 | }, 3120 | "notification-url": "https://packagist.org/downloads/", 3121 | "license": [ 3122 | "BSD-3-Clause" 3123 | ], 3124 | "authors": [ 3125 | { 3126 | "name": "Sebastian Bergmann", 3127 | "email": "sebastian@phpunit.de" 3128 | } 3129 | ], 3130 | "description": "Provides functionality to handle HHVM/PHP environments", 3131 | "homepage": "http://www.github.com/sebastianbergmann/environment", 3132 | "keywords": [ 3133 | "Xdebug", 3134 | "environment", 3135 | "hhvm" 3136 | ], 3137 | "time": "2017-07-01T08:51:00+00:00" 3138 | }, 3139 | { 3140 | "name": "sebastian/exporter", 3141 | "version": "3.1.0", 3142 | "source": { 3143 | "type": "git", 3144 | "url": "https://github.com/sebastianbergmann/exporter.git", 3145 | "reference": "234199f4528de6d12aaa58b612e98f7d36adb937" 3146 | }, 3147 | "dist": { 3148 | "type": "zip", 3149 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937", 3150 | "reference": "234199f4528de6d12aaa58b612e98f7d36adb937", 3151 | "shasum": "" 3152 | }, 3153 | "require": { 3154 | "php": "^7.0", 3155 | "sebastian/recursion-context": "^3.0" 3156 | }, 3157 | "require-dev": { 3158 | "ext-mbstring": "*", 3159 | "phpunit/phpunit": "^6.0" 3160 | }, 3161 | "type": "library", 3162 | "extra": { 3163 | "branch-alias": { 3164 | "dev-master": "3.1.x-dev" 3165 | } 3166 | }, 3167 | "autoload": { 3168 | "classmap": [ 3169 | "src/" 3170 | ] 3171 | }, 3172 | "notification-url": "https://packagist.org/downloads/", 3173 | "license": [ 3174 | "BSD-3-Clause" 3175 | ], 3176 | "authors": [ 3177 | { 3178 | "name": "Jeff Welch", 3179 | "email": "whatthejeff@gmail.com" 3180 | }, 3181 | { 3182 | "name": "Volker Dusch", 3183 | "email": "github@wallbash.com" 3184 | }, 3185 | { 3186 | "name": "Bernhard Schussek", 3187 | "email": "bschussek@2bepublished.at" 3188 | }, 3189 | { 3190 | "name": "Sebastian Bergmann", 3191 | "email": "sebastian@phpunit.de" 3192 | }, 3193 | { 3194 | "name": "Adam Harvey", 3195 | "email": "aharvey@php.net" 3196 | } 3197 | ], 3198 | "description": "Provides the functionality to export PHP variables for visualization", 3199 | "homepage": "http://www.github.com/sebastianbergmann/exporter", 3200 | "keywords": [ 3201 | "export", 3202 | "exporter" 3203 | ], 3204 | "time": "2017-04-03T13:19:02+00:00" 3205 | }, 3206 | { 3207 | "name": "sebastian/global-state", 3208 | "version": "2.0.0", 3209 | "source": { 3210 | "type": "git", 3211 | "url": "https://github.com/sebastianbergmann/global-state.git", 3212 | "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" 3213 | }, 3214 | "dist": { 3215 | "type": "zip", 3216 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", 3217 | "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", 3218 | "shasum": "" 3219 | }, 3220 | "require": { 3221 | "php": "^7.0" 3222 | }, 3223 | "require-dev": { 3224 | "phpunit/phpunit": "^6.0" 3225 | }, 3226 | "suggest": { 3227 | "ext-uopz": "*" 3228 | }, 3229 | "type": "library", 3230 | "extra": { 3231 | "branch-alias": { 3232 | "dev-master": "2.0-dev" 3233 | } 3234 | }, 3235 | "autoload": { 3236 | "classmap": [ 3237 | "src/" 3238 | ] 3239 | }, 3240 | "notification-url": "https://packagist.org/downloads/", 3241 | "license": [ 3242 | "BSD-3-Clause" 3243 | ], 3244 | "authors": [ 3245 | { 3246 | "name": "Sebastian Bergmann", 3247 | "email": "sebastian@phpunit.de" 3248 | } 3249 | ], 3250 | "description": "Snapshotting of global state", 3251 | "homepage": "http://www.github.com/sebastianbergmann/global-state", 3252 | "keywords": [ 3253 | "global state" 3254 | ], 3255 | "time": "2017-04-27T15:39:26+00:00" 3256 | }, 3257 | { 3258 | "name": "sebastian/object-enumerator", 3259 | "version": "3.0.3", 3260 | "source": { 3261 | "type": "git", 3262 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", 3263 | "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" 3264 | }, 3265 | "dist": { 3266 | "type": "zip", 3267 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", 3268 | "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", 3269 | "shasum": "" 3270 | }, 3271 | "require": { 3272 | "php": "^7.0", 3273 | "sebastian/object-reflector": "^1.1.1", 3274 | "sebastian/recursion-context": "^3.0" 3275 | }, 3276 | "require-dev": { 3277 | "phpunit/phpunit": "^6.0" 3278 | }, 3279 | "type": "library", 3280 | "extra": { 3281 | "branch-alias": { 3282 | "dev-master": "3.0.x-dev" 3283 | } 3284 | }, 3285 | "autoload": { 3286 | "classmap": [ 3287 | "src/" 3288 | ] 3289 | }, 3290 | "notification-url": "https://packagist.org/downloads/", 3291 | "license": [ 3292 | "BSD-3-Clause" 3293 | ], 3294 | "authors": [ 3295 | { 3296 | "name": "Sebastian Bergmann", 3297 | "email": "sebastian@phpunit.de" 3298 | } 3299 | ], 3300 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", 3301 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", 3302 | "time": "2017-08-03T12:35:26+00:00" 3303 | }, 3304 | { 3305 | "name": "sebastian/object-reflector", 3306 | "version": "1.1.1", 3307 | "source": { 3308 | "type": "git", 3309 | "url": "https://github.com/sebastianbergmann/object-reflector.git", 3310 | "reference": "773f97c67f28de00d397be301821b06708fca0be" 3311 | }, 3312 | "dist": { 3313 | "type": "zip", 3314 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", 3315 | "reference": "773f97c67f28de00d397be301821b06708fca0be", 3316 | "shasum": "" 3317 | }, 3318 | "require": { 3319 | "php": "^7.0" 3320 | }, 3321 | "require-dev": { 3322 | "phpunit/phpunit": "^6.0" 3323 | }, 3324 | "type": "library", 3325 | "extra": { 3326 | "branch-alias": { 3327 | "dev-master": "1.1-dev" 3328 | } 3329 | }, 3330 | "autoload": { 3331 | "classmap": [ 3332 | "src/" 3333 | ] 3334 | }, 3335 | "notification-url": "https://packagist.org/downloads/", 3336 | "license": [ 3337 | "BSD-3-Clause" 3338 | ], 3339 | "authors": [ 3340 | { 3341 | "name": "Sebastian Bergmann", 3342 | "email": "sebastian@phpunit.de" 3343 | } 3344 | ], 3345 | "description": "Allows reflection of object attributes, including inherited and non-public ones", 3346 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", 3347 | "time": "2017-03-29T09:07:27+00:00" 3348 | }, 3349 | { 3350 | "name": "sebastian/recursion-context", 3351 | "version": "3.0.0", 3352 | "source": { 3353 | "type": "git", 3354 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 3355 | "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" 3356 | }, 3357 | "dist": { 3358 | "type": "zip", 3359 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", 3360 | "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", 3361 | "shasum": "" 3362 | }, 3363 | "require": { 3364 | "php": "^7.0" 3365 | }, 3366 | "require-dev": { 3367 | "phpunit/phpunit": "^6.0" 3368 | }, 3369 | "type": "library", 3370 | "extra": { 3371 | "branch-alias": { 3372 | "dev-master": "3.0.x-dev" 3373 | } 3374 | }, 3375 | "autoload": { 3376 | "classmap": [ 3377 | "src/" 3378 | ] 3379 | }, 3380 | "notification-url": "https://packagist.org/downloads/", 3381 | "license": [ 3382 | "BSD-3-Clause" 3383 | ], 3384 | "authors": [ 3385 | { 3386 | "name": "Jeff Welch", 3387 | "email": "whatthejeff@gmail.com" 3388 | }, 3389 | { 3390 | "name": "Sebastian Bergmann", 3391 | "email": "sebastian@phpunit.de" 3392 | }, 3393 | { 3394 | "name": "Adam Harvey", 3395 | "email": "aharvey@php.net" 3396 | } 3397 | ], 3398 | "description": "Provides functionality to recursively process PHP variables", 3399 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 3400 | "time": "2017-03-03T06:23:57+00:00" 3401 | }, 3402 | { 3403 | "name": "sebastian/resource-operations", 3404 | "version": "2.0.1", 3405 | "source": { 3406 | "type": "git", 3407 | "url": "https://github.com/sebastianbergmann/resource-operations.git", 3408 | "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" 3409 | }, 3410 | "dist": { 3411 | "type": "zip", 3412 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", 3413 | "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", 3414 | "shasum": "" 3415 | }, 3416 | "require": { 3417 | "php": "^7.1" 3418 | }, 3419 | "type": "library", 3420 | "extra": { 3421 | "branch-alias": { 3422 | "dev-master": "2.0-dev" 3423 | } 3424 | }, 3425 | "autoload": { 3426 | "classmap": [ 3427 | "src/" 3428 | ] 3429 | }, 3430 | "notification-url": "https://packagist.org/downloads/", 3431 | "license": [ 3432 | "BSD-3-Clause" 3433 | ], 3434 | "authors": [ 3435 | { 3436 | "name": "Sebastian Bergmann", 3437 | "email": "sebastian@phpunit.de" 3438 | } 3439 | ], 3440 | "description": "Provides a list of PHP built-in functions that operate on resources", 3441 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", 3442 | "time": "2018-10-04T04:07:39+00:00" 3443 | }, 3444 | { 3445 | "name": "sebastian/version", 3446 | "version": "2.0.1", 3447 | "source": { 3448 | "type": "git", 3449 | "url": "https://github.com/sebastianbergmann/version.git", 3450 | "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" 3451 | }, 3452 | "dist": { 3453 | "type": "zip", 3454 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", 3455 | "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", 3456 | "shasum": "" 3457 | }, 3458 | "require": { 3459 | "php": ">=5.6" 3460 | }, 3461 | "type": "library", 3462 | "extra": { 3463 | "branch-alias": { 3464 | "dev-master": "2.0.x-dev" 3465 | } 3466 | }, 3467 | "autoload": { 3468 | "classmap": [ 3469 | "src/" 3470 | ] 3471 | }, 3472 | "notification-url": "https://packagist.org/downloads/", 3473 | "license": [ 3474 | "BSD-3-Clause" 3475 | ], 3476 | "authors": [ 3477 | { 3478 | "name": "Sebastian Bergmann", 3479 | "email": "sebastian@phpunit.de", 3480 | "role": "lead" 3481 | } 3482 | ], 3483 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 3484 | "homepage": "https://github.com/sebastianbergmann/version", 3485 | "time": "2016-10-03T07:35:21+00:00" 3486 | }, 3487 | { 3488 | "name": "theseer/tokenizer", 3489 | "version": "1.1.0", 3490 | "source": { 3491 | "type": "git", 3492 | "url": "https://github.com/theseer/tokenizer.git", 3493 | "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b" 3494 | }, 3495 | "dist": { 3496 | "type": "zip", 3497 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b", 3498 | "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b", 3499 | "shasum": "" 3500 | }, 3501 | "require": { 3502 | "ext-dom": "*", 3503 | "ext-tokenizer": "*", 3504 | "ext-xmlwriter": "*", 3505 | "php": "^7.0" 3506 | }, 3507 | "type": "library", 3508 | "autoload": { 3509 | "classmap": [ 3510 | "src/" 3511 | ] 3512 | }, 3513 | "notification-url": "https://packagist.org/downloads/", 3514 | "license": [ 3515 | "BSD-3-Clause" 3516 | ], 3517 | "authors": [ 3518 | { 3519 | "name": "Arne Blankerts", 3520 | "email": "arne@blankerts.de", 3521 | "role": "Developer" 3522 | } 3523 | ], 3524 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", 3525 | "time": "2017-04-07T12:08:54+00:00" 3526 | }, 3527 | { 3528 | "name": "webmozart/assert", 3529 | "version": "1.3.0", 3530 | "source": { 3531 | "type": "git", 3532 | "url": "https://github.com/webmozart/assert.git", 3533 | "reference": "0df1908962e7a3071564e857d86874dad1ef204a" 3534 | }, 3535 | "dist": { 3536 | "type": "zip", 3537 | "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", 3538 | "reference": "0df1908962e7a3071564e857d86874dad1ef204a", 3539 | "shasum": "" 3540 | }, 3541 | "require": { 3542 | "php": "^5.3.3 || ^7.0" 3543 | }, 3544 | "require-dev": { 3545 | "phpunit/phpunit": "^4.6", 3546 | "sebastian/version": "^1.0.1" 3547 | }, 3548 | "type": "library", 3549 | "extra": { 3550 | "branch-alias": { 3551 | "dev-master": "1.3-dev" 3552 | } 3553 | }, 3554 | "autoload": { 3555 | "psr-4": { 3556 | "Webmozart\\Assert\\": "src/" 3557 | } 3558 | }, 3559 | "notification-url": "https://packagist.org/downloads/", 3560 | "license": [ 3561 | "MIT" 3562 | ], 3563 | "authors": [ 3564 | { 3565 | "name": "Bernhard Schussek", 3566 | "email": "bschussek@gmail.com" 3567 | } 3568 | ], 3569 | "description": "Assertions to validate method input/output with nice error messages.", 3570 | "keywords": [ 3571 | "assert", 3572 | "check", 3573 | "validate" 3574 | ], 3575 | "time": "2018-01-29T19:49:41+00:00" 3576 | } 3577 | ], 3578 | "aliases": [], 3579 | "minimum-stability": "stable", 3580 | "stability-flags": [], 3581 | "prefer-stable": false, 3582 | "prefer-lowest": false, 3583 | "platform": [], 3584 | "platform-dev": [] 3585 | } 3586 | --------------------------------------------------------------------------------