composer.lock 171 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "e99f278b8f6891a9e5b3819172a94102",
  8. "packages": [
  9. {
  10. "name": "alfredo-ramos/parsedown-extra-laravel",
  11. "version": "0.8.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/AlfredoRamos/parsedown-extra-laravel.git",
  15. "reference": "d63fa264f5e0de36fc7591ea7741ca2d23556a66"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/AlfredoRamos/parsedown-extra-laravel/zipball/d63fa264f5e0de36fc7591ea7741ca2d23556a66",
  20. "reference": "d63fa264f5e0de36fc7591ea7741ca2d23556a66",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "erusev/parsedown": "^1.7.0 || ^1.8.0-beta-5",
  31. "erusev/parsedown-extra": "^0.7.0 || ^0.8.0-beta-1",
  32. "ezyang/htmlpurifier": "^4.10.0",
  33. "illuminate/config": "^5.5.0",
  34. "illuminate/filesystem": "^5.5.0",
  35. "illuminate/support": "^5.5.0",
  36. "php": "^7.0.0"
  37. },
  38. "require-dev": {
  39. "codacy/coverage": "^1.4.0",
  40. "mockery/mockery": "^1.1.0",
  41. "orchestra/testbench": "^3.5.0",
  42. "phpunit/phpunit": "^6.5.0 || ^7.3.0"
  43. },
  44. "suggest": {
  45. "laravel/framework": "To integrate with Laravel",
  46. "laravel/lumen-framework": "To integrate with Lumen"
  47. },
  48. "type": "package",
  49. "extra": {
  50. "laravel": {
  51. "providers": [
  52. "AlfredoRamos\\ParsedownExtra\\ParsedownExtraServiceProvider"
  53. ],
  54. "aliases": {
  55. "Markdown": "AlfredoRamos\\ParsedownExtra\\Facades\\ParsedownExtra"
  56. }
  57. }
  58. },
  59. "autoload": {
  60. "psr-4": {
  61. "AlfredoRamos\\ParsedownExtra\\": "src/"
  62. },
  63. "files": [
  64. "src/helpers.php"
  65. ]
  66. },
  67. "notification-url": "https://packagist.org/downloads/",
  68. "license": [
  69. "GPL-3.0-or-later"
  70. ],
  71. "authors": [
  72. {
  73. "name": "Alfredo Ramos",
  74. "email": "alfredo.ramos@yandex.com",
  75. "homepage": "https://github.com/AlfredoRamos",
  76. "role": "Developer"
  77. }
  78. ],
  79. "description": "A Parsedown Extra package for Laravel and Lumen",
  80. "homepage": "https://github.com/AlfredoRamos/parsedown-extra-laravel",
  81. "keywords": [
  82. "laravel",
  83. "lumen",
  84. "markdown",
  85. "markdown-extra",
  86. "parsedown",
  87. "parsedown-extra"
  88. ],
  89. "time": "2018-09-24T18:03:09+00:00"
  90. },
  91. {
  92. "name": "dnoegel/php-xdg-base-dir",
  93. "version": "0.1",
  94. "source": {
  95. "type": "git",
  96. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  97. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  98. },
  99. "dist": {
  100. "type": "zip",
  101. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  102. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  103. "shasum": "",
  104. "mirrors": [
  105. {
  106. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  107. "preferred": true
  108. }
  109. ]
  110. },
  111. "require": {
  112. "php": ">=5.3.2"
  113. },
  114. "require-dev": {
  115. "phpunit/phpunit": "@stable"
  116. },
  117. "type": "project",
  118. "autoload": {
  119. "psr-4": {
  120. "XdgBaseDir\\": "src/"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "description": "implementation of xdg base directory specification for php",
  128. "time": "2014-10-24T07:27:01+00:00"
  129. },
  130. {
  131. "name": "doctrine/inflector",
  132. "version": "v1.3.0",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/doctrine/inflector.git",
  136. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  141. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  142. "shasum": "",
  143. "mirrors": [
  144. {
  145. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  146. "preferred": true
  147. }
  148. ]
  149. },
  150. "require": {
  151. "php": "^7.1"
  152. },
  153. "require-dev": {
  154. "phpunit/phpunit": "^6.2"
  155. },
  156. "type": "library",
  157. "extra": {
  158. "branch-alias": {
  159. "dev-master": "1.3.x-dev"
  160. }
  161. },
  162. "autoload": {
  163. "psr-4": {
  164. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  165. }
  166. },
  167. "notification-url": "https://packagist.org/downloads/",
  168. "license": [
  169. "MIT"
  170. ],
  171. "authors": [
  172. {
  173. "name": "Roman Borschel",
  174. "email": "roman@code-factory.org"
  175. },
  176. {
  177. "name": "Benjamin Eberlei",
  178. "email": "kontakt@beberlei.de"
  179. },
  180. {
  181. "name": "Guilherme Blanco",
  182. "email": "guilhermeblanco@gmail.com"
  183. },
  184. {
  185. "name": "Jonathan Wage",
  186. "email": "jonwage@gmail.com"
  187. },
  188. {
  189. "name": "Johannes Schmitt",
  190. "email": "schmittjoh@gmail.com"
  191. }
  192. ],
  193. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  194. "homepage": "http://www.doctrine-project.org",
  195. "keywords": [
  196. "inflection",
  197. "pluralize",
  198. "singularize",
  199. "string"
  200. ],
  201. "time": "2018-01-09T20:05:19+00:00"
  202. },
  203. {
  204. "name": "doctrine/lexer",
  205. "version": "v1.0.1",
  206. "source": {
  207. "type": "git",
  208. "url": "https://github.com/doctrine/lexer.git",
  209. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  210. },
  211. "dist": {
  212. "type": "zip",
  213. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  214. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  215. "shasum": "",
  216. "mirrors": [
  217. {
  218. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  219. "preferred": true
  220. }
  221. ]
  222. },
  223. "require": {
  224. "php": ">=5.3.2"
  225. },
  226. "type": "library",
  227. "extra": {
  228. "branch-alias": {
  229. "dev-master": "1.0.x-dev"
  230. }
  231. },
  232. "autoload": {
  233. "psr-0": {
  234. "Doctrine\\Common\\Lexer\\": "lib/"
  235. }
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "MIT"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Roman Borschel",
  244. "email": "roman@code-factory.org"
  245. },
  246. {
  247. "name": "Guilherme Blanco",
  248. "email": "guilhermeblanco@gmail.com"
  249. },
  250. {
  251. "name": "Johannes Schmitt",
  252. "email": "schmittjoh@gmail.com"
  253. }
  254. ],
  255. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  256. "homepage": "http://www.doctrine-project.org",
  257. "keywords": [
  258. "lexer",
  259. "parser"
  260. ],
  261. "time": "2014-09-09T13:34:57+00:00"
  262. },
  263. {
  264. "name": "dragonmantank/cron-expression",
  265. "version": "v2.2.0",
  266. "source": {
  267. "type": "git",
  268. "url": "https://github.com/dragonmantank/cron-expression.git",
  269. "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5"
  270. },
  271. "dist": {
  272. "type": "zip",
  273. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/92a2c3768d50e21a1f26a53cb795ce72806266c5",
  274. "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5",
  275. "shasum": "",
  276. "mirrors": [
  277. {
  278. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  279. "preferred": true
  280. }
  281. ]
  282. },
  283. "require": {
  284. "php": ">=7.0.0"
  285. },
  286. "require-dev": {
  287. "phpunit/phpunit": "~6.4"
  288. },
  289. "type": "library",
  290. "autoload": {
  291. "psr-4": {
  292. "Cron\\": "src/Cron/"
  293. }
  294. },
  295. "notification-url": "https://packagist.org/downloads/",
  296. "license": [
  297. "MIT"
  298. ],
  299. "authors": [
  300. {
  301. "name": "Michael Dowling",
  302. "email": "mtdowling@gmail.com",
  303. "homepage": "https://github.com/mtdowling"
  304. },
  305. {
  306. "name": "Chris Tankersley",
  307. "email": "chris@ctankersley.com",
  308. "homepage": "https://github.com/dragonmantank"
  309. }
  310. ],
  311. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  312. "keywords": [
  313. "cron",
  314. "schedule"
  315. ],
  316. "time": "2018-06-06T03:12:17+00:00"
  317. },
  318. {
  319. "name": "egulias/email-validator",
  320. "version": "2.1.7",
  321. "source": {
  322. "type": "git",
  323. "url": "https://github.com/egulias/EmailValidator.git",
  324. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
  325. },
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
  329. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
  330. "shasum": "",
  331. "mirrors": [
  332. {
  333. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  334. "preferred": true
  335. }
  336. ]
  337. },
  338. "require": {
  339. "doctrine/lexer": "^1.0.1",
  340. "php": ">= 5.5"
  341. },
  342. "require-dev": {
  343. "dominicsayers/isemail": "dev-master",
  344. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  345. "satooshi/php-coveralls": "^1.0.1"
  346. },
  347. "suggest": {
  348. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  349. },
  350. "type": "library",
  351. "extra": {
  352. "branch-alias": {
  353. "dev-master": "2.0.x-dev"
  354. }
  355. },
  356. "autoload": {
  357. "psr-4": {
  358. "Egulias\\EmailValidator\\": "EmailValidator"
  359. }
  360. },
  361. "notification-url": "https://packagist.org/downloads/",
  362. "license": [
  363. "MIT"
  364. ],
  365. "authors": [
  366. {
  367. "name": "Eduardo Gulias Davis"
  368. }
  369. ],
  370. "description": "A library for validating emails against several RFCs",
  371. "homepage": "https://github.com/egulias/EmailValidator",
  372. "keywords": [
  373. "email",
  374. "emailvalidation",
  375. "emailvalidator",
  376. "validation",
  377. "validator"
  378. ],
  379. "time": "2018-12-04T22:38:24+00:00"
  380. },
  381. {
  382. "name": "erusev/parsedown",
  383. "version": "v1.7.2",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/erusev/parsedown.git",
  387. "reference": "d60bcdc46978357759ecb13cb4b078da783f8faf"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/erusev/parsedown/zipball/d60bcdc46978357759ecb13cb4b078da783f8faf",
  392. "reference": "d60bcdc46978357759ecb13cb4b078da783f8faf",
  393. "shasum": "",
  394. "mirrors": [
  395. {
  396. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  397. "preferred": true
  398. }
  399. ]
  400. },
  401. "require": {
  402. "ext-mbstring": "*",
  403. "php": ">=5.3.0"
  404. },
  405. "require-dev": {
  406. "phpunit/phpunit": "^4.8.35"
  407. },
  408. "type": "library",
  409. "autoload": {
  410. "psr-0": {
  411. "Parsedown": ""
  412. }
  413. },
  414. "notification-url": "https://packagist.org/downloads/",
  415. "license": [
  416. "MIT"
  417. ],
  418. "authors": [
  419. {
  420. "name": "Emanuil Rusev",
  421. "email": "hello@erusev.com",
  422. "homepage": "http://erusev.com"
  423. }
  424. ],
  425. "description": "Parser for Markdown.",
  426. "homepage": "http://parsedown.org",
  427. "keywords": [
  428. "markdown",
  429. "parser"
  430. ],
  431. "time": "2019-03-17T17:19:46+00:00"
  432. },
  433. {
  434. "name": "erusev/parsedown-extra",
  435. "version": "0.7.1",
  436. "source": {
  437. "type": "git",
  438. "url": "https://github.com/erusev/parsedown-extra.git",
  439. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c"
  440. },
  441. "dist": {
  442. "type": "zip",
  443. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/0db5cce7354e4b76f155d092ab5eb3981c21258c",
  444. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c",
  445. "shasum": "",
  446. "mirrors": [
  447. {
  448. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  449. "preferred": true
  450. }
  451. ]
  452. },
  453. "require": {
  454. "erusev/parsedown": "~1.4"
  455. },
  456. "type": "library",
  457. "autoload": {
  458. "psr-0": {
  459. "ParsedownExtra": ""
  460. }
  461. },
  462. "notification-url": "https://packagist.org/downloads/",
  463. "license": [
  464. "MIT"
  465. ],
  466. "authors": [
  467. {
  468. "name": "Emanuil Rusev",
  469. "email": "hello@erusev.com",
  470. "homepage": "http://erusev.com"
  471. }
  472. ],
  473. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  474. "homepage": "https://github.com/erusev/parsedown-extra",
  475. "keywords": [
  476. "markdown",
  477. "markdown extra",
  478. "parsedown",
  479. "parser"
  480. ],
  481. "time": "2015-11-01T10:19:22+00:00"
  482. },
  483. {
  484. "name": "ezyang/htmlpurifier",
  485. "version": "v4.10.0",
  486. "source": {
  487. "type": "git",
  488. "url": "https://github.com/ezyang/htmlpurifier.git",
  489. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  490. },
  491. "dist": {
  492. "type": "zip",
  493. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  494. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  495. "shasum": "",
  496. "mirrors": [
  497. {
  498. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  499. "preferred": true
  500. }
  501. ]
  502. },
  503. "require": {
  504. "php": ">=5.2"
  505. },
  506. "require-dev": {
  507. "simpletest/simpletest": "^1.1"
  508. },
  509. "type": "library",
  510. "autoload": {
  511. "psr-0": {
  512. "HTMLPurifier": "library/"
  513. },
  514. "files": [
  515. "library/HTMLPurifier.composer.php"
  516. ]
  517. },
  518. "notification-url": "https://packagist.org/downloads/",
  519. "license": [
  520. "LGPL"
  521. ],
  522. "authors": [
  523. {
  524. "name": "Edward Z. Yang",
  525. "email": "admin@htmlpurifier.org",
  526. "homepage": "http://ezyang.com"
  527. }
  528. ],
  529. "description": "Standards compliant HTML filter written in PHP",
  530. "homepage": "http://htmlpurifier.org/",
  531. "keywords": [
  532. "html"
  533. ],
  534. "time": "2018-02-23T01:58:20+00:00"
  535. },
  536. {
  537. "name": "fideloper/proxy",
  538. "version": "4.1.0",
  539. "source": {
  540. "type": "git",
  541. "url": "https://github.com/fideloper/TrustedProxy.git",
  542. "reference": "177c79a2d1f9970f89ee2fb4c12b429af38b6dfb"
  543. },
  544. "dist": {
  545. "type": "zip",
  546. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/177c79a2d1f9970f89ee2fb4c12b429af38b6dfb",
  547. "reference": "177c79a2d1f9970f89ee2fb4c12b429af38b6dfb",
  548. "shasum": "",
  549. "mirrors": [
  550. {
  551. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  552. "preferred": true
  553. }
  554. ]
  555. },
  556. "require": {
  557. "illuminate/contracts": "~5.0",
  558. "php": ">=5.4.0"
  559. },
  560. "require-dev": {
  561. "illuminate/http": "~5.6",
  562. "mockery/mockery": "~1.0",
  563. "phpunit/phpunit": "^6.0"
  564. },
  565. "type": "library",
  566. "extra": {
  567. "laravel": {
  568. "providers": [
  569. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  570. ]
  571. }
  572. },
  573. "autoload": {
  574. "psr-4": {
  575. "Fideloper\\Proxy\\": "src/"
  576. }
  577. },
  578. "notification-url": "https://packagist.org/downloads/",
  579. "license": [
  580. "MIT"
  581. ],
  582. "authors": [
  583. {
  584. "name": "Chris Fidao",
  585. "email": "fideloper@gmail.com"
  586. }
  587. ],
  588. "description": "Set trusted proxies for Laravel",
  589. "keywords": [
  590. "load balancing",
  591. "proxy",
  592. "trusted proxy"
  593. ],
  594. "time": "2019-01-10T14:06:47+00:00"
  595. },
  596. {
  597. "name": "jakub-onderka/php-console-color",
  598. "version": "v0.2",
  599. "source": {
  600. "type": "git",
  601. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  602. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  603. },
  604. "dist": {
  605. "type": "zip",
  606. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  607. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  608. "shasum": "",
  609. "mirrors": [
  610. {
  611. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  612. "preferred": true
  613. }
  614. ]
  615. },
  616. "require": {
  617. "php": ">=5.4.0"
  618. },
  619. "require-dev": {
  620. "jakub-onderka/php-code-style": "1.0",
  621. "jakub-onderka/php-parallel-lint": "1.0",
  622. "jakub-onderka/php-var-dump-check": "0.*",
  623. "phpunit/phpunit": "~4.3",
  624. "squizlabs/php_codesniffer": "1.*"
  625. },
  626. "type": "library",
  627. "autoload": {
  628. "psr-4": {
  629. "JakubOnderka\\PhpConsoleColor\\": "src/"
  630. }
  631. },
  632. "notification-url": "https://packagist.org/downloads/",
  633. "license": [
  634. "BSD-2-Clause"
  635. ],
  636. "authors": [
  637. {
  638. "name": "Jakub Onderka",
  639. "email": "jakub.onderka@gmail.com"
  640. }
  641. ],
  642. "time": "2018-09-29T17:23:10+00:00"
  643. },
  644. {
  645. "name": "jakub-onderka/php-console-highlighter",
  646. "version": "v0.4",
  647. "source": {
  648. "type": "git",
  649. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  650. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  651. },
  652. "dist": {
  653. "type": "zip",
  654. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  655. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  656. "shasum": "",
  657. "mirrors": [
  658. {
  659. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  660. "preferred": true
  661. }
  662. ]
  663. },
  664. "require": {
  665. "ext-tokenizer": "*",
  666. "jakub-onderka/php-console-color": "~0.2",
  667. "php": ">=5.4.0"
  668. },
  669. "require-dev": {
  670. "jakub-onderka/php-code-style": "~1.0",
  671. "jakub-onderka/php-parallel-lint": "~1.0",
  672. "jakub-onderka/php-var-dump-check": "~0.1",
  673. "phpunit/phpunit": "~4.0",
  674. "squizlabs/php_codesniffer": "~1.5"
  675. },
  676. "type": "library",
  677. "autoload": {
  678. "psr-4": {
  679. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  680. }
  681. },
  682. "notification-url": "https://packagist.org/downloads/",
  683. "license": [
  684. "MIT"
  685. ],
  686. "authors": [
  687. {
  688. "name": "Jakub Onderka",
  689. "email": "acci@acci.cz",
  690. "homepage": "http://www.acci.cz/"
  691. }
  692. ],
  693. "description": "Highlight PHP code in terminal",
  694. "time": "2018-09-29T18:48:56+00:00"
  695. },
  696. {
  697. "name": "laravel/framework",
  698. "version": "v5.8.7",
  699. "source": {
  700. "type": "git",
  701. "url": "https://github.com/laravel/framework.git",
  702. "reference": "f12c7baf9ceee80b131e06a01d3221d9a2488670"
  703. },
  704. "dist": {
  705. "type": "zip",
  706. "url": "https://api.github.com/repos/laravel/framework/zipball/f12c7baf9ceee80b131e06a01d3221d9a2488670",
  707. "reference": "f12c7baf9ceee80b131e06a01d3221d9a2488670",
  708. "shasum": "",
  709. "mirrors": [
  710. {
  711. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  712. "preferred": true
  713. }
  714. ]
  715. },
  716. "require": {
  717. "doctrine/inflector": "^1.1",
  718. "dragonmantank/cron-expression": "^2.0",
  719. "egulias/email-validator": "^2.0",
  720. "erusev/parsedown": "^1.7",
  721. "ext-json": "*",
  722. "ext-mbstring": "*",
  723. "ext-openssl": "*",
  724. "league/flysystem": "^1.0.8",
  725. "monolog/monolog": "^1.12",
  726. "nesbot/carbon": "^1.26.3 || ^2.0",
  727. "opis/closure": "^3.1",
  728. "php": "^7.1.3",
  729. "psr/container": "^1.0",
  730. "psr/simple-cache": "^1.0",
  731. "ramsey/uuid": "^3.7",
  732. "swiftmailer/swiftmailer": "^6.0",
  733. "symfony/console": "^4.2",
  734. "symfony/debug": "^4.2",
  735. "symfony/finder": "^4.2",
  736. "symfony/http-foundation": "^4.2",
  737. "symfony/http-kernel": "^4.2",
  738. "symfony/process": "^4.2",
  739. "symfony/routing": "^4.2",
  740. "symfony/var-dumper": "^4.2",
  741. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  742. "vlucas/phpdotenv": "^3.3"
  743. },
  744. "conflict": {
  745. "tightenco/collect": "<5.5.33"
  746. },
  747. "replace": {
  748. "illuminate/auth": "self.version",
  749. "illuminate/broadcasting": "self.version",
  750. "illuminate/bus": "self.version",
  751. "illuminate/cache": "self.version",
  752. "illuminate/config": "self.version",
  753. "illuminate/console": "self.version",
  754. "illuminate/container": "self.version",
  755. "illuminate/contracts": "self.version",
  756. "illuminate/cookie": "self.version",
  757. "illuminate/database": "self.version",
  758. "illuminate/encryption": "self.version",
  759. "illuminate/events": "self.version",
  760. "illuminate/filesystem": "self.version",
  761. "illuminate/hashing": "self.version",
  762. "illuminate/http": "self.version",
  763. "illuminate/log": "self.version",
  764. "illuminate/mail": "self.version",
  765. "illuminate/notifications": "self.version",
  766. "illuminate/pagination": "self.version",
  767. "illuminate/pipeline": "self.version",
  768. "illuminate/queue": "self.version",
  769. "illuminate/redis": "self.version",
  770. "illuminate/routing": "self.version",
  771. "illuminate/session": "self.version",
  772. "illuminate/support": "self.version",
  773. "illuminate/translation": "self.version",
  774. "illuminate/validation": "self.version",
  775. "illuminate/view": "self.version"
  776. },
  777. "require-dev": {
  778. "aws/aws-sdk-php": "^3.0",
  779. "doctrine/dbal": "^2.6",
  780. "filp/whoops": "^2.1.4",
  781. "guzzlehttp/guzzle": "^6.3",
  782. "league/flysystem-cached-adapter": "^1.0",
  783. "mockery/mockery": "^1.0",
  784. "moontoast/math": "^1.1",
  785. "orchestra/testbench-core": "3.8.*",
  786. "pda/pheanstalk": "^4.0",
  787. "phpunit/phpunit": "^7.5|^8.0",
  788. "predis/predis": "^1.1.1",
  789. "symfony/css-selector": "^4.2",
  790. "symfony/dom-crawler": "^4.2",
  791. "true/punycode": "^2.1"
  792. },
  793. "suggest": {
  794. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  795. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  796. "ext-pcntl": "Required to use all features of the queue worker.",
  797. "ext-posix": "Required to use all features of the queue worker.",
  798. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  799. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  800. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  801. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  802. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  803. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  804. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  805. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  806. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  807. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  808. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  809. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  810. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  811. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.2).",
  812. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.2).",
  813. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.1).",
  814. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  815. },
  816. "type": "library",
  817. "extra": {
  818. "branch-alias": {
  819. "dev-master": "5.8-dev"
  820. }
  821. },
  822. "autoload": {
  823. "files": [
  824. "src/Illuminate/Foundation/helpers.php",
  825. "src/Illuminate/Support/helpers.php"
  826. ],
  827. "psr-4": {
  828. "Illuminate\\": "src/Illuminate/"
  829. }
  830. },
  831. "notification-url": "https://packagist.org/downloads/",
  832. "license": [
  833. "MIT"
  834. ],
  835. "authors": [
  836. {
  837. "name": "Taylor Otwell",
  838. "email": "taylor@laravel.com"
  839. }
  840. ],
  841. "description": "The Laravel Framework.",
  842. "homepage": "https://laravel.com",
  843. "keywords": [
  844. "framework",
  845. "laravel"
  846. ],
  847. "time": "2019-03-21T16:54:38+00:00"
  848. },
  849. {
  850. "name": "laravel/tinker",
  851. "version": "v1.0.8",
  852. "source": {
  853. "type": "git",
  854. "url": "https://github.com/laravel/tinker.git",
  855. "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
  856. },
  857. "dist": {
  858. "type": "zip",
  859. "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
  860. "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
  861. "shasum": "",
  862. "mirrors": [
  863. {
  864. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  865. "preferred": true
  866. }
  867. ]
  868. },
  869. "require": {
  870. "illuminate/console": "~5.1",
  871. "illuminate/contracts": "~5.1",
  872. "illuminate/support": "~5.1",
  873. "php": ">=5.5.9",
  874. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  875. "symfony/var-dumper": "~3.0|~4.0"
  876. },
  877. "require-dev": {
  878. "phpunit/phpunit": "~4.0|~5.0"
  879. },
  880. "suggest": {
  881. "illuminate/database": "The Illuminate Database package (~5.1)."
  882. },
  883. "type": "library",
  884. "extra": {
  885. "branch-alias": {
  886. "dev-master": "1.0-dev"
  887. },
  888. "laravel": {
  889. "providers": [
  890. "Laravel\\Tinker\\TinkerServiceProvider"
  891. ]
  892. }
  893. },
  894. "autoload": {
  895. "psr-4": {
  896. "Laravel\\Tinker\\": "src/"
  897. }
  898. },
  899. "notification-url": "https://packagist.org/downloads/",
  900. "license": [
  901. "MIT"
  902. ],
  903. "authors": [
  904. {
  905. "name": "Taylor Otwell",
  906. "email": "taylor@laravel.com"
  907. }
  908. ],
  909. "description": "Powerful REPL for the Laravel framework.",
  910. "keywords": [
  911. "REPL",
  912. "Tinker",
  913. "laravel",
  914. "psysh"
  915. ],
  916. "time": "2018-10-12T19:39:35+00:00"
  917. },
  918. {
  919. "name": "league/flysystem",
  920. "version": "1.0.50",
  921. "source": {
  922. "type": "git",
  923. "url": "https://github.com/thephpleague/flysystem.git",
  924. "reference": "dab4e7624efa543a943be978008f439c333f2249"
  925. },
  926. "dist": {
  927. "type": "zip",
  928. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/dab4e7624efa543a943be978008f439c333f2249",
  929. "reference": "dab4e7624efa543a943be978008f439c333f2249",
  930. "shasum": "",
  931. "mirrors": [
  932. {
  933. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  934. "preferred": true
  935. }
  936. ]
  937. },
  938. "require": {
  939. "ext-fileinfo": "*",
  940. "php": ">=5.5.9"
  941. },
  942. "conflict": {
  943. "league/flysystem-sftp": "<1.0.6"
  944. },
  945. "require-dev": {
  946. "phpspec/phpspec": "^3.4",
  947. "phpunit/phpunit": "^5.7.10"
  948. },
  949. "suggest": {
  950. "ext-fileinfo": "Required for MimeType",
  951. "ext-ftp": "Allows you to use FTP server storage",
  952. "ext-openssl": "Allows you to use FTPS server storage",
  953. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  954. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  955. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  956. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  957. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  958. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  959. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  960. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  961. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  962. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  963. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  964. },
  965. "type": "library",
  966. "extra": {
  967. "branch-alias": {
  968. "dev-master": "1.1-dev"
  969. }
  970. },
  971. "autoload": {
  972. "psr-4": {
  973. "League\\Flysystem\\": "src/"
  974. }
  975. },
  976. "notification-url": "https://packagist.org/downloads/",
  977. "license": [
  978. "MIT"
  979. ],
  980. "authors": [
  981. {
  982. "name": "Frank de Jonge",
  983. "email": "info@frenky.net"
  984. }
  985. ],
  986. "description": "Filesystem abstraction: Many filesystems, one API.",
  987. "keywords": [
  988. "Cloud Files",
  989. "WebDAV",
  990. "abstraction",
  991. "aws",
  992. "cloud",
  993. "copy.com",
  994. "dropbox",
  995. "file systems",
  996. "files",
  997. "filesystem",
  998. "filesystems",
  999. "ftp",
  1000. "rackspace",
  1001. "remote",
  1002. "s3",
  1003. "sftp",
  1004. "storage"
  1005. ],
  1006. "time": "2019-02-01T08:50:36+00:00"
  1007. },
  1008. {
  1009. "name": "monolog/monolog",
  1010. "version": "1.24.0",
  1011. "source": {
  1012. "type": "git",
  1013. "url": "https://github.com/Seldaek/monolog.git",
  1014. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1015. },
  1016. "dist": {
  1017. "type": "zip",
  1018. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1019. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1020. "shasum": "",
  1021. "mirrors": [
  1022. {
  1023. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1024. "preferred": true
  1025. }
  1026. ]
  1027. },
  1028. "require": {
  1029. "php": ">=5.3.0",
  1030. "psr/log": "~1.0"
  1031. },
  1032. "provide": {
  1033. "psr/log-implementation": "1.0.0"
  1034. },
  1035. "require-dev": {
  1036. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1037. "doctrine/couchdb": "~1.0@dev",
  1038. "graylog2/gelf-php": "~1.0",
  1039. "jakub-onderka/php-parallel-lint": "0.9",
  1040. "php-amqplib/php-amqplib": "~2.4",
  1041. "php-console/php-console": "^3.1.3",
  1042. "phpunit/phpunit": "~4.5",
  1043. "phpunit/phpunit-mock-objects": "2.3.0",
  1044. "ruflin/elastica": ">=0.90 <3.0",
  1045. "sentry/sentry": "^0.13",
  1046. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1047. },
  1048. "suggest": {
  1049. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1050. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1051. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1052. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1053. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1054. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1055. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1056. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1057. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1058. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1059. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1060. },
  1061. "type": "library",
  1062. "extra": {
  1063. "branch-alias": {
  1064. "dev-master": "2.0.x-dev"
  1065. }
  1066. },
  1067. "autoload": {
  1068. "psr-4": {
  1069. "Monolog\\": "src/Monolog"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "MIT"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "Jordi Boggiano",
  1079. "email": "j.boggiano@seld.be",
  1080. "homepage": "http://seld.be"
  1081. }
  1082. ],
  1083. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1084. "homepage": "http://github.com/Seldaek/monolog",
  1085. "keywords": [
  1086. "log",
  1087. "logging",
  1088. "psr-3"
  1089. ],
  1090. "time": "2018-11-05T09:00:11+00:00"
  1091. },
  1092. {
  1093. "name": "nesbot/carbon",
  1094. "version": "2.16.0",
  1095. "source": {
  1096. "type": "git",
  1097. "url": "https://github.com/briannesbitt/Carbon.git",
  1098. "reference": "dd16fedc022180ea4292a03aabe95e9895677911"
  1099. },
  1100. "dist": {
  1101. "type": "zip",
  1102. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/dd16fedc022180ea4292a03aabe95e9895677911",
  1103. "reference": "dd16fedc022180ea4292a03aabe95e9895677911",
  1104. "shasum": "",
  1105. "mirrors": [
  1106. {
  1107. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1108. "preferred": true
  1109. }
  1110. ]
  1111. },
  1112. "require": {
  1113. "ext-json": "*",
  1114. "php": "^7.1.8 || ^8.0",
  1115. "symfony/translation": "^3.4 || ^4.0"
  1116. },
  1117. "require-dev": {
  1118. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1119. "kylekatarnls/multi-tester": "^0.1",
  1120. "phpmd/phpmd": "^2.6",
  1121. "phpstan/phpstan": "^0.10.8",
  1122. "phpunit/phpunit": "^7.5 || ^8.0",
  1123. "squizlabs/php_codesniffer": "^3.4"
  1124. },
  1125. "type": "library",
  1126. "extra": {
  1127. "laravel": {
  1128. "providers": [
  1129. "Carbon\\Laravel\\ServiceProvider"
  1130. ]
  1131. }
  1132. },
  1133. "autoload": {
  1134. "psr-4": {
  1135. "Carbon\\": "src/Carbon/"
  1136. }
  1137. },
  1138. "notification-url": "https://packagist.org/downloads/",
  1139. "license": [
  1140. "MIT"
  1141. ],
  1142. "authors": [
  1143. {
  1144. "name": "Brian Nesbitt",
  1145. "email": "brian@nesbot.com",
  1146. "homepage": "http://nesbot.com"
  1147. }
  1148. ],
  1149. "description": "A simple API extension for DateTime.",
  1150. "homepage": "http://carbon.nesbot.com",
  1151. "keywords": [
  1152. "date",
  1153. "datetime",
  1154. "time"
  1155. ],
  1156. "time": "2019-03-12T09:31:40+00:00"
  1157. },
  1158. {
  1159. "name": "nikic/php-parser",
  1160. "version": "v4.2.1",
  1161. "source": {
  1162. "type": "git",
  1163. "url": "https://github.com/nikic/PHP-Parser.git",
  1164. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  1165. },
  1166. "dist": {
  1167. "type": "zip",
  1168. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  1169. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  1170. "shasum": "",
  1171. "mirrors": [
  1172. {
  1173. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1174. "preferred": true
  1175. }
  1176. ]
  1177. },
  1178. "require": {
  1179. "ext-tokenizer": "*",
  1180. "php": ">=7.0"
  1181. },
  1182. "require-dev": {
  1183. "phpunit/phpunit": "^6.5 || ^7.0"
  1184. },
  1185. "bin": [
  1186. "bin/php-parse"
  1187. ],
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "4.2-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-4": {
  1196. "PhpParser\\": "lib/PhpParser"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "BSD-3-Clause"
  1202. ],
  1203. "authors": [
  1204. {
  1205. "name": "Nikita Popov"
  1206. }
  1207. ],
  1208. "description": "A PHP parser written in PHP",
  1209. "keywords": [
  1210. "parser",
  1211. "php"
  1212. ],
  1213. "time": "2019-02-16T20:54:15+00:00"
  1214. },
  1215. {
  1216. "name": "opis/closure",
  1217. "version": "3.1.6",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/opis/closure.git",
  1221. "reference": "ccb8e3928c5c8181c76cdd0ed9366c5bcaafd91b"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/opis/closure/zipball/ccb8e3928c5c8181c76cdd0ed9366c5bcaafd91b",
  1226. "reference": "ccb8e3928c5c8181c76cdd0ed9366c5bcaafd91b",
  1227. "shasum": "",
  1228. "mirrors": [
  1229. {
  1230. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1231. "preferred": true
  1232. }
  1233. ]
  1234. },
  1235. "require": {
  1236. "php": "^5.4 || ^7.0"
  1237. },
  1238. "require-dev": {
  1239. "jeremeamia/superclosure": "^2.0",
  1240. "phpunit/phpunit": "^4.0|^5.0|^6.0|^7.0"
  1241. },
  1242. "type": "library",
  1243. "extra": {
  1244. "branch-alias": {
  1245. "dev-master": "3.1.x-dev"
  1246. }
  1247. },
  1248. "autoload": {
  1249. "psr-4": {
  1250. "Opis\\Closure\\": "src/"
  1251. },
  1252. "files": [
  1253. "functions.php"
  1254. ]
  1255. },
  1256. "notification-url": "https://packagist.org/downloads/",
  1257. "license": [
  1258. "MIT"
  1259. ],
  1260. "authors": [
  1261. {
  1262. "name": "Marius Sarca",
  1263. "email": "marius.sarca@gmail.com"
  1264. },
  1265. {
  1266. "name": "Sorin Sarca",
  1267. "email": "sarca_sorin@hotmail.com"
  1268. }
  1269. ],
  1270. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1271. "homepage": "https://opis.io/closure",
  1272. "keywords": [
  1273. "anonymous functions",
  1274. "closure",
  1275. "function",
  1276. "serializable",
  1277. "serialization",
  1278. "serialize"
  1279. ],
  1280. "time": "2019-02-22T10:30:00+00:00"
  1281. },
  1282. {
  1283. "name": "paragonie/random_compat",
  1284. "version": "v9.99.99",
  1285. "source": {
  1286. "type": "git",
  1287. "url": "https://github.com/paragonie/random_compat.git",
  1288. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1289. },
  1290. "dist": {
  1291. "type": "zip",
  1292. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1293. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1294. "shasum": "",
  1295. "mirrors": [
  1296. {
  1297. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1298. "preferred": true
  1299. }
  1300. ]
  1301. },
  1302. "require": {
  1303. "php": "^7"
  1304. },
  1305. "require-dev": {
  1306. "phpunit/phpunit": "4.*|5.*",
  1307. "vimeo/psalm": "^1"
  1308. },
  1309. "suggest": {
  1310. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1311. },
  1312. "type": "library",
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "MIT"
  1316. ],
  1317. "authors": [
  1318. {
  1319. "name": "Paragon Initiative Enterprises",
  1320. "email": "security@paragonie.com",
  1321. "homepage": "https://paragonie.com"
  1322. }
  1323. ],
  1324. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1325. "keywords": [
  1326. "csprng",
  1327. "polyfill",
  1328. "pseudorandom",
  1329. "random"
  1330. ],
  1331. "time": "2018-07-02T15:55:56+00:00"
  1332. },
  1333. {
  1334. "name": "phpoption/phpoption",
  1335. "version": "1.5.0",
  1336. "source": {
  1337. "type": "git",
  1338. "url": "https://github.com/schmittjoh/php-option.git",
  1339. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  1340. },
  1341. "dist": {
  1342. "type": "zip",
  1343. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  1344. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  1345. "shasum": "",
  1346. "mirrors": [
  1347. {
  1348. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1349. "preferred": true
  1350. }
  1351. ]
  1352. },
  1353. "require": {
  1354. "php": ">=5.3.0"
  1355. },
  1356. "require-dev": {
  1357. "phpunit/phpunit": "4.7.*"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.3-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-0": {
  1367. "PhpOption\\": "src/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "Apache2"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Johannes M. Schmitt",
  1377. "email": "schmittjoh@gmail.com"
  1378. }
  1379. ],
  1380. "description": "Option Type for PHP",
  1381. "keywords": [
  1382. "language",
  1383. "option",
  1384. "php",
  1385. "type"
  1386. ],
  1387. "time": "2015-07-25T16:39:46+00:00"
  1388. },
  1389. {
  1390. "name": "psr/container",
  1391. "version": "1.0.0",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/php-fig/container.git",
  1395. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1400. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1401. "shasum": "",
  1402. "mirrors": [
  1403. {
  1404. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1405. "preferred": true
  1406. }
  1407. ]
  1408. },
  1409. "require": {
  1410. "php": ">=5.3.0"
  1411. },
  1412. "type": "library",
  1413. "extra": {
  1414. "branch-alias": {
  1415. "dev-master": "1.0.x-dev"
  1416. }
  1417. },
  1418. "autoload": {
  1419. "psr-4": {
  1420. "Psr\\Container\\": "src/"
  1421. }
  1422. },
  1423. "notification-url": "https://packagist.org/downloads/",
  1424. "license": [
  1425. "MIT"
  1426. ],
  1427. "authors": [
  1428. {
  1429. "name": "PHP-FIG",
  1430. "homepage": "http://www.php-fig.org/"
  1431. }
  1432. ],
  1433. "description": "Common Container Interface (PHP FIG PSR-11)",
  1434. "homepage": "https://github.com/php-fig/container",
  1435. "keywords": [
  1436. "PSR-11",
  1437. "container",
  1438. "container-interface",
  1439. "container-interop",
  1440. "psr"
  1441. ],
  1442. "time": "2017-02-14T16:28:37+00:00"
  1443. },
  1444. {
  1445. "name": "psr/log",
  1446. "version": "1.1.0",
  1447. "source": {
  1448. "type": "git",
  1449. "url": "https://github.com/php-fig/log.git",
  1450. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  1451. },
  1452. "dist": {
  1453. "type": "zip",
  1454. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1455. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1456. "shasum": "",
  1457. "mirrors": [
  1458. {
  1459. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1460. "preferred": true
  1461. }
  1462. ]
  1463. },
  1464. "require": {
  1465. "php": ">=5.3.0"
  1466. },
  1467. "type": "library",
  1468. "extra": {
  1469. "branch-alias": {
  1470. "dev-master": "1.0.x-dev"
  1471. }
  1472. },
  1473. "autoload": {
  1474. "psr-4": {
  1475. "Psr\\Log\\": "Psr/Log/"
  1476. }
  1477. },
  1478. "notification-url": "https://packagist.org/downloads/",
  1479. "license": [
  1480. "MIT"
  1481. ],
  1482. "authors": [
  1483. {
  1484. "name": "PHP-FIG",
  1485. "homepage": "http://www.php-fig.org/"
  1486. }
  1487. ],
  1488. "description": "Common interface for logging libraries",
  1489. "homepage": "https://github.com/php-fig/log",
  1490. "keywords": [
  1491. "log",
  1492. "psr",
  1493. "psr-3"
  1494. ],
  1495. "time": "2018-11-20T15:27:04+00:00"
  1496. },
  1497. {
  1498. "name": "psr/simple-cache",
  1499. "version": "1.0.1",
  1500. "source": {
  1501. "type": "git",
  1502. "url": "https://github.com/php-fig/simple-cache.git",
  1503. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1504. },
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1508. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1509. "shasum": "",
  1510. "mirrors": [
  1511. {
  1512. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1513. "preferred": true
  1514. }
  1515. ]
  1516. },
  1517. "require": {
  1518. "php": ">=5.3.0"
  1519. },
  1520. "type": "library",
  1521. "extra": {
  1522. "branch-alias": {
  1523. "dev-master": "1.0.x-dev"
  1524. }
  1525. },
  1526. "autoload": {
  1527. "psr-4": {
  1528. "Psr\\SimpleCache\\": "src/"
  1529. }
  1530. },
  1531. "notification-url": "https://packagist.org/downloads/",
  1532. "license": [
  1533. "MIT"
  1534. ],
  1535. "authors": [
  1536. {
  1537. "name": "PHP-FIG",
  1538. "homepage": "http://www.php-fig.org/"
  1539. }
  1540. ],
  1541. "description": "Common interfaces for simple caching",
  1542. "keywords": [
  1543. "cache",
  1544. "caching",
  1545. "psr",
  1546. "psr-16",
  1547. "simple-cache"
  1548. ],
  1549. "time": "2017-10-23T01:57:42+00:00"
  1550. },
  1551. {
  1552. "name": "psy/psysh",
  1553. "version": "v0.9.9",
  1554. "source": {
  1555. "type": "git",
  1556. "url": "https://github.com/bobthecow/psysh.git",
  1557. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  1558. },
  1559. "dist": {
  1560. "type": "zip",
  1561. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  1562. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  1563. "shasum": "",
  1564. "mirrors": [
  1565. {
  1566. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1567. "preferred": true
  1568. }
  1569. ]
  1570. },
  1571. "require": {
  1572. "dnoegel/php-xdg-base-dir": "0.1",
  1573. "ext-json": "*",
  1574. "ext-tokenizer": "*",
  1575. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  1576. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  1577. "php": ">=5.4.0",
  1578. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  1579. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  1580. },
  1581. "require-dev": {
  1582. "bamarni/composer-bin-plugin": "^1.2",
  1583. "hoa/console": "~2.15|~3.16",
  1584. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  1585. },
  1586. "suggest": {
  1587. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1588. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1589. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1590. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  1591. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  1592. },
  1593. "bin": [
  1594. "bin/psysh"
  1595. ],
  1596. "type": "library",
  1597. "extra": {
  1598. "branch-alias": {
  1599. "dev-develop": "0.9.x-dev"
  1600. }
  1601. },
  1602. "autoload": {
  1603. "files": [
  1604. "src/functions.php"
  1605. ],
  1606. "psr-4": {
  1607. "Psy\\": "src/"
  1608. }
  1609. },
  1610. "notification-url": "https://packagist.org/downloads/",
  1611. "license": [
  1612. "MIT"
  1613. ],
  1614. "authors": [
  1615. {
  1616. "name": "Justin Hileman",
  1617. "email": "justin@justinhileman.info",
  1618. "homepage": "http://justinhileman.com"
  1619. }
  1620. ],
  1621. "description": "An interactive shell for modern PHP.",
  1622. "homepage": "http://psysh.org",
  1623. "keywords": [
  1624. "REPL",
  1625. "console",
  1626. "interactive",
  1627. "shell"
  1628. ],
  1629. "time": "2018-10-13T15:16:03+00:00"
  1630. },
  1631. {
  1632. "name": "ramsey/uuid",
  1633. "version": "3.8.0",
  1634. "source": {
  1635. "type": "git",
  1636. "url": "https://github.com/ramsey/uuid.git",
  1637. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  1638. },
  1639. "dist": {
  1640. "type": "zip",
  1641. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  1642. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  1643. "shasum": "",
  1644. "mirrors": [
  1645. {
  1646. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1647. "preferred": true
  1648. }
  1649. ]
  1650. },
  1651. "require": {
  1652. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  1653. "php": "^5.4 || ^7.0",
  1654. "symfony/polyfill-ctype": "^1.8"
  1655. },
  1656. "replace": {
  1657. "rhumsaa/uuid": "self.version"
  1658. },
  1659. "require-dev": {
  1660. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  1661. "doctrine/annotations": "~1.2.0",
  1662. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  1663. "ircmaxell/random-lib": "^1.1",
  1664. "jakub-onderka/php-parallel-lint": "^0.9.0",
  1665. "mockery/mockery": "^0.9.9",
  1666. "moontoast/math": "^1.1",
  1667. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  1668. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  1669. "squizlabs/php_codesniffer": "^2.3"
  1670. },
  1671. "suggest": {
  1672. "ext-ctype": "Provides support for PHP Ctype functions",
  1673. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  1674. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  1675. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  1676. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  1677. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  1678. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  1679. },
  1680. "type": "library",
  1681. "extra": {
  1682. "branch-alias": {
  1683. "dev-master": "3.x-dev"
  1684. }
  1685. },
  1686. "autoload": {
  1687. "psr-4": {
  1688. "Ramsey\\Uuid\\": "src/"
  1689. }
  1690. },
  1691. "notification-url": "https://packagist.org/downloads/",
  1692. "license": [
  1693. "MIT"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "Marijn Huizendveld",
  1698. "email": "marijn.huizendveld@gmail.com"
  1699. },
  1700. {
  1701. "name": "Thibaud Fabre",
  1702. "email": "thibaud@aztech.io"
  1703. },
  1704. {
  1705. "name": "Ben Ramsey",
  1706. "email": "ben@benramsey.com",
  1707. "homepage": "https://benramsey.com"
  1708. }
  1709. ],
  1710. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  1711. "homepage": "https://github.com/ramsey/uuid",
  1712. "keywords": [
  1713. "guid",
  1714. "identifier",
  1715. "uuid"
  1716. ],
  1717. "time": "2018-07-19T23:38:55+00:00"
  1718. },
  1719. {
  1720. "name": "swiftmailer/swiftmailer",
  1721. "version": "v6.2.0",
  1722. "source": {
  1723. "type": "git",
  1724. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1725. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707"
  1726. },
  1727. "dist": {
  1728. "type": "zip",
  1729. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  1730. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  1731. "shasum": "",
  1732. "mirrors": [
  1733. {
  1734. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1735. "preferred": true
  1736. }
  1737. ]
  1738. },
  1739. "require": {
  1740. "egulias/email-validator": "~2.0",
  1741. "php": ">=7.0.0",
  1742. "symfony/polyfill-iconv": "^1.0",
  1743. "symfony/polyfill-intl-idn": "^1.10",
  1744. "symfony/polyfill-mbstring": "^1.0"
  1745. },
  1746. "require-dev": {
  1747. "mockery/mockery": "~0.9.1",
  1748. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  1749. },
  1750. "suggest": {
  1751. "ext-intl": "Needed to support internationalized email addresses",
  1752. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "branch-alias": {
  1757. "dev-master": "6.2-dev"
  1758. }
  1759. },
  1760. "autoload": {
  1761. "files": [
  1762. "lib/swift_required.php"
  1763. ]
  1764. },
  1765. "notification-url": "https://packagist.org/downloads/",
  1766. "license": [
  1767. "MIT"
  1768. ],
  1769. "authors": [
  1770. {
  1771. "name": "Chris Corbyn"
  1772. },
  1773. {
  1774. "name": "Fabien Potencier",
  1775. "email": "fabien@symfony.com"
  1776. }
  1777. ],
  1778. "description": "Swiftmailer, free feature-rich PHP mailer",
  1779. "homepage": "https://swiftmailer.symfony.com",
  1780. "keywords": [
  1781. "email",
  1782. "mail",
  1783. "mailer"
  1784. ],
  1785. "time": "2019-03-10T07:52:41+00:00"
  1786. },
  1787. {
  1788. "name": "symfony/console",
  1789. "version": "v4.2.4",
  1790. "source": {
  1791. "type": "git",
  1792. "url": "https://github.com/symfony/console.git",
  1793. "reference": "9dc2299a016497f9ee620be94524e6c0af0280a9"
  1794. },
  1795. "dist": {
  1796. "type": "zip",
  1797. "url": "https://api.github.com/repos/symfony/console/zipball/9dc2299a016497f9ee620be94524e6c0af0280a9",
  1798. "reference": "9dc2299a016497f9ee620be94524e6c0af0280a9",
  1799. "shasum": "",
  1800. "mirrors": [
  1801. {
  1802. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1803. "preferred": true
  1804. }
  1805. ]
  1806. },
  1807. "require": {
  1808. "php": "^7.1.3",
  1809. "symfony/contracts": "^1.0",
  1810. "symfony/polyfill-mbstring": "~1.0"
  1811. },
  1812. "conflict": {
  1813. "symfony/dependency-injection": "<3.4",
  1814. "symfony/process": "<3.3"
  1815. },
  1816. "provide": {
  1817. "psr/log-implementation": "1.0"
  1818. },
  1819. "require-dev": {
  1820. "psr/log": "~1.0",
  1821. "symfony/config": "~3.4|~4.0",
  1822. "symfony/dependency-injection": "~3.4|~4.0",
  1823. "symfony/event-dispatcher": "~3.4|~4.0",
  1824. "symfony/lock": "~3.4|~4.0",
  1825. "symfony/process": "~3.4|~4.0"
  1826. },
  1827. "suggest": {
  1828. "psr/log": "For using the console logger",
  1829. "symfony/event-dispatcher": "",
  1830. "symfony/lock": "",
  1831. "symfony/process": ""
  1832. },
  1833. "type": "library",
  1834. "extra": {
  1835. "branch-alias": {
  1836. "dev-master": "4.2-dev"
  1837. }
  1838. },
  1839. "autoload": {
  1840. "psr-4": {
  1841. "Symfony\\Component\\Console\\": ""
  1842. },
  1843. "exclude-from-classmap": [
  1844. "/Tests/"
  1845. ]
  1846. },
  1847. "notification-url": "https://packagist.org/downloads/",
  1848. "license": [
  1849. "MIT"
  1850. ],
  1851. "authors": [
  1852. {
  1853. "name": "Fabien Potencier",
  1854. "email": "fabien@symfony.com"
  1855. },
  1856. {
  1857. "name": "Symfony Community",
  1858. "homepage": "https://symfony.com/contributors"
  1859. }
  1860. ],
  1861. "description": "Symfony Console Component",
  1862. "homepage": "https://symfony.com",
  1863. "time": "2019-02-23T15:17:42+00:00"
  1864. },
  1865. {
  1866. "name": "symfony/contracts",
  1867. "version": "v1.0.2",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/symfony/contracts.git",
  1871. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  1876. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  1877. "shasum": "",
  1878. "mirrors": [
  1879. {
  1880. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1881. "preferred": true
  1882. }
  1883. ]
  1884. },
  1885. "require": {
  1886. "php": "^7.1.3"
  1887. },
  1888. "require-dev": {
  1889. "psr/cache": "^1.0",
  1890. "psr/container": "^1.0"
  1891. },
  1892. "suggest": {
  1893. "psr/cache": "When using the Cache contracts",
  1894. "psr/container": "When using the Service contracts",
  1895. "symfony/cache-contracts-implementation": "",
  1896. "symfony/service-contracts-implementation": "",
  1897. "symfony/translation-contracts-implementation": ""
  1898. },
  1899. "type": "library",
  1900. "extra": {
  1901. "branch-alias": {
  1902. "dev-master": "1.0-dev"
  1903. }
  1904. },
  1905. "autoload": {
  1906. "psr-4": {
  1907. "Symfony\\Contracts\\": ""
  1908. },
  1909. "exclude-from-classmap": [
  1910. "**/Tests/"
  1911. ]
  1912. },
  1913. "notification-url": "https://packagist.org/downloads/",
  1914. "license": [
  1915. "MIT"
  1916. ],
  1917. "authors": [
  1918. {
  1919. "name": "Nicolas Grekas",
  1920. "email": "p@tchwork.com"
  1921. },
  1922. {
  1923. "name": "Symfony Community",
  1924. "homepage": "https://symfony.com/contributors"
  1925. }
  1926. ],
  1927. "description": "A set of abstractions extracted out of the Symfony components",
  1928. "homepage": "https://symfony.com",
  1929. "keywords": [
  1930. "abstractions",
  1931. "contracts",
  1932. "decoupling",
  1933. "interfaces",
  1934. "interoperability",
  1935. "standards"
  1936. ],
  1937. "time": "2018-12-05T08:06:11+00:00"
  1938. },
  1939. {
  1940. "name": "symfony/css-selector",
  1941. "version": "v4.2.4",
  1942. "source": {
  1943. "type": "git",
  1944. "url": "https://github.com/symfony/css-selector.git",
  1945. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a"
  1946. },
  1947. "dist": {
  1948. "type": "zip",
  1949. "url": "https://api.github.com/repos/symfony/css-selector/zipball/48eddf66950fa57996e1be4a55916d65c10c604a",
  1950. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a",
  1951. "shasum": "",
  1952. "mirrors": [
  1953. {
  1954. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1955. "preferred": true
  1956. }
  1957. ]
  1958. },
  1959. "require": {
  1960. "php": "^7.1.3"
  1961. },
  1962. "type": "library",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-master": "4.2-dev"
  1966. }
  1967. },
  1968. "autoload": {
  1969. "psr-4": {
  1970. "Symfony\\Component\\CssSelector\\": ""
  1971. },
  1972. "exclude-from-classmap": [
  1973. "/Tests/"
  1974. ]
  1975. },
  1976. "notification-url": "https://packagist.org/downloads/",
  1977. "license": [
  1978. "MIT"
  1979. ],
  1980. "authors": [
  1981. {
  1982. "name": "Jean-François Simon",
  1983. "email": "jeanfrancois.simon@sensiolabs.com"
  1984. },
  1985. {
  1986. "name": "Fabien Potencier",
  1987. "email": "fabien@symfony.com"
  1988. },
  1989. {
  1990. "name": "Symfony Community",
  1991. "homepage": "https://symfony.com/contributors"
  1992. }
  1993. ],
  1994. "description": "Symfony CssSelector Component",
  1995. "homepage": "https://symfony.com",
  1996. "time": "2019-01-16T20:31:39+00:00"
  1997. },
  1998. {
  1999. "name": "symfony/debug",
  2000. "version": "v4.2.4",
  2001. "source": {
  2002. "type": "git",
  2003. "url": "https://github.com/symfony/debug.git",
  2004. "reference": "de73f48977b8eaf7ce22814d66e43a1662cc864f"
  2005. },
  2006. "dist": {
  2007. "type": "zip",
  2008. "url": "https://api.github.com/repos/symfony/debug/zipball/de73f48977b8eaf7ce22814d66e43a1662cc864f",
  2009. "reference": "de73f48977b8eaf7ce22814d66e43a1662cc864f",
  2010. "shasum": "",
  2011. "mirrors": [
  2012. {
  2013. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2014. "preferred": true
  2015. }
  2016. ]
  2017. },
  2018. "require": {
  2019. "php": "^7.1.3",
  2020. "psr/log": "~1.0"
  2021. },
  2022. "conflict": {
  2023. "symfony/http-kernel": "<3.4"
  2024. },
  2025. "require-dev": {
  2026. "symfony/http-kernel": "~3.4|~4.0"
  2027. },
  2028. "type": "library",
  2029. "extra": {
  2030. "branch-alias": {
  2031. "dev-master": "4.2-dev"
  2032. }
  2033. },
  2034. "autoload": {
  2035. "psr-4": {
  2036. "Symfony\\Component\\Debug\\": ""
  2037. },
  2038. "exclude-from-classmap": [
  2039. "/Tests/"
  2040. ]
  2041. },
  2042. "notification-url": "https://packagist.org/downloads/",
  2043. "license": [
  2044. "MIT"
  2045. ],
  2046. "authors": [
  2047. {
  2048. "name": "Fabien Potencier",
  2049. "email": "fabien@symfony.com"
  2050. },
  2051. {
  2052. "name": "Symfony Community",
  2053. "homepage": "https://symfony.com/contributors"
  2054. }
  2055. ],
  2056. "description": "Symfony Debug Component",
  2057. "homepage": "https://symfony.com",
  2058. "time": "2019-03-03T18:11:24+00:00"
  2059. },
  2060. {
  2061. "name": "symfony/event-dispatcher",
  2062. "version": "v4.2.4",
  2063. "source": {
  2064. "type": "git",
  2065. "url": "https://github.com/symfony/event-dispatcher.git",
  2066. "reference": "3354d2e6af986dd71f68b4e5cf4a933ab58697fb"
  2067. },
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3354d2e6af986dd71f68b4e5cf4a933ab58697fb",
  2071. "reference": "3354d2e6af986dd71f68b4e5cf4a933ab58697fb",
  2072. "shasum": "",
  2073. "mirrors": [
  2074. {
  2075. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2076. "preferred": true
  2077. }
  2078. ]
  2079. },
  2080. "require": {
  2081. "php": "^7.1.3",
  2082. "symfony/contracts": "^1.0"
  2083. },
  2084. "conflict": {
  2085. "symfony/dependency-injection": "<3.4"
  2086. },
  2087. "require-dev": {
  2088. "psr/log": "~1.0",
  2089. "symfony/config": "~3.4|~4.0",
  2090. "symfony/dependency-injection": "~3.4|~4.0",
  2091. "symfony/expression-language": "~3.4|~4.0",
  2092. "symfony/stopwatch": "~3.4|~4.0"
  2093. },
  2094. "suggest": {
  2095. "symfony/dependency-injection": "",
  2096. "symfony/http-kernel": ""
  2097. },
  2098. "type": "library",
  2099. "extra": {
  2100. "branch-alias": {
  2101. "dev-master": "4.2-dev"
  2102. }
  2103. },
  2104. "autoload": {
  2105. "psr-4": {
  2106. "Symfony\\Component\\EventDispatcher\\": ""
  2107. },
  2108. "exclude-from-classmap": [
  2109. "/Tests/"
  2110. ]
  2111. },
  2112. "notification-url": "https://packagist.org/downloads/",
  2113. "license": [
  2114. "MIT"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "Fabien Potencier",
  2119. "email": "fabien@symfony.com"
  2120. },
  2121. {
  2122. "name": "Symfony Community",
  2123. "homepage": "https://symfony.com/contributors"
  2124. }
  2125. ],
  2126. "description": "Symfony EventDispatcher Component",
  2127. "homepage": "https://symfony.com",
  2128. "time": "2019-02-23T15:17:42+00:00"
  2129. },
  2130. {
  2131. "name": "symfony/finder",
  2132. "version": "v4.2.4",
  2133. "source": {
  2134. "type": "git",
  2135. "url": "https://github.com/symfony/finder.git",
  2136. "reference": "267b7002c1b70ea80db0833c3afe05f0fbde580a"
  2137. },
  2138. "dist": {
  2139. "type": "zip",
  2140. "url": "https://api.github.com/repos/symfony/finder/zipball/267b7002c1b70ea80db0833c3afe05f0fbde580a",
  2141. "reference": "267b7002c1b70ea80db0833c3afe05f0fbde580a",
  2142. "shasum": "",
  2143. "mirrors": [
  2144. {
  2145. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2146. "preferred": true
  2147. }
  2148. ]
  2149. },
  2150. "require": {
  2151. "php": "^7.1.3"
  2152. },
  2153. "type": "library",
  2154. "extra": {
  2155. "branch-alias": {
  2156. "dev-master": "4.2-dev"
  2157. }
  2158. },
  2159. "autoload": {
  2160. "psr-4": {
  2161. "Symfony\\Component\\Finder\\": ""
  2162. },
  2163. "exclude-from-classmap": [
  2164. "/Tests/"
  2165. ]
  2166. },
  2167. "notification-url": "https://packagist.org/downloads/",
  2168. "license": [
  2169. "MIT"
  2170. ],
  2171. "authors": [
  2172. {
  2173. "name": "Fabien Potencier",
  2174. "email": "fabien@symfony.com"
  2175. },
  2176. {
  2177. "name": "Symfony Community",
  2178. "homepage": "https://symfony.com/contributors"
  2179. }
  2180. ],
  2181. "description": "Symfony Finder Component",
  2182. "homepage": "https://symfony.com",
  2183. "time": "2019-02-23T15:42:05+00:00"
  2184. },
  2185. {
  2186. "name": "symfony/http-foundation",
  2187. "version": "v4.2.4",
  2188. "source": {
  2189. "type": "git",
  2190. "url": "https://github.com/symfony/http-foundation.git",
  2191. "reference": "850a667d6254ccf6c61d853407b16f21c4579c77"
  2192. },
  2193. "dist": {
  2194. "type": "zip",
  2195. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/850a667d6254ccf6c61d853407b16f21c4579c77",
  2196. "reference": "850a667d6254ccf6c61d853407b16f21c4579c77",
  2197. "shasum": "",
  2198. "mirrors": [
  2199. {
  2200. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2201. "preferred": true
  2202. }
  2203. ]
  2204. },
  2205. "require": {
  2206. "php": "^7.1.3",
  2207. "symfony/polyfill-mbstring": "~1.1"
  2208. },
  2209. "require-dev": {
  2210. "predis/predis": "~1.0",
  2211. "symfony/expression-language": "~3.4|~4.0"
  2212. },
  2213. "type": "library",
  2214. "extra": {
  2215. "branch-alias": {
  2216. "dev-master": "4.2-dev"
  2217. }
  2218. },
  2219. "autoload": {
  2220. "psr-4": {
  2221. "Symfony\\Component\\HttpFoundation\\": ""
  2222. },
  2223. "exclude-from-classmap": [
  2224. "/Tests/"
  2225. ]
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "MIT"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "Fabien Potencier",
  2234. "email": "fabien@symfony.com"
  2235. },
  2236. {
  2237. "name": "Symfony Community",
  2238. "homepage": "https://symfony.com/contributors"
  2239. }
  2240. ],
  2241. "description": "Symfony HttpFoundation Component",
  2242. "homepage": "https://symfony.com",
  2243. "time": "2019-02-26T08:03:39+00:00"
  2244. },
  2245. {
  2246. "name": "symfony/http-kernel",
  2247. "version": "v4.2.4",
  2248. "source": {
  2249. "type": "git",
  2250. "url": "https://github.com/symfony/http-kernel.git",
  2251. "reference": "895ceccaa8149f9343e6134e607c21da42d73b7a"
  2252. },
  2253. "dist": {
  2254. "type": "zip",
  2255. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/895ceccaa8149f9343e6134e607c21da42d73b7a",
  2256. "reference": "895ceccaa8149f9343e6134e607c21da42d73b7a",
  2257. "shasum": "",
  2258. "mirrors": [
  2259. {
  2260. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2261. "preferred": true
  2262. }
  2263. ]
  2264. },
  2265. "require": {
  2266. "php": "^7.1.3",
  2267. "psr/log": "~1.0",
  2268. "symfony/contracts": "^1.0.2",
  2269. "symfony/debug": "~3.4|~4.0",
  2270. "symfony/event-dispatcher": "~4.1",
  2271. "symfony/http-foundation": "^4.1.1",
  2272. "symfony/polyfill-ctype": "~1.8"
  2273. },
  2274. "conflict": {
  2275. "symfony/config": "<3.4",
  2276. "symfony/dependency-injection": "<4.2",
  2277. "symfony/translation": "<4.2",
  2278. "symfony/var-dumper": "<4.1.1",
  2279. "twig/twig": "<1.34|<2.4,>=2"
  2280. },
  2281. "provide": {
  2282. "psr/log-implementation": "1.0"
  2283. },
  2284. "require-dev": {
  2285. "psr/cache": "~1.0",
  2286. "symfony/browser-kit": "~3.4|~4.0",
  2287. "symfony/config": "~3.4|~4.0",
  2288. "symfony/console": "~3.4|~4.0",
  2289. "symfony/css-selector": "~3.4|~4.0",
  2290. "symfony/dependency-injection": "^4.2",
  2291. "symfony/dom-crawler": "~3.4|~4.0",
  2292. "symfony/expression-language": "~3.4|~4.0",
  2293. "symfony/finder": "~3.4|~4.0",
  2294. "symfony/process": "~3.4|~4.0",
  2295. "symfony/routing": "~3.4|~4.0",
  2296. "symfony/stopwatch": "~3.4|~4.0",
  2297. "symfony/templating": "~3.4|~4.0",
  2298. "symfony/translation": "~4.2",
  2299. "symfony/var-dumper": "^4.1.1"
  2300. },
  2301. "suggest": {
  2302. "symfony/browser-kit": "",
  2303. "symfony/config": "",
  2304. "symfony/console": "",
  2305. "symfony/dependency-injection": "",
  2306. "symfony/var-dumper": ""
  2307. },
  2308. "type": "library",
  2309. "extra": {
  2310. "branch-alias": {
  2311. "dev-master": "4.2-dev"
  2312. }
  2313. },
  2314. "autoload": {
  2315. "psr-4": {
  2316. "Symfony\\Component\\HttpKernel\\": ""
  2317. },
  2318. "exclude-from-classmap": [
  2319. "/Tests/"
  2320. ]
  2321. },
  2322. "notification-url": "https://packagist.org/downloads/",
  2323. "license": [
  2324. "MIT"
  2325. ],
  2326. "authors": [
  2327. {
  2328. "name": "Fabien Potencier",
  2329. "email": "fabien@symfony.com"
  2330. },
  2331. {
  2332. "name": "Symfony Community",
  2333. "homepage": "https://symfony.com/contributors"
  2334. }
  2335. ],
  2336. "description": "Symfony HttpKernel Component",
  2337. "homepage": "https://symfony.com",
  2338. "time": "2019-03-03T19:38:09+00:00"
  2339. },
  2340. {
  2341. "name": "symfony/polyfill-ctype",
  2342. "version": "v1.11.0",
  2343. "source": {
  2344. "type": "git",
  2345. "url": "https://github.com/symfony/polyfill-ctype.git",
  2346. "reference": "82ebae02209c21113908c229e9883c419720738a"
  2347. },
  2348. "dist": {
  2349. "type": "zip",
  2350. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  2351. "reference": "82ebae02209c21113908c229e9883c419720738a",
  2352. "shasum": "",
  2353. "mirrors": [
  2354. {
  2355. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2356. "preferred": true
  2357. }
  2358. ]
  2359. },
  2360. "require": {
  2361. "php": ">=5.3.3"
  2362. },
  2363. "suggest": {
  2364. "ext-ctype": "For best performance"
  2365. },
  2366. "type": "library",
  2367. "extra": {
  2368. "branch-alias": {
  2369. "dev-master": "1.11-dev"
  2370. }
  2371. },
  2372. "autoload": {
  2373. "psr-4": {
  2374. "Symfony\\Polyfill\\Ctype\\": ""
  2375. },
  2376. "files": [
  2377. "bootstrap.php"
  2378. ]
  2379. },
  2380. "notification-url": "https://packagist.org/downloads/",
  2381. "license": [
  2382. "MIT"
  2383. ],
  2384. "authors": [
  2385. {
  2386. "name": "Symfony Community",
  2387. "homepage": "https://symfony.com/contributors"
  2388. },
  2389. {
  2390. "name": "Gert de Pagter",
  2391. "email": "BackEndTea@gmail.com"
  2392. }
  2393. ],
  2394. "description": "Symfony polyfill for ctype functions",
  2395. "homepage": "https://symfony.com",
  2396. "keywords": [
  2397. "compatibility",
  2398. "ctype",
  2399. "polyfill",
  2400. "portable"
  2401. ],
  2402. "time": "2019-02-06T07:57:58+00:00"
  2403. },
  2404. {
  2405. "name": "symfony/polyfill-iconv",
  2406. "version": "v1.11.0",
  2407. "source": {
  2408. "type": "git",
  2409. "url": "https://github.com/symfony/polyfill-iconv.git",
  2410. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  2411. },
  2412. "dist": {
  2413. "type": "zip",
  2414. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  2415. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  2416. "shasum": "",
  2417. "mirrors": [
  2418. {
  2419. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2420. "preferred": true
  2421. }
  2422. ]
  2423. },
  2424. "require": {
  2425. "php": ">=5.3.3"
  2426. },
  2427. "suggest": {
  2428. "ext-iconv": "For best performance"
  2429. },
  2430. "type": "library",
  2431. "extra": {
  2432. "branch-alias": {
  2433. "dev-master": "1.11-dev"
  2434. }
  2435. },
  2436. "autoload": {
  2437. "psr-4": {
  2438. "Symfony\\Polyfill\\Iconv\\": ""
  2439. },
  2440. "files": [
  2441. "bootstrap.php"
  2442. ]
  2443. },
  2444. "notification-url": "https://packagist.org/downloads/",
  2445. "license": [
  2446. "MIT"
  2447. ],
  2448. "authors": [
  2449. {
  2450. "name": "Nicolas Grekas",
  2451. "email": "p@tchwork.com"
  2452. },
  2453. {
  2454. "name": "Symfony Community",
  2455. "homepage": "https://symfony.com/contributors"
  2456. }
  2457. ],
  2458. "description": "Symfony polyfill for the Iconv extension",
  2459. "homepage": "https://symfony.com",
  2460. "keywords": [
  2461. "compatibility",
  2462. "iconv",
  2463. "polyfill",
  2464. "portable",
  2465. "shim"
  2466. ],
  2467. "time": "2019-02-06T07:57:58+00:00"
  2468. },
  2469. {
  2470. "name": "symfony/polyfill-intl-idn",
  2471. "version": "v1.11.0",
  2472. "source": {
  2473. "type": "git",
  2474. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2475. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af"
  2476. },
  2477. "dist": {
  2478. "type": "zip",
  2479. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  2480. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  2481. "shasum": "",
  2482. "mirrors": [
  2483. {
  2484. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2485. "preferred": true
  2486. }
  2487. ]
  2488. },
  2489. "require": {
  2490. "php": ">=5.3.3",
  2491. "symfony/polyfill-mbstring": "^1.3",
  2492. "symfony/polyfill-php72": "^1.9"
  2493. },
  2494. "suggest": {
  2495. "ext-intl": "For best performance"
  2496. },
  2497. "type": "library",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-master": "1.9-dev"
  2501. }
  2502. },
  2503. "autoload": {
  2504. "psr-4": {
  2505. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2506. },
  2507. "files": [
  2508. "bootstrap.php"
  2509. ]
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "authors": [
  2516. {
  2517. "name": "Symfony Community",
  2518. "homepage": "https://symfony.com/contributors"
  2519. },
  2520. {
  2521. "name": "Laurent Bassin",
  2522. "email": "laurent@bassin.info"
  2523. }
  2524. ],
  2525. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2526. "homepage": "https://symfony.com",
  2527. "keywords": [
  2528. "compatibility",
  2529. "idn",
  2530. "intl",
  2531. "polyfill",
  2532. "portable",
  2533. "shim"
  2534. ],
  2535. "time": "2019-03-04T13:44:35+00:00"
  2536. },
  2537. {
  2538. "name": "symfony/polyfill-mbstring",
  2539. "version": "v1.11.0",
  2540. "source": {
  2541. "type": "git",
  2542. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2543. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  2544. },
  2545. "dist": {
  2546. "type": "zip",
  2547. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  2548. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  2549. "shasum": "",
  2550. "mirrors": [
  2551. {
  2552. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2553. "preferred": true
  2554. }
  2555. ]
  2556. },
  2557. "require": {
  2558. "php": ">=5.3.3"
  2559. },
  2560. "suggest": {
  2561. "ext-mbstring": "For best performance"
  2562. },
  2563. "type": "library",
  2564. "extra": {
  2565. "branch-alias": {
  2566. "dev-master": "1.11-dev"
  2567. }
  2568. },
  2569. "autoload": {
  2570. "psr-4": {
  2571. "Symfony\\Polyfill\\Mbstring\\": ""
  2572. },
  2573. "files": [
  2574. "bootstrap.php"
  2575. ]
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Nicolas Grekas",
  2584. "email": "p@tchwork.com"
  2585. },
  2586. {
  2587. "name": "Symfony Community",
  2588. "homepage": "https://symfony.com/contributors"
  2589. }
  2590. ],
  2591. "description": "Symfony polyfill for the Mbstring extension",
  2592. "homepage": "https://symfony.com",
  2593. "keywords": [
  2594. "compatibility",
  2595. "mbstring",
  2596. "polyfill",
  2597. "portable",
  2598. "shim"
  2599. ],
  2600. "time": "2019-02-06T07:57:58+00:00"
  2601. },
  2602. {
  2603. "name": "symfony/polyfill-php72",
  2604. "version": "v1.11.0",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/symfony/polyfill-php72.git",
  2608. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2613. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2614. "shasum": "",
  2615. "mirrors": [
  2616. {
  2617. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2618. "preferred": true
  2619. }
  2620. ]
  2621. },
  2622. "require": {
  2623. "php": ">=5.3.3"
  2624. },
  2625. "type": "library",
  2626. "extra": {
  2627. "branch-alias": {
  2628. "dev-master": "1.11-dev"
  2629. }
  2630. },
  2631. "autoload": {
  2632. "psr-4": {
  2633. "Symfony\\Polyfill\\Php72\\": ""
  2634. },
  2635. "files": [
  2636. "bootstrap.php"
  2637. ]
  2638. },
  2639. "notification-url": "https://packagist.org/downloads/",
  2640. "license": [
  2641. "MIT"
  2642. ],
  2643. "authors": [
  2644. {
  2645. "name": "Nicolas Grekas",
  2646. "email": "p@tchwork.com"
  2647. },
  2648. {
  2649. "name": "Symfony Community",
  2650. "homepage": "https://symfony.com/contributors"
  2651. }
  2652. ],
  2653. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2654. "homepage": "https://symfony.com",
  2655. "keywords": [
  2656. "compatibility",
  2657. "polyfill",
  2658. "portable",
  2659. "shim"
  2660. ],
  2661. "time": "2019-02-06T07:57:58+00:00"
  2662. },
  2663. {
  2664. "name": "symfony/process",
  2665. "version": "v4.2.4",
  2666. "source": {
  2667. "type": "git",
  2668. "url": "https://github.com/symfony/process.git",
  2669. "reference": "6c05edb11fbeff9e2b324b4270ecb17911a8b7ad"
  2670. },
  2671. "dist": {
  2672. "type": "zip",
  2673. "url": "https://api.github.com/repos/symfony/process/zipball/6c05edb11fbeff9e2b324b4270ecb17911a8b7ad",
  2674. "reference": "6c05edb11fbeff9e2b324b4270ecb17911a8b7ad",
  2675. "shasum": "",
  2676. "mirrors": [
  2677. {
  2678. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2679. "preferred": true
  2680. }
  2681. ]
  2682. },
  2683. "require": {
  2684. "php": "^7.1.3"
  2685. },
  2686. "type": "library",
  2687. "extra": {
  2688. "branch-alias": {
  2689. "dev-master": "4.2-dev"
  2690. }
  2691. },
  2692. "autoload": {
  2693. "psr-4": {
  2694. "Symfony\\Component\\Process\\": ""
  2695. },
  2696. "exclude-from-classmap": [
  2697. "/Tests/"
  2698. ]
  2699. },
  2700. "notification-url": "https://packagist.org/downloads/",
  2701. "license": [
  2702. "MIT"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "Fabien Potencier",
  2707. "email": "fabien@symfony.com"
  2708. },
  2709. {
  2710. "name": "Symfony Community",
  2711. "homepage": "https://symfony.com/contributors"
  2712. }
  2713. ],
  2714. "description": "Symfony Process Component",
  2715. "homepage": "https://symfony.com",
  2716. "time": "2019-01-24T22:05:03+00:00"
  2717. },
  2718. {
  2719. "name": "symfony/routing",
  2720. "version": "v4.2.4",
  2721. "source": {
  2722. "type": "git",
  2723. "url": "https://github.com/symfony/routing.git",
  2724. "reference": "ff03eae644e6b1e26d4a04b2385fe3a1a7f04e42"
  2725. },
  2726. "dist": {
  2727. "type": "zip",
  2728. "url": "https://api.github.com/repos/symfony/routing/zipball/ff03eae644e6b1e26d4a04b2385fe3a1a7f04e42",
  2729. "reference": "ff03eae644e6b1e26d4a04b2385fe3a1a7f04e42",
  2730. "shasum": "",
  2731. "mirrors": [
  2732. {
  2733. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2734. "preferred": true
  2735. }
  2736. ]
  2737. },
  2738. "require": {
  2739. "php": "^7.1.3"
  2740. },
  2741. "conflict": {
  2742. "symfony/config": "<4.2",
  2743. "symfony/dependency-injection": "<3.4",
  2744. "symfony/yaml": "<3.4"
  2745. },
  2746. "require-dev": {
  2747. "doctrine/annotations": "~1.0",
  2748. "psr/log": "~1.0",
  2749. "symfony/config": "~4.2",
  2750. "symfony/dependency-injection": "~3.4|~4.0",
  2751. "symfony/expression-language": "~3.4|~4.0",
  2752. "symfony/http-foundation": "~3.4|~4.0",
  2753. "symfony/yaml": "~3.4|~4.0"
  2754. },
  2755. "suggest": {
  2756. "doctrine/annotations": "For using the annotation loader",
  2757. "symfony/config": "For using the all-in-one router or any loader",
  2758. "symfony/dependency-injection": "For loading routes from a service",
  2759. "symfony/expression-language": "For using expression matching",
  2760. "symfony/http-foundation": "For using a Symfony Request object",
  2761. "symfony/yaml": "For using the YAML loader"
  2762. },
  2763. "type": "library",
  2764. "extra": {
  2765. "branch-alias": {
  2766. "dev-master": "4.2-dev"
  2767. }
  2768. },
  2769. "autoload": {
  2770. "psr-4": {
  2771. "Symfony\\Component\\Routing\\": ""
  2772. },
  2773. "exclude-from-classmap": [
  2774. "/Tests/"
  2775. ]
  2776. },
  2777. "notification-url": "https://packagist.org/downloads/",
  2778. "license": [
  2779. "MIT"
  2780. ],
  2781. "authors": [
  2782. {
  2783. "name": "Fabien Potencier",
  2784. "email": "fabien@symfony.com"
  2785. },
  2786. {
  2787. "name": "Symfony Community",
  2788. "homepage": "https://symfony.com/contributors"
  2789. }
  2790. ],
  2791. "description": "Symfony Routing Component",
  2792. "homepage": "https://symfony.com",
  2793. "keywords": [
  2794. "router",
  2795. "routing",
  2796. "uri",
  2797. "url"
  2798. ],
  2799. "time": "2019-02-23T15:17:42+00:00"
  2800. },
  2801. {
  2802. "name": "symfony/translation",
  2803. "version": "v4.2.4",
  2804. "source": {
  2805. "type": "git",
  2806. "url": "https://github.com/symfony/translation.git",
  2807. "reference": "748464177a77011f8f4cdd076773862ce4915f8f"
  2808. },
  2809. "dist": {
  2810. "type": "zip",
  2811. "url": "https://api.github.com/repos/symfony/translation/zipball/748464177a77011f8f4cdd076773862ce4915f8f",
  2812. "reference": "748464177a77011f8f4cdd076773862ce4915f8f",
  2813. "shasum": "",
  2814. "mirrors": [
  2815. {
  2816. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2817. "preferred": true
  2818. }
  2819. ]
  2820. },
  2821. "require": {
  2822. "php": "^7.1.3",
  2823. "symfony/contracts": "^1.0.2",
  2824. "symfony/polyfill-mbstring": "~1.0"
  2825. },
  2826. "conflict": {
  2827. "symfony/config": "<3.4",
  2828. "symfony/dependency-injection": "<3.4",
  2829. "symfony/yaml": "<3.4"
  2830. },
  2831. "provide": {
  2832. "symfony/translation-contracts-implementation": "1.0"
  2833. },
  2834. "require-dev": {
  2835. "psr/log": "~1.0",
  2836. "symfony/config": "~3.4|~4.0",
  2837. "symfony/console": "~3.4|~4.0",
  2838. "symfony/dependency-injection": "~3.4|~4.0",
  2839. "symfony/finder": "~2.8|~3.0|~4.0",
  2840. "symfony/intl": "~3.4|~4.0",
  2841. "symfony/yaml": "~3.4|~4.0"
  2842. },
  2843. "suggest": {
  2844. "psr/log-implementation": "To use logging capability in translator",
  2845. "symfony/config": "",
  2846. "symfony/yaml": ""
  2847. },
  2848. "type": "library",
  2849. "extra": {
  2850. "branch-alias": {
  2851. "dev-master": "4.2-dev"
  2852. }
  2853. },
  2854. "autoload": {
  2855. "psr-4": {
  2856. "Symfony\\Component\\Translation\\": ""
  2857. },
  2858. "exclude-from-classmap": [
  2859. "/Tests/"
  2860. ]
  2861. },
  2862. "notification-url": "https://packagist.org/downloads/",
  2863. "license": [
  2864. "MIT"
  2865. ],
  2866. "authors": [
  2867. {
  2868. "name": "Fabien Potencier",
  2869. "email": "fabien@symfony.com"
  2870. },
  2871. {
  2872. "name": "Symfony Community",
  2873. "homepage": "https://symfony.com/contributors"
  2874. }
  2875. ],
  2876. "description": "Symfony Translation Component",
  2877. "homepage": "https://symfony.com",
  2878. "time": "2019-02-27T03:31:50+00:00"
  2879. },
  2880. {
  2881. "name": "symfony/var-dumper",
  2882. "version": "v4.2.4",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://github.com/symfony/var-dumper.git",
  2886. "reference": "9f87189ac10b42edf7fb8edc846f1937c6d157cf"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9f87189ac10b42edf7fb8edc846f1937c6d157cf",
  2891. "reference": "9f87189ac10b42edf7fb8edc846f1937c6d157cf",
  2892. "shasum": "",
  2893. "mirrors": [
  2894. {
  2895. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2896. "preferred": true
  2897. }
  2898. ]
  2899. },
  2900. "require": {
  2901. "php": "^7.1.3",
  2902. "symfony/polyfill-mbstring": "~1.0",
  2903. "symfony/polyfill-php72": "~1.5"
  2904. },
  2905. "conflict": {
  2906. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  2907. "symfony/console": "<3.4"
  2908. },
  2909. "require-dev": {
  2910. "ext-iconv": "*",
  2911. "symfony/console": "~3.4|~4.0",
  2912. "symfony/process": "~3.4|~4.0",
  2913. "twig/twig": "~1.34|~2.4"
  2914. },
  2915. "suggest": {
  2916. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2917. "ext-intl": "To show region name in time zone dump",
  2918. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2919. },
  2920. "bin": [
  2921. "Resources/bin/var-dump-server"
  2922. ],
  2923. "type": "library",
  2924. "extra": {
  2925. "branch-alias": {
  2926. "dev-master": "4.2-dev"
  2927. }
  2928. },
  2929. "autoload": {
  2930. "files": [
  2931. "Resources/functions/dump.php"
  2932. ],
  2933. "psr-4": {
  2934. "Symfony\\Component\\VarDumper\\": ""
  2935. },
  2936. "exclude-from-classmap": [
  2937. "/Tests/"
  2938. ]
  2939. },
  2940. "notification-url": "https://packagist.org/downloads/",
  2941. "license": [
  2942. "MIT"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "Nicolas Grekas",
  2947. "email": "p@tchwork.com"
  2948. },
  2949. {
  2950. "name": "Symfony Community",
  2951. "homepage": "https://symfony.com/contributors"
  2952. }
  2953. ],
  2954. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2955. "homepage": "https://symfony.com",
  2956. "keywords": [
  2957. "debug",
  2958. "dump"
  2959. ],
  2960. "time": "2019-02-23T15:17:42+00:00"
  2961. },
  2962. {
  2963. "name": "tijsverkoyen/css-to-inline-styles",
  2964. "version": "2.2.1",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  2968. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  2973. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  2974. "shasum": "",
  2975. "mirrors": [
  2976. {
  2977. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2978. "preferred": true
  2979. }
  2980. ]
  2981. },
  2982. "require": {
  2983. "php": "^5.5 || ^7.0",
  2984. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  2985. },
  2986. "require-dev": {
  2987. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2988. },
  2989. "type": "library",
  2990. "extra": {
  2991. "branch-alias": {
  2992. "dev-master": "2.2.x-dev"
  2993. }
  2994. },
  2995. "autoload": {
  2996. "psr-4": {
  2997. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  2998. }
  2999. },
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "BSD-3-Clause"
  3003. ],
  3004. "authors": [
  3005. {
  3006. "name": "Tijs Verkoyen",
  3007. "email": "css_to_inline_styles@verkoyen.eu",
  3008. "role": "Developer"
  3009. }
  3010. ],
  3011. "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.",
  3012. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  3013. "time": "2017-11-27T11:13:29+00:00"
  3014. },
  3015. {
  3016. "name": "vlucas/phpdotenv",
  3017. "version": "v3.3.3",
  3018. "source": {
  3019. "type": "git",
  3020. "url": "https://github.com/vlucas/phpdotenv.git",
  3021. "reference": "dbcc609971dd9b55f48b8008b553d79fd372ddde"
  3022. },
  3023. "dist": {
  3024. "type": "zip",
  3025. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/dbcc609971dd9b55f48b8008b553d79fd372ddde",
  3026. "reference": "dbcc609971dd9b55f48b8008b553d79fd372ddde",
  3027. "shasum": "",
  3028. "mirrors": [
  3029. {
  3030. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3031. "preferred": true
  3032. }
  3033. ]
  3034. },
  3035. "require": {
  3036. "php": "^5.4 || ^7.0",
  3037. "phpoption/phpoption": "^1.5",
  3038. "symfony/polyfill-ctype": "^1.9"
  3039. },
  3040. "require-dev": {
  3041. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0"
  3042. },
  3043. "type": "library",
  3044. "extra": {
  3045. "branch-alias": {
  3046. "dev-master": "3.3-dev"
  3047. }
  3048. },
  3049. "autoload": {
  3050. "psr-4": {
  3051. "Dotenv\\": "src/"
  3052. }
  3053. },
  3054. "notification-url": "https://packagist.org/downloads/",
  3055. "license": [
  3056. "BSD-3-Clause"
  3057. ],
  3058. "authors": [
  3059. {
  3060. "name": "Vance Lucas",
  3061. "email": "vance@vancelucas.com",
  3062. "homepage": "http://www.vancelucas.com"
  3063. }
  3064. ],
  3065. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  3066. "keywords": [
  3067. "dotenv",
  3068. "env",
  3069. "environment"
  3070. ],
  3071. "time": "2019-03-06T09:39:45+00:00"
  3072. }
  3073. ],
  3074. "packages-dev": [
  3075. {
  3076. "name": "beyondcode/laravel-dump-server",
  3077. "version": "1.2.2",
  3078. "source": {
  3079. "type": "git",
  3080. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  3081. "reference": "8864b9efcb48e0a79e83014dd7f0a5481f5c808f"
  3082. },
  3083. "dist": {
  3084. "type": "zip",
  3085. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/8864b9efcb48e0a79e83014dd7f0a5481f5c808f",
  3086. "reference": "8864b9efcb48e0a79e83014dd7f0a5481f5c808f",
  3087. "shasum": ""
  3088. },
  3089. "require": {
  3090. "illuminate/console": "5.6.*|5.7.*|5.8.*",
  3091. "illuminate/http": "5.6.*|5.7.*|5.8.*",
  3092. "illuminate/support": "5.6.*|5.7.*|5.8.*",
  3093. "php": "^7.1",
  3094. "symfony/var-dumper": "^4.1.1"
  3095. },
  3096. "require-dev": {
  3097. "larapack/dd": "^1.0",
  3098. "phpunit/phpunit": "^7.0"
  3099. },
  3100. "type": "library",
  3101. "extra": {
  3102. "laravel": {
  3103. "providers": [
  3104. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  3105. ]
  3106. }
  3107. },
  3108. "autoload": {
  3109. "psr-4": {
  3110. "BeyondCode\\DumpServer\\": "src"
  3111. },
  3112. "files": [
  3113. "helpers.php"
  3114. ]
  3115. },
  3116. "notification-url": "https://packagist.org/downloads/",
  3117. "license": [
  3118. "MIT"
  3119. ],
  3120. "authors": [
  3121. {
  3122. "name": "Marcel Pociot",
  3123. "email": "marcel@beyondco.de",
  3124. "homepage": "https://beyondcode.de",
  3125. "role": "Developer"
  3126. }
  3127. ],
  3128. "description": "Symfony Var-Dump Server for Laravel",
  3129. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  3130. "keywords": [
  3131. "beyondcode",
  3132. "laravel-dump-server"
  3133. ],
  3134. "time": "2018-10-04T07:22:24+00:00"
  3135. },
  3136. {
  3137. "name": "doctrine/instantiator",
  3138. "version": "1.2.0",
  3139. "source": {
  3140. "type": "git",
  3141. "url": "https://github.com/doctrine/instantiator.git",
  3142. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  3143. },
  3144. "dist": {
  3145. "type": "zip",
  3146. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  3147. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  3148. "shasum": ""
  3149. },
  3150. "require": {
  3151. "php": "^7.1"
  3152. },
  3153. "require-dev": {
  3154. "doctrine/coding-standard": "^6.0",
  3155. "ext-pdo": "*",
  3156. "ext-phar": "*",
  3157. "phpbench/phpbench": "^0.13",
  3158. "phpstan/phpstan-phpunit": "^0.11",
  3159. "phpstan/phpstan-shim": "^0.11",
  3160. "phpunit/phpunit": "^7.0"
  3161. },
  3162. "type": "library",
  3163. "extra": {
  3164. "branch-alias": {
  3165. "dev-master": "1.2.x-dev"
  3166. }
  3167. },
  3168. "autoload": {
  3169. "psr-4": {
  3170. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3171. }
  3172. },
  3173. "notification-url": "https://packagist.org/downloads/",
  3174. "license": [
  3175. "MIT"
  3176. ],
  3177. "authors": [
  3178. {
  3179. "name": "Marco Pivetta",
  3180. "email": "ocramius@gmail.com",
  3181. "homepage": "http://ocramius.github.com/"
  3182. }
  3183. ],
  3184. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3185. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3186. "keywords": [
  3187. "constructor",
  3188. "instantiate"
  3189. ],
  3190. "time": "2019-03-17T17:37:11+00:00"
  3191. },
  3192. {
  3193. "name": "filp/whoops",
  3194. "version": "2.3.1",
  3195. "source": {
  3196. "type": "git",
  3197. "url": "https://github.com/filp/whoops.git",
  3198. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  3199. },
  3200. "dist": {
  3201. "type": "zip",
  3202. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  3203. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  3204. "shasum": ""
  3205. },
  3206. "require": {
  3207. "php": "^5.5.9 || ^7.0",
  3208. "psr/log": "^1.0.1"
  3209. },
  3210. "require-dev": {
  3211. "mockery/mockery": "^0.9 || ^1.0",
  3212. "phpunit/phpunit": "^4.8.35 || ^5.7",
  3213. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  3214. },
  3215. "suggest": {
  3216. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  3217. "whoops/soap": "Formats errors as SOAP responses"
  3218. },
  3219. "type": "library",
  3220. "extra": {
  3221. "branch-alias": {
  3222. "dev-master": "2.2-dev"
  3223. }
  3224. },
  3225. "autoload": {
  3226. "psr-4": {
  3227. "Whoops\\": "src/Whoops/"
  3228. }
  3229. },
  3230. "notification-url": "https://packagist.org/downloads/",
  3231. "license": [
  3232. "MIT"
  3233. ],
  3234. "authors": [
  3235. {
  3236. "name": "Filipe Dobreira",
  3237. "homepage": "https://github.com/filp",
  3238. "role": "Developer"
  3239. }
  3240. ],
  3241. "description": "php error handling for cool kids",
  3242. "homepage": "https://filp.github.io/whoops/",
  3243. "keywords": [
  3244. "error",
  3245. "exception",
  3246. "handling",
  3247. "library",
  3248. "throwable",
  3249. "whoops"
  3250. ],
  3251. "time": "2018-10-23T09:00:00+00:00"
  3252. },
  3253. {
  3254. "name": "fzaninotto/faker",
  3255. "version": "v1.8.0",
  3256. "source": {
  3257. "type": "git",
  3258. "url": "https://github.com/fzaninotto/Faker.git",
  3259. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  3260. },
  3261. "dist": {
  3262. "type": "zip",
  3263. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  3264. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  3265. "shasum": ""
  3266. },
  3267. "require": {
  3268. "php": "^5.3.3 || ^7.0"
  3269. },
  3270. "require-dev": {
  3271. "ext-intl": "*",
  3272. "phpunit/phpunit": "^4.8.35 || ^5.7",
  3273. "squizlabs/php_codesniffer": "^1.5"
  3274. },
  3275. "type": "library",
  3276. "extra": {
  3277. "branch-alias": {
  3278. "dev-master": "1.8-dev"
  3279. }
  3280. },
  3281. "autoload": {
  3282. "psr-4": {
  3283. "Faker\\": "src/Faker/"
  3284. }
  3285. },
  3286. "notification-url": "https://packagist.org/downloads/",
  3287. "license": [
  3288. "MIT"
  3289. ],
  3290. "authors": [
  3291. {
  3292. "name": "François Zaninotto"
  3293. }
  3294. ],
  3295. "description": "Faker is a PHP library that generates fake data for you.",
  3296. "keywords": [
  3297. "data",
  3298. "faker",
  3299. "fixtures"
  3300. ],
  3301. "time": "2018-07-12T10:23:15+00:00"
  3302. },
  3303. {
  3304. "name": "hamcrest/hamcrest-php",
  3305. "version": "v2.0.0",
  3306. "source": {
  3307. "type": "git",
  3308. "url": "https://github.com/hamcrest/hamcrest-php.git",
  3309. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  3310. },
  3311. "dist": {
  3312. "type": "zip",
  3313. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  3314. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  3315. "shasum": ""
  3316. },
  3317. "require": {
  3318. "php": "^5.3|^7.0"
  3319. },
  3320. "replace": {
  3321. "cordoval/hamcrest-php": "*",
  3322. "davedevelopment/hamcrest-php": "*",
  3323. "kodova/hamcrest-php": "*"
  3324. },
  3325. "require-dev": {
  3326. "phpunit/php-file-iterator": "1.3.3",
  3327. "phpunit/phpunit": "~4.0",
  3328. "satooshi/php-coveralls": "^1.0"
  3329. },
  3330. "type": "library",
  3331. "extra": {
  3332. "branch-alias": {
  3333. "dev-master": "2.0-dev"
  3334. }
  3335. },
  3336. "autoload": {
  3337. "classmap": [
  3338. "hamcrest"
  3339. ]
  3340. },
  3341. "notification-url": "https://packagist.org/downloads/",
  3342. "license": [
  3343. "BSD"
  3344. ],
  3345. "description": "This is the PHP port of Hamcrest Matchers",
  3346. "keywords": [
  3347. "test"
  3348. ],
  3349. "time": "2016-01-20T08:20:44+00:00"
  3350. },
  3351. {
  3352. "name": "mockery/mockery",
  3353. "version": "1.2.2",
  3354. "source": {
  3355. "type": "git",
  3356. "url": "https://github.com/mockery/mockery.git",
  3357. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2"
  3358. },
  3359. "dist": {
  3360. "type": "zip",
  3361. "url": "https://api.github.com/repos/mockery/mockery/zipball/0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  3362. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  3363. "shasum": ""
  3364. },
  3365. "require": {
  3366. "hamcrest/hamcrest-php": "~2.0",
  3367. "lib-pcre": ">=7.0",
  3368. "php": ">=5.6.0"
  3369. },
  3370. "require-dev": {
  3371. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  3372. },
  3373. "type": "library",
  3374. "extra": {
  3375. "branch-alias": {
  3376. "dev-master": "1.0.x-dev"
  3377. }
  3378. },
  3379. "autoload": {
  3380. "psr-0": {
  3381. "Mockery": "library/"
  3382. }
  3383. },
  3384. "notification-url": "https://packagist.org/downloads/",
  3385. "license": [
  3386. "BSD-3-Clause"
  3387. ],
  3388. "authors": [
  3389. {
  3390. "name": "Pádraic Brady",
  3391. "email": "padraic.brady@gmail.com",
  3392. "homepage": "http://blog.astrumfutura.com"
  3393. },
  3394. {
  3395. "name": "Dave Marshall",
  3396. "email": "dave.marshall@atstsolutions.co.uk",
  3397. "homepage": "http://davedevelopment.co.uk"
  3398. }
  3399. ],
  3400. "description": "Mockery is a simple yet flexible PHP mock object framework",
  3401. "homepage": "https://github.com/mockery/mockery",
  3402. "keywords": [
  3403. "BDD",
  3404. "TDD",
  3405. "library",
  3406. "mock",
  3407. "mock objects",
  3408. "mockery",
  3409. "stub",
  3410. "test",
  3411. "test double",
  3412. "testing"
  3413. ],
  3414. "time": "2019-02-13T09:37:52+00:00"
  3415. },
  3416. {
  3417. "name": "myclabs/deep-copy",
  3418. "version": "1.8.1",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/myclabs/DeepCopy.git",
  3422. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  3427. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  3428. "shasum": ""
  3429. },
  3430. "require": {
  3431. "php": "^7.1"
  3432. },
  3433. "replace": {
  3434. "myclabs/deep-copy": "self.version"
  3435. },
  3436. "require-dev": {
  3437. "doctrine/collections": "^1.0",
  3438. "doctrine/common": "^2.6",
  3439. "phpunit/phpunit": "^7.1"
  3440. },
  3441. "type": "library",
  3442. "autoload": {
  3443. "psr-4": {
  3444. "DeepCopy\\": "src/DeepCopy/"
  3445. },
  3446. "files": [
  3447. "src/DeepCopy/deep_copy.php"
  3448. ]
  3449. },
  3450. "notification-url": "https://packagist.org/downloads/",
  3451. "license": [
  3452. "MIT"
  3453. ],
  3454. "description": "Create deep copies (clones) of your objects",
  3455. "keywords": [
  3456. "clone",
  3457. "copy",
  3458. "duplicate",
  3459. "object",
  3460. "object graph"
  3461. ],
  3462. "time": "2018-06-11T23:09:50+00:00"
  3463. },
  3464. {
  3465. "name": "nunomaduro/collision",
  3466. "version": "v3.0.1",
  3467. "source": {
  3468. "type": "git",
  3469. "url": "https://github.com/nunomaduro/collision.git",
  3470. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68"
  3471. },
  3472. "dist": {
  3473. "type": "zip",
  3474. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  3475. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  3476. "shasum": ""
  3477. },
  3478. "require": {
  3479. "filp/whoops": "^2.1.4",
  3480. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3481. "php": "^7.1",
  3482. "symfony/console": "~2.8|~3.3|~4.0"
  3483. },
  3484. "require-dev": {
  3485. "laravel/framework": "5.8.*",
  3486. "nunomaduro/larastan": "^0.3.0",
  3487. "phpstan/phpstan": "^0.11",
  3488. "phpunit/phpunit": "~8.0"
  3489. },
  3490. "type": "library",
  3491. "extra": {
  3492. "laravel": {
  3493. "providers": [
  3494. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  3495. ]
  3496. }
  3497. },
  3498. "autoload": {
  3499. "psr-4": {
  3500. "NunoMaduro\\Collision\\": "src/"
  3501. }
  3502. },
  3503. "notification-url": "https://packagist.org/downloads/",
  3504. "license": [
  3505. "MIT"
  3506. ],
  3507. "authors": [
  3508. {
  3509. "name": "Nuno Maduro",
  3510. "email": "enunomaduro@gmail.com"
  3511. }
  3512. ],
  3513. "description": "Cli error handling for console/command-line PHP applications.",
  3514. "keywords": [
  3515. "artisan",
  3516. "cli",
  3517. "command-line",
  3518. "console",
  3519. "error",
  3520. "handling",
  3521. "laravel",
  3522. "laravel-zero",
  3523. "php",
  3524. "symfony"
  3525. ],
  3526. "time": "2019-03-07T21:35:13+00:00"
  3527. },
  3528. {
  3529. "name": "phar-io/manifest",
  3530. "version": "1.0.3",
  3531. "source": {
  3532. "type": "git",
  3533. "url": "https://github.com/phar-io/manifest.git",
  3534. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  3535. },
  3536. "dist": {
  3537. "type": "zip",
  3538. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  3539. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  3540. "shasum": ""
  3541. },
  3542. "require": {
  3543. "ext-dom": "*",
  3544. "ext-phar": "*",
  3545. "phar-io/version": "^2.0",
  3546. "php": "^5.6 || ^7.0"
  3547. },
  3548. "type": "library",
  3549. "extra": {
  3550. "branch-alias": {
  3551. "dev-master": "1.0.x-dev"
  3552. }
  3553. },
  3554. "autoload": {
  3555. "classmap": [
  3556. "src/"
  3557. ]
  3558. },
  3559. "notification-url": "https://packagist.org/downloads/",
  3560. "license": [
  3561. "BSD-3-Clause"
  3562. ],
  3563. "authors": [
  3564. {
  3565. "name": "Arne Blankerts",
  3566. "email": "arne@blankerts.de",
  3567. "role": "Developer"
  3568. },
  3569. {
  3570. "name": "Sebastian Heuer",
  3571. "email": "sebastian@phpeople.de",
  3572. "role": "Developer"
  3573. },
  3574. {
  3575. "name": "Sebastian Bergmann",
  3576. "email": "sebastian@phpunit.de",
  3577. "role": "Developer"
  3578. }
  3579. ],
  3580. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3581. "time": "2018-07-08T19:23:20+00:00"
  3582. },
  3583. {
  3584. "name": "phar-io/version",
  3585. "version": "2.0.1",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://github.com/phar-io/version.git",
  3589. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  3594. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  3595. "shasum": ""
  3596. },
  3597. "require": {
  3598. "php": "^5.6 || ^7.0"
  3599. },
  3600. "type": "library",
  3601. "autoload": {
  3602. "classmap": [
  3603. "src/"
  3604. ]
  3605. },
  3606. "notification-url": "https://packagist.org/downloads/",
  3607. "license": [
  3608. "BSD-3-Clause"
  3609. ],
  3610. "authors": [
  3611. {
  3612. "name": "Arne Blankerts",
  3613. "email": "arne@blankerts.de",
  3614. "role": "Developer"
  3615. },
  3616. {
  3617. "name": "Sebastian Heuer",
  3618. "email": "sebastian@phpeople.de",
  3619. "role": "Developer"
  3620. },
  3621. {
  3622. "name": "Sebastian Bergmann",
  3623. "email": "sebastian@phpunit.de",
  3624. "role": "Developer"
  3625. }
  3626. ],
  3627. "description": "Library for handling version information and constraints",
  3628. "time": "2018-07-08T19:19:57+00:00"
  3629. },
  3630. {
  3631. "name": "phpdocumentor/reflection-common",
  3632. "version": "1.0.1",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3636. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  3641. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  3642. "shasum": ""
  3643. },
  3644. "require": {
  3645. "php": ">=5.5"
  3646. },
  3647. "require-dev": {
  3648. "phpunit/phpunit": "^4.6"
  3649. },
  3650. "type": "library",
  3651. "extra": {
  3652. "branch-alias": {
  3653. "dev-master": "1.0.x-dev"
  3654. }
  3655. },
  3656. "autoload": {
  3657. "psr-4": {
  3658. "phpDocumentor\\Reflection\\": [
  3659. "src"
  3660. ]
  3661. }
  3662. },
  3663. "notification-url": "https://packagist.org/downloads/",
  3664. "license": [
  3665. "MIT"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "Jaap van Otterdijk",
  3670. "email": "opensource@ijaap.nl"
  3671. }
  3672. ],
  3673. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3674. "homepage": "http://www.phpdoc.org",
  3675. "keywords": [
  3676. "FQSEN",
  3677. "phpDocumentor",
  3678. "phpdoc",
  3679. "reflection",
  3680. "static analysis"
  3681. ],
  3682. "time": "2017-09-11T18:02:19+00:00"
  3683. },
  3684. {
  3685. "name": "phpdocumentor/reflection-docblock",
  3686. "version": "4.3.0",
  3687. "source": {
  3688. "type": "git",
  3689. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3690. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  3691. },
  3692. "dist": {
  3693. "type": "zip",
  3694. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  3695. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  3696. "shasum": ""
  3697. },
  3698. "require": {
  3699. "php": "^7.0",
  3700. "phpdocumentor/reflection-common": "^1.0.0",
  3701. "phpdocumentor/type-resolver": "^0.4.0",
  3702. "webmozart/assert": "^1.0"
  3703. },
  3704. "require-dev": {
  3705. "doctrine/instantiator": "~1.0.5",
  3706. "mockery/mockery": "^1.0",
  3707. "phpunit/phpunit": "^6.4"
  3708. },
  3709. "type": "library",
  3710. "extra": {
  3711. "branch-alias": {
  3712. "dev-master": "4.x-dev"
  3713. }
  3714. },
  3715. "autoload": {
  3716. "psr-4": {
  3717. "phpDocumentor\\Reflection\\": [
  3718. "src/"
  3719. ]
  3720. }
  3721. },
  3722. "notification-url": "https://packagist.org/downloads/",
  3723. "license": [
  3724. "MIT"
  3725. ],
  3726. "authors": [
  3727. {
  3728. "name": "Mike van Riel",
  3729. "email": "me@mikevanriel.com"
  3730. }
  3731. ],
  3732. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3733. "time": "2017-11-30T07:14:17+00:00"
  3734. },
  3735. {
  3736. "name": "phpdocumentor/type-resolver",
  3737. "version": "0.4.0",
  3738. "source": {
  3739. "type": "git",
  3740. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3741. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  3742. },
  3743. "dist": {
  3744. "type": "zip",
  3745. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  3746. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  3747. "shasum": ""
  3748. },
  3749. "require": {
  3750. "php": "^5.5 || ^7.0",
  3751. "phpdocumentor/reflection-common": "^1.0"
  3752. },
  3753. "require-dev": {
  3754. "mockery/mockery": "^0.9.4",
  3755. "phpunit/phpunit": "^5.2||^4.8.24"
  3756. },
  3757. "type": "library",
  3758. "extra": {
  3759. "branch-alias": {
  3760. "dev-master": "1.0.x-dev"
  3761. }
  3762. },
  3763. "autoload": {
  3764. "psr-4": {
  3765. "phpDocumentor\\Reflection\\": [
  3766. "src/"
  3767. ]
  3768. }
  3769. },
  3770. "notification-url": "https://packagist.org/downloads/",
  3771. "license": [
  3772. "MIT"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "Mike van Riel",
  3777. "email": "me@mikevanriel.com"
  3778. }
  3779. ],
  3780. "time": "2017-07-14T14:27:02+00:00"
  3781. },
  3782. {
  3783. "name": "phpspec/prophecy",
  3784. "version": "1.8.0",
  3785. "source": {
  3786. "type": "git",
  3787. "url": "https://github.com/phpspec/prophecy.git",
  3788. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  3789. },
  3790. "dist": {
  3791. "type": "zip",
  3792. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  3793. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  3794. "shasum": ""
  3795. },
  3796. "require": {
  3797. "doctrine/instantiator": "^1.0.2",
  3798. "php": "^5.3|^7.0",
  3799. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  3800. "sebastian/comparator": "^1.1|^2.0|^3.0",
  3801. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  3802. },
  3803. "require-dev": {
  3804. "phpspec/phpspec": "^2.5|^3.2",
  3805. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  3806. },
  3807. "type": "library",
  3808. "extra": {
  3809. "branch-alias": {
  3810. "dev-master": "1.8.x-dev"
  3811. }
  3812. },
  3813. "autoload": {
  3814. "psr-0": {
  3815. "Prophecy\\": "src/"
  3816. }
  3817. },
  3818. "notification-url": "https://packagist.org/downloads/",
  3819. "license": [
  3820. "MIT"
  3821. ],
  3822. "authors": [
  3823. {
  3824. "name": "Konstantin Kudryashov",
  3825. "email": "ever.zet@gmail.com",
  3826. "homepage": "http://everzet.com"
  3827. },
  3828. {
  3829. "name": "Marcello Duarte",
  3830. "email": "marcello.duarte@gmail.com"
  3831. }
  3832. ],
  3833. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3834. "homepage": "https://github.com/phpspec/prophecy",
  3835. "keywords": [
  3836. "Double",
  3837. "Dummy",
  3838. "fake",
  3839. "mock",
  3840. "spy",
  3841. "stub"
  3842. ],
  3843. "time": "2018-08-05T17:53:17+00:00"
  3844. },
  3845. {
  3846. "name": "phpunit/php-code-coverage",
  3847. "version": "6.1.4",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3851. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  3856. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  3857. "shasum": ""
  3858. },
  3859. "require": {
  3860. "ext-dom": "*",
  3861. "ext-xmlwriter": "*",
  3862. "php": "^7.1",
  3863. "phpunit/php-file-iterator": "^2.0",
  3864. "phpunit/php-text-template": "^1.2.1",
  3865. "phpunit/php-token-stream": "^3.0",
  3866. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3867. "sebastian/environment": "^3.1 || ^4.0",
  3868. "sebastian/version": "^2.0.1",
  3869. "theseer/tokenizer": "^1.1"
  3870. },
  3871. "require-dev": {
  3872. "phpunit/phpunit": "^7.0"
  3873. },
  3874. "suggest": {
  3875. "ext-xdebug": "^2.6.0"
  3876. },
  3877. "type": "library",
  3878. "extra": {
  3879. "branch-alias": {
  3880. "dev-master": "6.1-dev"
  3881. }
  3882. },
  3883. "autoload": {
  3884. "classmap": [
  3885. "src/"
  3886. ]
  3887. },
  3888. "notification-url": "https://packagist.org/downloads/",
  3889. "license": [
  3890. "BSD-3-Clause"
  3891. ],
  3892. "authors": [
  3893. {
  3894. "name": "Sebastian Bergmann",
  3895. "email": "sebastian@phpunit.de",
  3896. "role": "lead"
  3897. }
  3898. ],
  3899. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3900. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3901. "keywords": [
  3902. "coverage",
  3903. "testing",
  3904. "xunit"
  3905. ],
  3906. "time": "2018-10-31T16:06:48+00:00"
  3907. },
  3908. {
  3909. "name": "phpunit/php-file-iterator",
  3910. "version": "2.0.2",
  3911. "source": {
  3912. "type": "git",
  3913. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3914. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  3915. },
  3916. "dist": {
  3917. "type": "zip",
  3918. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  3919. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  3920. "shasum": ""
  3921. },
  3922. "require": {
  3923. "php": "^7.1"
  3924. },
  3925. "require-dev": {
  3926. "phpunit/phpunit": "^7.1"
  3927. },
  3928. "type": "library",
  3929. "extra": {
  3930. "branch-alias": {
  3931. "dev-master": "2.0.x-dev"
  3932. }
  3933. },
  3934. "autoload": {
  3935. "classmap": [
  3936. "src/"
  3937. ]
  3938. },
  3939. "notification-url": "https://packagist.org/downloads/",
  3940. "license": [
  3941. "BSD-3-Clause"
  3942. ],
  3943. "authors": [
  3944. {
  3945. "name": "Sebastian Bergmann",
  3946. "email": "sebastian@phpunit.de",
  3947. "role": "lead"
  3948. }
  3949. ],
  3950. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3951. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3952. "keywords": [
  3953. "filesystem",
  3954. "iterator"
  3955. ],
  3956. "time": "2018-09-13T20:33:42+00:00"
  3957. },
  3958. {
  3959. "name": "phpunit/php-text-template",
  3960. "version": "1.2.1",
  3961. "source": {
  3962. "type": "git",
  3963. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3964. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3965. },
  3966. "dist": {
  3967. "type": "zip",
  3968. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3969. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3970. "shasum": ""
  3971. },
  3972. "require": {
  3973. "php": ">=5.3.3"
  3974. },
  3975. "type": "library",
  3976. "autoload": {
  3977. "classmap": [
  3978. "src/"
  3979. ]
  3980. },
  3981. "notification-url": "https://packagist.org/downloads/",
  3982. "license": [
  3983. "BSD-3-Clause"
  3984. ],
  3985. "authors": [
  3986. {
  3987. "name": "Sebastian Bergmann",
  3988. "email": "sebastian@phpunit.de",
  3989. "role": "lead"
  3990. }
  3991. ],
  3992. "description": "Simple template engine.",
  3993. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3994. "keywords": [
  3995. "template"
  3996. ],
  3997. "time": "2015-06-21T13:50:34+00:00"
  3998. },
  3999. {
  4000. "name": "phpunit/php-timer",
  4001. "version": "2.1.1",
  4002. "source": {
  4003. "type": "git",
  4004. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4005. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059"
  4006. },
  4007. "dist": {
  4008. "type": "zip",
  4009. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059",
  4010. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059",
  4011. "shasum": ""
  4012. },
  4013. "require": {
  4014. "php": "^7.1"
  4015. },
  4016. "require-dev": {
  4017. "phpunit/phpunit": "^7.0"
  4018. },
  4019. "type": "library",
  4020. "extra": {
  4021. "branch-alias": {
  4022. "dev-master": "2.1-dev"
  4023. }
  4024. },
  4025. "autoload": {
  4026. "classmap": [
  4027. "src/"
  4028. ]
  4029. },
  4030. "notification-url": "https://packagist.org/downloads/",
  4031. "license": [
  4032. "BSD-3-Clause"
  4033. ],
  4034. "authors": [
  4035. {
  4036. "name": "Sebastian Bergmann",
  4037. "email": "sebastian@phpunit.de",
  4038. "role": "lead"
  4039. }
  4040. ],
  4041. "description": "Utility class for timing",
  4042. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4043. "keywords": [
  4044. "timer"
  4045. ],
  4046. "time": "2019-02-20T10:12:59+00:00"
  4047. },
  4048. {
  4049. "name": "phpunit/php-token-stream",
  4050. "version": "3.0.1",
  4051. "source": {
  4052. "type": "git",
  4053. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4054. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18"
  4055. },
  4056. "dist": {
  4057. "type": "zip",
  4058. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18",
  4059. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18",
  4060. "shasum": ""
  4061. },
  4062. "require": {
  4063. "ext-tokenizer": "*",
  4064. "php": "^7.1"
  4065. },
  4066. "require-dev": {
  4067. "phpunit/phpunit": "^7.0"
  4068. },
  4069. "type": "library",
  4070. "extra": {
  4071. "branch-alias": {
  4072. "dev-master": "3.0-dev"
  4073. }
  4074. },
  4075. "autoload": {
  4076. "classmap": [
  4077. "src/"
  4078. ]
  4079. },
  4080. "notification-url": "https://packagist.org/downloads/",
  4081. "license": [
  4082. "BSD-3-Clause"
  4083. ],
  4084. "authors": [
  4085. {
  4086. "name": "Sebastian Bergmann",
  4087. "email": "sebastian@phpunit.de"
  4088. }
  4089. ],
  4090. "description": "Wrapper around PHP's tokenizer extension.",
  4091. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4092. "keywords": [
  4093. "tokenizer"
  4094. ],
  4095. "time": "2018-10-30T05:52:18+00:00"
  4096. },
  4097. {
  4098. "name": "phpunit/phpunit",
  4099. "version": "7.5.7",
  4100. "source": {
  4101. "type": "git",
  4102. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4103. "reference": "eb343b86753d26de07ecba7868fa983104361948"
  4104. },
  4105. "dist": {
  4106. "type": "zip",
  4107. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/eb343b86753d26de07ecba7868fa983104361948",
  4108. "reference": "eb343b86753d26de07ecba7868fa983104361948",
  4109. "shasum": ""
  4110. },
  4111. "require": {
  4112. "doctrine/instantiator": "^1.1",
  4113. "ext-dom": "*",
  4114. "ext-json": "*",
  4115. "ext-libxml": "*",
  4116. "ext-mbstring": "*",
  4117. "ext-xml": "*",
  4118. "myclabs/deep-copy": "^1.7",
  4119. "phar-io/manifest": "^1.0.2",
  4120. "phar-io/version": "^2.0",
  4121. "php": "^7.1",
  4122. "phpspec/prophecy": "^1.7",
  4123. "phpunit/php-code-coverage": "^6.0.7",
  4124. "phpunit/php-file-iterator": "^2.0.1",
  4125. "phpunit/php-text-template": "^1.2.1",
  4126. "phpunit/php-timer": "^2.1",
  4127. "sebastian/comparator": "^3.0",
  4128. "sebastian/diff": "^3.0",
  4129. "sebastian/environment": "^4.0",
  4130. "sebastian/exporter": "^3.1",
  4131. "sebastian/global-state": "^2.0",
  4132. "sebastian/object-enumerator": "^3.0.3",
  4133. "sebastian/resource-operations": "^2.0",
  4134. "sebastian/version": "^2.0.1"
  4135. },
  4136. "conflict": {
  4137. "phpunit/phpunit-mock-objects": "*"
  4138. },
  4139. "require-dev": {
  4140. "ext-pdo": "*"
  4141. },
  4142. "suggest": {
  4143. "ext-soap": "*",
  4144. "ext-xdebug": "*",
  4145. "phpunit/php-invoker": "^2.0"
  4146. },
  4147. "bin": [
  4148. "phpunit"
  4149. ],
  4150. "type": "library",
  4151. "extra": {
  4152. "branch-alias": {
  4153. "dev-master": "7.5-dev"
  4154. }
  4155. },
  4156. "autoload": {
  4157. "classmap": [
  4158. "src/"
  4159. ]
  4160. },
  4161. "notification-url": "https://packagist.org/downloads/",
  4162. "license": [
  4163. "BSD-3-Clause"
  4164. ],
  4165. "authors": [
  4166. {
  4167. "name": "Sebastian Bergmann",
  4168. "email": "sebastian@phpunit.de",
  4169. "role": "lead"
  4170. }
  4171. ],
  4172. "description": "The PHP Unit Testing framework.",
  4173. "homepage": "https://phpunit.de/",
  4174. "keywords": [
  4175. "phpunit",
  4176. "testing",
  4177. "xunit"
  4178. ],
  4179. "time": "2019-03-16T07:31:17+00:00"
  4180. },
  4181. {
  4182. "name": "sebastian/code-unit-reverse-lookup",
  4183. "version": "1.0.1",
  4184. "source": {
  4185. "type": "git",
  4186. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4187. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  4188. },
  4189. "dist": {
  4190. "type": "zip",
  4191. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4192. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4193. "shasum": ""
  4194. },
  4195. "require": {
  4196. "php": "^5.6 || ^7.0"
  4197. },
  4198. "require-dev": {
  4199. "phpunit/phpunit": "^5.7 || ^6.0"
  4200. },
  4201. "type": "library",
  4202. "extra": {
  4203. "branch-alias": {
  4204. "dev-master": "1.0.x-dev"
  4205. }
  4206. },
  4207. "autoload": {
  4208. "classmap": [
  4209. "src/"
  4210. ]
  4211. },
  4212. "notification-url": "https://packagist.org/downloads/",
  4213. "license": [
  4214. "BSD-3-Clause"
  4215. ],
  4216. "authors": [
  4217. {
  4218. "name": "Sebastian Bergmann",
  4219. "email": "sebastian@phpunit.de"
  4220. }
  4221. ],
  4222. "description": "Looks up which function or method a line of code belongs to",
  4223. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4224. "time": "2017-03-04T06:30:41+00:00"
  4225. },
  4226. {
  4227. "name": "sebastian/comparator",
  4228. "version": "3.0.2",
  4229. "source": {
  4230. "type": "git",
  4231. "url": "https://github.com/sebastianbergmann/comparator.git",
  4232. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  4233. },
  4234. "dist": {
  4235. "type": "zip",
  4236. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  4237. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  4238. "shasum": ""
  4239. },
  4240. "require": {
  4241. "php": "^7.1",
  4242. "sebastian/diff": "^3.0",
  4243. "sebastian/exporter": "^3.1"
  4244. },
  4245. "require-dev": {
  4246. "phpunit/phpunit": "^7.1"
  4247. },
  4248. "type": "library",
  4249. "extra": {
  4250. "branch-alias": {
  4251. "dev-master": "3.0-dev"
  4252. }
  4253. },
  4254. "autoload": {
  4255. "classmap": [
  4256. "src/"
  4257. ]
  4258. },
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "BSD-3-Clause"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "Jeff Welch",
  4266. "email": "whatthejeff@gmail.com"
  4267. },
  4268. {
  4269. "name": "Volker Dusch",
  4270. "email": "github@wallbash.com"
  4271. },
  4272. {
  4273. "name": "Bernhard Schussek",
  4274. "email": "bschussek@2bepublished.at"
  4275. },
  4276. {
  4277. "name": "Sebastian Bergmann",
  4278. "email": "sebastian@phpunit.de"
  4279. }
  4280. ],
  4281. "description": "Provides the functionality to compare PHP values for equality",
  4282. "homepage": "https://github.com/sebastianbergmann/comparator",
  4283. "keywords": [
  4284. "comparator",
  4285. "compare",
  4286. "equality"
  4287. ],
  4288. "time": "2018-07-12T15:12:46+00:00"
  4289. },
  4290. {
  4291. "name": "sebastian/diff",
  4292. "version": "3.0.2",
  4293. "source": {
  4294. "type": "git",
  4295. "url": "https://github.com/sebastianbergmann/diff.git",
  4296. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  4297. },
  4298. "dist": {
  4299. "type": "zip",
  4300. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  4301. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  4302. "shasum": ""
  4303. },
  4304. "require": {
  4305. "php": "^7.1"
  4306. },
  4307. "require-dev": {
  4308. "phpunit/phpunit": "^7.5 || ^8.0",
  4309. "symfony/process": "^2 || ^3.3 || ^4"
  4310. },
  4311. "type": "library",
  4312. "extra": {
  4313. "branch-alias": {
  4314. "dev-master": "3.0-dev"
  4315. }
  4316. },
  4317. "autoload": {
  4318. "classmap": [
  4319. "src/"
  4320. ]
  4321. },
  4322. "notification-url": "https://packagist.org/downloads/",
  4323. "license": [
  4324. "BSD-3-Clause"
  4325. ],
  4326. "authors": [
  4327. {
  4328. "name": "Kore Nordmann",
  4329. "email": "mail@kore-nordmann.de"
  4330. },
  4331. {
  4332. "name": "Sebastian Bergmann",
  4333. "email": "sebastian@phpunit.de"
  4334. }
  4335. ],
  4336. "description": "Diff implementation",
  4337. "homepage": "https://github.com/sebastianbergmann/diff",
  4338. "keywords": [
  4339. "diff",
  4340. "udiff",
  4341. "unidiff",
  4342. "unified diff"
  4343. ],
  4344. "time": "2019-02-04T06:01:07+00:00"
  4345. },
  4346. {
  4347. "name": "sebastian/environment",
  4348. "version": "4.1.0",
  4349. "source": {
  4350. "type": "git",
  4351. "url": "https://github.com/sebastianbergmann/environment.git",
  4352. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656"
  4353. },
  4354. "dist": {
  4355. "type": "zip",
  4356. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6fda8ce1974b62b14935adc02a9ed38252eca656",
  4357. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656",
  4358. "shasum": ""
  4359. },
  4360. "require": {
  4361. "php": "^7.1"
  4362. },
  4363. "require-dev": {
  4364. "phpunit/phpunit": "^7.5"
  4365. },
  4366. "suggest": {
  4367. "ext-posix": "*"
  4368. },
  4369. "type": "library",
  4370. "extra": {
  4371. "branch-alias": {
  4372. "dev-master": "4.1-dev"
  4373. }
  4374. },
  4375. "autoload": {
  4376. "classmap": [
  4377. "src/"
  4378. ]
  4379. },
  4380. "notification-url": "https://packagist.org/downloads/",
  4381. "license": [
  4382. "BSD-3-Clause"
  4383. ],
  4384. "authors": [
  4385. {
  4386. "name": "Sebastian Bergmann",
  4387. "email": "sebastian@phpunit.de"
  4388. }
  4389. ],
  4390. "description": "Provides functionality to handle HHVM/PHP environments",
  4391. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4392. "keywords": [
  4393. "Xdebug",
  4394. "environment",
  4395. "hhvm"
  4396. ],
  4397. "time": "2019-02-01T05:27:49+00:00"
  4398. },
  4399. {
  4400. "name": "sebastian/exporter",
  4401. "version": "3.1.0",
  4402. "source": {
  4403. "type": "git",
  4404. "url": "https://github.com/sebastianbergmann/exporter.git",
  4405. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  4406. },
  4407. "dist": {
  4408. "type": "zip",
  4409. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  4410. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  4411. "shasum": ""
  4412. },
  4413. "require": {
  4414. "php": "^7.0",
  4415. "sebastian/recursion-context": "^3.0"
  4416. },
  4417. "require-dev": {
  4418. "ext-mbstring": "*",
  4419. "phpunit/phpunit": "^6.0"
  4420. },
  4421. "type": "library",
  4422. "extra": {
  4423. "branch-alias": {
  4424. "dev-master": "3.1.x-dev"
  4425. }
  4426. },
  4427. "autoload": {
  4428. "classmap": [
  4429. "src/"
  4430. ]
  4431. },
  4432. "notification-url": "https://packagist.org/downloads/",
  4433. "license": [
  4434. "BSD-3-Clause"
  4435. ],
  4436. "authors": [
  4437. {
  4438. "name": "Jeff Welch",
  4439. "email": "whatthejeff@gmail.com"
  4440. },
  4441. {
  4442. "name": "Volker Dusch",
  4443. "email": "github@wallbash.com"
  4444. },
  4445. {
  4446. "name": "Bernhard Schussek",
  4447. "email": "bschussek@2bepublished.at"
  4448. },
  4449. {
  4450. "name": "Sebastian Bergmann",
  4451. "email": "sebastian@phpunit.de"
  4452. },
  4453. {
  4454. "name": "Adam Harvey",
  4455. "email": "aharvey@php.net"
  4456. }
  4457. ],
  4458. "description": "Provides the functionality to export PHP variables for visualization",
  4459. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  4460. "keywords": [
  4461. "export",
  4462. "exporter"
  4463. ],
  4464. "time": "2017-04-03T13:19:02+00:00"
  4465. },
  4466. {
  4467. "name": "sebastian/global-state",
  4468. "version": "2.0.0",
  4469. "source": {
  4470. "type": "git",
  4471. "url": "https://github.com/sebastianbergmann/global-state.git",
  4472. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  4473. },
  4474. "dist": {
  4475. "type": "zip",
  4476. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4477. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4478. "shasum": ""
  4479. },
  4480. "require": {
  4481. "php": "^7.0"
  4482. },
  4483. "require-dev": {
  4484. "phpunit/phpunit": "^6.0"
  4485. },
  4486. "suggest": {
  4487. "ext-uopz": "*"
  4488. },
  4489. "type": "library",
  4490. "extra": {
  4491. "branch-alias": {
  4492. "dev-master": "2.0-dev"
  4493. }
  4494. },
  4495. "autoload": {
  4496. "classmap": [
  4497. "src/"
  4498. ]
  4499. },
  4500. "notification-url": "https://packagist.org/downloads/",
  4501. "license": [
  4502. "BSD-3-Clause"
  4503. ],
  4504. "authors": [
  4505. {
  4506. "name": "Sebastian Bergmann",
  4507. "email": "sebastian@phpunit.de"
  4508. }
  4509. ],
  4510. "description": "Snapshotting of global state",
  4511. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4512. "keywords": [
  4513. "global state"
  4514. ],
  4515. "time": "2017-04-27T15:39:26+00:00"
  4516. },
  4517. {
  4518. "name": "sebastian/object-enumerator",
  4519. "version": "3.0.3",
  4520. "source": {
  4521. "type": "git",
  4522. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4523. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  4524. },
  4525. "dist": {
  4526. "type": "zip",
  4527. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  4528. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  4529. "shasum": ""
  4530. },
  4531. "require": {
  4532. "php": "^7.0",
  4533. "sebastian/object-reflector": "^1.1.1",
  4534. "sebastian/recursion-context": "^3.0"
  4535. },
  4536. "require-dev": {
  4537. "phpunit/phpunit": "^6.0"
  4538. },
  4539. "type": "library",
  4540. "extra": {
  4541. "branch-alias": {
  4542. "dev-master": "3.0.x-dev"
  4543. }
  4544. },
  4545. "autoload": {
  4546. "classmap": [
  4547. "src/"
  4548. ]
  4549. },
  4550. "notification-url": "https://packagist.org/downloads/",
  4551. "license": [
  4552. "BSD-3-Clause"
  4553. ],
  4554. "authors": [
  4555. {
  4556. "name": "Sebastian Bergmann",
  4557. "email": "sebastian@phpunit.de"
  4558. }
  4559. ],
  4560. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4561. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4562. "time": "2017-08-03T12:35:26+00:00"
  4563. },
  4564. {
  4565. "name": "sebastian/object-reflector",
  4566. "version": "1.1.1",
  4567. "source": {
  4568. "type": "git",
  4569. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  4570. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  4571. },
  4572. "dist": {
  4573. "type": "zip",
  4574. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  4575. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  4576. "shasum": ""
  4577. },
  4578. "require": {
  4579. "php": "^7.0"
  4580. },
  4581. "require-dev": {
  4582. "phpunit/phpunit": "^6.0"
  4583. },
  4584. "type": "library",
  4585. "extra": {
  4586. "branch-alias": {
  4587. "dev-master": "1.1-dev"
  4588. }
  4589. },
  4590. "autoload": {
  4591. "classmap": [
  4592. "src/"
  4593. ]
  4594. },
  4595. "notification-url": "https://packagist.org/downloads/",
  4596. "license": [
  4597. "BSD-3-Clause"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "Sebastian Bergmann",
  4602. "email": "sebastian@phpunit.de"
  4603. }
  4604. ],
  4605. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4606. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4607. "time": "2017-03-29T09:07:27+00:00"
  4608. },
  4609. {
  4610. "name": "sebastian/recursion-context",
  4611. "version": "3.0.0",
  4612. "source": {
  4613. "type": "git",
  4614. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4615. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  4616. },
  4617. "dist": {
  4618. "type": "zip",
  4619. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  4620. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  4621. "shasum": ""
  4622. },
  4623. "require": {
  4624. "php": "^7.0"
  4625. },
  4626. "require-dev": {
  4627. "phpunit/phpunit": "^6.0"
  4628. },
  4629. "type": "library",
  4630. "extra": {
  4631. "branch-alias": {
  4632. "dev-master": "3.0.x-dev"
  4633. }
  4634. },
  4635. "autoload": {
  4636. "classmap": [
  4637. "src/"
  4638. ]
  4639. },
  4640. "notification-url": "https://packagist.org/downloads/",
  4641. "license": [
  4642. "BSD-3-Clause"
  4643. ],
  4644. "authors": [
  4645. {
  4646. "name": "Jeff Welch",
  4647. "email": "whatthejeff@gmail.com"
  4648. },
  4649. {
  4650. "name": "Sebastian Bergmann",
  4651. "email": "sebastian@phpunit.de"
  4652. },
  4653. {
  4654. "name": "Adam Harvey",
  4655. "email": "aharvey@php.net"
  4656. }
  4657. ],
  4658. "description": "Provides functionality to recursively process PHP variables",
  4659. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4660. "time": "2017-03-03T06:23:57+00:00"
  4661. },
  4662. {
  4663. "name": "sebastian/resource-operations",
  4664. "version": "2.0.1",
  4665. "source": {
  4666. "type": "git",
  4667. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4668. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  4669. },
  4670. "dist": {
  4671. "type": "zip",
  4672. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  4673. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  4674. "shasum": ""
  4675. },
  4676. "require": {
  4677. "php": "^7.1"
  4678. },
  4679. "type": "library",
  4680. "extra": {
  4681. "branch-alias": {
  4682. "dev-master": "2.0-dev"
  4683. }
  4684. },
  4685. "autoload": {
  4686. "classmap": [
  4687. "src/"
  4688. ]
  4689. },
  4690. "notification-url": "https://packagist.org/downloads/",
  4691. "license": [
  4692. "BSD-3-Clause"
  4693. ],
  4694. "authors": [
  4695. {
  4696. "name": "Sebastian Bergmann",
  4697. "email": "sebastian@phpunit.de"
  4698. }
  4699. ],
  4700. "description": "Provides a list of PHP built-in functions that operate on resources",
  4701. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4702. "time": "2018-10-04T04:07:39+00:00"
  4703. },
  4704. {
  4705. "name": "sebastian/version",
  4706. "version": "2.0.1",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://github.com/sebastianbergmann/version.git",
  4710. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4715. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4716. "shasum": ""
  4717. },
  4718. "require": {
  4719. "php": ">=5.6"
  4720. },
  4721. "type": "library",
  4722. "extra": {
  4723. "branch-alias": {
  4724. "dev-master": "2.0.x-dev"
  4725. }
  4726. },
  4727. "autoload": {
  4728. "classmap": [
  4729. "src/"
  4730. ]
  4731. },
  4732. "notification-url": "https://packagist.org/downloads/",
  4733. "license": [
  4734. "BSD-3-Clause"
  4735. ],
  4736. "authors": [
  4737. {
  4738. "name": "Sebastian Bergmann",
  4739. "email": "sebastian@phpunit.de",
  4740. "role": "lead"
  4741. }
  4742. ],
  4743. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4744. "homepage": "https://github.com/sebastianbergmann/version",
  4745. "time": "2016-10-03T07:35:21+00:00"
  4746. },
  4747. {
  4748. "name": "theseer/tokenizer",
  4749. "version": "1.1.0",
  4750. "source": {
  4751. "type": "git",
  4752. "url": "https://github.com/theseer/tokenizer.git",
  4753. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  4754. },
  4755. "dist": {
  4756. "type": "zip",
  4757. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  4758. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  4759. "shasum": ""
  4760. },
  4761. "require": {
  4762. "ext-dom": "*",
  4763. "ext-tokenizer": "*",
  4764. "ext-xmlwriter": "*",
  4765. "php": "^7.0"
  4766. },
  4767. "type": "library",
  4768. "autoload": {
  4769. "classmap": [
  4770. "src/"
  4771. ]
  4772. },
  4773. "notification-url": "https://packagist.org/downloads/",
  4774. "license": [
  4775. "BSD-3-Clause"
  4776. ],
  4777. "authors": [
  4778. {
  4779. "name": "Arne Blankerts",
  4780. "email": "arne@blankerts.de",
  4781. "role": "Developer"
  4782. }
  4783. ],
  4784. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4785. "time": "2017-04-07T12:08:54+00:00"
  4786. },
  4787. {
  4788. "name": "webmozart/assert",
  4789. "version": "1.4.0",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://github.com/webmozart/assert.git",
  4793. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  4798. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  4799. "shasum": ""
  4800. },
  4801. "require": {
  4802. "php": "^5.3.3 || ^7.0",
  4803. "symfony/polyfill-ctype": "^1.8"
  4804. },
  4805. "require-dev": {
  4806. "phpunit/phpunit": "^4.6",
  4807. "sebastian/version": "^1.0.1"
  4808. },
  4809. "type": "library",
  4810. "extra": {
  4811. "branch-alias": {
  4812. "dev-master": "1.3-dev"
  4813. }
  4814. },
  4815. "autoload": {
  4816. "psr-4": {
  4817. "Webmozart\\Assert\\": "src/"
  4818. }
  4819. },
  4820. "notification-url": "https://packagist.org/downloads/",
  4821. "license": [
  4822. "MIT"
  4823. ],
  4824. "authors": [
  4825. {
  4826. "name": "Bernhard Schussek",
  4827. "email": "bschussek@gmail.com"
  4828. }
  4829. ],
  4830. "description": "Assertions to validate method input/output with nice error messages.",
  4831. "keywords": [
  4832. "assert",
  4833. "check",
  4834. "validate"
  4835. ],
  4836. "time": "2018-12-25T11:19:39+00:00"
  4837. }
  4838. ],
  4839. "aliases": [],
  4840. "minimum-stability": "dev",
  4841. "stability-flags": [],
  4842. "prefer-stable": true,
  4843. "prefer-lowest": false,
  4844. "platform": {
  4845. "php": "^7.1.3"
  4846. },
  4847. "platform-dev": []
  4848. }