composer.lock 172 KB

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