├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── CHANGELOG.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── resources └── img │ ├── alert-vulnerability.png │ ├── console-output.png │ └── warning-vulerability-witelisted.png ├── sami_config.php └── src ├── ComposerSecurityCheck.php ├── ComposerSecurityCheckServiceProvider.php ├── FileHelper.php ├── MailHelper.php ├── SensiolabHelper.php ├── config ├── .env.example ├── composer-security-check.php └── laravel-env-validator.example.php └── views └── mail.blade.php /.editorconfig: -------------------------------------------------------------------------------- 1 | ; This file is for unifying the coding style for different editors and IDEs. 2 | ; More information at http://editorconfig.org 3 | 4 | root = true 5 | 6 | [*] 7 | charset = utf-8 8 | indent_size = 4 9 | indent_style = space 10 | end_of_line = lf 11 | insert_final_newline = true 12 | trim_trailing_whitespace = true 13 | 14 | [*.md] 15 | trim_trailing_whitespace = false 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please prefix your issue with one of the following: **[BUG]** **[PROPOSAL]** **[QUESTION]**. 2 | 3 | **In raising this issue, I confirm the following (please check boxes):** 4 | 5 | - [ ] I have read and understood the [contributors guide](). 6 | - [ ] I have checked the pull requests tab for existing solutions/implementations to my issue/suggestion. 7 | - [ ] I have checked that the bug-fix I am reporting can be replicated. 8 | 9 | --- 10 | 11 | ### Description of the problem 12 | ... 13 | 14 | ### Steps to reproduce 15 | ... 16 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please prefix your pull request with one of the following: **[FEATURE]** **[FIX]** **[IMPROVEMENT]**. 2 | 3 | **In raising this pull request, I confirm the following (please check boxes):** 4 | 5 | - [ ] I have read and understood the [contributors guide](). 6 | - [ ] I have checked that another pull request for this purpose does not exist. 7 | - [ ] I have considered, and confirmed that this submission will be valuable to others. 8 | - [ ] I have added tests to prove that the code in this PR works. 9 | 10 | --- 11 | 12 | ### Description 13 | ... 14 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All Notable changes to `laravel-composer-security` will be documented in this file 4 | 5 | ## 1.5.0 - 2016-09-17 6 | 7 | - Add support for laravel 5.3, php 7.0 and php 7.1. 8 | - Minor scrutinizer advices. 9 | 10 | ## 1.0.0 - 2015-12-05 11 | 12 | ### Added 13 | - Initial release 14 | -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Code of Conduct 2 | 3 | As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. 4 | 5 | We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality. 6 | 7 | Examples of unacceptable behavior by participants include: 8 | 9 | * The use of sexualized language or imagery 10 | * Personal attacks 11 | * Trolling or insulting/derogatory comments 12 | * Public or private harassment 13 | * Publishing other's private information, such as physical or electronic addresses, without explicit permission 14 | * Other unethical or unprofessional conduct. 15 | 16 | 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. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team. 17 | 18 | This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community in a direct capacity. Personal views, beliefs and values of individuals do not necessarily reflect those of the organisation or affiliated individuals and organisations. 19 | 20 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers. 21 | 22 | This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/) 23 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Contributions are **welcome** and will be fully **credited**. 4 | 5 | Please read and understand the contribution guide before creating an issue or pull request. 6 | 7 | ## Etiquette 8 | 9 | This project is open source, and as such, the maintainers give their free time to build and maintain the source code 10 | held within. They make the code freely available in the hope that it will be of use to other developers. It would be 11 | extremely unfair for them to suffer abuse or anger for their hard work. 12 | 13 | Please be considerate towards maintainers when raising issues or presenting pull requests. Let's show the 14 | world that developers are civilized and selfless people. 15 | 16 | It's the duty of the maintainer to ensure that all submissions to the project are of sufficient 17 | quality to benefit the project. Many developers have different skillsets, strengths, and weaknesses. Respect the maintainer's decision, and do not be upset or abusive if your submission is not used. 18 | 19 | ## Viability 20 | 21 | When requesting or submitting new features, first consider whether it might be useful to others. Open 22 | source projects are used by many developers, who may have entirely different needs to your own. Think about 23 | whether or not your feature is likely to be used by other users of the project. 24 | 25 | ## Procedure 26 | 27 | Before filing an issue: 28 | 29 | - Attempt to replicate the problem, to ensure that it wasn't a coincidental incident. 30 | - Check to make sure your feature suggestion isn't already present within the project. 31 | - Check the pull requests tab to ensure that the bug doesn't have a fix in progress. 32 | - Check the pull requests tab to ensure that the feature isn't already in progress. 33 | 34 | Before submitting a pull request: 35 | 36 | - Check the codebase to ensure that your feature doesn't already exist. 37 | - Check the pull requests to ensure that another person hasn't already submitted the feature or fix. 38 | 39 | ## Requirements 40 | 41 | If the project maintainer has any additional requirements, you will find them listed here. 42 | 43 | - **[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). 44 | 45 | - **Add tests!** - Your patch won't be accepted if it doesn't have tests. 46 | 47 | - **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date. 48 | 49 | - **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option. 50 | 51 | - **One pull request per feature** - If you want to do more than one thing, send multiple pull requests. 52 | 53 | - **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](http://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting. 54 | 55 | **Happy coding**! 56 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Padosoft di Lorenzo Padovani https://www.padosoft.com 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 13 | > all 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 21 | > THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LARAVEL COMPOSER SECURITY COMMAND 2 | 3 | [![Latest Version on Packagist][ico-version]][link-packagist] 4 | [![Software License][ico-license]](LICENSE.md) 5 | [![Build Status][ico-travis]][link-travis] 6 | [![Coverage Status][ico-scrutinizer]][link-scrutinizer] 7 | [![Quality Score][ico-code-quality]][link-code-quality] 8 | [![Total Downloads][ico-downloads]][link-downloads] 9 | [![SensioLabsInsight][ico-sensiolab]][link-sensiolab] 10 | 11 | This is a Laravel 5.1/5.2/5.3 package that provides an artisan command for testing security vulnerabilties into your composer.lock files. 12 | Is ready and tested for php7.0 and php7.1 too. 13 | 14 | 15 | Table of Contents 16 | ================= 17 | 18 | * [LARAVEL COMPOSER SECURITY COMMAND](#laravel-composer-security-command) 19 | * [Table of Contents](#table-of-contents) 20 | * [PREREQUISITES](#prerequisites) 21 | * [INSTALL](#install) 22 | * [USAGE](#usage) 23 | * [EXAMPLE:](#example) 24 | * [SCHEDULE COMMAND](#schedule-command) 25 | * [SCREENSHOOTS](#screenshoots) 26 | * [Testing](#testing) 27 | * [Contributing](#contributing) 28 | * [Security](#security) 29 | * [API Documentation](#api-documentation) 30 | * [Credits](#credits) 31 | * [About Padosoft](#about-padosoft) 32 | * [License](#license) 33 | 34 | 35 | # PREREQUISITES 36 | 37 | LARAVEL 5.1+ 38 | GUZZLE 6+ 39 | 40 | ## INSTALL 41 | 42 | This package can be installed through Composer. 43 | 44 | ``` bash 45 | composer require padosoft/laravel-composer-security 46 | ``` 47 | You must install this service provider. 48 | 49 | ``` php 50 | // config/app.php 51 | 'provider' => [ 52 | ... 53 | Padosoft\LaravelComposerSecurity\ComposerSecurityCheckServiceProvider::class, 54 | ... 55 | ]; 56 | ``` 57 | You don't need to register the command in app/Console/Kernel.php, because it provides by ComposerSecurtyCheckServiceProvider register() method. 58 | 59 | You can publish the config file of this package with this command: 60 | ``` bash 61 | php artisan vendor:publish --provider="Padosoft\LaravelComposerSecurity\ComposerSecurityCheckServiceProvider" 62 | ``` 63 | The following config file will be published in `config/composer-security-check.php` 64 | ``` php 65 | return array( 66 | 'mailSubjectSuccess' => env( 67 | 'SECURITY_CHECK_SUBJECT_SUCCESS', 68 | '[composer-security-check]: Ok - no vulnerabilities detected.' 69 | ), 70 | 'mailSubjetcAlarm' => env( 71 | 'SECURITY_CHECK_SUBJECT_ALARM', 72 | '[composer-security-check]: Alarm - vulnerabilities detected.' 73 | ), 74 | 'mailFrom' => env('SECURITY_CHECK_MESSAGE_FROM', 'info@example.com'), 75 | 'mailFromName' => env('SECURITY_CHECK_MESSAGE_FROM_NAME', 'Info Example'), 76 | 'mailViewName' => env('SECURITY_CHECK_MAIL_VIEW_NAME', 'composer-security-check::mail'), 77 | 'logFilePath' => env('SECURITY_CHECK_LOG_FILE_PATH', storage_path().'/composersecurityCheck.log') 78 | ); 79 | ``` 80 | 81 | In config folder you can copy from .env.example the settings for yours .env file used in composer-security-check.php. 82 | If you use mathiasgrimm/laravel-env-validator in config folder you'll find and example for validate the env settings. 83 | 84 | 85 | ## USAGE 86 | 87 | When the installation is done you can easily run command to print help: 88 | ```bash 89 | php artisan composer-security:check 90 | ``` 91 | 92 | The `composer-security:check` command looks for every composer.lock file in the given path 93 | and foreach composer.lock check for security issues in the project dependencies: 94 | `php composer-security:check` 95 | 96 | If you omit path argument, command look into current folder. 97 | 98 | You can also pass the path as an argument: 99 | `php composer-security:check /path/to/my/repos` 100 | 101 | You can use * in path argument as jolly character i.e. `/var/www/*/*/` 102 | 103 | By default, the command displays the result in console, but you can also 104 | send an html email by using the `--mail`option: 105 | ```bash 106 | php composer-security:check /path/to/my/repos --mail=mymail@mydomain.me 107 | ``` 108 | ### EXAMPLE: 109 | 110 | Here is a basic example to check composer.lock into these dir: 111 | ```bash 112 | php artisan composer-security:check "/dir/to/check/*/*/" 113 | ``` 114 | Here is an example to send output report to mail: 115 | ```bash 116 | php artisan composer-security:check "/dir/to/check/*/*/" --mail=mymail@mydomain 117 | ``` 118 | Here is an example to ignore two composer.lock vulnerabilities into two dir (if command found any vulnerabilities into these dir, write it into output but the email subject isn't set to ALERT): 119 | ```bash 120 | php artisan composer-security:check "/dir/to/check/*/*/" --mail=mymail@mydomain --whitelist="/dir/to/put/in/witelist,/another/dir/to/put/in/witelist" 121 | ``` 122 | 123 | 124 | ## SCHEDULE COMMAND 125 | 126 | You can schedule a daily (or weekly etc..) report easly, by adding this line into `schedule` method in `app/Console/Kernel.php` : 127 | ```php 128 | // app/console/Kernel.php 129 | 130 | protected function schedule(Schedule $schedule) 131 | { 132 | ... 133 | $schedule->command('composer-security:check "/dir/to/check/" --mail=mymail@mydomain') 134 | ->daily() 135 | ->withoutOverlapping() 136 | ->sendOutputTo(Config::get('composer-security-check.logFilePath')); 137 | } 138 | ``` 139 | 140 | ## SCREENSHOOTS 141 | 142 | OUTPUT CONSOLE: 143 | ![screenshoot](https://raw.githubusercontent.com/padosoft/laravel-composer-security/master/resources/img/console-output.png) 144 | 145 | EMAIL VIEW WITH ALERT: 146 | ![screenshoot](https://raw.githubusercontent.com/padosoft/laravel-composer-security/master/resources/img/alert-vulnerability.png) 147 | 148 | EMAIL VIEW WITH VULNERABILITY WITELISTED: 149 | ![screenshoot](https://raw.githubusercontent.com/padosoft/laravel-composer-security/master/resources/img/warning-vulerability-witelisted.png) 150 | 151 | # Testing 152 | ```bash 153 | $ composer test 154 | ``` 155 | 156 | # Contributing 157 | 158 | Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details. 159 | 160 | # Security 161 | 162 | If you discover any security related issues, please email instead of using the issue tracker. 163 | 164 | # API Documentation 165 | 166 | Please see API documentation at [https://padosoft.github.io/laravel-composer-security](https://padosoft.github.io/laravel-composer-security) 167 | - [master](https://padosoft.github.io/laravel-composer-security/build/master/) 168 | 169 | # Credits 170 | 171 | - [Lorenzo Padovani](https://github.com/lopadova) 172 | - [All contributors](https://github.com/thephpleague/skeleton/contributors) 173 | 174 | # About Padosoft 175 | Padosoft is a software house based in Florence, Italy. Specialized in E-commerce and web sites. 176 | 177 | # License 178 | 179 | The MIT License (MIT). Please see [License File](LICENSE.md) for more information. 180 | 181 | [ico-version]: https://img.shields.io/packagist/v/padosoft/laravel-composer-security.svg?style=flat-square 182 | [ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square 183 | [ico-travis]: https://img.shields.io/travis/padosoft/laravel-composer-security/master.svg?style=flat-square 184 | [ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/padosoft/laravel-composer-security.svg?style=flat-square 185 | [ico-code-quality]: https://img.shields.io/scrutinizer/g/padosoft/laravel-composer-security.svg?style=flat-square 186 | [ico-downloads]: https://img.shields.io/packagist/dt/padosoft/laravel-composer-security.svg?style=flat-square 187 | [ico-sensiolab]: https://insight.sensiolabs.com/projects/80fa0430-55ff-4079-a34e-d189a9d21d5e/small.png 188 | 189 | [link-packagist]: https://packagist.org/packages/padosoft/laravel-composer-security 190 | [link-travis]: https://travis-ci.org/padosoft/laravel-composer-security 191 | [link-scrutinizer]: https://scrutinizer-ci.com/g/padosoft/laravel-composer-security/code-structure 192 | [link-code-quality]: https://scrutinizer-ci.com/g/padosoft/laravel-composer-security 193 | [link-downloads]: https://packagist.org/packages/padosoft/laravel-composer-security 194 | [link-sensiolab]: https://insight.sensiolabs.com/projects/80fa0430-55ff-4079-a34e-d189a9d21d5e 195 | [link-author]: https://github.com/lopadova 196 | [link-contributors]: ../../contributors 197 | 198 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "padosoft/laravel-composer-security", 3 | "description": "Security checker for composer.lock.", 4 | "keywords": ["composer", "security"], 5 | "license": "MIT", 6 | "type": "project", 7 | "authors": [ 8 | { 9 | "name": "padosoft", 10 | "email": "helpdesk@padosoft.com" 11 | } 12 | ], 13 | "require": { 14 | "guzzlehttp/guzzle": "~6.0", 15 | "illuminate/support": "~5.0", 16 | "illuminate/console": "~5.0", 17 | "tightenco/mailthief": "0.*" 18 | }, 19 | "require-dev": { 20 | "padosoft/laravel-test": "^1.0", 21 | "padosoft/test": "^0.1" 22 | }, 23 | "autoload": { 24 | "psr-4": { 25 | "Padosoft\\LaravelComposerSecurity\\": "src" 26 | } 27 | }, 28 | "autoload-dev": { 29 | "psr-4": { 30 | "Padosoft\\LaravelComposerSecurity\\Test\\": "tests" 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /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 | "hash": "56a21a42fccb27d693a5cea8d5508b88", 8 | "content-hash": "4b226a09f2ab0b985e98ede04b076476", 9 | "packages": [ 10 | { 11 | "name": "doctrine/inflector", 12 | "version": "v1.1.0", 13 | "source": { 14 | "type": "git", 15 | "url": "https://github.com/doctrine/inflector.git", 16 | "reference": "90b2128806bfde671b6952ab8bea493942c1fdae" 17 | }, 18 | "dist": { 19 | "type": "zip", 20 | "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae", 21 | "reference": "90b2128806bfde671b6952ab8bea493942c1fdae", 22 | "shasum": "" 23 | }, 24 | "require": { 25 | "php": ">=5.3.2" 26 | }, 27 | "require-dev": { 28 | "phpunit/phpunit": "4.*" 29 | }, 30 | "type": "library", 31 | "extra": { 32 | "branch-alias": { 33 | "dev-master": "1.1.x-dev" 34 | } 35 | }, 36 | "autoload": { 37 | "psr-0": { 38 | "Doctrine\\Common\\Inflector\\": "lib/" 39 | } 40 | }, 41 | "notification-url": "https://packagist.org/downloads/", 42 | "license": [ 43 | "MIT" 44 | ], 45 | "authors": [ 46 | { 47 | "name": "Roman Borschel", 48 | "email": "roman@code-factory.org" 49 | }, 50 | { 51 | "name": "Benjamin Eberlei", 52 | "email": "kontakt@beberlei.de" 53 | }, 54 | { 55 | "name": "Guilherme Blanco", 56 | "email": "guilhermeblanco@gmail.com" 57 | }, 58 | { 59 | "name": "Jonathan Wage", 60 | "email": "jonwage@gmail.com" 61 | }, 62 | { 63 | "name": "Johannes Schmitt", 64 | "email": "schmittjoh@gmail.com" 65 | } 66 | ], 67 | "description": "Common String Manipulations with regard to casing and singular/plural rules.", 68 | "homepage": "http://www.doctrine-project.org", 69 | "keywords": [ 70 | "inflection", 71 | "pluralize", 72 | "singularize", 73 | "string" 74 | ], 75 | "time": "2015-11-06 14:35:42" 76 | }, 77 | { 78 | "name": "guzzlehttp/guzzle", 79 | "version": "6.2.1", 80 | "source": { 81 | "type": "git", 82 | "url": "https://github.com/guzzle/guzzle.git", 83 | "reference": "3f808fba627f2c5b69e2501217bf31af349c1427" 84 | }, 85 | "dist": { 86 | "type": "zip", 87 | "url": "https://api.github.com/repos/guzzle/guzzle/zipball/3f808fba627f2c5b69e2501217bf31af349c1427", 88 | "reference": "3f808fba627f2c5b69e2501217bf31af349c1427", 89 | "shasum": "" 90 | }, 91 | "require": { 92 | "guzzlehttp/promises": "^1.0", 93 | "guzzlehttp/psr7": "^1.3.1", 94 | "php": ">=5.5" 95 | }, 96 | "require-dev": { 97 | "ext-curl": "*", 98 | "phpunit/phpunit": "^4.0", 99 | "psr/log": "^1.0" 100 | }, 101 | "type": "library", 102 | "extra": { 103 | "branch-alias": { 104 | "dev-master": "6.2-dev" 105 | } 106 | }, 107 | "autoload": { 108 | "files": [ 109 | "src/functions_include.php" 110 | ], 111 | "psr-4": { 112 | "GuzzleHttp\\": "src/" 113 | } 114 | }, 115 | "notification-url": "https://packagist.org/downloads/", 116 | "license": [ 117 | "MIT" 118 | ], 119 | "authors": [ 120 | { 121 | "name": "Michael Dowling", 122 | "email": "mtdowling@gmail.com", 123 | "homepage": "https://github.com/mtdowling" 124 | } 125 | ], 126 | "description": "Guzzle is a PHP HTTP client library", 127 | "homepage": "http://guzzlephp.org/", 128 | "keywords": [ 129 | "client", 130 | "curl", 131 | "framework", 132 | "http", 133 | "http client", 134 | "rest", 135 | "web service" 136 | ], 137 | "time": "2016-07-15 17:22:37" 138 | }, 139 | { 140 | "name": "guzzlehttp/promises", 141 | "version": "1.2.0", 142 | "source": { 143 | "type": "git", 144 | "url": "https://github.com/guzzle/promises.git", 145 | "reference": "c10d860e2a9595f8883527fa0021c7da9e65f579" 146 | }, 147 | "dist": { 148 | "type": "zip", 149 | "url": "https://api.github.com/repos/guzzle/promises/zipball/c10d860e2a9595f8883527fa0021c7da9e65f579", 150 | "reference": "c10d860e2a9595f8883527fa0021c7da9e65f579", 151 | "shasum": "" 152 | }, 153 | "require": { 154 | "php": ">=5.5.0" 155 | }, 156 | "require-dev": { 157 | "phpunit/phpunit": "~4.0" 158 | }, 159 | "type": "library", 160 | "extra": { 161 | "branch-alias": { 162 | "dev-master": "1.0-dev" 163 | } 164 | }, 165 | "autoload": { 166 | "psr-4": { 167 | "GuzzleHttp\\Promise\\": "src/" 168 | }, 169 | "files": [ 170 | "src/functions_include.php" 171 | ] 172 | }, 173 | "notification-url": "https://packagist.org/downloads/", 174 | "license": [ 175 | "MIT" 176 | ], 177 | "authors": [ 178 | { 179 | "name": "Michael Dowling", 180 | "email": "mtdowling@gmail.com", 181 | "homepage": "https://github.com/mtdowling" 182 | } 183 | ], 184 | "description": "Guzzle promises library", 185 | "keywords": [ 186 | "promise" 187 | ], 188 | "time": "2016-05-18 16:56:05" 189 | }, 190 | { 191 | "name": "guzzlehttp/psr7", 192 | "version": "1.3.1", 193 | "source": { 194 | "type": "git", 195 | "url": "https://github.com/guzzle/psr7.git", 196 | "reference": "5c6447c9df362e8f8093bda8f5d8873fe5c7f65b" 197 | }, 198 | "dist": { 199 | "type": "zip", 200 | "url": "https://api.github.com/repos/guzzle/psr7/zipball/5c6447c9df362e8f8093bda8f5d8873fe5c7f65b", 201 | "reference": "5c6447c9df362e8f8093bda8f5d8873fe5c7f65b", 202 | "shasum": "" 203 | }, 204 | "require": { 205 | "php": ">=5.4.0", 206 | "psr/http-message": "~1.0" 207 | }, 208 | "provide": { 209 | "psr/http-message-implementation": "1.0" 210 | }, 211 | "require-dev": { 212 | "phpunit/phpunit": "~4.0" 213 | }, 214 | "type": "library", 215 | "extra": { 216 | "branch-alias": { 217 | "dev-master": "1.4-dev" 218 | } 219 | }, 220 | "autoload": { 221 | "psr-4": { 222 | "GuzzleHttp\\Psr7\\": "src/" 223 | }, 224 | "files": [ 225 | "src/functions_include.php" 226 | ] 227 | }, 228 | "notification-url": "https://packagist.org/downloads/", 229 | "license": [ 230 | "MIT" 231 | ], 232 | "authors": [ 233 | { 234 | "name": "Michael Dowling", 235 | "email": "mtdowling@gmail.com", 236 | "homepage": "https://github.com/mtdowling" 237 | } 238 | ], 239 | "description": "PSR-7 message implementation", 240 | "keywords": [ 241 | "http", 242 | "message", 243 | "stream", 244 | "uri" 245 | ], 246 | "time": "2016-06-24 23:00:38" 247 | }, 248 | { 249 | "name": "illuminate/console", 250 | "version": "v5.3.4", 251 | "source": { 252 | "type": "git", 253 | "url": "https://github.com/illuminate/console.git", 254 | "reference": "a2a0804a5bf26172f67ba3d491ad8a19028bbab5" 255 | }, 256 | "dist": { 257 | "type": "zip", 258 | "url": "https://api.github.com/repos/illuminate/console/zipball/a2a0804a5bf26172f67ba3d491ad8a19028bbab5", 259 | "reference": "a2a0804a5bf26172f67ba3d491ad8a19028bbab5", 260 | "shasum": "" 261 | }, 262 | "require": { 263 | "illuminate/contracts": "5.3.*", 264 | "illuminate/support": "5.3.*", 265 | "nesbot/carbon": "~1.20", 266 | "php": ">=5.6.4", 267 | "symfony/console": "3.1.*" 268 | }, 269 | "suggest": { 270 | "guzzlehttp/guzzle": "Required to use the ping methods on schedules (~5.3|~6.0).", 271 | "mtdowling/cron-expression": "Required to use scheduling component (~1.0).", 272 | "symfony/process": "Required to use scheduling component (3.1.*)." 273 | }, 274 | "type": "library", 275 | "extra": { 276 | "branch-alias": { 277 | "dev-master": "5.3-dev" 278 | } 279 | }, 280 | "autoload": { 281 | "psr-4": { 282 | "Illuminate\\Console\\": "" 283 | } 284 | }, 285 | "notification-url": "https://packagist.org/downloads/", 286 | "license": [ 287 | "MIT" 288 | ], 289 | "authors": [ 290 | { 291 | "name": "Taylor Otwell", 292 | "email": "taylor@laravel.com" 293 | } 294 | ], 295 | "description": "The Illuminate Console package.", 296 | "homepage": "https://laravel.com", 297 | "time": "2016-08-07 19:56:57" 298 | }, 299 | { 300 | "name": "illuminate/container", 301 | "version": "v5.3.4", 302 | "source": { 303 | "type": "git", 304 | "url": "https://github.com/illuminate/container.git", 305 | "reference": "360f4900dbaa7e76ecfbb58e0ad4b244a90edfe3" 306 | }, 307 | "dist": { 308 | "type": "zip", 309 | "url": "https://api.github.com/repos/illuminate/container/zipball/360f4900dbaa7e76ecfbb58e0ad4b244a90edfe3", 310 | "reference": "360f4900dbaa7e76ecfbb58e0ad4b244a90edfe3", 311 | "shasum": "" 312 | }, 313 | "require": { 314 | "illuminate/contracts": "5.3.*", 315 | "php": ">=5.6.4" 316 | }, 317 | "type": "library", 318 | "extra": { 319 | "branch-alias": { 320 | "dev-master": "5.3-dev" 321 | } 322 | }, 323 | "autoload": { 324 | "psr-4": { 325 | "Illuminate\\Container\\": "" 326 | } 327 | }, 328 | "notification-url": "https://packagist.org/downloads/", 329 | "license": [ 330 | "MIT" 331 | ], 332 | "authors": [ 333 | { 334 | "name": "Taylor Otwell", 335 | "email": "taylor@laravel.com" 336 | } 337 | ], 338 | "description": "The Illuminate Container package.", 339 | "homepage": "https://laravel.com", 340 | "time": "2016-08-05 14:48:10" 341 | }, 342 | { 343 | "name": "illuminate/contracts", 344 | "version": "v5.3.4", 345 | "source": { 346 | "type": "git", 347 | "url": "https://github.com/illuminate/contracts.git", 348 | "reference": "f766fc0452d82d545b866a8ad5860b20ccd50763" 349 | }, 350 | "dist": { 351 | "type": "zip", 352 | "url": "https://api.github.com/repos/illuminate/contracts/zipball/f766fc0452d82d545b866a8ad5860b20ccd50763", 353 | "reference": "f766fc0452d82d545b866a8ad5860b20ccd50763", 354 | "shasum": "" 355 | }, 356 | "require": { 357 | "php": ">=5.6.4" 358 | }, 359 | "type": "library", 360 | "extra": { 361 | "branch-alias": { 362 | "dev-master": "5.3-dev" 363 | } 364 | }, 365 | "autoload": { 366 | "psr-4": { 367 | "Illuminate\\Contracts\\": "" 368 | } 369 | }, 370 | "notification-url": "https://packagist.org/downloads/", 371 | "license": [ 372 | "MIT" 373 | ], 374 | "authors": [ 375 | { 376 | "name": "Taylor Otwell", 377 | "email": "taylor@laravel.com" 378 | } 379 | ], 380 | "description": "The Illuminate Contracts package.", 381 | "homepage": "https://laravel.com", 382 | "time": "2016-08-21 12:37:00" 383 | }, 384 | { 385 | "name": "illuminate/events", 386 | "version": "v5.3.4", 387 | "source": { 388 | "type": "git", 389 | "url": "https://github.com/illuminate/events.git", 390 | "reference": "cb29124d4eaba8a60bad40e95e3d8b199d040d77" 391 | }, 392 | "dist": { 393 | "type": "zip", 394 | "url": "https://api.github.com/repos/illuminate/events/zipball/cb29124d4eaba8a60bad40e95e3d8b199d040d77", 395 | "reference": "cb29124d4eaba8a60bad40e95e3d8b199d040d77", 396 | "shasum": "" 397 | }, 398 | "require": { 399 | "illuminate/container": "5.3.*", 400 | "illuminate/contracts": "5.3.*", 401 | "illuminate/support": "5.3.*", 402 | "php": ">=5.6.4" 403 | }, 404 | "type": "library", 405 | "extra": { 406 | "branch-alias": { 407 | "dev-master": "5.3-dev" 408 | } 409 | }, 410 | "autoload": { 411 | "psr-4": { 412 | "Illuminate\\Events\\": "" 413 | } 414 | }, 415 | "notification-url": "https://packagist.org/downloads/", 416 | "license": [ 417 | "MIT" 418 | ], 419 | "authors": [ 420 | { 421 | "name": "Taylor Otwell", 422 | "email": "taylor@laravel.com" 423 | } 424 | ], 425 | "description": "The Illuminate Events package.", 426 | "homepage": "https://laravel.com", 427 | "time": "2016-08-12 14:24:30" 428 | }, 429 | { 430 | "name": "illuminate/filesystem", 431 | "version": "v5.3.4", 432 | "source": { 433 | "type": "git", 434 | "url": "https://github.com/illuminate/filesystem.git", 435 | "reference": "72da79358499a38b437ff4b0e42f909660555298" 436 | }, 437 | "dist": { 438 | "type": "zip", 439 | "url": "https://api.github.com/repos/illuminate/filesystem/zipball/72da79358499a38b437ff4b0e42f909660555298", 440 | "reference": "72da79358499a38b437ff4b0e42f909660555298", 441 | "shasum": "" 442 | }, 443 | "require": { 444 | "illuminate/contracts": "5.3.*", 445 | "illuminate/support": "5.3.*", 446 | "php": ">=5.6.4", 447 | "symfony/finder": "3.1.*" 448 | }, 449 | "suggest": { 450 | "league/flysystem": "Required to use the Flysystem local and FTP drivers (~1.0).", 451 | "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).", 452 | "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0)." 453 | }, 454 | "type": "library", 455 | "extra": { 456 | "branch-alias": { 457 | "dev-master": "5.3-dev" 458 | } 459 | }, 460 | "autoload": { 461 | "psr-4": { 462 | "Illuminate\\Filesystem\\": "" 463 | } 464 | }, 465 | "notification-url": "https://packagist.org/downloads/", 466 | "license": [ 467 | "MIT" 468 | ], 469 | "authors": [ 470 | { 471 | "name": "Taylor Otwell", 472 | "email": "taylor@laravel.com" 473 | } 474 | ], 475 | "description": "The Illuminate Filesystem package.", 476 | "homepage": "https://laravel.com", 477 | "time": "2016-08-22 03:02:14" 478 | }, 479 | { 480 | "name": "illuminate/mail", 481 | "version": "v5.3.4", 482 | "source": { 483 | "type": "git", 484 | "url": "https://github.com/illuminate/mail.git", 485 | "reference": "0f7b731285774fdf55e0071fbccffc3adb4e4156" 486 | }, 487 | "dist": { 488 | "type": "zip", 489 | "url": "https://api.github.com/repos/illuminate/mail/zipball/0f7b731285774fdf55e0071fbccffc3adb4e4156", 490 | "reference": "0f7b731285774fdf55e0071fbccffc3adb4e4156", 491 | "shasum": "" 492 | }, 493 | "require": { 494 | "illuminate/container": "5.3.*", 495 | "illuminate/contracts": "5.3.*", 496 | "illuminate/support": "5.3.*", 497 | "php": ">=5.6.4", 498 | "psr/log": "~1.0", 499 | "swiftmailer/swiftmailer": "~5.1" 500 | }, 501 | "suggest": { 502 | "aws/aws-sdk-php": "Required to use the SES mail driver (~3.0).", 503 | "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers (~5.3|~6.0).", 504 | "jeremeamia/superclosure": "Required to be able to serialize closures (~2.0)." 505 | }, 506 | "type": "library", 507 | "extra": { 508 | "branch-alias": { 509 | "dev-master": "5.3-dev" 510 | } 511 | }, 512 | "autoload": { 513 | "psr-4": { 514 | "Illuminate\\Mail\\": "" 515 | } 516 | }, 517 | "notification-url": "https://packagist.org/downloads/", 518 | "license": [ 519 | "MIT" 520 | ], 521 | "authors": [ 522 | { 523 | "name": "Taylor Otwell", 524 | "email": "taylor@laravel.com" 525 | } 526 | ], 527 | "description": "The Illuminate Mail package.", 528 | "homepage": "https://laravel.com", 529 | "time": "2016-08-17 14:13:04" 530 | }, 531 | { 532 | "name": "illuminate/support", 533 | "version": "v5.3.4", 534 | "source": { 535 | "type": "git", 536 | "url": "https://github.com/illuminate/support.git", 537 | "reference": "1b4f32dfa799dd8d0e0d11e0aaaf677e2829d6e8" 538 | }, 539 | "dist": { 540 | "type": "zip", 541 | "url": "https://api.github.com/repos/illuminate/support/zipball/1b4f32dfa799dd8d0e0d11e0aaaf677e2829d6e8", 542 | "reference": "1b4f32dfa799dd8d0e0d11e0aaaf677e2829d6e8", 543 | "shasum": "" 544 | }, 545 | "require": { 546 | "doctrine/inflector": "~1.0", 547 | "ext-mbstring": "*", 548 | "illuminate/contracts": "5.3.*", 549 | "paragonie/random_compat": "~1.4|~2.0", 550 | "php": ">=5.6.4" 551 | }, 552 | "replace": { 553 | "tightenco/collect": "self.version" 554 | }, 555 | "suggest": { 556 | "illuminate/filesystem": "Required to use the composer class (5.2.*).", 557 | "symfony/process": "Required to use the composer class (3.1.*).", 558 | "symfony/var-dumper": "Required to use the dd function (3.1.*)." 559 | }, 560 | "type": "library", 561 | "extra": { 562 | "branch-alias": { 563 | "dev-master": "5.3-dev" 564 | } 565 | }, 566 | "autoload": { 567 | "psr-4": { 568 | "Illuminate\\Support\\": "" 569 | }, 570 | "files": [ 571 | "helpers.php" 572 | ] 573 | }, 574 | "notification-url": "https://packagist.org/downloads/", 575 | "license": [ 576 | "MIT" 577 | ], 578 | "authors": [ 579 | { 580 | "name": "Taylor Otwell", 581 | "email": "taylor@laravel.com" 582 | } 583 | ], 584 | "description": "The Illuminate Support package.", 585 | "homepage": "https://laravel.com", 586 | "time": "2016-08-26 17:26:49" 587 | }, 588 | { 589 | "name": "illuminate/view", 590 | "version": "v5.3.4", 591 | "source": { 592 | "type": "git", 593 | "url": "https://github.com/illuminate/view.git", 594 | "reference": "cbafb75c07e93aff38eea6e917cc7e8ee1deeaa1" 595 | }, 596 | "dist": { 597 | "type": "zip", 598 | "url": "https://api.github.com/repos/illuminate/view/zipball/cbafb75c07e93aff38eea6e917cc7e8ee1deeaa1", 599 | "reference": "cbafb75c07e93aff38eea6e917cc7e8ee1deeaa1", 600 | "shasum": "" 601 | }, 602 | "require": { 603 | "illuminate/container": "5.3.*", 604 | "illuminate/contracts": "5.3.*", 605 | "illuminate/events": "5.3.*", 606 | "illuminate/filesystem": "5.3.*", 607 | "illuminate/support": "5.3.*", 608 | "php": ">=5.6.4", 609 | "symfony/debug": "3.1.*" 610 | }, 611 | "type": "library", 612 | "extra": { 613 | "branch-alias": { 614 | "dev-master": "5.3-dev" 615 | } 616 | }, 617 | "autoload": { 618 | "psr-4": { 619 | "Illuminate\\View\\": "" 620 | } 621 | }, 622 | "notification-url": "https://packagist.org/downloads/", 623 | "license": [ 624 | "MIT" 625 | ], 626 | "authors": [ 627 | { 628 | "name": "Taylor Otwell", 629 | "email": "taylor@laravel.com" 630 | } 631 | ], 632 | "description": "The Illuminate View package.", 633 | "homepage": "https://laravel.com", 634 | "time": "2016-08-24 08:31:50" 635 | }, 636 | { 637 | "name": "nesbot/carbon", 638 | "version": "1.21.0", 639 | "source": { 640 | "type": "git", 641 | "url": "https://github.com/briannesbitt/Carbon.git", 642 | "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7" 643 | }, 644 | "dist": { 645 | "type": "zip", 646 | "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7b08ec6f75791e130012f206e3f7b0e76e18e3d7", 647 | "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7", 648 | "shasum": "" 649 | }, 650 | "require": { 651 | "php": ">=5.3.0", 652 | "symfony/translation": "~2.6|~3.0" 653 | }, 654 | "require-dev": { 655 | "phpunit/phpunit": "~4.0|~5.0" 656 | }, 657 | "type": "library", 658 | "autoload": { 659 | "psr-4": { 660 | "Carbon\\": "src/Carbon/" 661 | } 662 | }, 663 | "notification-url": "https://packagist.org/downloads/", 664 | "license": [ 665 | "MIT" 666 | ], 667 | "authors": [ 668 | { 669 | "name": "Brian Nesbitt", 670 | "email": "brian@nesbot.com", 671 | "homepage": "http://nesbot.com" 672 | } 673 | ], 674 | "description": "A simple API extension for DateTime.", 675 | "homepage": "http://carbon.nesbot.com", 676 | "keywords": [ 677 | "date", 678 | "datetime", 679 | "time" 680 | ], 681 | "time": "2015-11-04 20:07:17" 682 | }, 683 | { 684 | "name": "paragonie/random_compat", 685 | "version": "v2.0.2", 686 | "source": { 687 | "type": "git", 688 | "url": "https://github.com/paragonie/random_compat.git", 689 | "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf" 690 | }, 691 | "dist": { 692 | "type": "zip", 693 | "url": "https://api.github.com/repos/paragonie/random_compat/zipball/088c04e2f261c33bed6ca5245491cfca69195ccf", 694 | "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf", 695 | "shasum": "" 696 | }, 697 | "require": { 698 | "php": ">=5.2.0" 699 | }, 700 | "require-dev": { 701 | "phpunit/phpunit": "4.*|5.*" 702 | }, 703 | "suggest": { 704 | "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." 705 | }, 706 | "type": "library", 707 | "autoload": { 708 | "files": [ 709 | "lib/random.php" 710 | ] 711 | }, 712 | "notification-url": "https://packagist.org/downloads/", 713 | "license": [ 714 | "MIT" 715 | ], 716 | "authors": [ 717 | { 718 | "name": "Paragon Initiative Enterprises", 719 | "email": "security@paragonie.com", 720 | "homepage": "https://paragonie.com" 721 | } 722 | ], 723 | "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", 724 | "keywords": [ 725 | "csprng", 726 | "pseudorandom", 727 | "random" 728 | ], 729 | "time": "2016-04-03 06:00:07" 730 | }, 731 | { 732 | "name": "psr/http-message", 733 | "version": "1.0.1", 734 | "source": { 735 | "type": "git", 736 | "url": "https://github.com/php-fig/http-message.git", 737 | "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" 738 | }, 739 | "dist": { 740 | "type": "zip", 741 | "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", 742 | "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", 743 | "shasum": "" 744 | }, 745 | "require": { 746 | "php": ">=5.3.0" 747 | }, 748 | "type": "library", 749 | "extra": { 750 | "branch-alias": { 751 | "dev-master": "1.0.x-dev" 752 | } 753 | }, 754 | "autoload": { 755 | "psr-4": { 756 | "Psr\\Http\\Message\\": "src/" 757 | } 758 | }, 759 | "notification-url": "https://packagist.org/downloads/", 760 | "license": [ 761 | "MIT" 762 | ], 763 | "authors": [ 764 | { 765 | "name": "PHP-FIG", 766 | "homepage": "http://www.php-fig.org/" 767 | } 768 | ], 769 | "description": "Common interface for HTTP messages", 770 | "homepage": "https://github.com/php-fig/http-message", 771 | "keywords": [ 772 | "http", 773 | "http-message", 774 | "psr", 775 | "psr-7", 776 | "request", 777 | "response" 778 | ], 779 | "time": "2016-08-06 14:39:51" 780 | }, 781 | { 782 | "name": "psr/log", 783 | "version": "1.0.0", 784 | "source": { 785 | "type": "git", 786 | "url": "https://github.com/php-fig/log.git", 787 | "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b" 788 | }, 789 | "dist": { 790 | "type": "zip", 791 | "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b", 792 | "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b", 793 | "shasum": "" 794 | }, 795 | "type": "library", 796 | "autoload": { 797 | "psr-0": { 798 | "Psr\\Log\\": "" 799 | } 800 | }, 801 | "notification-url": "https://packagist.org/downloads/", 802 | "license": [ 803 | "MIT" 804 | ], 805 | "authors": [ 806 | { 807 | "name": "PHP-FIG", 808 | "homepage": "http://www.php-fig.org/" 809 | } 810 | ], 811 | "description": "Common interface for logging libraries", 812 | "keywords": [ 813 | "log", 814 | "psr", 815 | "psr-3" 816 | ], 817 | "time": "2012-12-21 11:40:51" 818 | }, 819 | { 820 | "name": "swiftmailer/swiftmailer", 821 | "version": "v5.4.5", 822 | "source": { 823 | "type": "git", 824 | "url": "https://github.com/swiftmailer/swiftmailer.git", 825 | "reference": "cd142238a339459b10da3d8234220963f392540c" 826 | }, 827 | "dist": { 828 | "type": "zip", 829 | "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/cd142238a339459b10da3d8234220963f392540c", 830 | "reference": "cd142238a339459b10da3d8234220963f392540c", 831 | "shasum": "" 832 | }, 833 | "require": { 834 | "php": ">=5.3.3" 835 | }, 836 | "require-dev": { 837 | "mockery/mockery": "~0.9.1", 838 | "symfony/phpunit-bridge": "~3.2" 839 | }, 840 | "type": "library", 841 | "extra": { 842 | "branch-alias": { 843 | "dev-master": "5.4-dev" 844 | } 845 | }, 846 | "autoload": { 847 | "files": [ 848 | "lib/swift_required.php" 849 | ] 850 | }, 851 | "notification-url": "https://packagist.org/downloads/", 852 | "license": [ 853 | "MIT" 854 | ], 855 | "authors": [ 856 | { 857 | "name": "Chris Corbyn" 858 | }, 859 | { 860 | "name": "Fabien Potencier", 861 | "email": "fabien@symfony.com" 862 | } 863 | ], 864 | "description": "Swiftmailer, free feature-rich PHP mailer", 865 | "homepage": "http://swiftmailer.org", 866 | "keywords": [ 867 | "email", 868 | "mail", 869 | "mailer" 870 | ], 871 | "time": "2016-12-29 10:02:40" 872 | }, 873 | { 874 | "name": "symfony/console", 875 | "version": "v3.1.4", 876 | "source": { 877 | "type": "git", 878 | "url": "https://github.com/symfony/console.git", 879 | "reference": "8ea494c34f0f772c3954b5fbe00bffc5a435e563" 880 | }, 881 | "dist": { 882 | "type": "zip", 883 | "url": "https://api.github.com/repos/symfony/console/zipball/8ea494c34f0f772c3954b5fbe00bffc5a435e563", 884 | "reference": "8ea494c34f0f772c3954b5fbe00bffc5a435e563", 885 | "shasum": "" 886 | }, 887 | "require": { 888 | "php": ">=5.5.9", 889 | "symfony/polyfill-mbstring": "~1.0" 890 | }, 891 | "require-dev": { 892 | "psr/log": "~1.0", 893 | "symfony/event-dispatcher": "~2.8|~3.0", 894 | "symfony/process": "~2.8|~3.0" 895 | }, 896 | "suggest": { 897 | "psr/log": "For using the console logger", 898 | "symfony/event-dispatcher": "", 899 | "symfony/process": "" 900 | }, 901 | "type": "library", 902 | "extra": { 903 | "branch-alias": { 904 | "dev-master": "3.1-dev" 905 | } 906 | }, 907 | "autoload": { 908 | "psr-4": { 909 | "Symfony\\Component\\Console\\": "" 910 | }, 911 | "exclude-from-classmap": [ 912 | "/Tests/" 913 | ] 914 | }, 915 | "notification-url": "https://packagist.org/downloads/", 916 | "license": [ 917 | "MIT" 918 | ], 919 | "authors": [ 920 | { 921 | "name": "Fabien Potencier", 922 | "email": "fabien@symfony.com" 923 | }, 924 | { 925 | "name": "Symfony Community", 926 | "homepage": "https://symfony.com/contributors" 927 | } 928 | ], 929 | "description": "Symfony Console Component", 930 | "homepage": "https://symfony.com", 931 | "time": "2016-08-19 06:48:39" 932 | }, 933 | { 934 | "name": "symfony/debug", 935 | "version": "v3.1.4", 936 | "source": { 937 | "type": "git", 938 | "url": "https://github.com/symfony/debug.git", 939 | "reference": "34f6ac18c2974ca5fce68adf419ee7d15def6f11" 940 | }, 941 | "dist": { 942 | "type": "zip", 943 | "url": "https://api.github.com/repos/symfony/debug/zipball/34f6ac18c2974ca5fce68adf419ee7d15def6f11", 944 | "reference": "34f6ac18c2974ca5fce68adf419ee7d15def6f11", 945 | "shasum": "" 946 | }, 947 | "require": { 948 | "php": ">=5.5.9", 949 | "psr/log": "~1.0" 950 | }, 951 | "conflict": { 952 | "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" 953 | }, 954 | "require-dev": { 955 | "symfony/class-loader": "~2.8|~3.0", 956 | "symfony/http-kernel": "~2.8|~3.0" 957 | }, 958 | "type": "library", 959 | "extra": { 960 | "branch-alias": { 961 | "dev-master": "3.1-dev" 962 | } 963 | }, 964 | "autoload": { 965 | "psr-4": { 966 | "Symfony\\Component\\Debug\\": "" 967 | }, 968 | "exclude-from-classmap": [ 969 | "/Tests/" 970 | ] 971 | }, 972 | "notification-url": "https://packagist.org/downloads/", 973 | "license": [ 974 | "MIT" 975 | ], 976 | "authors": [ 977 | { 978 | "name": "Fabien Potencier", 979 | "email": "fabien@symfony.com" 980 | }, 981 | { 982 | "name": "Symfony Community", 983 | "homepage": "https://symfony.com/contributors" 984 | } 985 | ], 986 | "description": "Symfony Debug Component", 987 | "homepage": "https://symfony.com", 988 | "time": "2016-08-23 13:39:15" 989 | }, 990 | { 991 | "name": "symfony/finder", 992 | "version": "v3.1.4", 993 | "source": { 994 | "type": "git", 995 | "url": "https://github.com/symfony/finder.git", 996 | "reference": "e568ef1784f447a0e54dcb6f6de30b9747b0f577" 997 | }, 998 | "dist": { 999 | "type": "zip", 1000 | "url": "https://api.github.com/repos/symfony/finder/zipball/e568ef1784f447a0e54dcb6f6de30b9747b0f577", 1001 | "reference": "e568ef1784f447a0e54dcb6f6de30b9747b0f577", 1002 | "shasum": "" 1003 | }, 1004 | "require": { 1005 | "php": ">=5.5.9" 1006 | }, 1007 | "type": "library", 1008 | "extra": { 1009 | "branch-alias": { 1010 | "dev-master": "3.1-dev" 1011 | } 1012 | }, 1013 | "autoload": { 1014 | "psr-4": { 1015 | "Symfony\\Component\\Finder\\": "" 1016 | }, 1017 | "exclude-from-classmap": [ 1018 | "/Tests/" 1019 | ] 1020 | }, 1021 | "notification-url": "https://packagist.org/downloads/", 1022 | "license": [ 1023 | "MIT" 1024 | ], 1025 | "authors": [ 1026 | { 1027 | "name": "Fabien Potencier", 1028 | "email": "fabien@symfony.com" 1029 | }, 1030 | { 1031 | "name": "Symfony Community", 1032 | "homepage": "https://symfony.com/contributors" 1033 | } 1034 | ], 1035 | "description": "Symfony Finder Component", 1036 | "homepage": "https://symfony.com", 1037 | "time": "2016-08-26 12:04:02" 1038 | }, 1039 | { 1040 | "name": "symfony/polyfill-mbstring", 1041 | "version": "v1.2.0", 1042 | "source": { 1043 | "type": "git", 1044 | "url": "https://github.com/symfony/polyfill-mbstring.git", 1045 | "reference": "dff51f72b0706335131b00a7f49606168c582594" 1046 | }, 1047 | "dist": { 1048 | "type": "zip", 1049 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/dff51f72b0706335131b00a7f49606168c582594", 1050 | "reference": "dff51f72b0706335131b00a7f49606168c582594", 1051 | "shasum": "" 1052 | }, 1053 | "require": { 1054 | "php": ">=5.3.3" 1055 | }, 1056 | "suggest": { 1057 | "ext-mbstring": "For best performance" 1058 | }, 1059 | "type": "library", 1060 | "extra": { 1061 | "branch-alias": { 1062 | "dev-master": "1.2-dev" 1063 | } 1064 | }, 1065 | "autoload": { 1066 | "psr-4": { 1067 | "Symfony\\Polyfill\\Mbstring\\": "" 1068 | }, 1069 | "files": [ 1070 | "bootstrap.php" 1071 | ] 1072 | }, 1073 | "notification-url": "https://packagist.org/downloads/", 1074 | "license": [ 1075 | "MIT" 1076 | ], 1077 | "authors": [ 1078 | { 1079 | "name": "Nicolas Grekas", 1080 | "email": "p@tchwork.com" 1081 | }, 1082 | { 1083 | "name": "Symfony Community", 1084 | "homepage": "https://symfony.com/contributors" 1085 | } 1086 | ], 1087 | "description": "Symfony polyfill for the Mbstring extension", 1088 | "homepage": "https://symfony.com", 1089 | "keywords": [ 1090 | "compatibility", 1091 | "mbstring", 1092 | "polyfill", 1093 | "portable", 1094 | "shim" 1095 | ], 1096 | "time": "2016-05-18 14:26:46" 1097 | }, 1098 | { 1099 | "name": "symfony/translation", 1100 | "version": "v3.1.4", 1101 | "source": { 1102 | "type": "git", 1103 | "url": "https://github.com/symfony/translation.git", 1104 | "reference": "a35edc277513c9bc0f063ca174c36b346f974528" 1105 | }, 1106 | "dist": { 1107 | "type": "zip", 1108 | "url": "https://api.github.com/repos/symfony/translation/zipball/a35edc277513c9bc0f063ca174c36b346f974528", 1109 | "reference": "a35edc277513c9bc0f063ca174c36b346f974528", 1110 | "shasum": "" 1111 | }, 1112 | "require": { 1113 | "php": ">=5.5.9", 1114 | "symfony/polyfill-mbstring": "~1.0" 1115 | }, 1116 | "conflict": { 1117 | "symfony/config": "<2.8" 1118 | }, 1119 | "require-dev": { 1120 | "psr/log": "~1.0", 1121 | "symfony/config": "~2.8|~3.0", 1122 | "symfony/intl": "~2.8|~3.0", 1123 | "symfony/yaml": "~2.8|~3.0" 1124 | }, 1125 | "suggest": { 1126 | "psr/log": "To use logging capability in translator", 1127 | "symfony/config": "", 1128 | "symfony/yaml": "" 1129 | }, 1130 | "type": "library", 1131 | "extra": { 1132 | "branch-alias": { 1133 | "dev-master": "3.1-dev" 1134 | } 1135 | }, 1136 | "autoload": { 1137 | "psr-4": { 1138 | "Symfony\\Component\\Translation\\": "" 1139 | }, 1140 | "exclude-from-classmap": [ 1141 | "/Tests/" 1142 | ] 1143 | }, 1144 | "notification-url": "https://packagist.org/downloads/", 1145 | "license": [ 1146 | "MIT" 1147 | ], 1148 | "authors": [ 1149 | { 1150 | "name": "Fabien Potencier", 1151 | "email": "fabien@symfony.com" 1152 | }, 1153 | { 1154 | "name": "Symfony Community", 1155 | "homepage": "https://symfony.com/contributors" 1156 | } 1157 | ], 1158 | "description": "Symfony Translation Component", 1159 | "homepage": "https://symfony.com", 1160 | "time": "2016-08-05 08:37:39" 1161 | }, 1162 | { 1163 | "name": "tightenco/mailthief", 1164 | "version": "v0.3.1", 1165 | "source": { 1166 | "type": "git", 1167 | "url": "https://github.com/tightenco/mailthief.git", 1168 | "reference": "4a341566a41042da9e83397929c55cdc0caa27e6" 1169 | }, 1170 | "dist": { 1171 | "type": "zip", 1172 | "url": "https://api.github.com/repos/tightenco/mailthief/zipball/4a341566a41042da9e83397929c55cdc0caa27e6", 1173 | "reference": "4a341566a41042da9e83397929c55cdc0caa27e6", 1174 | "shasum": "" 1175 | }, 1176 | "require": { 1177 | "illuminate/mail": "^5.0", 1178 | "illuminate/view": "^5.0" 1179 | }, 1180 | "require-dev": { 1181 | "laravel/framework": "^5.1", 1182 | "mockery/mockery": "^0.9.5", 1183 | "phpunit/phpunit": "^5.5" 1184 | }, 1185 | "type": "library", 1186 | "autoload": { 1187 | "psr-4": { 1188 | "MailThief\\": "src/" 1189 | } 1190 | }, 1191 | "notification-url": "https://packagist.org/downloads/", 1192 | "license": [ 1193 | "MIT" 1194 | ], 1195 | "authors": [ 1196 | { 1197 | "name": "Adam Wathan", 1198 | "email": "adam.wathan@gmail.com" 1199 | } 1200 | ], 1201 | "description": "A fake Mailer for Laravel applications that takes the pain out of testing mail.", 1202 | "time": "2016-09-13 16:55:31" 1203 | } 1204 | ], 1205 | "packages-dev": [ 1206 | { 1207 | "name": "doctrine/instantiator", 1208 | "version": "1.0.5", 1209 | "source": { 1210 | "type": "git", 1211 | "url": "https://github.com/doctrine/instantiator.git", 1212 | "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" 1213 | }, 1214 | "dist": { 1215 | "type": "zip", 1216 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", 1217 | "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", 1218 | "shasum": "" 1219 | }, 1220 | "require": { 1221 | "php": ">=5.3,<8.0-DEV" 1222 | }, 1223 | "require-dev": { 1224 | "athletic/athletic": "~0.1.8", 1225 | "ext-pdo": "*", 1226 | "ext-phar": "*", 1227 | "phpunit/phpunit": "~4.0", 1228 | "squizlabs/php_codesniffer": "~2.0" 1229 | }, 1230 | "type": "library", 1231 | "extra": { 1232 | "branch-alias": { 1233 | "dev-master": "1.0.x-dev" 1234 | } 1235 | }, 1236 | "autoload": { 1237 | "psr-4": { 1238 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 1239 | } 1240 | }, 1241 | "notification-url": "https://packagist.org/downloads/", 1242 | "license": [ 1243 | "MIT" 1244 | ], 1245 | "authors": [ 1246 | { 1247 | "name": "Marco Pivetta", 1248 | "email": "ocramius@gmail.com", 1249 | "homepage": "http://ocramius.github.com/" 1250 | } 1251 | ], 1252 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 1253 | "homepage": "https://github.com/doctrine/instantiator", 1254 | "keywords": [ 1255 | "constructor", 1256 | "instantiate" 1257 | ], 1258 | "time": "2015-06-14 21:17:01" 1259 | }, 1260 | { 1261 | "name": "padosoft/laravel-test", 1262 | "version": "1.1.5", 1263 | "source": { 1264 | "type": "git", 1265 | "url": "https://github.com/padosoft/laravel-test.git", 1266 | "reference": "0640be45ab0e71a601d0198fe29d54f1c92420e8" 1267 | }, 1268 | "dist": { 1269 | "type": "zip", 1270 | "url": "https://api.github.com/repos/padosoft/laravel-test/zipball/0640be45ab0e71a601d0198fe29d54f1c92420e8", 1271 | "reference": "0640be45ab0e71a601d0198fe29d54f1c92420e8", 1272 | "shasum": "" 1273 | }, 1274 | "require": { 1275 | "padosoft/test": "^0.1" 1276 | }, 1277 | "type": "project", 1278 | "autoload": { 1279 | "classmap": [], 1280 | "psr-4": { 1281 | "Padosoft\\LaravelTest\\": "src" 1282 | } 1283 | }, 1284 | "notification-url": "https://packagist.org/downloads/", 1285 | "license": [ 1286 | "MIT" 1287 | ], 1288 | "authors": [ 1289 | { 1290 | "name": "padosoft", 1291 | "email": "helpdesk@padosoft.com" 1292 | } 1293 | ], 1294 | "description": "laravel test", 1295 | "keywords": [ 1296 | "laravel", 1297 | "test" 1298 | ], 1299 | "time": "2016-08-07 22:11:55" 1300 | }, 1301 | { 1302 | "name": "padosoft/test", 1303 | "version": "0.1.5", 1304 | "source": { 1305 | "type": "git", 1306 | "url": "https://github.com/padosoft/test.git", 1307 | "reference": "83879a7e73d9002822e2ba72853a4a462fdaddaf" 1308 | }, 1309 | "dist": { 1310 | "type": "zip", 1311 | "url": "https://api.github.com/repos/padosoft/test/zipball/83879a7e73d9002822e2ba72853a4a462fdaddaf", 1312 | "reference": "83879a7e73d9002822e2ba72853a4a462fdaddaf", 1313 | "shasum": "" 1314 | }, 1315 | "require": { 1316 | "guzzlehttp/guzzle": "~6.0", 1317 | "phpunit/phpunit": "4.*" 1318 | }, 1319 | "type": "library", 1320 | "autoload": { 1321 | "psr-4": { 1322 | "Padosoft\\Test\\": "src" 1323 | } 1324 | }, 1325 | "notification-url": "https://packagist.org/downloads/", 1326 | "license": [ 1327 | "MIT" 1328 | ], 1329 | "authors": [ 1330 | { 1331 | "name": "padosoft", 1332 | "email": "helpdesk@padosoft.com", 1333 | "homepage": "https://www.padosoft.com", 1334 | "role": "Developer" 1335 | } 1336 | ], 1337 | "description": "classes fot test", 1338 | "homepage": "https://github.org/padosoft/test/", 1339 | "keywords": [ 1340 | "test" 1341 | ], 1342 | "time": "2016-08-07 22:08:22" 1343 | }, 1344 | { 1345 | "name": "phpdocumentor/reflection-common", 1346 | "version": "1.0", 1347 | "source": { 1348 | "type": "git", 1349 | "url": "https://github.com/phpDocumentor/ReflectionCommon.git", 1350 | "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c" 1351 | }, 1352 | "dist": { 1353 | "type": "zip", 1354 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c", 1355 | "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c", 1356 | "shasum": "" 1357 | }, 1358 | "require": { 1359 | "php": ">=5.5" 1360 | }, 1361 | "require-dev": { 1362 | "phpunit/phpunit": "^4.6" 1363 | }, 1364 | "type": "library", 1365 | "extra": { 1366 | "branch-alias": { 1367 | "dev-master": "1.0.x-dev" 1368 | } 1369 | }, 1370 | "autoload": { 1371 | "psr-4": { 1372 | "phpDocumentor\\Reflection\\": [ 1373 | "src" 1374 | ] 1375 | } 1376 | }, 1377 | "notification-url": "https://packagist.org/downloads/", 1378 | "license": [ 1379 | "MIT" 1380 | ], 1381 | "authors": [ 1382 | { 1383 | "name": "Jaap van Otterdijk", 1384 | "email": "opensource@ijaap.nl" 1385 | } 1386 | ], 1387 | "description": "Common reflection classes used by phpdocumentor to reflect the code structure", 1388 | "homepage": "http://www.phpdoc.org", 1389 | "keywords": [ 1390 | "FQSEN", 1391 | "phpDocumentor", 1392 | "phpdoc", 1393 | "reflection", 1394 | "static analysis" 1395 | ], 1396 | "time": "2015-12-27 11:43:31" 1397 | }, 1398 | { 1399 | "name": "phpdocumentor/reflection-docblock", 1400 | "version": "3.1.0", 1401 | "source": { 1402 | "type": "git", 1403 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", 1404 | "reference": "9270140b940ff02e58ec577c237274e92cd40cdd" 1405 | }, 1406 | "dist": { 1407 | "type": "zip", 1408 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9270140b940ff02e58ec577c237274e92cd40cdd", 1409 | "reference": "9270140b940ff02e58ec577c237274e92cd40cdd", 1410 | "shasum": "" 1411 | }, 1412 | "require": { 1413 | "php": ">=5.5", 1414 | "phpdocumentor/reflection-common": "^1.0@dev", 1415 | "phpdocumentor/type-resolver": "^0.2.0", 1416 | "webmozart/assert": "^1.0" 1417 | }, 1418 | "require-dev": { 1419 | "mockery/mockery": "^0.9.4", 1420 | "phpunit/phpunit": "^4.4" 1421 | }, 1422 | "type": "library", 1423 | "autoload": { 1424 | "psr-4": { 1425 | "phpDocumentor\\Reflection\\": [ 1426 | "src/" 1427 | ] 1428 | } 1429 | }, 1430 | "notification-url": "https://packagist.org/downloads/", 1431 | "license": [ 1432 | "MIT" 1433 | ], 1434 | "authors": [ 1435 | { 1436 | "name": "Mike van Riel", 1437 | "email": "me@mikevanriel.com" 1438 | } 1439 | ], 1440 | "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", 1441 | "time": "2016-06-10 09:48:41" 1442 | }, 1443 | { 1444 | "name": "phpdocumentor/type-resolver", 1445 | "version": "0.2", 1446 | "source": { 1447 | "type": "git", 1448 | "url": "https://github.com/phpDocumentor/TypeResolver.git", 1449 | "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443" 1450 | }, 1451 | "dist": { 1452 | "type": "zip", 1453 | "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/b39c7a5b194f9ed7bd0dd345c751007a41862443", 1454 | "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443", 1455 | "shasum": "" 1456 | }, 1457 | "require": { 1458 | "php": ">=5.5", 1459 | "phpdocumentor/reflection-common": "^1.0" 1460 | }, 1461 | "require-dev": { 1462 | "mockery/mockery": "^0.9.4", 1463 | "phpunit/phpunit": "^5.2||^4.8.24" 1464 | }, 1465 | "type": "library", 1466 | "extra": { 1467 | "branch-alias": { 1468 | "dev-master": "1.0.x-dev" 1469 | } 1470 | }, 1471 | "autoload": { 1472 | "psr-4": { 1473 | "phpDocumentor\\Reflection\\": [ 1474 | "src/" 1475 | ] 1476 | } 1477 | }, 1478 | "notification-url": "https://packagist.org/downloads/", 1479 | "license": [ 1480 | "MIT" 1481 | ], 1482 | "authors": [ 1483 | { 1484 | "name": "Mike van Riel", 1485 | "email": "me@mikevanriel.com" 1486 | } 1487 | ], 1488 | "time": "2016-06-10 07:14:17" 1489 | }, 1490 | { 1491 | "name": "phpspec/prophecy", 1492 | "version": "v1.6.1", 1493 | "source": { 1494 | "type": "git", 1495 | "url": "https://github.com/phpspec/prophecy.git", 1496 | "reference": "58a8137754bc24b25740d4281399a4a3596058e0" 1497 | }, 1498 | "dist": { 1499 | "type": "zip", 1500 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/58a8137754bc24b25740d4281399a4a3596058e0", 1501 | "reference": "58a8137754bc24b25740d4281399a4a3596058e0", 1502 | "shasum": "" 1503 | }, 1504 | "require": { 1505 | "doctrine/instantiator": "^1.0.2", 1506 | "php": "^5.3|^7.0", 1507 | "phpdocumentor/reflection-docblock": "^2.0|^3.0.2", 1508 | "sebastian/comparator": "^1.1", 1509 | "sebastian/recursion-context": "^1.0" 1510 | }, 1511 | "require-dev": { 1512 | "phpspec/phpspec": "^2.0" 1513 | }, 1514 | "type": "library", 1515 | "extra": { 1516 | "branch-alias": { 1517 | "dev-master": "1.6.x-dev" 1518 | } 1519 | }, 1520 | "autoload": { 1521 | "psr-0": { 1522 | "Prophecy\\": "src/" 1523 | } 1524 | }, 1525 | "notification-url": "https://packagist.org/downloads/", 1526 | "license": [ 1527 | "MIT" 1528 | ], 1529 | "authors": [ 1530 | { 1531 | "name": "Konstantin Kudryashov", 1532 | "email": "ever.zet@gmail.com", 1533 | "homepage": "http://everzet.com" 1534 | }, 1535 | { 1536 | "name": "Marcello Duarte", 1537 | "email": "marcello.duarte@gmail.com" 1538 | } 1539 | ], 1540 | "description": "Highly opinionated mocking framework for PHP 5.3+", 1541 | "homepage": "https://github.com/phpspec/prophecy", 1542 | "keywords": [ 1543 | "Double", 1544 | "Dummy", 1545 | "fake", 1546 | "mock", 1547 | "spy", 1548 | "stub" 1549 | ], 1550 | "time": "2016-06-07 08:13:47" 1551 | }, 1552 | { 1553 | "name": "phpunit/php-code-coverage", 1554 | "version": "2.2.4", 1555 | "source": { 1556 | "type": "git", 1557 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 1558 | "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979" 1559 | }, 1560 | "dist": { 1561 | "type": "zip", 1562 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979", 1563 | "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979", 1564 | "shasum": "" 1565 | }, 1566 | "require": { 1567 | "php": ">=5.3.3", 1568 | "phpunit/php-file-iterator": "~1.3", 1569 | "phpunit/php-text-template": "~1.2", 1570 | "phpunit/php-token-stream": "~1.3", 1571 | "sebastian/environment": "^1.3.2", 1572 | "sebastian/version": "~1.0" 1573 | }, 1574 | "require-dev": { 1575 | "ext-xdebug": ">=2.1.4", 1576 | "phpunit/phpunit": "~4" 1577 | }, 1578 | "suggest": { 1579 | "ext-dom": "*", 1580 | "ext-xdebug": ">=2.2.1", 1581 | "ext-xmlwriter": "*" 1582 | }, 1583 | "type": "library", 1584 | "extra": { 1585 | "branch-alias": { 1586 | "dev-master": "2.2.x-dev" 1587 | } 1588 | }, 1589 | "autoload": { 1590 | "classmap": [ 1591 | "src/" 1592 | ] 1593 | }, 1594 | "notification-url": "https://packagist.org/downloads/", 1595 | "license": [ 1596 | "BSD-3-Clause" 1597 | ], 1598 | "authors": [ 1599 | { 1600 | "name": "Sebastian Bergmann", 1601 | "email": "sb@sebastian-bergmann.de", 1602 | "role": "lead" 1603 | } 1604 | ], 1605 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 1606 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 1607 | "keywords": [ 1608 | "coverage", 1609 | "testing", 1610 | "xunit" 1611 | ], 1612 | "time": "2015-10-06 15:47:00" 1613 | }, 1614 | { 1615 | "name": "phpunit/php-file-iterator", 1616 | "version": "1.4.1", 1617 | "source": { 1618 | "type": "git", 1619 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 1620 | "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0" 1621 | }, 1622 | "dist": { 1623 | "type": "zip", 1624 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0", 1625 | "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0", 1626 | "shasum": "" 1627 | }, 1628 | "require": { 1629 | "php": ">=5.3.3" 1630 | }, 1631 | "type": "library", 1632 | "extra": { 1633 | "branch-alias": { 1634 | "dev-master": "1.4.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": "sb@sebastian-bergmann.de", 1650 | "role": "lead" 1651 | } 1652 | ], 1653 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 1654 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 1655 | "keywords": [ 1656 | "filesystem", 1657 | "iterator" 1658 | ], 1659 | "time": "2015-06-21 13:08:43" 1660 | }, 1661 | { 1662 | "name": "phpunit/php-text-template", 1663 | "version": "1.2.1", 1664 | "source": { 1665 | "type": "git", 1666 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 1667 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" 1668 | }, 1669 | "dist": { 1670 | "type": "zip", 1671 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 1672 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 1673 | "shasum": "" 1674 | }, 1675 | "require": { 1676 | "php": ">=5.3.3" 1677 | }, 1678 | "type": "library", 1679 | "autoload": { 1680 | "classmap": [ 1681 | "src/" 1682 | ] 1683 | }, 1684 | "notification-url": "https://packagist.org/downloads/", 1685 | "license": [ 1686 | "BSD-3-Clause" 1687 | ], 1688 | "authors": [ 1689 | { 1690 | "name": "Sebastian Bergmann", 1691 | "email": "sebastian@phpunit.de", 1692 | "role": "lead" 1693 | } 1694 | ], 1695 | "description": "Simple template engine.", 1696 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 1697 | "keywords": [ 1698 | "template" 1699 | ], 1700 | "time": "2015-06-21 13:50:34" 1701 | }, 1702 | { 1703 | "name": "phpunit/php-timer", 1704 | "version": "1.0.8", 1705 | "source": { 1706 | "type": "git", 1707 | "url": "https://github.com/sebastianbergmann/php-timer.git", 1708 | "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260" 1709 | }, 1710 | "dist": { 1711 | "type": "zip", 1712 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/38e9124049cf1a164f1e4537caf19c99bf1eb260", 1713 | "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260", 1714 | "shasum": "" 1715 | }, 1716 | "require": { 1717 | "php": ">=5.3.3" 1718 | }, 1719 | "require-dev": { 1720 | "phpunit/phpunit": "~4|~5" 1721 | }, 1722 | "type": "library", 1723 | "autoload": { 1724 | "classmap": [ 1725 | "src/" 1726 | ] 1727 | }, 1728 | "notification-url": "https://packagist.org/downloads/", 1729 | "license": [ 1730 | "BSD-3-Clause" 1731 | ], 1732 | "authors": [ 1733 | { 1734 | "name": "Sebastian Bergmann", 1735 | "email": "sb@sebastian-bergmann.de", 1736 | "role": "lead" 1737 | } 1738 | ], 1739 | "description": "Utility class for timing", 1740 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 1741 | "keywords": [ 1742 | "timer" 1743 | ], 1744 | "time": "2016-05-12 18:03:57" 1745 | }, 1746 | { 1747 | "name": "phpunit/php-token-stream", 1748 | "version": "1.4.8", 1749 | "source": { 1750 | "type": "git", 1751 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", 1752 | "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da" 1753 | }, 1754 | "dist": { 1755 | "type": "zip", 1756 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da", 1757 | "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da", 1758 | "shasum": "" 1759 | }, 1760 | "require": { 1761 | "ext-tokenizer": "*", 1762 | "php": ">=5.3.3" 1763 | }, 1764 | "require-dev": { 1765 | "phpunit/phpunit": "~4.2" 1766 | }, 1767 | "type": "library", 1768 | "extra": { 1769 | "branch-alias": { 1770 | "dev-master": "1.4-dev" 1771 | } 1772 | }, 1773 | "autoload": { 1774 | "classmap": [ 1775 | "src/" 1776 | ] 1777 | }, 1778 | "notification-url": "https://packagist.org/downloads/", 1779 | "license": [ 1780 | "BSD-3-Clause" 1781 | ], 1782 | "authors": [ 1783 | { 1784 | "name": "Sebastian Bergmann", 1785 | "email": "sebastian@phpunit.de" 1786 | } 1787 | ], 1788 | "description": "Wrapper around PHP's tokenizer extension.", 1789 | "homepage": "https://github.com/sebastianbergmann/php-token-stream/", 1790 | "keywords": [ 1791 | "tokenizer" 1792 | ], 1793 | "time": "2015-09-15 10:49:45" 1794 | }, 1795 | { 1796 | "name": "phpunit/phpunit", 1797 | "version": "4.8.27", 1798 | "source": { 1799 | "type": "git", 1800 | "url": "https://github.com/sebastianbergmann/phpunit.git", 1801 | "reference": "c062dddcb68e44b563f66ee319ddae2b5a322a90" 1802 | }, 1803 | "dist": { 1804 | "type": "zip", 1805 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c062dddcb68e44b563f66ee319ddae2b5a322a90", 1806 | "reference": "c062dddcb68e44b563f66ee319ddae2b5a322a90", 1807 | "shasum": "" 1808 | }, 1809 | "require": { 1810 | "ext-dom": "*", 1811 | "ext-json": "*", 1812 | "ext-pcre": "*", 1813 | "ext-reflection": "*", 1814 | "ext-spl": "*", 1815 | "php": ">=5.3.3", 1816 | "phpspec/prophecy": "^1.3.1", 1817 | "phpunit/php-code-coverage": "~2.1", 1818 | "phpunit/php-file-iterator": "~1.4", 1819 | "phpunit/php-text-template": "~1.2", 1820 | "phpunit/php-timer": "^1.0.6", 1821 | "phpunit/phpunit-mock-objects": "~2.3", 1822 | "sebastian/comparator": "~1.1", 1823 | "sebastian/diff": "~1.2", 1824 | "sebastian/environment": "~1.3", 1825 | "sebastian/exporter": "~1.2", 1826 | "sebastian/global-state": "~1.0", 1827 | "sebastian/version": "~1.0", 1828 | "symfony/yaml": "~2.1|~3.0" 1829 | }, 1830 | "suggest": { 1831 | "phpunit/php-invoker": "~1.1" 1832 | }, 1833 | "bin": [ 1834 | "phpunit" 1835 | ], 1836 | "type": "library", 1837 | "extra": { 1838 | "branch-alias": { 1839 | "dev-master": "4.8.x-dev" 1840 | } 1841 | }, 1842 | "autoload": { 1843 | "classmap": [ 1844 | "src/" 1845 | ] 1846 | }, 1847 | "notification-url": "https://packagist.org/downloads/", 1848 | "license": [ 1849 | "BSD-3-Clause" 1850 | ], 1851 | "authors": [ 1852 | { 1853 | "name": "Sebastian Bergmann", 1854 | "email": "sebastian@phpunit.de", 1855 | "role": "lead" 1856 | } 1857 | ], 1858 | "description": "The PHP Unit Testing framework.", 1859 | "homepage": "https://phpunit.de/", 1860 | "keywords": [ 1861 | "phpunit", 1862 | "testing", 1863 | "xunit" 1864 | ], 1865 | "time": "2016-07-21 06:48:14" 1866 | }, 1867 | { 1868 | "name": "phpunit/phpunit-mock-objects", 1869 | "version": "2.3.8", 1870 | "source": { 1871 | "type": "git", 1872 | "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", 1873 | "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983" 1874 | }, 1875 | "dist": { 1876 | "type": "zip", 1877 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983", 1878 | "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983", 1879 | "shasum": "" 1880 | }, 1881 | "require": { 1882 | "doctrine/instantiator": "^1.0.2", 1883 | "php": ">=5.3.3", 1884 | "phpunit/php-text-template": "~1.2", 1885 | "sebastian/exporter": "~1.2" 1886 | }, 1887 | "require-dev": { 1888 | "phpunit/phpunit": "~4.4" 1889 | }, 1890 | "suggest": { 1891 | "ext-soap": "*" 1892 | }, 1893 | "type": "library", 1894 | "extra": { 1895 | "branch-alias": { 1896 | "dev-master": "2.3.x-dev" 1897 | } 1898 | }, 1899 | "autoload": { 1900 | "classmap": [ 1901 | "src/" 1902 | ] 1903 | }, 1904 | "notification-url": "https://packagist.org/downloads/", 1905 | "license": [ 1906 | "BSD-3-Clause" 1907 | ], 1908 | "authors": [ 1909 | { 1910 | "name": "Sebastian Bergmann", 1911 | "email": "sb@sebastian-bergmann.de", 1912 | "role": "lead" 1913 | } 1914 | ], 1915 | "description": "Mock Object library for PHPUnit", 1916 | "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", 1917 | "keywords": [ 1918 | "mock", 1919 | "xunit" 1920 | ], 1921 | "time": "2015-10-02 06:51:40" 1922 | }, 1923 | { 1924 | "name": "sebastian/comparator", 1925 | "version": "1.2.0", 1926 | "source": { 1927 | "type": "git", 1928 | "url": "https://github.com/sebastianbergmann/comparator.git", 1929 | "reference": "937efb279bd37a375bcadf584dec0726f84dbf22" 1930 | }, 1931 | "dist": { 1932 | "type": "zip", 1933 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22", 1934 | "reference": "937efb279bd37a375bcadf584dec0726f84dbf22", 1935 | "shasum": "" 1936 | }, 1937 | "require": { 1938 | "php": ">=5.3.3", 1939 | "sebastian/diff": "~1.2", 1940 | "sebastian/exporter": "~1.2" 1941 | }, 1942 | "require-dev": { 1943 | "phpunit/phpunit": "~4.4" 1944 | }, 1945 | "type": "library", 1946 | "extra": { 1947 | "branch-alias": { 1948 | "dev-master": "1.2.x-dev" 1949 | } 1950 | }, 1951 | "autoload": { 1952 | "classmap": [ 1953 | "src/" 1954 | ] 1955 | }, 1956 | "notification-url": "https://packagist.org/downloads/", 1957 | "license": [ 1958 | "BSD-3-Clause" 1959 | ], 1960 | "authors": [ 1961 | { 1962 | "name": "Jeff Welch", 1963 | "email": "whatthejeff@gmail.com" 1964 | }, 1965 | { 1966 | "name": "Volker Dusch", 1967 | "email": "github@wallbash.com" 1968 | }, 1969 | { 1970 | "name": "Bernhard Schussek", 1971 | "email": "bschussek@2bepublished.at" 1972 | }, 1973 | { 1974 | "name": "Sebastian Bergmann", 1975 | "email": "sebastian@phpunit.de" 1976 | } 1977 | ], 1978 | "description": "Provides the functionality to compare PHP values for equality", 1979 | "homepage": "http://www.github.com/sebastianbergmann/comparator", 1980 | "keywords": [ 1981 | "comparator", 1982 | "compare", 1983 | "equality" 1984 | ], 1985 | "time": "2015-07-26 15:48:44" 1986 | }, 1987 | { 1988 | "name": "sebastian/diff", 1989 | "version": "1.4.1", 1990 | "source": { 1991 | "type": "git", 1992 | "url": "https://github.com/sebastianbergmann/diff.git", 1993 | "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e" 1994 | }, 1995 | "dist": { 1996 | "type": "zip", 1997 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e", 1998 | "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e", 1999 | "shasum": "" 2000 | }, 2001 | "require": { 2002 | "php": ">=5.3.3" 2003 | }, 2004 | "require-dev": { 2005 | "phpunit/phpunit": "~4.8" 2006 | }, 2007 | "type": "library", 2008 | "extra": { 2009 | "branch-alias": { 2010 | "dev-master": "1.4-dev" 2011 | } 2012 | }, 2013 | "autoload": { 2014 | "classmap": [ 2015 | "src/" 2016 | ] 2017 | }, 2018 | "notification-url": "https://packagist.org/downloads/", 2019 | "license": [ 2020 | "BSD-3-Clause" 2021 | ], 2022 | "authors": [ 2023 | { 2024 | "name": "Kore Nordmann", 2025 | "email": "mail@kore-nordmann.de" 2026 | }, 2027 | { 2028 | "name": "Sebastian Bergmann", 2029 | "email": "sebastian@phpunit.de" 2030 | } 2031 | ], 2032 | "description": "Diff implementation", 2033 | "homepage": "https://github.com/sebastianbergmann/diff", 2034 | "keywords": [ 2035 | "diff" 2036 | ], 2037 | "time": "2015-12-08 07:14:41" 2038 | }, 2039 | { 2040 | "name": "sebastian/environment", 2041 | "version": "1.3.8", 2042 | "source": { 2043 | "type": "git", 2044 | "url": "https://github.com/sebastianbergmann/environment.git", 2045 | "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea" 2046 | }, 2047 | "dist": { 2048 | "type": "zip", 2049 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea", 2050 | "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea", 2051 | "shasum": "" 2052 | }, 2053 | "require": { 2054 | "php": "^5.3.3 || ^7.0" 2055 | }, 2056 | "require-dev": { 2057 | "phpunit/phpunit": "^4.8 || ^5.0" 2058 | }, 2059 | "type": "library", 2060 | "extra": { 2061 | "branch-alias": { 2062 | "dev-master": "1.3.x-dev" 2063 | } 2064 | }, 2065 | "autoload": { 2066 | "classmap": [ 2067 | "src/" 2068 | ] 2069 | }, 2070 | "notification-url": "https://packagist.org/downloads/", 2071 | "license": [ 2072 | "BSD-3-Clause" 2073 | ], 2074 | "authors": [ 2075 | { 2076 | "name": "Sebastian Bergmann", 2077 | "email": "sebastian@phpunit.de" 2078 | } 2079 | ], 2080 | "description": "Provides functionality to handle HHVM/PHP environments", 2081 | "homepage": "http://www.github.com/sebastianbergmann/environment", 2082 | "keywords": [ 2083 | "Xdebug", 2084 | "environment", 2085 | "hhvm" 2086 | ], 2087 | "time": "2016-08-18 05:49:44" 2088 | }, 2089 | { 2090 | "name": "sebastian/exporter", 2091 | "version": "1.2.2", 2092 | "source": { 2093 | "type": "git", 2094 | "url": "https://github.com/sebastianbergmann/exporter.git", 2095 | "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4" 2096 | }, 2097 | "dist": { 2098 | "type": "zip", 2099 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4", 2100 | "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4", 2101 | "shasum": "" 2102 | }, 2103 | "require": { 2104 | "php": ">=5.3.3", 2105 | "sebastian/recursion-context": "~1.0" 2106 | }, 2107 | "require-dev": { 2108 | "ext-mbstring": "*", 2109 | "phpunit/phpunit": "~4.4" 2110 | }, 2111 | "type": "library", 2112 | "extra": { 2113 | "branch-alias": { 2114 | "dev-master": "1.3.x-dev" 2115 | } 2116 | }, 2117 | "autoload": { 2118 | "classmap": [ 2119 | "src/" 2120 | ] 2121 | }, 2122 | "notification-url": "https://packagist.org/downloads/", 2123 | "license": [ 2124 | "BSD-3-Clause" 2125 | ], 2126 | "authors": [ 2127 | { 2128 | "name": "Jeff Welch", 2129 | "email": "whatthejeff@gmail.com" 2130 | }, 2131 | { 2132 | "name": "Volker Dusch", 2133 | "email": "github@wallbash.com" 2134 | }, 2135 | { 2136 | "name": "Bernhard Schussek", 2137 | "email": "bschussek@2bepublished.at" 2138 | }, 2139 | { 2140 | "name": "Sebastian Bergmann", 2141 | "email": "sebastian@phpunit.de" 2142 | }, 2143 | { 2144 | "name": "Adam Harvey", 2145 | "email": "aharvey@php.net" 2146 | } 2147 | ], 2148 | "description": "Provides the functionality to export PHP variables for visualization", 2149 | "homepage": "http://www.github.com/sebastianbergmann/exporter", 2150 | "keywords": [ 2151 | "export", 2152 | "exporter" 2153 | ], 2154 | "time": "2016-06-17 09:04:28" 2155 | }, 2156 | { 2157 | "name": "sebastian/global-state", 2158 | "version": "1.1.1", 2159 | "source": { 2160 | "type": "git", 2161 | "url": "https://github.com/sebastianbergmann/global-state.git", 2162 | "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4" 2163 | }, 2164 | "dist": { 2165 | "type": "zip", 2166 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4", 2167 | "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4", 2168 | "shasum": "" 2169 | }, 2170 | "require": { 2171 | "php": ">=5.3.3" 2172 | }, 2173 | "require-dev": { 2174 | "phpunit/phpunit": "~4.2" 2175 | }, 2176 | "suggest": { 2177 | "ext-uopz": "*" 2178 | }, 2179 | "type": "library", 2180 | "extra": { 2181 | "branch-alias": { 2182 | "dev-master": "1.0-dev" 2183 | } 2184 | }, 2185 | "autoload": { 2186 | "classmap": [ 2187 | "src/" 2188 | ] 2189 | }, 2190 | "notification-url": "https://packagist.org/downloads/", 2191 | "license": [ 2192 | "BSD-3-Clause" 2193 | ], 2194 | "authors": [ 2195 | { 2196 | "name": "Sebastian Bergmann", 2197 | "email": "sebastian@phpunit.de" 2198 | } 2199 | ], 2200 | "description": "Snapshotting of global state", 2201 | "homepage": "http://www.github.com/sebastianbergmann/global-state", 2202 | "keywords": [ 2203 | "global state" 2204 | ], 2205 | "time": "2015-10-12 03:26:01" 2206 | }, 2207 | { 2208 | "name": "sebastian/recursion-context", 2209 | "version": "1.0.2", 2210 | "source": { 2211 | "type": "git", 2212 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 2213 | "reference": "913401df809e99e4f47b27cdd781f4a258d58791" 2214 | }, 2215 | "dist": { 2216 | "type": "zip", 2217 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791", 2218 | "reference": "913401df809e99e4f47b27cdd781f4a258d58791", 2219 | "shasum": "" 2220 | }, 2221 | "require": { 2222 | "php": ">=5.3.3" 2223 | }, 2224 | "require-dev": { 2225 | "phpunit/phpunit": "~4.4" 2226 | }, 2227 | "type": "library", 2228 | "extra": { 2229 | "branch-alias": { 2230 | "dev-master": "1.0.x-dev" 2231 | } 2232 | }, 2233 | "autoload": { 2234 | "classmap": [ 2235 | "src/" 2236 | ] 2237 | }, 2238 | "notification-url": "https://packagist.org/downloads/", 2239 | "license": [ 2240 | "BSD-3-Clause" 2241 | ], 2242 | "authors": [ 2243 | { 2244 | "name": "Jeff Welch", 2245 | "email": "whatthejeff@gmail.com" 2246 | }, 2247 | { 2248 | "name": "Sebastian Bergmann", 2249 | "email": "sebastian@phpunit.de" 2250 | }, 2251 | { 2252 | "name": "Adam Harvey", 2253 | "email": "aharvey@php.net" 2254 | } 2255 | ], 2256 | "description": "Provides functionality to recursively process PHP variables", 2257 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 2258 | "time": "2015-11-11 19:50:13" 2259 | }, 2260 | { 2261 | "name": "sebastian/version", 2262 | "version": "1.0.6", 2263 | "source": { 2264 | "type": "git", 2265 | "url": "https://github.com/sebastianbergmann/version.git", 2266 | "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6" 2267 | }, 2268 | "dist": { 2269 | "type": "zip", 2270 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6", 2271 | "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6", 2272 | "shasum": "" 2273 | }, 2274 | "type": "library", 2275 | "autoload": { 2276 | "classmap": [ 2277 | "src/" 2278 | ] 2279 | }, 2280 | "notification-url": "https://packagist.org/downloads/", 2281 | "license": [ 2282 | "BSD-3-Clause" 2283 | ], 2284 | "authors": [ 2285 | { 2286 | "name": "Sebastian Bergmann", 2287 | "email": "sebastian@phpunit.de", 2288 | "role": "lead" 2289 | } 2290 | ], 2291 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 2292 | "homepage": "https://github.com/sebastianbergmann/version", 2293 | "time": "2015-06-21 13:59:46" 2294 | }, 2295 | { 2296 | "name": "symfony/yaml", 2297 | "version": "v3.1.4", 2298 | "source": { 2299 | "type": "git", 2300 | "url": "https://github.com/symfony/yaml.git", 2301 | "reference": "f291ed25eb1435bddbe8a96caaef16469c2a092d" 2302 | }, 2303 | "dist": { 2304 | "type": "zip", 2305 | "url": "https://api.github.com/repos/symfony/yaml/zipball/f291ed25eb1435bddbe8a96caaef16469c2a092d", 2306 | "reference": "f291ed25eb1435bddbe8a96caaef16469c2a092d", 2307 | "shasum": "" 2308 | }, 2309 | "require": { 2310 | "php": ">=5.5.9" 2311 | }, 2312 | "type": "library", 2313 | "extra": { 2314 | "branch-alias": { 2315 | "dev-master": "3.1-dev" 2316 | } 2317 | }, 2318 | "autoload": { 2319 | "psr-4": { 2320 | "Symfony\\Component\\Yaml\\": "" 2321 | }, 2322 | "exclude-from-classmap": [ 2323 | "/Tests/" 2324 | ] 2325 | }, 2326 | "notification-url": "https://packagist.org/downloads/", 2327 | "license": [ 2328 | "MIT" 2329 | ], 2330 | "authors": [ 2331 | { 2332 | "name": "Fabien Potencier", 2333 | "email": "fabien@symfony.com" 2334 | }, 2335 | { 2336 | "name": "Symfony Community", 2337 | "homepage": "https://symfony.com/contributors" 2338 | } 2339 | ], 2340 | "description": "Symfony Yaml Component", 2341 | "homepage": "https://symfony.com", 2342 | "time": "2016-09-02 02:12:52" 2343 | }, 2344 | { 2345 | "name": "webmozart/assert", 2346 | "version": "1.1.0", 2347 | "source": { 2348 | "type": "git", 2349 | "url": "https://github.com/webmozart/assert.git", 2350 | "reference": "bb2d123231c095735130cc8f6d31385a44c7b308" 2351 | }, 2352 | "dist": { 2353 | "type": "zip", 2354 | "url": "https://api.github.com/repos/webmozart/assert/zipball/bb2d123231c095735130cc8f6d31385a44c7b308", 2355 | "reference": "bb2d123231c095735130cc8f6d31385a44c7b308", 2356 | "shasum": "" 2357 | }, 2358 | "require": { 2359 | "php": "^5.3.3|^7.0" 2360 | }, 2361 | "require-dev": { 2362 | "phpunit/phpunit": "^4.6", 2363 | "sebastian/version": "^1.0.1" 2364 | }, 2365 | "type": "library", 2366 | "extra": { 2367 | "branch-alias": { 2368 | "dev-master": "1.2-dev" 2369 | } 2370 | }, 2371 | "autoload": { 2372 | "psr-4": { 2373 | "Webmozart\\Assert\\": "src/" 2374 | } 2375 | }, 2376 | "notification-url": "https://packagist.org/downloads/", 2377 | "license": [ 2378 | "MIT" 2379 | ], 2380 | "authors": [ 2381 | { 2382 | "name": "Bernhard Schussek", 2383 | "email": "bschussek@gmail.com" 2384 | } 2385 | ], 2386 | "description": "Assertions to validate method input/output with nice error messages.", 2387 | "keywords": [ 2388 | "assert", 2389 | "check", 2390 | "validate" 2391 | ], 2392 | "time": "2016-08-09 15:02:57" 2393 | } 2394 | ], 2395 | "aliases": [], 2396 | "minimum-stability": "stable", 2397 | "stability-flags": [], 2398 | "prefer-stable": false, 2399 | "prefer-lowest": false, 2400 | "platform": [], 2401 | "platform-dev": [] 2402 | } 2403 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | ./tests 14 | ./tests/MailHelperTest.php 15 | ./tests/TestBase.php 16 | 17 | 18 | 19 | ./tests/MailHelperTest.php 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /resources/img/alert-vulnerability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padosoft/laravel-composer-security/2e5ea5555650124acf67f46e07681e1b75cfbfef/resources/img/alert-vulnerability.png -------------------------------------------------------------------------------- /resources/img/console-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padosoft/laravel-composer-security/2e5ea5555650124acf67f46e07681e1b75cfbfef/resources/img/console-output.png -------------------------------------------------------------------------------- /resources/img/warning-vulerability-witelisted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padosoft/laravel-composer-security/2e5ea5555650124acf67f46e07681e1b75cfbfef/resources/img/warning-vulerability-witelisted.png -------------------------------------------------------------------------------- /sami_config.php: -------------------------------------------------------------------------------- 1 | files() 12 | ->exclude('Vendor') 13 | ->exclude('tests') 14 | ->in($dir = __DIR__.'/src') 15 | ; 16 | 17 | $versions = GitVersionCollection::create($dir) 18 | ->addFromTags('*') 19 | ->add('master','master') 20 | ; 21 | 22 | $sami= new Sami($iterator,array( 23 | 'theme' => 'default', 24 | 'title' => 'Laravel Composer Security API', 25 | 'versions' => $versions, 26 | 'build_dir' => 'Y:/Public/laravel-packages/www/doc/padosoft/laravel-composer-security/build/%version%', 27 | 'cache_dir' => 'Y:/Public/laravel-packages/www/doc/padosoft/laravel-composer-security/cache/%version%', 28 | 'default_opened_level' => 1, 29 | )); 30 | 31 | /** 32 | * Include this section if you want sami to document 33 | * private and protected functions/properties 34 | */ 35 | $sami['filter'] = function () { 36 | return new TrueFilter(); 37 | }; 38 | 39 | return $sami; 40 | -------------------------------------------------------------------------------- /src/ComposerSecurityCheck.php: -------------------------------------------------------------------------------- 1 | composer-security:check command looks for every composer.lock file in the given path 30 | and foreach composer.lock check for security issues in the project dependencies: 31 | php composer-security:check 32 | If you omit path argument, command look into current folder. 33 | You can also pass the path as an argument: 34 | php composer-security:check /path/to/my/repos 35 | You can use * in path argument as jolly character i.e. /var/www/*/*/ 36 | By default, the command displays the result in console, but you can also 37 | send an html email by using the --mail option: 38 | php composer-security:check /path/to/my/repos --mail=mymail@mydomain.me 39 | EOF; 40 | 41 | 42 | /** 43 | * @var Client an istance of GuzzleHttp\Client 44 | */ 45 | protected $guzzle; 46 | 47 | /** 48 | * @var array 49 | */ 50 | protected $headersTableConsole = ['name', 'version', 'title', 'whitelist']; 51 | 52 | /** 53 | * @var array 54 | */ 55 | protected $tableVulnerabilities = []; 56 | 57 | /** 58 | * Create a new command instance. 59 | * 60 | * @param Client $objguzzle 61 | */ 62 | public function __construct(Client $objguzzle) 63 | { 64 | $this->guzzle = $objguzzle; 65 | parent::__construct(); 66 | } 67 | 68 | /** 69 | * Execute the console command. 70 | * 71 | * @return mixed 72 | */ 73 | public function handle() 74 | { 75 | $this->hardWork($this->argument(), $this->option()); 76 | } 77 | 78 | /** 79 | * @param $argument 80 | * @param $option 81 | */ 82 | private function hardWork($argument, $option) 83 | { 84 | $path = $argument['path']; 85 | $this->line('path: ' . $path . '.\nCheck composer.lock files...'); 86 | $lockFiles = $this->findFilesComposerLock($path); 87 | $this->line('Find ' . count($lockFiles) . ' composer.lock files.'); 88 | 89 | $this->tableVulnerabilities = []; 90 | $tuttoOk = true; 91 | $numLock = 0; 92 | 93 | $whitelist = FileHelper::adjustPath($option['whitelist']); 94 | 95 | foreach ($lockFiles as $fileLock) { 96 | 97 | $this->line("Analizing " . ($numLock + 1) . " di " . count($lockFiles) . ""); 98 | 99 | $tuttoOk = $this->checkFile($fileLock, $whitelist); 100 | 101 | $numLock++; 102 | } 103 | 104 | $this->notifyResult($option['mail'], $option['nomailok'], $tuttoOk); 105 | 106 | } 107 | 108 | /** 109 | * @param $mail 110 | * @param $tuttoOk 111 | */ 112 | private function notifyResult($mail, $nomailok, $tuttoOk) 113 | { 114 | //print to console 115 | $this->table($this->headersTableConsole, $this->tableVulnerabilities); 116 | 117 | //send email 118 | if (!$tuttoOk || $nomailok == '' || strtolower($nomailok) != 'true') { 119 | $this->sendEmail($mail, $tuttoOk); 120 | } 121 | 122 | $this->notify($tuttoOk); 123 | } 124 | 125 | 126 | private function notify($result) 127 | { 128 | if ($result) { 129 | return $this->notifyOK(); 130 | } 131 | 132 | $this->notifyKO(); 133 | } 134 | 135 | private function notifyOK() 136 | { 137 | $esito = Config::get('composer-security-check.mailSubjectSuccess'); 138 | $this->line($esito); 139 | } 140 | 141 | private function notifyKO() 142 | { 143 | $esito = Config::get('composer-security-check.mailSubjetcAlarm'); 144 | $this->error($esito); 145 | } 146 | 147 | /** 148 | * @param $mail 149 | * @param $tuttoOk 150 | */ 151 | private function sendEmail($mail, $tuttoOk) 152 | { 153 | if ($mail != '') { 154 | $email = new MailHelper($this); 155 | $email->sendEmail($tuttoOk, $mail, $this->tableVulnerabilities); 156 | } 157 | } 158 | 159 | /** 160 | * 161 | * @param $path 162 | * @return array of composer.lock file 163 | */ 164 | private function findFilesComposerLock($path) 165 | { 166 | $file = new FileHelper(); 167 | $lockFiles = array(); 168 | foreach ($file->adjustPath($path) as $item) { 169 | $lockFiles = array_merge($lockFiles, $file->findFiles($item, 'composer.lock')); 170 | } 171 | 172 | 173 | if (!is_array($lockFiles)) { 174 | $lockFiles = array(); 175 | } 176 | 177 | return $lockFiles; 178 | } 179 | 180 | /** 181 | * @param $fileLock 182 | * @param $whitelist 183 | * @return bool 184 | */ 185 | private function checkFile($fileLock, $whitelist) 186 | { 187 | $this->line("Analizing: $fileLock ..."); 188 | 189 | $this->tableVulnerabilities[] = [ 190 | 'name' => $fileLock, 191 | 'version' => '', 192 | 'advisories' => '', 193 | 'isOk' => '' 194 | ]; 195 | 196 | $sensiolab = new SensiolabHelper($this->guzzle, $this); 197 | $response = $sensiolab->getSensiolabVulnerabilties($fileLock); 198 | 199 | if (($response === null) | !is_array($response)) { 200 | $this->error("Errore Response not vaild or null."); 201 | return true; 202 | } 203 | if (count($response) == 0) { 204 | return true; 205 | } 206 | $this->error("Trovate " . count($response) . " vulnerabilita' in $fileLock"); 207 | 208 | $tuttoOk = in_array(rtrim(str_replace('\\', '/', $fileLock), 'composer.lock'), $whitelist); 209 | 210 | foreach ($response as $key => $vulnerability) { 211 | 212 | $this->tableVulnerabilities = array_merge($this->tableVulnerabilities, 213 | $sensiolab->checkResponse($key, $vulnerability, $tuttoOk)); 214 | } 215 | 216 | return $tuttoOk; 217 | } 218 | 219 | } 220 | 221 | -------------------------------------------------------------------------------- /src/ComposerSecurityCheckServiceProvider.php: -------------------------------------------------------------------------------- 1 | publishes([ 24 | __DIR__ . '/config/composer-security-check.php' => config_path('composer-security-check.php'), 25 | ], 'config'); 26 | 27 | $this->loadViewsFrom(__DIR__ . '/views', 'composer-security-check'); 28 | 29 | $this->publishes([ 30 | __DIR__ . '/views' => base_path('resources/views/vendor/composer-security-check'), 31 | ]); 32 | } 33 | 34 | /** 35 | * Register the service provider. 36 | * 37 | * @return void 38 | */ 39 | public function register() 40 | { 41 | $this->app['command.composer-security:check'] = $this->app->share( 42 | function ($app) { 43 | return new ComposerSecurityCheck(new client); 44 | } 45 | ); 46 | $this->commands('command.composer-security:check'); 47 | 48 | } 49 | 50 | /** 51 | * Get the services provided by the provider. 52 | * 53 | * @return string[] 54 | */ 55 | public function provides() 56 | { 57 | return ['command.composer-security:check']; 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /src/FileHelper.php: -------------------------------------------------------------------------------- 1 | command = $objcommand; 36 | } 37 | 38 | /** 39 | * @param $tuttoOk 40 | * @param $mail 41 | * @param $vul 42 | */ 43 | public function sendEmail($tuttoOk, $mail, $vul) 44 | { 45 | $soggetto=Config::get('composer-security-check.mailSubjectSuccess'); 46 | 47 | if (!$tuttoOk) { 48 | $soggetto=Config::get('composer-security-check.mailSubjetcAlarm'); 49 | } 50 | 51 | $validator = Validator::make(['email' => $mail], [ 52 | 'email' => 'required|email', 53 | ]); 54 | if ($validator->fails()) { 55 | $this->command->error('No valid email passed: '.$mail.'. Mail will not be sent.'); 56 | return; 57 | } 58 | $this->command->line('Send email to '.$mail.''); 59 | 60 | Mail::send( 61 | Config::get('composer-security-check.mailViewName'), 62 | ['vul' => $vul], 63 | function ($message) use ($mail, $soggetto) { 64 | $message->from( 65 | Config::get('composer-security-check.mailFrom'), 66 | Config::get('composer-security-check.mailFromName') 67 | ); 68 | $message->to($mail, $mail); 69 | $message->subject($soggetto); 70 | } 71 | ); 72 | 73 | 74 | $this->command->line('email sent.'); 75 | 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /src/SensiolabHelper.php: -------------------------------------------------------------------------------- 1 | guzzle = $objguzzle; 31 | $this->command = $objcommand; 32 | } 33 | 34 | /** 35 | * 36 | * Send Request to sensiolab and return array of sensiolab vulnerabilities. 37 | * Empty array if here is no vulnerabilities. 38 | * 39 | * @param $fileLock path to composer.lock file. 40 | * 41 | * @return array 42 | */ 43 | public function getSensiolabVulnerabilties($fileLock) 44 | { 45 | $this->addVerboseLog('Send request to sensiolab: ' . $fileLock . ''); 46 | 47 | $debug = false;//set to true to log into console output 48 | $headers = [ 49 | //OPTIONS 50 | 'allow_redirects' => [ 51 | 'max' => 3, // allow at most 10 redirects. 52 | 'strict' => true, // use "strict" RFC compliant redirects. 53 | 'referer' => true, // add a Referer header 54 | 'protocols' => ['http', 'https'], // only allow http and https URLs 55 | 'track_redirects' => false 56 | ], 57 | 'connect_timeout' => 20,//Use 0 to wait connection indefinitely 58 | 'timeout' => 30, //Use 0 to wait response indefinitely 59 | 'debug' => $debug, 60 | //HEADERS 61 | 'headers' => [ 62 | 'Accept' => 'application/json' 63 | ], 64 | //UPLOAD FORM FILE 65 | 'multipart' => [ 66 | [ 67 | 'name' => 'lock', 68 | 'contents' => fopen($fileLock, 'r') 69 | ] 70 | ] 71 | ]; 72 | $response = null; 73 | 74 | try { 75 | $iResponse = $this->guzzle->request('POST', 'https://security.sensiolabs.org/check_lock', $headers); 76 | $responseBody = $iResponse->getBody()->getContents(); 77 | $response = json_decode($responseBody, true); 78 | } catch (\GuzzleHttp\Exception\ClientException $e) { 79 | $this->command->error("ClientException!\nMessage: " . $e->getMessage()); 80 | $colorTag = $this->getColorTagForStatusCode($e->getResponse()->getStatusCode()); 81 | $this->command->line("HTTP StatusCode: <{$colorTag}>" . $e->getResponse()->getStatusCode() . "<{$colorTag}>"); 82 | $resp = $e->getResponse(); 83 | if ($resp !== null) { 84 | $this->printMessage($resp); 85 | } 86 | $this->printMessage($e->getRequest()); 87 | } catch (\GuzzleHttp\Exception\RequestException $e) { 88 | $this->command->error("RequestException!\nMessage: " . $e->getMessage()); 89 | $this->printMessage($e->getRequest()); 90 | if ($e->hasResponse()) { 91 | $colorTag = $this->getColorTagForStatusCode($e->getResponse()->getStatusCode()); 92 | $this->command->line("HTTP StatusCode: <{$colorTag}>" . $e->getResponse()->getStatusCode() . "<{$colorTag}>"); 93 | $resp = $e->getResponse(); 94 | if ($resp !== null) { 95 | $this->printMessage($resp); 96 | } 97 | } 98 | } 99 | return $response; 100 | } 101 | 102 | /** 103 | * @param $name 104 | * @param $vulnerability 105 | * @return array 106 | */ 107 | public function parseVulnerability($name, $vulnerability) 108 | { 109 | $data = [ 110 | 'name' => $name, 111 | 'version' => $vulnerability['version'], 112 | 'advisories' => array_values($vulnerability['advisories']) 113 | ]; 114 | unset($this->tableVulnerabilities); 115 | foreach ($data['advisories'] as $key2 => $advisory) { 116 | $data2 = [ 117 | 'title' => $advisory['title'], 118 | 'link' => $advisory['link'], 119 | 'cve' => $advisory['cve'] 120 | ]; 121 | 122 | $dataTable = [ 123 | 'name' => $data['name'], 124 | 'version' => $data['version'], 125 | 'advisories' => $data2["title"] 126 | ]; 127 | 128 | $this->addVerboseLog($data['name'] . " " . $data['version'] . " " . $data2["title"], true); 129 | $this->tableVulnerabilities[] = $dataTable; 130 | } 131 | 132 | return $this->tableVulnerabilities; 133 | } 134 | 135 | /** 136 | * @param $key 137 | * @param $vulnerability 138 | * @param bool $tuttoOk 139 | * @return array 140 | */ 141 | public function checkResponse($key, $vulnerability, $tuttoOk) 142 | { 143 | $tableVulnerabilities = array(); 144 | 145 | foreach ($this->parseVulnerability($key, $vulnerability) as $vul) { 146 | $tableVulnerabilities[] = array_merge($vul, array('isOk' => $tuttoOk)); 147 | } 148 | 149 | return $tableVulnerabilities; 150 | } 151 | 152 | /** 153 | * @param string $msg 154 | * @param bool|false $error 155 | */ 156 | private function addVerboseLog($msg, $error = false) 157 | { 158 | $verbose = $this->command->option('verbose'); 159 | if ($verbose) { 160 | if ($error) { 161 | $this->command->error($msg); 162 | } else { 163 | $this->command->line($msg); 164 | } 165 | } 166 | } 167 | 168 | /** 169 | * @param \Psr\Http\Message\MessageInterface $message 170 | * 171 | * @throws \RuntimeException 172 | */ 173 | private function printMessage(\Psr\Http\Message\MessageInterface $message) 174 | { 175 | $type = ''; 176 | $body = ''; 177 | if (is_a($message, '\Psr\Http\Message\RequestInterface')) { 178 | $type = 'REQUEST'; 179 | $body = $message->getBody(); 180 | } elseif (is_a($message, '\Psr\Http\Message\ResponseInterface')) { 181 | $type = 'RESPONSE'; 182 | $body = $message->getBody()->getContents(); 183 | } 184 | $this->command->info("$type:"); 185 | $headers = ''; 186 | foreach ($message->getHeaders() as $name => $values) { 187 | $headers .= $name . ': ' . implode(', ', $values) . "\r\n"; 188 | } 189 | $this->command->comment($headers); 190 | if ($type == 'REQUEST') { 191 | $this->command->comment($body); 192 | } elseif ($type == 'RESPONSE') { 193 | $this->command->comment($body); 194 | } 195 | } 196 | 197 | 198 | /** 199 | * Get the color tag for the given status code. 200 | * 201 | * @param string $code 202 | * 203 | * @return string 204 | * 205 | * @see https://github.com/spatie/http-status-check/blob/master/src/CrawlLogger.php#L96 206 | */ 207 | protected function getColorTagForStatusCode($code) 208 | { 209 | if (starts_with($code, '2')) { 210 | return 'info'; 211 | } 212 | if (starts_with($code, '3')) { 213 | return 'comment'; 214 | } 215 | return 'error'; 216 | } 217 | } 218 | -------------------------------------------------------------------------------- /src/config/.env.example: -------------------------------------------------------------------------------- 1 | SECURITY_CHECK_SUBJECT_SUCCESS='[composer-security-check]: Ok - no vulnerabilities detected.' 2 | SECURITY_CHECK_SUBJECT_ALARM='[composer-security-check]: Alarm - vulnerabilities detected.' 3 | SECURITY_CHECK_MESSAGE_FROM='info@example.com' 4 | SECURITY_CHECK_MESSAGE_FROM_NAME='Info Example' 5 | SECURITY_CHECK_MAIL_VIEW_NAME='composer-security-check::mail' 6 | SECURITY_CHECK_LOG_FILE_PATH='pathtolog/composersecurityCheck.log' -------------------------------------------------------------------------------- /src/config/composer-security-check.php: -------------------------------------------------------------------------------- 1 | env( 4 | 'SECURITY_CHECK_SUBJECT_SUCCESS', 5 | '[composer-security-check]: Ok - no vulnerabilities detected.' 6 | ), 7 | 'mailSubjetcAlarm' => env( 8 | 'SECURITY_CHECK_SUBJECT_ALARM', 9 | '[composer-security-check]: Alarm - vulnerabilities detected.' 10 | ), 11 | 'mailFrom' => env('SECURITY_CHECK_MESSAGE_FROM', 'info@example.com'), 12 | 'mailFromName' => env('SECURITY_CHECK_MESSAGE_FROM_NAME', 'Info Example'), 13 | 'mailViewName' => env('SECURITY_CHECK_MAIL_VIEW_NAME', 'composer-security-check::mail'), 14 | 'logFilePath' => env('SECURITY_CHECK_LOG_FILE_PATH', storage_path() . '/logs/composersecurityCheck.log') 15 | ); 16 | -------------------------------------------------------------------------------- /src/config/laravel-env-validator.example.php: -------------------------------------------------------------------------------- 1 | 4 | * Date: 07/02/2016 5 | * Time: 18:34. 6 | */ 7 | 8 | return [ 9 | 'SECURITY_CHECK_SUBJECT_SUCCESS' => 'required', 10 | 'SECURITY_CHECK_SUBJECT_ALARM' => 'required', 11 | 'SECURITY_CHECK_MESSAGE_FROM' => 'required|email', 12 | 'SECURITY_CHECK_MESSAGE_FROM_NAME' => 'required', 13 | 'SECURITY_CHECK_MAIL_VIEW_NAME' => 'required', 14 | 'SECURITY_CHECK_LOG_FILE_PATH' => 'required', 15 | ]; 16 | -------------------------------------------------------------------------------- /src/views/mail.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Laravel 5 | 6 | 7 | 8 | 44 | 45 | 46 |
47 |
48 | 49 | 50 | 51 | 52 | 53 | @foreach ($vul as $d) 54 | 61 | 62 | 63 | 64 | 65 | @endforeach 66 | 67 |
NameVersionAdvisor
{{ $d['name'] }}{{ $d['version'] }}{{ $d['advisories'] }}
68 |
69 |
70 | 71 | 72 | --------------------------------------------------------------------------------