├── .editorconfig ├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Events.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── appveyor.yml ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Friendable.php ├── Friendship.php ├── FriendshipsServiceProvider.php ├── config │ └── friendships.php └── migrations │ └── 2017_01_30_200303_create_friendships_table.php └── tests ├── FriendshipsEventsTest.php ├── FriendshipsTest.php ├── TestCase.php ├── database └── factories │ └── ModelFactory.php └── models └── User.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 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | /.idea 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- 1 | filter: 2 | excluded_paths: [tests/*] 3 | 4 | checks: 5 | php: 6 | code_rating: true 7 | remove_extra_empty_lines: true 8 | remove_php_closing_tag: true 9 | remove_trailing_whitespace: true 10 | fix_use_statements: 11 | remove_unused: true 12 | preserve_multiple: false 13 | preserve_blanklines: true 14 | order_alphabetically: true 15 | fix_php_opening_tag: true 16 | fix_linefeed: true 17 | fix_line_ending: true 18 | fix_identation_4spaces: true 19 | fix_doc_comments: true 20 | 21 | tools: 22 | external_code_coverage: 23 | timeout: 600 24 | runs: 2 25 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | dist: trusty 2 | language: php 3 | 4 | php: 5 | - 7.1 6 | - 7.2 7 | 8 | sudo: false 9 | 10 | cache: 11 | directories: 12 | - $HOME/.composer/cache 13 | 14 | install: 15 | - composer install --prefer-dist --no-interaction 16 | 17 | script: 18 | - vendor/bin/phpcs --standard=psr2 src/ --ignore=migrations/ 19 | - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover 20 | 21 | after_script: 22 | - wget https://scrutinizer-ci.com/ocular.phar 23 | - php ocular.phar code-coverage:upload --format=php-clover coverage.clover 24 | 25 | notifications: 26 | email: false 27 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at merodiro@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Contributions are **welcome** and will be fully **credited**. 4 | 5 | We accept contributions via Pull Requests on [Github](https://github.com/merodiro/Friendships). 6 | 7 | 8 | ## Pull Requests 9 | 10 | - **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - Check the code style with ``$ composer check-style`` and fix it with ``$ composer fix-style``. 11 | 12 | - **Add tests!** - Please add tests for your patches. 13 | 14 | - **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date. 15 | 16 | - **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option. 17 | 18 | - **Create feature branches** - Don't ask us to pull from your master branch. 19 | 20 | - **One pull request per feature** - If you want to do more than one thing, send multiple pull requests. 21 | 22 | - **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. 23 | 24 | 25 | ## Running Tests 26 | 27 | ``` bash 28 | $ composer test 29 | ``` 30 | 31 | **Happy coding**! 32 | -------------------------------------------------------------------------------- /Events.md: -------------------------------------------------------------------------------- 1 | ## How to use events 2 | 3 | for simplicity we will use events subscriber in this example 4 | 5 | add the following in `EventServiceProvider.php` 6 | 7 | ```php 8 | protected $subscribe = [ 9 | 'App\Listeners\FriendshipsSubscriber', 10 | ]; 11 | ``` 12 | 13 | then in `FriendshipsSubscriber.php` 14 | 15 | ```php 16 | class FriendshipsSubscriber implements ShouldQueue 17 | { 18 | ... 19 | public function subscribe($events) 20 | { 21 | $events->listen( 22 | 'friendrequest.sent', 23 | 'App\Listeners\FriendshipsSubscriber@onFriendRequestSent' 24 | ); 25 | 26 | $events->listen( 27 | 'friendrequest.accepted', 28 | 'App\Listeners\FriendshipsSubscriber@onFriendRequestAccepted' 29 | ); 30 | 31 | $events->listen( 32 | 'friendship.deleted', 33 | 'App\Listeners\FriendshipsSubscriber@onFriendDeleted' 34 | ); 35 | } 36 | ... 37 | } 38 | 39 | ``` 40 | 41 | then add the following methods 42 | 43 | ```php 44 | ... 45 | public function onFriendRequestSent($sender, $recipient) 46 | { 47 | ... 48 | } 49 | 50 | public function onFriendRequestAccepted($recipient, $sender) 51 | { 52 | ... 53 | } 54 | 55 | public function onFriendDeleted($deleter, $deleted) 56 | { 57 | ... 58 | } 59 | ... 60 | 61 | ``` 62 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Detailed description 4 | 5 | Provide a detailed description of the change or addition you are proposing. 6 | 7 | Make it clear if the issue is a bug, an enhancement or just a question. 8 | 9 | ## Context 10 | 11 | Why is this change important to you? How would you use it? 12 | 13 | How can it benefit other users? 14 | 15 | ## Possible implementation 16 | 17 | Not obligatory, but suggest an idea for implementing addition or change. 18 | 19 | ## Your environment 20 | 21 | Include as many relevant details about the environment you experienced the bug in and how to reproduce it. 22 | 23 | * Version used (e.g. PHP 5.6, HHVM 3, Laravel 5.5): 24 | * Operating system and version (e.g. Ubuntu 16.04, Windows 7): 25 | * Link to your project: 26 | * ... 27 | * ... 28 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Amr A.Mohammed 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Description 4 | 5 | Describe your changes in detail. 6 | 7 | ## Motivation and context 8 | 9 | Why is this change required? What problem does it solve? 10 | 11 | If it fixes an open issue, please link to the issue here (if you write `fixes #num` 12 | or `closes #num`, the issue will be automatically closed when the pull is accepted.) 13 | 14 | ## How has this been tested? 15 | 16 | Please describe in detail how you tested your changes. 17 | 18 | Include details of your testing environment, and the tests you ran to 19 | see how your change affects other areas of the code, etc. 20 | 21 | ## Types of changes 22 | 23 | What types of changes does your code introduce? Put an `x` in all the boxes that apply: 24 | - [ ] Bug fix (non-breaking change which fixes an issue) 25 | - [ ] New feature (non-breaking change which adds functionality) 26 | - [ ] Breaking change (fix or feature that would cause existing functionality to change) 27 | 28 | ## Checklist: 29 | 30 | Go over all the following points, and put an `x` in all the boxes that apply. 31 | 32 | Please, please, please, don't send your pull request until all of the boxes are ticked. Once your pull request is created, it will trigger a build on our [continuous integration](http://www.phptherightway.com/#continuous-integration) server to make sure your [tests and code style pass](https://help.github.com/articles/about-required-status-checks/). 33 | 34 | - [ ] I have read the **[CONTRIBUTING](CONTRIBUTING.md)** document. 35 | - [ ] My pull request addresses exactly one patch/feature. 36 | - [ ] I have created a branch for this patch/feature. 37 | - [ ] Each individual commit in the pull request is meaningful. 38 | - [ ] I have added tests to cover my changes. 39 | - [ ] If my change requires a change to the documentation, I have updated it accordingly. 40 | 41 | If you're unsure about any of these, don't hesitate to ask. We're here to help! 42 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Laravel 5 Friendships 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 | [![Build status][ico-appveyor]][link-appveyor] 7 | [![Coverage Status][ico-scrutinizer]][link-scrutinizer] 8 | [![Quality Score][ico-code-quality]][link-code-quality] 9 | [![Total Downloads][ico-downloads]][link-downloads] 10 | 11 | 12 | This package gives users the ability to manage their friendships. 13 | 14 | ## Models can: 15 | - Send Friend Requests 16 | - Accept Friend Requests 17 | - Deny Friend Requests 18 | - Delete Friend 19 | 20 | ## Installation 21 | 22 | First, install the package through Composer. 23 | 24 | ```php 25 | composer require merodiro/friendships 26 | ``` 27 | 28 | Then include the service provider inside `config/app.php`. 29 | 30 | ```php 31 | 'providers' => [ 32 | ... 33 | Merodiro\Friendships\FriendshipsServiceProvider::class, 34 | ... 35 | ]; 36 | ``` 37 | 38 | Finally, migrate the database 39 | ``` 40 | php artisan migrate 41 | ``` 42 | 43 | ## Setup a Model 44 | ```php 45 | use Merodiro\Friendships\Friendable; 46 | class User extends Model 47 | { 48 | use Friendable; 49 | ... 50 | } 51 | ``` 52 | 53 | ## How to use 54 | [Check the Test file to see the package in action](https://github.com/merodiro/Friendships/blob/master/tests/FriendshipsTest.php) 55 | 56 | #### Send a Friend Request 57 | ```php 58 | $user->addFriend($recipient); 59 | ``` 60 | 61 | #### Accept a Friend Request 62 | ```php 63 | $user->acceptFriend($sender); 64 | ``` 65 | 66 | #### Deny a Friend Request 67 | ```php 68 | $user->deleteFriend($sender); 69 | ``` 70 | 71 | #### Remove Friend 72 | ```php 73 | $user->deleteFriend($friend); 74 | ``` 75 | 76 | #### Mutual Friends 77 | ```php 78 | $user->mutualFriends($anotherUser); 79 | ``` 80 | 81 | #### check the current relationship between two users 82 | ```php 83 | $user->checkFriendship($anotherUser); 84 | ``` 85 | it returns 86 | 87 | * `same_user` => if the `$user` is checking his own account 88 | * `friends` => if they are friends 89 | * `waiting` => if `$user` sent a request waiting for approval from `$anotherUser` 90 | * `pending` => if `$anotherUser` user sent a request waiting for approval from `$user` 91 | * `not_friends` => if they are not friends 92 | 93 | #### Check if two users are friends 94 | ```php 95 | $user->isFriendsWith($anotherUser); 96 | ``` 97 | it returns `true` if they are friends and `false` if they aren't 98 | 99 | 100 | ## Friends 101 | To get a collection of users use the following methods: 102 | #### Get Friends 103 | ```php 104 | $user->friends(); 105 | ``` 106 | 107 | #### Get a list of users that `$user` has received friend requests from 108 | ```php 109 | $user->friendRequestsReceived(); 110 | ``` 111 | 112 | #### Get a list of users that `$user` has sent friend requests to 113 | ```php 114 | $user->friendRequestsSent(); 115 | ``` 116 | 117 | ## Events 118 | This is the list of the events fired by default for each action 119 | 120 | |Event name |Fired | 121 | |:--------------------:|:-------------------------------:| 122 | |friendrequest.sent |When a friend request is sent | 123 | |friendrequest.accepted|When a friend request is accepted| 124 | |friendship.deleted |When a friend request is denied | 125 | |friendship.deleted |When a friendship is deleted | 126 | 127 | for more about how to use the events 128 | [Check this example](/Events.md) 129 | 130 | ## Testing 131 | 132 | ``` bash 133 | $ composer test 134 | ``` 135 | 136 | ## Contributing 137 | 138 | Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md) for details. 139 | 140 | ## Security 141 | 142 | If you discover any security-related issues, please email merodiro@gmail.com instead of using the issue tracker. 143 | 144 | ## Credits 145 | 146 | - [Amr A. Mohammed][link-author] 147 | - [All Contributors][link-contributors] 148 | 149 | ## License 150 | 151 | The MIT License (MIT). Please see [License File](LICENSE.md) for more information. 152 | 153 | [ico-version]: https://img.shields.io/packagist/v/merodiro/friendships.svg?style=flat-square 154 | [ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square 155 | [ico-travis]: https://img.shields.io/travis/merodiro/Friendships/master.svg?style=flat-square 156 | [ico-appveyor]: https://ci.appveyor.com/api/projects/status/6cio9isdnhmdxl8r?svg=true 157 | [ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/merodiro/Friendships.svg?style=flat-square 158 | [ico-code-quality]: https://img.shields.io/scrutinizer/g/merodiro/Friendships.svg?style=flat-square 159 | [ico-downloads]: https://img.shields.io/packagist/dt/merodiro/friendships.svg?style=flat-square 160 | 161 | [link-packagist]: https://packagist.org/packages/merodiro/friendships 162 | [link-travis]: https://travis-ci.org/merodiro/Friendships 163 | [link-appveyor]: https://ci.appveyor.com/project/merodiro/friendships 164 | [link-scrutinizer]: https://scrutinizer-ci.com/g/merodiro/Friendships/code-structure 165 | [link-code-quality]: https://scrutinizer-ci.com/g/merodiro/Friendships 166 | [link-downloads]: https://packagist.org/packages/merodiro/friendships 167 | [link-author]: https://github.com/merodiro 168 | [link-contributors]: ../../contributors 169 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | build: false 2 | clone_depth: 5 3 | 4 | environment: 5 | PHP_CHOCO_VERSION: 7.2.0 6 | PHP_CACHE_DIR: C:\tools\php 7 | 8 | cache: 9 | - '%LOCALAPPDATA%\Composer\files' 10 | - '%PHP_CACHE_DIR% -> appveyor.yml' 11 | 12 | init: 13 | - SET PATH=%PHP_CACHE_DIR%;%PATH% 14 | - SET COMPOSER_CACHE_DIR=%PHP_CACHE_DIR% 15 | - SET COMPOSER_NO_INTERACTION=1 16 | - SET PHP=0 17 | - SET ANSICON=121x90 (121x90) 18 | 19 | install: 20 | - IF EXIST %PHP_CACHE_DIR% (SET PHP=1) 21 | - IF %PHP%==0 cinst php -y --version %PHP_CHOCO_VERSION% --params "/InstallDir:%PHP_CACHE_DIR%" 22 | - IF %PHP%==0 cinst composer -y --ia "/DEV=%PHP_CACHE_DIR%" 23 | - php -v 24 | - IF %PHP%==0 cd %PHP_CACHE_DIR% 25 | - IF %PHP%==0 echo extension=pdo_sqlite >> php.ini 26 | - IF %PHP%==0 echo extension=php_fileinfo.dll >> php.ini 27 | - IF %PHP%==0 (composer --version) ELSE (composer self-update) 28 | - cd %APPVEYOR_BUILD_FOLDER% 29 | - composer install --prefer-dist --no-interaction --no-progress 30 | 31 | test_script: 32 | - cd %APPVEYOR_BUILD_FOLDER% 33 | - composer run test 34 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "merodiro/friendships", 3 | "description": "This package gives users the ability to manage their friendships.", 4 | "license": "MIT", 5 | "keywords": [ 6 | "laravel", 7 | "friendships", 8 | "friend-system", 9 | "friends", 10 | "eloquent" 11 | ], 12 | "authors": [ 13 | { 14 | "name": "Amr", 15 | "email": "merodiro@gmail.com" 16 | } 17 | ], 18 | "require": { 19 | "php": ">=7.0.0", 20 | "illuminate/support": "~5.5" 21 | }, 22 | "autoload": { 23 | "psr-4": { 24 | "Merodiro\\Friendships\\": "src/" 25 | } 26 | }, 27 | "require-dev": { 28 | "graham-campbell/testbench": "^5.0", 29 | "squizlabs/php_codesniffer": "^3.2", 30 | "mockery/mockery": "^1.0", 31 | "codedungeon/phpunit-result-printer": "^0.23" 32 | }, 33 | "autoload-dev": { 34 | "classmap": [ 35 | "tests/models/User.php", 36 | "tests/TestCase.php" 37 | ] 38 | }, 39 | "scripts": { 40 | "test": "phpunit", 41 | "check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src --ignore=migrations/", 42 | "fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests --ignore=migrations/" 43 | }, 44 | "extra": { 45 | "laravel": { 46 | "providers": [ 47 | "Merodiro\\Friendships\\FriendshipsServiceProvider" 48 | ] 49 | } 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "de036a0903e17affc495f0253f3db25a", 8 | "packages": [ 9 | { 10 | "name": "doctrine/inflector", 11 | "version": "v1.3.0", 12 | "source": { 13 | "type": "git", 14 | "url": "https://github.com/doctrine/inflector.git", 15 | "reference": "5527a48b7313d15261292c149e55e26eae771b0a" 16 | }, 17 | "dist": { 18 | "type": "zip", 19 | "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a", 20 | "reference": "5527a48b7313d15261292c149e55e26eae771b0a", 21 | "shasum": "" 22 | }, 23 | "require": { 24 | "php": "^7.1" 25 | }, 26 | "require-dev": { 27 | "phpunit/phpunit": "^6.2" 28 | }, 29 | "type": "library", 30 | "extra": { 31 | "branch-alias": { 32 | "dev-master": "1.3.x-dev" 33 | } 34 | }, 35 | "autoload": { 36 | "psr-4": { 37 | "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" 38 | } 39 | }, 40 | "notification-url": "https://packagist.org/downloads/", 41 | "license": [ 42 | "MIT" 43 | ], 44 | "authors": [ 45 | { 46 | "name": "Roman Borschel", 47 | "email": "roman@code-factory.org" 48 | }, 49 | { 50 | "name": "Benjamin Eberlei", 51 | "email": "kontakt@beberlei.de" 52 | }, 53 | { 54 | "name": "Guilherme Blanco", 55 | "email": "guilhermeblanco@gmail.com" 56 | }, 57 | { 58 | "name": "Jonathan Wage", 59 | "email": "jonwage@gmail.com" 60 | }, 61 | { 62 | "name": "Johannes Schmitt", 63 | "email": "schmittjoh@gmail.com" 64 | } 65 | ], 66 | "description": "Common String Manipulations with regard to casing and singular/plural rules.", 67 | "homepage": "http://www.doctrine-project.org", 68 | "keywords": [ 69 | "inflection", 70 | "pluralize", 71 | "singularize", 72 | "string" 73 | ], 74 | "time": "2018-01-09T20:05:19+00:00" 75 | }, 76 | { 77 | "name": "doctrine/lexer", 78 | "version": "v1.0.1", 79 | "source": { 80 | "type": "git", 81 | "url": "https://github.com/doctrine/lexer.git", 82 | "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" 83 | }, 84 | "dist": { 85 | "type": "zip", 86 | "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", 87 | "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", 88 | "shasum": "" 89 | }, 90 | "require": { 91 | "php": ">=5.3.2" 92 | }, 93 | "type": "library", 94 | "extra": { 95 | "branch-alias": { 96 | "dev-master": "1.0.x-dev" 97 | } 98 | }, 99 | "autoload": { 100 | "psr-0": { 101 | "Doctrine\\Common\\Lexer\\": "lib/" 102 | } 103 | }, 104 | "notification-url": "https://packagist.org/downloads/", 105 | "license": [ 106 | "MIT" 107 | ], 108 | "authors": [ 109 | { 110 | "name": "Roman Borschel", 111 | "email": "roman@code-factory.org" 112 | }, 113 | { 114 | "name": "Guilherme Blanco", 115 | "email": "guilhermeblanco@gmail.com" 116 | }, 117 | { 118 | "name": "Johannes Schmitt", 119 | "email": "schmittjoh@gmail.com" 120 | } 121 | ], 122 | "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", 123 | "homepage": "http://www.doctrine-project.org", 124 | "keywords": [ 125 | "lexer", 126 | "parser" 127 | ], 128 | "time": "2014-09-09T13:34:57+00:00" 129 | }, 130 | { 131 | "name": "dragonmantank/cron-expression", 132 | "version": "v2.2.0", 133 | "source": { 134 | "type": "git", 135 | "url": "https://github.com/dragonmantank/cron-expression.git", 136 | "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5" 137 | }, 138 | "dist": { 139 | "type": "zip", 140 | "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/92a2c3768d50e21a1f26a53cb795ce72806266c5", 141 | "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5", 142 | "shasum": "" 143 | }, 144 | "require": { 145 | "php": ">=7.0.0" 146 | }, 147 | "require-dev": { 148 | "phpunit/phpunit": "~6.4" 149 | }, 150 | "type": "library", 151 | "autoload": { 152 | "psr-4": { 153 | "Cron\\": "src/Cron/" 154 | } 155 | }, 156 | "notification-url": "https://packagist.org/downloads/", 157 | "license": [ 158 | "MIT" 159 | ], 160 | "authors": [ 161 | { 162 | "name": "Michael Dowling", 163 | "email": "mtdowling@gmail.com", 164 | "homepage": "https://github.com/mtdowling" 165 | }, 166 | { 167 | "name": "Chris Tankersley", 168 | "email": "chris@ctankersley.com", 169 | "homepage": "https://github.com/dragonmantank" 170 | } 171 | ], 172 | "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", 173 | "keywords": [ 174 | "cron", 175 | "schedule" 176 | ], 177 | "time": "2018-06-06T03:12:17+00:00" 178 | }, 179 | { 180 | "name": "egulias/email-validator", 181 | "version": "2.1.6", 182 | "source": { 183 | "type": "git", 184 | "url": "https://github.com/egulias/EmailValidator.git", 185 | "reference": "0578b32b30b22de3e8664f797cf846fc9246f786" 186 | }, 187 | "dist": { 188 | "type": "zip", 189 | "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0578b32b30b22de3e8664f797cf846fc9246f786", 190 | "reference": "0578b32b30b22de3e8664f797cf846fc9246f786", 191 | "shasum": "" 192 | }, 193 | "require": { 194 | "doctrine/lexer": "^1.0.1", 195 | "php": ">= 5.5" 196 | }, 197 | "require-dev": { 198 | "dominicsayers/isemail": "dev-master", 199 | "phpunit/phpunit": "^4.8.35||^5.7||^6.0", 200 | "satooshi/php-coveralls": "^1.0.1" 201 | }, 202 | "suggest": { 203 | "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" 204 | }, 205 | "type": "library", 206 | "extra": { 207 | "branch-alias": { 208 | "dev-master": "2.0.x-dev" 209 | } 210 | }, 211 | "autoload": { 212 | "psr-4": { 213 | "Egulias\\EmailValidator\\": "EmailValidator" 214 | } 215 | }, 216 | "notification-url": "https://packagist.org/downloads/", 217 | "license": [ 218 | "MIT" 219 | ], 220 | "authors": [ 221 | { 222 | "name": "Eduardo Gulias Davis" 223 | } 224 | ], 225 | "description": "A library for validating emails against several RFCs", 226 | "homepage": "https://github.com/egulias/EmailValidator", 227 | "keywords": [ 228 | "email", 229 | "emailvalidation", 230 | "emailvalidator", 231 | "validation", 232 | "validator" 233 | ], 234 | "time": "2018-09-25T20:47:26+00:00" 235 | }, 236 | { 237 | "name": "erusev/parsedown", 238 | "version": "1.7.1", 239 | "source": { 240 | "type": "git", 241 | "url": "https://github.com/erusev/parsedown.git", 242 | "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1" 243 | }, 244 | "dist": { 245 | "type": "zip", 246 | "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1", 247 | "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1", 248 | "shasum": "" 249 | }, 250 | "require": { 251 | "ext-mbstring": "*", 252 | "php": ">=5.3.0" 253 | }, 254 | "require-dev": { 255 | "phpunit/phpunit": "^4.8.35" 256 | }, 257 | "type": "library", 258 | "autoload": { 259 | "psr-0": { 260 | "Parsedown": "" 261 | } 262 | }, 263 | "notification-url": "https://packagist.org/downloads/", 264 | "license": [ 265 | "MIT" 266 | ], 267 | "authors": [ 268 | { 269 | "name": "Emanuil Rusev", 270 | "email": "hello@erusev.com", 271 | "homepage": "http://erusev.com" 272 | } 273 | ], 274 | "description": "Parser for Markdown.", 275 | "homepage": "http://parsedown.org", 276 | "keywords": [ 277 | "markdown", 278 | "parser" 279 | ], 280 | "time": "2018-03-08T01:11:30+00:00" 281 | }, 282 | { 283 | "name": "laravel/framework", 284 | "version": "v5.7.12", 285 | "source": { 286 | "type": "git", 287 | "url": "https://github.com/laravel/framework.git", 288 | "reference": "4cb5bf13e0cd50015f8e6a420a52fa8b90758eb1" 289 | }, 290 | "dist": { 291 | "type": "zip", 292 | "url": "https://api.github.com/repos/laravel/framework/zipball/4cb5bf13e0cd50015f8e6a420a52fa8b90758eb1", 293 | "reference": "4cb5bf13e0cd50015f8e6a420a52fa8b90758eb1", 294 | "shasum": "" 295 | }, 296 | "require": { 297 | "doctrine/inflector": "^1.1", 298 | "dragonmantank/cron-expression": "^2.0", 299 | "erusev/parsedown": "^1.7", 300 | "ext-mbstring": "*", 301 | "ext-openssl": "*", 302 | "league/flysystem": "^1.0.8", 303 | "monolog/monolog": "^1.12", 304 | "nesbot/carbon": "^1.26.3", 305 | "opis/closure": "^3.1", 306 | "php": "^7.1.3", 307 | "psr/container": "^1.0", 308 | "psr/simple-cache": "^1.0", 309 | "ramsey/uuid": "^3.7", 310 | "swiftmailer/swiftmailer": "^6.0", 311 | "symfony/console": "^4.1", 312 | "symfony/debug": "^4.1", 313 | "symfony/finder": "^4.1", 314 | "symfony/http-foundation": "^4.1", 315 | "symfony/http-kernel": "^4.1", 316 | "symfony/process": "^4.1", 317 | "symfony/routing": "^4.1", 318 | "symfony/var-dumper": "^4.1", 319 | "tijsverkoyen/css-to-inline-styles": "^2.2.1", 320 | "vlucas/phpdotenv": "^2.2" 321 | }, 322 | "conflict": { 323 | "tightenco/collect": "<5.5.33" 324 | }, 325 | "replace": { 326 | "illuminate/auth": "self.version", 327 | "illuminate/broadcasting": "self.version", 328 | "illuminate/bus": "self.version", 329 | "illuminate/cache": "self.version", 330 | "illuminate/config": "self.version", 331 | "illuminate/console": "self.version", 332 | "illuminate/container": "self.version", 333 | "illuminate/contracts": "self.version", 334 | "illuminate/cookie": "self.version", 335 | "illuminate/database": "self.version", 336 | "illuminate/encryption": "self.version", 337 | "illuminate/events": "self.version", 338 | "illuminate/filesystem": "self.version", 339 | "illuminate/hashing": "self.version", 340 | "illuminate/http": "self.version", 341 | "illuminate/log": "self.version", 342 | "illuminate/mail": "self.version", 343 | "illuminate/notifications": "self.version", 344 | "illuminate/pagination": "self.version", 345 | "illuminate/pipeline": "self.version", 346 | "illuminate/queue": "self.version", 347 | "illuminate/redis": "self.version", 348 | "illuminate/routing": "self.version", 349 | "illuminate/session": "self.version", 350 | "illuminate/support": "self.version", 351 | "illuminate/translation": "self.version", 352 | "illuminate/validation": "self.version", 353 | "illuminate/view": "self.version" 354 | }, 355 | "require-dev": { 356 | "aws/aws-sdk-php": "^3.0", 357 | "doctrine/dbal": "^2.6", 358 | "filp/whoops": "^2.1.4", 359 | "league/flysystem-cached-adapter": "^1.0", 360 | "mockery/mockery": "^1.0", 361 | "moontoast/math": "^1.1", 362 | "orchestra/testbench-core": "3.7.*", 363 | "pda/pheanstalk": "^3.0", 364 | "phpunit/phpunit": "^7.0", 365 | "predis/predis": "^1.1.1", 366 | "symfony/css-selector": "^4.1", 367 | "symfony/dom-crawler": "^4.1", 368 | "true/punycode": "^2.1" 369 | }, 370 | "suggest": { 371 | "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).", 372 | "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).", 373 | "ext-pcntl": "Required to use all features of the queue worker.", 374 | "ext-posix": "Required to use all features of the queue worker.", 375 | "filp/whoops": "Required for friendly error pages in development (^2.1.4).", 376 | "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).", 377 | "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).", 378 | "laravel/tinker": "Required to use the tinker console command (^1.0).", 379 | "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).", 380 | "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).", 381 | "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).", 382 | "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).", 383 | "moontoast/math": "Required to use ordered UUIDs (^1.1).", 384 | "nexmo/client": "Required to use the Nexmo transport (^1.0).", 385 | "pda/pheanstalk": "Required to use the beanstalk queue driver (^3.0).", 386 | "predis/predis": "Required to use the redis cache and queue drivers (^1.0).", 387 | "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).", 388 | "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.1).", 389 | "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.1).", 390 | "symfony/psr-http-message-bridge": "Required to psr7 bridging features (^1.0)." 391 | }, 392 | "type": "library", 393 | "extra": { 394 | "branch-alias": { 395 | "dev-master": "5.7-dev" 396 | } 397 | }, 398 | "autoload": { 399 | "files": [ 400 | "src/Illuminate/Foundation/helpers.php", 401 | "src/Illuminate/Support/helpers.php" 402 | ], 403 | "psr-4": { 404 | "Illuminate\\": "src/Illuminate/" 405 | } 406 | }, 407 | "notification-url": "https://packagist.org/downloads/", 408 | "license": [ 409 | "MIT" 410 | ], 411 | "authors": [ 412 | { 413 | "name": "Taylor Otwell", 414 | "email": "taylor@laravel.com" 415 | } 416 | ], 417 | "description": "The Laravel Framework.", 418 | "homepage": "https://laravel.com", 419 | "keywords": [ 420 | "framework", 421 | "laravel" 422 | ], 423 | "time": "2018-10-30T14:44:34+00:00" 424 | }, 425 | { 426 | "name": "league/flysystem", 427 | "version": "1.0.48", 428 | "source": { 429 | "type": "git", 430 | "url": "https://github.com/thephpleague/flysystem.git", 431 | "reference": "a6ded5b2f6055e2db97b4b859fdfca2b952b78aa" 432 | }, 433 | "dist": { 434 | "type": "zip", 435 | "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a6ded5b2f6055e2db97b4b859fdfca2b952b78aa", 436 | "reference": "a6ded5b2f6055e2db97b4b859fdfca2b952b78aa", 437 | "shasum": "" 438 | }, 439 | "require": { 440 | "ext-fileinfo": "*", 441 | "php": ">=5.5.9" 442 | }, 443 | "conflict": { 444 | "league/flysystem-sftp": "<1.0.6" 445 | }, 446 | "require-dev": { 447 | "phpspec/phpspec": "^3.4", 448 | "phpunit/phpunit": "^5.7.10" 449 | }, 450 | "suggest": { 451 | "ext-fileinfo": "Required for MimeType", 452 | "ext-ftp": "Allows you to use FTP server storage", 453 | "ext-openssl": "Allows you to use FTPS server storage", 454 | "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", 455 | "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", 456 | "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", 457 | "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", 458 | "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", 459 | "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", 460 | "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", 461 | "league/flysystem-webdav": "Allows you to use WebDAV storage", 462 | "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter", 463 | "spatie/flysystem-dropbox": "Allows you to use Dropbox storage", 464 | "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications" 465 | }, 466 | "type": "library", 467 | "extra": { 468 | "branch-alias": { 469 | "dev-master": "1.1-dev" 470 | } 471 | }, 472 | "autoload": { 473 | "psr-4": { 474 | "League\\Flysystem\\": "src/" 475 | } 476 | }, 477 | "notification-url": "https://packagist.org/downloads/", 478 | "license": [ 479 | "MIT" 480 | ], 481 | "authors": [ 482 | { 483 | "name": "Frank de Jonge", 484 | "email": "info@frenky.net" 485 | } 486 | ], 487 | "description": "Filesystem abstraction: Many filesystems, one API.", 488 | "keywords": [ 489 | "Cloud Files", 490 | "WebDAV", 491 | "abstraction", 492 | "aws", 493 | "cloud", 494 | "copy.com", 495 | "dropbox", 496 | "file systems", 497 | "files", 498 | "filesystem", 499 | "filesystems", 500 | "ftp", 501 | "rackspace", 502 | "remote", 503 | "s3", 504 | "sftp", 505 | "storage" 506 | ], 507 | "time": "2018-10-15T13:53:10+00:00" 508 | }, 509 | { 510 | "name": "monolog/monolog", 511 | "version": "1.24.0", 512 | "source": { 513 | "type": "git", 514 | "url": "https://github.com/Seldaek/monolog.git", 515 | "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266" 516 | }, 517 | "dist": { 518 | "type": "zip", 519 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", 520 | "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", 521 | "shasum": "" 522 | }, 523 | "require": { 524 | "php": ">=5.3.0", 525 | "psr/log": "~1.0" 526 | }, 527 | "provide": { 528 | "psr/log-implementation": "1.0.0" 529 | }, 530 | "require-dev": { 531 | "aws/aws-sdk-php": "^2.4.9 || ^3.0", 532 | "doctrine/couchdb": "~1.0@dev", 533 | "graylog2/gelf-php": "~1.0", 534 | "jakub-onderka/php-parallel-lint": "0.9", 535 | "php-amqplib/php-amqplib": "~2.4", 536 | "php-console/php-console": "^3.1.3", 537 | "phpunit/phpunit": "~4.5", 538 | "phpunit/phpunit-mock-objects": "2.3.0", 539 | "ruflin/elastica": ">=0.90 <3.0", 540 | "sentry/sentry": "^0.13", 541 | "swiftmailer/swiftmailer": "^5.3|^6.0" 542 | }, 543 | "suggest": { 544 | "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", 545 | "doctrine/couchdb": "Allow sending log messages to a CouchDB server", 546 | "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", 547 | "ext-mongo": "Allow sending log messages to a MongoDB server", 548 | "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", 549 | "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", 550 | "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", 551 | "php-console/php-console": "Allow sending log messages to Google Chrome", 552 | "rollbar/rollbar": "Allow sending log messages to Rollbar", 553 | "ruflin/elastica": "Allow sending log messages to an Elastic Search server", 554 | "sentry/sentry": "Allow sending log messages to a Sentry server" 555 | }, 556 | "type": "library", 557 | "extra": { 558 | "branch-alias": { 559 | "dev-master": "2.0.x-dev" 560 | } 561 | }, 562 | "autoload": { 563 | "psr-4": { 564 | "Monolog\\": "src/Monolog" 565 | } 566 | }, 567 | "notification-url": "https://packagist.org/downloads/", 568 | "license": [ 569 | "MIT" 570 | ], 571 | "authors": [ 572 | { 573 | "name": "Jordi Boggiano", 574 | "email": "j.boggiano@seld.be", 575 | "homepage": "http://seld.be" 576 | } 577 | ], 578 | "description": "Sends your logs to files, sockets, inboxes, databases and various web services", 579 | "homepage": "http://github.com/Seldaek/monolog", 580 | "keywords": [ 581 | "log", 582 | "logging", 583 | "psr-3" 584 | ], 585 | "time": "2018-11-05T09:00:11+00:00" 586 | }, 587 | { 588 | "name": "nesbot/carbon", 589 | "version": "1.34.0", 590 | "source": { 591 | "type": "git", 592 | "url": "https://github.com/briannesbitt/Carbon.git", 593 | "reference": "1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33" 594 | }, 595 | "dist": { 596 | "type": "zip", 597 | "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33", 598 | "reference": "1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33", 599 | "shasum": "" 600 | }, 601 | "require": { 602 | "php": ">=5.3.9", 603 | "symfony/translation": "~2.6 || ~3.0 || ~4.0" 604 | }, 605 | "require-dev": { 606 | "friendsofphp/php-cs-fixer": "~2", 607 | "phpunit/phpunit": "^4.8.35 || ^5.7" 608 | }, 609 | "type": "library", 610 | "extra": { 611 | "laravel": { 612 | "providers": [ 613 | "Carbon\\Laravel\\ServiceProvider" 614 | ] 615 | } 616 | }, 617 | "autoload": { 618 | "psr-4": { 619 | "": "src/" 620 | } 621 | }, 622 | "notification-url": "https://packagist.org/downloads/", 623 | "license": [ 624 | "MIT" 625 | ], 626 | "authors": [ 627 | { 628 | "name": "Brian Nesbitt", 629 | "email": "brian@nesbot.com", 630 | "homepage": "http://nesbot.com" 631 | } 632 | ], 633 | "description": "A simple API extension for DateTime.", 634 | "homepage": "http://carbon.nesbot.com", 635 | "keywords": [ 636 | "date", 637 | "datetime", 638 | "time" 639 | ], 640 | "time": "2018-09-20T19:36:25+00:00" 641 | }, 642 | { 643 | "name": "opis/closure", 644 | "version": "3.1.1", 645 | "source": { 646 | "type": "git", 647 | "url": "https://github.com/opis/closure.git", 648 | "reference": "d3209e46ad6c69a969b705df0738fd0dbe26ef9e" 649 | }, 650 | "dist": { 651 | "type": "zip", 652 | "url": "https://api.github.com/repos/opis/closure/zipball/d3209e46ad6c69a969b705df0738fd0dbe26ef9e", 653 | "reference": "d3209e46ad6c69a969b705df0738fd0dbe26ef9e", 654 | "shasum": "" 655 | }, 656 | "require": { 657 | "php": "^5.4 || ^7.0" 658 | }, 659 | "require-dev": { 660 | "jeremeamia/superclosure": "^2.0", 661 | "phpunit/phpunit": "^4.0" 662 | }, 663 | "type": "library", 664 | "extra": { 665 | "branch-alias": { 666 | "dev-master": "3.0.x-dev" 667 | } 668 | }, 669 | "autoload": { 670 | "psr-4": { 671 | "Opis\\Closure\\": "src/" 672 | }, 673 | "files": [ 674 | "functions.php" 675 | ] 676 | }, 677 | "notification-url": "https://packagist.org/downloads/", 678 | "license": [ 679 | "MIT" 680 | ], 681 | "authors": [ 682 | { 683 | "name": "Marius Sarca", 684 | "email": "marius.sarca@gmail.com" 685 | }, 686 | { 687 | "name": "Sorin Sarca", 688 | "email": "sarca_sorin@hotmail.com" 689 | } 690 | ], 691 | "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.", 692 | "homepage": "https://opis.io/closure", 693 | "keywords": [ 694 | "anonymous functions", 695 | "closure", 696 | "function", 697 | "serializable", 698 | "serialization", 699 | "serialize" 700 | ], 701 | "time": "2018-10-02T13:36:53+00:00" 702 | }, 703 | { 704 | "name": "paragonie/random_compat", 705 | "version": "v9.99.99", 706 | "source": { 707 | "type": "git", 708 | "url": "https://github.com/paragonie/random_compat.git", 709 | "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" 710 | }, 711 | "dist": { 712 | "type": "zip", 713 | "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", 714 | "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", 715 | "shasum": "" 716 | }, 717 | "require": { 718 | "php": "^7" 719 | }, 720 | "require-dev": { 721 | "phpunit/phpunit": "4.*|5.*", 722 | "vimeo/psalm": "^1" 723 | }, 724 | "suggest": { 725 | "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." 726 | }, 727 | "type": "library", 728 | "notification-url": "https://packagist.org/downloads/", 729 | "license": [ 730 | "MIT" 731 | ], 732 | "authors": [ 733 | { 734 | "name": "Paragon Initiative Enterprises", 735 | "email": "security@paragonie.com", 736 | "homepage": "https://paragonie.com" 737 | } 738 | ], 739 | "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", 740 | "keywords": [ 741 | "csprng", 742 | "polyfill", 743 | "pseudorandom", 744 | "random" 745 | ], 746 | "time": "2018-07-02T15:55:56+00:00" 747 | }, 748 | { 749 | "name": "psr/container", 750 | "version": "1.0.0", 751 | "source": { 752 | "type": "git", 753 | "url": "https://github.com/php-fig/container.git", 754 | "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" 755 | }, 756 | "dist": { 757 | "type": "zip", 758 | "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", 759 | "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", 760 | "shasum": "" 761 | }, 762 | "require": { 763 | "php": ">=5.3.0" 764 | }, 765 | "type": "library", 766 | "extra": { 767 | "branch-alias": { 768 | "dev-master": "1.0.x-dev" 769 | } 770 | }, 771 | "autoload": { 772 | "psr-4": { 773 | "Psr\\Container\\": "src/" 774 | } 775 | }, 776 | "notification-url": "https://packagist.org/downloads/", 777 | "license": [ 778 | "MIT" 779 | ], 780 | "authors": [ 781 | { 782 | "name": "PHP-FIG", 783 | "homepage": "http://www.php-fig.org/" 784 | } 785 | ], 786 | "description": "Common Container Interface (PHP FIG PSR-11)", 787 | "homepage": "https://github.com/php-fig/container", 788 | "keywords": [ 789 | "PSR-11", 790 | "container", 791 | "container-interface", 792 | "container-interop", 793 | "psr" 794 | ], 795 | "time": "2017-02-14T16:28:37+00:00" 796 | }, 797 | { 798 | "name": "psr/log", 799 | "version": "1.0.2", 800 | "source": { 801 | "type": "git", 802 | "url": "https://github.com/php-fig/log.git", 803 | "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" 804 | }, 805 | "dist": { 806 | "type": "zip", 807 | "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", 808 | "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", 809 | "shasum": "" 810 | }, 811 | "require": { 812 | "php": ">=5.3.0" 813 | }, 814 | "type": "library", 815 | "extra": { 816 | "branch-alias": { 817 | "dev-master": "1.0.x-dev" 818 | } 819 | }, 820 | "autoload": { 821 | "psr-4": { 822 | "Psr\\Log\\": "Psr/Log/" 823 | } 824 | }, 825 | "notification-url": "https://packagist.org/downloads/", 826 | "license": [ 827 | "MIT" 828 | ], 829 | "authors": [ 830 | { 831 | "name": "PHP-FIG", 832 | "homepage": "http://www.php-fig.org/" 833 | } 834 | ], 835 | "description": "Common interface for logging libraries", 836 | "homepage": "https://github.com/php-fig/log", 837 | "keywords": [ 838 | "log", 839 | "psr", 840 | "psr-3" 841 | ], 842 | "time": "2016-10-10T12:19:37+00:00" 843 | }, 844 | { 845 | "name": "psr/simple-cache", 846 | "version": "1.0.1", 847 | "source": { 848 | "type": "git", 849 | "url": "https://github.com/php-fig/simple-cache.git", 850 | "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" 851 | }, 852 | "dist": { 853 | "type": "zip", 854 | "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", 855 | "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", 856 | "shasum": "" 857 | }, 858 | "require": { 859 | "php": ">=5.3.0" 860 | }, 861 | "type": "library", 862 | "extra": { 863 | "branch-alias": { 864 | "dev-master": "1.0.x-dev" 865 | } 866 | }, 867 | "autoload": { 868 | "psr-4": { 869 | "Psr\\SimpleCache\\": "src/" 870 | } 871 | }, 872 | "notification-url": "https://packagist.org/downloads/", 873 | "license": [ 874 | "MIT" 875 | ], 876 | "authors": [ 877 | { 878 | "name": "PHP-FIG", 879 | "homepage": "http://www.php-fig.org/" 880 | } 881 | ], 882 | "description": "Common interfaces for simple caching", 883 | "keywords": [ 884 | "cache", 885 | "caching", 886 | "psr", 887 | "psr-16", 888 | "simple-cache" 889 | ], 890 | "time": "2017-10-23T01:57:42+00:00" 891 | }, 892 | { 893 | "name": "ramsey/uuid", 894 | "version": "3.8.0", 895 | "source": { 896 | "type": "git", 897 | "url": "https://github.com/ramsey/uuid.git", 898 | "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3" 899 | }, 900 | "dist": { 901 | "type": "zip", 902 | "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3", 903 | "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3", 904 | "shasum": "" 905 | }, 906 | "require": { 907 | "paragonie/random_compat": "^1.0|^2.0|9.99.99", 908 | "php": "^5.4 || ^7.0", 909 | "symfony/polyfill-ctype": "^1.8" 910 | }, 911 | "replace": { 912 | "rhumsaa/uuid": "self.version" 913 | }, 914 | "require-dev": { 915 | "codeception/aspect-mock": "^1.0 | ~2.0.0", 916 | "doctrine/annotations": "~1.2.0", 917 | "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0", 918 | "ircmaxell/random-lib": "^1.1", 919 | "jakub-onderka/php-parallel-lint": "^0.9.0", 920 | "mockery/mockery": "^0.9.9", 921 | "moontoast/math": "^1.1", 922 | "php-mock/php-mock-phpunit": "^0.3|^1.1", 923 | "phpunit/phpunit": "^4.7|^5.0|^6.5", 924 | "squizlabs/php_codesniffer": "^2.3" 925 | }, 926 | "suggest": { 927 | "ext-ctype": "Provides support for PHP Ctype functions", 928 | "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", 929 | "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", 930 | "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter", 931 | "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", 932 | "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", 933 | "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." 934 | }, 935 | "type": "library", 936 | "extra": { 937 | "branch-alias": { 938 | "dev-master": "3.x-dev" 939 | } 940 | }, 941 | "autoload": { 942 | "psr-4": { 943 | "Ramsey\\Uuid\\": "src/" 944 | } 945 | }, 946 | "notification-url": "https://packagist.org/downloads/", 947 | "license": [ 948 | "MIT" 949 | ], 950 | "authors": [ 951 | { 952 | "name": "Marijn Huizendveld", 953 | "email": "marijn.huizendveld@gmail.com" 954 | }, 955 | { 956 | "name": "Thibaud Fabre", 957 | "email": "thibaud@aztech.io" 958 | }, 959 | { 960 | "name": "Ben Ramsey", 961 | "email": "ben@benramsey.com", 962 | "homepage": "https://benramsey.com" 963 | } 964 | ], 965 | "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", 966 | "homepage": "https://github.com/ramsey/uuid", 967 | "keywords": [ 968 | "guid", 969 | "identifier", 970 | "uuid" 971 | ], 972 | "time": "2018-07-19T23:38:55+00:00" 973 | }, 974 | { 975 | "name": "swiftmailer/swiftmailer", 976 | "version": "v6.1.3", 977 | "source": { 978 | "type": "git", 979 | "url": "https://github.com/swiftmailer/swiftmailer.git", 980 | "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4" 981 | }, 982 | "dist": { 983 | "type": "zip", 984 | "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4", 985 | "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4", 986 | "shasum": "" 987 | }, 988 | "require": { 989 | "egulias/email-validator": "~2.0", 990 | "php": ">=7.0.0" 991 | }, 992 | "require-dev": { 993 | "mockery/mockery": "~0.9.1", 994 | "symfony/phpunit-bridge": "~3.3@dev" 995 | }, 996 | "suggest": { 997 | "ext-intl": "Needed to support internationalized email addresses", 998 | "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed" 999 | }, 1000 | "type": "library", 1001 | "extra": { 1002 | "branch-alias": { 1003 | "dev-master": "6.1-dev" 1004 | } 1005 | }, 1006 | "autoload": { 1007 | "files": [ 1008 | "lib/swift_required.php" 1009 | ] 1010 | }, 1011 | "notification-url": "https://packagist.org/downloads/", 1012 | "license": [ 1013 | "MIT" 1014 | ], 1015 | "authors": [ 1016 | { 1017 | "name": "Chris Corbyn" 1018 | }, 1019 | { 1020 | "name": "Fabien Potencier", 1021 | "email": "fabien@symfony.com" 1022 | } 1023 | ], 1024 | "description": "Swiftmailer, free feature-rich PHP mailer", 1025 | "homepage": "https://swiftmailer.symfony.com", 1026 | "keywords": [ 1027 | "email", 1028 | "mail", 1029 | "mailer" 1030 | ], 1031 | "time": "2018-09-11T07:12:52+00:00" 1032 | }, 1033 | { 1034 | "name": "symfony/console", 1035 | "version": "v4.1.7", 1036 | "source": { 1037 | "type": "git", 1038 | "url": "https://github.com/symfony/console.git", 1039 | "reference": "432122af37d8cd52fba1b294b11976e0d20df595" 1040 | }, 1041 | "dist": { 1042 | "type": "zip", 1043 | "url": "https://api.github.com/repos/symfony/console/zipball/432122af37d8cd52fba1b294b11976e0d20df595", 1044 | "reference": "432122af37d8cd52fba1b294b11976e0d20df595", 1045 | "shasum": "" 1046 | }, 1047 | "require": { 1048 | "php": "^7.1.3", 1049 | "symfony/polyfill-mbstring": "~1.0" 1050 | }, 1051 | "conflict": { 1052 | "symfony/dependency-injection": "<3.4", 1053 | "symfony/process": "<3.3" 1054 | }, 1055 | "require-dev": { 1056 | "psr/log": "~1.0", 1057 | "symfony/config": "~3.4|~4.0", 1058 | "symfony/dependency-injection": "~3.4|~4.0", 1059 | "symfony/event-dispatcher": "~3.4|~4.0", 1060 | "symfony/lock": "~3.4|~4.0", 1061 | "symfony/process": "~3.4|~4.0" 1062 | }, 1063 | "suggest": { 1064 | "psr/log-implementation": "For using the console logger", 1065 | "symfony/event-dispatcher": "", 1066 | "symfony/lock": "", 1067 | "symfony/process": "" 1068 | }, 1069 | "type": "library", 1070 | "extra": { 1071 | "branch-alias": { 1072 | "dev-master": "4.1-dev" 1073 | } 1074 | }, 1075 | "autoload": { 1076 | "psr-4": { 1077 | "Symfony\\Component\\Console\\": "" 1078 | }, 1079 | "exclude-from-classmap": [ 1080 | "/Tests/" 1081 | ] 1082 | }, 1083 | "notification-url": "https://packagist.org/downloads/", 1084 | "license": [ 1085 | "MIT" 1086 | ], 1087 | "authors": [ 1088 | { 1089 | "name": "Fabien Potencier", 1090 | "email": "fabien@symfony.com" 1091 | }, 1092 | { 1093 | "name": "Symfony Community", 1094 | "homepage": "https://symfony.com/contributors" 1095 | } 1096 | ], 1097 | "description": "Symfony Console Component", 1098 | "homepage": "https://symfony.com", 1099 | "time": "2018-10-31T09:30:44+00:00" 1100 | }, 1101 | { 1102 | "name": "symfony/css-selector", 1103 | "version": "v4.1.7", 1104 | "source": { 1105 | "type": "git", 1106 | "url": "https://github.com/symfony/css-selector.git", 1107 | "reference": "d67de79a70a27d93c92c47f37ece958bf8de4d8a" 1108 | }, 1109 | "dist": { 1110 | "type": "zip", 1111 | "url": "https://api.github.com/repos/symfony/css-selector/zipball/d67de79a70a27d93c92c47f37ece958bf8de4d8a", 1112 | "reference": "d67de79a70a27d93c92c47f37ece958bf8de4d8a", 1113 | "shasum": "" 1114 | }, 1115 | "require": { 1116 | "php": "^7.1.3" 1117 | }, 1118 | "type": "library", 1119 | "extra": { 1120 | "branch-alias": { 1121 | "dev-master": "4.1-dev" 1122 | } 1123 | }, 1124 | "autoload": { 1125 | "psr-4": { 1126 | "Symfony\\Component\\CssSelector\\": "" 1127 | }, 1128 | "exclude-from-classmap": [ 1129 | "/Tests/" 1130 | ] 1131 | }, 1132 | "notification-url": "https://packagist.org/downloads/", 1133 | "license": [ 1134 | "MIT" 1135 | ], 1136 | "authors": [ 1137 | { 1138 | "name": "Jean-François Simon", 1139 | "email": "jeanfrancois.simon@sensiolabs.com" 1140 | }, 1141 | { 1142 | "name": "Fabien Potencier", 1143 | "email": "fabien@symfony.com" 1144 | }, 1145 | { 1146 | "name": "Symfony Community", 1147 | "homepage": "https://symfony.com/contributors" 1148 | } 1149 | ], 1150 | "description": "Symfony CssSelector Component", 1151 | "homepage": "https://symfony.com", 1152 | "time": "2018-10-02T16:36:10+00:00" 1153 | }, 1154 | { 1155 | "name": "symfony/debug", 1156 | "version": "v4.1.7", 1157 | "source": { 1158 | "type": "git", 1159 | "url": "https://github.com/symfony/debug.git", 1160 | "reference": "19090917b848a799cbae4800abf740fe4eb71c1d" 1161 | }, 1162 | "dist": { 1163 | "type": "zip", 1164 | "url": "https://api.github.com/repos/symfony/debug/zipball/19090917b848a799cbae4800abf740fe4eb71c1d", 1165 | "reference": "19090917b848a799cbae4800abf740fe4eb71c1d", 1166 | "shasum": "" 1167 | }, 1168 | "require": { 1169 | "php": "^7.1.3", 1170 | "psr/log": "~1.0" 1171 | }, 1172 | "conflict": { 1173 | "symfony/http-kernel": "<3.4" 1174 | }, 1175 | "require-dev": { 1176 | "symfony/http-kernel": "~3.4|~4.0" 1177 | }, 1178 | "type": "library", 1179 | "extra": { 1180 | "branch-alias": { 1181 | "dev-master": "4.1-dev" 1182 | } 1183 | }, 1184 | "autoload": { 1185 | "psr-4": { 1186 | "Symfony\\Component\\Debug\\": "" 1187 | }, 1188 | "exclude-from-classmap": [ 1189 | "/Tests/" 1190 | ] 1191 | }, 1192 | "notification-url": "https://packagist.org/downloads/", 1193 | "license": [ 1194 | "MIT" 1195 | ], 1196 | "authors": [ 1197 | { 1198 | "name": "Fabien Potencier", 1199 | "email": "fabien@symfony.com" 1200 | }, 1201 | { 1202 | "name": "Symfony Community", 1203 | "homepage": "https://symfony.com/contributors" 1204 | } 1205 | ], 1206 | "description": "Symfony Debug Component", 1207 | "homepage": "https://symfony.com", 1208 | "time": "2018-10-31T09:09:42+00:00" 1209 | }, 1210 | { 1211 | "name": "symfony/event-dispatcher", 1212 | "version": "v4.1.7", 1213 | "source": { 1214 | "type": "git", 1215 | "url": "https://github.com/symfony/event-dispatcher.git", 1216 | "reference": "552541dad078c85d9414b09c041ede488b456cd5" 1217 | }, 1218 | "dist": { 1219 | "type": "zip", 1220 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/552541dad078c85d9414b09c041ede488b456cd5", 1221 | "reference": "552541dad078c85d9414b09c041ede488b456cd5", 1222 | "shasum": "" 1223 | }, 1224 | "require": { 1225 | "php": "^7.1.3" 1226 | }, 1227 | "conflict": { 1228 | "symfony/dependency-injection": "<3.4" 1229 | }, 1230 | "require-dev": { 1231 | "psr/log": "~1.0", 1232 | "symfony/config": "~3.4|~4.0", 1233 | "symfony/dependency-injection": "~3.4|~4.0", 1234 | "symfony/expression-language": "~3.4|~4.0", 1235 | "symfony/stopwatch": "~3.4|~4.0" 1236 | }, 1237 | "suggest": { 1238 | "symfony/dependency-injection": "", 1239 | "symfony/http-kernel": "" 1240 | }, 1241 | "type": "library", 1242 | "extra": { 1243 | "branch-alias": { 1244 | "dev-master": "4.1-dev" 1245 | } 1246 | }, 1247 | "autoload": { 1248 | "psr-4": { 1249 | "Symfony\\Component\\EventDispatcher\\": "" 1250 | }, 1251 | "exclude-from-classmap": [ 1252 | "/Tests/" 1253 | ] 1254 | }, 1255 | "notification-url": "https://packagist.org/downloads/", 1256 | "license": [ 1257 | "MIT" 1258 | ], 1259 | "authors": [ 1260 | { 1261 | "name": "Fabien Potencier", 1262 | "email": "fabien@symfony.com" 1263 | }, 1264 | { 1265 | "name": "Symfony Community", 1266 | "homepage": "https://symfony.com/contributors" 1267 | } 1268 | ], 1269 | "description": "Symfony EventDispatcher Component", 1270 | "homepage": "https://symfony.com", 1271 | "time": "2018-10-10T13:52:42+00:00" 1272 | }, 1273 | { 1274 | "name": "symfony/finder", 1275 | "version": "v4.1.7", 1276 | "source": { 1277 | "type": "git", 1278 | "url": "https://github.com/symfony/finder.git", 1279 | "reference": "1f17195b44543017a9c9b2d437c670627e96ad06" 1280 | }, 1281 | "dist": { 1282 | "type": "zip", 1283 | "url": "https://api.github.com/repos/symfony/finder/zipball/1f17195b44543017a9c9b2d437c670627e96ad06", 1284 | "reference": "1f17195b44543017a9c9b2d437c670627e96ad06", 1285 | "shasum": "" 1286 | }, 1287 | "require": { 1288 | "php": "^7.1.3" 1289 | }, 1290 | "type": "library", 1291 | "extra": { 1292 | "branch-alias": { 1293 | "dev-master": "4.1-dev" 1294 | } 1295 | }, 1296 | "autoload": { 1297 | "psr-4": { 1298 | "Symfony\\Component\\Finder\\": "" 1299 | }, 1300 | "exclude-from-classmap": [ 1301 | "/Tests/" 1302 | ] 1303 | }, 1304 | "notification-url": "https://packagist.org/downloads/", 1305 | "license": [ 1306 | "MIT" 1307 | ], 1308 | "authors": [ 1309 | { 1310 | "name": "Fabien Potencier", 1311 | "email": "fabien@symfony.com" 1312 | }, 1313 | { 1314 | "name": "Symfony Community", 1315 | "homepage": "https://symfony.com/contributors" 1316 | } 1317 | ], 1318 | "description": "Symfony Finder Component", 1319 | "homepage": "https://symfony.com", 1320 | "time": "2018-10-03T08:47:56+00:00" 1321 | }, 1322 | { 1323 | "name": "symfony/http-foundation", 1324 | "version": "v4.1.7", 1325 | "source": { 1326 | "type": "git", 1327 | "url": "https://github.com/symfony/http-foundation.git", 1328 | "reference": "82d494c1492b0dd24bbc5c2d963fb02eb44491af" 1329 | }, 1330 | "dist": { 1331 | "type": "zip", 1332 | "url": "https://api.github.com/repos/symfony/http-foundation/zipball/82d494c1492b0dd24bbc5c2d963fb02eb44491af", 1333 | "reference": "82d494c1492b0dd24bbc5c2d963fb02eb44491af", 1334 | "shasum": "" 1335 | }, 1336 | "require": { 1337 | "php": "^7.1.3", 1338 | "symfony/polyfill-mbstring": "~1.1" 1339 | }, 1340 | "require-dev": { 1341 | "predis/predis": "~1.0", 1342 | "symfony/expression-language": "~3.4|~4.0" 1343 | }, 1344 | "type": "library", 1345 | "extra": { 1346 | "branch-alias": { 1347 | "dev-master": "4.1-dev" 1348 | } 1349 | }, 1350 | "autoload": { 1351 | "psr-4": { 1352 | "Symfony\\Component\\HttpFoundation\\": "" 1353 | }, 1354 | "exclude-from-classmap": [ 1355 | "/Tests/" 1356 | ] 1357 | }, 1358 | "notification-url": "https://packagist.org/downloads/", 1359 | "license": [ 1360 | "MIT" 1361 | ], 1362 | "authors": [ 1363 | { 1364 | "name": "Fabien Potencier", 1365 | "email": "fabien@symfony.com" 1366 | }, 1367 | { 1368 | "name": "Symfony Community", 1369 | "homepage": "https://symfony.com/contributors" 1370 | } 1371 | ], 1372 | "description": "Symfony HttpFoundation Component", 1373 | "homepage": "https://symfony.com", 1374 | "time": "2018-10-31T09:09:42+00:00" 1375 | }, 1376 | { 1377 | "name": "symfony/http-kernel", 1378 | "version": "v4.1.7", 1379 | "source": { 1380 | "type": "git", 1381 | "url": "https://github.com/symfony/http-kernel.git", 1382 | "reference": "958be64ab13b65172ad646ef5ae20364c2305fae" 1383 | }, 1384 | "dist": { 1385 | "type": "zip", 1386 | "url": "https://api.github.com/repos/symfony/http-kernel/zipball/958be64ab13b65172ad646ef5ae20364c2305fae", 1387 | "reference": "958be64ab13b65172ad646ef5ae20364c2305fae", 1388 | "shasum": "" 1389 | }, 1390 | "require": { 1391 | "php": "^7.1.3", 1392 | "psr/log": "~1.0", 1393 | "symfony/debug": "~3.4|~4.0", 1394 | "symfony/event-dispatcher": "~4.1", 1395 | "symfony/http-foundation": "^4.1.1", 1396 | "symfony/polyfill-ctype": "~1.8" 1397 | }, 1398 | "conflict": { 1399 | "symfony/config": "<3.4", 1400 | "symfony/dependency-injection": "<4.1", 1401 | "symfony/var-dumper": "<4.1.1", 1402 | "twig/twig": "<1.34|<2.4,>=2" 1403 | }, 1404 | "provide": { 1405 | "psr/log-implementation": "1.0" 1406 | }, 1407 | "require-dev": { 1408 | "psr/cache": "~1.0", 1409 | "symfony/browser-kit": "~3.4|~4.0", 1410 | "symfony/config": "~3.4|~4.0", 1411 | "symfony/console": "~3.4|~4.0", 1412 | "symfony/css-selector": "~3.4|~4.0", 1413 | "symfony/dependency-injection": "^4.1", 1414 | "symfony/dom-crawler": "~3.4|~4.0", 1415 | "symfony/expression-language": "~3.4|~4.0", 1416 | "symfony/finder": "~3.4|~4.0", 1417 | "symfony/process": "~3.4|~4.0", 1418 | "symfony/routing": "~3.4|~4.0", 1419 | "symfony/stopwatch": "~3.4|~4.0", 1420 | "symfony/templating": "~3.4|~4.0", 1421 | "symfony/translation": "~3.4|~4.0", 1422 | "symfony/var-dumper": "^4.1.1" 1423 | }, 1424 | "suggest": { 1425 | "symfony/browser-kit": "", 1426 | "symfony/config": "", 1427 | "symfony/console": "", 1428 | "symfony/dependency-injection": "", 1429 | "symfony/var-dumper": "" 1430 | }, 1431 | "type": "library", 1432 | "extra": { 1433 | "branch-alias": { 1434 | "dev-master": "4.1-dev" 1435 | } 1436 | }, 1437 | "autoload": { 1438 | "psr-4": { 1439 | "Symfony\\Component\\HttpKernel\\": "" 1440 | }, 1441 | "exclude-from-classmap": [ 1442 | "/Tests/" 1443 | ] 1444 | }, 1445 | "notification-url": "https://packagist.org/downloads/", 1446 | "license": [ 1447 | "MIT" 1448 | ], 1449 | "authors": [ 1450 | { 1451 | "name": "Fabien Potencier", 1452 | "email": "fabien@symfony.com" 1453 | }, 1454 | { 1455 | "name": "Symfony Community", 1456 | "homepage": "https://symfony.com/contributors" 1457 | } 1458 | ], 1459 | "description": "Symfony HttpKernel Component", 1460 | "homepage": "https://symfony.com", 1461 | "time": "2018-11-03T11:11:23+00:00" 1462 | }, 1463 | { 1464 | "name": "symfony/polyfill-ctype", 1465 | "version": "v1.10.0", 1466 | "source": { 1467 | "type": "git", 1468 | "url": "https://github.com/symfony/polyfill-ctype.git", 1469 | "reference": "e3d826245268269cd66f8326bd8bc066687b4a19" 1470 | }, 1471 | "dist": { 1472 | "type": "zip", 1473 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19", 1474 | "reference": "e3d826245268269cd66f8326bd8bc066687b4a19", 1475 | "shasum": "" 1476 | }, 1477 | "require": { 1478 | "php": ">=5.3.3" 1479 | }, 1480 | "suggest": { 1481 | "ext-ctype": "For best performance" 1482 | }, 1483 | "type": "library", 1484 | "extra": { 1485 | "branch-alias": { 1486 | "dev-master": "1.9-dev" 1487 | } 1488 | }, 1489 | "autoload": { 1490 | "psr-4": { 1491 | "Symfony\\Polyfill\\Ctype\\": "" 1492 | }, 1493 | "files": [ 1494 | "bootstrap.php" 1495 | ] 1496 | }, 1497 | "notification-url": "https://packagist.org/downloads/", 1498 | "license": [ 1499 | "MIT" 1500 | ], 1501 | "authors": [ 1502 | { 1503 | "name": "Symfony Community", 1504 | "homepage": "https://symfony.com/contributors" 1505 | }, 1506 | { 1507 | "name": "Gert de Pagter", 1508 | "email": "BackEndTea@gmail.com" 1509 | } 1510 | ], 1511 | "description": "Symfony polyfill for ctype functions", 1512 | "homepage": "https://symfony.com", 1513 | "keywords": [ 1514 | "compatibility", 1515 | "ctype", 1516 | "polyfill", 1517 | "portable" 1518 | ], 1519 | "time": "2018-08-06T14:22:27+00:00" 1520 | }, 1521 | { 1522 | "name": "symfony/polyfill-mbstring", 1523 | "version": "v1.10.0", 1524 | "source": { 1525 | "type": "git", 1526 | "url": "https://github.com/symfony/polyfill-mbstring.git", 1527 | "reference": "c79c051f5b3a46be09205c73b80b346e4153e494" 1528 | }, 1529 | "dist": { 1530 | "type": "zip", 1531 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494", 1532 | "reference": "c79c051f5b3a46be09205c73b80b346e4153e494", 1533 | "shasum": "" 1534 | }, 1535 | "require": { 1536 | "php": ">=5.3.3" 1537 | }, 1538 | "suggest": { 1539 | "ext-mbstring": "For best performance" 1540 | }, 1541 | "type": "library", 1542 | "extra": { 1543 | "branch-alias": { 1544 | "dev-master": "1.9-dev" 1545 | } 1546 | }, 1547 | "autoload": { 1548 | "psr-4": { 1549 | "Symfony\\Polyfill\\Mbstring\\": "" 1550 | }, 1551 | "files": [ 1552 | "bootstrap.php" 1553 | ] 1554 | }, 1555 | "notification-url": "https://packagist.org/downloads/", 1556 | "license": [ 1557 | "MIT" 1558 | ], 1559 | "authors": [ 1560 | { 1561 | "name": "Nicolas Grekas", 1562 | "email": "p@tchwork.com" 1563 | }, 1564 | { 1565 | "name": "Symfony Community", 1566 | "homepage": "https://symfony.com/contributors" 1567 | } 1568 | ], 1569 | "description": "Symfony polyfill for the Mbstring extension", 1570 | "homepage": "https://symfony.com", 1571 | "keywords": [ 1572 | "compatibility", 1573 | "mbstring", 1574 | "polyfill", 1575 | "portable", 1576 | "shim" 1577 | ], 1578 | "time": "2018-09-21T13:07:52+00:00" 1579 | }, 1580 | { 1581 | "name": "symfony/polyfill-php72", 1582 | "version": "v1.10.0", 1583 | "source": { 1584 | "type": "git", 1585 | "url": "https://github.com/symfony/polyfill-php72.git", 1586 | "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631" 1587 | }, 1588 | "dist": { 1589 | "type": "zip", 1590 | "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9050816e2ca34a8e916c3a0ae8b9c2fccf68b631", 1591 | "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631", 1592 | "shasum": "" 1593 | }, 1594 | "require": { 1595 | "php": ">=5.3.3" 1596 | }, 1597 | "type": "library", 1598 | "extra": { 1599 | "branch-alias": { 1600 | "dev-master": "1.9-dev" 1601 | } 1602 | }, 1603 | "autoload": { 1604 | "psr-4": { 1605 | "Symfony\\Polyfill\\Php72\\": "" 1606 | }, 1607 | "files": [ 1608 | "bootstrap.php" 1609 | ] 1610 | }, 1611 | "notification-url": "https://packagist.org/downloads/", 1612 | "license": [ 1613 | "MIT" 1614 | ], 1615 | "authors": [ 1616 | { 1617 | "name": "Nicolas Grekas", 1618 | "email": "p@tchwork.com" 1619 | }, 1620 | { 1621 | "name": "Symfony Community", 1622 | "homepage": "https://symfony.com/contributors" 1623 | } 1624 | ], 1625 | "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", 1626 | "homepage": "https://symfony.com", 1627 | "keywords": [ 1628 | "compatibility", 1629 | "polyfill", 1630 | "portable", 1631 | "shim" 1632 | ], 1633 | "time": "2018-09-21T13:07:52+00:00" 1634 | }, 1635 | { 1636 | "name": "symfony/process", 1637 | "version": "v4.1.7", 1638 | "source": { 1639 | "type": "git", 1640 | "url": "https://github.com/symfony/process.git", 1641 | "reference": "3e83acef94d979b1de946599ef86b3a352abcdc9" 1642 | }, 1643 | "dist": { 1644 | "type": "zip", 1645 | "url": "https://api.github.com/repos/symfony/process/zipball/3e83acef94d979b1de946599ef86b3a352abcdc9", 1646 | "reference": "3e83acef94d979b1de946599ef86b3a352abcdc9", 1647 | "shasum": "" 1648 | }, 1649 | "require": { 1650 | "php": "^7.1.3" 1651 | }, 1652 | "type": "library", 1653 | "extra": { 1654 | "branch-alias": { 1655 | "dev-master": "4.1-dev" 1656 | } 1657 | }, 1658 | "autoload": { 1659 | "psr-4": { 1660 | "Symfony\\Component\\Process\\": "" 1661 | }, 1662 | "exclude-from-classmap": [ 1663 | "/Tests/" 1664 | ] 1665 | }, 1666 | "notification-url": "https://packagist.org/downloads/", 1667 | "license": [ 1668 | "MIT" 1669 | ], 1670 | "authors": [ 1671 | { 1672 | "name": "Fabien Potencier", 1673 | "email": "fabien@symfony.com" 1674 | }, 1675 | { 1676 | "name": "Symfony Community", 1677 | "homepage": "https://symfony.com/contributors" 1678 | } 1679 | ], 1680 | "description": "Symfony Process Component", 1681 | "homepage": "https://symfony.com", 1682 | "time": "2018-10-14T20:48:13+00:00" 1683 | }, 1684 | { 1685 | "name": "symfony/routing", 1686 | "version": "v4.1.7", 1687 | "source": { 1688 | "type": "git", 1689 | "url": "https://github.com/symfony/routing.git", 1690 | "reference": "d4a3c14cfbe6b9c05a1d6e948654022d4d1ad3fd" 1691 | }, 1692 | "dist": { 1693 | "type": "zip", 1694 | "url": "https://api.github.com/repos/symfony/routing/zipball/d4a3c14cfbe6b9c05a1d6e948654022d4d1ad3fd", 1695 | "reference": "d4a3c14cfbe6b9c05a1d6e948654022d4d1ad3fd", 1696 | "shasum": "" 1697 | }, 1698 | "require": { 1699 | "php": "^7.1.3" 1700 | }, 1701 | "conflict": { 1702 | "symfony/config": "<3.4", 1703 | "symfony/dependency-injection": "<3.4", 1704 | "symfony/yaml": "<3.4" 1705 | }, 1706 | "require-dev": { 1707 | "doctrine/annotations": "~1.0", 1708 | "psr/log": "~1.0", 1709 | "symfony/config": "~3.4|~4.0", 1710 | "symfony/dependency-injection": "~3.4|~4.0", 1711 | "symfony/expression-language": "~3.4|~4.0", 1712 | "symfony/http-foundation": "~3.4|~4.0", 1713 | "symfony/yaml": "~3.4|~4.0" 1714 | }, 1715 | "suggest": { 1716 | "doctrine/annotations": "For using the annotation loader", 1717 | "symfony/config": "For using the all-in-one router or any loader", 1718 | "symfony/dependency-injection": "For loading routes from a service", 1719 | "symfony/expression-language": "For using expression matching", 1720 | "symfony/http-foundation": "For using a Symfony Request object", 1721 | "symfony/yaml": "For using the YAML loader" 1722 | }, 1723 | "type": "library", 1724 | "extra": { 1725 | "branch-alias": { 1726 | "dev-master": "4.1-dev" 1727 | } 1728 | }, 1729 | "autoload": { 1730 | "psr-4": { 1731 | "Symfony\\Component\\Routing\\": "" 1732 | }, 1733 | "exclude-from-classmap": [ 1734 | "/Tests/" 1735 | ] 1736 | }, 1737 | "notification-url": "https://packagist.org/downloads/", 1738 | "license": [ 1739 | "MIT" 1740 | ], 1741 | "authors": [ 1742 | { 1743 | "name": "Fabien Potencier", 1744 | "email": "fabien@symfony.com" 1745 | }, 1746 | { 1747 | "name": "Symfony Community", 1748 | "homepage": "https://symfony.com/contributors" 1749 | } 1750 | ], 1751 | "description": "Symfony Routing Component", 1752 | "homepage": "https://symfony.com", 1753 | "keywords": [ 1754 | "router", 1755 | "routing", 1756 | "uri", 1757 | "url" 1758 | ], 1759 | "time": "2018-10-28T18:38:52+00:00" 1760 | }, 1761 | { 1762 | "name": "symfony/translation", 1763 | "version": "v4.1.7", 1764 | "source": { 1765 | "type": "git", 1766 | "url": "https://github.com/symfony/translation.git", 1767 | "reference": "aa04dc1c75b7d3da7bd7003104cd0cfc5dff635c" 1768 | }, 1769 | "dist": { 1770 | "type": "zip", 1771 | "url": "https://api.github.com/repos/symfony/translation/zipball/aa04dc1c75b7d3da7bd7003104cd0cfc5dff635c", 1772 | "reference": "aa04dc1c75b7d3da7bd7003104cd0cfc5dff635c", 1773 | "shasum": "" 1774 | }, 1775 | "require": { 1776 | "php": "^7.1.3", 1777 | "symfony/polyfill-mbstring": "~1.0" 1778 | }, 1779 | "conflict": { 1780 | "symfony/config": "<3.4", 1781 | "symfony/dependency-injection": "<3.4", 1782 | "symfony/yaml": "<3.4" 1783 | }, 1784 | "require-dev": { 1785 | "psr/log": "~1.0", 1786 | "symfony/config": "~3.4|~4.0", 1787 | "symfony/console": "~3.4|~4.0", 1788 | "symfony/dependency-injection": "~3.4|~4.0", 1789 | "symfony/finder": "~2.8|~3.0|~4.0", 1790 | "symfony/intl": "~3.4|~4.0", 1791 | "symfony/yaml": "~3.4|~4.0" 1792 | }, 1793 | "suggest": { 1794 | "psr/log-implementation": "To use logging capability in translator", 1795 | "symfony/config": "", 1796 | "symfony/yaml": "" 1797 | }, 1798 | "type": "library", 1799 | "extra": { 1800 | "branch-alias": { 1801 | "dev-master": "4.1-dev" 1802 | } 1803 | }, 1804 | "autoload": { 1805 | "psr-4": { 1806 | "Symfony\\Component\\Translation\\": "" 1807 | }, 1808 | "exclude-from-classmap": [ 1809 | "/Tests/" 1810 | ] 1811 | }, 1812 | "notification-url": "https://packagist.org/downloads/", 1813 | "license": [ 1814 | "MIT" 1815 | ], 1816 | "authors": [ 1817 | { 1818 | "name": "Fabien Potencier", 1819 | "email": "fabien@symfony.com" 1820 | }, 1821 | { 1822 | "name": "Symfony Community", 1823 | "homepage": "https://symfony.com/contributors" 1824 | } 1825 | ], 1826 | "description": "Symfony Translation Component", 1827 | "homepage": "https://symfony.com", 1828 | "time": "2018-10-28T18:38:52+00:00" 1829 | }, 1830 | { 1831 | "name": "symfony/var-dumper", 1832 | "version": "v4.1.7", 1833 | "source": { 1834 | "type": "git", 1835 | "url": "https://github.com/symfony/var-dumper.git", 1836 | "reference": "60319b45653580b0cdacca499344577d87732f16" 1837 | }, 1838 | "dist": { 1839 | "type": "zip", 1840 | "url": "https://api.github.com/repos/symfony/var-dumper/zipball/60319b45653580b0cdacca499344577d87732f16", 1841 | "reference": "60319b45653580b0cdacca499344577d87732f16", 1842 | "shasum": "" 1843 | }, 1844 | "require": { 1845 | "php": "^7.1.3", 1846 | "symfony/polyfill-mbstring": "~1.0", 1847 | "symfony/polyfill-php72": "~1.5" 1848 | }, 1849 | "conflict": { 1850 | "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", 1851 | "symfony/console": "<3.4" 1852 | }, 1853 | "require-dev": { 1854 | "ext-iconv": "*", 1855 | "symfony/process": "~3.4|~4.0", 1856 | "twig/twig": "~1.34|~2.4" 1857 | }, 1858 | "suggest": { 1859 | "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", 1860 | "ext-intl": "To show region name in time zone dump", 1861 | "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" 1862 | }, 1863 | "bin": [ 1864 | "Resources/bin/var-dump-server" 1865 | ], 1866 | "type": "library", 1867 | "extra": { 1868 | "branch-alias": { 1869 | "dev-master": "4.1-dev" 1870 | } 1871 | }, 1872 | "autoload": { 1873 | "files": [ 1874 | "Resources/functions/dump.php" 1875 | ], 1876 | "psr-4": { 1877 | "Symfony\\Component\\VarDumper\\": "" 1878 | }, 1879 | "exclude-from-classmap": [ 1880 | "/Tests/" 1881 | ] 1882 | }, 1883 | "notification-url": "https://packagist.org/downloads/", 1884 | "license": [ 1885 | "MIT" 1886 | ], 1887 | "authors": [ 1888 | { 1889 | "name": "Nicolas Grekas", 1890 | "email": "p@tchwork.com" 1891 | }, 1892 | { 1893 | "name": "Symfony Community", 1894 | "homepage": "https://symfony.com/contributors" 1895 | } 1896 | ], 1897 | "description": "Symfony mechanism for exploring and dumping PHP variables", 1898 | "homepage": "https://symfony.com", 1899 | "keywords": [ 1900 | "debug", 1901 | "dump" 1902 | ], 1903 | "time": "2018-10-02T16:36:10+00:00" 1904 | }, 1905 | { 1906 | "name": "tijsverkoyen/css-to-inline-styles", 1907 | "version": "2.2.1", 1908 | "source": { 1909 | "type": "git", 1910 | "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", 1911 | "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757" 1912 | }, 1913 | "dist": { 1914 | "type": "zip", 1915 | "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757", 1916 | "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757", 1917 | "shasum": "" 1918 | }, 1919 | "require": { 1920 | "php": "^5.5 || ^7.0", 1921 | "symfony/css-selector": "^2.7 || ^3.0 || ^4.0" 1922 | }, 1923 | "require-dev": { 1924 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" 1925 | }, 1926 | "type": "library", 1927 | "extra": { 1928 | "branch-alias": { 1929 | "dev-master": "2.2.x-dev" 1930 | } 1931 | }, 1932 | "autoload": { 1933 | "psr-4": { 1934 | "TijsVerkoyen\\CssToInlineStyles\\": "src" 1935 | } 1936 | }, 1937 | "notification-url": "https://packagist.org/downloads/", 1938 | "license": [ 1939 | "BSD-3-Clause" 1940 | ], 1941 | "authors": [ 1942 | { 1943 | "name": "Tijs Verkoyen", 1944 | "email": "css_to_inline_styles@verkoyen.eu", 1945 | "role": "Developer" 1946 | } 1947 | ], 1948 | "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", 1949 | "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", 1950 | "time": "2017-11-27T11:13:29+00:00" 1951 | }, 1952 | { 1953 | "name": "vlucas/phpdotenv", 1954 | "version": "v2.5.1", 1955 | "source": { 1956 | "type": "git", 1957 | "url": "https://github.com/vlucas/phpdotenv.git", 1958 | "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e" 1959 | }, 1960 | "dist": { 1961 | "type": "zip", 1962 | "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e", 1963 | "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e", 1964 | "shasum": "" 1965 | }, 1966 | "require": { 1967 | "php": ">=5.3.9" 1968 | }, 1969 | "require-dev": { 1970 | "phpunit/phpunit": "^4.8.35 || ^5.0" 1971 | }, 1972 | "type": "library", 1973 | "extra": { 1974 | "branch-alias": { 1975 | "dev-master": "2.5-dev" 1976 | } 1977 | }, 1978 | "autoload": { 1979 | "psr-4": { 1980 | "Dotenv\\": "src/" 1981 | } 1982 | }, 1983 | "notification-url": "https://packagist.org/downloads/", 1984 | "license": [ 1985 | "BSD-3-Clause" 1986 | ], 1987 | "authors": [ 1988 | { 1989 | "name": "Vance Lucas", 1990 | "email": "vance@vancelucas.com", 1991 | "homepage": "http://www.vancelucas.com" 1992 | } 1993 | ], 1994 | "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", 1995 | "keywords": [ 1996 | "dotenv", 1997 | "env", 1998 | "environment" 1999 | ], 2000 | "time": "2018-07-29T20:33:41+00:00" 2001 | } 2002 | ], 2003 | "packages-dev": [ 2004 | { 2005 | "name": "2bj/phanybar", 2006 | "version": "v1.0.0", 2007 | "source": { 2008 | "type": "git", 2009 | "url": "https://github.com/2bj/Phanybar.git", 2010 | "reference": "88ff671e18f30c2047a34f8cf2465a7ff93c819b" 2011 | }, 2012 | "dist": { 2013 | "type": "zip", 2014 | "url": "https://api.github.com/repos/2bj/Phanybar/zipball/88ff671e18f30c2047a34f8cf2465a7ff93c819b", 2015 | "reference": "88ff671e18f30c2047a34f8cf2465a7ff93c819b", 2016 | "shasum": "" 2017 | }, 2018 | "require": { 2019 | "php": ">=5.3.0" 2020 | }, 2021 | "bin": [ 2022 | "bin/phanybar" 2023 | ], 2024 | "type": "library", 2025 | "autoload": { 2026 | "psr-4": { 2027 | "Bakyt\\": [ 2028 | "src/" 2029 | ] 2030 | } 2031 | }, 2032 | "notification-url": "https://packagist.org/downloads/", 2033 | "license": [ 2034 | "MIT" 2035 | ], 2036 | "authors": [ 2037 | { 2038 | "name": "Bakyt Turgumbaev", 2039 | "email": "dev2bj@gmail.com" 2040 | } 2041 | ], 2042 | "description": "Control AnyBar from your php", 2043 | "keywords": [ 2044 | "anybar", 2045 | "phanybar" 2046 | ], 2047 | "time": "2015-03-06T12:14:28+00:00" 2048 | }, 2049 | { 2050 | "name": "codedungeon/php-cli-colors", 2051 | "version": "1.10.7", 2052 | "source": { 2053 | "type": "git", 2054 | "url": "https://github.com/mikeerickson/php-cli-colors.git", 2055 | "reference": "5649ef76ec0c9ed626e95bf40fdfaf4b8efcf79b" 2056 | }, 2057 | "dist": { 2058 | "type": "zip", 2059 | "url": "https://api.github.com/repos/mikeerickson/php-cli-colors/zipball/5649ef76ec0c9ed626e95bf40fdfaf4b8efcf79b", 2060 | "reference": "5649ef76ec0c9ed626e95bf40fdfaf4b8efcf79b", 2061 | "shasum": "" 2062 | }, 2063 | "require-dev": { 2064 | "phpunit/phpunit": ">=5.2" 2065 | }, 2066 | "type": "library", 2067 | "autoload": { 2068 | "psr-4": { 2069 | "Codedungeon\\PHPCliColors\\": "src/" 2070 | } 2071 | }, 2072 | "notification-url": "https://packagist.org/downloads/", 2073 | "license": [ 2074 | "MIT" 2075 | ], 2076 | "authors": [ 2077 | { 2078 | "name": "Mike Erickson", 2079 | "email": "codedungeon@gmail.com" 2080 | } 2081 | ], 2082 | "description": "PHP Package for using color output in CLI commands", 2083 | "homepage": "https://github.com/mikeerickson/php-cli-colors", 2084 | "keywords": [ 2085 | "color", 2086 | "colors", 2087 | "composer", 2088 | "package", 2089 | "php" 2090 | ], 2091 | "time": "2018-05-17T01:34:14+00:00" 2092 | }, 2093 | { 2094 | "name": "codedungeon/phpunit-result-printer", 2095 | "version": "0.23.3", 2096 | "source": { 2097 | "type": "git", 2098 | "url": "https://github.com/mikeerickson/phpunit-pretty-result-printer.git", 2099 | "reference": "6a993621da02e12e6aba4421fc870f7895eb9ec4" 2100 | }, 2101 | "dist": { 2102 | "type": "zip", 2103 | "url": "https://api.github.com/repos/mikeerickson/phpunit-pretty-result-printer/zipball/6a993621da02e12e6aba4421fc870f7895eb9ec4", 2104 | "reference": "6a993621da02e12e6aba4421fc870f7895eb9ec4", 2105 | "shasum": "" 2106 | }, 2107 | "require": { 2108 | "2bj/phanybar": "^1.0", 2109 | "codedungeon/php-cli-colors": "^1.10.2", 2110 | "hassankhan/config": "^0.11.2", 2111 | "php": "^7.1", 2112 | "symfony/yaml": "^2.7|^3.0|^4.0" 2113 | }, 2114 | "require-dev": { 2115 | "phpunit/phpunit": "7.1.1", 2116 | "spatie/phpunit-watcher": "^1.6" 2117 | }, 2118 | "type": "library", 2119 | "autoload": { 2120 | "psr-4": { 2121 | "Codedungeon\\PHPUnitPrettyResultPrinter\\": "src/" 2122 | } 2123 | }, 2124 | "notification-url": "https://packagist.org/downloads/", 2125 | "license": [ 2126 | "MIT" 2127 | ], 2128 | "authors": [ 2129 | { 2130 | "name": "Mike Erickson", 2131 | "email": "codedungeon@gmail.com" 2132 | } 2133 | ], 2134 | "description": "PHPUnit Pretty Result Printer", 2135 | "keywords": [ 2136 | "TDD", 2137 | "composer", 2138 | "package", 2139 | "phpunit", 2140 | "printer", 2141 | "result-printer", 2142 | "testing" 2143 | ], 2144 | "time": "2018-10-12T16:34:18+00:00" 2145 | }, 2146 | { 2147 | "name": "doctrine/instantiator", 2148 | "version": "1.1.0", 2149 | "source": { 2150 | "type": "git", 2151 | "url": "https://github.com/doctrine/instantiator.git", 2152 | "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda" 2153 | }, 2154 | "dist": { 2155 | "type": "zip", 2156 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", 2157 | "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", 2158 | "shasum": "" 2159 | }, 2160 | "require": { 2161 | "php": "^7.1" 2162 | }, 2163 | "require-dev": { 2164 | "athletic/athletic": "~0.1.8", 2165 | "ext-pdo": "*", 2166 | "ext-phar": "*", 2167 | "phpunit/phpunit": "^6.2.3", 2168 | "squizlabs/php_codesniffer": "^3.0.2" 2169 | }, 2170 | "type": "library", 2171 | "extra": { 2172 | "branch-alias": { 2173 | "dev-master": "1.2.x-dev" 2174 | } 2175 | }, 2176 | "autoload": { 2177 | "psr-4": { 2178 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 2179 | } 2180 | }, 2181 | "notification-url": "https://packagist.org/downloads/", 2182 | "license": [ 2183 | "MIT" 2184 | ], 2185 | "authors": [ 2186 | { 2187 | "name": "Marco Pivetta", 2188 | "email": "ocramius@gmail.com", 2189 | "homepage": "http://ocramius.github.com/" 2190 | } 2191 | ], 2192 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 2193 | "homepage": "https://github.com/doctrine/instantiator", 2194 | "keywords": [ 2195 | "constructor", 2196 | "instantiate" 2197 | ], 2198 | "time": "2017-07-22T11:58:36+00:00" 2199 | }, 2200 | { 2201 | "name": "fzaninotto/faker", 2202 | "version": "v1.8.0", 2203 | "source": { 2204 | "type": "git", 2205 | "url": "https://github.com/fzaninotto/Faker.git", 2206 | "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de" 2207 | }, 2208 | "dist": { 2209 | "type": "zip", 2210 | "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de", 2211 | "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de", 2212 | "shasum": "" 2213 | }, 2214 | "require": { 2215 | "php": "^5.3.3 || ^7.0" 2216 | }, 2217 | "require-dev": { 2218 | "ext-intl": "*", 2219 | "phpunit/phpunit": "^4.8.35 || ^5.7", 2220 | "squizlabs/php_codesniffer": "^1.5" 2221 | }, 2222 | "type": "library", 2223 | "extra": { 2224 | "branch-alias": { 2225 | "dev-master": "1.8-dev" 2226 | } 2227 | }, 2228 | "autoload": { 2229 | "psr-4": { 2230 | "Faker\\": "src/Faker/" 2231 | } 2232 | }, 2233 | "notification-url": "https://packagist.org/downloads/", 2234 | "license": [ 2235 | "MIT" 2236 | ], 2237 | "authors": [ 2238 | { 2239 | "name": "François Zaninotto" 2240 | } 2241 | ], 2242 | "description": "Faker is a PHP library that generates fake data for you.", 2243 | "keywords": [ 2244 | "data", 2245 | "faker", 2246 | "fixtures" 2247 | ], 2248 | "time": "2018-07-12T10:23:15+00:00" 2249 | }, 2250 | { 2251 | "name": "graham-campbell/testbench", 2252 | "version": "v5.1.0", 2253 | "source": { 2254 | "type": "git", 2255 | "url": "https://github.com/GrahamCampbell/Laravel-TestBench.git", 2256 | "reference": "63c50e7592b10f841dddca5d8d5b933c1256960f" 2257 | }, 2258 | "dist": { 2259 | "type": "zip", 2260 | "url": "https://api.github.com/repos/GrahamCampbell/Laravel-TestBench/zipball/63c50e7592b10f841dddca5d8d5b933c1256960f", 2261 | "reference": "63c50e7592b10f841dddca5d8d5b933c1256960f", 2262 | "shasum": "" 2263 | }, 2264 | "require": { 2265 | "graham-campbell/testbench-core": "^3.0", 2266 | "orchestra/testbench": "3.5.*|3.6.*|3.7.*", 2267 | "php": "^7.1.3" 2268 | }, 2269 | "require-dev": { 2270 | "graham-campbell/analyzer": "^2.1", 2271 | "mockery/mockery": "^1.0", 2272 | "phpunit/phpunit": "^6.5|^7.0" 2273 | }, 2274 | "type": "library", 2275 | "extra": { 2276 | "branch-alias": { 2277 | "dev-master": "5.1-dev" 2278 | } 2279 | }, 2280 | "autoload": { 2281 | "psr-4": { 2282 | "GrahamCampbell\\TestBench\\": "src/" 2283 | } 2284 | }, 2285 | "notification-url": "https://packagist.org/downloads/", 2286 | "license": [ 2287 | "MIT" 2288 | ], 2289 | "authors": [ 2290 | { 2291 | "name": "Graham Campbell", 2292 | "email": "graham@alt-three.com" 2293 | } 2294 | ], 2295 | "description": "TestBench Provides Some Testing Functionality For Laravel 5", 2296 | "keywords": [ 2297 | "Graham Campbell", 2298 | "GrahamCampbell", 2299 | "Laravel TestBench", 2300 | "Laravel-TestBench", 2301 | "TestBench", 2302 | "framework", 2303 | "laravel", 2304 | "testing" 2305 | ], 2306 | "time": "2018-08-23T10:35:26+00:00" 2307 | }, 2308 | { 2309 | "name": "graham-campbell/testbench-core", 2310 | "version": "v3.0.0", 2311 | "source": { 2312 | "type": "git", 2313 | "url": "https://github.com/GrahamCampbell/Laravel-TestBench-Core.git", 2314 | "reference": "2f1fcb1871aa490fd46efbfcfd25f715a371e800" 2315 | }, 2316 | "dist": { 2317 | "type": "zip", 2318 | "url": "https://api.github.com/repos/GrahamCampbell/Laravel-TestBench-Core/zipball/2f1fcb1871aa490fd46efbfcfd25f715a371e800", 2319 | "reference": "2f1fcb1871aa490fd46efbfcfd25f715a371e800", 2320 | "shasum": "" 2321 | }, 2322 | "require": { 2323 | "php": "^7.0" 2324 | }, 2325 | "require-dev": { 2326 | "graham-campbell/analyzer": "^2.0", 2327 | "phpunit/phpunit": "^6.5" 2328 | }, 2329 | "suggest": { 2330 | "illuminate/support": "Required to use the laravel trait.", 2331 | "mockery/mockery": "Required to use the mockery trait.", 2332 | "phpunit/phpunit": "Required to use the most of the features." 2333 | }, 2334 | "type": "library", 2335 | "extra": { 2336 | "branch-alias": { 2337 | "dev-master": "3.0-dev" 2338 | } 2339 | }, 2340 | "autoload": { 2341 | "psr-4": { 2342 | "GrahamCampbell\\TestBenchCore\\": "src/" 2343 | } 2344 | }, 2345 | "notification-url": "https://packagist.org/downloads/", 2346 | "license": [ 2347 | "MIT" 2348 | ], 2349 | "authors": [ 2350 | { 2351 | "name": "Graham Campbell", 2352 | "email": "graham@alt-three.com" 2353 | } 2354 | ], 2355 | "description": "TestBench Core Provides Some Testing Functionality For Laravel 5", 2356 | "keywords": [ 2357 | "Graham Campbell", 2358 | "GrahamCampbell", 2359 | "Laravel TestBench Core", 2360 | "Laravel-TestBench-Core", 2361 | "TestBench", 2362 | "framework", 2363 | "laravel", 2364 | "testbench-core", 2365 | "testing" 2366 | ], 2367 | "time": "2018-01-02T16:16:42+00:00" 2368 | }, 2369 | { 2370 | "name": "hamcrest/hamcrest-php", 2371 | "version": "v2.0.0", 2372 | "source": { 2373 | "type": "git", 2374 | "url": "https://github.com/hamcrest/hamcrest-php.git", 2375 | "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad" 2376 | }, 2377 | "dist": { 2378 | "type": "zip", 2379 | "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad", 2380 | "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad", 2381 | "shasum": "" 2382 | }, 2383 | "require": { 2384 | "php": "^5.3|^7.0" 2385 | }, 2386 | "replace": { 2387 | "cordoval/hamcrest-php": "*", 2388 | "davedevelopment/hamcrest-php": "*", 2389 | "kodova/hamcrest-php": "*" 2390 | }, 2391 | "require-dev": { 2392 | "phpunit/php-file-iterator": "1.3.3", 2393 | "phpunit/phpunit": "~4.0", 2394 | "satooshi/php-coveralls": "^1.0" 2395 | }, 2396 | "type": "library", 2397 | "extra": { 2398 | "branch-alias": { 2399 | "dev-master": "2.0-dev" 2400 | } 2401 | }, 2402 | "autoload": { 2403 | "classmap": [ 2404 | "hamcrest" 2405 | ] 2406 | }, 2407 | "notification-url": "https://packagist.org/downloads/", 2408 | "license": [ 2409 | "BSD" 2410 | ], 2411 | "description": "This is the PHP port of Hamcrest Matchers", 2412 | "keywords": [ 2413 | "test" 2414 | ], 2415 | "time": "2016-01-20T08:20:44+00:00" 2416 | }, 2417 | { 2418 | "name": "hassankhan/config", 2419 | "version": "0.11.2", 2420 | "source": { 2421 | "type": "git", 2422 | "url": "https://github.com/hassankhan/config.git", 2423 | "reference": "7fbc236c32dc6cc53a7b00992a2739cf8b41c085" 2424 | }, 2425 | "dist": { 2426 | "type": "zip", 2427 | "url": "https://api.github.com/repos/hassankhan/config/zipball/7fbc236c32dc6cc53a7b00992a2739cf8b41c085", 2428 | "reference": "7fbc236c32dc6cc53a7b00992a2739cf8b41c085", 2429 | "shasum": "" 2430 | }, 2431 | "require": { 2432 | "php": ">=5.3.0" 2433 | }, 2434 | "require-dev": { 2435 | "phpunit/phpunit": "~4.0", 2436 | "scrutinizer/ocular": "~1.1", 2437 | "squizlabs/php_codesniffer": "~2.2" 2438 | }, 2439 | "suggest": { 2440 | "symfony/yaml": "~2.5" 2441 | }, 2442 | "type": "library", 2443 | "autoload": { 2444 | "psr-4": { 2445 | "Noodlehaus\\": "src" 2446 | } 2447 | }, 2448 | "notification-url": "https://packagist.org/downloads/", 2449 | "license": [ 2450 | "MIT" 2451 | ], 2452 | "authors": [ 2453 | { 2454 | "name": "Hassan Khan", 2455 | "homepage": "http://hassankhan.me/", 2456 | "role": "Developer" 2457 | } 2458 | ], 2459 | "description": "Lightweight configuration file loader that supports PHP, INI, XML, JSON, and YAML files", 2460 | "homepage": "http://hassankhan.me/config/", 2461 | "keywords": [ 2462 | "config", 2463 | "configuration", 2464 | "ini", 2465 | "json", 2466 | "microphp", 2467 | "unframework", 2468 | "xml", 2469 | "yaml", 2470 | "yml" 2471 | ], 2472 | "time": "2017-11-07T22:49:43+00:00" 2473 | }, 2474 | { 2475 | "name": "mockery/mockery", 2476 | "version": "1.2.0", 2477 | "source": { 2478 | "type": "git", 2479 | "url": "https://github.com/mockery/mockery.git", 2480 | "reference": "100633629bf76d57430b86b7098cd6beb996a35a" 2481 | }, 2482 | "dist": { 2483 | "type": "zip", 2484 | "url": "https://api.github.com/repos/mockery/mockery/zipball/100633629bf76d57430b86b7098cd6beb996a35a", 2485 | "reference": "100633629bf76d57430b86b7098cd6beb996a35a", 2486 | "shasum": "" 2487 | }, 2488 | "require": { 2489 | "hamcrest/hamcrest-php": "~2.0", 2490 | "lib-pcre": ">=7.0", 2491 | "php": ">=5.6.0" 2492 | }, 2493 | "require-dev": { 2494 | "phpunit/phpunit": "~5.7.10|~6.5|~7.0" 2495 | }, 2496 | "type": "library", 2497 | "extra": { 2498 | "branch-alias": { 2499 | "dev-master": "1.0.x-dev" 2500 | } 2501 | }, 2502 | "autoload": { 2503 | "psr-0": { 2504 | "Mockery": "library/" 2505 | } 2506 | }, 2507 | "notification-url": "https://packagist.org/downloads/", 2508 | "license": [ 2509 | "BSD-3-Clause" 2510 | ], 2511 | "authors": [ 2512 | { 2513 | "name": "Pádraic Brady", 2514 | "email": "padraic.brady@gmail.com", 2515 | "homepage": "http://blog.astrumfutura.com" 2516 | }, 2517 | { 2518 | "name": "Dave Marshall", 2519 | "email": "dave.marshall@atstsolutions.co.uk", 2520 | "homepage": "http://davedevelopment.co.uk" 2521 | } 2522 | ], 2523 | "description": "Mockery is a simple yet flexible PHP mock object framework", 2524 | "homepage": "https://github.com/mockery/mockery", 2525 | "keywords": [ 2526 | "BDD", 2527 | "TDD", 2528 | "library", 2529 | "mock", 2530 | "mock objects", 2531 | "mockery", 2532 | "stub", 2533 | "test", 2534 | "test double", 2535 | "testing" 2536 | ], 2537 | "time": "2018-10-02T21:52:37+00:00" 2538 | }, 2539 | { 2540 | "name": "myclabs/deep-copy", 2541 | "version": "1.8.1", 2542 | "source": { 2543 | "type": "git", 2544 | "url": "https://github.com/myclabs/DeepCopy.git", 2545 | "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8" 2546 | }, 2547 | "dist": { 2548 | "type": "zip", 2549 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8", 2550 | "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8", 2551 | "shasum": "" 2552 | }, 2553 | "require": { 2554 | "php": "^7.1" 2555 | }, 2556 | "replace": { 2557 | "myclabs/deep-copy": "self.version" 2558 | }, 2559 | "require-dev": { 2560 | "doctrine/collections": "^1.0", 2561 | "doctrine/common": "^2.6", 2562 | "phpunit/phpunit": "^7.1" 2563 | }, 2564 | "type": "library", 2565 | "autoload": { 2566 | "psr-4": { 2567 | "DeepCopy\\": "src/DeepCopy/" 2568 | }, 2569 | "files": [ 2570 | "src/DeepCopy/deep_copy.php" 2571 | ] 2572 | }, 2573 | "notification-url": "https://packagist.org/downloads/", 2574 | "license": [ 2575 | "MIT" 2576 | ], 2577 | "description": "Create deep copies (clones) of your objects", 2578 | "keywords": [ 2579 | "clone", 2580 | "copy", 2581 | "duplicate", 2582 | "object", 2583 | "object graph" 2584 | ], 2585 | "time": "2018-06-11T23:09:50+00:00" 2586 | }, 2587 | { 2588 | "name": "orchestra/testbench", 2589 | "version": "v3.7.4", 2590 | "source": { 2591 | "type": "git", 2592 | "url": "https://github.com/orchestral/testbench.git", 2593 | "reference": "c569608fcecc9ee044f2485d58c1ac5fab26ee2f" 2594 | }, 2595 | "dist": { 2596 | "type": "zip", 2597 | "url": "https://api.github.com/repos/orchestral/testbench/zipball/c569608fcecc9ee044f2485d58c1ac5fab26ee2f", 2598 | "reference": "c569608fcecc9ee044f2485d58c1ac5fab26ee2f", 2599 | "shasum": "" 2600 | }, 2601 | "require": { 2602 | "laravel/framework": "~5.7.4", 2603 | "orchestra/testbench-core": "~3.7.5", 2604 | "php": ">=7.1", 2605 | "phpunit/phpunit": "^7.0" 2606 | }, 2607 | "require-dev": { 2608 | "mockery/mockery": "^1.0" 2609 | }, 2610 | "type": "library", 2611 | "extra": { 2612 | "branch-alias": { 2613 | "dev-master": "3.7-dev" 2614 | } 2615 | }, 2616 | "notification-url": "https://packagist.org/downloads/", 2617 | "license": [ 2618 | "MIT" 2619 | ], 2620 | "authors": [ 2621 | { 2622 | "name": "Mior Muhammad Zaki", 2623 | "email": "crynobone@gmail.com", 2624 | "homepage": "https://github.com/crynobone" 2625 | } 2626 | ], 2627 | "description": "Laravel Testing Helper for Packages Development", 2628 | "homepage": "http://orchestraplatform.com/docs/latest/components/testbench/", 2629 | "keywords": [ 2630 | "BDD", 2631 | "TDD", 2632 | "laravel", 2633 | "orchestra-platform", 2634 | "orchestral", 2635 | "testing" 2636 | ], 2637 | "time": "2018-10-07T02:44:38+00:00" 2638 | }, 2639 | { 2640 | "name": "orchestra/testbench-core", 2641 | "version": "v3.7.5", 2642 | "source": { 2643 | "type": "git", 2644 | "url": "https://github.com/orchestral/testbench-core.git", 2645 | "reference": "9ef7319cc288a613e38f456f0349907dfeb2587f" 2646 | }, 2647 | "dist": { 2648 | "type": "zip", 2649 | "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/9ef7319cc288a613e38f456f0349907dfeb2587f", 2650 | "reference": "9ef7319cc288a613e38f456f0349907dfeb2587f", 2651 | "shasum": "" 2652 | }, 2653 | "require": { 2654 | "fzaninotto/faker": "^1.4", 2655 | "php": ">=7.1" 2656 | }, 2657 | "require-dev": { 2658 | "laravel/framework": "~5.7.4", 2659 | "mockery/mockery": "^1.0", 2660 | "phpunit/phpunit": "^7.0" 2661 | }, 2662 | "suggest": { 2663 | "laravel/framework": "Required for testing (~5.7.4).", 2664 | "mockery/mockery": "Allow to use Mockery for testing (^1.0).", 2665 | "orchestra/testbench-browser-kit": "Allow to use legacy Laravel BrowserKit for testing (~3.7).", 2666 | "orchestra/testbench-dusk": "Allow to use Laravel Dusk for testing (~3.7).", 2667 | "phpunit/phpunit": "Allow to use PHPUnit for testing (^7.0)." 2668 | }, 2669 | "type": "library", 2670 | "extra": { 2671 | "branch-alias": { 2672 | "dev-master": "3.7-dev" 2673 | } 2674 | }, 2675 | "autoload": { 2676 | "psr-4": { 2677 | "Orchestra\\Testbench\\": "src/" 2678 | } 2679 | }, 2680 | "notification-url": "https://packagist.org/downloads/", 2681 | "license": [ 2682 | "MIT" 2683 | ], 2684 | "authors": [ 2685 | { 2686 | "name": "Mior Muhammad Zaki", 2687 | "email": "crynobone@gmail.com", 2688 | "homepage": "https://github.com/crynobone" 2689 | } 2690 | ], 2691 | "description": "Testing Helper for Laravel Development", 2692 | "homepage": "http://orchestraplatform.com/docs/latest/components/testbench/", 2693 | "keywords": [ 2694 | "BDD", 2695 | "TDD", 2696 | "laravel", 2697 | "orchestra-platform", 2698 | "orchestral", 2699 | "testing" 2700 | ], 2701 | "time": "2018-10-07T01:22:19+00:00" 2702 | }, 2703 | { 2704 | "name": "phar-io/manifest", 2705 | "version": "1.0.3", 2706 | "source": { 2707 | "type": "git", 2708 | "url": "https://github.com/phar-io/manifest.git", 2709 | "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" 2710 | }, 2711 | "dist": { 2712 | "type": "zip", 2713 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", 2714 | "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", 2715 | "shasum": "" 2716 | }, 2717 | "require": { 2718 | "ext-dom": "*", 2719 | "ext-phar": "*", 2720 | "phar-io/version": "^2.0", 2721 | "php": "^5.6 || ^7.0" 2722 | }, 2723 | "type": "library", 2724 | "extra": { 2725 | "branch-alias": { 2726 | "dev-master": "1.0.x-dev" 2727 | } 2728 | }, 2729 | "autoload": { 2730 | "classmap": [ 2731 | "src/" 2732 | ] 2733 | }, 2734 | "notification-url": "https://packagist.org/downloads/", 2735 | "license": [ 2736 | "BSD-3-Clause" 2737 | ], 2738 | "authors": [ 2739 | { 2740 | "name": "Arne Blankerts", 2741 | "email": "arne@blankerts.de", 2742 | "role": "Developer" 2743 | }, 2744 | { 2745 | "name": "Sebastian Heuer", 2746 | "email": "sebastian@phpeople.de", 2747 | "role": "Developer" 2748 | }, 2749 | { 2750 | "name": "Sebastian Bergmann", 2751 | "email": "sebastian@phpunit.de", 2752 | "role": "Developer" 2753 | } 2754 | ], 2755 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", 2756 | "time": "2018-07-08T19:23:20+00:00" 2757 | }, 2758 | { 2759 | "name": "phar-io/version", 2760 | "version": "2.0.1", 2761 | "source": { 2762 | "type": "git", 2763 | "url": "https://github.com/phar-io/version.git", 2764 | "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" 2765 | }, 2766 | "dist": { 2767 | "type": "zip", 2768 | "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", 2769 | "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", 2770 | "shasum": "" 2771 | }, 2772 | "require": { 2773 | "php": "^5.6 || ^7.0" 2774 | }, 2775 | "type": "library", 2776 | "autoload": { 2777 | "classmap": [ 2778 | "src/" 2779 | ] 2780 | }, 2781 | "notification-url": "https://packagist.org/downloads/", 2782 | "license": [ 2783 | "BSD-3-Clause" 2784 | ], 2785 | "authors": [ 2786 | { 2787 | "name": "Arne Blankerts", 2788 | "email": "arne@blankerts.de", 2789 | "role": "Developer" 2790 | }, 2791 | { 2792 | "name": "Sebastian Heuer", 2793 | "email": "sebastian@phpeople.de", 2794 | "role": "Developer" 2795 | }, 2796 | { 2797 | "name": "Sebastian Bergmann", 2798 | "email": "sebastian@phpunit.de", 2799 | "role": "Developer" 2800 | } 2801 | ], 2802 | "description": "Library for handling version information and constraints", 2803 | "time": "2018-07-08T19:19:57+00:00" 2804 | }, 2805 | { 2806 | "name": "phpdocumentor/reflection-common", 2807 | "version": "1.0.1", 2808 | "source": { 2809 | "type": "git", 2810 | "url": "https://github.com/phpDocumentor/ReflectionCommon.git", 2811 | "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" 2812 | }, 2813 | "dist": { 2814 | "type": "zip", 2815 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", 2816 | "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", 2817 | "shasum": "" 2818 | }, 2819 | "require": { 2820 | "php": ">=5.5" 2821 | }, 2822 | "require-dev": { 2823 | "phpunit/phpunit": "^4.6" 2824 | }, 2825 | "type": "library", 2826 | "extra": { 2827 | "branch-alias": { 2828 | "dev-master": "1.0.x-dev" 2829 | } 2830 | }, 2831 | "autoload": { 2832 | "psr-4": { 2833 | "phpDocumentor\\Reflection\\": [ 2834 | "src" 2835 | ] 2836 | } 2837 | }, 2838 | "notification-url": "https://packagist.org/downloads/", 2839 | "license": [ 2840 | "MIT" 2841 | ], 2842 | "authors": [ 2843 | { 2844 | "name": "Jaap van Otterdijk", 2845 | "email": "opensource@ijaap.nl" 2846 | } 2847 | ], 2848 | "description": "Common reflection classes used by phpdocumentor to reflect the code structure", 2849 | "homepage": "http://www.phpdoc.org", 2850 | "keywords": [ 2851 | "FQSEN", 2852 | "phpDocumentor", 2853 | "phpdoc", 2854 | "reflection", 2855 | "static analysis" 2856 | ], 2857 | "time": "2017-09-11T18:02:19+00:00" 2858 | }, 2859 | { 2860 | "name": "phpdocumentor/reflection-docblock", 2861 | "version": "4.3.0", 2862 | "source": { 2863 | "type": "git", 2864 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", 2865 | "reference": "94fd0001232e47129dd3504189fa1c7225010d08" 2866 | }, 2867 | "dist": { 2868 | "type": "zip", 2869 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", 2870 | "reference": "94fd0001232e47129dd3504189fa1c7225010d08", 2871 | "shasum": "" 2872 | }, 2873 | "require": { 2874 | "php": "^7.0", 2875 | "phpdocumentor/reflection-common": "^1.0.0", 2876 | "phpdocumentor/type-resolver": "^0.4.0", 2877 | "webmozart/assert": "^1.0" 2878 | }, 2879 | "require-dev": { 2880 | "doctrine/instantiator": "~1.0.5", 2881 | "mockery/mockery": "^1.0", 2882 | "phpunit/phpunit": "^6.4" 2883 | }, 2884 | "type": "library", 2885 | "extra": { 2886 | "branch-alias": { 2887 | "dev-master": "4.x-dev" 2888 | } 2889 | }, 2890 | "autoload": { 2891 | "psr-4": { 2892 | "phpDocumentor\\Reflection\\": [ 2893 | "src/" 2894 | ] 2895 | } 2896 | }, 2897 | "notification-url": "https://packagist.org/downloads/", 2898 | "license": [ 2899 | "MIT" 2900 | ], 2901 | "authors": [ 2902 | { 2903 | "name": "Mike van Riel", 2904 | "email": "me@mikevanriel.com" 2905 | } 2906 | ], 2907 | "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", 2908 | "time": "2017-11-30T07:14:17+00:00" 2909 | }, 2910 | { 2911 | "name": "phpdocumentor/type-resolver", 2912 | "version": "0.4.0", 2913 | "source": { 2914 | "type": "git", 2915 | "url": "https://github.com/phpDocumentor/TypeResolver.git", 2916 | "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" 2917 | }, 2918 | "dist": { 2919 | "type": "zip", 2920 | "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", 2921 | "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", 2922 | "shasum": "" 2923 | }, 2924 | "require": { 2925 | "php": "^5.5 || ^7.0", 2926 | "phpdocumentor/reflection-common": "^1.0" 2927 | }, 2928 | "require-dev": { 2929 | "mockery/mockery": "^0.9.4", 2930 | "phpunit/phpunit": "^5.2||^4.8.24" 2931 | }, 2932 | "type": "library", 2933 | "extra": { 2934 | "branch-alias": { 2935 | "dev-master": "1.0.x-dev" 2936 | } 2937 | }, 2938 | "autoload": { 2939 | "psr-4": { 2940 | "phpDocumentor\\Reflection\\": [ 2941 | "src/" 2942 | ] 2943 | } 2944 | }, 2945 | "notification-url": "https://packagist.org/downloads/", 2946 | "license": [ 2947 | "MIT" 2948 | ], 2949 | "authors": [ 2950 | { 2951 | "name": "Mike van Riel", 2952 | "email": "me@mikevanriel.com" 2953 | } 2954 | ], 2955 | "time": "2017-07-14T14:27:02+00:00" 2956 | }, 2957 | { 2958 | "name": "phpspec/prophecy", 2959 | "version": "1.8.0", 2960 | "source": { 2961 | "type": "git", 2962 | "url": "https://github.com/phpspec/prophecy.git", 2963 | "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06" 2964 | }, 2965 | "dist": { 2966 | "type": "zip", 2967 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06", 2968 | "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06", 2969 | "shasum": "" 2970 | }, 2971 | "require": { 2972 | "doctrine/instantiator": "^1.0.2", 2973 | "php": "^5.3|^7.0", 2974 | "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", 2975 | "sebastian/comparator": "^1.1|^2.0|^3.0", 2976 | "sebastian/recursion-context": "^1.0|^2.0|^3.0" 2977 | }, 2978 | "require-dev": { 2979 | "phpspec/phpspec": "^2.5|^3.2", 2980 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" 2981 | }, 2982 | "type": "library", 2983 | "extra": { 2984 | "branch-alias": { 2985 | "dev-master": "1.8.x-dev" 2986 | } 2987 | }, 2988 | "autoload": { 2989 | "psr-0": { 2990 | "Prophecy\\": "src/" 2991 | } 2992 | }, 2993 | "notification-url": "https://packagist.org/downloads/", 2994 | "license": [ 2995 | "MIT" 2996 | ], 2997 | "authors": [ 2998 | { 2999 | "name": "Konstantin Kudryashov", 3000 | "email": "ever.zet@gmail.com", 3001 | "homepage": "http://everzet.com" 3002 | }, 3003 | { 3004 | "name": "Marcello Duarte", 3005 | "email": "marcello.duarte@gmail.com" 3006 | } 3007 | ], 3008 | "description": "Highly opinionated mocking framework for PHP 5.3+", 3009 | "homepage": "https://github.com/phpspec/prophecy", 3010 | "keywords": [ 3011 | "Double", 3012 | "Dummy", 3013 | "fake", 3014 | "mock", 3015 | "spy", 3016 | "stub" 3017 | ], 3018 | "time": "2018-08-05T17:53:17+00:00" 3019 | }, 3020 | { 3021 | "name": "phpunit/php-code-coverage", 3022 | "version": "6.1.4", 3023 | "source": { 3024 | "type": "git", 3025 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 3026 | "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d" 3027 | }, 3028 | "dist": { 3029 | "type": "zip", 3030 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", 3031 | "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", 3032 | "shasum": "" 3033 | }, 3034 | "require": { 3035 | "ext-dom": "*", 3036 | "ext-xmlwriter": "*", 3037 | "php": "^7.1", 3038 | "phpunit/php-file-iterator": "^2.0", 3039 | "phpunit/php-text-template": "^1.2.1", 3040 | "phpunit/php-token-stream": "^3.0", 3041 | "sebastian/code-unit-reverse-lookup": "^1.0.1", 3042 | "sebastian/environment": "^3.1 || ^4.0", 3043 | "sebastian/version": "^2.0.1", 3044 | "theseer/tokenizer": "^1.1" 3045 | }, 3046 | "require-dev": { 3047 | "phpunit/phpunit": "^7.0" 3048 | }, 3049 | "suggest": { 3050 | "ext-xdebug": "^2.6.0" 3051 | }, 3052 | "type": "library", 3053 | "extra": { 3054 | "branch-alias": { 3055 | "dev-master": "6.1-dev" 3056 | } 3057 | }, 3058 | "autoload": { 3059 | "classmap": [ 3060 | "src/" 3061 | ] 3062 | }, 3063 | "notification-url": "https://packagist.org/downloads/", 3064 | "license": [ 3065 | "BSD-3-Clause" 3066 | ], 3067 | "authors": [ 3068 | { 3069 | "name": "Sebastian Bergmann", 3070 | "email": "sebastian@phpunit.de", 3071 | "role": "lead" 3072 | } 3073 | ], 3074 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 3075 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 3076 | "keywords": [ 3077 | "coverage", 3078 | "testing", 3079 | "xunit" 3080 | ], 3081 | "time": "2018-10-31T16:06:48+00:00" 3082 | }, 3083 | { 3084 | "name": "phpunit/php-file-iterator", 3085 | "version": "2.0.2", 3086 | "source": { 3087 | "type": "git", 3088 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 3089 | "reference": "050bedf145a257b1ff02746c31894800e5122946" 3090 | }, 3091 | "dist": { 3092 | "type": "zip", 3093 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", 3094 | "reference": "050bedf145a257b1ff02746c31894800e5122946", 3095 | "shasum": "" 3096 | }, 3097 | "require": { 3098 | "php": "^7.1" 3099 | }, 3100 | "require-dev": { 3101 | "phpunit/phpunit": "^7.1" 3102 | }, 3103 | "type": "library", 3104 | "extra": { 3105 | "branch-alias": { 3106 | "dev-master": "2.0.x-dev" 3107 | } 3108 | }, 3109 | "autoload": { 3110 | "classmap": [ 3111 | "src/" 3112 | ] 3113 | }, 3114 | "notification-url": "https://packagist.org/downloads/", 3115 | "license": [ 3116 | "BSD-3-Clause" 3117 | ], 3118 | "authors": [ 3119 | { 3120 | "name": "Sebastian Bergmann", 3121 | "email": "sebastian@phpunit.de", 3122 | "role": "lead" 3123 | } 3124 | ], 3125 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 3126 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 3127 | "keywords": [ 3128 | "filesystem", 3129 | "iterator" 3130 | ], 3131 | "time": "2018-09-13T20:33:42+00:00" 3132 | }, 3133 | { 3134 | "name": "phpunit/php-text-template", 3135 | "version": "1.2.1", 3136 | "source": { 3137 | "type": "git", 3138 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 3139 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" 3140 | }, 3141 | "dist": { 3142 | "type": "zip", 3143 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 3144 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 3145 | "shasum": "" 3146 | }, 3147 | "require": { 3148 | "php": ">=5.3.3" 3149 | }, 3150 | "type": "library", 3151 | "autoload": { 3152 | "classmap": [ 3153 | "src/" 3154 | ] 3155 | }, 3156 | "notification-url": "https://packagist.org/downloads/", 3157 | "license": [ 3158 | "BSD-3-Clause" 3159 | ], 3160 | "authors": [ 3161 | { 3162 | "name": "Sebastian Bergmann", 3163 | "email": "sebastian@phpunit.de", 3164 | "role": "lead" 3165 | } 3166 | ], 3167 | "description": "Simple template engine.", 3168 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 3169 | "keywords": [ 3170 | "template" 3171 | ], 3172 | "time": "2015-06-21T13:50:34+00:00" 3173 | }, 3174 | { 3175 | "name": "phpunit/php-timer", 3176 | "version": "2.0.0", 3177 | "source": { 3178 | "type": "git", 3179 | "url": "https://github.com/sebastianbergmann/php-timer.git", 3180 | "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f" 3181 | }, 3182 | "dist": { 3183 | "type": "zip", 3184 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f", 3185 | "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f", 3186 | "shasum": "" 3187 | }, 3188 | "require": { 3189 | "php": "^7.1" 3190 | }, 3191 | "require-dev": { 3192 | "phpunit/phpunit": "^7.0" 3193 | }, 3194 | "type": "library", 3195 | "extra": { 3196 | "branch-alias": { 3197 | "dev-master": "2.0-dev" 3198 | } 3199 | }, 3200 | "autoload": { 3201 | "classmap": [ 3202 | "src/" 3203 | ] 3204 | }, 3205 | "notification-url": "https://packagist.org/downloads/", 3206 | "license": [ 3207 | "BSD-3-Clause" 3208 | ], 3209 | "authors": [ 3210 | { 3211 | "name": "Sebastian Bergmann", 3212 | "email": "sebastian@phpunit.de", 3213 | "role": "lead" 3214 | } 3215 | ], 3216 | "description": "Utility class for timing", 3217 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 3218 | "keywords": [ 3219 | "timer" 3220 | ], 3221 | "time": "2018-02-01T13:07:23+00:00" 3222 | }, 3223 | { 3224 | "name": "phpunit/php-token-stream", 3225 | "version": "3.0.1", 3226 | "source": { 3227 | "type": "git", 3228 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", 3229 | "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18" 3230 | }, 3231 | "dist": { 3232 | "type": "zip", 3233 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18", 3234 | "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18", 3235 | "shasum": "" 3236 | }, 3237 | "require": { 3238 | "ext-tokenizer": "*", 3239 | "php": "^7.1" 3240 | }, 3241 | "require-dev": { 3242 | "phpunit/phpunit": "^7.0" 3243 | }, 3244 | "type": "library", 3245 | "extra": { 3246 | "branch-alias": { 3247 | "dev-master": "3.0-dev" 3248 | } 3249 | }, 3250 | "autoload": { 3251 | "classmap": [ 3252 | "src/" 3253 | ] 3254 | }, 3255 | "notification-url": "https://packagist.org/downloads/", 3256 | "license": [ 3257 | "BSD-3-Clause" 3258 | ], 3259 | "authors": [ 3260 | { 3261 | "name": "Sebastian Bergmann", 3262 | "email": "sebastian@phpunit.de" 3263 | } 3264 | ], 3265 | "description": "Wrapper around PHP's tokenizer extension.", 3266 | "homepage": "https://github.com/sebastianbergmann/php-token-stream/", 3267 | "keywords": [ 3268 | "tokenizer" 3269 | ], 3270 | "time": "2018-10-30T05:52:18+00:00" 3271 | }, 3272 | { 3273 | "name": "phpunit/phpunit", 3274 | "version": "7.4.3", 3275 | "source": { 3276 | "type": "git", 3277 | "url": "https://github.com/sebastianbergmann/phpunit.git", 3278 | "reference": "c151651fb6ed264038d486ea262e243af72e5e64" 3279 | }, 3280 | "dist": { 3281 | "type": "zip", 3282 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c151651fb6ed264038d486ea262e243af72e5e64", 3283 | "reference": "c151651fb6ed264038d486ea262e243af72e5e64", 3284 | "shasum": "" 3285 | }, 3286 | "require": { 3287 | "doctrine/instantiator": "^1.1", 3288 | "ext-dom": "*", 3289 | "ext-json": "*", 3290 | "ext-libxml": "*", 3291 | "ext-mbstring": "*", 3292 | "ext-xml": "*", 3293 | "myclabs/deep-copy": "^1.7", 3294 | "phar-io/manifest": "^1.0.2", 3295 | "phar-io/version": "^2.0", 3296 | "php": "^7.1", 3297 | "phpspec/prophecy": "^1.7", 3298 | "phpunit/php-code-coverage": "^6.0.7", 3299 | "phpunit/php-file-iterator": "^2.0.1", 3300 | "phpunit/php-text-template": "^1.2.1", 3301 | "phpunit/php-timer": "^2.0", 3302 | "sebastian/comparator": "^3.0", 3303 | "sebastian/diff": "^3.0", 3304 | "sebastian/environment": "^3.1 || ^4.0", 3305 | "sebastian/exporter": "^3.1", 3306 | "sebastian/global-state": "^2.0", 3307 | "sebastian/object-enumerator": "^3.0.3", 3308 | "sebastian/resource-operations": "^2.0", 3309 | "sebastian/version": "^2.0.1" 3310 | }, 3311 | "conflict": { 3312 | "phpunit/phpunit-mock-objects": "*" 3313 | }, 3314 | "require-dev": { 3315 | "ext-pdo": "*" 3316 | }, 3317 | "suggest": { 3318 | "ext-soap": "*", 3319 | "ext-xdebug": "*", 3320 | "phpunit/php-invoker": "^2.0" 3321 | }, 3322 | "bin": [ 3323 | "phpunit" 3324 | ], 3325 | "type": "library", 3326 | "extra": { 3327 | "branch-alias": { 3328 | "dev-master": "7.4-dev" 3329 | } 3330 | }, 3331 | "autoload": { 3332 | "classmap": [ 3333 | "src/" 3334 | ] 3335 | }, 3336 | "notification-url": "https://packagist.org/downloads/", 3337 | "license": [ 3338 | "BSD-3-Clause" 3339 | ], 3340 | "authors": [ 3341 | { 3342 | "name": "Sebastian Bergmann", 3343 | "email": "sebastian@phpunit.de", 3344 | "role": "lead" 3345 | } 3346 | ], 3347 | "description": "The PHP Unit Testing framework.", 3348 | "homepage": "https://phpunit.de/", 3349 | "keywords": [ 3350 | "phpunit", 3351 | "testing", 3352 | "xunit" 3353 | ], 3354 | "time": "2018-10-23T05:57:41+00:00" 3355 | }, 3356 | { 3357 | "name": "sebastian/code-unit-reverse-lookup", 3358 | "version": "1.0.1", 3359 | "source": { 3360 | "type": "git", 3361 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", 3362 | "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" 3363 | }, 3364 | "dist": { 3365 | "type": "zip", 3366 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", 3367 | "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", 3368 | "shasum": "" 3369 | }, 3370 | "require": { 3371 | "php": "^5.6 || ^7.0" 3372 | }, 3373 | "require-dev": { 3374 | "phpunit/phpunit": "^5.7 || ^6.0" 3375 | }, 3376 | "type": "library", 3377 | "extra": { 3378 | "branch-alias": { 3379 | "dev-master": "1.0.x-dev" 3380 | } 3381 | }, 3382 | "autoload": { 3383 | "classmap": [ 3384 | "src/" 3385 | ] 3386 | }, 3387 | "notification-url": "https://packagist.org/downloads/", 3388 | "license": [ 3389 | "BSD-3-Clause" 3390 | ], 3391 | "authors": [ 3392 | { 3393 | "name": "Sebastian Bergmann", 3394 | "email": "sebastian@phpunit.de" 3395 | } 3396 | ], 3397 | "description": "Looks up which function or method a line of code belongs to", 3398 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", 3399 | "time": "2017-03-04T06:30:41+00:00" 3400 | }, 3401 | { 3402 | "name": "sebastian/comparator", 3403 | "version": "3.0.2", 3404 | "source": { 3405 | "type": "git", 3406 | "url": "https://github.com/sebastianbergmann/comparator.git", 3407 | "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" 3408 | }, 3409 | "dist": { 3410 | "type": "zip", 3411 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", 3412 | "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", 3413 | "shasum": "" 3414 | }, 3415 | "require": { 3416 | "php": "^7.1", 3417 | "sebastian/diff": "^3.0", 3418 | "sebastian/exporter": "^3.1" 3419 | }, 3420 | "require-dev": { 3421 | "phpunit/phpunit": "^7.1" 3422 | }, 3423 | "type": "library", 3424 | "extra": { 3425 | "branch-alias": { 3426 | "dev-master": "3.0-dev" 3427 | } 3428 | }, 3429 | "autoload": { 3430 | "classmap": [ 3431 | "src/" 3432 | ] 3433 | }, 3434 | "notification-url": "https://packagist.org/downloads/", 3435 | "license": [ 3436 | "BSD-3-Clause" 3437 | ], 3438 | "authors": [ 3439 | { 3440 | "name": "Jeff Welch", 3441 | "email": "whatthejeff@gmail.com" 3442 | }, 3443 | { 3444 | "name": "Volker Dusch", 3445 | "email": "github@wallbash.com" 3446 | }, 3447 | { 3448 | "name": "Bernhard Schussek", 3449 | "email": "bschussek@2bepublished.at" 3450 | }, 3451 | { 3452 | "name": "Sebastian Bergmann", 3453 | "email": "sebastian@phpunit.de" 3454 | } 3455 | ], 3456 | "description": "Provides the functionality to compare PHP values for equality", 3457 | "homepage": "https://github.com/sebastianbergmann/comparator", 3458 | "keywords": [ 3459 | "comparator", 3460 | "compare", 3461 | "equality" 3462 | ], 3463 | "time": "2018-07-12T15:12:46+00:00" 3464 | }, 3465 | { 3466 | "name": "sebastian/diff", 3467 | "version": "3.0.1", 3468 | "source": { 3469 | "type": "git", 3470 | "url": "https://github.com/sebastianbergmann/diff.git", 3471 | "reference": "366541b989927187c4ca70490a35615d3fef2dce" 3472 | }, 3473 | "dist": { 3474 | "type": "zip", 3475 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/366541b989927187c4ca70490a35615d3fef2dce", 3476 | "reference": "366541b989927187c4ca70490a35615d3fef2dce", 3477 | "shasum": "" 3478 | }, 3479 | "require": { 3480 | "php": "^7.1" 3481 | }, 3482 | "require-dev": { 3483 | "phpunit/phpunit": "^7.0", 3484 | "symfony/process": "^2 || ^3.3 || ^4" 3485 | }, 3486 | "type": "library", 3487 | "extra": { 3488 | "branch-alias": { 3489 | "dev-master": "3.0-dev" 3490 | } 3491 | }, 3492 | "autoload": { 3493 | "classmap": [ 3494 | "src/" 3495 | ] 3496 | }, 3497 | "notification-url": "https://packagist.org/downloads/", 3498 | "license": [ 3499 | "BSD-3-Clause" 3500 | ], 3501 | "authors": [ 3502 | { 3503 | "name": "Kore Nordmann", 3504 | "email": "mail@kore-nordmann.de" 3505 | }, 3506 | { 3507 | "name": "Sebastian Bergmann", 3508 | "email": "sebastian@phpunit.de" 3509 | } 3510 | ], 3511 | "description": "Diff implementation", 3512 | "homepage": "https://github.com/sebastianbergmann/diff", 3513 | "keywords": [ 3514 | "diff", 3515 | "udiff", 3516 | "unidiff", 3517 | "unified diff" 3518 | ], 3519 | "time": "2018-06-10T07:54:39+00:00" 3520 | }, 3521 | { 3522 | "name": "sebastian/environment", 3523 | "version": "3.1.0", 3524 | "source": { 3525 | "type": "git", 3526 | "url": "https://github.com/sebastianbergmann/environment.git", 3527 | "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" 3528 | }, 3529 | "dist": { 3530 | "type": "zip", 3531 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", 3532 | "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", 3533 | "shasum": "" 3534 | }, 3535 | "require": { 3536 | "php": "^7.0" 3537 | }, 3538 | "require-dev": { 3539 | "phpunit/phpunit": "^6.1" 3540 | }, 3541 | "type": "library", 3542 | "extra": { 3543 | "branch-alias": { 3544 | "dev-master": "3.1.x-dev" 3545 | } 3546 | }, 3547 | "autoload": { 3548 | "classmap": [ 3549 | "src/" 3550 | ] 3551 | }, 3552 | "notification-url": "https://packagist.org/downloads/", 3553 | "license": [ 3554 | "BSD-3-Clause" 3555 | ], 3556 | "authors": [ 3557 | { 3558 | "name": "Sebastian Bergmann", 3559 | "email": "sebastian@phpunit.de" 3560 | } 3561 | ], 3562 | "description": "Provides functionality to handle HHVM/PHP environments", 3563 | "homepage": "http://www.github.com/sebastianbergmann/environment", 3564 | "keywords": [ 3565 | "Xdebug", 3566 | "environment", 3567 | "hhvm" 3568 | ], 3569 | "time": "2017-07-01T08:51:00+00:00" 3570 | }, 3571 | { 3572 | "name": "sebastian/exporter", 3573 | "version": "3.1.0", 3574 | "source": { 3575 | "type": "git", 3576 | "url": "https://github.com/sebastianbergmann/exporter.git", 3577 | "reference": "234199f4528de6d12aaa58b612e98f7d36adb937" 3578 | }, 3579 | "dist": { 3580 | "type": "zip", 3581 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937", 3582 | "reference": "234199f4528de6d12aaa58b612e98f7d36adb937", 3583 | "shasum": "" 3584 | }, 3585 | "require": { 3586 | "php": "^7.0", 3587 | "sebastian/recursion-context": "^3.0" 3588 | }, 3589 | "require-dev": { 3590 | "ext-mbstring": "*", 3591 | "phpunit/phpunit": "^6.0" 3592 | }, 3593 | "type": "library", 3594 | "extra": { 3595 | "branch-alias": { 3596 | "dev-master": "3.1.x-dev" 3597 | } 3598 | }, 3599 | "autoload": { 3600 | "classmap": [ 3601 | "src/" 3602 | ] 3603 | }, 3604 | "notification-url": "https://packagist.org/downloads/", 3605 | "license": [ 3606 | "BSD-3-Clause" 3607 | ], 3608 | "authors": [ 3609 | { 3610 | "name": "Jeff Welch", 3611 | "email": "whatthejeff@gmail.com" 3612 | }, 3613 | { 3614 | "name": "Volker Dusch", 3615 | "email": "github@wallbash.com" 3616 | }, 3617 | { 3618 | "name": "Bernhard Schussek", 3619 | "email": "bschussek@2bepublished.at" 3620 | }, 3621 | { 3622 | "name": "Sebastian Bergmann", 3623 | "email": "sebastian@phpunit.de" 3624 | }, 3625 | { 3626 | "name": "Adam Harvey", 3627 | "email": "aharvey@php.net" 3628 | } 3629 | ], 3630 | "description": "Provides the functionality to export PHP variables for visualization", 3631 | "homepage": "http://www.github.com/sebastianbergmann/exporter", 3632 | "keywords": [ 3633 | "export", 3634 | "exporter" 3635 | ], 3636 | "time": "2017-04-03T13:19:02+00:00" 3637 | }, 3638 | { 3639 | "name": "sebastian/global-state", 3640 | "version": "2.0.0", 3641 | "source": { 3642 | "type": "git", 3643 | "url": "https://github.com/sebastianbergmann/global-state.git", 3644 | "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" 3645 | }, 3646 | "dist": { 3647 | "type": "zip", 3648 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", 3649 | "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", 3650 | "shasum": "" 3651 | }, 3652 | "require": { 3653 | "php": "^7.0" 3654 | }, 3655 | "require-dev": { 3656 | "phpunit/phpunit": "^6.0" 3657 | }, 3658 | "suggest": { 3659 | "ext-uopz": "*" 3660 | }, 3661 | "type": "library", 3662 | "extra": { 3663 | "branch-alias": { 3664 | "dev-master": "2.0-dev" 3665 | } 3666 | }, 3667 | "autoload": { 3668 | "classmap": [ 3669 | "src/" 3670 | ] 3671 | }, 3672 | "notification-url": "https://packagist.org/downloads/", 3673 | "license": [ 3674 | "BSD-3-Clause" 3675 | ], 3676 | "authors": [ 3677 | { 3678 | "name": "Sebastian Bergmann", 3679 | "email": "sebastian@phpunit.de" 3680 | } 3681 | ], 3682 | "description": "Snapshotting of global state", 3683 | "homepage": "http://www.github.com/sebastianbergmann/global-state", 3684 | "keywords": [ 3685 | "global state" 3686 | ], 3687 | "time": "2017-04-27T15:39:26+00:00" 3688 | }, 3689 | { 3690 | "name": "sebastian/object-enumerator", 3691 | "version": "3.0.3", 3692 | "source": { 3693 | "type": "git", 3694 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", 3695 | "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" 3696 | }, 3697 | "dist": { 3698 | "type": "zip", 3699 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", 3700 | "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", 3701 | "shasum": "" 3702 | }, 3703 | "require": { 3704 | "php": "^7.0", 3705 | "sebastian/object-reflector": "^1.1.1", 3706 | "sebastian/recursion-context": "^3.0" 3707 | }, 3708 | "require-dev": { 3709 | "phpunit/phpunit": "^6.0" 3710 | }, 3711 | "type": "library", 3712 | "extra": { 3713 | "branch-alias": { 3714 | "dev-master": "3.0.x-dev" 3715 | } 3716 | }, 3717 | "autoload": { 3718 | "classmap": [ 3719 | "src/" 3720 | ] 3721 | }, 3722 | "notification-url": "https://packagist.org/downloads/", 3723 | "license": [ 3724 | "BSD-3-Clause" 3725 | ], 3726 | "authors": [ 3727 | { 3728 | "name": "Sebastian Bergmann", 3729 | "email": "sebastian@phpunit.de" 3730 | } 3731 | ], 3732 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", 3733 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", 3734 | "time": "2017-08-03T12:35:26+00:00" 3735 | }, 3736 | { 3737 | "name": "sebastian/object-reflector", 3738 | "version": "1.1.1", 3739 | "source": { 3740 | "type": "git", 3741 | "url": "https://github.com/sebastianbergmann/object-reflector.git", 3742 | "reference": "773f97c67f28de00d397be301821b06708fca0be" 3743 | }, 3744 | "dist": { 3745 | "type": "zip", 3746 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", 3747 | "reference": "773f97c67f28de00d397be301821b06708fca0be", 3748 | "shasum": "" 3749 | }, 3750 | "require": { 3751 | "php": "^7.0" 3752 | }, 3753 | "require-dev": { 3754 | "phpunit/phpunit": "^6.0" 3755 | }, 3756 | "type": "library", 3757 | "extra": { 3758 | "branch-alias": { 3759 | "dev-master": "1.1-dev" 3760 | } 3761 | }, 3762 | "autoload": { 3763 | "classmap": [ 3764 | "src/" 3765 | ] 3766 | }, 3767 | "notification-url": "https://packagist.org/downloads/", 3768 | "license": [ 3769 | "BSD-3-Clause" 3770 | ], 3771 | "authors": [ 3772 | { 3773 | "name": "Sebastian Bergmann", 3774 | "email": "sebastian@phpunit.de" 3775 | } 3776 | ], 3777 | "description": "Allows reflection of object attributes, including inherited and non-public ones", 3778 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", 3779 | "time": "2017-03-29T09:07:27+00:00" 3780 | }, 3781 | { 3782 | "name": "sebastian/recursion-context", 3783 | "version": "3.0.0", 3784 | "source": { 3785 | "type": "git", 3786 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 3787 | "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" 3788 | }, 3789 | "dist": { 3790 | "type": "zip", 3791 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", 3792 | "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", 3793 | "shasum": "" 3794 | }, 3795 | "require": { 3796 | "php": "^7.0" 3797 | }, 3798 | "require-dev": { 3799 | "phpunit/phpunit": "^6.0" 3800 | }, 3801 | "type": "library", 3802 | "extra": { 3803 | "branch-alias": { 3804 | "dev-master": "3.0.x-dev" 3805 | } 3806 | }, 3807 | "autoload": { 3808 | "classmap": [ 3809 | "src/" 3810 | ] 3811 | }, 3812 | "notification-url": "https://packagist.org/downloads/", 3813 | "license": [ 3814 | "BSD-3-Clause" 3815 | ], 3816 | "authors": [ 3817 | { 3818 | "name": "Jeff Welch", 3819 | "email": "whatthejeff@gmail.com" 3820 | }, 3821 | { 3822 | "name": "Sebastian Bergmann", 3823 | "email": "sebastian@phpunit.de" 3824 | }, 3825 | { 3826 | "name": "Adam Harvey", 3827 | "email": "aharvey@php.net" 3828 | } 3829 | ], 3830 | "description": "Provides functionality to recursively process PHP variables", 3831 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 3832 | "time": "2017-03-03T06:23:57+00:00" 3833 | }, 3834 | { 3835 | "name": "sebastian/resource-operations", 3836 | "version": "2.0.1", 3837 | "source": { 3838 | "type": "git", 3839 | "url": "https://github.com/sebastianbergmann/resource-operations.git", 3840 | "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" 3841 | }, 3842 | "dist": { 3843 | "type": "zip", 3844 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", 3845 | "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", 3846 | "shasum": "" 3847 | }, 3848 | "require": { 3849 | "php": "^7.1" 3850 | }, 3851 | "type": "library", 3852 | "extra": { 3853 | "branch-alias": { 3854 | "dev-master": "2.0-dev" 3855 | } 3856 | }, 3857 | "autoload": { 3858 | "classmap": [ 3859 | "src/" 3860 | ] 3861 | }, 3862 | "notification-url": "https://packagist.org/downloads/", 3863 | "license": [ 3864 | "BSD-3-Clause" 3865 | ], 3866 | "authors": [ 3867 | { 3868 | "name": "Sebastian Bergmann", 3869 | "email": "sebastian@phpunit.de" 3870 | } 3871 | ], 3872 | "description": "Provides a list of PHP built-in functions that operate on resources", 3873 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", 3874 | "time": "2018-10-04T04:07:39+00:00" 3875 | }, 3876 | { 3877 | "name": "sebastian/version", 3878 | "version": "2.0.1", 3879 | "source": { 3880 | "type": "git", 3881 | "url": "https://github.com/sebastianbergmann/version.git", 3882 | "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" 3883 | }, 3884 | "dist": { 3885 | "type": "zip", 3886 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", 3887 | "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", 3888 | "shasum": "" 3889 | }, 3890 | "require": { 3891 | "php": ">=5.6" 3892 | }, 3893 | "type": "library", 3894 | "extra": { 3895 | "branch-alias": { 3896 | "dev-master": "2.0.x-dev" 3897 | } 3898 | }, 3899 | "autoload": { 3900 | "classmap": [ 3901 | "src/" 3902 | ] 3903 | }, 3904 | "notification-url": "https://packagist.org/downloads/", 3905 | "license": [ 3906 | "BSD-3-Clause" 3907 | ], 3908 | "authors": [ 3909 | { 3910 | "name": "Sebastian Bergmann", 3911 | "email": "sebastian@phpunit.de", 3912 | "role": "lead" 3913 | } 3914 | ], 3915 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 3916 | "homepage": "https://github.com/sebastianbergmann/version", 3917 | "time": "2016-10-03T07:35:21+00:00" 3918 | }, 3919 | { 3920 | "name": "squizlabs/php_codesniffer", 3921 | "version": "3.3.2", 3922 | "source": { 3923 | "type": "git", 3924 | "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", 3925 | "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e" 3926 | }, 3927 | "dist": { 3928 | "type": "zip", 3929 | "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6ad28354c04b364c3c71a34e4a18b629cc3b231e", 3930 | "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e", 3931 | "shasum": "" 3932 | }, 3933 | "require": { 3934 | "ext-simplexml": "*", 3935 | "ext-tokenizer": "*", 3936 | "ext-xmlwriter": "*", 3937 | "php": ">=5.4.0" 3938 | }, 3939 | "require-dev": { 3940 | "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" 3941 | }, 3942 | "bin": [ 3943 | "bin/phpcs", 3944 | "bin/phpcbf" 3945 | ], 3946 | "type": "library", 3947 | "extra": { 3948 | "branch-alias": { 3949 | "dev-master": "3.x-dev" 3950 | } 3951 | }, 3952 | "notification-url": "https://packagist.org/downloads/", 3953 | "license": [ 3954 | "BSD-3-Clause" 3955 | ], 3956 | "authors": [ 3957 | { 3958 | "name": "Greg Sherwood", 3959 | "role": "lead" 3960 | } 3961 | ], 3962 | "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", 3963 | "homepage": "http://www.squizlabs.com/php-codesniffer", 3964 | "keywords": [ 3965 | "phpcs", 3966 | "standards" 3967 | ], 3968 | "time": "2018-09-23T23:08:17+00:00" 3969 | }, 3970 | { 3971 | "name": "symfony/yaml", 3972 | "version": "v4.1.7", 3973 | "source": { 3974 | "type": "git", 3975 | "url": "https://github.com/symfony/yaml.git", 3976 | "reference": "367e689b2fdc19965be435337b50bc8adf2746c9" 3977 | }, 3978 | "dist": { 3979 | "type": "zip", 3980 | "url": "https://api.github.com/repos/symfony/yaml/zipball/367e689b2fdc19965be435337b50bc8adf2746c9", 3981 | "reference": "367e689b2fdc19965be435337b50bc8adf2746c9", 3982 | "shasum": "" 3983 | }, 3984 | "require": { 3985 | "php": "^7.1.3", 3986 | "symfony/polyfill-ctype": "~1.8" 3987 | }, 3988 | "conflict": { 3989 | "symfony/console": "<3.4" 3990 | }, 3991 | "require-dev": { 3992 | "symfony/console": "~3.4|~4.0" 3993 | }, 3994 | "suggest": { 3995 | "symfony/console": "For validating YAML files using the lint command" 3996 | }, 3997 | "type": "library", 3998 | "extra": { 3999 | "branch-alias": { 4000 | "dev-master": "4.1-dev" 4001 | } 4002 | }, 4003 | "autoload": { 4004 | "psr-4": { 4005 | "Symfony\\Component\\Yaml\\": "" 4006 | }, 4007 | "exclude-from-classmap": [ 4008 | "/Tests/" 4009 | ] 4010 | }, 4011 | "notification-url": "https://packagist.org/downloads/", 4012 | "license": [ 4013 | "MIT" 4014 | ], 4015 | "authors": [ 4016 | { 4017 | "name": "Fabien Potencier", 4018 | "email": "fabien@symfony.com" 4019 | }, 4020 | { 4021 | "name": "Symfony Community", 4022 | "homepage": "https://symfony.com/contributors" 4023 | } 4024 | ], 4025 | "description": "Symfony Yaml Component", 4026 | "homepage": "https://symfony.com", 4027 | "time": "2018-10-02T16:36:10+00:00" 4028 | }, 4029 | { 4030 | "name": "theseer/tokenizer", 4031 | "version": "1.1.0", 4032 | "source": { 4033 | "type": "git", 4034 | "url": "https://github.com/theseer/tokenizer.git", 4035 | "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b" 4036 | }, 4037 | "dist": { 4038 | "type": "zip", 4039 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b", 4040 | "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b", 4041 | "shasum": "" 4042 | }, 4043 | "require": { 4044 | "ext-dom": "*", 4045 | "ext-tokenizer": "*", 4046 | "ext-xmlwriter": "*", 4047 | "php": "^7.0" 4048 | }, 4049 | "type": "library", 4050 | "autoload": { 4051 | "classmap": [ 4052 | "src/" 4053 | ] 4054 | }, 4055 | "notification-url": "https://packagist.org/downloads/", 4056 | "license": [ 4057 | "BSD-3-Clause" 4058 | ], 4059 | "authors": [ 4060 | { 4061 | "name": "Arne Blankerts", 4062 | "email": "arne@blankerts.de", 4063 | "role": "Developer" 4064 | } 4065 | ], 4066 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", 4067 | "time": "2017-04-07T12:08:54+00:00" 4068 | }, 4069 | { 4070 | "name": "webmozart/assert", 4071 | "version": "1.3.0", 4072 | "source": { 4073 | "type": "git", 4074 | "url": "https://github.com/webmozart/assert.git", 4075 | "reference": "0df1908962e7a3071564e857d86874dad1ef204a" 4076 | }, 4077 | "dist": { 4078 | "type": "zip", 4079 | "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", 4080 | "reference": "0df1908962e7a3071564e857d86874dad1ef204a", 4081 | "shasum": "" 4082 | }, 4083 | "require": { 4084 | "php": "^5.3.3 || ^7.0" 4085 | }, 4086 | "require-dev": { 4087 | "phpunit/phpunit": "^4.6", 4088 | "sebastian/version": "^1.0.1" 4089 | }, 4090 | "type": "library", 4091 | "extra": { 4092 | "branch-alias": { 4093 | "dev-master": "1.3-dev" 4094 | } 4095 | }, 4096 | "autoload": { 4097 | "psr-4": { 4098 | "Webmozart\\Assert\\": "src/" 4099 | } 4100 | }, 4101 | "notification-url": "https://packagist.org/downloads/", 4102 | "license": [ 4103 | "MIT" 4104 | ], 4105 | "authors": [ 4106 | { 4107 | "name": "Bernhard Schussek", 4108 | "email": "bschussek@gmail.com" 4109 | } 4110 | ], 4111 | "description": "Assertions to validate method input/output with nice error messages.", 4112 | "keywords": [ 4113 | "assert", 4114 | "check", 4115 | "validate" 4116 | ], 4117 | "time": "2018-01-29T19:49:41+00:00" 4118 | } 4119 | ], 4120 | "aliases": [], 4121 | "minimum-stability": "stable", 4122 | "stability-flags": [], 4123 | "prefer-stable": false, 4124 | "prefer-lowest": false, 4125 | "platform": { 4126 | "php": ">=7.0.0" 4127 | }, 4128 | "platform-dev": [] 4129 | } 4130 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | ./tests 14 | 15 | 16 | 17 | 18 | ./src 19 | 20 | src/migrations 21 | src/FriendshipsServiceProvider.php 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/Friendable.php: -------------------------------------------------------------------------------- 1 | id == $user->id) { 10 | return 'same_user'; 11 | } 12 | 13 | $friendship = Friendship::betweenUsers($this, $user); 14 | 15 | if ($friendship->count() == 0) { 16 | return 'not_friends'; 17 | } elseif ($friendship->count() == 2) { 18 | return 'friends'; 19 | } elseif ($friendship->first()->user_id == $this->id) { 20 | return 'waiting'; 21 | } else { 22 | return 'pending'; 23 | } 24 | } 25 | 26 | public function addFriend($recipient) 27 | { 28 | $friendshipStatus = $this->checkFriendship($recipient); 29 | 30 | if ($friendshipStatus == 'not_friends') { 31 | $this->friends()->attach($recipient); 32 | 33 | event('friendrequest.sent', [$this, $recipient]); 34 | 35 | return 'waiting'; 36 | } 37 | } 38 | 39 | public function acceptFriend($sender) 40 | { 41 | $friendshipStatus = $this->checkFriendship($sender); 42 | 43 | if ($friendshipStatus == 'pending') { 44 | $this->friends()->attach($sender, ['status' => 1]); 45 | $sender->friends()->updateExistingPivot($this, ['status' => 1]); 46 | 47 | event('friendrequest.accepted', [$this, $sender]); 48 | 49 | return 'friends'; 50 | } 51 | } 52 | 53 | public function deleteFriend($user) 54 | { 55 | $friendshipStatus = $this->checkFriendship($user); 56 | 57 | if ($friendshipStatus != 'not_friends') { 58 | $this->friends()->detach($user); 59 | $user->friends()->detach($this); 60 | 61 | event('friendship.deleted', [$this, $user]); 62 | 63 | return 'not_friends'; 64 | } 65 | } 66 | 67 | public function friends() 68 | { 69 | return $this->belongsToMany(config('friendships.user_model'), 'friendships', 'user_id', 'friend_id') 70 | ->where('status', 1); 71 | } 72 | 73 | public function friendRequestsReceived() 74 | { 75 | return $this->belongsToMany(config('friendships.user_model'), 'friendships', 'friend_id', 'user_id') 76 | ->where('status', 0); 77 | } 78 | 79 | public function friendRequestsSent() 80 | { 81 | return $this->belongsToMany(config('friendships.user_model'), 'friendships', 'user_id', 'friend_id') 82 | ->where('status', 0); 83 | } 84 | 85 | public function isFriendsWith($user) 86 | { 87 | return $this->friends->contains($user); 88 | } 89 | 90 | public function mutualFriendsCount($user) 91 | { 92 | $userFriends = $user->friends->pluck('id'); 93 | $friends = $this->friends->pluck('id'); 94 | 95 | return $userFriends->intersect($friends)->count(); 96 | } 97 | 98 | public function mutualFriends($user) 99 | { 100 | $userFriends = $user->friends->pluck('id'); 101 | $friends = $this->friends->pluck('id'); 102 | 103 | $mutualIds = $userFriends->intersect($friends); 104 | 105 | return static::whereIn('id', $mutualIds)->get(); 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /src/Friendship.php: -------------------------------------------------------------------------------- 1 | where('user_id', $model->getKey()); 14 | } 15 | 16 | public function scopeWhereRecipient($query, $model) 17 | { 18 | return $query->where('friend_id', $model->getKey()); 19 | } 20 | 21 | public function scopeAccepted($query, $val) 22 | { 23 | return $query->where('status', $val); 24 | } 25 | 26 | public function scopeBetweenUsers($query, $sender, $recipient) 27 | { 28 | $query->where(function ($queryIn) use ($sender, $recipient) { 29 | $queryIn->where(function ($q) use ($sender, $recipient) { 30 | $q->whereSender($sender)->whereRecipient($recipient); 31 | })->orWhere(function ($q) use ($sender, $recipient) { 32 | $q->whereSender($recipient)->whereRecipient($sender); 33 | }); 34 | }); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/FriendshipsServiceProvider.php: -------------------------------------------------------------------------------- 1 | publishes([ 17 | __DIR__ . '/config/friendships.php' => config_path('friendships.php'), 18 | ], 'config'); 19 | 20 | $this->mergeConfigFrom( 21 | __DIR__ . '/config/friendships.php', 22 | 'friendships' 23 | ); 24 | 25 | $this->loadMigrationsFrom(__DIR__ . '/migrations'); 26 | } 27 | 28 | /** 29 | * Register the application services. 30 | * 31 | * @return void 32 | */ 33 | public function register() 34 | { 35 | // 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/config/friendships.php: -------------------------------------------------------------------------------- 1 | App\User::class, 4 | 'users_table' => 'users' 5 | ]; 6 | -------------------------------------------------------------------------------- /src/migrations/2017_01_30_200303_create_friendships_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 18 | $table->unsignedInteger('user_id'); 19 | $table->unsignedInteger('friend_id'); 20 | $table->boolean('status')->default(0); 21 | $table->timestamps(); 22 | 23 | $table->unique(['user_id', 'friend_id']); 24 | 25 | $table->foreign('user_id') 26 | ->references('id')->on(config('friendships.users_table')) 27 | ->onUpdate('cascade') 28 | ->onDelete('cascade'); 29 | 30 | $table->foreign('friend_id') 31 | ->references('id')->on(config('friendships.users_table')) 32 | ->onUpdate('cascade') 33 | ->onDelete('cascade'); 34 | }); 35 | } 36 | 37 | /** 38 | * Reverse the migrations. 39 | * 40 | * @return void 41 | */ 42 | public function down() 43 | { 44 | Schema::dropIfExists('friendships'); 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /tests/FriendshipsEventsTest.php: -------------------------------------------------------------------------------- 1 | sender = factory(User::class)->create(); 12 | $this->recipient = factory(User::class)->create(); 13 | } 14 | 15 | /** @test */ 16 | public function friend_request_is_sent() 17 | { 18 | Event::shouldReceive('dispatch') 19 | ->once() 20 | ->withArgs(['friendrequest.sent', [$this->sender, $this->recipient]]); 21 | 22 | $this->sender->addfriend($this->recipient); 23 | } 24 | 25 | /** @test */ 26 | public function friend_request_is_accepted() 27 | { 28 | $this->sender->addfriend($this->recipient); 29 | 30 | Event::shouldReceive('dispatch') 31 | ->once() 32 | ->withArgs(['friendrequest.accepted', [$this->recipient, $this->sender]]); 33 | 34 | $this->recipient->acceptFriend($this->sender); 35 | } 36 | 37 | /** @test */ 38 | public function friendship_is_cancelled() 39 | { 40 | $this->sender->addfriend($this->recipient); 41 | $this->recipient->acceptFriend($this->sender); 42 | 43 | Event::shouldReceive('dispatch') 44 | ->once() 45 | ->withArgs(['friendship.deleted', [$this->recipient, $this->sender]]); 46 | 47 | $this->recipient->deleteFriend($this->sender); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /tests/FriendshipsTest.php: -------------------------------------------------------------------------------- 1 | create(); 12 | $recipient = factory(User::class)->create(); 13 | 14 | $sender->addFriend($recipient); 15 | 16 | $this->assertCount(1, $recipient->friendRequestsReceived); 17 | $this->assertCount(1, $sender->friendRequestsSent); 18 | 19 | $this->assertNotTrue($sender->isFriendsWith($recipient)); 20 | $this->assertNotTrue($recipient->isFriendsWith($sender)); 21 | } 22 | 23 | /** @test */ 24 | public function user_can_not_send_a_friend_request_if_frienship_is_pending() 25 | { 26 | $sender = factory(User::class)->create(); 27 | $recipient = factory(User::class)->create(); 28 | 29 | $sender->addFriend($recipient); 30 | $sender->addFriend($recipient); 31 | $sender->addFriend($recipient); 32 | 33 | $this->assertCount(1, $recipient->friendRequestsReceived); 34 | } 35 | 36 | /** @test */ 37 | public function user_can_send_a_friend_request_if_frienship_is_denied() 38 | { 39 | $sender = factory(User::class)->create(); 40 | $recipient = factory(User::class)->create(); 41 | 42 | $sender->addFriend($recipient); 43 | 44 | $recipient->deleteFriend($sender); 45 | $this->assertCount(0, $recipient->friendRequestsReceived); 46 | 47 | 48 | $sender->addFriend($recipient); 49 | // reset relationship 50 | $recipient->setRelations([]); 51 | $this->assertCount(1, $recipient->friendRequestsReceived); 52 | } 53 | 54 | /** @test */ 55 | public function user_can_remove_a_friend_request() 56 | { 57 | $sender = factory(User::class)->create(); 58 | $recipient = factory(User::class)->create(); 59 | 60 | $sender->addFriend($recipient); 61 | $sender->deleteFriend($recipient); 62 | $this->assertCount(0, $recipient->friendRequestsReceived); 63 | 64 | $recipient->setRelations([]); 65 | 66 | $sender->addFriend($recipient); 67 | $this->assertCount(1, $recipient->friendRequestsReceived); 68 | 69 | $recipient->acceptfriend($sender); 70 | $this->assertEquals('friends', $recipient->checkFriendship($sender)); 71 | 72 | $sender->deleteFriend($recipient); 73 | $this->assertEquals('not_friends', $recipient->checkFriendship($sender)); 74 | } 75 | 76 | /** @test */ 77 | public function change_statue_to_pending_and_waiting() 78 | { 79 | $sender = factory(User::class)->create(); 80 | $recipient = factory(User::class)->create(); 81 | 82 | $sender->addFriend($recipient); 83 | 84 | $this->assertEquals('pending', $recipient->checkFriendship($sender)); 85 | $this->assertEquals('waiting', $sender->checkFriendship($recipient)); 86 | } 87 | 88 | /** @test */ 89 | public function user_can_not_send_a_friend_request_to_himself() 90 | { 91 | $user = factory(User::class)->create(); 92 | 93 | $user->addFriend($user); 94 | 95 | $this->assertEquals('same_user', $user->checkFriendship($user)); 96 | $this->assertCount(0, $user->friendRequestsReceived); 97 | $this->assertCount(0, $user->friendRequestsSent); 98 | } 99 | 100 | /** @test */ 101 | public function user_is_friend_with_another_user_if_accepts_a_friend_request() 102 | { 103 | $sender = factory(User::class)->create(); 104 | $recipient = factory(User::class)->create(); 105 | 106 | $sender->addFriend($recipient); 107 | $recipient->acceptFriend($sender); 108 | 109 | $this->assertEquals('friends', $recipient->checkFriendship($sender)); 110 | $this->assertEquals('friends', $sender->checkFriendship($recipient)); 111 | 112 | $this->assertTrue($sender->isFriendsWith($recipient)); 113 | $this->assertTrue($recipient->isFriendsWith($sender)); 114 | } 115 | 116 | /** @test */ 117 | public function user_has_not_friend_request_from_if_he_accepted_the_friend_request() 118 | { 119 | $sender = factory(User::class)->create(); 120 | $recipient = factory(User::class)->create(); 121 | 122 | $sender->addFriend($recipient); 123 | $recipient->acceptFriend($sender); 124 | 125 | $this->assertCount(0, $recipient->friendRequestsReceived); 126 | $this->assertCount(0, $sender->friendRequestsSent); 127 | } 128 | 129 | /** @test */ 130 | public function user_cannot_accept_his_own_friend_request() 131 | { 132 | $sender = factory(User::class)->create(); 133 | $recipient = factory(User::class)->create(); 134 | $sender->addFriend($recipient); 135 | $sender->acceptFriend($recipient); 136 | 137 | $this->assertEquals('pending', $recipient->checkFriendship($sender)); 138 | } 139 | 140 | /** @test */ 141 | public function it_returns_accepted_friendships() 142 | { 143 | $sender = factory(User::class)->create(); 144 | $recipients = factory(User::class, 3)->create(); 145 | 146 | foreach ($recipients as $recipient) { 147 | $sender->addFriend($recipient); 148 | } 149 | 150 | $recipients[0]->acceptFriend($sender); 151 | $recipients[1]->acceptFriend($sender); 152 | $recipients[2]->deleteFriend($sender); 153 | 154 | $this->assertCount(2, $sender->friends); 155 | } 156 | 157 | /** @test */ 158 | public function it_returns_only_accepted_user_friendships() 159 | { 160 | $sender = factory(User::class)->create(); 161 | $recipients = factory(User::class, 4)->create(); 162 | 163 | foreach ($recipients as $recipient) { 164 | $sender->addFriend($recipient); 165 | } 166 | 167 | $recipients[0]->acceptFriend($sender); 168 | $recipients[1]->acceptFriend($sender); 169 | $recipients[2]->deleteFriend($sender); 170 | 171 | $this->assertCount(2, $sender->friends); 172 | 173 | $this->assertCount(1, $recipients[0]->friends); 174 | $this->assertCount(1, $recipients[1]->friends); 175 | $this->assertCount(0, $recipients[2]->friends); 176 | $this->assertCount(0, $recipients[3]->friends); 177 | 178 | $this->containsOnlyInstancesOf(\App\User::class, $sender->friends); 179 | } 180 | 181 | /** @test */ 182 | public function it_returns_friend_requests_from_user() 183 | { 184 | $sender = factory(User::class)->create(); 185 | $recipients = factory(User::class, 3)->create(); 186 | 187 | foreach ($recipients as $recipient) { 188 | $sender->addFriend($recipient); 189 | } 190 | 191 | $recipients[0]->acceptFriend($sender); 192 | 193 | $this->assertCount(2, $sender->friendRequestsSent); 194 | $this->containsOnlyInstancesOf(\App\User::class, $sender->friendRequestsSent); 195 | } 196 | 197 | /** @test */ 198 | public function it_returns_friend_requests_to_user() 199 | { 200 | $recipient = factory(User::class)->create(); 201 | $senders = factory(User::class, 3)->create(); 202 | 203 | foreach ($senders as $sender) { 204 | $sender->addFriend($recipient); 205 | } 206 | 207 | $recipient->acceptFriend($senders[0]); 208 | 209 | $this->assertCount(2, $recipient->friendRequestsReceived); 210 | $this->containsOnlyInstancesOf(\App\User::class, $recipient->friendRequestsReceived); 211 | } 212 | /** @test */ 213 | public function it_returns_mutual_friends() 214 | { 215 | $users = factory(User::class, 6)->create(); 216 | // create users 217 | 218 | 219 | // user one add friends 220 | $users[0]->addFriend($users[1]); 221 | $users[1]->acceptFriend($users[0]); 222 | $users[0]->addFriend($users[2]); 223 | $users[2]->acceptFriend($users[0]); 224 | $users[0]->addFriend($users[3]); 225 | $users[3]->acceptFriend($users[0]); 226 | $users[0]->addFriend($users[5]); 227 | $users[5]->acceptFriend($users[0]); 228 | 229 | // user two add friends 230 | $users[1]->addFriend($users[0]); 231 | $users[0]->acceptFriend($users[1]); 232 | $users[1]->addFriend($users[2]); 233 | $users[2]->acceptFriend($users[1]); 234 | $users[1]->addFriend($users[4]); 235 | $users[4]->acceptFriend($users[1]); 236 | $users[1]->addFriend($users[5]); 237 | $users[5]->acceptFriend($users[1]); 238 | 239 | $this->assertEquals(2, $users[0]->mutualFriendsCount($users[1])); 240 | $this->assertCount(2, $users[0]->mutualFriends($users[1])); 241 | $this->assertEquals([$users[2]->toArray(), $users[5]->toArray()], $users[0]->mutualFriends($users[1])->toArray()); 242 | } 243 | } 244 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | set('friendships.user_model', User::class); 24 | } 25 | 26 | 27 | public function setUp() 28 | { 29 | parent::setUp(); 30 | 31 | $this->loadLaravelMigrations('sqlite'); 32 | $this->withFactories(__DIR__.'/database/factories'); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /tests/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- 1 | define(User::class, function (Faker\Generator $faker) { 4 | static $password; 5 | 6 | return [ 7 | 'name' => $faker->name, 8 | 'email' => $faker->unique()->safeEmail, 9 | 'password' => $password ? : $password = bcrypt('secret'), 10 | 'remember_token' => str_random(10), 11 | 'email_verified_at' => null 12 | ]; 13 | }); 14 | -------------------------------------------------------------------------------- /tests/models/User.php: -------------------------------------------------------------------------------- 1 |