composer.lock 178 KB

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