├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Calendar.php ├── CalendarController.php ├── CalendarServiceProvider.php ├── Facades │ └── Calendar.php ├── assets │ ├── calendar.css │ └── calendar.js ├── routes.php └── views │ ├── calendar.blade.php │ └── demo.blade.php └── tests └── CalendarTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git 3 | /vendor/ 4 | .idea -------------------------------------------------------------------------------- /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 github@arkhas.fr. 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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Mathieu FERRE 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Installation 2 | 3 | Install the package through [Composer](http://getcomposer.org/) : 4 | 5 | composer require arkhas/laravel5calendar 6 | 7 | 8 | Now all you have to do is add the service provider of the package and alias the package. To do this open your `app/config/app.php` file. 9 | 10 | Add a new line to the `service providers` array: 11 | 12 | Arkhas\Calendar\CalendarServiceProvider::class, 13 | 14 | Add a new line to the `aliases` array: 15 | 16 | 'Calendar' => Arkhas\Calendar\Facades\Calendar::class, 17 | 18 | Then insert this in the top of your file : 19 | 20 | ```php 21 | use Calendar; 22 | ``` 23 | Or use it directly : 24 | ```php 25 | $calendar = \Calendar::generate(); 26 | ``` 27 | 28 | Now you're ready to start using the calendar package in your application. 29 | 30 | 31 | ## Usage 32 | 33 | You can use the `generate` method to generate a calendar, it will return the template of the calendar. 34 | 35 | ```php 36 | // Generate a calendar for the current month and year 37 | $calendar = Calendar::generate(); 38 | 39 | // Generate a calendar for the specified year and month 40 | $calendar = Calendar::generate(2012, 5); 41 | 42 | // Add an array of events as the third parameter to add them to the calendar (YYYY/MM/DD), 43 | $events = array( 44 | '2016/5/3', 45 | '2016/5/5', 46 | '2016/5/11', 47 | '2016/5/16', 48 | '2016/5/28', 49 | ); 50 | 51 | $calendar = Calendar::generate(2016, 5, $events); 52 | 53 | // Add an array of data as the fourth parameter so you can use them in the view : 54 | 55 | $data = array( 56 | 'name' => 'Arkhas', 57 | 'url' => '/event/arkhas', 58 | 'foo' => 'bar' 59 | ); 60 | 61 | $calendar = Calendar::generate(2016, 5, $events, $data); 62 | ``` 63 | 64 | For using it in you view, simply use : 65 | ```php 66 | {!! $calendar !!} 67 | ``` 68 | 69 | ## Routing 70 | 71 | By default, the routing format is `/calendar/YYYY/MM` , you can change the leading route using the url data parameter : 72 | 73 | ```php 74 | $data['url'] = '/foo/bar/'; 75 | ``` 76 | 77 | ## Template 78 | 79 | If you want to use a custom template, run : 80 | 81 | php artisan vendor:publish 82 | 83 | The template is located in `resources/views/vendor/calendar/calendar.blade.php` 84 | 85 | The css file is located in `public/assets/arkhas/calendar/calendar.css` 86 | 87 | ## Navigate through the calendar 88 | 89 | Add this to your template 90 | 91 | ```html 92 | 93 | 94 | 95 | ``` 96 | 97 | Navigate through the calendar with links using the `calendarButton` Class. 98 | The ajax script will replace the `calendar` class by an updated calendar. 99 | 100 | For more information about how it work, you can navigate to `/arkhas/demo` and see the template in `ressources/views/vendor/calendar/demo.blade.php` 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "arkhas/laravel5calendar", 3 | "description": "A calendar with event managment package for laravel 5 using Carbon and Blade templating", 4 | "license": "MIT", 5 | "authors": [ 6 | { 7 | "name": "Arkhas", 8 | "email": "git@arkhas.fr" 9 | } 10 | ], 11 | "require": {}, 12 | "autoload": { 13 | "psr-4": { 14 | "Arkhas\\Calendar\\": "src/" 15 | } 16 | }, 17 | "autoload-dev": { 18 | "psr-4": { 19 | "Arkhas\\Calendar\\Test\\": "tests" 20 | } 21 | }, 22 | "require-dev": { 23 | "phpunit/phpunit": "^6.3", 24 | "orchestra/testbench": "~3.0" 25 | }, 26 | "extra": { 27 | "laravel": { 28 | "providers": [ 29 | "Arkhas\\Calendar\\CalendarServiceProvider" 30 | ], 31 | "aliases": { 32 | "Calendar": "Arkhas\\Calendar\\Facades\\Calendar" 33 | } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /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": "76856525ea8b729f02da0b0824a9dac3", 8 | "packages": [], 9 | "packages-dev": [ 10 | { 11 | "name": "doctrine/inflector", 12 | "version": "v1.2.0", 13 | "source": { 14 | "type": "git", 15 | "url": "https://github.com/doctrine/inflector.git", 16 | "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" 17 | }, 18 | "dist": { 19 | "type": "zip", 20 | "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", 21 | "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", 22 | "shasum": "" 23 | }, 24 | "require": { 25 | "php": "^7.0" 26 | }, 27 | "require-dev": { 28 | "phpunit/phpunit": "^6.2" 29 | }, 30 | "type": "library", 31 | "extra": { 32 | "branch-alias": { 33 | "dev-master": "1.2.x-dev" 34 | } 35 | }, 36 | "autoload": { 37 | "psr-4": { 38 | "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" 39 | } 40 | }, 41 | "notification-url": "https://packagist.org/downloads/", 42 | "license": [ 43 | "MIT" 44 | ], 45 | "authors": [ 46 | { 47 | "name": "Roman Borschel", 48 | "email": "roman@code-factory.org" 49 | }, 50 | { 51 | "name": "Benjamin Eberlei", 52 | "email": "kontakt@beberlei.de" 53 | }, 54 | { 55 | "name": "Guilherme Blanco", 56 | "email": "guilhermeblanco@gmail.com" 57 | }, 58 | { 59 | "name": "Jonathan Wage", 60 | "email": "jonwage@gmail.com" 61 | }, 62 | { 63 | "name": "Johannes Schmitt", 64 | "email": "schmittjoh@gmail.com" 65 | } 66 | ], 67 | "description": "Common String Manipulations with regard to casing and singular/plural rules.", 68 | "homepage": "http://www.doctrine-project.org", 69 | "keywords": [ 70 | "inflection", 71 | "pluralize", 72 | "singularize", 73 | "string" 74 | ], 75 | "time": "2017-07-22T12:18:28+00:00" 76 | }, 77 | { 78 | "name": "doctrine/instantiator", 79 | "version": "1.0.5", 80 | "source": { 81 | "type": "git", 82 | "url": "https://github.com/doctrine/instantiator.git", 83 | "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" 84 | }, 85 | "dist": { 86 | "type": "zip", 87 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", 88 | "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", 89 | "shasum": "" 90 | }, 91 | "require": { 92 | "php": ">=5.3,<8.0-DEV" 93 | }, 94 | "require-dev": { 95 | "athletic/athletic": "~0.1.8", 96 | "ext-pdo": "*", 97 | "ext-phar": "*", 98 | "phpunit/phpunit": "~4.0", 99 | "squizlabs/php_codesniffer": "~2.0" 100 | }, 101 | "type": "library", 102 | "extra": { 103 | "branch-alias": { 104 | "dev-master": "1.0.x-dev" 105 | } 106 | }, 107 | "autoload": { 108 | "psr-4": { 109 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 110 | } 111 | }, 112 | "notification-url": "https://packagist.org/downloads/", 113 | "license": [ 114 | "MIT" 115 | ], 116 | "authors": [ 117 | { 118 | "name": "Marco Pivetta", 119 | "email": "ocramius@gmail.com", 120 | "homepage": "http://ocramius.github.com/" 121 | } 122 | ], 123 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 124 | "homepage": "https://github.com/doctrine/instantiator", 125 | "keywords": [ 126 | "constructor", 127 | "instantiate" 128 | ], 129 | "time": "2015-06-14T21:17:01+00:00" 130 | }, 131 | { 132 | "name": "doctrine/lexer", 133 | "version": "v1.0.1", 134 | "source": { 135 | "type": "git", 136 | "url": "https://github.com/doctrine/lexer.git", 137 | "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" 138 | }, 139 | "dist": { 140 | "type": "zip", 141 | "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", 142 | "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", 143 | "shasum": "" 144 | }, 145 | "require": { 146 | "php": ">=5.3.2" 147 | }, 148 | "type": "library", 149 | "extra": { 150 | "branch-alias": { 151 | "dev-master": "1.0.x-dev" 152 | } 153 | }, 154 | "autoload": { 155 | "psr-0": { 156 | "Doctrine\\Common\\Lexer\\": "lib/" 157 | } 158 | }, 159 | "notification-url": "https://packagist.org/downloads/", 160 | "license": [ 161 | "MIT" 162 | ], 163 | "authors": [ 164 | { 165 | "name": "Roman Borschel", 166 | "email": "roman@code-factory.org" 167 | }, 168 | { 169 | "name": "Guilherme Blanco", 170 | "email": "guilhermeblanco@gmail.com" 171 | }, 172 | { 173 | "name": "Johannes Schmitt", 174 | "email": "schmittjoh@gmail.com" 175 | } 176 | ], 177 | "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", 178 | "homepage": "http://www.doctrine-project.org", 179 | "keywords": [ 180 | "lexer", 181 | "parser" 182 | ], 183 | "time": "2014-09-09T13:34:57+00:00" 184 | }, 185 | { 186 | "name": "egulias/email-validator", 187 | "version": "2.1.2", 188 | "source": { 189 | "type": "git", 190 | "url": "https://github.com/egulias/EmailValidator.git", 191 | "reference": "bc31baa11ea2883e017f0a10d9722ef9d50eac1c" 192 | }, 193 | "dist": { 194 | "type": "zip", 195 | "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/bc31baa11ea2883e017f0a10d9722ef9d50eac1c", 196 | "reference": "bc31baa11ea2883e017f0a10d9722ef9d50eac1c", 197 | "shasum": "" 198 | }, 199 | "require": { 200 | "doctrine/lexer": "^1.0.1", 201 | "php": ">= 5.5" 202 | }, 203 | "require-dev": { 204 | "dominicsayers/isemail": "dev-master", 205 | "phpunit/phpunit": "^4.8.0", 206 | "satooshi/php-coveralls": "dev-master" 207 | }, 208 | "suggest": { 209 | "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" 210 | }, 211 | "type": "library", 212 | "extra": { 213 | "branch-alias": { 214 | "dev-master": "2.0.x-dev" 215 | } 216 | }, 217 | "autoload": { 218 | "psr-4": { 219 | "Egulias\\EmailValidator\\": "EmailValidator" 220 | } 221 | }, 222 | "notification-url": "https://packagist.org/downloads/", 223 | "license": [ 224 | "MIT" 225 | ], 226 | "authors": [ 227 | { 228 | "name": "Eduardo Gulias Davis" 229 | } 230 | ], 231 | "description": "A library for validating emails against several RFCs", 232 | "homepage": "https://github.com/egulias/EmailValidator", 233 | "keywords": [ 234 | "email", 235 | "emailvalidation", 236 | "emailvalidator", 237 | "validation", 238 | "validator" 239 | ], 240 | "time": "2017-01-30T22:07:36+00:00" 241 | }, 242 | { 243 | "name": "erusev/parsedown", 244 | "version": "1.6.3", 245 | "source": { 246 | "type": "git", 247 | "url": "https://github.com/erusev/parsedown.git", 248 | "reference": "728952b90a333b5c6f77f06ea9422b94b585878d" 249 | }, 250 | "dist": { 251 | "type": "zip", 252 | "url": "https://api.github.com/repos/erusev/parsedown/zipball/728952b90a333b5c6f77f06ea9422b94b585878d", 253 | "reference": "728952b90a333b5c6f77f06ea9422b94b585878d", 254 | "shasum": "" 255 | }, 256 | "require": { 257 | "php": ">=5.3.0" 258 | }, 259 | "type": "library", 260 | "autoload": { 261 | "psr-0": { 262 | "Parsedown": "" 263 | } 264 | }, 265 | "notification-url": "https://packagist.org/downloads/", 266 | "license": [ 267 | "MIT" 268 | ], 269 | "authors": [ 270 | { 271 | "name": "Emanuil Rusev", 272 | "email": "hello@erusev.com", 273 | "homepage": "http://erusev.com" 274 | } 275 | ], 276 | "description": "Parser for Markdown.", 277 | "homepage": "http://parsedown.org", 278 | "keywords": [ 279 | "markdown", 280 | "parser" 281 | ], 282 | "time": "2017-05-14T14:47:48+00:00" 283 | }, 284 | { 285 | "name": "fzaninotto/faker", 286 | "version": "v1.7.1", 287 | "source": { 288 | "type": "git", 289 | "url": "https://github.com/fzaninotto/Faker.git", 290 | "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d" 291 | }, 292 | "dist": { 293 | "type": "zip", 294 | "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d3ed4cc37051c1ca52d22d76b437d14809fc7e0d", 295 | "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d", 296 | "shasum": "" 297 | }, 298 | "require": { 299 | "php": "^5.3.3 || ^7.0" 300 | }, 301 | "require-dev": { 302 | "ext-intl": "*", 303 | "phpunit/phpunit": "^4.0 || ^5.0", 304 | "squizlabs/php_codesniffer": "^1.5" 305 | }, 306 | "type": "library", 307 | "extra": { 308 | "branch-alias": { 309 | "dev-master": "1.8-dev" 310 | } 311 | }, 312 | "autoload": { 313 | "psr-4": { 314 | "Faker\\": "src/Faker/" 315 | } 316 | }, 317 | "notification-url": "https://packagist.org/downloads/", 318 | "license": [ 319 | "MIT" 320 | ], 321 | "authors": [ 322 | { 323 | "name": "François Zaninotto" 324 | } 325 | ], 326 | "description": "Faker is a PHP library that generates fake data for you.", 327 | "keywords": [ 328 | "data", 329 | "faker", 330 | "fixtures" 331 | ], 332 | "time": "2017-08-15T16:48:10+00:00" 333 | }, 334 | { 335 | "name": "laravel/framework", 336 | "version": "v5.5.12", 337 | "source": { 338 | "type": "git", 339 | "url": "https://github.com/laravel/framework.git", 340 | "reference": "74f5831447817034838b3539c644303036df3d8e" 341 | }, 342 | "dist": { 343 | "type": "zip", 344 | "url": "https://api.github.com/repos/laravel/framework/zipball/74f5831447817034838b3539c644303036df3d8e", 345 | "reference": "74f5831447817034838b3539c644303036df3d8e", 346 | "shasum": "" 347 | }, 348 | "require": { 349 | "doctrine/inflector": "~1.1", 350 | "erusev/parsedown": "~1.6", 351 | "ext-mbstring": "*", 352 | "ext-openssl": "*", 353 | "league/flysystem": "~1.0", 354 | "monolog/monolog": "~1.12", 355 | "mtdowling/cron-expression": "~1.0", 356 | "nesbot/carbon": "~1.20", 357 | "php": ">=7.0", 358 | "psr/container": "~1.0", 359 | "psr/simple-cache": "^1.0", 360 | "ramsey/uuid": "~3.0", 361 | "swiftmailer/swiftmailer": "~6.0", 362 | "symfony/console": "~3.3", 363 | "symfony/debug": "~3.3", 364 | "symfony/finder": "~3.3", 365 | "symfony/http-foundation": "~3.3", 366 | "symfony/http-kernel": "~3.3", 367 | "symfony/process": "~3.3", 368 | "symfony/routing": "~3.3", 369 | "symfony/var-dumper": "~3.3", 370 | "tijsverkoyen/css-to-inline-styles": "~2.2", 371 | "vlucas/phpdotenv": "~2.2" 372 | }, 373 | "replace": { 374 | "illuminate/auth": "self.version", 375 | "illuminate/broadcasting": "self.version", 376 | "illuminate/bus": "self.version", 377 | "illuminate/cache": "self.version", 378 | "illuminate/config": "self.version", 379 | "illuminate/console": "self.version", 380 | "illuminate/container": "self.version", 381 | "illuminate/contracts": "self.version", 382 | "illuminate/cookie": "self.version", 383 | "illuminate/database": "self.version", 384 | "illuminate/encryption": "self.version", 385 | "illuminate/events": "self.version", 386 | "illuminate/exception": "self.version", 387 | "illuminate/filesystem": "self.version", 388 | "illuminate/hashing": "self.version", 389 | "illuminate/http": "self.version", 390 | "illuminate/log": "self.version", 391 | "illuminate/mail": "self.version", 392 | "illuminate/notifications": "self.version", 393 | "illuminate/pagination": "self.version", 394 | "illuminate/pipeline": "self.version", 395 | "illuminate/queue": "self.version", 396 | "illuminate/redis": "self.version", 397 | "illuminate/routing": "self.version", 398 | "illuminate/session": "self.version", 399 | "illuminate/support": "self.version", 400 | "illuminate/translation": "self.version", 401 | "illuminate/validation": "self.version", 402 | "illuminate/view": "self.version", 403 | "tightenco/collect": "self.version" 404 | }, 405 | "require-dev": { 406 | "aws/aws-sdk-php": "~3.0", 407 | "doctrine/dbal": "~2.5", 408 | "filp/whoops": "^2.1.4", 409 | "mockery/mockery": "~1.0", 410 | "orchestra/testbench-core": "3.5.*", 411 | "pda/pheanstalk": "~3.0", 412 | "phpunit/phpunit": "~6.0", 413 | "predis/predis": "^1.1.1", 414 | "symfony/css-selector": "~3.3", 415 | "symfony/dom-crawler": "~3.3" 416 | }, 417 | "suggest": { 418 | "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).", 419 | "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).", 420 | "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).", 421 | "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).", 422 | "laravel/tinker": "Required to use the tinker console command (~1.0).", 423 | "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).", 424 | "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).", 425 | "nexmo/client": "Required to use the Nexmo transport (~1.0).", 426 | "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).", 427 | "predis/predis": "Required to use the redis cache and queue drivers (~1.0).", 428 | "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).", 429 | "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).", 430 | "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).", 431 | "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)." 432 | }, 433 | "type": "library", 434 | "extra": { 435 | "branch-alias": { 436 | "dev-master": "5.5-dev" 437 | } 438 | }, 439 | "autoload": { 440 | "files": [ 441 | "src/Illuminate/Foundation/helpers.php", 442 | "src/Illuminate/Support/helpers.php" 443 | ], 444 | "psr-4": { 445 | "Illuminate\\": "src/Illuminate/" 446 | } 447 | }, 448 | "notification-url": "https://packagist.org/downloads/", 449 | "license": [ 450 | "MIT" 451 | ], 452 | "authors": [ 453 | { 454 | "name": "Taylor Otwell", 455 | "email": "taylor@laravel.com" 456 | } 457 | ], 458 | "description": "The Laravel Framework.", 459 | "homepage": "https://laravel.com", 460 | "keywords": [ 461 | "framework", 462 | "laravel" 463 | ], 464 | "time": "2017-09-22T13:33:35+00:00" 465 | }, 466 | { 467 | "name": "league/flysystem", 468 | "version": "1.0.41", 469 | "source": { 470 | "type": "git", 471 | "url": "https://github.com/thephpleague/flysystem.git", 472 | "reference": "f400aa98912c561ba625ea4065031b7a41e5a155" 473 | }, 474 | "dist": { 475 | "type": "zip", 476 | "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f400aa98912c561ba625ea4065031b7a41e5a155", 477 | "reference": "f400aa98912c561ba625ea4065031b7a41e5a155", 478 | "shasum": "" 479 | }, 480 | "require": { 481 | "php": ">=5.5.9" 482 | }, 483 | "conflict": { 484 | "league/flysystem-sftp": "<1.0.6" 485 | }, 486 | "require-dev": { 487 | "ext-fileinfo": "*", 488 | "mockery/mockery": "~0.9", 489 | "phpspec/phpspec": "^2.2", 490 | "phpunit/phpunit": "~4.8" 491 | }, 492 | "suggest": { 493 | "ext-fileinfo": "Required for MimeType", 494 | "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", 495 | "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", 496 | "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", 497 | "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", 498 | "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", 499 | "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", 500 | "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", 501 | "league/flysystem-webdav": "Allows you to use WebDAV storage", 502 | "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter", 503 | "spatie/flysystem-dropbox": "Allows you to use Dropbox storage", 504 | "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications" 505 | }, 506 | "type": "library", 507 | "extra": { 508 | "branch-alias": { 509 | "dev-master": "1.1-dev" 510 | } 511 | }, 512 | "autoload": { 513 | "psr-4": { 514 | "League\\Flysystem\\": "src/" 515 | } 516 | }, 517 | "notification-url": "https://packagist.org/downloads/", 518 | "license": [ 519 | "MIT" 520 | ], 521 | "authors": [ 522 | { 523 | "name": "Frank de Jonge", 524 | "email": "info@frenky.net" 525 | } 526 | ], 527 | "description": "Filesystem abstraction: Many filesystems, one API.", 528 | "keywords": [ 529 | "Cloud Files", 530 | "WebDAV", 531 | "abstraction", 532 | "aws", 533 | "cloud", 534 | "copy.com", 535 | "dropbox", 536 | "file systems", 537 | "files", 538 | "filesystem", 539 | "filesystems", 540 | "ftp", 541 | "rackspace", 542 | "remote", 543 | "s3", 544 | "sftp", 545 | "storage" 546 | ], 547 | "time": "2017-08-06T17:41:04+00:00" 548 | }, 549 | { 550 | "name": "monolog/monolog", 551 | "version": "1.23.0", 552 | "source": { 553 | "type": "git", 554 | "url": "https://github.com/Seldaek/monolog.git", 555 | "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4" 556 | }, 557 | "dist": { 558 | "type": "zip", 559 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4", 560 | "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4", 561 | "shasum": "" 562 | }, 563 | "require": { 564 | "php": ">=5.3.0", 565 | "psr/log": "~1.0" 566 | }, 567 | "provide": { 568 | "psr/log-implementation": "1.0.0" 569 | }, 570 | "require-dev": { 571 | "aws/aws-sdk-php": "^2.4.9 || ^3.0", 572 | "doctrine/couchdb": "~1.0@dev", 573 | "graylog2/gelf-php": "~1.0", 574 | "jakub-onderka/php-parallel-lint": "0.9", 575 | "php-amqplib/php-amqplib": "~2.4", 576 | "php-console/php-console": "^3.1.3", 577 | "phpunit/phpunit": "~4.5", 578 | "phpunit/phpunit-mock-objects": "2.3.0", 579 | "ruflin/elastica": ">=0.90 <3.0", 580 | "sentry/sentry": "^0.13", 581 | "swiftmailer/swiftmailer": "^5.3|^6.0" 582 | }, 583 | "suggest": { 584 | "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", 585 | "doctrine/couchdb": "Allow sending log messages to a CouchDB server", 586 | "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", 587 | "ext-mongo": "Allow sending log messages to a MongoDB server", 588 | "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", 589 | "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", 590 | "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", 591 | "php-console/php-console": "Allow sending log messages to Google Chrome", 592 | "rollbar/rollbar": "Allow sending log messages to Rollbar", 593 | "ruflin/elastica": "Allow sending log messages to an Elastic Search server", 594 | "sentry/sentry": "Allow sending log messages to a Sentry server" 595 | }, 596 | "type": "library", 597 | "extra": { 598 | "branch-alias": { 599 | "dev-master": "2.0.x-dev" 600 | } 601 | }, 602 | "autoload": { 603 | "psr-4": { 604 | "Monolog\\": "src/Monolog" 605 | } 606 | }, 607 | "notification-url": "https://packagist.org/downloads/", 608 | "license": [ 609 | "MIT" 610 | ], 611 | "authors": [ 612 | { 613 | "name": "Jordi Boggiano", 614 | "email": "j.boggiano@seld.be", 615 | "homepage": "http://seld.be" 616 | } 617 | ], 618 | "description": "Sends your logs to files, sockets, inboxes, databases and various web services", 619 | "homepage": "http://github.com/Seldaek/monolog", 620 | "keywords": [ 621 | "log", 622 | "logging", 623 | "psr-3" 624 | ], 625 | "time": "2017-06-19T01:22:40+00:00" 626 | }, 627 | { 628 | "name": "mtdowling/cron-expression", 629 | "version": "v1.2.0", 630 | "source": { 631 | "type": "git", 632 | "url": "https://github.com/mtdowling/cron-expression.git", 633 | "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad" 634 | }, 635 | "dist": { 636 | "type": "zip", 637 | "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad", 638 | "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad", 639 | "shasum": "" 640 | }, 641 | "require": { 642 | "php": ">=5.3.2" 643 | }, 644 | "require-dev": { 645 | "phpunit/phpunit": "~4.0|~5.0" 646 | }, 647 | "type": "library", 648 | "autoload": { 649 | "psr-4": { 650 | "Cron\\": "src/Cron/" 651 | } 652 | }, 653 | "notification-url": "https://packagist.org/downloads/", 654 | "license": [ 655 | "MIT" 656 | ], 657 | "authors": [ 658 | { 659 | "name": "Michael Dowling", 660 | "email": "mtdowling@gmail.com", 661 | "homepage": "https://github.com/mtdowling" 662 | } 663 | ], 664 | "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", 665 | "keywords": [ 666 | "cron", 667 | "schedule" 668 | ], 669 | "time": "2017-01-23T04:29:33+00:00" 670 | }, 671 | { 672 | "name": "myclabs/deep-copy", 673 | "version": "1.6.1", 674 | "source": { 675 | "type": "git", 676 | "url": "https://github.com/myclabs/DeepCopy.git", 677 | "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102" 678 | }, 679 | "dist": { 680 | "type": "zip", 681 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/8e6e04167378abf1ddb4d3522d8755c5fd90d102", 682 | "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102", 683 | "shasum": "" 684 | }, 685 | "require": { 686 | "php": ">=5.4.0" 687 | }, 688 | "require-dev": { 689 | "doctrine/collections": "1.*", 690 | "phpunit/phpunit": "~4.1" 691 | }, 692 | "type": "library", 693 | "autoload": { 694 | "psr-4": { 695 | "DeepCopy\\": "src/DeepCopy/" 696 | } 697 | }, 698 | "notification-url": "https://packagist.org/downloads/", 699 | "license": [ 700 | "MIT" 701 | ], 702 | "description": "Create deep copies (clones) of your objects", 703 | "homepage": "https://github.com/myclabs/DeepCopy", 704 | "keywords": [ 705 | "clone", 706 | "copy", 707 | "duplicate", 708 | "object", 709 | "object graph" 710 | ], 711 | "time": "2017-04-12T18:52:22+00:00" 712 | }, 713 | { 714 | "name": "nesbot/carbon", 715 | "version": "1.22.1", 716 | "source": { 717 | "type": "git", 718 | "url": "https://github.com/briannesbitt/Carbon.git", 719 | "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc" 720 | }, 721 | "dist": { 722 | "type": "zip", 723 | "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc", 724 | "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc", 725 | "shasum": "" 726 | }, 727 | "require": { 728 | "php": ">=5.3.0", 729 | "symfony/translation": "~2.6 || ~3.0" 730 | }, 731 | "require-dev": { 732 | "friendsofphp/php-cs-fixer": "~2", 733 | "phpunit/phpunit": "~4.0 || ~5.0" 734 | }, 735 | "type": "library", 736 | "extra": { 737 | "branch-alias": { 738 | "dev-master": "1.23-dev" 739 | } 740 | }, 741 | "autoload": { 742 | "psr-4": { 743 | "Carbon\\": "src/Carbon/" 744 | } 745 | }, 746 | "notification-url": "https://packagist.org/downloads/", 747 | "license": [ 748 | "MIT" 749 | ], 750 | "authors": [ 751 | { 752 | "name": "Brian Nesbitt", 753 | "email": "brian@nesbot.com", 754 | "homepage": "http://nesbot.com" 755 | } 756 | ], 757 | "description": "A simple API extension for DateTime.", 758 | "homepage": "http://carbon.nesbot.com", 759 | "keywords": [ 760 | "date", 761 | "datetime", 762 | "time" 763 | ], 764 | "time": "2017-01-16T07:55:07+00:00" 765 | }, 766 | { 767 | "name": "orchestra/testbench", 768 | "version": "v3.5.0", 769 | "source": { 770 | "type": "git", 771 | "url": "https://github.com/orchestral/testbench.git", 772 | "reference": "6d3fa0d98eb5ae012081aecfa4a6fb55df82b813" 773 | }, 774 | "dist": { 775 | "type": "zip", 776 | "url": "https://api.github.com/repos/orchestral/testbench/zipball/6d3fa0d98eb5ae012081aecfa4a6fb55df82b813", 777 | "reference": "6d3fa0d98eb5ae012081aecfa4a6fb55df82b813", 778 | "shasum": "" 779 | }, 780 | "require": { 781 | "laravel/framework": "~5.5.0", 782 | "orchestra/testbench-core": "~3.5.0", 783 | "php": ">=7.0", 784 | "phpunit/phpunit": "~6.0" 785 | }, 786 | "require-dev": { 787 | "mockery/mockery": "^0.9.4", 788 | "orchestra/database": "~3.5.0" 789 | }, 790 | "suggest": { 791 | "orchestra/testbench-browser-kit": "Allow to use legacy BrowserKit for testing (~3.5)." 792 | }, 793 | "type": "library", 794 | "extra": { 795 | "branch-alias": { 796 | "dev-master": "3.5-dev" 797 | } 798 | }, 799 | "notification-url": "https://packagist.org/downloads/", 800 | "license": [ 801 | "MIT" 802 | ], 803 | "authors": [ 804 | { 805 | "name": "Mior Muhammad Zaki", 806 | "email": "crynobone@gmail.com", 807 | "homepage": "https://github.com/crynobone" 808 | } 809 | ], 810 | "description": "Laravel Testing Helper for Packages Development", 811 | "homepage": "http://orchestraplatform.com/docs/latest/components/testbench/", 812 | "keywords": [ 813 | "BDD", 814 | "TDD", 815 | "laravel", 816 | "orchestra-platform", 817 | "orchestral", 818 | "testing" 819 | ], 820 | "time": "2017-08-25T10:17:08+00:00" 821 | }, 822 | { 823 | "name": "orchestra/testbench-core", 824 | "version": "v3.5.1", 825 | "source": { 826 | "type": "git", 827 | "url": "https://github.com/orchestral/testbench-core.git", 828 | "reference": "58b168a1e3220540dfc6b58739c0f75758579026" 829 | }, 830 | "dist": { 831 | "type": "zip", 832 | "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/58b168a1e3220540dfc6b58739c0f75758579026", 833 | "reference": "58b168a1e3220540dfc6b58739c0f75758579026", 834 | "shasum": "" 835 | }, 836 | "require": { 837 | "fzaninotto/faker": "~1.4", 838 | "php": ">=7.0" 839 | }, 840 | "require-dev": { 841 | "laravel/framework": "~5.5.0", 842 | "mockery/mockery": "^0.9.4", 843 | "orchestra/database": "~3.5.0", 844 | "phpunit/phpunit": "~6.0" 845 | }, 846 | "suggest": { 847 | "laravel/framework": "Required for testing (~5.5.0).", 848 | "mockery/mockery": "Allow to use Mockery for testing (^0.9.4).", 849 | "orchestra/database": "Allow to use --realpath migration for testing (~3.5).", 850 | "orchestra/testbench-browser-kit": "Allow to use legacy BrowserKit for testing (~3.5).", 851 | "phpunit/phpunit": "Allow to use PHPUnit for testing (~6.0)." 852 | }, 853 | "type": "library", 854 | "extra": { 855 | "branch-alias": { 856 | "dev-master": "3.5-dev" 857 | } 858 | }, 859 | "autoload": { 860 | "psr-4": { 861 | "Orchestra\\Testbench\\": "src/" 862 | } 863 | }, 864 | "notification-url": "https://packagist.org/downloads/", 865 | "license": [ 866 | "MIT" 867 | ], 868 | "authors": [ 869 | { 870 | "name": "Mior Muhammad Zaki", 871 | "email": "crynobone@gmail.com", 872 | "homepage": "https://github.com/crynobone" 873 | } 874 | ], 875 | "description": "Testing Helper for Laravel Development", 876 | "homepage": "http://orchestraplatform.com/docs/latest/components/testbench/", 877 | "keywords": [ 878 | "BDD", 879 | "TDD", 880 | "laravel", 881 | "orchestra-platform", 882 | "orchestral", 883 | "testing" 884 | ], 885 | "time": "2017-09-05T08:25:02+00:00" 886 | }, 887 | { 888 | "name": "paragonie/random_compat", 889 | "version": "v2.0.10", 890 | "source": { 891 | "type": "git", 892 | "url": "https://github.com/paragonie/random_compat.git", 893 | "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d" 894 | }, 895 | "dist": { 896 | "type": "zip", 897 | "url": "https://api.github.com/repos/paragonie/random_compat/zipball/634bae8e911eefa89c1abfbf1b66da679ac8f54d", 898 | "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d", 899 | "shasum": "" 900 | }, 901 | "require": { 902 | "php": ">=5.2.0" 903 | }, 904 | "require-dev": { 905 | "phpunit/phpunit": "4.*|5.*" 906 | }, 907 | "suggest": { 908 | "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." 909 | }, 910 | "type": "library", 911 | "autoload": { 912 | "files": [ 913 | "lib/random.php" 914 | ] 915 | }, 916 | "notification-url": "https://packagist.org/downloads/", 917 | "license": [ 918 | "MIT" 919 | ], 920 | "authors": [ 921 | { 922 | "name": "Paragon Initiative Enterprises", 923 | "email": "security@paragonie.com", 924 | "homepage": "https://paragonie.com" 925 | } 926 | ], 927 | "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", 928 | "keywords": [ 929 | "csprng", 930 | "pseudorandom", 931 | "random" 932 | ], 933 | "time": "2017-03-13T16:27:32+00:00" 934 | }, 935 | { 936 | "name": "phar-io/manifest", 937 | "version": "1.0.1", 938 | "source": { 939 | "type": "git", 940 | "url": "https://github.com/phar-io/manifest.git", 941 | "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" 942 | }, 943 | "dist": { 944 | "type": "zip", 945 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", 946 | "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", 947 | "shasum": "" 948 | }, 949 | "require": { 950 | "ext-dom": "*", 951 | "ext-phar": "*", 952 | "phar-io/version": "^1.0.1", 953 | "php": "^5.6 || ^7.0" 954 | }, 955 | "type": "library", 956 | "extra": { 957 | "branch-alias": { 958 | "dev-master": "1.0.x-dev" 959 | } 960 | }, 961 | "autoload": { 962 | "classmap": [ 963 | "src/" 964 | ] 965 | }, 966 | "notification-url": "https://packagist.org/downloads/", 967 | "license": [ 968 | "BSD-3-Clause" 969 | ], 970 | "authors": [ 971 | { 972 | "name": "Arne Blankerts", 973 | "email": "arne@blankerts.de", 974 | "role": "Developer" 975 | }, 976 | { 977 | "name": "Sebastian Heuer", 978 | "email": "sebastian@phpeople.de", 979 | "role": "Developer" 980 | }, 981 | { 982 | "name": "Sebastian Bergmann", 983 | "email": "sebastian@phpunit.de", 984 | "role": "Developer" 985 | } 986 | ], 987 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", 988 | "time": "2017-03-05T18:14:27+00:00" 989 | }, 990 | { 991 | "name": "phar-io/version", 992 | "version": "1.0.1", 993 | "source": { 994 | "type": "git", 995 | "url": "https://github.com/phar-io/version.git", 996 | "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df" 997 | }, 998 | "dist": { 999 | "type": "zip", 1000 | "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df", 1001 | "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df", 1002 | "shasum": "" 1003 | }, 1004 | "require": { 1005 | "php": "^5.6 || ^7.0" 1006 | }, 1007 | "type": "library", 1008 | "autoload": { 1009 | "classmap": [ 1010 | "src/" 1011 | ] 1012 | }, 1013 | "notification-url": "https://packagist.org/downloads/", 1014 | "license": [ 1015 | "BSD-3-Clause" 1016 | ], 1017 | "authors": [ 1018 | { 1019 | "name": "Arne Blankerts", 1020 | "email": "arne@blankerts.de", 1021 | "role": "Developer" 1022 | }, 1023 | { 1024 | "name": "Sebastian Heuer", 1025 | "email": "sebastian@phpeople.de", 1026 | "role": "Developer" 1027 | }, 1028 | { 1029 | "name": "Sebastian Bergmann", 1030 | "email": "sebastian@phpunit.de", 1031 | "role": "Developer" 1032 | } 1033 | ], 1034 | "description": "Library for handling version information and constraints", 1035 | "time": "2017-03-05T17:38:23+00:00" 1036 | }, 1037 | { 1038 | "name": "phpdocumentor/reflection-common", 1039 | "version": "1.0.1", 1040 | "source": { 1041 | "type": "git", 1042 | "url": "https://github.com/phpDocumentor/ReflectionCommon.git", 1043 | "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" 1044 | }, 1045 | "dist": { 1046 | "type": "zip", 1047 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", 1048 | "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", 1049 | "shasum": "" 1050 | }, 1051 | "require": { 1052 | "php": ">=5.5" 1053 | }, 1054 | "require-dev": { 1055 | "phpunit/phpunit": "^4.6" 1056 | }, 1057 | "type": "library", 1058 | "extra": { 1059 | "branch-alias": { 1060 | "dev-master": "1.0.x-dev" 1061 | } 1062 | }, 1063 | "autoload": { 1064 | "psr-4": { 1065 | "phpDocumentor\\Reflection\\": [ 1066 | "src" 1067 | ] 1068 | } 1069 | }, 1070 | "notification-url": "https://packagist.org/downloads/", 1071 | "license": [ 1072 | "MIT" 1073 | ], 1074 | "authors": [ 1075 | { 1076 | "name": "Jaap van Otterdijk", 1077 | "email": "opensource@ijaap.nl" 1078 | } 1079 | ], 1080 | "description": "Common reflection classes used by phpdocumentor to reflect the code structure", 1081 | "homepage": "http://www.phpdoc.org", 1082 | "keywords": [ 1083 | "FQSEN", 1084 | "phpDocumentor", 1085 | "phpdoc", 1086 | "reflection", 1087 | "static analysis" 1088 | ], 1089 | "time": "2017-09-11T18:02:19+00:00" 1090 | }, 1091 | { 1092 | "name": "phpdocumentor/reflection-docblock", 1093 | "version": "4.1.1", 1094 | "source": { 1095 | "type": "git", 1096 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", 1097 | "reference": "2d3d238c433cf69caeb4842e97a3223a116f94b2" 1098 | }, 1099 | "dist": { 1100 | "type": "zip", 1101 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/2d3d238c433cf69caeb4842e97a3223a116f94b2", 1102 | "reference": "2d3d238c433cf69caeb4842e97a3223a116f94b2", 1103 | "shasum": "" 1104 | }, 1105 | "require": { 1106 | "php": "^7.0", 1107 | "phpdocumentor/reflection-common": "^1.0@dev", 1108 | "phpdocumentor/type-resolver": "^0.4.0", 1109 | "webmozart/assert": "^1.0" 1110 | }, 1111 | "require-dev": { 1112 | "mockery/mockery": "^0.9.4", 1113 | "phpunit/phpunit": "^4.4" 1114 | }, 1115 | "type": "library", 1116 | "autoload": { 1117 | "psr-4": { 1118 | "phpDocumentor\\Reflection\\": [ 1119 | "src/" 1120 | ] 1121 | } 1122 | }, 1123 | "notification-url": "https://packagist.org/downloads/", 1124 | "license": [ 1125 | "MIT" 1126 | ], 1127 | "authors": [ 1128 | { 1129 | "name": "Mike van Riel", 1130 | "email": "me@mikevanriel.com" 1131 | } 1132 | ], 1133 | "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", 1134 | "time": "2017-08-30T18:51:59+00:00" 1135 | }, 1136 | { 1137 | "name": "phpdocumentor/type-resolver", 1138 | "version": "0.4.0", 1139 | "source": { 1140 | "type": "git", 1141 | "url": "https://github.com/phpDocumentor/TypeResolver.git", 1142 | "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" 1143 | }, 1144 | "dist": { 1145 | "type": "zip", 1146 | "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", 1147 | "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", 1148 | "shasum": "" 1149 | }, 1150 | "require": { 1151 | "php": "^5.5 || ^7.0", 1152 | "phpdocumentor/reflection-common": "^1.0" 1153 | }, 1154 | "require-dev": { 1155 | "mockery/mockery": "^0.9.4", 1156 | "phpunit/phpunit": "^5.2||^4.8.24" 1157 | }, 1158 | "type": "library", 1159 | "extra": { 1160 | "branch-alias": { 1161 | "dev-master": "1.0.x-dev" 1162 | } 1163 | }, 1164 | "autoload": { 1165 | "psr-4": { 1166 | "phpDocumentor\\Reflection\\": [ 1167 | "src/" 1168 | ] 1169 | } 1170 | }, 1171 | "notification-url": "https://packagist.org/downloads/", 1172 | "license": [ 1173 | "MIT" 1174 | ], 1175 | "authors": [ 1176 | { 1177 | "name": "Mike van Riel", 1178 | "email": "me@mikevanriel.com" 1179 | } 1180 | ], 1181 | "time": "2017-07-14T14:27:02+00:00" 1182 | }, 1183 | { 1184 | "name": "phpspec/prophecy", 1185 | "version": "v1.7.2", 1186 | "source": { 1187 | "type": "git", 1188 | "url": "https://github.com/phpspec/prophecy.git", 1189 | "reference": "c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6" 1190 | }, 1191 | "dist": { 1192 | "type": "zip", 1193 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6", 1194 | "reference": "c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6", 1195 | "shasum": "" 1196 | }, 1197 | "require": { 1198 | "doctrine/instantiator": "^1.0.2", 1199 | "php": "^5.3|^7.0", 1200 | "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", 1201 | "sebastian/comparator": "^1.1|^2.0", 1202 | "sebastian/recursion-context": "^1.0|^2.0|^3.0" 1203 | }, 1204 | "require-dev": { 1205 | "phpspec/phpspec": "^2.5|^3.2", 1206 | "phpunit/phpunit": "^4.8 || ^5.6.5" 1207 | }, 1208 | "type": "library", 1209 | "extra": { 1210 | "branch-alias": { 1211 | "dev-master": "1.7.x-dev" 1212 | } 1213 | }, 1214 | "autoload": { 1215 | "psr-0": { 1216 | "Prophecy\\": "src/" 1217 | } 1218 | }, 1219 | "notification-url": "https://packagist.org/downloads/", 1220 | "license": [ 1221 | "MIT" 1222 | ], 1223 | "authors": [ 1224 | { 1225 | "name": "Konstantin Kudryashov", 1226 | "email": "ever.zet@gmail.com", 1227 | "homepage": "http://everzet.com" 1228 | }, 1229 | { 1230 | "name": "Marcello Duarte", 1231 | "email": "marcello.duarte@gmail.com" 1232 | } 1233 | ], 1234 | "description": "Highly opinionated mocking framework for PHP 5.3+", 1235 | "homepage": "https://github.com/phpspec/prophecy", 1236 | "keywords": [ 1237 | "Double", 1238 | "Dummy", 1239 | "fake", 1240 | "mock", 1241 | "spy", 1242 | "stub" 1243 | ], 1244 | "time": "2017-09-04T11:05:03+00:00" 1245 | }, 1246 | { 1247 | "name": "phpunit/php-code-coverage", 1248 | "version": "5.2.2", 1249 | "source": { 1250 | "type": "git", 1251 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 1252 | "reference": "8ed1902a57849e117b5651fc1a5c48110946c06b" 1253 | }, 1254 | "dist": { 1255 | "type": "zip", 1256 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/8ed1902a57849e117b5651fc1a5c48110946c06b", 1257 | "reference": "8ed1902a57849e117b5651fc1a5c48110946c06b", 1258 | "shasum": "" 1259 | }, 1260 | "require": { 1261 | "ext-dom": "*", 1262 | "ext-xmlwriter": "*", 1263 | "php": "^7.0", 1264 | "phpunit/php-file-iterator": "^1.4.2", 1265 | "phpunit/php-text-template": "^1.2.1", 1266 | "phpunit/php-token-stream": "^1.4.11 || ^2.0", 1267 | "sebastian/code-unit-reverse-lookup": "^1.0.1", 1268 | "sebastian/environment": "^3.0", 1269 | "sebastian/version": "^2.0.1", 1270 | "theseer/tokenizer": "^1.1" 1271 | }, 1272 | "require-dev": { 1273 | "ext-xdebug": "^2.5", 1274 | "phpunit/phpunit": "^6.0" 1275 | }, 1276 | "suggest": { 1277 | "ext-xdebug": "^2.5.5" 1278 | }, 1279 | "type": "library", 1280 | "extra": { 1281 | "branch-alias": { 1282 | "dev-master": "5.2.x-dev" 1283 | } 1284 | }, 1285 | "autoload": { 1286 | "classmap": [ 1287 | "src/" 1288 | ] 1289 | }, 1290 | "notification-url": "https://packagist.org/downloads/", 1291 | "license": [ 1292 | "BSD-3-Clause" 1293 | ], 1294 | "authors": [ 1295 | { 1296 | "name": "Sebastian Bergmann", 1297 | "email": "sb@sebastian-bergmann.de", 1298 | "role": "lead" 1299 | } 1300 | ], 1301 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 1302 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 1303 | "keywords": [ 1304 | "coverage", 1305 | "testing", 1306 | "xunit" 1307 | ], 1308 | "time": "2017-08-03T12:40:43+00:00" 1309 | }, 1310 | { 1311 | "name": "phpunit/php-file-iterator", 1312 | "version": "1.4.2", 1313 | "source": { 1314 | "type": "git", 1315 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 1316 | "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5" 1317 | }, 1318 | "dist": { 1319 | "type": "zip", 1320 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5", 1321 | "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5", 1322 | "shasum": "" 1323 | }, 1324 | "require": { 1325 | "php": ">=5.3.3" 1326 | }, 1327 | "type": "library", 1328 | "extra": { 1329 | "branch-alias": { 1330 | "dev-master": "1.4.x-dev" 1331 | } 1332 | }, 1333 | "autoload": { 1334 | "classmap": [ 1335 | "src/" 1336 | ] 1337 | }, 1338 | "notification-url": "https://packagist.org/downloads/", 1339 | "license": [ 1340 | "BSD-3-Clause" 1341 | ], 1342 | "authors": [ 1343 | { 1344 | "name": "Sebastian Bergmann", 1345 | "email": "sb@sebastian-bergmann.de", 1346 | "role": "lead" 1347 | } 1348 | ], 1349 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 1350 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 1351 | "keywords": [ 1352 | "filesystem", 1353 | "iterator" 1354 | ], 1355 | "time": "2016-10-03T07:40:28+00:00" 1356 | }, 1357 | { 1358 | "name": "phpunit/php-text-template", 1359 | "version": "1.2.1", 1360 | "source": { 1361 | "type": "git", 1362 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 1363 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" 1364 | }, 1365 | "dist": { 1366 | "type": "zip", 1367 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 1368 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 1369 | "shasum": "" 1370 | }, 1371 | "require": { 1372 | "php": ">=5.3.3" 1373 | }, 1374 | "type": "library", 1375 | "autoload": { 1376 | "classmap": [ 1377 | "src/" 1378 | ] 1379 | }, 1380 | "notification-url": "https://packagist.org/downloads/", 1381 | "license": [ 1382 | "BSD-3-Clause" 1383 | ], 1384 | "authors": [ 1385 | { 1386 | "name": "Sebastian Bergmann", 1387 | "email": "sebastian@phpunit.de", 1388 | "role": "lead" 1389 | } 1390 | ], 1391 | "description": "Simple template engine.", 1392 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 1393 | "keywords": [ 1394 | "template" 1395 | ], 1396 | "time": "2015-06-21T13:50:34+00:00" 1397 | }, 1398 | { 1399 | "name": "phpunit/php-timer", 1400 | "version": "1.0.9", 1401 | "source": { 1402 | "type": "git", 1403 | "url": "https://github.com/sebastianbergmann/php-timer.git", 1404 | "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f" 1405 | }, 1406 | "dist": { 1407 | "type": "zip", 1408 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", 1409 | "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", 1410 | "shasum": "" 1411 | }, 1412 | "require": { 1413 | "php": "^5.3.3 || ^7.0" 1414 | }, 1415 | "require-dev": { 1416 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" 1417 | }, 1418 | "type": "library", 1419 | "extra": { 1420 | "branch-alias": { 1421 | "dev-master": "1.0-dev" 1422 | } 1423 | }, 1424 | "autoload": { 1425 | "classmap": [ 1426 | "src/" 1427 | ] 1428 | }, 1429 | "notification-url": "https://packagist.org/downloads/", 1430 | "license": [ 1431 | "BSD-3-Clause" 1432 | ], 1433 | "authors": [ 1434 | { 1435 | "name": "Sebastian Bergmann", 1436 | "email": "sb@sebastian-bergmann.de", 1437 | "role": "lead" 1438 | } 1439 | ], 1440 | "description": "Utility class for timing", 1441 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 1442 | "keywords": [ 1443 | "timer" 1444 | ], 1445 | "time": "2017-02-26T11:10:40+00:00" 1446 | }, 1447 | { 1448 | "name": "phpunit/php-token-stream", 1449 | "version": "2.0.1", 1450 | "source": { 1451 | "type": "git", 1452 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", 1453 | "reference": "9a02332089ac48e704c70f6cefed30c224e3c0b0" 1454 | }, 1455 | "dist": { 1456 | "type": "zip", 1457 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9a02332089ac48e704c70f6cefed30c224e3c0b0", 1458 | "reference": "9a02332089ac48e704c70f6cefed30c224e3c0b0", 1459 | "shasum": "" 1460 | }, 1461 | "require": { 1462 | "ext-tokenizer": "*", 1463 | "php": "^7.0" 1464 | }, 1465 | "require-dev": { 1466 | "phpunit/phpunit": "^6.2.4" 1467 | }, 1468 | "type": "library", 1469 | "extra": { 1470 | "branch-alias": { 1471 | "dev-master": "2.0-dev" 1472 | } 1473 | }, 1474 | "autoload": { 1475 | "classmap": [ 1476 | "src/" 1477 | ] 1478 | }, 1479 | "notification-url": "https://packagist.org/downloads/", 1480 | "license": [ 1481 | "BSD-3-Clause" 1482 | ], 1483 | "authors": [ 1484 | { 1485 | "name": "Sebastian Bergmann", 1486 | "email": "sebastian@phpunit.de" 1487 | } 1488 | ], 1489 | "description": "Wrapper around PHP's tokenizer extension.", 1490 | "homepage": "https://github.com/sebastianbergmann/php-token-stream/", 1491 | "keywords": [ 1492 | "tokenizer" 1493 | ], 1494 | "time": "2017-08-20T05:47:52+00:00" 1495 | }, 1496 | { 1497 | "name": "phpunit/phpunit", 1498 | "version": "6.3.0", 1499 | "source": { 1500 | "type": "git", 1501 | "url": "https://github.com/sebastianbergmann/phpunit.git", 1502 | "reference": "9501bab711403a1ab5b8378a8adb4ec3db3debdb" 1503 | }, 1504 | "dist": { 1505 | "type": "zip", 1506 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9501bab711403a1ab5b8378a8adb4ec3db3debdb", 1507 | "reference": "9501bab711403a1ab5b8378a8adb4ec3db3debdb", 1508 | "shasum": "" 1509 | }, 1510 | "require": { 1511 | "ext-dom": "*", 1512 | "ext-json": "*", 1513 | "ext-libxml": "*", 1514 | "ext-mbstring": "*", 1515 | "ext-xml": "*", 1516 | "myclabs/deep-copy": "^1.6.1", 1517 | "phar-io/manifest": "^1.0.1", 1518 | "phar-io/version": "^1.0", 1519 | "php": "^7.0", 1520 | "phpspec/prophecy": "^1.7", 1521 | "phpunit/php-code-coverage": "^5.2.2", 1522 | "phpunit/php-file-iterator": "^1.4.2", 1523 | "phpunit/php-text-template": "^1.2.1", 1524 | "phpunit/php-timer": "^1.0.9", 1525 | "phpunit/phpunit-mock-objects": "^4.0.3", 1526 | "sebastian/comparator": "^2.0.2", 1527 | "sebastian/diff": "^2.0", 1528 | "sebastian/environment": "^3.1", 1529 | "sebastian/exporter": "^3.1", 1530 | "sebastian/global-state": "^2.0", 1531 | "sebastian/object-enumerator": "^3.0.3", 1532 | "sebastian/resource-operations": "^1.0", 1533 | "sebastian/version": "^2.0.1" 1534 | }, 1535 | "conflict": { 1536 | "phpdocumentor/reflection-docblock": "3.0.2", 1537 | "phpunit/dbunit": "<3.0" 1538 | }, 1539 | "require-dev": { 1540 | "ext-pdo": "*" 1541 | }, 1542 | "suggest": { 1543 | "ext-xdebug": "*", 1544 | "phpunit/php-invoker": "^1.1" 1545 | }, 1546 | "bin": [ 1547 | "phpunit" 1548 | ], 1549 | "type": "library", 1550 | "extra": { 1551 | "branch-alias": { 1552 | "dev-master": "6.3.x-dev" 1553 | } 1554 | }, 1555 | "autoload": { 1556 | "classmap": [ 1557 | "src/" 1558 | ] 1559 | }, 1560 | "notification-url": "https://packagist.org/downloads/", 1561 | "license": [ 1562 | "BSD-3-Clause" 1563 | ], 1564 | "authors": [ 1565 | { 1566 | "name": "Sebastian Bergmann", 1567 | "email": "sebastian@phpunit.de", 1568 | "role": "lead" 1569 | } 1570 | ], 1571 | "description": "The PHP Unit Testing framework.", 1572 | "homepage": "https://phpunit.de/", 1573 | "keywords": [ 1574 | "phpunit", 1575 | "testing", 1576 | "xunit" 1577 | ], 1578 | "time": "2017-08-04T05:20:39+00:00" 1579 | }, 1580 | { 1581 | "name": "phpunit/phpunit-mock-objects", 1582 | "version": "4.0.4", 1583 | "source": { 1584 | "type": "git", 1585 | "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", 1586 | "reference": "2f789b59ab89669015ad984afa350c4ec577ade0" 1587 | }, 1588 | "dist": { 1589 | "type": "zip", 1590 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/2f789b59ab89669015ad984afa350c4ec577ade0", 1591 | "reference": "2f789b59ab89669015ad984afa350c4ec577ade0", 1592 | "shasum": "" 1593 | }, 1594 | "require": { 1595 | "doctrine/instantiator": "^1.0.5", 1596 | "php": "^7.0", 1597 | "phpunit/php-text-template": "^1.2.1", 1598 | "sebastian/exporter": "^3.0" 1599 | }, 1600 | "conflict": { 1601 | "phpunit/phpunit": "<6.0" 1602 | }, 1603 | "require-dev": { 1604 | "phpunit/phpunit": "^6.0" 1605 | }, 1606 | "suggest": { 1607 | "ext-soap": "*" 1608 | }, 1609 | "type": "library", 1610 | "extra": { 1611 | "branch-alias": { 1612 | "dev-master": "4.0.x-dev" 1613 | } 1614 | }, 1615 | "autoload": { 1616 | "classmap": [ 1617 | "src/" 1618 | ] 1619 | }, 1620 | "notification-url": "https://packagist.org/downloads/", 1621 | "license": [ 1622 | "BSD-3-Clause" 1623 | ], 1624 | "authors": [ 1625 | { 1626 | "name": "Sebastian Bergmann", 1627 | "email": "sb@sebastian-bergmann.de", 1628 | "role": "lead" 1629 | } 1630 | ], 1631 | "description": "Mock Object library for PHPUnit", 1632 | "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", 1633 | "keywords": [ 1634 | "mock", 1635 | "xunit" 1636 | ], 1637 | "time": "2017-08-03T14:08:16+00:00" 1638 | }, 1639 | { 1640 | "name": "psr/container", 1641 | "version": "1.0.0", 1642 | "source": { 1643 | "type": "git", 1644 | "url": "https://github.com/php-fig/container.git", 1645 | "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" 1646 | }, 1647 | "dist": { 1648 | "type": "zip", 1649 | "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", 1650 | "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", 1651 | "shasum": "" 1652 | }, 1653 | "require": { 1654 | "php": ">=5.3.0" 1655 | }, 1656 | "type": "library", 1657 | "extra": { 1658 | "branch-alias": { 1659 | "dev-master": "1.0.x-dev" 1660 | } 1661 | }, 1662 | "autoload": { 1663 | "psr-4": { 1664 | "Psr\\Container\\": "src/" 1665 | } 1666 | }, 1667 | "notification-url": "https://packagist.org/downloads/", 1668 | "license": [ 1669 | "MIT" 1670 | ], 1671 | "authors": [ 1672 | { 1673 | "name": "PHP-FIG", 1674 | "homepage": "http://www.php-fig.org/" 1675 | } 1676 | ], 1677 | "description": "Common Container Interface (PHP FIG PSR-11)", 1678 | "homepage": "https://github.com/php-fig/container", 1679 | "keywords": [ 1680 | "PSR-11", 1681 | "container", 1682 | "container-interface", 1683 | "container-interop", 1684 | "psr" 1685 | ], 1686 | "time": "2017-02-14T16:28:37+00:00" 1687 | }, 1688 | { 1689 | "name": "psr/log", 1690 | "version": "1.0.2", 1691 | "source": { 1692 | "type": "git", 1693 | "url": "https://github.com/php-fig/log.git", 1694 | "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" 1695 | }, 1696 | "dist": { 1697 | "type": "zip", 1698 | "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", 1699 | "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", 1700 | "shasum": "" 1701 | }, 1702 | "require": { 1703 | "php": ">=5.3.0" 1704 | }, 1705 | "type": "library", 1706 | "extra": { 1707 | "branch-alias": { 1708 | "dev-master": "1.0.x-dev" 1709 | } 1710 | }, 1711 | "autoload": { 1712 | "psr-4": { 1713 | "Psr\\Log\\": "Psr/Log/" 1714 | } 1715 | }, 1716 | "notification-url": "https://packagist.org/downloads/", 1717 | "license": [ 1718 | "MIT" 1719 | ], 1720 | "authors": [ 1721 | { 1722 | "name": "PHP-FIG", 1723 | "homepage": "http://www.php-fig.org/" 1724 | } 1725 | ], 1726 | "description": "Common interface for logging libraries", 1727 | "homepage": "https://github.com/php-fig/log", 1728 | "keywords": [ 1729 | "log", 1730 | "psr", 1731 | "psr-3" 1732 | ], 1733 | "time": "2016-10-10T12:19:37+00:00" 1734 | }, 1735 | { 1736 | "name": "psr/simple-cache", 1737 | "version": "1.0.0", 1738 | "source": { 1739 | "type": "git", 1740 | "url": "https://github.com/php-fig/simple-cache.git", 1741 | "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24" 1742 | }, 1743 | "dist": { 1744 | "type": "zip", 1745 | "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24", 1746 | "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24", 1747 | "shasum": "" 1748 | }, 1749 | "require": { 1750 | "php": ">=5.3.0" 1751 | }, 1752 | "type": "library", 1753 | "extra": { 1754 | "branch-alias": { 1755 | "dev-master": "1.0.x-dev" 1756 | } 1757 | }, 1758 | "autoload": { 1759 | "psr-4": { 1760 | "Psr\\SimpleCache\\": "src/" 1761 | } 1762 | }, 1763 | "notification-url": "https://packagist.org/downloads/", 1764 | "license": [ 1765 | "MIT" 1766 | ], 1767 | "authors": [ 1768 | { 1769 | "name": "PHP-FIG", 1770 | "homepage": "http://www.php-fig.org/" 1771 | } 1772 | ], 1773 | "description": "Common interfaces for simple caching", 1774 | "keywords": [ 1775 | "cache", 1776 | "caching", 1777 | "psr", 1778 | "psr-16", 1779 | "simple-cache" 1780 | ], 1781 | "time": "2017-01-02T13:31:39+00:00" 1782 | }, 1783 | { 1784 | "name": "ramsey/uuid", 1785 | "version": "3.7.1", 1786 | "source": { 1787 | "type": "git", 1788 | "url": "https://github.com/ramsey/uuid.git", 1789 | "reference": "45cffe822057a09e05f7bd09ec5fb88eeecd2334" 1790 | }, 1791 | "dist": { 1792 | "type": "zip", 1793 | "url": "https://api.github.com/repos/ramsey/uuid/zipball/45cffe822057a09e05f7bd09ec5fb88eeecd2334", 1794 | "reference": "45cffe822057a09e05f7bd09ec5fb88eeecd2334", 1795 | "shasum": "" 1796 | }, 1797 | "require": { 1798 | "paragonie/random_compat": "^1.0|^2.0", 1799 | "php": "^5.4 || ^7.0" 1800 | }, 1801 | "replace": { 1802 | "rhumsaa/uuid": "self.version" 1803 | }, 1804 | "require-dev": { 1805 | "apigen/apigen": "^4.1", 1806 | "codeception/aspect-mock": "^1.0 | ^2.0", 1807 | "doctrine/annotations": "~1.2.0", 1808 | "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ^2.1", 1809 | "ircmaxell/random-lib": "^1.1", 1810 | "jakub-onderka/php-parallel-lint": "^0.9.0", 1811 | "mockery/mockery": "^0.9.4", 1812 | "moontoast/math": "^1.1", 1813 | "php-mock/php-mock-phpunit": "^0.3|^1.1", 1814 | "phpunit/phpunit": "^4.7|>=5.0 <5.4", 1815 | "satooshi/php-coveralls": "^0.6.1", 1816 | "squizlabs/php_codesniffer": "^2.3" 1817 | }, 1818 | "suggest": { 1819 | "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", 1820 | "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", 1821 | "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter", 1822 | "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", 1823 | "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", 1824 | "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." 1825 | }, 1826 | "type": "library", 1827 | "extra": { 1828 | "branch-alias": { 1829 | "dev-master": "3.x-dev" 1830 | } 1831 | }, 1832 | "autoload": { 1833 | "psr-4": { 1834 | "Ramsey\\Uuid\\": "src/" 1835 | } 1836 | }, 1837 | "notification-url": "https://packagist.org/downloads/", 1838 | "license": [ 1839 | "MIT" 1840 | ], 1841 | "authors": [ 1842 | { 1843 | "name": "Marijn Huizendveld", 1844 | "email": "marijn.huizendveld@gmail.com" 1845 | }, 1846 | { 1847 | "name": "Thibaud Fabre", 1848 | "email": "thibaud@aztech.io" 1849 | }, 1850 | { 1851 | "name": "Ben Ramsey", 1852 | "email": "ben@benramsey.com", 1853 | "homepage": "https://benramsey.com" 1854 | } 1855 | ], 1856 | "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", 1857 | "homepage": "https://github.com/ramsey/uuid", 1858 | "keywords": [ 1859 | "guid", 1860 | "identifier", 1861 | "uuid" 1862 | ], 1863 | "time": "2017-09-22T20:46:04+00:00" 1864 | }, 1865 | { 1866 | "name": "sebastian/code-unit-reverse-lookup", 1867 | "version": "1.0.1", 1868 | "source": { 1869 | "type": "git", 1870 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", 1871 | "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" 1872 | }, 1873 | "dist": { 1874 | "type": "zip", 1875 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", 1876 | "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", 1877 | "shasum": "" 1878 | }, 1879 | "require": { 1880 | "php": "^5.6 || ^7.0" 1881 | }, 1882 | "require-dev": { 1883 | "phpunit/phpunit": "^5.7 || ^6.0" 1884 | }, 1885 | "type": "library", 1886 | "extra": { 1887 | "branch-alias": { 1888 | "dev-master": "1.0.x-dev" 1889 | } 1890 | }, 1891 | "autoload": { 1892 | "classmap": [ 1893 | "src/" 1894 | ] 1895 | }, 1896 | "notification-url": "https://packagist.org/downloads/", 1897 | "license": [ 1898 | "BSD-3-Clause" 1899 | ], 1900 | "authors": [ 1901 | { 1902 | "name": "Sebastian Bergmann", 1903 | "email": "sebastian@phpunit.de" 1904 | } 1905 | ], 1906 | "description": "Looks up which function or method a line of code belongs to", 1907 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", 1908 | "time": "2017-03-04T06:30:41+00:00" 1909 | }, 1910 | { 1911 | "name": "sebastian/comparator", 1912 | "version": "2.0.2", 1913 | "source": { 1914 | "type": "git", 1915 | "url": "https://github.com/sebastianbergmann/comparator.git", 1916 | "reference": "ae068fede81d06e7bb9bb46a367210a3d3e1fe6a" 1917 | }, 1918 | "dist": { 1919 | "type": "zip", 1920 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/ae068fede81d06e7bb9bb46a367210a3d3e1fe6a", 1921 | "reference": "ae068fede81d06e7bb9bb46a367210a3d3e1fe6a", 1922 | "shasum": "" 1923 | }, 1924 | "require": { 1925 | "php": "^7.0", 1926 | "sebastian/diff": "^2.0", 1927 | "sebastian/exporter": "^3.0" 1928 | }, 1929 | "require-dev": { 1930 | "phpunit/phpunit": "^6.0" 1931 | }, 1932 | "type": "library", 1933 | "extra": { 1934 | "branch-alias": { 1935 | "dev-master": "2.0.x-dev" 1936 | } 1937 | }, 1938 | "autoload": { 1939 | "classmap": [ 1940 | "src/" 1941 | ] 1942 | }, 1943 | "notification-url": "https://packagist.org/downloads/", 1944 | "license": [ 1945 | "BSD-3-Clause" 1946 | ], 1947 | "authors": [ 1948 | { 1949 | "name": "Jeff Welch", 1950 | "email": "whatthejeff@gmail.com" 1951 | }, 1952 | { 1953 | "name": "Volker Dusch", 1954 | "email": "github@wallbash.com" 1955 | }, 1956 | { 1957 | "name": "Bernhard Schussek", 1958 | "email": "bschussek@2bepublished.at" 1959 | }, 1960 | { 1961 | "name": "Sebastian Bergmann", 1962 | "email": "sebastian@phpunit.de" 1963 | } 1964 | ], 1965 | "description": "Provides the functionality to compare PHP values for equality", 1966 | "homepage": "http://www.github.com/sebastianbergmann/comparator", 1967 | "keywords": [ 1968 | "comparator", 1969 | "compare", 1970 | "equality" 1971 | ], 1972 | "time": "2017-08-03T07:14:59+00:00" 1973 | }, 1974 | { 1975 | "name": "sebastian/diff", 1976 | "version": "2.0.1", 1977 | "source": { 1978 | "type": "git", 1979 | "url": "https://github.com/sebastianbergmann/diff.git", 1980 | "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd" 1981 | }, 1982 | "dist": { 1983 | "type": "zip", 1984 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", 1985 | "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", 1986 | "shasum": "" 1987 | }, 1988 | "require": { 1989 | "php": "^7.0" 1990 | }, 1991 | "require-dev": { 1992 | "phpunit/phpunit": "^6.2" 1993 | }, 1994 | "type": "library", 1995 | "extra": { 1996 | "branch-alias": { 1997 | "dev-master": "2.0-dev" 1998 | } 1999 | }, 2000 | "autoload": { 2001 | "classmap": [ 2002 | "src/" 2003 | ] 2004 | }, 2005 | "notification-url": "https://packagist.org/downloads/", 2006 | "license": [ 2007 | "BSD-3-Clause" 2008 | ], 2009 | "authors": [ 2010 | { 2011 | "name": "Kore Nordmann", 2012 | "email": "mail@kore-nordmann.de" 2013 | }, 2014 | { 2015 | "name": "Sebastian Bergmann", 2016 | "email": "sebastian@phpunit.de" 2017 | } 2018 | ], 2019 | "description": "Diff implementation", 2020 | "homepage": "https://github.com/sebastianbergmann/diff", 2021 | "keywords": [ 2022 | "diff" 2023 | ], 2024 | "time": "2017-08-03T08:09:46+00:00" 2025 | }, 2026 | { 2027 | "name": "sebastian/environment", 2028 | "version": "3.1.0", 2029 | "source": { 2030 | "type": "git", 2031 | "url": "https://github.com/sebastianbergmann/environment.git", 2032 | "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" 2033 | }, 2034 | "dist": { 2035 | "type": "zip", 2036 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", 2037 | "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", 2038 | "shasum": "" 2039 | }, 2040 | "require": { 2041 | "php": "^7.0" 2042 | }, 2043 | "require-dev": { 2044 | "phpunit/phpunit": "^6.1" 2045 | }, 2046 | "type": "library", 2047 | "extra": { 2048 | "branch-alias": { 2049 | "dev-master": "3.1.x-dev" 2050 | } 2051 | }, 2052 | "autoload": { 2053 | "classmap": [ 2054 | "src/" 2055 | ] 2056 | }, 2057 | "notification-url": "https://packagist.org/downloads/", 2058 | "license": [ 2059 | "BSD-3-Clause" 2060 | ], 2061 | "authors": [ 2062 | { 2063 | "name": "Sebastian Bergmann", 2064 | "email": "sebastian@phpunit.de" 2065 | } 2066 | ], 2067 | "description": "Provides functionality to handle HHVM/PHP environments", 2068 | "homepage": "http://www.github.com/sebastianbergmann/environment", 2069 | "keywords": [ 2070 | "Xdebug", 2071 | "environment", 2072 | "hhvm" 2073 | ], 2074 | "time": "2017-07-01T08:51:00+00:00" 2075 | }, 2076 | { 2077 | "name": "sebastian/exporter", 2078 | "version": "3.1.0", 2079 | "source": { 2080 | "type": "git", 2081 | "url": "https://github.com/sebastianbergmann/exporter.git", 2082 | "reference": "234199f4528de6d12aaa58b612e98f7d36adb937" 2083 | }, 2084 | "dist": { 2085 | "type": "zip", 2086 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937", 2087 | "reference": "234199f4528de6d12aaa58b612e98f7d36adb937", 2088 | "shasum": "" 2089 | }, 2090 | "require": { 2091 | "php": "^7.0", 2092 | "sebastian/recursion-context": "^3.0" 2093 | }, 2094 | "require-dev": { 2095 | "ext-mbstring": "*", 2096 | "phpunit/phpunit": "^6.0" 2097 | }, 2098 | "type": "library", 2099 | "extra": { 2100 | "branch-alias": { 2101 | "dev-master": "3.1.x-dev" 2102 | } 2103 | }, 2104 | "autoload": { 2105 | "classmap": [ 2106 | "src/" 2107 | ] 2108 | }, 2109 | "notification-url": "https://packagist.org/downloads/", 2110 | "license": [ 2111 | "BSD-3-Clause" 2112 | ], 2113 | "authors": [ 2114 | { 2115 | "name": "Jeff Welch", 2116 | "email": "whatthejeff@gmail.com" 2117 | }, 2118 | { 2119 | "name": "Volker Dusch", 2120 | "email": "github@wallbash.com" 2121 | }, 2122 | { 2123 | "name": "Bernhard Schussek", 2124 | "email": "bschussek@2bepublished.at" 2125 | }, 2126 | { 2127 | "name": "Sebastian Bergmann", 2128 | "email": "sebastian@phpunit.de" 2129 | }, 2130 | { 2131 | "name": "Adam Harvey", 2132 | "email": "aharvey@php.net" 2133 | } 2134 | ], 2135 | "description": "Provides the functionality to export PHP variables for visualization", 2136 | "homepage": "http://www.github.com/sebastianbergmann/exporter", 2137 | "keywords": [ 2138 | "export", 2139 | "exporter" 2140 | ], 2141 | "time": "2017-04-03T13:19:02+00:00" 2142 | }, 2143 | { 2144 | "name": "sebastian/global-state", 2145 | "version": "2.0.0", 2146 | "source": { 2147 | "type": "git", 2148 | "url": "https://github.com/sebastianbergmann/global-state.git", 2149 | "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" 2150 | }, 2151 | "dist": { 2152 | "type": "zip", 2153 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", 2154 | "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", 2155 | "shasum": "" 2156 | }, 2157 | "require": { 2158 | "php": "^7.0" 2159 | }, 2160 | "require-dev": { 2161 | "phpunit/phpunit": "^6.0" 2162 | }, 2163 | "suggest": { 2164 | "ext-uopz": "*" 2165 | }, 2166 | "type": "library", 2167 | "extra": { 2168 | "branch-alias": { 2169 | "dev-master": "2.0-dev" 2170 | } 2171 | }, 2172 | "autoload": { 2173 | "classmap": [ 2174 | "src/" 2175 | ] 2176 | }, 2177 | "notification-url": "https://packagist.org/downloads/", 2178 | "license": [ 2179 | "BSD-3-Clause" 2180 | ], 2181 | "authors": [ 2182 | { 2183 | "name": "Sebastian Bergmann", 2184 | "email": "sebastian@phpunit.de" 2185 | } 2186 | ], 2187 | "description": "Snapshotting of global state", 2188 | "homepage": "http://www.github.com/sebastianbergmann/global-state", 2189 | "keywords": [ 2190 | "global state" 2191 | ], 2192 | "time": "2017-04-27T15:39:26+00:00" 2193 | }, 2194 | { 2195 | "name": "sebastian/object-enumerator", 2196 | "version": "3.0.3", 2197 | "source": { 2198 | "type": "git", 2199 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", 2200 | "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" 2201 | }, 2202 | "dist": { 2203 | "type": "zip", 2204 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", 2205 | "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", 2206 | "shasum": "" 2207 | }, 2208 | "require": { 2209 | "php": "^7.0", 2210 | "sebastian/object-reflector": "^1.1.1", 2211 | "sebastian/recursion-context": "^3.0" 2212 | }, 2213 | "require-dev": { 2214 | "phpunit/phpunit": "^6.0" 2215 | }, 2216 | "type": "library", 2217 | "extra": { 2218 | "branch-alias": { 2219 | "dev-master": "3.0.x-dev" 2220 | } 2221 | }, 2222 | "autoload": { 2223 | "classmap": [ 2224 | "src/" 2225 | ] 2226 | }, 2227 | "notification-url": "https://packagist.org/downloads/", 2228 | "license": [ 2229 | "BSD-3-Clause" 2230 | ], 2231 | "authors": [ 2232 | { 2233 | "name": "Sebastian Bergmann", 2234 | "email": "sebastian@phpunit.de" 2235 | } 2236 | ], 2237 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", 2238 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", 2239 | "time": "2017-08-03T12:35:26+00:00" 2240 | }, 2241 | { 2242 | "name": "sebastian/object-reflector", 2243 | "version": "1.1.1", 2244 | "source": { 2245 | "type": "git", 2246 | "url": "https://github.com/sebastianbergmann/object-reflector.git", 2247 | "reference": "773f97c67f28de00d397be301821b06708fca0be" 2248 | }, 2249 | "dist": { 2250 | "type": "zip", 2251 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", 2252 | "reference": "773f97c67f28de00d397be301821b06708fca0be", 2253 | "shasum": "" 2254 | }, 2255 | "require": { 2256 | "php": "^7.0" 2257 | }, 2258 | "require-dev": { 2259 | "phpunit/phpunit": "^6.0" 2260 | }, 2261 | "type": "library", 2262 | "extra": { 2263 | "branch-alias": { 2264 | "dev-master": "1.1-dev" 2265 | } 2266 | }, 2267 | "autoload": { 2268 | "classmap": [ 2269 | "src/" 2270 | ] 2271 | }, 2272 | "notification-url": "https://packagist.org/downloads/", 2273 | "license": [ 2274 | "BSD-3-Clause" 2275 | ], 2276 | "authors": [ 2277 | { 2278 | "name": "Sebastian Bergmann", 2279 | "email": "sebastian@phpunit.de" 2280 | } 2281 | ], 2282 | "description": "Allows reflection of object attributes, including inherited and non-public ones", 2283 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", 2284 | "time": "2017-03-29T09:07:27+00:00" 2285 | }, 2286 | { 2287 | "name": "sebastian/recursion-context", 2288 | "version": "3.0.0", 2289 | "source": { 2290 | "type": "git", 2291 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 2292 | "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" 2293 | }, 2294 | "dist": { 2295 | "type": "zip", 2296 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", 2297 | "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", 2298 | "shasum": "" 2299 | }, 2300 | "require": { 2301 | "php": "^7.0" 2302 | }, 2303 | "require-dev": { 2304 | "phpunit/phpunit": "^6.0" 2305 | }, 2306 | "type": "library", 2307 | "extra": { 2308 | "branch-alias": { 2309 | "dev-master": "3.0.x-dev" 2310 | } 2311 | }, 2312 | "autoload": { 2313 | "classmap": [ 2314 | "src/" 2315 | ] 2316 | }, 2317 | "notification-url": "https://packagist.org/downloads/", 2318 | "license": [ 2319 | "BSD-3-Clause" 2320 | ], 2321 | "authors": [ 2322 | { 2323 | "name": "Jeff Welch", 2324 | "email": "whatthejeff@gmail.com" 2325 | }, 2326 | { 2327 | "name": "Sebastian Bergmann", 2328 | "email": "sebastian@phpunit.de" 2329 | }, 2330 | { 2331 | "name": "Adam Harvey", 2332 | "email": "aharvey@php.net" 2333 | } 2334 | ], 2335 | "description": "Provides functionality to recursively process PHP variables", 2336 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 2337 | "time": "2017-03-03T06:23:57+00:00" 2338 | }, 2339 | { 2340 | "name": "sebastian/resource-operations", 2341 | "version": "1.0.0", 2342 | "source": { 2343 | "type": "git", 2344 | "url": "https://github.com/sebastianbergmann/resource-operations.git", 2345 | "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" 2346 | }, 2347 | "dist": { 2348 | "type": "zip", 2349 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", 2350 | "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", 2351 | "shasum": "" 2352 | }, 2353 | "require": { 2354 | "php": ">=5.6.0" 2355 | }, 2356 | "type": "library", 2357 | "extra": { 2358 | "branch-alias": { 2359 | "dev-master": "1.0.x-dev" 2360 | } 2361 | }, 2362 | "autoload": { 2363 | "classmap": [ 2364 | "src/" 2365 | ] 2366 | }, 2367 | "notification-url": "https://packagist.org/downloads/", 2368 | "license": [ 2369 | "BSD-3-Clause" 2370 | ], 2371 | "authors": [ 2372 | { 2373 | "name": "Sebastian Bergmann", 2374 | "email": "sebastian@phpunit.de" 2375 | } 2376 | ], 2377 | "description": "Provides a list of PHP built-in functions that operate on resources", 2378 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", 2379 | "time": "2015-07-28T20:34:47+00:00" 2380 | }, 2381 | { 2382 | "name": "sebastian/version", 2383 | "version": "2.0.1", 2384 | "source": { 2385 | "type": "git", 2386 | "url": "https://github.com/sebastianbergmann/version.git", 2387 | "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" 2388 | }, 2389 | "dist": { 2390 | "type": "zip", 2391 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", 2392 | "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", 2393 | "shasum": "" 2394 | }, 2395 | "require": { 2396 | "php": ">=5.6" 2397 | }, 2398 | "type": "library", 2399 | "extra": { 2400 | "branch-alias": { 2401 | "dev-master": "2.0.x-dev" 2402 | } 2403 | }, 2404 | "autoload": { 2405 | "classmap": [ 2406 | "src/" 2407 | ] 2408 | }, 2409 | "notification-url": "https://packagist.org/downloads/", 2410 | "license": [ 2411 | "BSD-3-Clause" 2412 | ], 2413 | "authors": [ 2414 | { 2415 | "name": "Sebastian Bergmann", 2416 | "email": "sebastian@phpunit.de", 2417 | "role": "lead" 2418 | } 2419 | ], 2420 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 2421 | "homepage": "https://github.com/sebastianbergmann/version", 2422 | "time": "2016-10-03T07:35:21+00:00" 2423 | }, 2424 | { 2425 | "name": "swiftmailer/swiftmailer", 2426 | "version": "v6.0.1", 2427 | "source": { 2428 | "type": "git", 2429 | "url": "https://github.com/swiftmailer/swiftmailer.git", 2430 | "reference": "008f088d535ed3333af5ad804dd4c0eaf97c2805" 2431 | }, 2432 | "dist": { 2433 | "type": "zip", 2434 | "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/008f088d535ed3333af5ad804dd4c0eaf97c2805", 2435 | "reference": "008f088d535ed3333af5ad804dd4c0eaf97c2805", 2436 | "shasum": "" 2437 | }, 2438 | "require": { 2439 | "egulias/email-validator": "~2.0", 2440 | "php": ">=7.0.0" 2441 | }, 2442 | "require-dev": { 2443 | "mockery/mockery": "~0.9.1", 2444 | "symfony/phpunit-bridge": "~3.3@dev" 2445 | }, 2446 | "type": "library", 2447 | "extra": { 2448 | "branch-alias": { 2449 | "dev-master": "6.0-dev" 2450 | } 2451 | }, 2452 | "autoload": { 2453 | "files": [ 2454 | "lib/swift_required.php" 2455 | ] 2456 | }, 2457 | "notification-url": "https://packagist.org/downloads/", 2458 | "license": [ 2459 | "MIT" 2460 | ], 2461 | "authors": [ 2462 | { 2463 | "name": "Chris Corbyn" 2464 | }, 2465 | { 2466 | "name": "Fabien Potencier", 2467 | "email": "fabien@symfony.com" 2468 | } 2469 | ], 2470 | "description": "Swiftmailer, free feature-rich PHP mailer", 2471 | "homepage": "http://swiftmailer.org", 2472 | "keywords": [ 2473 | "email", 2474 | "mail", 2475 | "mailer" 2476 | ], 2477 | "time": "2017-05-20T06:20:27+00:00" 2478 | }, 2479 | { 2480 | "name": "symfony/console", 2481 | "version": "v3.3.9", 2482 | "source": { 2483 | "type": "git", 2484 | "url": "https://github.com/symfony/console.git", 2485 | "reference": "a1e1b01293a090cb9ae2ddd221a3251a4a7e4abf" 2486 | }, 2487 | "dist": { 2488 | "type": "zip", 2489 | "url": "https://api.github.com/repos/symfony/console/zipball/a1e1b01293a090cb9ae2ddd221a3251a4a7e4abf", 2490 | "reference": "a1e1b01293a090cb9ae2ddd221a3251a4a7e4abf", 2491 | "shasum": "" 2492 | }, 2493 | "require": { 2494 | "php": "^5.5.9|>=7.0.8", 2495 | "symfony/debug": "~2.8|~3.0", 2496 | "symfony/polyfill-mbstring": "~1.0" 2497 | }, 2498 | "conflict": { 2499 | "symfony/dependency-injection": "<3.3" 2500 | }, 2501 | "require-dev": { 2502 | "psr/log": "~1.0", 2503 | "symfony/config": "~3.3", 2504 | "symfony/dependency-injection": "~3.3", 2505 | "symfony/event-dispatcher": "~2.8|~3.0", 2506 | "symfony/filesystem": "~2.8|~3.0", 2507 | "symfony/process": "~2.8|~3.0" 2508 | }, 2509 | "suggest": { 2510 | "psr/log": "For using the console logger", 2511 | "symfony/event-dispatcher": "", 2512 | "symfony/filesystem": "", 2513 | "symfony/process": "" 2514 | }, 2515 | "type": "library", 2516 | "extra": { 2517 | "branch-alias": { 2518 | "dev-master": "3.3-dev" 2519 | } 2520 | }, 2521 | "autoload": { 2522 | "psr-4": { 2523 | "Symfony\\Component\\Console\\": "" 2524 | }, 2525 | "exclude-from-classmap": [ 2526 | "/Tests/" 2527 | ] 2528 | }, 2529 | "notification-url": "https://packagist.org/downloads/", 2530 | "license": [ 2531 | "MIT" 2532 | ], 2533 | "authors": [ 2534 | { 2535 | "name": "Fabien Potencier", 2536 | "email": "fabien@symfony.com" 2537 | }, 2538 | { 2539 | "name": "Symfony Community", 2540 | "homepage": "https://symfony.com/contributors" 2541 | } 2542 | ], 2543 | "description": "Symfony Console Component", 2544 | "homepage": "https://symfony.com", 2545 | "time": "2017-09-06T16:40:18+00:00" 2546 | }, 2547 | { 2548 | "name": "symfony/css-selector", 2549 | "version": "v3.3.9", 2550 | "source": { 2551 | "type": "git", 2552 | "url": "https://github.com/symfony/css-selector.git", 2553 | "reference": "c5f5263ed231f164c58368efbce959137c7d9488" 2554 | }, 2555 | "dist": { 2556 | "type": "zip", 2557 | "url": "https://api.github.com/repos/symfony/css-selector/zipball/c5f5263ed231f164c58368efbce959137c7d9488", 2558 | "reference": "c5f5263ed231f164c58368efbce959137c7d9488", 2559 | "shasum": "" 2560 | }, 2561 | "require": { 2562 | "php": "^5.5.9|>=7.0.8" 2563 | }, 2564 | "type": "library", 2565 | "extra": { 2566 | "branch-alias": { 2567 | "dev-master": "3.3-dev" 2568 | } 2569 | }, 2570 | "autoload": { 2571 | "psr-4": { 2572 | "Symfony\\Component\\CssSelector\\": "" 2573 | }, 2574 | "exclude-from-classmap": [ 2575 | "/Tests/" 2576 | ] 2577 | }, 2578 | "notification-url": "https://packagist.org/downloads/", 2579 | "license": [ 2580 | "MIT" 2581 | ], 2582 | "authors": [ 2583 | { 2584 | "name": "Jean-François Simon", 2585 | "email": "jeanfrancois.simon@sensiolabs.com" 2586 | }, 2587 | { 2588 | "name": "Fabien Potencier", 2589 | "email": "fabien@symfony.com" 2590 | }, 2591 | { 2592 | "name": "Symfony Community", 2593 | "homepage": "https://symfony.com/contributors" 2594 | } 2595 | ], 2596 | "description": "Symfony CssSelector Component", 2597 | "homepage": "https://symfony.com", 2598 | "time": "2017-07-29T21:54:42+00:00" 2599 | }, 2600 | { 2601 | "name": "symfony/debug", 2602 | "version": "v3.3.9", 2603 | "source": { 2604 | "type": "git", 2605 | "url": "https://github.com/symfony/debug.git", 2606 | "reference": "8beb24eec70b345c313640962df933499373a944" 2607 | }, 2608 | "dist": { 2609 | "type": "zip", 2610 | "url": "https://api.github.com/repos/symfony/debug/zipball/8beb24eec70b345c313640962df933499373a944", 2611 | "reference": "8beb24eec70b345c313640962df933499373a944", 2612 | "shasum": "" 2613 | }, 2614 | "require": { 2615 | "php": "^5.5.9|>=7.0.8", 2616 | "psr/log": "~1.0" 2617 | }, 2618 | "conflict": { 2619 | "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" 2620 | }, 2621 | "require-dev": { 2622 | "symfony/http-kernel": "~2.8|~3.0" 2623 | }, 2624 | "type": "library", 2625 | "extra": { 2626 | "branch-alias": { 2627 | "dev-master": "3.3-dev" 2628 | } 2629 | }, 2630 | "autoload": { 2631 | "psr-4": { 2632 | "Symfony\\Component\\Debug\\": "" 2633 | }, 2634 | "exclude-from-classmap": [ 2635 | "/Tests/" 2636 | ] 2637 | }, 2638 | "notification-url": "https://packagist.org/downloads/", 2639 | "license": [ 2640 | "MIT" 2641 | ], 2642 | "authors": [ 2643 | { 2644 | "name": "Fabien Potencier", 2645 | "email": "fabien@symfony.com" 2646 | }, 2647 | { 2648 | "name": "Symfony Community", 2649 | "homepage": "https://symfony.com/contributors" 2650 | } 2651 | ], 2652 | "description": "Symfony Debug Component", 2653 | "homepage": "https://symfony.com", 2654 | "time": "2017-09-01T13:23:39+00:00" 2655 | }, 2656 | { 2657 | "name": "symfony/event-dispatcher", 2658 | "version": "v3.3.9", 2659 | "source": { 2660 | "type": "git", 2661 | "url": "https://github.com/symfony/event-dispatcher.git", 2662 | "reference": "54ca9520a00386f83bca145819ad3b619aaa2485" 2663 | }, 2664 | "dist": { 2665 | "type": "zip", 2666 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/54ca9520a00386f83bca145819ad3b619aaa2485", 2667 | "reference": "54ca9520a00386f83bca145819ad3b619aaa2485", 2668 | "shasum": "" 2669 | }, 2670 | "require": { 2671 | "php": "^5.5.9|>=7.0.8" 2672 | }, 2673 | "conflict": { 2674 | "symfony/dependency-injection": "<3.3" 2675 | }, 2676 | "require-dev": { 2677 | "psr/log": "~1.0", 2678 | "symfony/config": "~2.8|~3.0", 2679 | "symfony/dependency-injection": "~3.3", 2680 | "symfony/expression-language": "~2.8|~3.0", 2681 | "symfony/stopwatch": "~2.8|~3.0" 2682 | }, 2683 | "suggest": { 2684 | "symfony/dependency-injection": "", 2685 | "symfony/http-kernel": "" 2686 | }, 2687 | "type": "library", 2688 | "extra": { 2689 | "branch-alias": { 2690 | "dev-master": "3.3-dev" 2691 | } 2692 | }, 2693 | "autoload": { 2694 | "psr-4": { 2695 | "Symfony\\Component\\EventDispatcher\\": "" 2696 | }, 2697 | "exclude-from-classmap": [ 2698 | "/Tests/" 2699 | ] 2700 | }, 2701 | "notification-url": "https://packagist.org/downloads/", 2702 | "license": [ 2703 | "MIT" 2704 | ], 2705 | "authors": [ 2706 | { 2707 | "name": "Fabien Potencier", 2708 | "email": "fabien@symfony.com" 2709 | }, 2710 | { 2711 | "name": "Symfony Community", 2712 | "homepage": "https://symfony.com/contributors" 2713 | } 2714 | ], 2715 | "description": "Symfony EventDispatcher Component", 2716 | "homepage": "https://symfony.com", 2717 | "time": "2017-07-29T21:54:42+00:00" 2718 | }, 2719 | { 2720 | "name": "symfony/finder", 2721 | "version": "v3.3.9", 2722 | "source": { 2723 | "type": "git", 2724 | "url": "https://github.com/symfony/finder.git", 2725 | "reference": "b2260dbc80f3c4198f903215f91a1ac7fe9fe09e" 2726 | }, 2727 | "dist": { 2728 | "type": "zip", 2729 | "url": "https://api.github.com/repos/symfony/finder/zipball/b2260dbc80f3c4198f903215f91a1ac7fe9fe09e", 2730 | "reference": "b2260dbc80f3c4198f903215f91a1ac7fe9fe09e", 2731 | "shasum": "" 2732 | }, 2733 | "require": { 2734 | "php": "^5.5.9|>=7.0.8" 2735 | }, 2736 | "type": "library", 2737 | "extra": { 2738 | "branch-alias": { 2739 | "dev-master": "3.3-dev" 2740 | } 2741 | }, 2742 | "autoload": { 2743 | "psr-4": { 2744 | "Symfony\\Component\\Finder\\": "" 2745 | }, 2746 | "exclude-from-classmap": [ 2747 | "/Tests/" 2748 | ] 2749 | }, 2750 | "notification-url": "https://packagist.org/downloads/", 2751 | "license": [ 2752 | "MIT" 2753 | ], 2754 | "authors": [ 2755 | { 2756 | "name": "Fabien Potencier", 2757 | "email": "fabien@symfony.com" 2758 | }, 2759 | { 2760 | "name": "Symfony Community", 2761 | "homepage": "https://symfony.com/contributors" 2762 | } 2763 | ], 2764 | "description": "Symfony Finder Component", 2765 | "homepage": "https://symfony.com", 2766 | "time": "2017-07-29T21:54:42+00:00" 2767 | }, 2768 | { 2769 | "name": "symfony/http-foundation", 2770 | "version": "v3.3.9", 2771 | "source": { 2772 | "type": "git", 2773 | "url": "https://github.com/symfony/http-foundation.git", 2774 | "reference": "2cdc7de1921d1a1c805a13dc05e44a2cd58f5ad3" 2775 | }, 2776 | "dist": { 2777 | "type": "zip", 2778 | "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2cdc7de1921d1a1c805a13dc05e44a2cd58f5ad3", 2779 | "reference": "2cdc7de1921d1a1c805a13dc05e44a2cd58f5ad3", 2780 | "shasum": "" 2781 | }, 2782 | "require": { 2783 | "php": "^5.5.9|>=7.0.8", 2784 | "symfony/polyfill-mbstring": "~1.1" 2785 | }, 2786 | "require-dev": { 2787 | "symfony/expression-language": "~2.8|~3.0" 2788 | }, 2789 | "type": "library", 2790 | "extra": { 2791 | "branch-alias": { 2792 | "dev-master": "3.3-dev" 2793 | } 2794 | }, 2795 | "autoload": { 2796 | "psr-4": { 2797 | "Symfony\\Component\\HttpFoundation\\": "" 2798 | }, 2799 | "exclude-from-classmap": [ 2800 | "/Tests/" 2801 | ] 2802 | }, 2803 | "notification-url": "https://packagist.org/downloads/", 2804 | "license": [ 2805 | "MIT" 2806 | ], 2807 | "authors": [ 2808 | { 2809 | "name": "Fabien Potencier", 2810 | "email": "fabien@symfony.com" 2811 | }, 2812 | { 2813 | "name": "Symfony Community", 2814 | "homepage": "https://symfony.com/contributors" 2815 | } 2816 | ], 2817 | "description": "Symfony HttpFoundation Component", 2818 | "homepage": "https://symfony.com", 2819 | "time": "2017-09-06T17:07:39+00:00" 2820 | }, 2821 | { 2822 | "name": "symfony/http-kernel", 2823 | "version": "v3.3.9", 2824 | "source": { 2825 | "type": "git", 2826 | "url": "https://github.com/symfony/http-kernel.git", 2827 | "reference": "70f5bb3cdd737624249953b61023411e26be5db7" 2828 | }, 2829 | "dist": { 2830 | "type": "zip", 2831 | "url": "https://api.github.com/repos/symfony/http-kernel/zipball/70f5bb3cdd737624249953b61023411e26be5db7", 2832 | "reference": "70f5bb3cdd737624249953b61023411e26be5db7", 2833 | "shasum": "" 2834 | }, 2835 | "require": { 2836 | "php": "^5.5.9|>=7.0.8", 2837 | "psr/log": "~1.0", 2838 | "symfony/debug": "~2.8|~3.0", 2839 | "symfony/event-dispatcher": "~2.8|~3.0", 2840 | "symfony/http-foundation": "~3.3" 2841 | }, 2842 | "conflict": { 2843 | "symfony/config": "<2.8", 2844 | "symfony/dependency-injection": "<3.3", 2845 | "symfony/var-dumper": "<3.3", 2846 | "twig/twig": "<1.34|<2.4,>=2" 2847 | }, 2848 | "require-dev": { 2849 | "psr/cache": "~1.0", 2850 | "symfony/browser-kit": "~2.8|~3.0", 2851 | "symfony/class-loader": "~2.8|~3.0", 2852 | "symfony/config": "~2.8|~3.0", 2853 | "symfony/console": "~2.8|~3.0", 2854 | "symfony/css-selector": "~2.8|~3.0", 2855 | "symfony/dependency-injection": "~3.3", 2856 | "symfony/dom-crawler": "~2.8|~3.0", 2857 | "symfony/expression-language": "~2.8|~3.0", 2858 | "symfony/finder": "~2.8|~3.0", 2859 | "symfony/process": "~2.8|~3.0", 2860 | "symfony/routing": "~2.8|~3.0", 2861 | "symfony/stopwatch": "~2.8|~3.0", 2862 | "symfony/templating": "~2.8|~3.0", 2863 | "symfony/translation": "~2.8|~3.0", 2864 | "symfony/var-dumper": "~3.3" 2865 | }, 2866 | "suggest": { 2867 | "symfony/browser-kit": "", 2868 | "symfony/class-loader": "", 2869 | "symfony/config": "", 2870 | "symfony/console": "", 2871 | "symfony/dependency-injection": "", 2872 | "symfony/finder": "", 2873 | "symfony/var-dumper": "" 2874 | }, 2875 | "type": "library", 2876 | "extra": { 2877 | "branch-alias": { 2878 | "dev-master": "3.3-dev" 2879 | } 2880 | }, 2881 | "autoload": { 2882 | "psr-4": { 2883 | "Symfony\\Component\\HttpKernel\\": "" 2884 | }, 2885 | "exclude-from-classmap": [ 2886 | "/Tests/" 2887 | ] 2888 | }, 2889 | "notification-url": "https://packagist.org/downloads/", 2890 | "license": [ 2891 | "MIT" 2892 | ], 2893 | "authors": [ 2894 | { 2895 | "name": "Fabien Potencier", 2896 | "email": "fabien@symfony.com" 2897 | }, 2898 | { 2899 | "name": "Symfony Community", 2900 | "homepage": "https://symfony.com/contributors" 2901 | } 2902 | ], 2903 | "description": "Symfony HttpKernel Component", 2904 | "homepage": "https://symfony.com", 2905 | "time": "2017-09-11T16:13:23+00:00" 2906 | }, 2907 | { 2908 | "name": "symfony/polyfill-mbstring", 2909 | "version": "v1.5.0", 2910 | "source": { 2911 | "type": "git", 2912 | "url": "https://github.com/symfony/polyfill-mbstring.git", 2913 | "reference": "7c8fae0ac1d216eb54349e6a8baa57d515fe8803" 2914 | }, 2915 | "dist": { 2916 | "type": "zip", 2917 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7c8fae0ac1d216eb54349e6a8baa57d515fe8803", 2918 | "reference": "7c8fae0ac1d216eb54349e6a8baa57d515fe8803", 2919 | "shasum": "" 2920 | }, 2921 | "require": { 2922 | "php": ">=5.3.3" 2923 | }, 2924 | "suggest": { 2925 | "ext-mbstring": "For best performance" 2926 | }, 2927 | "type": "library", 2928 | "extra": { 2929 | "branch-alias": { 2930 | "dev-master": "1.5-dev" 2931 | } 2932 | }, 2933 | "autoload": { 2934 | "psr-4": { 2935 | "Symfony\\Polyfill\\Mbstring\\": "" 2936 | }, 2937 | "files": [ 2938 | "bootstrap.php" 2939 | ] 2940 | }, 2941 | "notification-url": "https://packagist.org/downloads/", 2942 | "license": [ 2943 | "MIT" 2944 | ], 2945 | "authors": [ 2946 | { 2947 | "name": "Nicolas Grekas", 2948 | "email": "p@tchwork.com" 2949 | }, 2950 | { 2951 | "name": "Symfony Community", 2952 | "homepage": "https://symfony.com/contributors" 2953 | } 2954 | ], 2955 | "description": "Symfony polyfill for the Mbstring extension", 2956 | "homepage": "https://symfony.com", 2957 | "keywords": [ 2958 | "compatibility", 2959 | "mbstring", 2960 | "polyfill", 2961 | "portable", 2962 | "shim" 2963 | ], 2964 | "time": "2017-06-14T15:44:48+00:00" 2965 | }, 2966 | { 2967 | "name": "symfony/process", 2968 | "version": "v3.3.9", 2969 | "source": { 2970 | "type": "git", 2971 | "url": "https://github.com/symfony/process.git", 2972 | "reference": "b7666e9b438027a1ea0e1ee813ec5042d5d7f6f0" 2973 | }, 2974 | "dist": { 2975 | "type": "zip", 2976 | "url": "https://api.github.com/repos/symfony/process/zipball/b7666e9b438027a1ea0e1ee813ec5042d5d7f6f0", 2977 | "reference": "b7666e9b438027a1ea0e1ee813ec5042d5d7f6f0", 2978 | "shasum": "" 2979 | }, 2980 | "require": { 2981 | "php": "^5.5.9|>=7.0.8" 2982 | }, 2983 | "type": "library", 2984 | "extra": { 2985 | "branch-alias": { 2986 | "dev-master": "3.3-dev" 2987 | } 2988 | }, 2989 | "autoload": { 2990 | "psr-4": { 2991 | "Symfony\\Component\\Process\\": "" 2992 | }, 2993 | "exclude-from-classmap": [ 2994 | "/Tests/" 2995 | ] 2996 | }, 2997 | "notification-url": "https://packagist.org/downloads/", 2998 | "license": [ 2999 | "MIT" 3000 | ], 3001 | "authors": [ 3002 | { 3003 | "name": "Fabien Potencier", 3004 | "email": "fabien@symfony.com" 3005 | }, 3006 | { 3007 | "name": "Symfony Community", 3008 | "homepage": "https://symfony.com/contributors" 3009 | } 3010 | ], 3011 | "description": "Symfony Process Component", 3012 | "homepage": "https://symfony.com", 3013 | "time": "2017-07-29T21:54:42+00:00" 3014 | }, 3015 | { 3016 | "name": "symfony/routing", 3017 | "version": "v3.3.9", 3018 | "source": { 3019 | "type": "git", 3020 | "url": "https://github.com/symfony/routing.git", 3021 | "reference": "970326dcd04522e1cd1fe128abaee54c225e27f9" 3022 | }, 3023 | "dist": { 3024 | "type": "zip", 3025 | "url": "https://api.github.com/repos/symfony/routing/zipball/970326dcd04522e1cd1fe128abaee54c225e27f9", 3026 | "reference": "970326dcd04522e1cd1fe128abaee54c225e27f9", 3027 | "shasum": "" 3028 | }, 3029 | "require": { 3030 | "php": "^5.5.9|>=7.0.8" 3031 | }, 3032 | "conflict": { 3033 | "symfony/config": "<2.8", 3034 | "symfony/dependency-injection": "<3.3", 3035 | "symfony/yaml": "<3.3" 3036 | }, 3037 | "require-dev": { 3038 | "doctrine/annotations": "~1.0", 3039 | "doctrine/common": "~2.2", 3040 | "psr/log": "~1.0", 3041 | "symfony/config": "~2.8|~3.0", 3042 | "symfony/dependency-injection": "~3.3", 3043 | "symfony/expression-language": "~2.8|~3.0", 3044 | "symfony/http-foundation": "~2.8|~3.0", 3045 | "symfony/yaml": "~3.3" 3046 | }, 3047 | "suggest": { 3048 | "doctrine/annotations": "For using the annotation loader", 3049 | "symfony/config": "For using the all-in-one router or any loader", 3050 | "symfony/dependency-injection": "For loading routes from a service", 3051 | "symfony/expression-language": "For using expression matching", 3052 | "symfony/http-foundation": "For using a Symfony Request object", 3053 | "symfony/yaml": "For using the YAML loader" 3054 | }, 3055 | "type": "library", 3056 | "extra": { 3057 | "branch-alias": { 3058 | "dev-master": "3.3-dev" 3059 | } 3060 | }, 3061 | "autoload": { 3062 | "psr-4": { 3063 | "Symfony\\Component\\Routing\\": "" 3064 | }, 3065 | "exclude-from-classmap": [ 3066 | "/Tests/" 3067 | ] 3068 | }, 3069 | "notification-url": "https://packagist.org/downloads/", 3070 | "license": [ 3071 | "MIT" 3072 | ], 3073 | "authors": [ 3074 | { 3075 | "name": "Fabien Potencier", 3076 | "email": "fabien@symfony.com" 3077 | }, 3078 | { 3079 | "name": "Symfony Community", 3080 | "homepage": "https://symfony.com/contributors" 3081 | } 3082 | ], 3083 | "description": "Symfony Routing Component", 3084 | "homepage": "https://symfony.com", 3085 | "keywords": [ 3086 | "router", 3087 | "routing", 3088 | "uri", 3089 | "url" 3090 | ], 3091 | "time": "2017-07-29T21:54:42+00:00" 3092 | }, 3093 | { 3094 | "name": "symfony/translation", 3095 | "version": "v3.3.9", 3096 | "source": { 3097 | "type": "git", 3098 | "url": "https://github.com/symfony/translation.git", 3099 | "reference": "add53753d978f635492dfe8cd6953f6a7361ef90" 3100 | }, 3101 | "dist": { 3102 | "type": "zip", 3103 | "url": "https://api.github.com/repos/symfony/translation/zipball/add53753d978f635492dfe8cd6953f6a7361ef90", 3104 | "reference": "add53753d978f635492dfe8cd6953f6a7361ef90", 3105 | "shasum": "" 3106 | }, 3107 | "require": { 3108 | "php": "^5.5.9|>=7.0.8", 3109 | "symfony/polyfill-mbstring": "~1.0" 3110 | }, 3111 | "conflict": { 3112 | "symfony/config": "<2.8", 3113 | "symfony/yaml": "<3.3" 3114 | }, 3115 | "require-dev": { 3116 | "psr/log": "~1.0", 3117 | "symfony/config": "~2.8|~3.0", 3118 | "symfony/intl": "^2.8.18|^3.2.5", 3119 | "symfony/yaml": "~3.3" 3120 | }, 3121 | "suggest": { 3122 | "psr/log": "To use logging capability in translator", 3123 | "symfony/config": "", 3124 | "symfony/yaml": "" 3125 | }, 3126 | "type": "library", 3127 | "extra": { 3128 | "branch-alias": { 3129 | "dev-master": "3.3-dev" 3130 | } 3131 | }, 3132 | "autoload": { 3133 | "psr-4": { 3134 | "Symfony\\Component\\Translation\\": "" 3135 | }, 3136 | "exclude-from-classmap": [ 3137 | "/Tests/" 3138 | ] 3139 | }, 3140 | "notification-url": "https://packagist.org/downloads/", 3141 | "license": [ 3142 | "MIT" 3143 | ], 3144 | "authors": [ 3145 | { 3146 | "name": "Fabien Potencier", 3147 | "email": "fabien@symfony.com" 3148 | }, 3149 | { 3150 | "name": "Symfony Community", 3151 | "homepage": "https://symfony.com/contributors" 3152 | } 3153 | ], 3154 | "description": "Symfony Translation Component", 3155 | "homepage": "https://symfony.com", 3156 | "time": "2017-07-29T21:54:42+00:00" 3157 | }, 3158 | { 3159 | "name": "symfony/var-dumper", 3160 | "version": "v3.3.9", 3161 | "source": { 3162 | "type": "git", 3163 | "url": "https://github.com/symfony/var-dumper.git", 3164 | "reference": "89fcb5a73e0ede2be2512234c4e40457bb22b35f" 3165 | }, 3166 | "dist": { 3167 | "type": "zip", 3168 | "url": "https://api.github.com/repos/symfony/var-dumper/zipball/89fcb5a73e0ede2be2512234c4e40457bb22b35f", 3169 | "reference": "89fcb5a73e0ede2be2512234c4e40457bb22b35f", 3170 | "shasum": "" 3171 | }, 3172 | "require": { 3173 | "php": "^5.5.9|>=7.0.8", 3174 | "symfony/polyfill-mbstring": "~1.0" 3175 | }, 3176 | "conflict": { 3177 | "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" 3178 | }, 3179 | "require-dev": { 3180 | "ext-iconv": "*", 3181 | "twig/twig": "~1.34|~2.4" 3182 | }, 3183 | "suggest": { 3184 | "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", 3185 | "ext-symfony_debug": "" 3186 | }, 3187 | "type": "library", 3188 | "extra": { 3189 | "branch-alias": { 3190 | "dev-master": "3.3-dev" 3191 | } 3192 | }, 3193 | "autoload": { 3194 | "files": [ 3195 | "Resources/functions/dump.php" 3196 | ], 3197 | "psr-4": { 3198 | "Symfony\\Component\\VarDumper\\": "" 3199 | }, 3200 | "exclude-from-classmap": [ 3201 | "/Tests/" 3202 | ] 3203 | }, 3204 | "notification-url": "https://packagist.org/downloads/", 3205 | "license": [ 3206 | "MIT" 3207 | ], 3208 | "authors": [ 3209 | { 3210 | "name": "Nicolas Grekas", 3211 | "email": "p@tchwork.com" 3212 | }, 3213 | { 3214 | "name": "Symfony Community", 3215 | "homepage": "https://symfony.com/contributors" 3216 | } 3217 | ], 3218 | "description": "Symfony mechanism for exploring and dumping PHP variables", 3219 | "homepage": "https://symfony.com", 3220 | "keywords": [ 3221 | "debug", 3222 | "dump" 3223 | ], 3224 | "time": "2017-08-27T14:52:21+00:00" 3225 | }, 3226 | { 3227 | "name": "theseer/tokenizer", 3228 | "version": "1.1.0", 3229 | "source": { 3230 | "type": "git", 3231 | "url": "https://github.com/theseer/tokenizer.git", 3232 | "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b" 3233 | }, 3234 | "dist": { 3235 | "type": "zip", 3236 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b", 3237 | "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b", 3238 | "shasum": "" 3239 | }, 3240 | "require": { 3241 | "ext-dom": "*", 3242 | "ext-tokenizer": "*", 3243 | "ext-xmlwriter": "*", 3244 | "php": "^7.0" 3245 | }, 3246 | "type": "library", 3247 | "autoload": { 3248 | "classmap": [ 3249 | "src/" 3250 | ] 3251 | }, 3252 | "notification-url": "https://packagist.org/downloads/", 3253 | "license": [ 3254 | "BSD-3-Clause" 3255 | ], 3256 | "authors": [ 3257 | { 3258 | "name": "Arne Blankerts", 3259 | "email": "arne@blankerts.de", 3260 | "role": "Developer" 3261 | } 3262 | ], 3263 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", 3264 | "time": "2017-04-07T12:08:54+00:00" 3265 | }, 3266 | { 3267 | "name": "tijsverkoyen/css-to-inline-styles", 3268 | "version": "2.2.0", 3269 | "source": { 3270 | "type": "git", 3271 | "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", 3272 | "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b" 3273 | }, 3274 | "dist": { 3275 | "type": "zip", 3276 | "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b", 3277 | "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b", 3278 | "shasum": "" 3279 | }, 3280 | "require": { 3281 | "php": "^5.5 || ^7", 3282 | "symfony/css-selector": "^2.7|~3.0" 3283 | }, 3284 | "require-dev": { 3285 | "phpunit/phpunit": "~4.8|5.1.*" 3286 | }, 3287 | "type": "library", 3288 | "extra": { 3289 | "branch-alias": { 3290 | "dev-master": "2.0.x-dev" 3291 | } 3292 | }, 3293 | "autoload": { 3294 | "psr-4": { 3295 | "TijsVerkoyen\\CssToInlineStyles\\": "src" 3296 | } 3297 | }, 3298 | "notification-url": "https://packagist.org/downloads/", 3299 | "license": [ 3300 | "BSD-3-Clause" 3301 | ], 3302 | "authors": [ 3303 | { 3304 | "name": "Tijs Verkoyen", 3305 | "email": "css_to_inline_styles@verkoyen.eu", 3306 | "role": "Developer" 3307 | } 3308 | ], 3309 | "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.", 3310 | "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", 3311 | "time": "2016-09-20T12:50:39+00:00" 3312 | }, 3313 | { 3314 | "name": "vlucas/phpdotenv", 3315 | "version": "v2.4.0", 3316 | "source": { 3317 | "type": "git", 3318 | "url": "https://github.com/vlucas/phpdotenv.git", 3319 | "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c" 3320 | }, 3321 | "dist": { 3322 | "type": "zip", 3323 | "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c", 3324 | "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c", 3325 | "shasum": "" 3326 | }, 3327 | "require": { 3328 | "php": ">=5.3.9" 3329 | }, 3330 | "require-dev": { 3331 | "phpunit/phpunit": "^4.8 || ^5.0" 3332 | }, 3333 | "type": "library", 3334 | "extra": { 3335 | "branch-alias": { 3336 | "dev-master": "2.4-dev" 3337 | } 3338 | }, 3339 | "autoload": { 3340 | "psr-4": { 3341 | "Dotenv\\": "src/" 3342 | } 3343 | }, 3344 | "notification-url": "https://packagist.org/downloads/", 3345 | "license": [ 3346 | "BSD-3-Clause-Attribution" 3347 | ], 3348 | "authors": [ 3349 | { 3350 | "name": "Vance Lucas", 3351 | "email": "vance@vancelucas.com", 3352 | "homepage": "http://www.vancelucas.com" 3353 | } 3354 | ], 3355 | "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", 3356 | "keywords": [ 3357 | "dotenv", 3358 | "env", 3359 | "environment" 3360 | ], 3361 | "time": "2016-09-01T10:05:43+00:00" 3362 | }, 3363 | { 3364 | "name": "webmozart/assert", 3365 | "version": "1.2.0", 3366 | "source": { 3367 | "type": "git", 3368 | "url": "https://github.com/webmozart/assert.git", 3369 | "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f" 3370 | }, 3371 | "dist": { 3372 | "type": "zip", 3373 | "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f", 3374 | "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f", 3375 | "shasum": "" 3376 | }, 3377 | "require": { 3378 | "php": "^5.3.3 || ^7.0" 3379 | }, 3380 | "require-dev": { 3381 | "phpunit/phpunit": "^4.6", 3382 | "sebastian/version": "^1.0.1" 3383 | }, 3384 | "type": "library", 3385 | "extra": { 3386 | "branch-alias": { 3387 | "dev-master": "1.3-dev" 3388 | } 3389 | }, 3390 | "autoload": { 3391 | "psr-4": { 3392 | "Webmozart\\Assert\\": "src/" 3393 | } 3394 | }, 3395 | "notification-url": "https://packagist.org/downloads/", 3396 | "license": [ 3397 | "MIT" 3398 | ], 3399 | "authors": [ 3400 | { 3401 | "name": "Bernhard Schussek", 3402 | "email": "bschussek@gmail.com" 3403 | } 3404 | ], 3405 | "description": "Assertions to validate method input/output with nice error messages.", 3406 | "keywords": [ 3407 | "assert", 3408 | "check", 3409 | "validate" 3410 | ], 3411 | "time": "2016-11-23T20:04:58+00:00" 3412 | } 3413 | ], 3414 | "aliases": [], 3415 | "minimum-stability": "stable", 3416 | "stability-flags": [], 3417 | "prefer-stable": false, 3418 | "prefer-lowest": false, 3419 | "platform": [], 3420 | "platform-dev": [] 3421 | } 3422 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /src/Calendar.php: -------------------------------------------------------------------------------- 1 | setupCalendar($year, $month, $event, $data); 30 | $calendar = $calendarData->calendar; 31 | $data = $calendarData->data; 32 | 33 | return view('calendar::calendar', compact('calendar', 'data')); 34 | } 35 | 36 | public function setupCalendar($year = '', $month = '', $event = [], $data = []) 37 | { 38 | // If no event are passed AND an event session is avaiable then we use the data stored in the session 39 | if (! $event and session()->has('event')) { 40 | $event = session()->get('event'); 41 | } else { 42 | session()->put('event', $event); 43 | } 44 | 45 | $today = Carbon::now(); 46 | 47 | //Initialisation of the month and the year of the calendar 48 | if ($month == '') { 49 | $month = $today->month; 50 | } 51 | if ($year == '') { 52 | $year = $today->year; 53 | } 54 | 55 | $current_month = Carbon::createFromDate($year, $month, 1); 56 | $previous_month = $current_month->copy()->subMonth(); 57 | $next_month = $current_month->copy()->addMonth(); 58 | 59 | // Calculation of the number of week in month (go to the end of the month and get the week of the month) 60 | $weeksInMonth = $current_month->copy()->endOfMonth()->weekOfMonth; 61 | 62 | $calendar['current_month'] = $current_month; 63 | $calendar['current_month_url'] = $current_month->year.'/'.$current_month->month; 64 | $calendar['previous_month_url'] = $previous_month->year.'/'.$previous_month->month; 65 | 66 | $calendar['next_month_url'] = $next_month->year.'/'.$next_month->month; 67 | $calendar['today'] = $today; 68 | 69 | // We get the first day of the week (default is Sunday so we substract a day to have the previous monday) 70 | $day = $current_month->copy()->startOfMonth()->startOfWeek()->subDay(1); 71 | 72 | // Iteration over the number of week in the month for building each row of the calendar 73 | for ($currentWeek = 0; $currentWeek <= $weeksInMonth; $currentWeek++) { 74 | // Iteration over the number of day in the week for building each column in the calendar 75 | for ($i = 0; $i < 7; $i++) { 76 | $class = ''; 77 | // Creation of a new instance of Carbon for each day adding a day to the prior day 78 | $day = $day->copy()->addDay(); 79 | 80 | // Checking if the day is in the current month and adding a class to that day 81 | if ($month != $day->month) { 82 | $class .= ' next-month'; 83 | } 84 | // Cheking if the day is in the event array and adding a class to that day 85 | if (in_array($day->year.'/'.$day->month.'/'.$day->day, $event)) { 86 | $class .= ' event'; 87 | } 88 | // Cheking if the day is today and adding a class to that day 89 | if ($day->isSameDay($today)) { 90 | $class .= ' highlight'; 91 | } 92 | $calendar['weeks'][$currentWeek][$day->day]['day'] = $day; 93 | $calendar['weeks'][$currentWeek][$day->day]['class'] = $class; 94 | } 95 | } 96 | // dd($data); 97 | if (! isset($data['url'])) { 98 | $data['url'] = $this->url; 99 | } 100 | 101 | $calendarData = new \stdClass(); 102 | $calendarData->data = $data; 103 | $calendarData->calendar = $calendar; 104 | 105 | return $calendarData; 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /src/CalendarController.php: -------------------------------------------------------------------------------- 1 | loadViewsFrom(__DIR__.'/views', 'calendar'); 17 | $this->publishes([ 18 | __DIR__.'/views' => base_path('resources/views/vendor/calendar'), 19 | ]); 20 | $this->publishes([ 21 | __DIR__.'/assets' => public_path('assets/arkhas/calendar'), 22 | ], 'public'); 23 | } 24 | 25 | /** 26 | * Register the application services. 27 | * 28 | * @return void 29 | */ 30 | public function register() 31 | { 32 | include __DIR__.'/routes.php'; 33 | $this->app->make('Arkhas\Calendar\CalendarController'); 34 | $this->app->singleton('calendar', function ($app) { 35 | return new Calendar(); 36 | }); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/Facades/Calendar.php: -------------------------------------------------------------------------------- 1 | 'web', 12 | 'uses' => 'arkhas\calendar\CalendarController@index', 13 | ]); 14 | Route::get('arkhas/calendar/demo', [ 15 | 'middleware' => 'web', 16 | 'uses' => 'arkhas\calendar\CalendarController@demo', 17 | ]); 18 | 19 | // Route::get('arkhas/calendar/demo', 'arkhas\calendar\CalendarController@demo'); 20 | -------------------------------------------------------------------------------- /src/views/calendar.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |

{{ $calendar['current_month']->format('M Y') }}

6 | 7 |
8 | 9 | @foreach ($calendar['weeks'][0] as $day) 10 | 11 | @endforeach 12 | 13 | 14 | @foreach ($calendar['weeks'] as $week) 15 | 16 | @foreach ($week as $day) 17 | 21 | @endforeach 22 | 23 | @endforeach 24 |
{{ $day['day']->format('D') }}
18 | {{ $day['day']->day }} 19 | 20 |
25 |
-------------------------------------------------------------------------------- /src/views/demo.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar Demo 6 | 7 | 8 | 9 | 10 | 11 | {!! $calendar !!} 12 | 13 | -------------------------------------------------------------------------------- /tests/CalendarTest.php: -------------------------------------------------------------------------------- 1 | setupCalendar(); 15 | 16 | $todaysMonth = date('n'); 17 | $todaysYear = date('Y'); 18 | $todaysDay = date('j'); 19 | $today = Carbon::now(); 20 | 21 | $lastMonth = date('n', strtotime('-1 month')); 22 | $nextMonth = date('n', strtotime('+1 month')); 23 | 24 | $this->assertEquals($todaysMonth, $calendarData->calendar['current_month']->month); 25 | $this->assertEquals($todaysDay, $calendarData->calendar['today']->day); 26 | $this->assertEquals($todaysYear.'/'.$todaysMonth, $calendarData->calendar['current_month_url']); 27 | $this->assertEquals($todaysYear.'/'.$lastMonth, $calendarData->calendar['previous_month_url']); 28 | $this->assertEquals($todaysYear.'/'.$nextMonth, $calendarData->calendar['next_month_url']); 29 | $this->assertEquals(' highlight', $calendarData->calendar['weeks'][$today->weekOfMonth - 1][$today->day]['class']); 30 | $this->assertEquals('/calendar/', $calendarData->data['url']); 31 | } 32 | 33 | public function testSetupCalendarNonDefaults() 34 | { 35 | $year = 2017; 36 | $month = 9; 37 | 38 | $calendar = new Calendar(); 39 | $calendarData = $calendar->setupCalendar($year, $month, [], ['url' => '/testURL/']); 40 | 41 | $todaysDay = date('j'); 42 | 43 | $this->assertEquals(9, $calendarData->calendar['current_month']->month); 44 | $this->assertEquals($todaysDay, $calendarData->calendar['today']->day); 45 | $this->assertEquals($year.'/'.$month, $calendarData->calendar['current_month_url']); 46 | $this->assertEquals($year.'/'. 8, $calendarData->calendar['previous_month_url']); 47 | $this->assertEquals($year.'/'. 10, $calendarData->calendar['next_month_url']); 48 | $this->assertEquals('/testURL/', $calendarData->data['url']); 49 | } 50 | } 51 | --------------------------------------------------------------------------------