├── .gitignore ├── tests ├── bootstrap.php └── ContainerTest.php ├── .phpcs.xml ├── src ├── Exceptions │ ├── NotFoundException.php │ └── ContainerException.php └── Container.php ├── .travis.yml ├── composer.json ├── phpunit.xml ├── LICENSE ├── CONTRIBUTING.md ├── README.md ├── CODE_OF_CONDUCT.md └── composer.lock /.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | /vendor/ 3 | .idea 4 | 5 | -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catfish PHP style guide 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/Exceptions/NotFoundException.php: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | ./tests 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 David Stanley 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Contributions are **welcome** and will be fully **credited**. 4 | 5 | We accept contributions via Pull Requests on [Github](https://github.com/catfish/container). 6 | 7 | ## Pull Requests 8 | 9 | - **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer). 10 | 11 | - **Add tests!** - Your patch will not be accepted if it does not have tests. 12 | 13 | - **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date. 14 | 15 | - **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option. 16 | 17 | - **Create feature branches** - Don't ask us to pull from your master branch. 18 | 19 | - **One pull request per feature** - If you want to do more than one thing, send multiple pull requests. 20 | 21 | - **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please squash them before submitting. 22 | 23 | ## Running Tests 24 | 25 | ``` bash 26 | $ phpunit 27 | ``` 28 | 29 | **Happy coding**! 30 | -------------------------------------------------------------------------------- /tests/ContainerTest.php: -------------------------------------------------------------------------------- 1 | assertInstanceOf(Container::class, $container); 14 | } 15 | 16 | public function testSetGetScalarFromContainer() 17 | { 18 | unset($GLOBALS['di']); 19 | $value = 123; 20 | 21 | $container = new Container(); 22 | $container->add('wat', $value); 23 | $this->assertSame( 24 | $value, 25 | $container->get('wat') 26 | ); 27 | } 28 | 29 | public function testSetGetClosure() 30 | { 31 | unset($GLOBALS['di']); 32 | $value = 123; 33 | $closure = function () use ($value) { 34 | return $value; 35 | }; 36 | $container = new Container(); 37 | $container->add('wat', $closure); 38 | $this->assertSame( 39 | $value, 40 | $container->get('wat') 41 | ); 42 | } 43 | 44 | public function testExceptionThrownWhenItemNotFound() 45 | { 46 | unset($GLOBALS['di']); 47 | $this->expectException(NotFoundException::class); 48 | $this->expectExceptionMessage('wat not handled by this container'); 49 | $container = new Container(); 50 | $container->get('wat'); 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Container (Dependency Injection) 2 | 3 | ![Logo](https://avatars0.githubusercontent.com/u/38306540?s=200&v=4) 4 | 5 | [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md) 6 | [![Build Status](https://img.shields.io/travis/CatfishPHP/Container/master.svg?style=flat-square)](https://travis-ci.org/catfishphp/container) 7 | 8 | This package is compliant with [PSR-1], [PSR-2] and [PSR-4]. If you notice compliance oversights, 9 | please send a patch via pull request. 10 | 11 | [PSR-1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md 12 | [PSR-2]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md 13 | [PSR-4]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md 14 | [PSR-11]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-11-container.md 15 | 16 | ## Install 17 | 18 | Via Composer 19 | 20 | ``` bash 21 | $ composer require catfishphp/container 22 | ``` 23 | 24 | ## Requirements 25 | 26 | The following versions of PHP are supported by this version. 27 | 28 | * PHP 7.1 29 | * PHP 7.2 30 | 31 | ## Usage 32 | 33 | ```php 34 | add('service', 'Acme\Service\SomeService'); 40 | 41 | // retrieve the service from the container 42 | $service = $container->get('service'); 43 | 44 | var_dump($service instanceof Acme\Service\SomeService); // true 45 | 46 | ``` 47 | 48 | ## Testing 49 | 50 | ``` bash 51 | $ vendor/bin/phpunit 52 | ``` 53 | 54 | ## Contributing 55 | 56 | Please see [CONTRIBUTING](https://github.com/catfishphp/container/blob/master/CONTRIBUTING) for details. 57 | 58 | ## License 59 | 60 | The MIT License (MIT). Please see [License File](https://github.com/catfishphp/container/blob/master/LICENSE) for more information. 61 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /src/Container.php: -------------------------------------------------------------------------------- 1 | init(); 18 | } 19 | } 20 | 21 | /** 22 | * Initialize the container 23 | */ 24 | protected function init() 25 | { 26 | $GLOBALS['di'] = collect(['singleton' => []]); 27 | } 28 | 29 | /** 30 | * @return Collection 31 | */ 32 | public function getContainer(): Collection 33 | { 34 | if (! array_key_exists('di', $GLOBALS)) { 35 | $this->init(); 36 | } 37 | 38 | return $GLOBALS['di']; 39 | } 40 | 41 | /** 42 | * @param string $id 43 | * 44 | * @throws NotFoundExceptionInterface 45 | * @return mixed Entry. 46 | */ 47 | public function get($id) 48 | { 49 | $target = $this->getContainer()->get($id, function () use ($id) { 50 | $message = sprintf('%s not handled by this container', $id); 51 | throw new NotFoundException($message); 52 | }); 53 | 54 | return $target instanceof \Closure 55 | ? $target() 56 | : $target; 57 | } 58 | 59 | /** 60 | * @param string $id 61 | * @return bool 62 | */ 63 | public function has($id): bool 64 | { 65 | $container = $this->getContainer(); 66 | 67 | return $container->has($id); 68 | } 69 | 70 | /** 71 | * @param string $key 72 | * @param mixed $concrete 73 | */ 74 | public function add(string $key, $concrete) 75 | { 76 | $this->getContainer()->put($key, $concrete); 77 | } 78 | 79 | /** 80 | * @param string $object 81 | * @param array $params 82 | * 83 | * @return mixed 84 | */ 85 | public function make(string $object, array $params) 86 | { 87 | return \call_user_func_array($object, $params); 88 | } 89 | 90 | /** 91 | * @param string $method 92 | * @param array $arguments 93 | * @return mixed 94 | */ 95 | public static function __callStatic($method, $arguments) 96 | { 97 | $container = new self; 98 | 99 | return \call_user_func_array([$container, $method], $arguments); 100 | } 101 | 102 | /** 103 | * @param string $method 104 | * @param array $arguments 105 | * @return mixed 106 | */ 107 | public function __call($method, $arguments) 108 | { 109 | return $this->{$method}($arguments); 110 | } 111 | 112 | /** 113 | * @param mixed $offset 114 | * @return bool 115 | */ 116 | public function offsetExists($offset): bool 117 | { 118 | return $this->getContainer()->offsetExists($offset); 119 | } 120 | 121 | /** 122 | * @param mixed $offset 123 | * @return mixed 124 | */ 125 | public function offsetGet($offset) 126 | { 127 | return $this->getContainer()->offsetGet($offset); 128 | } 129 | 130 | /** 131 | * @param mixed $offset 132 | * @param mixed $value 133 | */ 134 | public function offsetSet($offset, $value): void 135 | { 136 | $this->getContainer()->offsetSet($offset, $value); 137 | } 138 | 139 | /** 140 | * @param mixed $offset 141 | */ 142 | public function offsetUnset($offset): void 143 | { 144 | $this->getContainer()->offsetUnset($offset); 145 | } 146 | } 147 | -------------------------------------------------------------------------------- /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#composer-lock-the-lock-file", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "ab5613c886a9dc3aa93c35b0e441e631", 8 | "packages": [ 9 | { 10 | "name": "psr/container", 11 | "version": "1.0.0", 12 | "source": { 13 | "type": "git", 14 | "url": "https://github.com/php-fig/container.git", 15 | "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" 16 | }, 17 | "dist": { 18 | "type": "zip", 19 | "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", 20 | "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", 21 | "shasum": "" 22 | }, 23 | "require": { 24 | "php": ">=5.3.0" 25 | }, 26 | "type": "library", 27 | "extra": { 28 | "branch-alias": { 29 | "dev-master": "1.0.x-dev" 30 | } 31 | }, 32 | "autoload": { 33 | "psr-4": { 34 | "Psr\\Container\\": "src/" 35 | } 36 | }, 37 | "notification-url": "https://packagist.org/downloads/", 38 | "license": [ 39 | "MIT" 40 | ], 41 | "authors": [ 42 | { 43 | "name": "PHP-FIG", 44 | "homepage": "http://www.php-fig.org/" 45 | } 46 | ], 47 | "description": "Common Container Interface (PHP FIG PSR-11)", 48 | "homepage": "https://github.com/php-fig/container", 49 | "keywords": [ 50 | "PSR-11", 51 | "container", 52 | "container-interface", 53 | "container-interop", 54 | "psr" 55 | ], 56 | "time": "2017-02-14T16:28:37+00:00" 57 | }, 58 | { 59 | "name": "symfony/polyfill-mbstring", 60 | "version": "v1.7.0", 61 | "source": { 62 | "type": "git", 63 | "url": "https://github.com/symfony/polyfill-mbstring.git", 64 | "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b" 65 | }, 66 | "dist": { 67 | "type": "zip", 68 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b", 69 | "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b", 70 | "shasum": "" 71 | }, 72 | "require": { 73 | "php": ">=5.3.3" 74 | }, 75 | "suggest": { 76 | "ext-mbstring": "For best performance" 77 | }, 78 | "type": "library", 79 | "extra": { 80 | "branch-alias": { 81 | "dev-master": "1.7-dev" 82 | } 83 | }, 84 | "autoload": { 85 | "psr-4": { 86 | "Symfony\\Polyfill\\Mbstring\\": "" 87 | }, 88 | "files": [ 89 | "bootstrap.php" 90 | ] 91 | }, 92 | "notification-url": "https://packagist.org/downloads/", 93 | "license": [ 94 | "MIT" 95 | ], 96 | "authors": [ 97 | { 98 | "name": "Nicolas Grekas", 99 | "email": "p@tchwork.com" 100 | }, 101 | { 102 | "name": "Symfony Community", 103 | "homepage": "https://symfony.com/contributors" 104 | } 105 | ], 106 | "description": "Symfony polyfill for the Mbstring extension", 107 | "homepage": "https://symfony.com", 108 | "keywords": [ 109 | "compatibility", 110 | "mbstring", 111 | "polyfill", 112 | "portable", 113 | "shim" 114 | ], 115 | "time": "2018-01-30T19:27:44+00:00" 116 | }, 117 | { 118 | "name": "symfony/polyfill-php72", 119 | "version": "v1.7.0", 120 | "source": { 121 | "type": "git", 122 | "url": "https://github.com/symfony/polyfill-php72.git", 123 | "reference": "8eca20c8a369e069d4f4c2ac9895144112867422" 124 | }, 125 | "dist": { 126 | "type": "zip", 127 | "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/8eca20c8a369e069d4f4c2ac9895144112867422", 128 | "reference": "8eca20c8a369e069d4f4c2ac9895144112867422", 129 | "shasum": "" 130 | }, 131 | "require": { 132 | "php": ">=5.3.3" 133 | }, 134 | "type": "library", 135 | "extra": { 136 | "branch-alias": { 137 | "dev-master": "1.7-dev" 138 | } 139 | }, 140 | "autoload": { 141 | "psr-4": { 142 | "Symfony\\Polyfill\\Php72\\": "" 143 | }, 144 | "files": [ 145 | "bootstrap.php" 146 | ] 147 | }, 148 | "notification-url": "https://packagist.org/downloads/", 149 | "license": [ 150 | "MIT" 151 | ], 152 | "authors": [ 153 | { 154 | "name": "Nicolas Grekas", 155 | "email": "p@tchwork.com" 156 | }, 157 | { 158 | "name": "Symfony Community", 159 | "homepage": "https://symfony.com/contributors" 160 | } 161 | ], 162 | "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", 163 | "homepage": "https://symfony.com", 164 | "keywords": [ 165 | "compatibility", 166 | "polyfill", 167 | "portable", 168 | "shim" 169 | ], 170 | "time": "2018-01-31T17:43:24+00:00" 171 | }, 172 | { 173 | "name": "symfony/var-dumper", 174 | "version": "v4.0.8", 175 | "source": { 176 | "type": "git", 177 | "url": "https://github.com/symfony/var-dumper.git", 178 | "reference": "e1b4d008100f4d203cc38b0d793ad6252d8d8af0" 179 | }, 180 | "dist": { 181 | "type": "zip", 182 | "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e1b4d008100f4d203cc38b0d793ad6252d8d8af0", 183 | "reference": "e1b4d008100f4d203cc38b0d793ad6252d8d8af0", 184 | "shasum": "" 185 | }, 186 | "require": { 187 | "php": "^7.1.3", 188 | "symfony/polyfill-mbstring": "~1.0", 189 | "symfony/polyfill-php72": "~1.5" 190 | }, 191 | "conflict": { 192 | "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" 193 | }, 194 | "require-dev": { 195 | "ext-iconv": "*", 196 | "twig/twig": "~1.34|~2.4" 197 | }, 198 | "suggest": { 199 | "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", 200 | "ext-intl": "To show region name in time zone dump" 201 | }, 202 | "type": "library", 203 | "extra": { 204 | "branch-alias": { 205 | "dev-master": "4.0-dev" 206 | } 207 | }, 208 | "autoload": { 209 | "files": [ 210 | "Resources/functions/dump.php" 211 | ], 212 | "psr-4": { 213 | "Symfony\\Component\\VarDumper\\": "" 214 | }, 215 | "exclude-from-classmap": [ 216 | "/Tests/" 217 | ] 218 | }, 219 | "notification-url": "https://packagist.org/downloads/", 220 | "license": [ 221 | "MIT" 222 | ], 223 | "authors": [ 224 | { 225 | "name": "Nicolas Grekas", 226 | "email": "p@tchwork.com" 227 | }, 228 | { 229 | "name": "Symfony Community", 230 | "homepage": "https://symfony.com/contributors" 231 | } 232 | ], 233 | "description": "Symfony mechanism for exploring and dumping PHP variables", 234 | "homepage": "https://symfony.com", 235 | "keywords": [ 236 | "debug", 237 | "dump" 238 | ], 239 | "time": "2018-04-04T05:10:37+00:00" 240 | }, 241 | { 242 | "name": "tightenco/collect", 243 | "version": "v5.6.16", 244 | "source": { 245 | "type": "git", 246 | "url": "https://github.com/tightenco/collect.git", 247 | "reference": "bd125f5daa58c61a227c8bb700f52b4974d7e297" 248 | }, 249 | "dist": { 250 | "type": "zip", 251 | "url": "https://api.github.com/repos/tightenco/collect/zipball/bd125f5daa58c61a227c8bb700f52b4974d7e297", 252 | "reference": "bd125f5daa58c61a227c8bb700f52b4974d7e297", 253 | "shasum": "" 254 | }, 255 | "require": { 256 | "php": ">=7.1.3", 257 | "symfony/var-dumper": ">=3.1.10" 258 | }, 259 | "require-dev": { 260 | "mockery/mockery": "~1.0", 261 | "nesbot/carbon": "~1.20", 262 | "phpunit/phpunit": "~7.0" 263 | }, 264 | "type": "library", 265 | "autoload": { 266 | "files": [ 267 | "src/Collect/Support/helpers.php", 268 | "src/Collect/Support/alias.php" 269 | ], 270 | "psr-4": { 271 | "Tightenco\\Collect\\": "src/Collect" 272 | } 273 | }, 274 | "notification-url": "https://packagist.org/downloads/", 275 | "license": [ 276 | "MIT" 277 | ], 278 | "authors": [ 279 | { 280 | "name": "Taylor Otwell", 281 | "email": "taylorotwell@gmail.com" 282 | } 283 | ], 284 | "description": "Collect - Illuminate Collections as a separate package.", 285 | "keywords": [ 286 | "collection", 287 | "laravel" 288 | ], 289 | "time": "2018-04-11T01:47:58+00:00" 290 | } 291 | ], 292 | "packages-dev": [ 293 | { 294 | "name": "doctrine/instantiator", 295 | "version": "1.1.0", 296 | "source": { 297 | "type": "git", 298 | "url": "https://github.com/doctrine/instantiator.git", 299 | "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda" 300 | }, 301 | "dist": { 302 | "type": "zip", 303 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", 304 | "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", 305 | "shasum": "" 306 | }, 307 | "require": { 308 | "php": "^7.1" 309 | }, 310 | "require-dev": { 311 | "athletic/athletic": "~0.1.8", 312 | "ext-pdo": "*", 313 | "ext-phar": "*", 314 | "phpunit/phpunit": "^6.2.3", 315 | "squizlabs/php_codesniffer": "^3.0.2" 316 | }, 317 | "type": "library", 318 | "extra": { 319 | "branch-alias": { 320 | "dev-master": "1.2.x-dev" 321 | } 322 | }, 323 | "autoload": { 324 | "psr-4": { 325 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 326 | } 327 | }, 328 | "notification-url": "https://packagist.org/downloads/", 329 | "license": [ 330 | "MIT" 331 | ], 332 | "authors": [ 333 | { 334 | "name": "Marco Pivetta", 335 | "email": "ocramius@gmail.com", 336 | "homepage": "http://ocramius.github.com/" 337 | } 338 | ], 339 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 340 | "homepage": "https://github.com/doctrine/instantiator", 341 | "keywords": [ 342 | "constructor", 343 | "instantiate" 344 | ], 345 | "time": "2017-07-22T11:58:36+00:00" 346 | }, 347 | { 348 | "name": "myclabs/deep-copy", 349 | "version": "1.7.0", 350 | "source": { 351 | "type": "git", 352 | "url": "https://github.com/myclabs/DeepCopy.git", 353 | "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" 354 | }, 355 | "dist": { 356 | "type": "zip", 357 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", 358 | "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", 359 | "shasum": "" 360 | }, 361 | "require": { 362 | "php": "^5.6 || ^7.0" 363 | }, 364 | "require-dev": { 365 | "doctrine/collections": "^1.0", 366 | "doctrine/common": "^2.6", 367 | "phpunit/phpunit": "^4.1" 368 | }, 369 | "type": "library", 370 | "autoload": { 371 | "psr-4": { 372 | "DeepCopy\\": "src/DeepCopy/" 373 | }, 374 | "files": [ 375 | "src/DeepCopy/deep_copy.php" 376 | ] 377 | }, 378 | "notification-url": "https://packagist.org/downloads/", 379 | "license": [ 380 | "MIT" 381 | ], 382 | "description": "Create deep copies (clones) of your objects", 383 | "keywords": [ 384 | "clone", 385 | "copy", 386 | "duplicate", 387 | "object", 388 | "object graph" 389 | ], 390 | "time": "2017-10-19T19:58:43+00:00" 391 | }, 392 | { 393 | "name": "phar-io/manifest", 394 | "version": "1.0.1", 395 | "source": { 396 | "type": "git", 397 | "url": "https://github.com/phar-io/manifest.git", 398 | "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" 399 | }, 400 | "dist": { 401 | "type": "zip", 402 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", 403 | "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", 404 | "shasum": "" 405 | }, 406 | "require": { 407 | "ext-dom": "*", 408 | "ext-phar": "*", 409 | "phar-io/version": "^1.0.1", 410 | "php": "^5.6 || ^7.0" 411 | }, 412 | "type": "library", 413 | "extra": { 414 | "branch-alias": { 415 | "dev-master": "1.0.x-dev" 416 | } 417 | }, 418 | "autoload": { 419 | "classmap": [ 420 | "src/" 421 | ] 422 | }, 423 | "notification-url": "https://packagist.org/downloads/", 424 | "license": [ 425 | "BSD-3-Clause" 426 | ], 427 | "authors": [ 428 | { 429 | "name": "Arne Blankerts", 430 | "email": "arne@blankerts.de", 431 | "role": "Developer" 432 | }, 433 | { 434 | "name": "Sebastian Heuer", 435 | "email": "sebastian@phpeople.de", 436 | "role": "Developer" 437 | }, 438 | { 439 | "name": "Sebastian Bergmann", 440 | "email": "sebastian@phpunit.de", 441 | "role": "Developer" 442 | } 443 | ], 444 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", 445 | "time": "2017-03-05T18:14:27+00:00" 446 | }, 447 | { 448 | "name": "phar-io/version", 449 | "version": "1.0.1", 450 | "source": { 451 | "type": "git", 452 | "url": "https://github.com/phar-io/version.git", 453 | "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df" 454 | }, 455 | "dist": { 456 | "type": "zip", 457 | "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df", 458 | "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df", 459 | "shasum": "" 460 | }, 461 | "require": { 462 | "php": "^5.6 || ^7.0" 463 | }, 464 | "type": "library", 465 | "autoload": { 466 | "classmap": [ 467 | "src/" 468 | ] 469 | }, 470 | "notification-url": "https://packagist.org/downloads/", 471 | "license": [ 472 | "BSD-3-Clause" 473 | ], 474 | "authors": [ 475 | { 476 | "name": "Arne Blankerts", 477 | "email": "arne@blankerts.de", 478 | "role": "Developer" 479 | }, 480 | { 481 | "name": "Sebastian Heuer", 482 | "email": "sebastian@phpeople.de", 483 | "role": "Developer" 484 | }, 485 | { 486 | "name": "Sebastian Bergmann", 487 | "email": "sebastian@phpunit.de", 488 | "role": "Developer" 489 | } 490 | ], 491 | "description": "Library for handling version information and constraints", 492 | "time": "2017-03-05T17:38:23+00:00" 493 | }, 494 | { 495 | "name": "phpdocumentor/reflection-common", 496 | "version": "1.0.1", 497 | "source": { 498 | "type": "git", 499 | "url": "https://github.com/phpDocumentor/ReflectionCommon.git", 500 | "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" 501 | }, 502 | "dist": { 503 | "type": "zip", 504 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", 505 | "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", 506 | "shasum": "" 507 | }, 508 | "require": { 509 | "php": ">=5.5" 510 | }, 511 | "require-dev": { 512 | "phpunit/phpunit": "^4.6" 513 | }, 514 | "type": "library", 515 | "extra": { 516 | "branch-alias": { 517 | "dev-master": "1.0.x-dev" 518 | } 519 | }, 520 | "autoload": { 521 | "psr-4": { 522 | "phpDocumentor\\Reflection\\": [ 523 | "src" 524 | ] 525 | } 526 | }, 527 | "notification-url": "https://packagist.org/downloads/", 528 | "license": [ 529 | "MIT" 530 | ], 531 | "authors": [ 532 | { 533 | "name": "Jaap van Otterdijk", 534 | "email": "opensource@ijaap.nl" 535 | } 536 | ], 537 | "description": "Common reflection classes used by phpdocumentor to reflect the code structure", 538 | "homepage": "http://www.phpdoc.org", 539 | "keywords": [ 540 | "FQSEN", 541 | "phpDocumentor", 542 | "phpdoc", 543 | "reflection", 544 | "static analysis" 545 | ], 546 | "time": "2017-09-11T18:02:19+00:00" 547 | }, 548 | { 549 | "name": "phpdocumentor/reflection-docblock", 550 | "version": "4.3.0", 551 | "source": { 552 | "type": "git", 553 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", 554 | "reference": "94fd0001232e47129dd3504189fa1c7225010d08" 555 | }, 556 | "dist": { 557 | "type": "zip", 558 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", 559 | "reference": "94fd0001232e47129dd3504189fa1c7225010d08", 560 | "shasum": "" 561 | }, 562 | "require": { 563 | "php": "^7.0", 564 | "phpdocumentor/reflection-common": "^1.0.0", 565 | "phpdocumentor/type-resolver": "^0.4.0", 566 | "webmozart/assert": "^1.0" 567 | }, 568 | "require-dev": { 569 | "doctrine/instantiator": "~1.0.5", 570 | "mockery/mockery": "^1.0", 571 | "phpunit/phpunit": "^6.4" 572 | }, 573 | "type": "library", 574 | "extra": { 575 | "branch-alias": { 576 | "dev-master": "4.x-dev" 577 | } 578 | }, 579 | "autoload": { 580 | "psr-4": { 581 | "phpDocumentor\\Reflection\\": [ 582 | "src/" 583 | ] 584 | } 585 | }, 586 | "notification-url": "https://packagist.org/downloads/", 587 | "license": [ 588 | "MIT" 589 | ], 590 | "authors": [ 591 | { 592 | "name": "Mike van Riel", 593 | "email": "me@mikevanriel.com" 594 | } 595 | ], 596 | "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", 597 | "time": "2017-11-30T07:14:17+00:00" 598 | }, 599 | { 600 | "name": "phpdocumentor/type-resolver", 601 | "version": "0.4.0", 602 | "source": { 603 | "type": "git", 604 | "url": "https://github.com/phpDocumentor/TypeResolver.git", 605 | "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" 606 | }, 607 | "dist": { 608 | "type": "zip", 609 | "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", 610 | "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", 611 | "shasum": "" 612 | }, 613 | "require": { 614 | "php": "^5.5 || ^7.0", 615 | "phpdocumentor/reflection-common": "^1.0" 616 | }, 617 | "require-dev": { 618 | "mockery/mockery": "^0.9.4", 619 | "phpunit/phpunit": "^5.2||^4.8.24" 620 | }, 621 | "type": "library", 622 | "extra": { 623 | "branch-alias": { 624 | "dev-master": "1.0.x-dev" 625 | } 626 | }, 627 | "autoload": { 628 | "psr-4": { 629 | "phpDocumentor\\Reflection\\": [ 630 | "src/" 631 | ] 632 | } 633 | }, 634 | "notification-url": "https://packagist.org/downloads/", 635 | "license": [ 636 | "MIT" 637 | ], 638 | "authors": [ 639 | { 640 | "name": "Mike van Riel", 641 | "email": "me@mikevanriel.com" 642 | } 643 | ], 644 | "time": "2017-07-14T14:27:02+00:00" 645 | }, 646 | { 647 | "name": "phpspec/prophecy", 648 | "version": "1.7.5", 649 | "source": { 650 | "type": "git", 651 | "url": "https://github.com/phpspec/prophecy.git", 652 | "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401" 653 | }, 654 | "dist": { 655 | "type": "zip", 656 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/dfd6be44111a7c41c2e884a336cc4f461b3b2401", 657 | "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401", 658 | "shasum": "" 659 | }, 660 | "require": { 661 | "doctrine/instantiator": "^1.0.2", 662 | "php": "^5.3|^7.0", 663 | "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", 664 | "sebastian/comparator": "^1.1|^2.0", 665 | "sebastian/recursion-context": "^1.0|^2.0|^3.0" 666 | }, 667 | "require-dev": { 668 | "phpspec/phpspec": "^2.5|^3.2", 669 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5" 670 | }, 671 | "type": "library", 672 | "extra": { 673 | "branch-alias": { 674 | "dev-master": "1.7.x-dev" 675 | } 676 | }, 677 | "autoload": { 678 | "psr-0": { 679 | "Prophecy\\": "src/" 680 | } 681 | }, 682 | "notification-url": "https://packagist.org/downloads/", 683 | "license": [ 684 | "MIT" 685 | ], 686 | "authors": [ 687 | { 688 | "name": "Konstantin Kudryashov", 689 | "email": "ever.zet@gmail.com", 690 | "homepage": "http://everzet.com" 691 | }, 692 | { 693 | "name": "Marcello Duarte", 694 | "email": "marcello.duarte@gmail.com" 695 | } 696 | ], 697 | "description": "Highly opinionated mocking framework for PHP 5.3+", 698 | "homepage": "https://github.com/phpspec/prophecy", 699 | "keywords": [ 700 | "Double", 701 | "Dummy", 702 | "fake", 703 | "mock", 704 | "spy", 705 | "stub" 706 | ], 707 | "time": "2018-02-19T10:16:54+00:00" 708 | }, 709 | { 710 | "name": "phpunit/php-code-coverage", 711 | "version": "6.0.3", 712 | "source": { 713 | "type": "git", 714 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 715 | "reference": "774a82c0c5da4c1c7701790c262035d235ab7856" 716 | }, 717 | "dist": { 718 | "type": "zip", 719 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/774a82c0c5da4c1c7701790c262035d235ab7856", 720 | "reference": "774a82c0c5da4c1c7701790c262035d235ab7856", 721 | "shasum": "" 722 | }, 723 | "require": { 724 | "ext-dom": "*", 725 | "ext-xmlwriter": "*", 726 | "php": "^7.1", 727 | "phpunit/php-file-iterator": "^1.4.2", 728 | "phpunit/php-text-template": "^1.2.1", 729 | "phpunit/php-token-stream": "^3.0", 730 | "sebastian/code-unit-reverse-lookup": "^1.0.1", 731 | "sebastian/environment": "^3.1", 732 | "sebastian/version": "^2.0.1", 733 | "theseer/tokenizer": "^1.1" 734 | }, 735 | "require-dev": { 736 | "phpunit/phpunit": "^7.0" 737 | }, 738 | "suggest": { 739 | "ext-xdebug": "^2.6.0" 740 | }, 741 | "type": "library", 742 | "extra": { 743 | "branch-alias": { 744 | "dev-master": "6.0-dev" 745 | } 746 | }, 747 | "autoload": { 748 | "classmap": [ 749 | "src/" 750 | ] 751 | }, 752 | "notification-url": "https://packagist.org/downloads/", 753 | "license": [ 754 | "BSD-3-Clause" 755 | ], 756 | "authors": [ 757 | { 758 | "name": "Sebastian Bergmann", 759 | "email": "sebastian@phpunit.de", 760 | "role": "lead" 761 | } 762 | ], 763 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 764 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 765 | "keywords": [ 766 | "coverage", 767 | "testing", 768 | "xunit" 769 | ], 770 | "time": "2018-04-06T15:39:20+00:00" 771 | }, 772 | { 773 | "name": "phpunit/php-file-iterator", 774 | "version": "1.4.5", 775 | "source": { 776 | "type": "git", 777 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 778 | "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" 779 | }, 780 | "dist": { 781 | "type": "zip", 782 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", 783 | "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", 784 | "shasum": "" 785 | }, 786 | "require": { 787 | "php": ">=5.3.3" 788 | }, 789 | "type": "library", 790 | "extra": { 791 | "branch-alias": { 792 | "dev-master": "1.4.x-dev" 793 | } 794 | }, 795 | "autoload": { 796 | "classmap": [ 797 | "src/" 798 | ] 799 | }, 800 | "notification-url": "https://packagist.org/downloads/", 801 | "license": [ 802 | "BSD-3-Clause" 803 | ], 804 | "authors": [ 805 | { 806 | "name": "Sebastian Bergmann", 807 | "email": "sb@sebastian-bergmann.de", 808 | "role": "lead" 809 | } 810 | ], 811 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 812 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 813 | "keywords": [ 814 | "filesystem", 815 | "iterator" 816 | ], 817 | "time": "2017-11-27T13:52:08+00:00" 818 | }, 819 | { 820 | "name": "phpunit/php-text-template", 821 | "version": "1.2.1", 822 | "source": { 823 | "type": "git", 824 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 825 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" 826 | }, 827 | "dist": { 828 | "type": "zip", 829 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 830 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 831 | "shasum": "" 832 | }, 833 | "require": { 834 | "php": ">=5.3.3" 835 | }, 836 | "type": "library", 837 | "autoload": { 838 | "classmap": [ 839 | "src/" 840 | ] 841 | }, 842 | "notification-url": "https://packagist.org/downloads/", 843 | "license": [ 844 | "BSD-3-Clause" 845 | ], 846 | "authors": [ 847 | { 848 | "name": "Sebastian Bergmann", 849 | "email": "sebastian@phpunit.de", 850 | "role": "lead" 851 | } 852 | ], 853 | "description": "Simple template engine.", 854 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 855 | "keywords": [ 856 | "template" 857 | ], 858 | "time": "2015-06-21T13:50:34+00:00" 859 | }, 860 | { 861 | "name": "phpunit/php-timer", 862 | "version": "2.0.0", 863 | "source": { 864 | "type": "git", 865 | "url": "https://github.com/sebastianbergmann/php-timer.git", 866 | "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f" 867 | }, 868 | "dist": { 869 | "type": "zip", 870 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f", 871 | "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f", 872 | "shasum": "" 873 | }, 874 | "require": { 875 | "php": "^7.1" 876 | }, 877 | "require-dev": { 878 | "phpunit/phpunit": "^7.0" 879 | }, 880 | "type": "library", 881 | "extra": { 882 | "branch-alias": { 883 | "dev-master": "2.0-dev" 884 | } 885 | }, 886 | "autoload": { 887 | "classmap": [ 888 | "src/" 889 | ] 890 | }, 891 | "notification-url": "https://packagist.org/downloads/", 892 | "license": [ 893 | "BSD-3-Clause" 894 | ], 895 | "authors": [ 896 | { 897 | "name": "Sebastian Bergmann", 898 | "email": "sebastian@phpunit.de", 899 | "role": "lead" 900 | } 901 | ], 902 | "description": "Utility class for timing", 903 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 904 | "keywords": [ 905 | "timer" 906 | ], 907 | "time": "2018-02-01T13:07:23+00:00" 908 | }, 909 | { 910 | "name": "phpunit/php-token-stream", 911 | "version": "3.0.0", 912 | "source": { 913 | "type": "git", 914 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", 915 | "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace" 916 | }, 917 | "dist": { 918 | "type": "zip", 919 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/21ad88bbba7c3d93530d93994e0a33cd45f02ace", 920 | "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace", 921 | "shasum": "" 922 | }, 923 | "require": { 924 | "ext-tokenizer": "*", 925 | "php": "^7.1" 926 | }, 927 | "require-dev": { 928 | "phpunit/phpunit": "^7.0" 929 | }, 930 | "type": "library", 931 | "extra": { 932 | "branch-alias": { 933 | "dev-master": "3.0-dev" 934 | } 935 | }, 936 | "autoload": { 937 | "classmap": [ 938 | "src/" 939 | ] 940 | }, 941 | "notification-url": "https://packagist.org/downloads/", 942 | "license": [ 943 | "BSD-3-Clause" 944 | ], 945 | "authors": [ 946 | { 947 | "name": "Sebastian Bergmann", 948 | "email": "sebastian@phpunit.de" 949 | } 950 | ], 951 | "description": "Wrapper around PHP's tokenizer extension.", 952 | "homepage": "https://github.com/sebastianbergmann/php-token-stream/", 953 | "keywords": [ 954 | "tokenizer" 955 | ], 956 | "time": "2018-02-01T13:16:43+00:00" 957 | }, 958 | { 959 | "name": "phpunit/phpunit", 960 | "version": "7.1.2", 961 | "source": { 962 | "type": "git", 963 | "url": "https://github.com/sebastianbergmann/phpunit.git", 964 | "reference": "6a17c170fb92845896e1b3b00fcb462cd4b3c017" 965 | }, 966 | "dist": { 967 | "type": "zip", 968 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6a17c170fb92845896e1b3b00fcb462cd4b3c017", 969 | "reference": "6a17c170fb92845896e1b3b00fcb462cd4b3c017", 970 | "shasum": "" 971 | }, 972 | "require": { 973 | "ext-dom": "*", 974 | "ext-json": "*", 975 | "ext-libxml": "*", 976 | "ext-mbstring": "*", 977 | "ext-xml": "*", 978 | "myclabs/deep-copy": "^1.6.1", 979 | "phar-io/manifest": "^1.0.1", 980 | "phar-io/version": "^1.0", 981 | "php": "^7.1", 982 | "phpspec/prophecy": "^1.7", 983 | "phpunit/php-code-coverage": "^6.0.1", 984 | "phpunit/php-file-iterator": "^1.4.3", 985 | "phpunit/php-text-template": "^1.2.1", 986 | "phpunit/php-timer": "^2.0", 987 | "phpunit/phpunit-mock-objects": "^6.1", 988 | "sebastian/comparator": "^2.1", 989 | "sebastian/diff": "^3.0", 990 | "sebastian/environment": "^3.1", 991 | "sebastian/exporter": "^3.1", 992 | "sebastian/global-state": "^2.0", 993 | "sebastian/object-enumerator": "^3.0.3", 994 | "sebastian/resource-operations": "^1.0", 995 | "sebastian/version": "^2.0.1" 996 | }, 997 | "require-dev": { 998 | "ext-pdo": "*" 999 | }, 1000 | "suggest": { 1001 | "ext-xdebug": "*", 1002 | "phpunit/php-invoker": "^2.0" 1003 | }, 1004 | "bin": [ 1005 | "phpunit" 1006 | ], 1007 | "type": "library", 1008 | "extra": { 1009 | "branch-alias": { 1010 | "dev-master": "7.1-dev" 1011 | } 1012 | }, 1013 | "autoload": { 1014 | "classmap": [ 1015 | "src/" 1016 | ] 1017 | }, 1018 | "notification-url": "https://packagist.org/downloads/", 1019 | "license": [ 1020 | "BSD-3-Clause" 1021 | ], 1022 | "authors": [ 1023 | { 1024 | "name": "Sebastian Bergmann", 1025 | "email": "sebastian@phpunit.de", 1026 | "role": "lead" 1027 | } 1028 | ], 1029 | "description": "The PHP Unit Testing framework.", 1030 | "homepage": "https://phpunit.de/", 1031 | "keywords": [ 1032 | "phpunit", 1033 | "testing", 1034 | "xunit" 1035 | ], 1036 | "time": "2018-04-10T11:40:22+00:00" 1037 | }, 1038 | { 1039 | "name": "phpunit/phpunit-mock-objects", 1040 | "version": "6.1.1", 1041 | "source": { 1042 | "type": "git", 1043 | "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", 1044 | "reference": "70c740bde8fd9ea9ea295be1cd875dd7b267e157" 1045 | }, 1046 | "dist": { 1047 | "type": "zip", 1048 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/70c740bde8fd9ea9ea295be1cd875dd7b267e157", 1049 | "reference": "70c740bde8fd9ea9ea295be1cd875dd7b267e157", 1050 | "shasum": "" 1051 | }, 1052 | "require": { 1053 | "doctrine/instantiator": "^1.0.5", 1054 | "php": "^7.1", 1055 | "phpunit/php-text-template": "^1.2.1", 1056 | "sebastian/exporter": "^3.1" 1057 | }, 1058 | "require-dev": { 1059 | "phpunit/phpunit": "^7.0" 1060 | }, 1061 | "suggest": { 1062 | "ext-soap": "*" 1063 | }, 1064 | "type": "library", 1065 | "extra": { 1066 | "branch-alias": { 1067 | "dev-master": "6.1-dev" 1068 | } 1069 | }, 1070 | "autoload": { 1071 | "classmap": [ 1072 | "src/" 1073 | ] 1074 | }, 1075 | "notification-url": "https://packagist.org/downloads/", 1076 | "license": [ 1077 | "BSD-3-Clause" 1078 | ], 1079 | "authors": [ 1080 | { 1081 | "name": "Sebastian Bergmann", 1082 | "email": "sebastian@phpunit.de", 1083 | "role": "lead" 1084 | } 1085 | ], 1086 | "description": "Mock Object library for PHPUnit", 1087 | "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", 1088 | "keywords": [ 1089 | "mock", 1090 | "xunit" 1091 | ], 1092 | "time": "2018-04-11T04:50:36+00:00" 1093 | }, 1094 | { 1095 | "name": "sebastian/code-unit-reverse-lookup", 1096 | "version": "1.0.1", 1097 | "source": { 1098 | "type": "git", 1099 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", 1100 | "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" 1101 | }, 1102 | "dist": { 1103 | "type": "zip", 1104 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", 1105 | "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", 1106 | "shasum": "" 1107 | }, 1108 | "require": { 1109 | "php": "^5.6 || ^7.0" 1110 | }, 1111 | "require-dev": { 1112 | "phpunit/phpunit": "^5.7 || ^6.0" 1113 | }, 1114 | "type": "library", 1115 | "extra": { 1116 | "branch-alias": { 1117 | "dev-master": "1.0.x-dev" 1118 | } 1119 | }, 1120 | "autoload": { 1121 | "classmap": [ 1122 | "src/" 1123 | ] 1124 | }, 1125 | "notification-url": "https://packagist.org/downloads/", 1126 | "license": [ 1127 | "BSD-3-Clause" 1128 | ], 1129 | "authors": [ 1130 | { 1131 | "name": "Sebastian Bergmann", 1132 | "email": "sebastian@phpunit.de" 1133 | } 1134 | ], 1135 | "description": "Looks up which function or method a line of code belongs to", 1136 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", 1137 | "time": "2017-03-04T06:30:41+00:00" 1138 | }, 1139 | { 1140 | "name": "sebastian/comparator", 1141 | "version": "2.1.3", 1142 | "source": { 1143 | "type": "git", 1144 | "url": "https://github.com/sebastianbergmann/comparator.git", 1145 | "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9" 1146 | }, 1147 | "dist": { 1148 | "type": "zip", 1149 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9", 1150 | "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9", 1151 | "shasum": "" 1152 | }, 1153 | "require": { 1154 | "php": "^7.0", 1155 | "sebastian/diff": "^2.0 || ^3.0", 1156 | "sebastian/exporter": "^3.1" 1157 | }, 1158 | "require-dev": { 1159 | "phpunit/phpunit": "^6.4" 1160 | }, 1161 | "type": "library", 1162 | "extra": { 1163 | "branch-alias": { 1164 | "dev-master": "2.1.x-dev" 1165 | } 1166 | }, 1167 | "autoload": { 1168 | "classmap": [ 1169 | "src/" 1170 | ] 1171 | }, 1172 | "notification-url": "https://packagist.org/downloads/", 1173 | "license": [ 1174 | "BSD-3-Clause" 1175 | ], 1176 | "authors": [ 1177 | { 1178 | "name": "Jeff Welch", 1179 | "email": "whatthejeff@gmail.com" 1180 | }, 1181 | { 1182 | "name": "Volker Dusch", 1183 | "email": "github@wallbash.com" 1184 | }, 1185 | { 1186 | "name": "Bernhard Schussek", 1187 | "email": "bschussek@2bepublished.at" 1188 | }, 1189 | { 1190 | "name": "Sebastian Bergmann", 1191 | "email": "sebastian@phpunit.de" 1192 | } 1193 | ], 1194 | "description": "Provides the functionality to compare PHP values for equality", 1195 | "homepage": "https://github.com/sebastianbergmann/comparator", 1196 | "keywords": [ 1197 | "comparator", 1198 | "compare", 1199 | "equality" 1200 | ], 1201 | "time": "2018-02-01T13:46:46+00:00" 1202 | }, 1203 | { 1204 | "name": "sebastian/diff", 1205 | "version": "3.0.0", 1206 | "source": { 1207 | "type": "git", 1208 | "url": "https://github.com/sebastianbergmann/diff.git", 1209 | "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8" 1210 | }, 1211 | "dist": { 1212 | "type": "zip", 1213 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/e09160918c66281713f1c324c1f4c4c3037ba1e8", 1214 | "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8", 1215 | "shasum": "" 1216 | }, 1217 | "require": { 1218 | "php": "^7.1" 1219 | }, 1220 | "require-dev": { 1221 | "phpunit/phpunit": "^7.0", 1222 | "symfony/process": "^2 || ^3.3 || ^4" 1223 | }, 1224 | "type": "library", 1225 | "extra": { 1226 | "branch-alias": { 1227 | "dev-master": "3.0-dev" 1228 | } 1229 | }, 1230 | "autoload": { 1231 | "classmap": [ 1232 | "src/" 1233 | ] 1234 | }, 1235 | "notification-url": "https://packagist.org/downloads/", 1236 | "license": [ 1237 | "BSD-3-Clause" 1238 | ], 1239 | "authors": [ 1240 | { 1241 | "name": "Kore Nordmann", 1242 | "email": "mail@kore-nordmann.de" 1243 | }, 1244 | { 1245 | "name": "Sebastian Bergmann", 1246 | "email": "sebastian@phpunit.de" 1247 | } 1248 | ], 1249 | "description": "Diff implementation", 1250 | "homepage": "https://github.com/sebastianbergmann/diff", 1251 | "keywords": [ 1252 | "diff", 1253 | "udiff", 1254 | "unidiff", 1255 | "unified diff" 1256 | ], 1257 | "time": "2018-02-01T13:45:15+00:00" 1258 | }, 1259 | { 1260 | "name": "sebastian/environment", 1261 | "version": "3.1.0", 1262 | "source": { 1263 | "type": "git", 1264 | "url": "https://github.com/sebastianbergmann/environment.git", 1265 | "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" 1266 | }, 1267 | "dist": { 1268 | "type": "zip", 1269 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", 1270 | "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", 1271 | "shasum": "" 1272 | }, 1273 | "require": { 1274 | "php": "^7.0" 1275 | }, 1276 | "require-dev": { 1277 | "phpunit/phpunit": "^6.1" 1278 | }, 1279 | "type": "library", 1280 | "extra": { 1281 | "branch-alias": { 1282 | "dev-master": "3.1.x-dev" 1283 | } 1284 | }, 1285 | "autoload": { 1286 | "classmap": [ 1287 | "src/" 1288 | ] 1289 | }, 1290 | "notification-url": "https://packagist.org/downloads/", 1291 | "license": [ 1292 | "BSD-3-Clause" 1293 | ], 1294 | "authors": [ 1295 | { 1296 | "name": "Sebastian Bergmann", 1297 | "email": "sebastian@phpunit.de" 1298 | } 1299 | ], 1300 | "description": "Provides functionality to handle HHVM/PHP environments", 1301 | "homepage": "http://www.github.com/sebastianbergmann/environment", 1302 | "keywords": [ 1303 | "Xdebug", 1304 | "environment", 1305 | "hhvm" 1306 | ], 1307 | "time": "2017-07-01T08:51:00+00:00" 1308 | }, 1309 | { 1310 | "name": "sebastian/exporter", 1311 | "version": "3.1.0", 1312 | "source": { 1313 | "type": "git", 1314 | "url": "https://github.com/sebastianbergmann/exporter.git", 1315 | "reference": "234199f4528de6d12aaa58b612e98f7d36adb937" 1316 | }, 1317 | "dist": { 1318 | "type": "zip", 1319 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937", 1320 | "reference": "234199f4528de6d12aaa58b612e98f7d36adb937", 1321 | "shasum": "" 1322 | }, 1323 | "require": { 1324 | "php": "^7.0", 1325 | "sebastian/recursion-context": "^3.0" 1326 | }, 1327 | "require-dev": { 1328 | "ext-mbstring": "*", 1329 | "phpunit/phpunit": "^6.0" 1330 | }, 1331 | "type": "library", 1332 | "extra": { 1333 | "branch-alias": { 1334 | "dev-master": "3.1.x-dev" 1335 | } 1336 | }, 1337 | "autoload": { 1338 | "classmap": [ 1339 | "src/" 1340 | ] 1341 | }, 1342 | "notification-url": "https://packagist.org/downloads/", 1343 | "license": [ 1344 | "BSD-3-Clause" 1345 | ], 1346 | "authors": [ 1347 | { 1348 | "name": "Jeff Welch", 1349 | "email": "whatthejeff@gmail.com" 1350 | }, 1351 | { 1352 | "name": "Volker Dusch", 1353 | "email": "github@wallbash.com" 1354 | }, 1355 | { 1356 | "name": "Bernhard Schussek", 1357 | "email": "bschussek@2bepublished.at" 1358 | }, 1359 | { 1360 | "name": "Sebastian Bergmann", 1361 | "email": "sebastian@phpunit.de" 1362 | }, 1363 | { 1364 | "name": "Adam Harvey", 1365 | "email": "aharvey@php.net" 1366 | } 1367 | ], 1368 | "description": "Provides the functionality to export PHP variables for visualization", 1369 | "homepage": "http://www.github.com/sebastianbergmann/exporter", 1370 | "keywords": [ 1371 | "export", 1372 | "exporter" 1373 | ], 1374 | "time": "2017-04-03T13:19:02+00:00" 1375 | }, 1376 | { 1377 | "name": "sebastian/global-state", 1378 | "version": "2.0.0", 1379 | "source": { 1380 | "type": "git", 1381 | "url": "https://github.com/sebastianbergmann/global-state.git", 1382 | "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" 1383 | }, 1384 | "dist": { 1385 | "type": "zip", 1386 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", 1387 | "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", 1388 | "shasum": "" 1389 | }, 1390 | "require": { 1391 | "php": "^7.0" 1392 | }, 1393 | "require-dev": { 1394 | "phpunit/phpunit": "^6.0" 1395 | }, 1396 | "suggest": { 1397 | "ext-uopz": "*" 1398 | }, 1399 | "type": "library", 1400 | "extra": { 1401 | "branch-alias": { 1402 | "dev-master": "2.0-dev" 1403 | } 1404 | }, 1405 | "autoload": { 1406 | "classmap": [ 1407 | "src/" 1408 | ] 1409 | }, 1410 | "notification-url": "https://packagist.org/downloads/", 1411 | "license": [ 1412 | "BSD-3-Clause" 1413 | ], 1414 | "authors": [ 1415 | { 1416 | "name": "Sebastian Bergmann", 1417 | "email": "sebastian@phpunit.de" 1418 | } 1419 | ], 1420 | "description": "Snapshotting of global state", 1421 | "homepage": "http://www.github.com/sebastianbergmann/global-state", 1422 | "keywords": [ 1423 | "global state" 1424 | ], 1425 | "time": "2017-04-27T15:39:26+00:00" 1426 | }, 1427 | { 1428 | "name": "sebastian/object-enumerator", 1429 | "version": "3.0.3", 1430 | "source": { 1431 | "type": "git", 1432 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", 1433 | "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" 1434 | }, 1435 | "dist": { 1436 | "type": "zip", 1437 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", 1438 | "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", 1439 | "shasum": "" 1440 | }, 1441 | "require": { 1442 | "php": "^7.0", 1443 | "sebastian/object-reflector": "^1.1.1", 1444 | "sebastian/recursion-context": "^3.0" 1445 | }, 1446 | "require-dev": { 1447 | "phpunit/phpunit": "^6.0" 1448 | }, 1449 | "type": "library", 1450 | "extra": { 1451 | "branch-alias": { 1452 | "dev-master": "3.0.x-dev" 1453 | } 1454 | }, 1455 | "autoload": { 1456 | "classmap": [ 1457 | "src/" 1458 | ] 1459 | }, 1460 | "notification-url": "https://packagist.org/downloads/", 1461 | "license": [ 1462 | "BSD-3-Clause" 1463 | ], 1464 | "authors": [ 1465 | { 1466 | "name": "Sebastian Bergmann", 1467 | "email": "sebastian@phpunit.de" 1468 | } 1469 | ], 1470 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", 1471 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", 1472 | "time": "2017-08-03T12:35:26+00:00" 1473 | }, 1474 | { 1475 | "name": "sebastian/object-reflector", 1476 | "version": "1.1.1", 1477 | "source": { 1478 | "type": "git", 1479 | "url": "https://github.com/sebastianbergmann/object-reflector.git", 1480 | "reference": "773f97c67f28de00d397be301821b06708fca0be" 1481 | }, 1482 | "dist": { 1483 | "type": "zip", 1484 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", 1485 | "reference": "773f97c67f28de00d397be301821b06708fca0be", 1486 | "shasum": "" 1487 | }, 1488 | "require": { 1489 | "php": "^7.0" 1490 | }, 1491 | "require-dev": { 1492 | "phpunit/phpunit": "^6.0" 1493 | }, 1494 | "type": "library", 1495 | "extra": { 1496 | "branch-alias": { 1497 | "dev-master": "1.1-dev" 1498 | } 1499 | }, 1500 | "autoload": { 1501 | "classmap": [ 1502 | "src/" 1503 | ] 1504 | }, 1505 | "notification-url": "https://packagist.org/downloads/", 1506 | "license": [ 1507 | "BSD-3-Clause" 1508 | ], 1509 | "authors": [ 1510 | { 1511 | "name": "Sebastian Bergmann", 1512 | "email": "sebastian@phpunit.de" 1513 | } 1514 | ], 1515 | "description": "Allows reflection of object attributes, including inherited and non-public ones", 1516 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", 1517 | "time": "2017-03-29T09:07:27+00:00" 1518 | }, 1519 | { 1520 | "name": "sebastian/recursion-context", 1521 | "version": "3.0.0", 1522 | "source": { 1523 | "type": "git", 1524 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 1525 | "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" 1526 | }, 1527 | "dist": { 1528 | "type": "zip", 1529 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", 1530 | "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", 1531 | "shasum": "" 1532 | }, 1533 | "require": { 1534 | "php": "^7.0" 1535 | }, 1536 | "require-dev": { 1537 | "phpunit/phpunit": "^6.0" 1538 | }, 1539 | "type": "library", 1540 | "extra": { 1541 | "branch-alias": { 1542 | "dev-master": "3.0.x-dev" 1543 | } 1544 | }, 1545 | "autoload": { 1546 | "classmap": [ 1547 | "src/" 1548 | ] 1549 | }, 1550 | "notification-url": "https://packagist.org/downloads/", 1551 | "license": [ 1552 | "BSD-3-Clause" 1553 | ], 1554 | "authors": [ 1555 | { 1556 | "name": "Jeff Welch", 1557 | "email": "whatthejeff@gmail.com" 1558 | }, 1559 | { 1560 | "name": "Sebastian Bergmann", 1561 | "email": "sebastian@phpunit.de" 1562 | }, 1563 | { 1564 | "name": "Adam Harvey", 1565 | "email": "aharvey@php.net" 1566 | } 1567 | ], 1568 | "description": "Provides functionality to recursively process PHP variables", 1569 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 1570 | "time": "2017-03-03T06:23:57+00:00" 1571 | }, 1572 | { 1573 | "name": "sebastian/resource-operations", 1574 | "version": "1.0.0", 1575 | "source": { 1576 | "type": "git", 1577 | "url": "https://github.com/sebastianbergmann/resource-operations.git", 1578 | "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" 1579 | }, 1580 | "dist": { 1581 | "type": "zip", 1582 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", 1583 | "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", 1584 | "shasum": "" 1585 | }, 1586 | "require": { 1587 | "php": ">=5.6.0" 1588 | }, 1589 | "type": "library", 1590 | "extra": { 1591 | "branch-alias": { 1592 | "dev-master": "1.0.x-dev" 1593 | } 1594 | }, 1595 | "autoload": { 1596 | "classmap": [ 1597 | "src/" 1598 | ] 1599 | }, 1600 | "notification-url": "https://packagist.org/downloads/", 1601 | "license": [ 1602 | "BSD-3-Clause" 1603 | ], 1604 | "authors": [ 1605 | { 1606 | "name": "Sebastian Bergmann", 1607 | "email": "sebastian@phpunit.de" 1608 | } 1609 | ], 1610 | "description": "Provides a list of PHP built-in functions that operate on resources", 1611 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", 1612 | "time": "2015-07-28T20:34:47+00:00" 1613 | }, 1614 | { 1615 | "name": "sebastian/version", 1616 | "version": "2.0.1", 1617 | "source": { 1618 | "type": "git", 1619 | "url": "https://github.com/sebastianbergmann/version.git", 1620 | "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" 1621 | }, 1622 | "dist": { 1623 | "type": "zip", 1624 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", 1625 | "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", 1626 | "shasum": "" 1627 | }, 1628 | "require": { 1629 | "php": ">=5.6" 1630 | }, 1631 | "type": "library", 1632 | "extra": { 1633 | "branch-alias": { 1634 | "dev-master": "2.0.x-dev" 1635 | } 1636 | }, 1637 | "autoload": { 1638 | "classmap": [ 1639 | "src/" 1640 | ] 1641 | }, 1642 | "notification-url": "https://packagist.org/downloads/", 1643 | "license": [ 1644 | "BSD-3-Clause" 1645 | ], 1646 | "authors": [ 1647 | { 1648 | "name": "Sebastian Bergmann", 1649 | "email": "sebastian@phpunit.de", 1650 | "role": "lead" 1651 | } 1652 | ], 1653 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 1654 | "homepage": "https://github.com/sebastianbergmann/version", 1655 | "time": "2016-10-03T07:35:21+00:00" 1656 | }, 1657 | { 1658 | "name": "squizlabs/php_codesniffer", 1659 | "version": "3.2.3", 1660 | "source": { 1661 | "type": "git", 1662 | "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", 1663 | "reference": "4842476c434e375f9d3182ff7b89059583aa8b27" 1664 | }, 1665 | "dist": { 1666 | "type": "zip", 1667 | "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/4842476c434e375f9d3182ff7b89059583aa8b27", 1668 | "reference": "4842476c434e375f9d3182ff7b89059583aa8b27", 1669 | "shasum": "" 1670 | }, 1671 | "require": { 1672 | "ext-simplexml": "*", 1673 | "ext-tokenizer": "*", 1674 | "ext-xmlwriter": "*", 1675 | "php": ">=5.4.0" 1676 | }, 1677 | "require-dev": { 1678 | "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" 1679 | }, 1680 | "bin": [ 1681 | "bin/phpcs", 1682 | "bin/phpcbf" 1683 | ], 1684 | "type": "library", 1685 | "extra": { 1686 | "branch-alias": { 1687 | "dev-master": "3.x-dev" 1688 | } 1689 | }, 1690 | "notification-url": "https://packagist.org/downloads/", 1691 | "license": [ 1692 | "BSD-3-Clause" 1693 | ], 1694 | "authors": [ 1695 | { 1696 | "name": "Greg Sherwood", 1697 | "role": "lead" 1698 | } 1699 | ], 1700 | "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", 1701 | "homepage": "http://www.squizlabs.com/php-codesniffer", 1702 | "keywords": [ 1703 | "phpcs", 1704 | "standards" 1705 | ], 1706 | "time": "2018-02-20T21:35:23+00:00" 1707 | }, 1708 | { 1709 | "name": "theseer/tokenizer", 1710 | "version": "1.1.0", 1711 | "source": { 1712 | "type": "git", 1713 | "url": "https://github.com/theseer/tokenizer.git", 1714 | "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b" 1715 | }, 1716 | "dist": { 1717 | "type": "zip", 1718 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b", 1719 | "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b", 1720 | "shasum": "" 1721 | }, 1722 | "require": { 1723 | "ext-dom": "*", 1724 | "ext-tokenizer": "*", 1725 | "ext-xmlwriter": "*", 1726 | "php": "^7.0" 1727 | }, 1728 | "type": "library", 1729 | "autoload": { 1730 | "classmap": [ 1731 | "src/" 1732 | ] 1733 | }, 1734 | "notification-url": "https://packagist.org/downloads/", 1735 | "license": [ 1736 | "BSD-3-Clause" 1737 | ], 1738 | "authors": [ 1739 | { 1740 | "name": "Arne Blankerts", 1741 | "email": "arne@blankerts.de", 1742 | "role": "Developer" 1743 | } 1744 | ], 1745 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", 1746 | "time": "2017-04-07T12:08:54+00:00" 1747 | }, 1748 | { 1749 | "name": "webmozart/assert", 1750 | "version": "1.3.0", 1751 | "source": { 1752 | "type": "git", 1753 | "url": "https://github.com/webmozart/assert.git", 1754 | "reference": "0df1908962e7a3071564e857d86874dad1ef204a" 1755 | }, 1756 | "dist": { 1757 | "type": "zip", 1758 | "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", 1759 | "reference": "0df1908962e7a3071564e857d86874dad1ef204a", 1760 | "shasum": "" 1761 | }, 1762 | "require": { 1763 | "php": "^5.3.3 || ^7.0" 1764 | }, 1765 | "require-dev": { 1766 | "phpunit/phpunit": "^4.6", 1767 | "sebastian/version": "^1.0.1" 1768 | }, 1769 | "type": "library", 1770 | "extra": { 1771 | "branch-alias": { 1772 | "dev-master": "1.3-dev" 1773 | } 1774 | }, 1775 | "autoload": { 1776 | "psr-4": { 1777 | "Webmozart\\Assert\\": "src/" 1778 | } 1779 | }, 1780 | "notification-url": "https://packagist.org/downloads/", 1781 | "license": [ 1782 | "MIT" 1783 | ], 1784 | "authors": [ 1785 | { 1786 | "name": "Bernhard Schussek", 1787 | "email": "bschussek@gmail.com" 1788 | } 1789 | ], 1790 | "description": "Assertions to validate method input/output with nice error messages.", 1791 | "keywords": [ 1792 | "assert", 1793 | "check", 1794 | "validate" 1795 | ], 1796 | "time": "2018-01-29T19:49:41+00:00" 1797 | } 1798 | ], 1799 | "aliases": [], 1800 | "minimum-stability": "stable", 1801 | "stability-flags": [], 1802 | "prefer-stable": false, 1803 | "prefer-lowest": false, 1804 | "platform": { 1805 | "php": "^7.1.3" 1806 | }, 1807 | "platform-dev": [] 1808 | } 1809 | --------------------------------------------------------------------------------