composer.lock 219 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234
  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": "ceb4d3b01c786fee803a82bb7acceb7b",
  8. "packages": [
  9. {
  10. "name": "beyondcode/laravel-websockets",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/beyondcode/laravel-websockets.git",
  15. "reference": "8e422cbc5bf3abe620333812b77183c94f602a0a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/beyondcode/laravel-websockets/zipball/8e422cbc5bf3abe620333812b77183c94f602a0a",
  20. "reference": "8e422cbc5bf3abe620333812b77183c94f602a0a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "cboden/ratchet": "^0.4.1",
  25. "clue/buzz-react": "^2.5",
  26. "ext-json": "*",
  27. "facade/ignition-contracts": "^1.0",
  28. "guzzlehttp/psr7": "^1.5",
  29. "illuminate/broadcasting": "5.7.* || 5.8.* || ^6.0",
  30. "illuminate/console": "5.7.* || 5.8.* || ^6.0",
  31. "illuminate/http": "5.7.* || 5.8.* || ^6.0",
  32. "illuminate/routing": "5.7.* || 5.8.* || ^6.0",
  33. "illuminate/support": "5.7.* || 5.8.* || ^6.0",
  34. "php": "^7.1",
  35. "pusher/pusher-php-server": "~3.0 || ~4.0",
  36. "react/dns": "^1.1",
  37. "symfony/http-kernel": "~4.0",
  38. "symfony/psr-http-message-bridge": "^1.1"
  39. },
  40. "require-dev": {
  41. "mockery/mockery": "^1.2",
  42. "orchestra/testbench": "3.7.* || 3.8.* || ^4.0",
  43. "phpunit/phpunit": "^7.0 || ^8.0"
  44. },
  45. "type": "library",
  46. "extra": {
  47. "laravel": {
  48. "providers": [
  49. "BeyondCode\\LaravelWebSockets\\WebSocketsServiceProvider"
  50. ],
  51. "aliases": {
  52. "WebSocketRouter": "BeyondCode\\LaravelWebSockets\\Facades\\WebSocketRouter"
  53. }
  54. }
  55. },
  56. "autoload": {
  57. "psr-4": {
  58. "BeyondCode\\LaravelWebSockets\\": "src"
  59. }
  60. },
  61. "notification-url": "https://packagist.org/downloads/",
  62. "license": [
  63. "MIT"
  64. ],
  65. "authors": [
  66. {
  67. "name": "Marcel Pociot",
  68. "email": "marcel@beyondco.de",
  69. "homepage": "https://beyondcode.de",
  70. "role": "Developer"
  71. },
  72. {
  73. "name": "Freek Van der Herten",
  74. "email": "freek@spatie.be",
  75. "homepage": "https://spatie.be",
  76. "role": "Developer"
  77. }
  78. ],
  79. "description": "An easy to use WebSocket server",
  80. "homepage": "https://github.com/beyondcode/laravel-websockets",
  81. "keywords": [
  82. "beyondcode",
  83. "laravel-websockets"
  84. ],
  85. "time": "2019-09-04T06:48:06+00:00"
  86. },
  87. {
  88. "name": "cboden/ratchet",
  89. "version": "v0.4.2",
  90. "source": {
  91. "type": "git",
  92. "url": "https://github.com/ratchetphp/Ratchet.git",
  93. "reference": "57721e1f184f9e29378fc5363867c47ddda743fd"
  94. },
  95. "dist": {
  96. "type": "zip",
  97. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/57721e1f184f9e29378fc5363867c47ddda743fd",
  98. "reference": "57721e1f184f9e29378fc5363867c47ddda743fd",
  99. "shasum": ""
  100. },
  101. "require": {
  102. "guzzlehttp/psr7": "^1.0",
  103. "php": ">=5.4.2",
  104. "ratchet/rfc6455": "^0.2",
  105. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  106. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0",
  107. "symfony/routing": "^2.6|^3.0|^4.0|^5.0"
  108. },
  109. "require-dev": {
  110. "phpunit/phpunit": "~4.8"
  111. },
  112. "type": "library",
  113. "autoload": {
  114. "psr-4": {
  115. "Ratchet\\": "src/Ratchet"
  116. }
  117. },
  118. "notification-url": "https://packagist.org/downloads/",
  119. "license": [
  120. "MIT"
  121. ],
  122. "authors": [
  123. {
  124. "name": "Chris Boden",
  125. "email": "cboden@gmail.com",
  126. "role": "Developer"
  127. }
  128. ],
  129. "description": "PHP WebSocket library",
  130. "homepage": "http://socketo.me",
  131. "keywords": [
  132. "Ratchet",
  133. "WebSockets",
  134. "server",
  135. "sockets",
  136. "websocket"
  137. ],
  138. "time": "2020-01-27T23:08:40+00:00"
  139. },
  140. {
  141. "name": "clue/buzz-react",
  142. "version": "v2.6.1",
  143. "source": {
  144. "type": "git",
  145. "url": "https://github.com/clue/reactphp-buzz.git",
  146. "reference": "47562f6afcb521f216dd90d15ba5e58d02696869"
  147. },
  148. "dist": {
  149. "type": "zip",
  150. "url": "https://api.github.com/repos/clue/reactphp-buzz/zipball/47562f6afcb521f216dd90d15ba5e58d02696869",
  151. "reference": "47562f6afcb521f216dd90d15ba5e58d02696869",
  152. "shasum": ""
  153. },
  154. "require": {
  155. "php": ">=5.3",
  156. "psr/http-message": "^1.0",
  157. "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3",
  158. "react/http-client": "^0.5.10",
  159. "react/promise": "^2.2.1 || ^1.2.1",
  160. "react/promise-stream": "^1.0 || ^0.1.1",
  161. "react/promise-timer": "^1.2",
  162. "react/socket": "^1.1",
  163. "react/stream": "^1.0 || ^0.7",
  164. "ringcentral/psr7": "^1.2"
  165. },
  166. "require-dev": {
  167. "clue/block-react": "^1.0",
  168. "clue/http-proxy-react": "^1.3",
  169. "clue/reactphp-ssh-proxy": "^1.0",
  170. "clue/socks-react": "^1.0",
  171. "phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35",
  172. "react/http": "^0.8"
  173. },
  174. "type": "library",
  175. "autoload": {
  176. "psr-4": {
  177. "Clue\\React\\Buzz\\": "src/"
  178. }
  179. },
  180. "notification-url": "https://packagist.org/downloads/",
  181. "license": [
  182. "MIT"
  183. ],
  184. "authors": [
  185. {
  186. "name": "Christian Lück",
  187. "email": "christian@clue.engineering"
  188. }
  189. ],
  190. "description": "Simple, async PSR-7 HTTP client for concurrently processing any number of HTTP requests, built on top of ReactPHP",
  191. "homepage": "https://github.com/clue/reactphp-buzz",
  192. "keywords": [
  193. "async",
  194. "http",
  195. "http client",
  196. "psr-7",
  197. "reactphp"
  198. ],
  199. "time": "2020-01-14T13:22:15+00:00"
  200. },
  201. {
  202. "name": "dnoegel/php-xdg-base-dir",
  203. "version": "v0.1.1",
  204. "source": {
  205. "type": "git",
  206. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  207. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  208. },
  209. "dist": {
  210. "type": "zip",
  211. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  212. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  213. "shasum": ""
  214. },
  215. "require": {
  216. "php": ">=5.3.2"
  217. },
  218. "require-dev": {
  219. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  220. },
  221. "type": "library",
  222. "autoload": {
  223. "psr-4": {
  224. "XdgBaseDir\\": "src/"
  225. }
  226. },
  227. "notification-url": "https://packagist.org/downloads/",
  228. "license": [
  229. "MIT"
  230. ],
  231. "description": "implementation of xdg base directory specification for php",
  232. "time": "2019-12-04T15:06:13+00:00"
  233. },
  234. {
  235. "name": "doctrine/inflector",
  236. "version": "1.3.1",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/doctrine/inflector.git",
  240. "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
  245. "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
  246. "shasum": ""
  247. },
  248. "require": {
  249. "php": "^7.1"
  250. },
  251. "require-dev": {
  252. "phpunit/phpunit": "^6.2"
  253. },
  254. "type": "library",
  255. "extra": {
  256. "branch-alias": {
  257. "dev-master": "1.3.x-dev"
  258. }
  259. },
  260. "autoload": {
  261. "psr-4": {
  262. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  263. }
  264. },
  265. "notification-url": "https://packagist.org/downloads/",
  266. "license": [
  267. "MIT"
  268. ],
  269. "authors": [
  270. {
  271. "name": "Guilherme Blanco",
  272. "email": "guilhermeblanco@gmail.com"
  273. },
  274. {
  275. "name": "Roman Borschel",
  276. "email": "roman@code-factory.org"
  277. },
  278. {
  279. "name": "Benjamin Eberlei",
  280. "email": "kontakt@beberlei.de"
  281. },
  282. {
  283. "name": "Jonathan Wage",
  284. "email": "jonwage@gmail.com"
  285. },
  286. {
  287. "name": "Johannes Schmitt",
  288. "email": "schmittjoh@gmail.com"
  289. }
  290. ],
  291. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  292. "homepage": "http://www.doctrine-project.org",
  293. "keywords": [
  294. "inflection",
  295. "pluralize",
  296. "singularize",
  297. "string"
  298. ],
  299. "time": "2019-10-30T19:59:35+00:00"
  300. },
  301. {
  302. "name": "doctrine/lexer",
  303. "version": "1.2.0",
  304. "source": {
  305. "type": "git",
  306. "url": "https://github.com/doctrine/lexer.git",
  307. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  312. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  313. "shasum": ""
  314. },
  315. "require": {
  316. "php": "^7.2"
  317. },
  318. "require-dev": {
  319. "doctrine/coding-standard": "^6.0",
  320. "phpstan/phpstan": "^0.11.8",
  321. "phpunit/phpunit": "^8.2"
  322. },
  323. "type": "library",
  324. "extra": {
  325. "branch-alias": {
  326. "dev-master": "1.2.x-dev"
  327. }
  328. },
  329. "autoload": {
  330. "psr-4": {
  331. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  332. }
  333. },
  334. "notification-url": "https://packagist.org/downloads/",
  335. "license": [
  336. "MIT"
  337. ],
  338. "authors": [
  339. {
  340. "name": "Guilherme Blanco",
  341. "email": "guilhermeblanco@gmail.com"
  342. },
  343. {
  344. "name": "Roman Borschel",
  345. "email": "roman@code-factory.org"
  346. },
  347. {
  348. "name": "Johannes Schmitt",
  349. "email": "schmittjoh@gmail.com"
  350. }
  351. ],
  352. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  353. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  354. "keywords": [
  355. "annotations",
  356. "docblock",
  357. "lexer",
  358. "parser",
  359. "php"
  360. ],
  361. "time": "2019-10-30T14:39:59+00:00"
  362. },
  363. {
  364. "name": "dragonmantank/cron-expression",
  365. "version": "v2.3.0",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/dragonmantank/cron-expression.git",
  369. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  374. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "php": "^7.0"
  379. },
  380. "require-dev": {
  381. "phpunit/phpunit": "^6.4|^7.0"
  382. },
  383. "type": "library",
  384. "extra": {
  385. "branch-alias": {
  386. "dev-master": "2.3-dev"
  387. }
  388. },
  389. "autoload": {
  390. "psr-4": {
  391. "Cron\\": "src/Cron/"
  392. }
  393. },
  394. "notification-url": "https://packagist.org/downloads/",
  395. "license": [
  396. "MIT"
  397. ],
  398. "authors": [
  399. {
  400. "name": "Michael Dowling",
  401. "email": "mtdowling@gmail.com",
  402. "homepage": "https://github.com/mtdowling"
  403. },
  404. {
  405. "name": "Chris Tankersley",
  406. "email": "chris@ctankersley.com",
  407. "homepage": "https://github.com/dragonmantank"
  408. }
  409. ],
  410. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  411. "keywords": [
  412. "cron",
  413. "schedule"
  414. ],
  415. "time": "2019-03-31T00:38:28+00:00"
  416. },
  417. {
  418. "name": "egulias/email-validator",
  419. "version": "2.1.15",
  420. "source": {
  421. "type": "git",
  422. "url": "https://github.com/egulias/EmailValidator.git",
  423. "reference": "e834eea5306d85d67de5a05db5882911d5b29357"
  424. },
  425. "dist": {
  426. "type": "zip",
  427. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e834eea5306d85d67de5a05db5882911d5b29357",
  428. "reference": "e834eea5306d85d67de5a05db5882911d5b29357",
  429. "shasum": ""
  430. },
  431. "require": {
  432. "doctrine/lexer": "^1.0.1",
  433. "php": ">=5.5",
  434. "symfony/polyfill-intl-idn": "^1.10"
  435. },
  436. "require-dev": {
  437. "dominicsayers/isemail": "^3.0.7",
  438. "phpunit/phpunit": "^4.8.36|^7.5.15",
  439. "satooshi/php-coveralls": "^1.0.1"
  440. },
  441. "suggest": {
  442. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  443. },
  444. "type": "library",
  445. "extra": {
  446. "branch-alias": {
  447. "dev-master": "2.1.x-dev"
  448. }
  449. },
  450. "autoload": {
  451. "psr-4": {
  452. "Egulias\\EmailValidator\\": "EmailValidator"
  453. }
  454. },
  455. "notification-url": "https://packagist.org/downloads/",
  456. "license": [
  457. "MIT"
  458. ],
  459. "authors": [
  460. {
  461. "name": "Eduardo Gulias Davis"
  462. }
  463. ],
  464. "description": "A library for validating emails against several RFCs",
  465. "homepage": "https://github.com/egulias/EmailValidator",
  466. "keywords": [
  467. "email",
  468. "emailvalidation",
  469. "emailvalidator",
  470. "validation",
  471. "validator"
  472. ],
  473. "time": "2020-01-20T21:40:59+00:00"
  474. },
  475. {
  476. "name": "evenement/evenement",
  477. "version": "v3.0.1",
  478. "source": {
  479. "type": "git",
  480. "url": "https://github.com/igorw/evenement.git",
  481. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7"
  482. },
  483. "dist": {
  484. "type": "zip",
  485. "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  486. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  487. "shasum": ""
  488. },
  489. "require": {
  490. "php": ">=7.0"
  491. },
  492. "require-dev": {
  493. "phpunit/phpunit": "^6.0"
  494. },
  495. "type": "library",
  496. "autoload": {
  497. "psr-0": {
  498. "Evenement": "src"
  499. }
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "MIT"
  504. ],
  505. "authors": [
  506. {
  507. "name": "Igor Wiedler",
  508. "email": "igor@wiedler.ch"
  509. }
  510. ],
  511. "description": "Événement is a very simple event dispatching library for PHP",
  512. "keywords": [
  513. "event-dispatcher",
  514. "event-emitter"
  515. ],
  516. "time": "2017-07-23T21:35:13+00:00"
  517. },
  518. {
  519. "name": "facade/ignition-contracts",
  520. "version": "1.0.0",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/facade/ignition-contracts.git",
  524. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/f445db0fb86f48e205787b2592840dd9c80ded28",
  529. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "php": "^7.1"
  534. },
  535. "type": "library",
  536. "autoload": {
  537. "psr-4": {
  538. "Facade\\IgnitionContracts\\": "src"
  539. }
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Freek Van der Herten",
  548. "email": "freek@spatie.be",
  549. "homepage": "https://flareapp.io",
  550. "role": "Developer"
  551. }
  552. ],
  553. "description": "Solution contracts for Ignition",
  554. "homepage": "https://github.com/facade/ignition-contracts",
  555. "keywords": [
  556. "contracts",
  557. "flare",
  558. "ignition"
  559. ],
  560. "time": "2019-08-30T14:06:08+00:00"
  561. },
  562. {
  563. "name": "fideloper/proxy",
  564. "version": "4.2.2",
  565. "source": {
  566. "type": "git",
  567. "url": "https://github.com/fideloper/TrustedProxy.git",
  568. "reference": "790194d5d3da89a713478875d2e2d05855a90a81"
  569. },
  570. "dist": {
  571. "type": "zip",
  572. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/790194d5d3da89a713478875d2e2d05855a90a81",
  573. "reference": "790194d5d3da89a713478875d2e2d05855a90a81",
  574. "shasum": ""
  575. },
  576. "require": {
  577. "illuminate/contracts": "^5.0|^6.0|^7.0",
  578. "php": ">=5.4.0"
  579. },
  580. "require-dev": {
  581. "illuminate/http": "^5.0|^6.0|^7.0",
  582. "mockery/mockery": "^1.0",
  583. "phpunit/phpunit": "^6.0"
  584. },
  585. "type": "library",
  586. "extra": {
  587. "laravel": {
  588. "providers": [
  589. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  590. ]
  591. }
  592. },
  593. "autoload": {
  594. "psr-4": {
  595. "Fideloper\\Proxy\\": "src/"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Chris Fidao",
  605. "email": "fideloper@gmail.com"
  606. }
  607. ],
  608. "description": "Set trusted proxies for Laravel",
  609. "keywords": [
  610. "load balancing",
  611. "proxy",
  612. "trusted proxy"
  613. ],
  614. "time": "2019-12-20T13:11:11+00:00"
  615. },
  616. {
  617. "name": "guzzlehttp/psr7",
  618. "version": "1.6.1",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/guzzle/psr7.git",
  622. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  627. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  628. "shasum": ""
  629. },
  630. "require": {
  631. "php": ">=5.4.0",
  632. "psr/http-message": "~1.0",
  633. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  634. },
  635. "provide": {
  636. "psr/http-message-implementation": "1.0"
  637. },
  638. "require-dev": {
  639. "ext-zlib": "*",
  640. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  641. },
  642. "suggest": {
  643. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  644. },
  645. "type": "library",
  646. "extra": {
  647. "branch-alias": {
  648. "dev-master": "1.6-dev"
  649. }
  650. },
  651. "autoload": {
  652. "psr-4": {
  653. "GuzzleHttp\\Psr7\\": "src/"
  654. },
  655. "files": [
  656. "src/functions_include.php"
  657. ]
  658. },
  659. "notification-url": "https://packagist.org/downloads/",
  660. "license": [
  661. "MIT"
  662. ],
  663. "authors": [
  664. {
  665. "name": "Michael Dowling",
  666. "email": "mtdowling@gmail.com",
  667. "homepage": "https://github.com/mtdowling"
  668. },
  669. {
  670. "name": "Tobias Schultze",
  671. "homepage": "https://github.com/Tobion"
  672. }
  673. ],
  674. "description": "PSR-7 message implementation that also provides common utility methods",
  675. "keywords": [
  676. "http",
  677. "message",
  678. "psr-7",
  679. "request",
  680. "response",
  681. "stream",
  682. "uri",
  683. "url"
  684. ],
  685. "time": "2019-07-01T23:21:34+00:00"
  686. },
  687. {
  688. "name": "jakub-onderka/php-console-color",
  689. "version": "v0.2",
  690. "source": {
  691. "type": "git",
  692. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  693. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  694. },
  695. "dist": {
  696. "type": "zip",
  697. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  698. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  699. "shasum": ""
  700. },
  701. "require": {
  702. "php": ">=5.4.0"
  703. },
  704. "require-dev": {
  705. "jakub-onderka/php-code-style": "1.0",
  706. "jakub-onderka/php-parallel-lint": "1.0",
  707. "jakub-onderka/php-var-dump-check": "0.*",
  708. "phpunit/phpunit": "~4.3",
  709. "squizlabs/php_codesniffer": "1.*"
  710. },
  711. "type": "library",
  712. "autoload": {
  713. "psr-4": {
  714. "JakubOnderka\\PhpConsoleColor\\": "src/"
  715. }
  716. },
  717. "notification-url": "https://packagist.org/downloads/",
  718. "license": [
  719. "BSD-2-Clause"
  720. ],
  721. "authors": [
  722. {
  723. "name": "Jakub Onderka",
  724. "email": "jakub.onderka@gmail.com"
  725. }
  726. ],
  727. "time": "2018-09-29T17:23:10+00:00"
  728. },
  729. {
  730. "name": "jakub-onderka/php-console-highlighter",
  731. "version": "v0.4",
  732. "source": {
  733. "type": "git",
  734. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  735. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  736. },
  737. "dist": {
  738. "type": "zip",
  739. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  740. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  741. "shasum": ""
  742. },
  743. "require": {
  744. "ext-tokenizer": "*",
  745. "jakub-onderka/php-console-color": "~0.2",
  746. "php": ">=5.4.0"
  747. },
  748. "require-dev": {
  749. "jakub-onderka/php-code-style": "~1.0",
  750. "jakub-onderka/php-parallel-lint": "~1.0",
  751. "jakub-onderka/php-var-dump-check": "~0.1",
  752. "phpunit/phpunit": "~4.0",
  753. "squizlabs/php_codesniffer": "~1.5"
  754. },
  755. "type": "library",
  756. "autoload": {
  757. "psr-4": {
  758. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  759. }
  760. },
  761. "notification-url": "https://packagist.org/downloads/",
  762. "license": [
  763. "MIT"
  764. ],
  765. "authors": [
  766. {
  767. "name": "Jakub Onderka",
  768. "email": "acci@acci.cz",
  769. "homepage": "http://www.acci.cz/"
  770. }
  771. ],
  772. "description": "Highlight PHP code in terminal",
  773. "time": "2018-09-29T18:48:56+00:00"
  774. },
  775. {
  776. "name": "laravel/framework",
  777. "version": "v6.14.0",
  778. "source": {
  779. "type": "git",
  780. "url": "https://github.com/laravel/framework.git",
  781. "reference": "9e78f1aeb2c60bd7badcbafc352a9a2c5863c60c"
  782. },
  783. "dist": {
  784. "type": "zip",
  785. "url": "https://api.github.com/repos/laravel/framework/zipball/9e78f1aeb2c60bd7badcbafc352a9a2c5863c60c",
  786. "reference": "9e78f1aeb2c60bd7badcbafc352a9a2c5863c60c",
  787. "shasum": ""
  788. },
  789. "require": {
  790. "doctrine/inflector": "^1.1",
  791. "dragonmantank/cron-expression": "^2.0",
  792. "egulias/email-validator": "^2.1.10",
  793. "ext-json": "*",
  794. "ext-mbstring": "*",
  795. "ext-openssl": "*",
  796. "league/commonmark": "^1.1",
  797. "league/commonmark-ext-table": "^2.1",
  798. "league/flysystem": "^1.0.8",
  799. "monolog/monolog": "^1.12|^2.0",
  800. "nesbot/carbon": "^2.0",
  801. "opis/closure": "^3.1",
  802. "php": "^7.2",
  803. "psr/container": "^1.0",
  804. "psr/simple-cache": "^1.0",
  805. "ramsey/uuid": "^3.7",
  806. "swiftmailer/swiftmailer": "^6.0",
  807. "symfony/console": "^4.3.4",
  808. "symfony/debug": "^4.3.4",
  809. "symfony/finder": "^4.3.4",
  810. "symfony/http-foundation": "^4.3.4",
  811. "symfony/http-kernel": "^4.3.4",
  812. "symfony/process": "^4.3.4",
  813. "symfony/routing": "^4.3.4",
  814. "symfony/var-dumper": "^4.3.4",
  815. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  816. "vlucas/phpdotenv": "^3.3"
  817. },
  818. "conflict": {
  819. "tightenco/collect": "<5.5.33"
  820. },
  821. "replace": {
  822. "illuminate/auth": "self.version",
  823. "illuminate/broadcasting": "self.version",
  824. "illuminate/bus": "self.version",
  825. "illuminate/cache": "self.version",
  826. "illuminate/config": "self.version",
  827. "illuminate/console": "self.version",
  828. "illuminate/container": "self.version",
  829. "illuminate/contracts": "self.version",
  830. "illuminate/cookie": "self.version",
  831. "illuminate/database": "self.version",
  832. "illuminate/encryption": "self.version",
  833. "illuminate/events": "self.version",
  834. "illuminate/filesystem": "self.version",
  835. "illuminate/hashing": "self.version",
  836. "illuminate/http": "self.version",
  837. "illuminate/log": "self.version",
  838. "illuminate/mail": "self.version",
  839. "illuminate/notifications": "self.version",
  840. "illuminate/pagination": "self.version",
  841. "illuminate/pipeline": "self.version",
  842. "illuminate/queue": "self.version",
  843. "illuminate/redis": "self.version",
  844. "illuminate/routing": "self.version",
  845. "illuminate/session": "self.version",
  846. "illuminate/support": "self.version",
  847. "illuminate/translation": "self.version",
  848. "illuminate/validation": "self.version",
  849. "illuminate/view": "self.version"
  850. },
  851. "require-dev": {
  852. "aws/aws-sdk-php": "^3.0",
  853. "doctrine/dbal": "^2.6",
  854. "filp/whoops": "^2.4",
  855. "guzzlehttp/guzzle": "^6.3",
  856. "league/flysystem-cached-adapter": "^1.0",
  857. "mockery/mockery": "^1.3.1",
  858. "moontoast/math": "^1.1",
  859. "orchestra/testbench-core": "^4.0",
  860. "pda/pheanstalk": "^4.0",
  861. "phpunit/phpunit": "^7.5.15|^8.4|^9.0",
  862. "predis/predis": "^1.1.1",
  863. "symfony/cache": "^4.3.4"
  864. },
  865. "suggest": {
  866. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  867. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  868. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  869. "ext-memcached": "Required to use the memcache cache driver.",
  870. "ext-pcntl": "Required to use all features of the queue worker.",
  871. "ext-posix": "Required to use all features of the queue worker.",
  872. "ext-redis": "Required to use the Redis cache and queue drivers.",
  873. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  874. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  875. "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.0).",
  876. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  877. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  878. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  879. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  880. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  881. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  882. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  883. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  884. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  885. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4).",
  886. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2).",
  887. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  888. },
  889. "type": "library",
  890. "extra": {
  891. "branch-alias": {
  892. "dev-master": "6.x-dev"
  893. }
  894. },
  895. "autoload": {
  896. "files": [
  897. "src/Illuminate/Foundation/helpers.php",
  898. "src/Illuminate/Support/helpers.php"
  899. ],
  900. "psr-4": {
  901. "Illuminate\\": "src/Illuminate/"
  902. }
  903. },
  904. "notification-url": "https://packagist.org/downloads/",
  905. "license": [
  906. "MIT"
  907. ],
  908. "authors": [
  909. {
  910. "name": "Taylor Otwell",
  911. "email": "taylor@laravel.com"
  912. }
  913. ],
  914. "description": "The Laravel Framework.",
  915. "homepage": "https://laravel.com",
  916. "keywords": [
  917. "framework",
  918. "laravel"
  919. ],
  920. "time": "2020-02-04T14:38:06+00:00"
  921. },
  922. {
  923. "name": "laravel/tinker",
  924. "version": "v2.2.0",
  925. "source": {
  926. "type": "git",
  927. "url": "https://github.com/laravel/tinker.git",
  928. "reference": "37579c93271ec30ef099dd633ec7c2de5e5fb112"
  929. },
  930. "dist": {
  931. "type": "zip",
  932. "url": "https://api.github.com/repos/laravel/tinker/zipball/37579c93271ec30ef099dd633ec7c2de5e5fb112",
  933. "reference": "37579c93271ec30ef099dd633ec7c2de5e5fb112",
  934. "shasum": ""
  935. },
  936. "require": {
  937. "illuminate/console": "^6.0|^7.0",
  938. "illuminate/contracts": "^6.0|^7.0",
  939. "illuminate/support": "^6.0|^7.0",
  940. "php": "^7.2",
  941. "psy/psysh": "^0.9",
  942. "symfony/var-dumper": "^4.0|^5.0"
  943. },
  944. "require-dev": {
  945. "mockery/mockery": "^1.3.1",
  946. "phpunit/phpunit": "^8.0|^9.0"
  947. },
  948. "suggest": {
  949. "illuminate/database": "The Illuminate Database package (^6.0|^7.0)."
  950. },
  951. "type": "library",
  952. "extra": {
  953. "branch-alias": {
  954. "dev-master": "2.x-dev"
  955. },
  956. "laravel": {
  957. "providers": [
  958. "Laravel\\Tinker\\TinkerServiceProvider"
  959. ]
  960. }
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "Laravel\\Tinker\\": "src/"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Taylor Otwell",
  974. "email": "taylor@laravel.com"
  975. }
  976. ],
  977. "description": "Powerful REPL for the Laravel framework.",
  978. "keywords": [
  979. "REPL",
  980. "Tinker",
  981. "laravel",
  982. "psysh"
  983. ],
  984. "time": "2020-02-05T15:00:44+00:00"
  985. },
  986. {
  987. "name": "league/commonmark",
  988. "version": "1.2.2",
  989. "source": {
  990. "type": "git",
  991. "url": "https://github.com/thephpleague/commonmark.git",
  992. "reference": "34cf4ddb3892c715ae785c880e6691d839cff88d"
  993. },
  994. "dist": {
  995. "type": "zip",
  996. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/34cf4ddb3892c715ae785c880e6691d839cff88d",
  997. "reference": "34cf4ddb3892c715ae785c880e6691d839cff88d",
  998. "shasum": ""
  999. },
  1000. "require": {
  1001. "ext-mbstring": "*",
  1002. "php": "^7.1"
  1003. },
  1004. "replace": {
  1005. "colinodell/commonmark-php": "*"
  1006. },
  1007. "require-dev": {
  1008. "cebe/markdown": "~1.0",
  1009. "commonmark/commonmark.js": "0.29.1",
  1010. "erusev/parsedown": "~1.0",
  1011. "ext-json": "*",
  1012. "michelf/php-markdown": "~1.4",
  1013. "mikehaertl/php-shellcommand": "^1.4",
  1014. "phpstan/phpstan-shim": "^0.11.5",
  1015. "phpunit/phpunit": "^7.5",
  1016. "scrutinizer/ocular": "^1.5",
  1017. "symfony/finder": "^4.2"
  1018. },
  1019. "suggest": {
  1020. "league/commonmark-extras": "Library of useful extensions including smart punctuation"
  1021. },
  1022. "bin": [
  1023. "bin/commonmark"
  1024. ],
  1025. "type": "library",
  1026. "extra": {
  1027. "branch-alias": {
  1028. "dev-master": "1.3-dev"
  1029. }
  1030. },
  1031. "autoload": {
  1032. "psr-4": {
  1033. "League\\CommonMark\\": "src"
  1034. }
  1035. },
  1036. "notification-url": "https://packagist.org/downloads/",
  1037. "license": [
  1038. "BSD-3-Clause"
  1039. ],
  1040. "authors": [
  1041. {
  1042. "name": "Colin O'Dell",
  1043. "email": "colinodell@gmail.com",
  1044. "homepage": "https://www.colinodell.com",
  1045. "role": "Lead Developer"
  1046. }
  1047. ],
  1048. "description": "PHP Markdown parser based on the CommonMark spec",
  1049. "homepage": "https://commonmark.thephpleague.com",
  1050. "keywords": [
  1051. "commonmark",
  1052. "markdown",
  1053. "parser"
  1054. ],
  1055. "time": "2020-01-16T01:18:13+00:00"
  1056. },
  1057. {
  1058. "name": "league/commonmark-ext-table",
  1059. "version": "v2.1.0",
  1060. "source": {
  1061. "type": "git",
  1062. "url": "https://github.com/thephpleague/commonmark-ext-table.git",
  1063. "reference": "3228888ea69636e855efcf6636ff8e6316933fe7"
  1064. },
  1065. "dist": {
  1066. "type": "zip",
  1067. "url": "https://api.github.com/repos/thephpleague/commonmark-ext-table/zipball/3228888ea69636e855efcf6636ff8e6316933fe7",
  1068. "reference": "3228888ea69636e855efcf6636ff8e6316933fe7",
  1069. "shasum": ""
  1070. },
  1071. "require": {
  1072. "league/commonmark": "~0.19.3|^1.0",
  1073. "php": "^7.1"
  1074. },
  1075. "require-dev": {
  1076. "friendsofphp/php-cs-fixer": "^2.14",
  1077. "phpstan/phpstan": "~0.11",
  1078. "phpunit/phpunit": "^7.0|^8.0",
  1079. "symfony/var-dumper": "^4.0",
  1080. "vimeo/psalm": "^3.0"
  1081. },
  1082. "type": "commonmark-extension",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-master": "2.2-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "League\\CommonMark\\Ext\\Table\\": "src"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Martin Hasoň",
  1100. "email": "martin.hason@gmail.com"
  1101. },
  1102. {
  1103. "name": "Webuni s.r.o.",
  1104. "homepage": "https://www.webuni.cz"
  1105. },
  1106. {
  1107. "name": "Colin O'Dell",
  1108. "email": "colinodell@gmail.com",
  1109. "homepage": "https://www.colinodell.com"
  1110. }
  1111. ],
  1112. "description": "Table extension for league/commonmark",
  1113. "homepage": "https://github.com/thephpleague/commonmark-ext-table",
  1114. "keywords": [
  1115. "commonmark",
  1116. "extension",
  1117. "markdown",
  1118. "table"
  1119. ],
  1120. "time": "2019-09-26T13:28:33+00:00"
  1121. },
  1122. {
  1123. "name": "league/flysystem",
  1124. "version": "1.0.64",
  1125. "source": {
  1126. "type": "git",
  1127. "url": "https://github.com/thephpleague/flysystem.git",
  1128. "reference": "d13c43dbd4b791f815215959105a008515d1a2e0"
  1129. },
  1130. "dist": {
  1131. "type": "zip",
  1132. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/d13c43dbd4b791f815215959105a008515d1a2e0",
  1133. "reference": "d13c43dbd4b791f815215959105a008515d1a2e0",
  1134. "shasum": ""
  1135. },
  1136. "require": {
  1137. "ext-fileinfo": "*",
  1138. "php": ">=5.5.9"
  1139. },
  1140. "conflict": {
  1141. "league/flysystem-sftp": "<1.0.6"
  1142. },
  1143. "require-dev": {
  1144. "phpspec/phpspec": "^3.4",
  1145. "phpunit/phpunit": "^5.7.26"
  1146. },
  1147. "suggest": {
  1148. "ext-fileinfo": "Required for MimeType",
  1149. "ext-ftp": "Allows you to use FTP server storage",
  1150. "ext-openssl": "Allows you to use FTPS server storage",
  1151. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1152. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1153. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1154. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1155. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1156. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1157. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1158. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1159. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1160. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1161. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1162. },
  1163. "type": "library",
  1164. "extra": {
  1165. "branch-alias": {
  1166. "dev-master": "1.1-dev"
  1167. }
  1168. },
  1169. "autoload": {
  1170. "psr-4": {
  1171. "League\\Flysystem\\": "src/"
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "MIT"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "Frank de Jonge",
  1181. "email": "info@frenky.net"
  1182. }
  1183. ],
  1184. "description": "Filesystem abstraction: Many filesystems, one API.",
  1185. "keywords": [
  1186. "Cloud Files",
  1187. "WebDAV",
  1188. "abstraction",
  1189. "aws",
  1190. "cloud",
  1191. "copy.com",
  1192. "dropbox",
  1193. "file systems",
  1194. "files",
  1195. "filesystem",
  1196. "filesystems",
  1197. "ftp",
  1198. "rackspace",
  1199. "remote",
  1200. "s3",
  1201. "sftp",
  1202. "storage"
  1203. ],
  1204. "time": "2020-02-05T18:14:17+00:00"
  1205. },
  1206. {
  1207. "name": "monolog/monolog",
  1208. "version": "2.0.2",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/Seldaek/monolog.git",
  1212. "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c861fcba2ca29404dc9e617eedd9eff4616986b8",
  1217. "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8",
  1218. "shasum": ""
  1219. },
  1220. "require": {
  1221. "php": "^7.2",
  1222. "psr/log": "^1.0.1"
  1223. },
  1224. "provide": {
  1225. "psr/log-implementation": "1.0.0"
  1226. },
  1227. "require-dev": {
  1228. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1229. "doctrine/couchdb": "~1.0@dev",
  1230. "elasticsearch/elasticsearch": "^6.0",
  1231. "graylog2/gelf-php": "^1.4.2",
  1232. "jakub-onderka/php-parallel-lint": "^0.9",
  1233. "php-amqplib/php-amqplib": "~2.4",
  1234. "php-console/php-console": "^3.1.3",
  1235. "phpspec/prophecy": "^1.6.1",
  1236. "phpunit/phpunit": "^8.3",
  1237. "predis/predis": "^1.1",
  1238. "rollbar/rollbar": "^1.3",
  1239. "ruflin/elastica": ">=0.90 <3.0",
  1240. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1241. },
  1242. "suggest": {
  1243. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1244. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1245. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1246. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1247. "ext-mbstring": "Allow to work properly with unicode symbols",
  1248. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1249. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1250. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1251. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1252. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1253. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1254. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1255. },
  1256. "type": "library",
  1257. "extra": {
  1258. "branch-alias": {
  1259. "dev-master": "2.x-dev"
  1260. }
  1261. },
  1262. "autoload": {
  1263. "psr-4": {
  1264. "Monolog\\": "src/Monolog"
  1265. }
  1266. },
  1267. "notification-url": "https://packagist.org/downloads/",
  1268. "license": [
  1269. "MIT"
  1270. ],
  1271. "authors": [
  1272. {
  1273. "name": "Jordi Boggiano",
  1274. "email": "j.boggiano@seld.be",
  1275. "homepage": "http://seld.be"
  1276. }
  1277. ],
  1278. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1279. "homepage": "http://github.com/Seldaek/monolog",
  1280. "keywords": [
  1281. "log",
  1282. "logging",
  1283. "psr-3"
  1284. ],
  1285. "time": "2019-12-20T14:22:59+00:00"
  1286. },
  1287. {
  1288. "name": "nesbot/carbon",
  1289. "version": "2.29.1",
  1290. "source": {
  1291. "type": "git",
  1292. "url": "https://github.com/briannesbitt/Carbon.git",
  1293. "reference": "e509be5bf2d703390e69e14496d9a1168452b0a2"
  1294. },
  1295. "dist": {
  1296. "type": "zip",
  1297. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e509be5bf2d703390e69e14496d9a1168452b0a2",
  1298. "reference": "e509be5bf2d703390e69e14496d9a1168452b0a2",
  1299. "shasum": ""
  1300. },
  1301. "require": {
  1302. "ext-json": "*",
  1303. "php": "^7.1.8 || ^8.0",
  1304. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  1305. },
  1306. "require-dev": {
  1307. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1308. "kylekatarnls/multi-tester": "^1.1",
  1309. "phpmd/phpmd": "^2.8",
  1310. "phpstan/phpstan": "^0.11",
  1311. "phpunit/phpunit": "^7.5 || ^8.0",
  1312. "squizlabs/php_codesniffer": "^3.4"
  1313. },
  1314. "bin": [
  1315. "bin/carbon"
  1316. ],
  1317. "type": "library",
  1318. "extra": {
  1319. "branch-alias": {
  1320. "dev-master": "2.x-dev"
  1321. },
  1322. "laravel": {
  1323. "providers": [
  1324. "Carbon\\Laravel\\ServiceProvider"
  1325. ]
  1326. }
  1327. },
  1328. "autoload": {
  1329. "psr-4": {
  1330. "Carbon\\": "src/Carbon/"
  1331. }
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "MIT"
  1336. ],
  1337. "authors": [
  1338. {
  1339. "name": "Brian Nesbitt",
  1340. "email": "brian@nesbot.com",
  1341. "homepage": "http://nesbot.com"
  1342. },
  1343. {
  1344. "name": "kylekatarnls",
  1345. "homepage": "http://github.com/kylekatarnls"
  1346. }
  1347. ],
  1348. "description": "An API extension for DateTime that supports 281 different languages.",
  1349. "homepage": "http://carbon.nesbot.com",
  1350. "keywords": [
  1351. "date",
  1352. "datetime",
  1353. "time"
  1354. ],
  1355. "time": "2020-01-21T09:36:43+00:00"
  1356. },
  1357. {
  1358. "name": "nikic/php-parser",
  1359. "version": "v4.3.0",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/nikic/PHP-Parser.git",
  1363. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  1368. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  1369. "shasum": ""
  1370. },
  1371. "require": {
  1372. "ext-tokenizer": "*",
  1373. "php": ">=7.0"
  1374. },
  1375. "require-dev": {
  1376. "ircmaxell/php-yacc": "0.0.5",
  1377. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  1378. },
  1379. "bin": [
  1380. "bin/php-parse"
  1381. ],
  1382. "type": "library",
  1383. "extra": {
  1384. "branch-alias": {
  1385. "dev-master": "4.3-dev"
  1386. }
  1387. },
  1388. "autoload": {
  1389. "psr-4": {
  1390. "PhpParser\\": "lib/PhpParser"
  1391. }
  1392. },
  1393. "notification-url": "https://packagist.org/downloads/",
  1394. "license": [
  1395. "BSD-3-Clause"
  1396. ],
  1397. "authors": [
  1398. {
  1399. "name": "Nikita Popov"
  1400. }
  1401. ],
  1402. "description": "A PHP parser written in PHP",
  1403. "keywords": [
  1404. "parser",
  1405. "php"
  1406. ],
  1407. "time": "2019-11-08T13:50:10+00:00"
  1408. },
  1409. {
  1410. "name": "opis/closure",
  1411. "version": "3.5.1",
  1412. "source": {
  1413. "type": "git",
  1414. "url": "https://github.com/opis/closure.git",
  1415. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969"
  1416. },
  1417. "dist": {
  1418. "type": "zip",
  1419. "url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969",
  1420. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969",
  1421. "shasum": ""
  1422. },
  1423. "require": {
  1424. "php": "^5.4 || ^7.0"
  1425. },
  1426. "require-dev": {
  1427. "jeremeamia/superclosure": "^2.0",
  1428. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1429. },
  1430. "type": "library",
  1431. "extra": {
  1432. "branch-alias": {
  1433. "dev-master": "3.5.x-dev"
  1434. }
  1435. },
  1436. "autoload": {
  1437. "psr-4": {
  1438. "Opis\\Closure\\": "src/"
  1439. },
  1440. "files": [
  1441. "functions.php"
  1442. ]
  1443. },
  1444. "notification-url": "https://packagist.org/downloads/",
  1445. "license": [
  1446. "MIT"
  1447. ],
  1448. "authors": [
  1449. {
  1450. "name": "Marius Sarca",
  1451. "email": "marius.sarca@gmail.com"
  1452. },
  1453. {
  1454. "name": "Sorin Sarca",
  1455. "email": "sarca_sorin@hotmail.com"
  1456. }
  1457. ],
  1458. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1459. "homepage": "https://opis.io/closure",
  1460. "keywords": [
  1461. "anonymous functions",
  1462. "closure",
  1463. "function",
  1464. "serializable",
  1465. "serialization",
  1466. "serialize"
  1467. ],
  1468. "time": "2019-11-29T22:36:02+00:00"
  1469. },
  1470. {
  1471. "name": "paragonie/random_compat",
  1472. "version": "v9.99.99",
  1473. "source": {
  1474. "type": "git",
  1475. "url": "https://github.com/paragonie/random_compat.git",
  1476. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1477. },
  1478. "dist": {
  1479. "type": "zip",
  1480. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1481. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1482. "shasum": ""
  1483. },
  1484. "require": {
  1485. "php": "^7"
  1486. },
  1487. "require-dev": {
  1488. "phpunit/phpunit": "4.*|5.*",
  1489. "vimeo/psalm": "^1"
  1490. },
  1491. "suggest": {
  1492. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1493. },
  1494. "type": "library",
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Paragon Initiative Enterprises",
  1502. "email": "security@paragonie.com",
  1503. "homepage": "https://paragonie.com"
  1504. }
  1505. ],
  1506. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1507. "keywords": [
  1508. "csprng",
  1509. "polyfill",
  1510. "pseudorandom",
  1511. "random"
  1512. ],
  1513. "time": "2018-07-02T15:55:56+00:00"
  1514. },
  1515. {
  1516. "name": "paragonie/sodium_compat",
  1517. "version": "v1.12.2",
  1518. "source": {
  1519. "type": "git",
  1520. "url": "https://github.com/paragonie/sodium_compat.git",
  1521. "reference": "3b953109fdfc821c1979bc829c8b7421721fef82"
  1522. },
  1523. "dist": {
  1524. "type": "zip",
  1525. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/3b953109fdfc821c1979bc829c8b7421721fef82",
  1526. "reference": "3b953109fdfc821c1979bc829c8b7421721fef82",
  1527. "shasum": ""
  1528. },
  1529. "require": {
  1530. "paragonie/random_compat": ">=1",
  1531. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  1532. },
  1533. "require-dev": {
  1534. "phpunit/phpunit": "^3|^4|^5|^6|^7"
  1535. },
  1536. "suggest": {
  1537. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  1538. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  1539. },
  1540. "type": "library",
  1541. "autoload": {
  1542. "files": [
  1543. "autoload.php"
  1544. ]
  1545. },
  1546. "notification-url": "https://packagist.org/downloads/",
  1547. "license": [
  1548. "ISC"
  1549. ],
  1550. "authors": [
  1551. {
  1552. "name": "Paragon Initiative Enterprises",
  1553. "email": "security@paragonie.com"
  1554. },
  1555. {
  1556. "name": "Frank Denis",
  1557. "email": "jedisct1@pureftpd.org"
  1558. }
  1559. ],
  1560. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  1561. "keywords": [
  1562. "Authentication",
  1563. "BLAKE2b",
  1564. "ChaCha20",
  1565. "ChaCha20-Poly1305",
  1566. "Chapoly",
  1567. "Curve25519",
  1568. "Ed25519",
  1569. "EdDSA",
  1570. "Edwards-curve Digital Signature Algorithm",
  1571. "Elliptic Curve Diffie-Hellman",
  1572. "Poly1305",
  1573. "Pure-PHP cryptography",
  1574. "RFC 7748",
  1575. "RFC 8032",
  1576. "Salpoly",
  1577. "Salsa20",
  1578. "X25519",
  1579. "XChaCha20-Poly1305",
  1580. "XSalsa20-Poly1305",
  1581. "Xchacha20",
  1582. "Xsalsa20",
  1583. "aead",
  1584. "cryptography",
  1585. "ecdh",
  1586. "elliptic curve",
  1587. "elliptic curve cryptography",
  1588. "encryption",
  1589. "libsodium",
  1590. "php",
  1591. "public-key cryptography",
  1592. "secret-key cryptography",
  1593. "side-channel resistant"
  1594. ],
  1595. "time": "2019-12-30T03:11:08+00:00"
  1596. },
  1597. {
  1598. "name": "phpoption/phpoption",
  1599. "version": "1.7.2",
  1600. "source": {
  1601. "type": "git",
  1602. "url": "https://github.com/schmittjoh/php-option.git",
  1603. "reference": "77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959"
  1604. },
  1605. "dist": {
  1606. "type": "zip",
  1607. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959",
  1608. "reference": "77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959",
  1609. "shasum": ""
  1610. },
  1611. "require": {
  1612. "php": "^5.5.9 || ^7.0"
  1613. },
  1614. "require-dev": {
  1615. "bamarni/composer-bin-plugin": "^1.3",
  1616. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  1617. },
  1618. "type": "library",
  1619. "extra": {
  1620. "branch-alias": {
  1621. "dev-master": "1.7-dev"
  1622. }
  1623. },
  1624. "autoload": {
  1625. "psr-4": {
  1626. "PhpOption\\": "src/PhpOption/"
  1627. }
  1628. },
  1629. "notification-url": "https://packagist.org/downloads/",
  1630. "license": [
  1631. "Apache-2.0"
  1632. ],
  1633. "authors": [
  1634. {
  1635. "name": "Johannes M. Schmitt",
  1636. "email": "schmittjoh@gmail.com"
  1637. },
  1638. {
  1639. "name": "Graham Campbell",
  1640. "email": "graham@alt-three.com"
  1641. }
  1642. ],
  1643. "description": "Option Type for PHP",
  1644. "keywords": [
  1645. "language",
  1646. "option",
  1647. "php",
  1648. "type"
  1649. ],
  1650. "time": "2019-12-15T19:35:24+00:00"
  1651. },
  1652. {
  1653. "name": "psr/container",
  1654. "version": "1.0.0",
  1655. "source": {
  1656. "type": "git",
  1657. "url": "https://github.com/php-fig/container.git",
  1658. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1659. },
  1660. "dist": {
  1661. "type": "zip",
  1662. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1663. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1664. "shasum": ""
  1665. },
  1666. "require": {
  1667. "php": ">=5.3.0"
  1668. },
  1669. "type": "library",
  1670. "extra": {
  1671. "branch-alias": {
  1672. "dev-master": "1.0.x-dev"
  1673. }
  1674. },
  1675. "autoload": {
  1676. "psr-4": {
  1677. "Psr\\Container\\": "src/"
  1678. }
  1679. },
  1680. "notification-url": "https://packagist.org/downloads/",
  1681. "license": [
  1682. "MIT"
  1683. ],
  1684. "authors": [
  1685. {
  1686. "name": "PHP-FIG",
  1687. "homepage": "http://www.php-fig.org/"
  1688. }
  1689. ],
  1690. "description": "Common Container Interface (PHP FIG PSR-11)",
  1691. "homepage": "https://github.com/php-fig/container",
  1692. "keywords": [
  1693. "PSR-11",
  1694. "container",
  1695. "container-interface",
  1696. "container-interop",
  1697. "psr"
  1698. ],
  1699. "time": "2017-02-14T16:28:37+00:00"
  1700. },
  1701. {
  1702. "name": "psr/http-message",
  1703. "version": "1.0.1",
  1704. "source": {
  1705. "type": "git",
  1706. "url": "https://github.com/php-fig/http-message.git",
  1707. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1708. },
  1709. "dist": {
  1710. "type": "zip",
  1711. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1712. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1713. "shasum": ""
  1714. },
  1715. "require": {
  1716. "php": ">=5.3.0"
  1717. },
  1718. "type": "library",
  1719. "extra": {
  1720. "branch-alias": {
  1721. "dev-master": "1.0.x-dev"
  1722. }
  1723. },
  1724. "autoload": {
  1725. "psr-4": {
  1726. "Psr\\Http\\Message\\": "src/"
  1727. }
  1728. },
  1729. "notification-url": "https://packagist.org/downloads/",
  1730. "license": [
  1731. "MIT"
  1732. ],
  1733. "authors": [
  1734. {
  1735. "name": "PHP-FIG",
  1736. "homepage": "http://www.php-fig.org/"
  1737. }
  1738. ],
  1739. "description": "Common interface for HTTP messages",
  1740. "homepage": "https://github.com/php-fig/http-message",
  1741. "keywords": [
  1742. "http",
  1743. "http-message",
  1744. "psr",
  1745. "psr-7",
  1746. "request",
  1747. "response"
  1748. ],
  1749. "time": "2016-08-06T14:39:51+00:00"
  1750. },
  1751. {
  1752. "name": "psr/log",
  1753. "version": "1.1.2",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/php-fig/log.git",
  1757. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1762. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "php": ">=5.3.0"
  1767. },
  1768. "type": "library",
  1769. "extra": {
  1770. "branch-alias": {
  1771. "dev-master": "1.1.x-dev"
  1772. }
  1773. },
  1774. "autoload": {
  1775. "psr-4": {
  1776. "Psr\\Log\\": "Psr/Log/"
  1777. }
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "MIT"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "PHP-FIG",
  1786. "homepage": "http://www.php-fig.org/"
  1787. }
  1788. ],
  1789. "description": "Common interface for logging libraries",
  1790. "homepage": "https://github.com/php-fig/log",
  1791. "keywords": [
  1792. "log",
  1793. "psr",
  1794. "psr-3"
  1795. ],
  1796. "time": "2019-11-01T11:05:21+00:00"
  1797. },
  1798. {
  1799. "name": "psr/simple-cache",
  1800. "version": "1.0.1",
  1801. "source": {
  1802. "type": "git",
  1803. "url": "https://github.com/php-fig/simple-cache.git",
  1804. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1805. },
  1806. "dist": {
  1807. "type": "zip",
  1808. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1809. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1810. "shasum": ""
  1811. },
  1812. "require": {
  1813. "php": ">=5.3.0"
  1814. },
  1815. "type": "library",
  1816. "extra": {
  1817. "branch-alias": {
  1818. "dev-master": "1.0.x-dev"
  1819. }
  1820. },
  1821. "autoload": {
  1822. "psr-4": {
  1823. "Psr\\SimpleCache\\": "src/"
  1824. }
  1825. },
  1826. "notification-url": "https://packagist.org/downloads/",
  1827. "license": [
  1828. "MIT"
  1829. ],
  1830. "authors": [
  1831. {
  1832. "name": "PHP-FIG",
  1833. "homepage": "http://www.php-fig.org/"
  1834. }
  1835. ],
  1836. "description": "Common interfaces for simple caching",
  1837. "keywords": [
  1838. "cache",
  1839. "caching",
  1840. "psr",
  1841. "psr-16",
  1842. "simple-cache"
  1843. ],
  1844. "time": "2017-10-23T01:57:42+00:00"
  1845. },
  1846. {
  1847. "name": "psy/psysh",
  1848. "version": "v0.9.12",
  1849. "source": {
  1850. "type": "git",
  1851. "url": "https://github.com/bobthecow/psysh.git",
  1852. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  1853. },
  1854. "dist": {
  1855. "type": "zip",
  1856. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  1857. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  1858. "shasum": ""
  1859. },
  1860. "require": {
  1861. "dnoegel/php-xdg-base-dir": "0.1.*",
  1862. "ext-json": "*",
  1863. "ext-tokenizer": "*",
  1864. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  1865. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  1866. "php": ">=5.4.0",
  1867. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  1868. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  1869. },
  1870. "require-dev": {
  1871. "bamarni/composer-bin-plugin": "^1.2",
  1872. "hoa/console": "~2.15|~3.16",
  1873. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  1874. },
  1875. "suggest": {
  1876. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1877. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1878. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1879. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  1880. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  1881. },
  1882. "bin": [
  1883. "bin/psysh"
  1884. ],
  1885. "type": "library",
  1886. "extra": {
  1887. "branch-alias": {
  1888. "dev-develop": "0.9.x-dev"
  1889. }
  1890. },
  1891. "autoload": {
  1892. "files": [
  1893. "src/functions.php"
  1894. ],
  1895. "psr-4": {
  1896. "Psy\\": "src/"
  1897. }
  1898. },
  1899. "notification-url": "https://packagist.org/downloads/",
  1900. "license": [
  1901. "MIT"
  1902. ],
  1903. "authors": [
  1904. {
  1905. "name": "Justin Hileman",
  1906. "email": "justin@justinhileman.info",
  1907. "homepage": "http://justinhileman.com"
  1908. }
  1909. ],
  1910. "description": "An interactive shell for modern PHP.",
  1911. "homepage": "http://psysh.org",
  1912. "keywords": [
  1913. "REPL",
  1914. "console",
  1915. "interactive",
  1916. "shell"
  1917. ],
  1918. "time": "2019-12-06T14:19:43+00:00"
  1919. },
  1920. {
  1921. "name": "pusher/pusher-php-server",
  1922. "version": "v4.1.1",
  1923. "source": {
  1924. "type": "git",
  1925. "url": "https://github.com/pusher/pusher-http-php.git",
  1926. "reference": "3c05ef64839845b6114396ff8406712cba052750"
  1927. },
  1928. "dist": {
  1929. "type": "zip",
  1930. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/3c05ef64839845b6114396ff8406712cba052750",
  1931. "reference": "3c05ef64839845b6114396ff8406712cba052750",
  1932. "shasum": ""
  1933. },
  1934. "require": {
  1935. "ext-curl": "*",
  1936. "paragonie/sodium_compat": "^1.6",
  1937. "php": "^7.1",
  1938. "psr/log": "^1.0"
  1939. },
  1940. "require-dev": {
  1941. "phpunit/phpunit": "^7.2"
  1942. },
  1943. "type": "library",
  1944. "extra": {
  1945. "branch-alias": {
  1946. "dev-master": "3.4-dev"
  1947. }
  1948. },
  1949. "autoload": {
  1950. "psr-4": {
  1951. "Pusher\\": "src/"
  1952. }
  1953. },
  1954. "notification-url": "https://packagist.org/downloads/",
  1955. "license": [
  1956. "MIT"
  1957. ],
  1958. "description": "Library for interacting with the Pusher REST API",
  1959. "keywords": [
  1960. "events",
  1961. "messaging",
  1962. "php-pusher-server",
  1963. "publish",
  1964. "push",
  1965. "pusher",
  1966. "real time",
  1967. "real-time",
  1968. "realtime",
  1969. "rest",
  1970. "trigger"
  1971. ],
  1972. "time": "2019-12-03T13:29:13+00:00"
  1973. },
  1974. {
  1975. "name": "ralouphie/getallheaders",
  1976. "version": "3.0.3",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/ralouphie/getallheaders.git",
  1980. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1985. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "php": ">=5.6"
  1990. },
  1991. "require-dev": {
  1992. "php-coveralls/php-coveralls": "^2.1",
  1993. "phpunit/phpunit": "^5 || ^6.5"
  1994. },
  1995. "type": "library",
  1996. "autoload": {
  1997. "files": [
  1998. "src/getallheaders.php"
  1999. ]
  2000. },
  2001. "notification-url": "https://packagist.org/downloads/",
  2002. "license": [
  2003. "MIT"
  2004. ],
  2005. "authors": [
  2006. {
  2007. "name": "Ralph Khattar",
  2008. "email": "ralph.khattar@gmail.com"
  2009. }
  2010. ],
  2011. "description": "A polyfill for getallheaders.",
  2012. "time": "2019-03-08T08:55:37+00:00"
  2013. },
  2014. {
  2015. "name": "ramsey/uuid",
  2016. "version": "3.9.2",
  2017. "source": {
  2018. "type": "git",
  2019. "url": "https://github.com/ramsey/uuid.git",
  2020. "reference": "7779489a47d443f845271badbdcedfe4df8e06fb"
  2021. },
  2022. "dist": {
  2023. "type": "zip",
  2024. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7779489a47d443f845271badbdcedfe4df8e06fb",
  2025. "reference": "7779489a47d443f845271badbdcedfe4df8e06fb",
  2026. "shasum": ""
  2027. },
  2028. "require": {
  2029. "ext-json": "*",
  2030. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  2031. "php": "^5.4 | ^7 | ^8",
  2032. "symfony/polyfill-ctype": "^1.8"
  2033. },
  2034. "replace": {
  2035. "rhumsaa/uuid": "self.version"
  2036. },
  2037. "require-dev": {
  2038. "codeception/aspect-mock": "^1 | ^2",
  2039. "doctrine/annotations": "^1.2",
  2040. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  2041. "jakub-onderka/php-parallel-lint": "^1",
  2042. "mockery/mockery": "^0.9.11 | ^1",
  2043. "moontoast/math": "^1.1",
  2044. "paragonie/random-lib": "^2",
  2045. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  2046. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  2047. "squizlabs/php_codesniffer": "^3.5"
  2048. },
  2049. "suggest": {
  2050. "ext-ctype": "Provides support for PHP Ctype functions",
  2051. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2052. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  2053. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2054. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2055. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2056. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2057. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2058. },
  2059. "type": "library",
  2060. "extra": {
  2061. "branch-alias": {
  2062. "dev-master": "3.x-dev"
  2063. }
  2064. },
  2065. "autoload": {
  2066. "psr-4": {
  2067. "Ramsey\\Uuid\\": "src/"
  2068. },
  2069. "files": [
  2070. "src/functions.php"
  2071. ]
  2072. },
  2073. "notification-url": "https://packagist.org/downloads/",
  2074. "license": [
  2075. "MIT"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "Ben Ramsey",
  2080. "email": "ben@benramsey.com",
  2081. "homepage": "https://benramsey.com"
  2082. },
  2083. {
  2084. "name": "Marijn Huizendveld",
  2085. "email": "marijn.huizendveld@gmail.com"
  2086. },
  2087. {
  2088. "name": "Thibaud Fabre",
  2089. "email": "thibaud@aztech.io"
  2090. }
  2091. ],
  2092. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2093. "homepage": "https://github.com/ramsey/uuid",
  2094. "keywords": [
  2095. "guid",
  2096. "identifier",
  2097. "uuid"
  2098. ],
  2099. "time": "2019-12-17T08:18:51+00:00"
  2100. },
  2101. {
  2102. "name": "ratchet/rfc6455",
  2103. "version": "v0.2.6",
  2104. "source": {
  2105. "type": "git",
  2106. "url": "https://github.com/ratchetphp/RFC6455.git",
  2107. "reference": "879e48c840f8dbc296d68d6a5030673df79bd916"
  2108. },
  2109. "dist": {
  2110. "type": "zip",
  2111. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/879e48c840f8dbc296d68d6a5030673df79bd916",
  2112. "reference": "879e48c840f8dbc296d68d6a5030673df79bd916",
  2113. "shasum": ""
  2114. },
  2115. "require": {
  2116. "guzzlehttp/psr7": "^1.0",
  2117. "php": ">=5.4.2"
  2118. },
  2119. "require-dev": {
  2120. "phpunit/phpunit": "4.8.*",
  2121. "react/socket": "^1.3"
  2122. },
  2123. "type": "library",
  2124. "autoload": {
  2125. "psr-4": {
  2126. "Ratchet\\RFC6455\\": "src"
  2127. }
  2128. },
  2129. "notification-url": "https://packagist.org/downloads/",
  2130. "license": [
  2131. "MIT"
  2132. ],
  2133. "authors": [
  2134. {
  2135. "name": "Chris Boden",
  2136. "email": "cboden@gmail.com",
  2137. "role": "Developer"
  2138. }
  2139. ],
  2140. "description": "RFC6455 WebSocket protocol handler",
  2141. "homepage": "http://socketo.me",
  2142. "keywords": [
  2143. "WebSockets",
  2144. "rfc6455",
  2145. "websocket"
  2146. ],
  2147. "time": "2019-12-15T10:18:18+00:00"
  2148. },
  2149. {
  2150. "name": "react/cache",
  2151. "version": "v1.0.0",
  2152. "source": {
  2153. "type": "git",
  2154. "url": "https://github.com/reactphp/cache.git",
  2155. "reference": "aa10d63a1b40a36a486bdf527f28bac607ee6466"
  2156. },
  2157. "dist": {
  2158. "type": "zip",
  2159. "url": "https://api.github.com/repos/reactphp/cache/zipball/aa10d63a1b40a36a486bdf527f28bac607ee6466",
  2160. "reference": "aa10d63a1b40a36a486bdf527f28bac607ee6466",
  2161. "shasum": ""
  2162. },
  2163. "require": {
  2164. "php": ">=5.3.0",
  2165. "react/promise": "~2.0|~1.1"
  2166. },
  2167. "require-dev": {
  2168. "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
  2169. },
  2170. "type": "library",
  2171. "autoload": {
  2172. "psr-4": {
  2173. "React\\Cache\\": "src/"
  2174. }
  2175. },
  2176. "notification-url": "https://packagist.org/downloads/",
  2177. "license": [
  2178. "MIT"
  2179. ],
  2180. "description": "Async, Promise-based cache interface for ReactPHP",
  2181. "keywords": [
  2182. "cache",
  2183. "caching",
  2184. "promise",
  2185. "reactphp"
  2186. ],
  2187. "time": "2019-07-11T13:45:28+00:00"
  2188. },
  2189. {
  2190. "name": "react/dns",
  2191. "version": "v1.2.0",
  2192. "source": {
  2193. "type": "git",
  2194. "url": "https://github.com/reactphp/dns.git",
  2195. "reference": "a214d90c2884dac18d0cac6176202f247b66d762"
  2196. },
  2197. "dist": {
  2198. "type": "zip",
  2199. "url": "https://api.github.com/repos/reactphp/dns/zipball/a214d90c2884dac18d0cac6176202f247b66d762",
  2200. "reference": "a214d90c2884dac18d0cac6176202f247b66d762",
  2201. "shasum": ""
  2202. },
  2203. "require": {
  2204. "php": ">=5.3.0",
  2205. "react/cache": "^1.0 || ^0.6 || ^0.5",
  2206. "react/event-loop": "^1.0 || ^0.5",
  2207. "react/promise": "^2.7 || ^1.2.1",
  2208. "react/promise-timer": "^1.2"
  2209. },
  2210. "require-dev": {
  2211. "clue/block-react": "^1.2",
  2212. "phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35"
  2213. },
  2214. "type": "library",
  2215. "autoload": {
  2216. "psr-4": {
  2217. "React\\Dns\\": "src"
  2218. }
  2219. },
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "description": "Async DNS resolver for ReactPHP",
  2225. "keywords": [
  2226. "async",
  2227. "dns",
  2228. "dns-resolver",
  2229. "reactphp"
  2230. ],
  2231. "time": "2019-08-15T09:06:31+00:00"
  2232. },
  2233. {
  2234. "name": "react/event-loop",
  2235. "version": "v1.1.1",
  2236. "source": {
  2237. "type": "git",
  2238. "url": "https://github.com/reactphp/event-loop.git",
  2239. "reference": "6d24de090cd59cfc830263cfba965be77b563c13"
  2240. },
  2241. "dist": {
  2242. "type": "zip",
  2243. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/6d24de090cd59cfc830263cfba965be77b563c13",
  2244. "reference": "6d24de090cd59cfc830263cfba965be77b563c13",
  2245. "shasum": ""
  2246. },
  2247. "require": {
  2248. "php": ">=5.3.0"
  2249. },
  2250. "require-dev": {
  2251. "phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35"
  2252. },
  2253. "suggest": {
  2254. "ext-event": "~1.0 for ExtEventLoop",
  2255. "ext-pcntl": "For signal handling support when using the StreamSelectLoop",
  2256. "ext-uv": "* for ExtUvLoop"
  2257. },
  2258. "type": "library",
  2259. "autoload": {
  2260. "psr-4": {
  2261. "React\\EventLoop\\": "src"
  2262. }
  2263. },
  2264. "notification-url": "https://packagist.org/downloads/",
  2265. "license": [
  2266. "MIT"
  2267. ],
  2268. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  2269. "keywords": [
  2270. "asynchronous",
  2271. "event-loop"
  2272. ],
  2273. "time": "2020-01-01T18:39:52+00:00"
  2274. },
  2275. {
  2276. "name": "react/http-client",
  2277. "version": "v0.5.10",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://github.com/reactphp/http-client.git",
  2281. "reference": "f16ab55150ec369f8f9b5db64972f248691093b0"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://api.github.com/repos/reactphp/http-client/zipball/f16ab55150ec369f8f9b5db64972f248691093b0",
  2286. "reference": "f16ab55150ec369f8f9b5db64972f248691093b0",
  2287. "shasum": ""
  2288. },
  2289. "require": {
  2290. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  2291. "php": ">=5.3.0",
  2292. "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3",
  2293. "react/promise": "^2.1 || ^1.2.1",
  2294. "react/socket": "^1.0 || ^0.8.4",
  2295. "react/stream": "^1.0 || ^0.7.1",
  2296. "ringcentral/psr7": "^1.2"
  2297. },
  2298. "require-dev": {
  2299. "clue/block-react": "^1.2",
  2300. "phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35",
  2301. "react/promise-stream": "^1.1"
  2302. },
  2303. "type": "library",
  2304. "autoload": {
  2305. "psr-4": {
  2306. "React\\HttpClient\\": "src"
  2307. }
  2308. },
  2309. "notification-url": "https://packagist.org/downloads/",
  2310. "license": [
  2311. "MIT"
  2312. ],
  2313. "description": "Event-driven, streaming HTTP client for ReactPHP",
  2314. "keywords": [
  2315. "http"
  2316. ],
  2317. "time": "2020-01-14T08:36:16+00:00"
  2318. },
  2319. {
  2320. "name": "react/promise",
  2321. "version": "v2.7.1",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/reactphp/promise.git",
  2325. "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/reactphp/promise/zipball/31ffa96f8d2ed0341a57848cbb84d88b89dd664d",
  2330. "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d",
  2331. "shasum": ""
  2332. },
  2333. "require": {
  2334. "php": ">=5.4.0"
  2335. },
  2336. "require-dev": {
  2337. "phpunit/phpunit": "~4.8"
  2338. },
  2339. "type": "library",
  2340. "autoload": {
  2341. "psr-4": {
  2342. "React\\Promise\\": "src/"
  2343. },
  2344. "files": [
  2345. "src/functions_include.php"
  2346. ]
  2347. },
  2348. "notification-url": "https://packagist.org/downloads/",
  2349. "license": [
  2350. "MIT"
  2351. ],
  2352. "authors": [
  2353. {
  2354. "name": "Jan Sorgalla",
  2355. "email": "jsorgalla@gmail.com"
  2356. }
  2357. ],
  2358. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  2359. "keywords": [
  2360. "promise",
  2361. "promises"
  2362. ],
  2363. "time": "2019-01-07T21:25:54+00:00"
  2364. },
  2365. {
  2366. "name": "react/promise-stream",
  2367. "version": "v1.2.0",
  2368. "source": {
  2369. "type": "git",
  2370. "url": "https://github.com/reactphp/promise-stream.git",
  2371. "reference": "6384d8b76cf7dcc44b0bf3343fb2b2928412d1fe"
  2372. },
  2373. "dist": {
  2374. "type": "zip",
  2375. "url": "https://api.github.com/repos/reactphp/promise-stream/zipball/6384d8b76cf7dcc44b0bf3343fb2b2928412d1fe",
  2376. "reference": "6384d8b76cf7dcc44b0bf3343fb2b2928412d1fe",
  2377. "shasum": ""
  2378. },
  2379. "require": {
  2380. "php": ">=5.3",
  2381. "react/promise": "^2.1 || ^1.2",
  2382. "react/stream": "^1.0 || ^0.7 || ^0.6 || ^0.5 || ^0.4.6"
  2383. },
  2384. "require-dev": {
  2385. "clue/block-react": "^1.0",
  2386. "phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35",
  2387. "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3",
  2388. "react/promise-timer": "^1.0"
  2389. },
  2390. "type": "library",
  2391. "autoload": {
  2392. "psr-4": {
  2393. "React\\Promise\\Stream\\": "src/"
  2394. },
  2395. "files": [
  2396. "src/functions_include.php"
  2397. ]
  2398. },
  2399. "notification-url": "https://packagist.org/downloads/",
  2400. "license": [
  2401. "MIT"
  2402. ],
  2403. "authors": [
  2404. {
  2405. "name": "Christian Lück",
  2406. "email": "christian@lueck.tv"
  2407. }
  2408. ],
  2409. "description": "The missing link between Promise-land and Stream-land for ReactPHP",
  2410. "homepage": "https://github.com/reactphp/promise-stream",
  2411. "keywords": [
  2412. "Buffer",
  2413. "async",
  2414. "promise",
  2415. "reactphp",
  2416. "stream",
  2417. "unwrap"
  2418. ],
  2419. "time": "2019-07-03T12:29:10+00:00"
  2420. },
  2421. {
  2422. "name": "react/promise-timer",
  2423. "version": "v1.5.1",
  2424. "source": {
  2425. "type": "git",
  2426. "url": "https://github.com/reactphp/promise-timer.git",
  2427. "reference": "35fb910604fd86b00023fc5cda477c8074ad0abc"
  2428. },
  2429. "dist": {
  2430. "type": "zip",
  2431. "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/35fb910604fd86b00023fc5cda477c8074ad0abc",
  2432. "reference": "35fb910604fd86b00023fc5cda477c8074ad0abc",
  2433. "shasum": ""
  2434. },
  2435. "require": {
  2436. "php": ">=5.3",
  2437. "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5",
  2438. "react/promise": "^2.7.0 || ^1.2.1"
  2439. },
  2440. "require-dev": {
  2441. "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
  2442. },
  2443. "type": "library",
  2444. "autoload": {
  2445. "psr-4": {
  2446. "React\\Promise\\Timer\\": "src/"
  2447. },
  2448. "files": [
  2449. "src/functions_include.php"
  2450. ]
  2451. },
  2452. "notification-url": "https://packagist.org/downloads/",
  2453. "license": [
  2454. "MIT"
  2455. ],
  2456. "authors": [
  2457. {
  2458. "name": "Christian Lück",
  2459. "email": "christian@lueck.tv"
  2460. }
  2461. ],
  2462. "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.",
  2463. "homepage": "https://github.com/reactphp/promise-timer",
  2464. "keywords": [
  2465. "async",
  2466. "event-loop",
  2467. "promise",
  2468. "reactphp",
  2469. "timeout",
  2470. "timer"
  2471. ],
  2472. "time": "2019-03-27T18:10:32+00:00"
  2473. },
  2474. {
  2475. "name": "react/socket",
  2476. "version": "v1.3.0",
  2477. "source": {
  2478. "type": "git",
  2479. "url": "https://github.com/reactphp/socket.git",
  2480. "reference": "10f0629ec83ea0fa22597f348623f554227e3ca0"
  2481. },
  2482. "dist": {
  2483. "type": "zip",
  2484. "url": "https://api.github.com/repos/reactphp/socket/zipball/10f0629ec83ea0fa22597f348623f554227e3ca0",
  2485. "reference": "10f0629ec83ea0fa22597f348623f554227e3ca0",
  2486. "shasum": ""
  2487. },
  2488. "require": {
  2489. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  2490. "php": ">=5.3.0",
  2491. "react/dns": "^1.0 || ^0.4.13",
  2492. "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5",
  2493. "react/promise": "^2.6.0 || ^1.2.1",
  2494. "react/promise-timer": "^1.4.0",
  2495. "react/stream": "^1.1"
  2496. },
  2497. "require-dev": {
  2498. "clue/block-react": "^1.2",
  2499. "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
  2500. },
  2501. "type": "library",
  2502. "autoload": {
  2503. "psr-4": {
  2504. "React\\Socket\\": "src"
  2505. }
  2506. },
  2507. "notification-url": "https://packagist.org/downloads/",
  2508. "license": [
  2509. "MIT"
  2510. ],
  2511. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  2512. "keywords": [
  2513. "Connection",
  2514. "Socket",
  2515. "async",
  2516. "reactphp",
  2517. "stream"
  2518. ],
  2519. "time": "2019-07-10T10:11:14+00:00"
  2520. },
  2521. {
  2522. "name": "react/stream",
  2523. "version": "v1.1.0",
  2524. "source": {
  2525. "type": "git",
  2526. "url": "https://github.com/reactphp/stream.git",
  2527. "reference": "50426855f7a77ddf43b9266c22320df5bf6c6ce6"
  2528. },
  2529. "dist": {
  2530. "type": "zip",
  2531. "url": "https://api.github.com/repos/reactphp/stream/zipball/50426855f7a77ddf43b9266c22320df5bf6c6ce6",
  2532. "reference": "50426855f7a77ddf43b9266c22320df5bf6c6ce6",
  2533. "shasum": ""
  2534. },
  2535. "require": {
  2536. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  2537. "php": ">=5.3.8",
  2538. "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5"
  2539. },
  2540. "require-dev": {
  2541. "clue/stream-filter": "~1.2",
  2542. "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
  2543. },
  2544. "type": "library",
  2545. "autoload": {
  2546. "psr-4": {
  2547. "React\\Stream\\": "src"
  2548. }
  2549. },
  2550. "notification-url": "https://packagist.org/downloads/",
  2551. "license": [
  2552. "MIT"
  2553. ],
  2554. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  2555. "keywords": [
  2556. "event-driven",
  2557. "io",
  2558. "non-blocking",
  2559. "pipe",
  2560. "reactphp",
  2561. "readable",
  2562. "stream",
  2563. "writable"
  2564. ],
  2565. "time": "2019-01-01T16:15:09+00:00"
  2566. },
  2567. {
  2568. "name": "ringcentral/psr7",
  2569. "version": "1.2.2",
  2570. "source": {
  2571. "type": "git",
  2572. "url": "https://github.com/ringcentral/psr7.git",
  2573. "reference": "dcd84bbb49b96c616d1dcc8bfb9bef3f2cd53d1c"
  2574. },
  2575. "dist": {
  2576. "type": "zip",
  2577. "url": "https://api.github.com/repos/ringcentral/psr7/zipball/dcd84bbb49b96c616d1dcc8bfb9bef3f2cd53d1c",
  2578. "reference": "dcd84bbb49b96c616d1dcc8bfb9bef3f2cd53d1c",
  2579. "shasum": ""
  2580. },
  2581. "require": {
  2582. "php": ">=5.3",
  2583. "psr/http-message": "~1.0"
  2584. },
  2585. "provide": {
  2586. "psr/http-message-implementation": "1.0"
  2587. },
  2588. "require-dev": {
  2589. "phpunit/phpunit": "~4.0"
  2590. },
  2591. "type": "library",
  2592. "extra": {
  2593. "branch-alias": {
  2594. "dev-master": "1.0-dev"
  2595. }
  2596. },
  2597. "autoload": {
  2598. "psr-4": {
  2599. "RingCentral\\Psr7\\": "src/"
  2600. },
  2601. "files": [
  2602. "src/functions_include.php"
  2603. ]
  2604. },
  2605. "notification-url": "https://packagist.org/downloads/",
  2606. "license": [
  2607. "MIT"
  2608. ],
  2609. "authors": [
  2610. {
  2611. "name": "Michael Dowling",
  2612. "email": "mtdowling@gmail.com",
  2613. "homepage": "https://github.com/mtdowling"
  2614. }
  2615. ],
  2616. "description": "PSR-7 message implementation",
  2617. "keywords": [
  2618. "http",
  2619. "message",
  2620. "stream",
  2621. "uri"
  2622. ],
  2623. "time": "2018-01-15T21:00:49+00:00"
  2624. },
  2625. {
  2626. "name": "swiftmailer/swiftmailer",
  2627. "version": "v6.2.3",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2631. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  2636. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  2637. "shasum": ""
  2638. },
  2639. "require": {
  2640. "egulias/email-validator": "~2.0",
  2641. "php": ">=7.0.0",
  2642. "symfony/polyfill-iconv": "^1.0",
  2643. "symfony/polyfill-intl-idn": "^1.10",
  2644. "symfony/polyfill-mbstring": "^1.0"
  2645. },
  2646. "require-dev": {
  2647. "mockery/mockery": "~0.9.1",
  2648. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2649. },
  2650. "suggest": {
  2651. "ext-intl": "Needed to support internationalized email addresses",
  2652. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2653. },
  2654. "type": "library",
  2655. "extra": {
  2656. "branch-alias": {
  2657. "dev-master": "6.2-dev"
  2658. }
  2659. },
  2660. "autoload": {
  2661. "files": [
  2662. "lib/swift_required.php"
  2663. ]
  2664. },
  2665. "notification-url": "https://packagist.org/downloads/",
  2666. "license": [
  2667. "MIT"
  2668. ],
  2669. "authors": [
  2670. {
  2671. "name": "Chris Corbyn"
  2672. },
  2673. {
  2674. "name": "Fabien Potencier",
  2675. "email": "fabien@symfony.com"
  2676. }
  2677. ],
  2678. "description": "Swiftmailer, free feature-rich PHP mailer",
  2679. "homepage": "https://swiftmailer.symfony.com",
  2680. "keywords": [
  2681. "email",
  2682. "mail",
  2683. "mailer"
  2684. ],
  2685. "time": "2019-11-12T09:31:26+00:00"
  2686. },
  2687. {
  2688. "name": "symfony/console",
  2689. "version": "v4.4.4",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://github.com/symfony/console.git",
  2693. "reference": "f512001679f37e6a042b51897ed24a2f05eba656"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://api.github.com/repos/symfony/console/zipball/f512001679f37e6a042b51897ed24a2f05eba656",
  2698. "reference": "f512001679f37e6a042b51897ed24a2f05eba656",
  2699. "shasum": ""
  2700. },
  2701. "require": {
  2702. "php": "^7.1.3",
  2703. "symfony/polyfill-mbstring": "~1.0",
  2704. "symfony/polyfill-php73": "^1.8",
  2705. "symfony/service-contracts": "^1.1|^2"
  2706. },
  2707. "conflict": {
  2708. "symfony/dependency-injection": "<3.4",
  2709. "symfony/event-dispatcher": "<4.3|>=5",
  2710. "symfony/lock": "<4.4",
  2711. "symfony/process": "<3.3"
  2712. },
  2713. "provide": {
  2714. "psr/log-implementation": "1.0"
  2715. },
  2716. "require-dev": {
  2717. "psr/log": "~1.0",
  2718. "symfony/config": "^3.4|^4.0|^5.0",
  2719. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2720. "symfony/event-dispatcher": "^4.3",
  2721. "symfony/lock": "^4.4|^5.0",
  2722. "symfony/process": "^3.4|^4.0|^5.0",
  2723. "symfony/var-dumper": "^4.3|^5.0"
  2724. },
  2725. "suggest": {
  2726. "psr/log": "For using the console logger",
  2727. "symfony/event-dispatcher": "",
  2728. "symfony/lock": "",
  2729. "symfony/process": ""
  2730. },
  2731. "type": "library",
  2732. "extra": {
  2733. "branch-alias": {
  2734. "dev-master": "4.4-dev"
  2735. }
  2736. },
  2737. "autoload": {
  2738. "psr-4": {
  2739. "Symfony\\Component\\Console\\": ""
  2740. },
  2741. "exclude-from-classmap": [
  2742. "/Tests/"
  2743. ]
  2744. },
  2745. "notification-url": "https://packagist.org/downloads/",
  2746. "license": [
  2747. "MIT"
  2748. ],
  2749. "authors": [
  2750. {
  2751. "name": "Fabien Potencier",
  2752. "email": "fabien@symfony.com"
  2753. },
  2754. {
  2755. "name": "Symfony Community",
  2756. "homepage": "https://symfony.com/contributors"
  2757. }
  2758. ],
  2759. "description": "Symfony Console Component",
  2760. "homepage": "https://symfony.com",
  2761. "time": "2020-01-25T12:44:29+00:00"
  2762. },
  2763. {
  2764. "name": "symfony/css-selector",
  2765. "version": "v5.0.4",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/symfony/css-selector.git",
  2769. "reference": "ff60c90cb7950b592ebc84ad1289d0345bf24f9f"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ff60c90cb7950b592ebc84ad1289d0345bf24f9f",
  2774. "reference": "ff60c90cb7950b592ebc84ad1289d0345bf24f9f",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "php": "^7.2.5"
  2779. },
  2780. "type": "library",
  2781. "extra": {
  2782. "branch-alias": {
  2783. "dev-master": "5.0-dev"
  2784. }
  2785. },
  2786. "autoload": {
  2787. "psr-4": {
  2788. "Symfony\\Component\\CssSelector\\": ""
  2789. },
  2790. "exclude-from-classmap": [
  2791. "/Tests/"
  2792. ]
  2793. },
  2794. "notification-url": "https://packagist.org/downloads/",
  2795. "license": [
  2796. "MIT"
  2797. ],
  2798. "authors": [
  2799. {
  2800. "name": "Fabien Potencier",
  2801. "email": "fabien@symfony.com"
  2802. },
  2803. {
  2804. "name": "Jean-François Simon",
  2805. "email": "jeanfrancois.simon@sensiolabs.com"
  2806. },
  2807. {
  2808. "name": "Symfony Community",
  2809. "homepage": "https://symfony.com/contributors"
  2810. }
  2811. ],
  2812. "description": "Symfony CssSelector Component",
  2813. "homepage": "https://symfony.com",
  2814. "time": "2020-01-04T14:08:26+00:00"
  2815. },
  2816. {
  2817. "name": "symfony/debug",
  2818. "version": "v4.4.4",
  2819. "source": {
  2820. "type": "git",
  2821. "url": "https://github.com/symfony/debug.git",
  2822. "reference": "20236471058bbaa9907382500fc14005c84601f0"
  2823. },
  2824. "dist": {
  2825. "type": "zip",
  2826. "url": "https://api.github.com/repos/symfony/debug/zipball/20236471058bbaa9907382500fc14005c84601f0",
  2827. "reference": "20236471058bbaa9907382500fc14005c84601f0",
  2828. "shasum": ""
  2829. },
  2830. "require": {
  2831. "php": "^7.1.3",
  2832. "psr/log": "~1.0"
  2833. },
  2834. "conflict": {
  2835. "symfony/http-kernel": "<3.4"
  2836. },
  2837. "require-dev": {
  2838. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  2839. },
  2840. "type": "library",
  2841. "extra": {
  2842. "branch-alias": {
  2843. "dev-master": "4.4-dev"
  2844. }
  2845. },
  2846. "autoload": {
  2847. "psr-4": {
  2848. "Symfony\\Component\\Debug\\": ""
  2849. },
  2850. "exclude-from-classmap": [
  2851. "/Tests/"
  2852. ]
  2853. },
  2854. "notification-url": "https://packagist.org/downloads/",
  2855. "license": [
  2856. "MIT"
  2857. ],
  2858. "authors": [
  2859. {
  2860. "name": "Fabien Potencier",
  2861. "email": "fabien@symfony.com"
  2862. },
  2863. {
  2864. "name": "Symfony Community",
  2865. "homepage": "https://symfony.com/contributors"
  2866. }
  2867. ],
  2868. "description": "Symfony Debug Component",
  2869. "homepage": "https://symfony.com",
  2870. "time": "2020-01-25T12:44:29+00:00"
  2871. },
  2872. {
  2873. "name": "symfony/error-handler",
  2874. "version": "v4.4.4",
  2875. "source": {
  2876. "type": "git",
  2877. "url": "https://github.com/symfony/error-handler.git",
  2878. "reference": "d2721499ffcaf246a743e01cdf6696d3d5dd74c1"
  2879. },
  2880. "dist": {
  2881. "type": "zip",
  2882. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d2721499ffcaf246a743e01cdf6696d3d5dd74c1",
  2883. "reference": "d2721499ffcaf246a743e01cdf6696d3d5dd74c1",
  2884. "shasum": ""
  2885. },
  2886. "require": {
  2887. "php": "^7.1.3",
  2888. "psr/log": "~1.0",
  2889. "symfony/debug": "^4.4",
  2890. "symfony/var-dumper": "^4.4|^5.0"
  2891. },
  2892. "require-dev": {
  2893. "symfony/http-kernel": "^4.4|^5.0",
  2894. "symfony/serializer": "^4.4|^5.0"
  2895. },
  2896. "type": "library",
  2897. "extra": {
  2898. "branch-alias": {
  2899. "dev-master": "4.4-dev"
  2900. }
  2901. },
  2902. "autoload": {
  2903. "psr-4": {
  2904. "Symfony\\Component\\ErrorHandler\\": ""
  2905. },
  2906. "exclude-from-classmap": [
  2907. "/Tests/"
  2908. ]
  2909. },
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "MIT"
  2913. ],
  2914. "authors": [
  2915. {
  2916. "name": "Fabien Potencier",
  2917. "email": "fabien@symfony.com"
  2918. },
  2919. {
  2920. "name": "Symfony Community",
  2921. "homepage": "https://symfony.com/contributors"
  2922. }
  2923. ],
  2924. "description": "Symfony ErrorHandler Component",
  2925. "homepage": "https://symfony.com",
  2926. "time": "2020-01-27T09:48:47+00:00"
  2927. },
  2928. {
  2929. "name": "symfony/event-dispatcher",
  2930. "version": "v4.4.4",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/symfony/event-dispatcher.git",
  2934. "reference": "9e3de195e5bc301704dd6915df55892f6dfc208b"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9e3de195e5bc301704dd6915df55892f6dfc208b",
  2939. "reference": "9e3de195e5bc301704dd6915df55892f6dfc208b",
  2940. "shasum": ""
  2941. },
  2942. "require": {
  2943. "php": "^7.1.3",
  2944. "symfony/event-dispatcher-contracts": "^1.1"
  2945. },
  2946. "conflict": {
  2947. "symfony/dependency-injection": "<3.4"
  2948. },
  2949. "provide": {
  2950. "psr/event-dispatcher-implementation": "1.0",
  2951. "symfony/event-dispatcher-implementation": "1.1"
  2952. },
  2953. "require-dev": {
  2954. "psr/log": "~1.0",
  2955. "symfony/config": "^3.4|^4.0|^5.0",
  2956. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2957. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2958. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2959. "symfony/service-contracts": "^1.1|^2",
  2960. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2961. },
  2962. "suggest": {
  2963. "symfony/dependency-injection": "",
  2964. "symfony/http-kernel": ""
  2965. },
  2966. "type": "library",
  2967. "extra": {
  2968. "branch-alias": {
  2969. "dev-master": "4.4-dev"
  2970. }
  2971. },
  2972. "autoload": {
  2973. "psr-4": {
  2974. "Symfony\\Component\\EventDispatcher\\": ""
  2975. },
  2976. "exclude-from-classmap": [
  2977. "/Tests/"
  2978. ]
  2979. },
  2980. "notification-url": "https://packagist.org/downloads/",
  2981. "license": [
  2982. "MIT"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "Fabien Potencier",
  2987. "email": "fabien@symfony.com"
  2988. },
  2989. {
  2990. "name": "Symfony Community",
  2991. "homepage": "https://symfony.com/contributors"
  2992. }
  2993. ],
  2994. "description": "Symfony EventDispatcher Component",
  2995. "homepage": "https://symfony.com",
  2996. "time": "2020-01-10T21:54:01+00:00"
  2997. },
  2998. {
  2999. "name": "symfony/event-dispatcher-contracts",
  3000. "version": "v1.1.7",
  3001. "source": {
  3002. "type": "git",
  3003. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3004. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
  3005. },
  3006. "dist": {
  3007. "type": "zip",
  3008. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  3009. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  3010. "shasum": ""
  3011. },
  3012. "require": {
  3013. "php": "^7.1.3"
  3014. },
  3015. "suggest": {
  3016. "psr/event-dispatcher": "",
  3017. "symfony/event-dispatcher-implementation": ""
  3018. },
  3019. "type": "library",
  3020. "extra": {
  3021. "branch-alias": {
  3022. "dev-master": "1.1-dev"
  3023. }
  3024. },
  3025. "autoload": {
  3026. "psr-4": {
  3027. "Symfony\\Contracts\\EventDispatcher\\": ""
  3028. }
  3029. },
  3030. "notification-url": "https://packagist.org/downloads/",
  3031. "license": [
  3032. "MIT"
  3033. ],
  3034. "authors": [
  3035. {
  3036. "name": "Nicolas Grekas",
  3037. "email": "p@tchwork.com"
  3038. },
  3039. {
  3040. "name": "Symfony Community",
  3041. "homepage": "https://symfony.com/contributors"
  3042. }
  3043. ],
  3044. "description": "Generic abstractions related to dispatching event",
  3045. "homepage": "https://symfony.com",
  3046. "keywords": [
  3047. "abstractions",
  3048. "contracts",
  3049. "decoupling",
  3050. "interfaces",
  3051. "interoperability",
  3052. "standards"
  3053. ],
  3054. "time": "2019-09-17T09:54:03+00:00"
  3055. },
  3056. {
  3057. "name": "symfony/finder",
  3058. "version": "v4.4.4",
  3059. "source": {
  3060. "type": "git",
  3061. "url": "https://github.com/symfony/finder.git",
  3062. "reference": "3a50be43515590faf812fbd7708200aabc327ec3"
  3063. },
  3064. "dist": {
  3065. "type": "zip",
  3066. "url": "https://api.github.com/repos/symfony/finder/zipball/3a50be43515590faf812fbd7708200aabc327ec3",
  3067. "reference": "3a50be43515590faf812fbd7708200aabc327ec3",
  3068. "shasum": ""
  3069. },
  3070. "require": {
  3071. "php": "^7.1.3"
  3072. },
  3073. "type": "library",
  3074. "extra": {
  3075. "branch-alias": {
  3076. "dev-master": "4.4-dev"
  3077. }
  3078. },
  3079. "autoload": {
  3080. "psr-4": {
  3081. "Symfony\\Component\\Finder\\": ""
  3082. },
  3083. "exclude-from-classmap": [
  3084. "/Tests/"
  3085. ]
  3086. },
  3087. "notification-url": "https://packagist.org/downloads/",
  3088. "license": [
  3089. "MIT"
  3090. ],
  3091. "authors": [
  3092. {
  3093. "name": "Fabien Potencier",
  3094. "email": "fabien@symfony.com"
  3095. },
  3096. {
  3097. "name": "Symfony Community",
  3098. "homepage": "https://symfony.com/contributors"
  3099. }
  3100. ],
  3101. "description": "Symfony Finder Component",
  3102. "homepage": "https://symfony.com",
  3103. "time": "2020-01-04T13:00:46+00:00"
  3104. },
  3105. {
  3106. "name": "symfony/http-foundation",
  3107. "version": "v4.4.4",
  3108. "source": {
  3109. "type": "git",
  3110. "url": "https://github.com/symfony/http-foundation.git",
  3111. "reference": "491a20dfa87e0b3990170593bc2de0bb34d828a5"
  3112. },
  3113. "dist": {
  3114. "type": "zip",
  3115. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/491a20dfa87e0b3990170593bc2de0bb34d828a5",
  3116. "reference": "491a20dfa87e0b3990170593bc2de0bb34d828a5",
  3117. "shasum": ""
  3118. },
  3119. "require": {
  3120. "php": "^7.1.3",
  3121. "symfony/mime": "^4.3|^5.0",
  3122. "symfony/polyfill-mbstring": "~1.1"
  3123. },
  3124. "require-dev": {
  3125. "predis/predis": "~1.0",
  3126. "symfony/expression-language": "^3.4|^4.0|^5.0"
  3127. },
  3128. "type": "library",
  3129. "extra": {
  3130. "branch-alias": {
  3131. "dev-master": "4.4-dev"
  3132. }
  3133. },
  3134. "autoload": {
  3135. "psr-4": {
  3136. "Symfony\\Component\\HttpFoundation\\": ""
  3137. },
  3138. "exclude-from-classmap": [
  3139. "/Tests/"
  3140. ]
  3141. },
  3142. "notification-url": "https://packagist.org/downloads/",
  3143. "license": [
  3144. "MIT"
  3145. ],
  3146. "authors": [
  3147. {
  3148. "name": "Fabien Potencier",
  3149. "email": "fabien@symfony.com"
  3150. },
  3151. {
  3152. "name": "Symfony Community",
  3153. "homepage": "https://symfony.com/contributors"
  3154. }
  3155. ],
  3156. "description": "Symfony HttpFoundation Component",
  3157. "homepage": "https://symfony.com",
  3158. "time": "2020-01-31T09:11:17+00:00"
  3159. },
  3160. {
  3161. "name": "symfony/http-kernel",
  3162. "version": "v4.4.4",
  3163. "source": {
  3164. "type": "git",
  3165. "url": "https://github.com/symfony/http-kernel.git",
  3166. "reference": "62116a9c8fb15faabb158ad9cb785c353c2572e5"
  3167. },
  3168. "dist": {
  3169. "type": "zip",
  3170. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/62116a9c8fb15faabb158ad9cb785c353c2572e5",
  3171. "reference": "62116a9c8fb15faabb158ad9cb785c353c2572e5",
  3172. "shasum": ""
  3173. },
  3174. "require": {
  3175. "php": "^7.1.3",
  3176. "psr/log": "~1.0",
  3177. "symfony/error-handler": "^4.4",
  3178. "symfony/event-dispatcher": "^4.4",
  3179. "symfony/http-foundation": "^4.4|^5.0",
  3180. "symfony/polyfill-ctype": "^1.8",
  3181. "symfony/polyfill-php73": "^1.9"
  3182. },
  3183. "conflict": {
  3184. "symfony/browser-kit": "<4.3",
  3185. "symfony/config": "<3.4",
  3186. "symfony/console": ">=5",
  3187. "symfony/dependency-injection": "<4.3",
  3188. "symfony/translation": "<4.2",
  3189. "twig/twig": "<1.34|<2.4,>=2"
  3190. },
  3191. "provide": {
  3192. "psr/log-implementation": "1.0"
  3193. },
  3194. "require-dev": {
  3195. "psr/cache": "~1.0",
  3196. "symfony/browser-kit": "^4.3|^5.0",
  3197. "symfony/config": "^3.4|^4.0|^5.0",
  3198. "symfony/console": "^3.4|^4.0",
  3199. "symfony/css-selector": "^3.4|^4.0|^5.0",
  3200. "symfony/dependency-injection": "^4.3|^5.0",
  3201. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  3202. "symfony/expression-language": "^3.4|^4.0|^5.0",
  3203. "symfony/finder": "^3.4|^4.0|^5.0",
  3204. "symfony/process": "^3.4|^4.0|^5.0",
  3205. "symfony/routing": "^3.4|^4.0|^5.0",
  3206. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  3207. "symfony/templating": "^3.4|^4.0|^5.0",
  3208. "symfony/translation": "^4.2|^5.0",
  3209. "symfony/translation-contracts": "^1.1|^2",
  3210. "twig/twig": "^1.34|^2.4|^3.0"
  3211. },
  3212. "suggest": {
  3213. "symfony/browser-kit": "",
  3214. "symfony/config": "",
  3215. "symfony/console": "",
  3216. "symfony/dependency-injection": ""
  3217. },
  3218. "type": "library",
  3219. "extra": {
  3220. "branch-alias": {
  3221. "dev-master": "4.4-dev"
  3222. }
  3223. },
  3224. "autoload": {
  3225. "psr-4": {
  3226. "Symfony\\Component\\HttpKernel\\": ""
  3227. },
  3228. "exclude-from-classmap": [
  3229. "/Tests/"
  3230. ]
  3231. },
  3232. "notification-url": "https://packagist.org/downloads/",
  3233. "license": [
  3234. "MIT"
  3235. ],
  3236. "authors": [
  3237. {
  3238. "name": "Fabien Potencier",
  3239. "email": "fabien@symfony.com"
  3240. },
  3241. {
  3242. "name": "Symfony Community",
  3243. "homepage": "https://symfony.com/contributors"
  3244. }
  3245. ],
  3246. "description": "Symfony HttpKernel Component",
  3247. "homepage": "https://symfony.com",
  3248. "time": "2020-01-31T12:45:06+00:00"
  3249. },
  3250. {
  3251. "name": "symfony/mime",
  3252. "version": "v5.0.4",
  3253. "source": {
  3254. "type": "git",
  3255. "url": "https://github.com/symfony/mime.git",
  3256. "reference": "2a3c7fee1f1a0961fa9cf360d5da553d05095e59"
  3257. },
  3258. "dist": {
  3259. "type": "zip",
  3260. "url": "https://api.github.com/repos/symfony/mime/zipball/2a3c7fee1f1a0961fa9cf360d5da553d05095e59",
  3261. "reference": "2a3c7fee1f1a0961fa9cf360d5da553d05095e59",
  3262. "shasum": ""
  3263. },
  3264. "require": {
  3265. "php": "^7.2.5",
  3266. "symfony/polyfill-intl-idn": "^1.10",
  3267. "symfony/polyfill-mbstring": "^1.0"
  3268. },
  3269. "conflict": {
  3270. "symfony/mailer": "<4.4"
  3271. },
  3272. "require-dev": {
  3273. "egulias/email-validator": "^2.1.10",
  3274. "symfony/dependency-injection": "^4.4|^5.0"
  3275. },
  3276. "type": "library",
  3277. "extra": {
  3278. "branch-alias": {
  3279. "dev-master": "5.0-dev"
  3280. }
  3281. },
  3282. "autoload": {
  3283. "psr-4": {
  3284. "Symfony\\Component\\Mime\\": ""
  3285. },
  3286. "exclude-from-classmap": [
  3287. "/Tests/"
  3288. ]
  3289. },
  3290. "notification-url": "https://packagist.org/downloads/",
  3291. "license": [
  3292. "MIT"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "Fabien Potencier",
  3297. "email": "fabien@symfony.com"
  3298. },
  3299. {
  3300. "name": "Symfony Community",
  3301. "homepage": "https://symfony.com/contributors"
  3302. }
  3303. ],
  3304. "description": "A library to manipulate MIME messages",
  3305. "homepage": "https://symfony.com",
  3306. "keywords": [
  3307. "mime",
  3308. "mime-type"
  3309. ],
  3310. "time": "2020-01-04T14:08:26+00:00"
  3311. },
  3312. {
  3313. "name": "symfony/polyfill-ctype",
  3314. "version": "v1.13.1",
  3315. "source": {
  3316. "type": "git",
  3317. "url": "https://github.com/symfony/polyfill-ctype.git",
  3318. "reference": "f8f0b461be3385e56d6de3dbb5a0df24c0c275e3"
  3319. },
  3320. "dist": {
  3321. "type": "zip",
  3322. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f8f0b461be3385e56d6de3dbb5a0df24c0c275e3",
  3323. "reference": "f8f0b461be3385e56d6de3dbb5a0df24c0c275e3",
  3324. "shasum": ""
  3325. },
  3326. "require": {
  3327. "php": ">=5.3.3"
  3328. },
  3329. "suggest": {
  3330. "ext-ctype": "For best performance"
  3331. },
  3332. "type": "library",
  3333. "extra": {
  3334. "branch-alias": {
  3335. "dev-master": "1.13-dev"
  3336. }
  3337. },
  3338. "autoload": {
  3339. "psr-4": {
  3340. "Symfony\\Polyfill\\Ctype\\": ""
  3341. },
  3342. "files": [
  3343. "bootstrap.php"
  3344. ]
  3345. },
  3346. "notification-url": "https://packagist.org/downloads/",
  3347. "license": [
  3348. "MIT"
  3349. ],
  3350. "authors": [
  3351. {
  3352. "name": "Gert de Pagter",
  3353. "email": "BackEndTea@gmail.com"
  3354. },
  3355. {
  3356. "name": "Symfony Community",
  3357. "homepage": "https://symfony.com/contributors"
  3358. }
  3359. ],
  3360. "description": "Symfony polyfill for ctype functions",
  3361. "homepage": "https://symfony.com",
  3362. "keywords": [
  3363. "compatibility",
  3364. "ctype",
  3365. "polyfill",
  3366. "portable"
  3367. ],
  3368. "time": "2019-11-27T13:56:44+00:00"
  3369. },
  3370. {
  3371. "name": "symfony/polyfill-iconv",
  3372. "version": "v1.13.1",
  3373. "source": {
  3374. "type": "git",
  3375. "url": "https://github.com/symfony/polyfill-iconv.git",
  3376. "reference": "a019efccc03f1a335af6b4f20c30f5ea8060be36"
  3377. },
  3378. "dist": {
  3379. "type": "zip",
  3380. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/a019efccc03f1a335af6b4f20c30f5ea8060be36",
  3381. "reference": "a019efccc03f1a335af6b4f20c30f5ea8060be36",
  3382. "shasum": ""
  3383. },
  3384. "require": {
  3385. "php": ">=5.3.3"
  3386. },
  3387. "suggest": {
  3388. "ext-iconv": "For best performance"
  3389. },
  3390. "type": "library",
  3391. "extra": {
  3392. "branch-alias": {
  3393. "dev-master": "1.13-dev"
  3394. }
  3395. },
  3396. "autoload": {
  3397. "psr-4": {
  3398. "Symfony\\Polyfill\\Iconv\\": ""
  3399. },
  3400. "files": [
  3401. "bootstrap.php"
  3402. ]
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "MIT"
  3407. ],
  3408. "authors": [
  3409. {
  3410. "name": "Nicolas Grekas",
  3411. "email": "p@tchwork.com"
  3412. },
  3413. {
  3414. "name": "Symfony Community",
  3415. "homepage": "https://symfony.com/contributors"
  3416. }
  3417. ],
  3418. "description": "Symfony polyfill for the Iconv extension",
  3419. "homepage": "https://symfony.com",
  3420. "keywords": [
  3421. "compatibility",
  3422. "iconv",
  3423. "polyfill",
  3424. "portable",
  3425. "shim"
  3426. ],
  3427. "time": "2019-11-27T13:56:44+00:00"
  3428. },
  3429. {
  3430. "name": "symfony/polyfill-intl-idn",
  3431. "version": "v1.13.1",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3435. "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6f9c239e61e1b0c9229a28ff89a812dc449c3d46",
  3440. "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46",
  3441. "shasum": ""
  3442. },
  3443. "require": {
  3444. "php": ">=5.3.3",
  3445. "symfony/polyfill-mbstring": "^1.3",
  3446. "symfony/polyfill-php72": "^1.9"
  3447. },
  3448. "suggest": {
  3449. "ext-intl": "For best performance"
  3450. },
  3451. "type": "library",
  3452. "extra": {
  3453. "branch-alias": {
  3454. "dev-master": "1.13-dev"
  3455. }
  3456. },
  3457. "autoload": {
  3458. "psr-4": {
  3459. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3460. },
  3461. "files": [
  3462. "bootstrap.php"
  3463. ]
  3464. },
  3465. "notification-url": "https://packagist.org/downloads/",
  3466. "license": [
  3467. "MIT"
  3468. ],
  3469. "authors": [
  3470. {
  3471. "name": "Laurent Bassin",
  3472. "email": "laurent@bassin.info"
  3473. },
  3474. {
  3475. "name": "Symfony Community",
  3476. "homepage": "https://symfony.com/contributors"
  3477. }
  3478. ],
  3479. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3480. "homepage": "https://symfony.com",
  3481. "keywords": [
  3482. "compatibility",
  3483. "idn",
  3484. "intl",
  3485. "polyfill",
  3486. "portable",
  3487. "shim"
  3488. ],
  3489. "time": "2019-11-27T13:56:44+00:00"
  3490. },
  3491. {
  3492. "name": "symfony/polyfill-mbstring",
  3493. "version": "v1.13.1",
  3494. "source": {
  3495. "type": "git",
  3496. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3497. "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f"
  3498. },
  3499. "dist": {
  3500. "type": "zip",
  3501. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7b4aab9743c30be783b73de055d24a39cf4b954f",
  3502. "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f",
  3503. "shasum": ""
  3504. },
  3505. "require": {
  3506. "php": ">=5.3.3"
  3507. },
  3508. "suggest": {
  3509. "ext-mbstring": "For best performance"
  3510. },
  3511. "type": "library",
  3512. "extra": {
  3513. "branch-alias": {
  3514. "dev-master": "1.13-dev"
  3515. }
  3516. },
  3517. "autoload": {
  3518. "psr-4": {
  3519. "Symfony\\Polyfill\\Mbstring\\": ""
  3520. },
  3521. "files": [
  3522. "bootstrap.php"
  3523. ]
  3524. },
  3525. "notification-url": "https://packagist.org/downloads/",
  3526. "license": [
  3527. "MIT"
  3528. ],
  3529. "authors": [
  3530. {
  3531. "name": "Nicolas Grekas",
  3532. "email": "p@tchwork.com"
  3533. },
  3534. {
  3535. "name": "Symfony Community",
  3536. "homepage": "https://symfony.com/contributors"
  3537. }
  3538. ],
  3539. "description": "Symfony polyfill for the Mbstring extension",
  3540. "homepage": "https://symfony.com",
  3541. "keywords": [
  3542. "compatibility",
  3543. "mbstring",
  3544. "polyfill",
  3545. "portable",
  3546. "shim"
  3547. ],
  3548. "time": "2019-11-27T14:18:11+00:00"
  3549. },
  3550. {
  3551. "name": "symfony/polyfill-php72",
  3552. "version": "v1.13.1",
  3553. "source": {
  3554. "type": "git",
  3555. "url": "https://github.com/symfony/polyfill-php72.git",
  3556. "reference": "66fea50f6cb37a35eea048d75a7d99a45b586038"
  3557. },
  3558. "dist": {
  3559. "type": "zip",
  3560. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/66fea50f6cb37a35eea048d75a7d99a45b586038",
  3561. "reference": "66fea50f6cb37a35eea048d75a7d99a45b586038",
  3562. "shasum": ""
  3563. },
  3564. "require": {
  3565. "php": ">=5.3.3"
  3566. },
  3567. "type": "library",
  3568. "extra": {
  3569. "branch-alias": {
  3570. "dev-master": "1.13-dev"
  3571. }
  3572. },
  3573. "autoload": {
  3574. "psr-4": {
  3575. "Symfony\\Polyfill\\Php72\\": ""
  3576. },
  3577. "files": [
  3578. "bootstrap.php"
  3579. ]
  3580. },
  3581. "notification-url": "https://packagist.org/downloads/",
  3582. "license": [
  3583. "MIT"
  3584. ],
  3585. "authors": [
  3586. {
  3587. "name": "Nicolas Grekas",
  3588. "email": "p@tchwork.com"
  3589. },
  3590. {
  3591. "name": "Symfony Community",
  3592. "homepage": "https://symfony.com/contributors"
  3593. }
  3594. ],
  3595. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3596. "homepage": "https://symfony.com",
  3597. "keywords": [
  3598. "compatibility",
  3599. "polyfill",
  3600. "portable",
  3601. "shim"
  3602. ],
  3603. "time": "2019-11-27T13:56:44+00:00"
  3604. },
  3605. {
  3606. "name": "symfony/polyfill-php73",
  3607. "version": "v1.13.1",
  3608. "source": {
  3609. "type": "git",
  3610. "url": "https://github.com/symfony/polyfill-php73.git",
  3611. "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f"
  3612. },
  3613. "dist": {
  3614. "type": "zip",
  3615. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/4b0e2222c55a25b4541305a053013d5647d3a25f",
  3616. "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f",
  3617. "shasum": ""
  3618. },
  3619. "require": {
  3620. "php": ">=5.3.3"
  3621. },
  3622. "type": "library",
  3623. "extra": {
  3624. "branch-alias": {
  3625. "dev-master": "1.13-dev"
  3626. }
  3627. },
  3628. "autoload": {
  3629. "psr-4": {
  3630. "Symfony\\Polyfill\\Php73\\": ""
  3631. },
  3632. "files": [
  3633. "bootstrap.php"
  3634. ],
  3635. "classmap": [
  3636. "Resources/stubs"
  3637. ]
  3638. },
  3639. "notification-url": "https://packagist.org/downloads/",
  3640. "license": [
  3641. "MIT"
  3642. ],
  3643. "authors": [
  3644. {
  3645. "name": "Nicolas Grekas",
  3646. "email": "p@tchwork.com"
  3647. },
  3648. {
  3649. "name": "Symfony Community",
  3650. "homepage": "https://symfony.com/contributors"
  3651. }
  3652. ],
  3653. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3654. "homepage": "https://symfony.com",
  3655. "keywords": [
  3656. "compatibility",
  3657. "polyfill",
  3658. "portable",
  3659. "shim"
  3660. ],
  3661. "time": "2019-11-27T16:25:15+00:00"
  3662. },
  3663. {
  3664. "name": "symfony/process",
  3665. "version": "v4.4.4",
  3666. "source": {
  3667. "type": "git",
  3668. "url": "https://github.com/symfony/process.git",
  3669. "reference": "f5697ab4cb14a5deed7473819e63141bf5352c36"
  3670. },
  3671. "dist": {
  3672. "type": "zip",
  3673. "url": "https://api.github.com/repos/symfony/process/zipball/f5697ab4cb14a5deed7473819e63141bf5352c36",
  3674. "reference": "f5697ab4cb14a5deed7473819e63141bf5352c36",
  3675. "shasum": ""
  3676. },
  3677. "require": {
  3678. "php": "^7.1.3"
  3679. },
  3680. "type": "library",
  3681. "extra": {
  3682. "branch-alias": {
  3683. "dev-master": "4.4-dev"
  3684. }
  3685. },
  3686. "autoload": {
  3687. "psr-4": {
  3688. "Symfony\\Component\\Process\\": ""
  3689. },
  3690. "exclude-from-classmap": [
  3691. "/Tests/"
  3692. ]
  3693. },
  3694. "notification-url": "https://packagist.org/downloads/",
  3695. "license": [
  3696. "MIT"
  3697. ],
  3698. "authors": [
  3699. {
  3700. "name": "Fabien Potencier",
  3701. "email": "fabien@symfony.com"
  3702. },
  3703. {
  3704. "name": "Symfony Community",
  3705. "homepage": "https://symfony.com/contributors"
  3706. }
  3707. ],
  3708. "description": "Symfony Process Component",
  3709. "homepage": "https://symfony.com",
  3710. "time": "2020-01-09T09:50:08+00:00"
  3711. },
  3712. {
  3713. "name": "symfony/psr-http-message-bridge",
  3714. "version": "v1.3.0",
  3715. "source": {
  3716. "type": "git",
  3717. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3718. "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796"
  3719. },
  3720. "dist": {
  3721. "type": "zip",
  3722. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9d3e80d54d9ae747ad573cad796e8e247df7b796",
  3723. "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796",
  3724. "shasum": ""
  3725. },
  3726. "require": {
  3727. "php": "^7.1",
  3728. "psr/http-message": "^1.0",
  3729. "symfony/http-foundation": "^4.4 || ^5.0"
  3730. },
  3731. "require-dev": {
  3732. "nyholm/psr7": "^1.1",
  3733. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  3734. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  3735. },
  3736. "suggest": {
  3737. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  3738. },
  3739. "type": "symfony-bridge",
  3740. "extra": {
  3741. "branch-alias": {
  3742. "dev-master": "1.3-dev"
  3743. }
  3744. },
  3745. "autoload": {
  3746. "psr-4": {
  3747. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3748. },
  3749. "exclude-from-classmap": [
  3750. "/Tests/"
  3751. ]
  3752. },
  3753. "notification-url": "https://packagist.org/downloads/",
  3754. "license": [
  3755. "MIT"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "Fabien Potencier",
  3760. "email": "fabien@symfony.com"
  3761. },
  3762. {
  3763. "name": "Symfony Community",
  3764. "homepage": "http://symfony.com/contributors"
  3765. }
  3766. ],
  3767. "description": "PSR HTTP message bridge",
  3768. "homepage": "http://symfony.com",
  3769. "keywords": [
  3770. "http",
  3771. "http-message",
  3772. "psr-17",
  3773. "psr-7"
  3774. ],
  3775. "time": "2019-11-25T19:33:50+00:00"
  3776. },
  3777. {
  3778. "name": "symfony/routing",
  3779. "version": "v4.4.4",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://github.com/symfony/routing.git",
  3783. "reference": "7bf4e38573728e317b926ca4482ad30470d0e86a"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://api.github.com/repos/symfony/routing/zipball/7bf4e38573728e317b926ca4482ad30470d0e86a",
  3788. "reference": "7bf4e38573728e317b926ca4482ad30470d0e86a",
  3789. "shasum": ""
  3790. },
  3791. "require": {
  3792. "php": "^7.1.3"
  3793. },
  3794. "conflict": {
  3795. "symfony/config": "<4.2",
  3796. "symfony/dependency-injection": "<3.4",
  3797. "symfony/yaml": "<3.4"
  3798. },
  3799. "require-dev": {
  3800. "doctrine/annotations": "~1.2",
  3801. "psr/log": "~1.0",
  3802. "symfony/config": "^4.2|^5.0",
  3803. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3804. "symfony/expression-language": "^3.4|^4.0|^5.0",
  3805. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  3806. "symfony/yaml": "^3.4|^4.0|^5.0"
  3807. },
  3808. "suggest": {
  3809. "doctrine/annotations": "For using the annotation loader",
  3810. "symfony/config": "For using the all-in-one router or any loader",
  3811. "symfony/expression-language": "For using expression matching",
  3812. "symfony/http-foundation": "For using a Symfony Request object",
  3813. "symfony/yaml": "For using the YAML loader"
  3814. },
  3815. "type": "library",
  3816. "extra": {
  3817. "branch-alias": {
  3818. "dev-master": "4.4-dev"
  3819. }
  3820. },
  3821. "autoload": {
  3822. "psr-4": {
  3823. "Symfony\\Component\\Routing\\": ""
  3824. },
  3825. "exclude-from-classmap": [
  3826. "/Tests/"
  3827. ]
  3828. },
  3829. "notification-url": "https://packagist.org/downloads/",
  3830. "license": [
  3831. "MIT"
  3832. ],
  3833. "authors": [
  3834. {
  3835. "name": "Fabien Potencier",
  3836. "email": "fabien@symfony.com"
  3837. },
  3838. {
  3839. "name": "Symfony Community",
  3840. "homepage": "https://symfony.com/contributors"
  3841. }
  3842. ],
  3843. "description": "Symfony Routing Component",
  3844. "homepage": "https://symfony.com",
  3845. "keywords": [
  3846. "router",
  3847. "routing",
  3848. "uri",
  3849. "url"
  3850. ],
  3851. "time": "2020-01-08T17:29:02+00:00"
  3852. },
  3853. {
  3854. "name": "symfony/service-contracts",
  3855. "version": "v2.0.1",
  3856. "source": {
  3857. "type": "git",
  3858. "url": "https://github.com/symfony/service-contracts.git",
  3859. "reference": "144c5e51266b281231e947b51223ba14acf1a749"
  3860. },
  3861. "dist": {
  3862. "type": "zip",
  3863. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
  3864. "reference": "144c5e51266b281231e947b51223ba14acf1a749",
  3865. "shasum": ""
  3866. },
  3867. "require": {
  3868. "php": "^7.2.5",
  3869. "psr/container": "^1.0"
  3870. },
  3871. "suggest": {
  3872. "symfony/service-implementation": ""
  3873. },
  3874. "type": "library",
  3875. "extra": {
  3876. "branch-alias": {
  3877. "dev-master": "2.0-dev"
  3878. }
  3879. },
  3880. "autoload": {
  3881. "psr-4": {
  3882. "Symfony\\Contracts\\Service\\": ""
  3883. }
  3884. },
  3885. "notification-url": "https://packagist.org/downloads/",
  3886. "license": [
  3887. "MIT"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "Nicolas Grekas",
  3892. "email": "p@tchwork.com"
  3893. },
  3894. {
  3895. "name": "Symfony Community",
  3896. "homepage": "https://symfony.com/contributors"
  3897. }
  3898. ],
  3899. "description": "Generic abstractions related to writing services",
  3900. "homepage": "https://symfony.com",
  3901. "keywords": [
  3902. "abstractions",
  3903. "contracts",
  3904. "decoupling",
  3905. "interfaces",
  3906. "interoperability",
  3907. "standards"
  3908. ],
  3909. "time": "2019-11-18T17:27:11+00:00"
  3910. },
  3911. {
  3912. "name": "symfony/translation",
  3913. "version": "v4.4.4",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/symfony/translation.git",
  3917. "reference": "f5d2ac46930238b30a9c2f1b17c905f3697d808c"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/symfony/translation/zipball/f5d2ac46930238b30a9c2f1b17c905f3697d808c",
  3922. "reference": "f5d2ac46930238b30a9c2f1b17c905f3697d808c",
  3923. "shasum": ""
  3924. },
  3925. "require": {
  3926. "php": "^7.1.3",
  3927. "symfony/polyfill-mbstring": "~1.0",
  3928. "symfony/translation-contracts": "^1.1.6|^2"
  3929. },
  3930. "conflict": {
  3931. "symfony/config": "<3.4",
  3932. "symfony/dependency-injection": "<3.4",
  3933. "symfony/http-kernel": "<4.4",
  3934. "symfony/yaml": "<3.4"
  3935. },
  3936. "provide": {
  3937. "symfony/translation-implementation": "1.0"
  3938. },
  3939. "require-dev": {
  3940. "psr/log": "~1.0",
  3941. "symfony/config": "^3.4|^4.0|^5.0",
  3942. "symfony/console": "^3.4|^4.0|^5.0",
  3943. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3944. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  3945. "symfony/http-kernel": "^4.4",
  3946. "symfony/intl": "^3.4|^4.0|^5.0",
  3947. "symfony/service-contracts": "^1.1.2|^2",
  3948. "symfony/yaml": "^3.4|^4.0|^5.0"
  3949. },
  3950. "suggest": {
  3951. "psr/log-implementation": "To use logging capability in translator",
  3952. "symfony/config": "",
  3953. "symfony/yaml": ""
  3954. },
  3955. "type": "library",
  3956. "extra": {
  3957. "branch-alias": {
  3958. "dev-master": "4.4-dev"
  3959. }
  3960. },
  3961. "autoload": {
  3962. "psr-4": {
  3963. "Symfony\\Component\\Translation\\": ""
  3964. },
  3965. "exclude-from-classmap": [
  3966. "/Tests/"
  3967. ]
  3968. },
  3969. "notification-url": "https://packagist.org/downloads/",
  3970. "license": [
  3971. "MIT"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "Fabien Potencier",
  3976. "email": "fabien@symfony.com"
  3977. },
  3978. {
  3979. "name": "Symfony Community",
  3980. "homepage": "https://symfony.com/contributors"
  3981. }
  3982. ],
  3983. "description": "Symfony Translation Component",
  3984. "homepage": "https://symfony.com",
  3985. "time": "2020-01-15T13:29:06+00:00"
  3986. },
  3987. {
  3988. "name": "symfony/translation-contracts",
  3989. "version": "v2.0.1",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://github.com/symfony/translation-contracts.git",
  3993. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed"
  3994. },
  3995. "dist": {
  3996. "type": "zip",
  3997. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  3998. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  3999. "shasum": ""
  4000. },
  4001. "require": {
  4002. "php": "^7.2.5"
  4003. },
  4004. "suggest": {
  4005. "symfony/translation-implementation": ""
  4006. },
  4007. "type": "library",
  4008. "extra": {
  4009. "branch-alias": {
  4010. "dev-master": "2.0-dev"
  4011. }
  4012. },
  4013. "autoload": {
  4014. "psr-4": {
  4015. "Symfony\\Contracts\\Translation\\": ""
  4016. }
  4017. },
  4018. "notification-url": "https://packagist.org/downloads/",
  4019. "license": [
  4020. "MIT"
  4021. ],
  4022. "authors": [
  4023. {
  4024. "name": "Nicolas Grekas",
  4025. "email": "p@tchwork.com"
  4026. },
  4027. {
  4028. "name": "Symfony Community",
  4029. "homepage": "https://symfony.com/contributors"
  4030. }
  4031. ],
  4032. "description": "Generic abstractions related to translation",
  4033. "homepage": "https://symfony.com",
  4034. "keywords": [
  4035. "abstractions",
  4036. "contracts",
  4037. "decoupling",
  4038. "interfaces",
  4039. "interoperability",
  4040. "standards"
  4041. ],
  4042. "time": "2019-11-18T17:27:11+00:00"
  4043. },
  4044. {
  4045. "name": "symfony/var-dumper",
  4046. "version": "v4.4.4",
  4047. "source": {
  4048. "type": "git",
  4049. "url": "https://github.com/symfony/var-dumper.git",
  4050. "reference": "46b53fd714568af343953c039ff47b67ce8af8d6"
  4051. },
  4052. "dist": {
  4053. "type": "zip",
  4054. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/46b53fd714568af343953c039ff47b67ce8af8d6",
  4055. "reference": "46b53fd714568af343953c039ff47b67ce8af8d6",
  4056. "shasum": ""
  4057. },
  4058. "require": {
  4059. "php": "^7.1.3",
  4060. "symfony/polyfill-mbstring": "~1.0",
  4061. "symfony/polyfill-php72": "~1.5"
  4062. },
  4063. "conflict": {
  4064. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4065. "symfony/console": "<3.4"
  4066. },
  4067. "require-dev": {
  4068. "ext-iconv": "*",
  4069. "symfony/console": "^3.4|^4.0|^5.0",
  4070. "symfony/process": "^4.4|^5.0",
  4071. "twig/twig": "^1.34|^2.4|^3.0"
  4072. },
  4073. "suggest": {
  4074. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4075. "ext-intl": "To show region name in time zone dump",
  4076. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4077. },
  4078. "bin": [
  4079. "Resources/bin/var-dump-server"
  4080. ],
  4081. "type": "library",
  4082. "extra": {
  4083. "branch-alias": {
  4084. "dev-master": "4.4-dev"
  4085. }
  4086. },
  4087. "autoload": {
  4088. "files": [
  4089. "Resources/functions/dump.php"
  4090. ],
  4091. "psr-4": {
  4092. "Symfony\\Component\\VarDumper\\": ""
  4093. },
  4094. "exclude-from-classmap": [
  4095. "/Tests/"
  4096. ]
  4097. },
  4098. "notification-url": "https://packagist.org/downloads/",
  4099. "license": [
  4100. "MIT"
  4101. ],
  4102. "authors": [
  4103. {
  4104. "name": "Nicolas Grekas",
  4105. "email": "p@tchwork.com"
  4106. },
  4107. {
  4108. "name": "Symfony Community",
  4109. "homepage": "https://symfony.com/contributors"
  4110. }
  4111. ],
  4112. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4113. "homepage": "https://symfony.com",
  4114. "keywords": [
  4115. "debug",
  4116. "dump"
  4117. ],
  4118. "time": "2020-01-25T12:44:29+00:00"
  4119. },
  4120. {
  4121. "name": "tijsverkoyen/css-to-inline-styles",
  4122. "version": "2.2.2",
  4123. "source": {
  4124. "type": "git",
  4125. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4126. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15"
  4127. },
  4128. "dist": {
  4129. "type": "zip",
  4130. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  4131. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  4132. "shasum": ""
  4133. },
  4134. "require": {
  4135. "ext-dom": "*",
  4136. "ext-libxml": "*",
  4137. "php": "^5.5 || ^7.0",
  4138. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  4139. },
  4140. "require-dev": {
  4141. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4142. },
  4143. "type": "library",
  4144. "extra": {
  4145. "branch-alias": {
  4146. "dev-master": "2.2.x-dev"
  4147. }
  4148. },
  4149. "autoload": {
  4150. "psr-4": {
  4151. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4152. }
  4153. },
  4154. "notification-url": "https://packagist.org/downloads/",
  4155. "license": [
  4156. "BSD-3-Clause"
  4157. ],
  4158. "authors": [
  4159. {
  4160. "name": "Tijs Verkoyen",
  4161. "email": "css_to_inline_styles@verkoyen.eu",
  4162. "role": "Developer"
  4163. }
  4164. ],
  4165. "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.",
  4166. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4167. "time": "2019-10-24T08:53:34+00:00"
  4168. },
  4169. {
  4170. "name": "vlucas/phpdotenv",
  4171. "version": "v3.6.0",
  4172. "source": {
  4173. "type": "git",
  4174. "url": "https://github.com/vlucas/phpdotenv.git",
  4175. "reference": "1bdf24f065975594f6a117f0f1f6cabf1333b156"
  4176. },
  4177. "dist": {
  4178. "type": "zip",
  4179. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1bdf24f065975594f6a117f0f1f6cabf1333b156",
  4180. "reference": "1bdf24f065975594f6a117f0f1f6cabf1333b156",
  4181. "shasum": ""
  4182. },
  4183. "require": {
  4184. "php": "^5.4 || ^7.0",
  4185. "phpoption/phpoption": "^1.5",
  4186. "symfony/polyfill-ctype": "^1.9"
  4187. },
  4188. "require-dev": {
  4189. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  4190. },
  4191. "type": "library",
  4192. "extra": {
  4193. "branch-alias": {
  4194. "dev-master": "3.6-dev"
  4195. }
  4196. },
  4197. "autoload": {
  4198. "psr-4": {
  4199. "Dotenv\\": "src/"
  4200. }
  4201. },
  4202. "notification-url": "https://packagist.org/downloads/",
  4203. "license": [
  4204. "BSD-3-Clause"
  4205. ],
  4206. "authors": [
  4207. {
  4208. "name": "Graham Campbell",
  4209. "email": "graham@alt-three.com",
  4210. "homepage": "https://gjcampbell.co.uk/"
  4211. },
  4212. {
  4213. "name": "Vance Lucas",
  4214. "email": "vance@vancelucas.com",
  4215. "homepage": "https://vancelucas.com/"
  4216. }
  4217. ],
  4218. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4219. "keywords": [
  4220. "dotenv",
  4221. "env",
  4222. "environment"
  4223. ],
  4224. "time": "2019-09-10T21:37:39+00:00"
  4225. }
  4226. ],
  4227. "packages-dev": [
  4228. {
  4229. "name": "doctrine/instantiator",
  4230. "version": "1.3.0",
  4231. "source": {
  4232. "type": "git",
  4233. "url": "https://github.com/doctrine/instantiator.git",
  4234. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  4235. },
  4236. "dist": {
  4237. "type": "zip",
  4238. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  4239. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  4240. "shasum": ""
  4241. },
  4242. "require": {
  4243. "php": "^7.1"
  4244. },
  4245. "require-dev": {
  4246. "doctrine/coding-standard": "^6.0",
  4247. "ext-pdo": "*",
  4248. "ext-phar": "*",
  4249. "phpbench/phpbench": "^0.13",
  4250. "phpstan/phpstan-phpunit": "^0.11",
  4251. "phpstan/phpstan-shim": "^0.11",
  4252. "phpunit/phpunit": "^7.0"
  4253. },
  4254. "type": "library",
  4255. "extra": {
  4256. "branch-alias": {
  4257. "dev-master": "1.2.x-dev"
  4258. }
  4259. },
  4260. "autoload": {
  4261. "psr-4": {
  4262. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4263. }
  4264. },
  4265. "notification-url": "https://packagist.org/downloads/",
  4266. "license": [
  4267. "MIT"
  4268. ],
  4269. "authors": [
  4270. {
  4271. "name": "Marco Pivetta",
  4272. "email": "ocramius@gmail.com",
  4273. "homepage": "http://ocramius.github.com/"
  4274. }
  4275. ],
  4276. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4277. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  4278. "keywords": [
  4279. "constructor",
  4280. "instantiate"
  4281. ],
  4282. "time": "2019-10-21T16:45:58+00:00"
  4283. },
  4284. {
  4285. "name": "facade/flare-client-php",
  4286. "version": "1.3.1",
  4287. "source": {
  4288. "type": "git",
  4289. "url": "https://github.com/facade/flare-client-php.git",
  4290. "reference": "24444ea0e1556f0a4b5fc8e61802caf72ae9a408"
  4291. },
  4292. "dist": {
  4293. "type": "zip",
  4294. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/24444ea0e1556f0a4b5fc8e61802caf72ae9a408",
  4295. "reference": "24444ea0e1556f0a4b5fc8e61802caf72ae9a408",
  4296. "shasum": ""
  4297. },
  4298. "require": {
  4299. "facade/ignition-contracts": "~1.0",
  4300. "illuminate/pipeline": "~5.5|~5.6|~5.7|~5.8|^6.0",
  4301. "php": "^7.1",
  4302. "symfony/http-foundation": "~3.3|~4.1",
  4303. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  4304. },
  4305. "require-dev": {
  4306. "larapack/dd": "^1.1",
  4307. "phpunit/phpunit": "^7.5.16",
  4308. "spatie/phpunit-snapshot-assertions": "^2.0"
  4309. },
  4310. "type": "library",
  4311. "extra": {
  4312. "branch-alias": {
  4313. "dev-master": "1.0-dev"
  4314. }
  4315. },
  4316. "autoload": {
  4317. "psr-4": {
  4318. "Facade\\FlareClient\\": "src"
  4319. },
  4320. "files": [
  4321. "src/helpers.php"
  4322. ]
  4323. },
  4324. "notification-url": "https://packagist.org/downloads/",
  4325. "license": [
  4326. "MIT"
  4327. ],
  4328. "description": "Send PHP errors to Flare",
  4329. "homepage": "https://github.com/facade/flare-client-php",
  4330. "keywords": [
  4331. "exception",
  4332. "facade",
  4333. "flare",
  4334. "reporting"
  4335. ],
  4336. "time": "2019-12-15T18:28:38+00:00"
  4337. },
  4338. {
  4339. "name": "facade/ignition",
  4340. "version": "1.16.0",
  4341. "source": {
  4342. "type": "git",
  4343. "url": "https://github.com/facade/ignition.git",
  4344. "reference": "37f094775814b68d0c6cc8b8ff3c3be243f20725"
  4345. },
  4346. "dist": {
  4347. "type": "zip",
  4348. "url": "https://api.github.com/repos/facade/ignition/zipball/37f094775814b68d0c6cc8b8ff3c3be243f20725",
  4349. "reference": "37f094775814b68d0c6cc8b8ff3c3be243f20725",
  4350. "shasum": ""
  4351. },
  4352. "require": {
  4353. "ext-json": "*",
  4354. "ext-mbstring": "*",
  4355. "facade/flare-client-php": "^1.3",
  4356. "facade/ignition-contracts": "^1.0",
  4357. "filp/whoops": "^2.4",
  4358. "illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0",
  4359. "monolog/monolog": "^1.12 || ^2.0",
  4360. "php": "^7.1",
  4361. "scrivo/highlight.php": "^9.15",
  4362. "symfony/console": "^3.4 || ^4.0",
  4363. "symfony/var-dumper": "^3.4 || ^4.0"
  4364. },
  4365. "require-dev": {
  4366. "friendsofphp/php-cs-fixer": "^2.14",
  4367. "mockery/mockery": "^1.2",
  4368. "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0"
  4369. },
  4370. "suggest": {
  4371. "laravel/telescope": "^2.0"
  4372. },
  4373. "type": "library",
  4374. "extra": {
  4375. "branch-alias": {
  4376. "dev-master": "v2.x-dev"
  4377. },
  4378. "laravel": {
  4379. "providers": [
  4380. "Facade\\Ignition\\IgnitionServiceProvider"
  4381. ],
  4382. "aliases": {
  4383. "Flare": "Facade\\Ignition\\Facades\\Flare"
  4384. }
  4385. }
  4386. },
  4387. "autoload": {
  4388. "psr-4": {
  4389. "Facade\\Ignition\\": "src"
  4390. },
  4391. "files": [
  4392. "src/helpers.php"
  4393. ]
  4394. },
  4395. "notification-url": "https://packagist.org/downloads/",
  4396. "license": [
  4397. "MIT"
  4398. ],
  4399. "description": "A beautiful error page for Laravel applications.",
  4400. "homepage": "https://github.com/facade/ignition",
  4401. "keywords": [
  4402. "error",
  4403. "flare",
  4404. "laravel",
  4405. "page"
  4406. ],
  4407. "time": "2020-01-21T17:46:02+00:00"
  4408. },
  4409. {
  4410. "name": "filp/whoops",
  4411. "version": "2.7.1",
  4412. "source": {
  4413. "type": "git",
  4414. "url": "https://github.com/filp/whoops.git",
  4415. "reference": "fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130"
  4416. },
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://api.github.com/repos/filp/whoops/zipball/fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130",
  4420. "reference": "fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130",
  4421. "shasum": ""
  4422. },
  4423. "require": {
  4424. "php": "^5.5.9 || ^7.0",
  4425. "psr/log": "^1.0.1"
  4426. },
  4427. "require-dev": {
  4428. "mockery/mockery": "^0.9 || ^1.0",
  4429. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  4430. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  4431. },
  4432. "suggest": {
  4433. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4434. "whoops/soap": "Formats errors as SOAP responses"
  4435. },
  4436. "type": "library",
  4437. "extra": {
  4438. "branch-alias": {
  4439. "dev-master": "2.6-dev"
  4440. }
  4441. },
  4442. "autoload": {
  4443. "psr-4": {
  4444. "Whoops\\": "src/Whoops/"
  4445. }
  4446. },
  4447. "notification-url": "https://packagist.org/downloads/",
  4448. "license": [
  4449. "MIT"
  4450. ],
  4451. "authors": [
  4452. {
  4453. "name": "Filipe Dobreira",
  4454. "homepage": "https://github.com/filp",
  4455. "role": "Developer"
  4456. }
  4457. ],
  4458. "description": "php error handling for cool kids",
  4459. "homepage": "https://filp.github.io/whoops/",
  4460. "keywords": [
  4461. "error",
  4462. "exception",
  4463. "handling",
  4464. "library",
  4465. "throwable",
  4466. "whoops"
  4467. ],
  4468. "time": "2020-01-15T10:00:00+00:00"
  4469. },
  4470. {
  4471. "name": "fzaninotto/faker",
  4472. "version": "v1.9.1",
  4473. "source": {
  4474. "type": "git",
  4475. "url": "https://github.com/fzaninotto/Faker.git",
  4476. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  4477. },
  4478. "dist": {
  4479. "type": "zip",
  4480. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  4481. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  4482. "shasum": ""
  4483. },
  4484. "require": {
  4485. "php": "^5.3.3 || ^7.0"
  4486. },
  4487. "require-dev": {
  4488. "ext-intl": "*",
  4489. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4490. "squizlabs/php_codesniffer": "^2.9.2"
  4491. },
  4492. "type": "library",
  4493. "extra": {
  4494. "branch-alias": {
  4495. "dev-master": "1.9-dev"
  4496. }
  4497. },
  4498. "autoload": {
  4499. "psr-4": {
  4500. "Faker\\": "src/Faker/"
  4501. }
  4502. },
  4503. "notification-url": "https://packagist.org/downloads/",
  4504. "license": [
  4505. "MIT"
  4506. ],
  4507. "authors": [
  4508. {
  4509. "name": "François Zaninotto"
  4510. }
  4511. ],
  4512. "description": "Faker is a PHP library that generates fake data for you.",
  4513. "keywords": [
  4514. "data",
  4515. "faker",
  4516. "fixtures"
  4517. ],
  4518. "time": "2019-12-12T13:22:17+00:00"
  4519. },
  4520. {
  4521. "name": "hamcrest/hamcrest-php",
  4522. "version": "v2.0.0",
  4523. "source": {
  4524. "type": "git",
  4525. "url": "https://github.com/hamcrest/hamcrest-php.git",
  4526. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  4527. },
  4528. "dist": {
  4529. "type": "zip",
  4530. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4531. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4532. "shasum": ""
  4533. },
  4534. "require": {
  4535. "php": "^5.3|^7.0"
  4536. },
  4537. "replace": {
  4538. "cordoval/hamcrest-php": "*",
  4539. "davedevelopment/hamcrest-php": "*",
  4540. "kodova/hamcrest-php": "*"
  4541. },
  4542. "require-dev": {
  4543. "phpunit/php-file-iterator": "1.3.3",
  4544. "phpunit/phpunit": "~4.0",
  4545. "satooshi/php-coveralls": "^1.0"
  4546. },
  4547. "type": "library",
  4548. "extra": {
  4549. "branch-alias": {
  4550. "dev-master": "2.0-dev"
  4551. }
  4552. },
  4553. "autoload": {
  4554. "classmap": [
  4555. "hamcrest"
  4556. ]
  4557. },
  4558. "notification-url": "https://packagist.org/downloads/",
  4559. "license": [
  4560. "BSD"
  4561. ],
  4562. "description": "This is the PHP port of Hamcrest Matchers",
  4563. "keywords": [
  4564. "test"
  4565. ],
  4566. "time": "2016-01-20T08:20:44+00:00"
  4567. },
  4568. {
  4569. "name": "laravel/ui",
  4570. "version": "v1.1.2",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://github.com/laravel/ui.git",
  4574. "reference": "0287d4eee80aad718bdf7f90117cfe720c493064"
  4575. },
  4576. "dist": {
  4577. "type": "zip",
  4578. "url": "https://api.github.com/repos/laravel/ui/zipball/0287d4eee80aad718bdf7f90117cfe720c493064",
  4579. "reference": "0287d4eee80aad718bdf7f90117cfe720c493064",
  4580. "shasum": ""
  4581. },
  4582. "require": {
  4583. "illuminate/console": "~5.8|^6.0",
  4584. "illuminate/filesystem": "~5.8|^6.0",
  4585. "illuminate/support": "~5.8|^6.0",
  4586. "php": "^7.1.3"
  4587. },
  4588. "require-dev": {
  4589. "mockery/mockery": "^1.0",
  4590. "phpunit/phpunit": "^8.0"
  4591. },
  4592. "type": "library",
  4593. "extra": {
  4594. "branch-alias": {
  4595. "dev-master": "2.x-dev"
  4596. },
  4597. "laravel": {
  4598. "providers": [
  4599. "Laravel\\Ui\\UiServiceProvider"
  4600. ]
  4601. }
  4602. },
  4603. "autoload": {
  4604. "psr-4": {
  4605. "Laravel\\Ui\\": "src/"
  4606. }
  4607. },
  4608. "notification-url": "https://packagist.org/downloads/",
  4609. "license": [
  4610. "MIT"
  4611. ],
  4612. "authors": [
  4613. {
  4614. "name": "Taylor Otwell",
  4615. "email": "taylor@laravel.com"
  4616. }
  4617. ],
  4618. "description": "Laravel UI utilities and presets.",
  4619. "keywords": [
  4620. "laravel",
  4621. "ui"
  4622. ],
  4623. "time": "2019-12-20T15:09:01+00:00"
  4624. },
  4625. {
  4626. "name": "mockery/mockery",
  4627. "version": "1.3.1",
  4628. "source": {
  4629. "type": "git",
  4630. "url": "https://github.com/mockery/mockery.git",
  4631. "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be"
  4632. },
  4633. "dist": {
  4634. "type": "zip",
  4635. "url": "https://api.github.com/repos/mockery/mockery/zipball/f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
  4636. "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
  4637. "shasum": ""
  4638. },
  4639. "require": {
  4640. "hamcrest/hamcrest-php": "~2.0",
  4641. "lib-pcre": ">=7.0",
  4642. "php": ">=5.6.0"
  4643. },
  4644. "require-dev": {
  4645. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  4646. },
  4647. "type": "library",
  4648. "extra": {
  4649. "branch-alias": {
  4650. "dev-master": "1.3.x-dev"
  4651. }
  4652. },
  4653. "autoload": {
  4654. "psr-0": {
  4655. "Mockery": "library/"
  4656. }
  4657. },
  4658. "notification-url": "https://packagist.org/downloads/",
  4659. "license": [
  4660. "BSD-3-Clause"
  4661. ],
  4662. "authors": [
  4663. {
  4664. "name": "Pádraic Brady",
  4665. "email": "padraic.brady@gmail.com",
  4666. "homepage": "http://blog.astrumfutura.com"
  4667. },
  4668. {
  4669. "name": "Dave Marshall",
  4670. "email": "dave.marshall@atstsolutions.co.uk",
  4671. "homepage": "http://davedevelopment.co.uk"
  4672. }
  4673. ],
  4674. "description": "Mockery is a simple yet flexible PHP mock object framework",
  4675. "homepage": "https://github.com/mockery/mockery",
  4676. "keywords": [
  4677. "BDD",
  4678. "TDD",
  4679. "library",
  4680. "mock",
  4681. "mock objects",
  4682. "mockery",
  4683. "stub",
  4684. "test",
  4685. "test double",
  4686. "testing"
  4687. ],
  4688. "time": "2019-12-26T09:49:15+00:00"
  4689. },
  4690. {
  4691. "name": "myclabs/deep-copy",
  4692. "version": "1.9.5",
  4693. "source": {
  4694. "type": "git",
  4695. "url": "https://github.com/myclabs/DeepCopy.git",
  4696. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  4697. },
  4698. "dist": {
  4699. "type": "zip",
  4700. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  4701. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  4702. "shasum": ""
  4703. },
  4704. "require": {
  4705. "php": "^7.1"
  4706. },
  4707. "replace": {
  4708. "myclabs/deep-copy": "self.version"
  4709. },
  4710. "require-dev": {
  4711. "doctrine/collections": "^1.0",
  4712. "doctrine/common": "^2.6",
  4713. "phpunit/phpunit": "^7.1"
  4714. },
  4715. "type": "library",
  4716. "autoload": {
  4717. "psr-4": {
  4718. "DeepCopy\\": "src/DeepCopy/"
  4719. },
  4720. "files": [
  4721. "src/DeepCopy/deep_copy.php"
  4722. ]
  4723. },
  4724. "notification-url": "https://packagist.org/downloads/",
  4725. "license": [
  4726. "MIT"
  4727. ],
  4728. "description": "Create deep copies (clones) of your objects",
  4729. "keywords": [
  4730. "clone",
  4731. "copy",
  4732. "duplicate",
  4733. "object",
  4734. "object graph"
  4735. ],
  4736. "time": "2020-01-17T21:11:47+00:00"
  4737. },
  4738. {
  4739. "name": "nunomaduro/collision",
  4740. "version": "v3.0.1",
  4741. "source": {
  4742. "type": "git",
  4743. "url": "https://github.com/nunomaduro/collision.git",
  4744. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68"
  4745. },
  4746. "dist": {
  4747. "type": "zip",
  4748. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  4749. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  4750. "shasum": ""
  4751. },
  4752. "require": {
  4753. "filp/whoops": "^2.1.4",
  4754. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  4755. "php": "^7.1",
  4756. "symfony/console": "~2.8|~3.3|~4.0"
  4757. },
  4758. "require-dev": {
  4759. "laravel/framework": "5.8.*",
  4760. "nunomaduro/larastan": "^0.3.0",
  4761. "phpstan/phpstan": "^0.11",
  4762. "phpunit/phpunit": "~8.0"
  4763. },
  4764. "type": "library",
  4765. "extra": {
  4766. "laravel": {
  4767. "providers": [
  4768. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  4769. ]
  4770. }
  4771. },
  4772. "autoload": {
  4773. "psr-4": {
  4774. "NunoMaduro\\Collision\\": "src/"
  4775. }
  4776. },
  4777. "notification-url": "https://packagist.org/downloads/",
  4778. "license": [
  4779. "MIT"
  4780. ],
  4781. "authors": [
  4782. {
  4783. "name": "Nuno Maduro",
  4784. "email": "enunomaduro@gmail.com"
  4785. }
  4786. ],
  4787. "description": "Cli error handling for console/command-line PHP applications.",
  4788. "keywords": [
  4789. "artisan",
  4790. "cli",
  4791. "command-line",
  4792. "console",
  4793. "error",
  4794. "handling",
  4795. "laravel",
  4796. "laravel-zero",
  4797. "php",
  4798. "symfony"
  4799. ],
  4800. "time": "2019-03-07T21:35:13+00:00"
  4801. },
  4802. {
  4803. "name": "phar-io/manifest",
  4804. "version": "1.0.3",
  4805. "source": {
  4806. "type": "git",
  4807. "url": "https://github.com/phar-io/manifest.git",
  4808. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  4809. },
  4810. "dist": {
  4811. "type": "zip",
  4812. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  4813. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  4814. "shasum": ""
  4815. },
  4816. "require": {
  4817. "ext-dom": "*",
  4818. "ext-phar": "*",
  4819. "phar-io/version": "^2.0",
  4820. "php": "^5.6 || ^7.0"
  4821. },
  4822. "type": "library",
  4823. "extra": {
  4824. "branch-alias": {
  4825. "dev-master": "1.0.x-dev"
  4826. }
  4827. },
  4828. "autoload": {
  4829. "classmap": [
  4830. "src/"
  4831. ]
  4832. },
  4833. "notification-url": "https://packagist.org/downloads/",
  4834. "license": [
  4835. "BSD-3-Clause"
  4836. ],
  4837. "authors": [
  4838. {
  4839. "name": "Arne Blankerts",
  4840. "email": "arne@blankerts.de",
  4841. "role": "Developer"
  4842. },
  4843. {
  4844. "name": "Sebastian Heuer",
  4845. "email": "sebastian@phpeople.de",
  4846. "role": "Developer"
  4847. },
  4848. {
  4849. "name": "Sebastian Bergmann",
  4850. "email": "sebastian@phpunit.de",
  4851. "role": "Developer"
  4852. }
  4853. ],
  4854. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4855. "time": "2018-07-08T19:23:20+00:00"
  4856. },
  4857. {
  4858. "name": "phar-io/version",
  4859. "version": "2.0.1",
  4860. "source": {
  4861. "type": "git",
  4862. "url": "https://github.com/phar-io/version.git",
  4863. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  4864. },
  4865. "dist": {
  4866. "type": "zip",
  4867. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4868. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4869. "shasum": ""
  4870. },
  4871. "require": {
  4872. "php": "^5.6 || ^7.0"
  4873. },
  4874. "type": "library",
  4875. "autoload": {
  4876. "classmap": [
  4877. "src/"
  4878. ]
  4879. },
  4880. "notification-url": "https://packagist.org/downloads/",
  4881. "license": [
  4882. "BSD-3-Clause"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "Arne Blankerts",
  4887. "email": "arne@blankerts.de",
  4888. "role": "Developer"
  4889. },
  4890. {
  4891. "name": "Sebastian Heuer",
  4892. "email": "sebastian@phpeople.de",
  4893. "role": "Developer"
  4894. },
  4895. {
  4896. "name": "Sebastian Bergmann",
  4897. "email": "sebastian@phpunit.de",
  4898. "role": "Developer"
  4899. }
  4900. ],
  4901. "description": "Library for handling version information and constraints",
  4902. "time": "2018-07-08T19:19:57+00:00"
  4903. },
  4904. {
  4905. "name": "phpdocumentor/reflection-common",
  4906. "version": "2.0.0",
  4907. "source": {
  4908. "type": "git",
  4909. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4910. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  4911. },
  4912. "dist": {
  4913. "type": "zip",
  4914. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  4915. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  4916. "shasum": ""
  4917. },
  4918. "require": {
  4919. "php": ">=7.1"
  4920. },
  4921. "require-dev": {
  4922. "phpunit/phpunit": "~6"
  4923. },
  4924. "type": "library",
  4925. "extra": {
  4926. "branch-alias": {
  4927. "dev-master": "2.x-dev"
  4928. }
  4929. },
  4930. "autoload": {
  4931. "psr-4": {
  4932. "phpDocumentor\\Reflection\\": "src/"
  4933. }
  4934. },
  4935. "notification-url": "https://packagist.org/downloads/",
  4936. "license": [
  4937. "MIT"
  4938. ],
  4939. "authors": [
  4940. {
  4941. "name": "Jaap van Otterdijk",
  4942. "email": "opensource@ijaap.nl"
  4943. }
  4944. ],
  4945. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4946. "homepage": "http://www.phpdoc.org",
  4947. "keywords": [
  4948. "FQSEN",
  4949. "phpDocumentor",
  4950. "phpdoc",
  4951. "reflection",
  4952. "static analysis"
  4953. ],
  4954. "time": "2018-08-07T13:53:10+00:00"
  4955. },
  4956. {
  4957. "name": "phpdocumentor/reflection-docblock",
  4958. "version": "4.3.4",
  4959. "source": {
  4960. "type": "git",
  4961. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4962. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  4963. },
  4964. "dist": {
  4965. "type": "zip",
  4966. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4967. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4968. "shasum": ""
  4969. },
  4970. "require": {
  4971. "php": "^7.0",
  4972. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  4973. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  4974. "webmozart/assert": "^1.0"
  4975. },
  4976. "require-dev": {
  4977. "doctrine/instantiator": "^1.0.5",
  4978. "mockery/mockery": "^1.0",
  4979. "phpdocumentor/type-resolver": "0.4.*",
  4980. "phpunit/phpunit": "^6.4"
  4981. },
  4982. "type": "library",
  4983. "extra": {
  4984. "branch-alias": {
  4985. "dev-master": "4.x-dev"
  4986. }
  4987. },
  4988. "autoload": {
  4989. "psr-4": {
  4990. "phpDocumentor\\Reflection\\": [
  4991. "src/"
  4992. ]
  4993. }
  4994. },
  4995. "notification-url": "https://packagist.org/downloads/",
  4996. "license": [
  4997. "MIT"
  4998. ],
  4999. "authors": [
  5000. {
  5001. "name": "Mike van Riel",
  5002. "email": "me@mikevanriel.com"
  5003. }
  5004. ],
  5005. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5006. "time": "2019-12-28T18:55:12+00:00"
  5007. },
  5008. {
  5009. "name": "phpdocumentor/type-resolver",
  5010. "version": "1.0.1",
  5011. "source": {
  5012. "type": "git",
  5013. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5014. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  5015. },
  5016. "dist": {
  5017. "type": "zip",
  5018. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  5019. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  5020. "shasum": ""
  5021. },
  5022. "require": {
  5023. "php": "^7.1",
  5024. "phpdocumentor/reflection-common": "^2.0"
  5025. },
  5026. "require-dev": {
  5027. "ext-tokenizer": "^7.1",
  5028. "mockery/mockery": "~1",
  5029. "phpunit/phpunit": "^7.0"
  5030. },
  5031. "type": "library",
  5032. "extra": {
  5033. "branch-alias": {
  5034. "dev-master": "1.x-dev"
  5035. }
  5036. },
  5037. "autoload": {
  5038. "psr-4": {
  5039. "phpDocumentor\\Reflection\\": "src"
  5040. }
  5041. },
  5042. "notification-url": "https://packagist.org/downloads/",
  5043. "license": [
  5044. "MIT"
  5045. ],
  5046. "authors": [
  5047. {
  5048. "name": "Mike van Riel",
  5049. "email": "me@mikevanriel.com"
  5050. }
  5051. ],
  5052. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5053. "time": "2019-08-22T18:11:29+00:00"
  5054. },
  5055. {
  5056. "name": "phpspec/prophecy",
  5057. "version": "v1.10.2",
  5058. "source": {
  5059. "type": "git",
  5060. "url": "https://github.com/phpspec/prophecy.git",
  5061. "reference": "b4400efc9d206e83138e2bb97ed7f5b14b831cd9"
  5062. },
  5063. "dist": {
  5064. "type": "zip",
  5065. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b4400efc9d206e83138e2bb97ed7f5b14b831cd9",
  5066. "reference": "b4400efc9d206e83138e2bb97ed7f5b14b831cd9",
  5067. "shasum": ""
  5068. },
  5069. "require": {
  5070. "doctrine/instantiator": "^1.0.2",
  5071. "php": "^5.3|^7.0",
  5072. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  5073. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  5074. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  5075. },
  5076. "require-dev": {
  5077. "phpspec/phpspec": "^2.5 || ^3.2",
  5078. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  5079. },
  5080. "type": "library",
  5081. "extra": {
  5082. "branch-alias": {
  5083. "dev-master": "1.10.x-dev"
  5084. }
  5085. },
  5086. "autoload": {
  5087. "psr-4": {
  5088. "Prophecy\\": "src/Prophecy"
  5089. }
  5090. },
  5091. "notification-url": "https://packagist.org/downloads/",
  5092. "license": [
  5093. "MIT"
  5094. ],
  5095. "authors": [
  5096. {
  5097. "name": "Konstantin Kudryashov",
  5098. "email": "ever.zet@gmail.com",
  5099. "homepage": "http://everzet.com"
  5100. },
  5101. {
  5102. "name": "Marcello Duarte",
  5103. "email": "marcello.duarte@gmail.com"
  5104. }
  5105. ],
  5106. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5107. "homepage": "https://github.com/phpspec/prophecy",
  5108. "keywords": [
  5109. "Double",
  5110. "Dummy",
  5111. "fake",
  5112. "mock",
  5113. "spy",
  5114. "stub"
  5115. ],
  5116. "time": "2020-01-20T15:57:02+00:00"
  5117. },
  5118. {
  5119. "name": "phpunit/php-code-coverage",
  5120. "version": "7.0.10",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5124. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  5125. },
  5126. "dist": {
  5127. "type": "zip",
  5128. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  5129. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  5130. "shasum": ""
  5131. },
  5132. "require": {
  5133. "ext-dom": "*",
  5134. "ext-xmlwriter": "*",
  5135. "php": "^7.2",
  5136. "phpunit/php-file-iterator": "^2.0.2",
  5137. "phpunit/php-text-template": "^1.2.1",
  5138. "phpunit/php-token-stream": "^3.1.1",
  5139. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5140. "sebastian/environment": "^4.2.2",
  5141. "sebastian/version": "^2.0.1",
  5142. "theseer/tokenizer": "^1.1.3"
  5143. },
  5144. "require-dev": {
  5145. "phpunit/phpunit": "^8.2.2"
  5146. },
  5147. "suggest": {
  5148. "ext-xdebug": "^2.7.2"
  5149. },
  5150. "type": "library",
  5151. "extra": {
  5152. "branch-alias": {
  5153. "dev-master": "7.0-dev"
  5154. }
  5155. },
  5156. "autoload": {
  5157. "classmap": [
  5158. "src/"
  5159. ]
  5160. },
  5161. "notification-url": "https://packagist.org/downloads/",
  5162. "license": [
  5163. "BSD-3-Clause"
  5164. ],
  5165. "authors": [
  5166. {
  5167. "name": "Sebastian Bergmann",
  5168. "email": "sebastian@phpunit.de",
  5169. "role": "lead"
  5170. }
  5171. ],
  5172. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5173. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5174. "keywords": [
  5175. "coverage",
  5176. "testing",
  5177. "xunit"
  5178. ],
  5179. "time": "2019-11-20T13:55:58+00:00"
  5180. },
  5181. {
  5182. "name": "phpunit/php-file-iterator",
  5183. "version": "2.0.2",
  5184. "source": {
  5185. "type": "git",
  5186. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5187. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  5188. },
  5189. "dist": {
  5190. "type": "zip",
  5191. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  5192. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  5193. "shasum": ""
  5194. },
  5195. "require": {
  5196. "php": "^7.1"
  5197. },
  5198. "require-dev": {
  5199. "phpunit/phpunit": "^7.1"
  5200. },
  5201. "type": "library",
  5202. "extra": {
  5203. "branch-alias": {
  5204. "dev-master": "2.0.x-dev"
  5205. }
  5206. },
  5207. "autoload": {
  5208. "classmap": [
  5209. "src/"
  5210. ]
  5211. },
  5212. "notification-url": "https://packagist.org/downloads/",
  5213. "license": [
  5214. "BSD-3-Clause"
  5215. ],
  5216. "authors": [
  5217. {
  5218. "name": "Sebastian Bergmann",
  5219. "email": "sebastian@phpunit.de",
  5220. "role": "lead"
  5221. }
  5222. ],
  5223. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5224. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5225. "keywords": [
  5226. "filesystem",
  5227. "iterator"
  5228. ],
  5229. "time": "2018-09-13T20:33:42+00:00"
  5230. },
  5231. {
  5232. "name": "phpunit/php-text-template",
  5233. "version": "1.2.1",
  5234. "source": {
  5235. "type": "git",
  5236. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5237. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5238. },
  5239. "dist": {
  5240. "type": "zip",
  5241. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5242. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5243. "shasum": ""
  5244. },
  5245. "require": {
  5246. "php": ">=5.3.3"
  5247. },
  5248. "type": "library",
  5249. "autoload": {
  5250. "classmap": [
  5251. "src/"
  5252. ]
  5253. },
  5254. "notification-url": "https://packagist.org/downloads/",
  5255. "license": [
  5256. "BSD-3-Clause"
  5257. ],
  5258. "authors": [
  5259. {
  5260. "name": "Sebastian Bergmann",
  5261. "email": "sebastian@phpunit.de",
  5262. "role": "lead"
  5263. }
  5264. ],
  5265. "description": "Simple template engine.",
  5266. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5267. "keywords": [
  5268. "template"
  5269. ],
  5270. "time": "2015-06-21T13:50:34+00:00"
  5271. },
  5272. {
  5273. "name": "phpunit/php-timer",
  5274. "version": "2.1.2",
  5275. "source": {
  5276. "type": "git",
  5277. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5278. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  5279. },
  5280. "dist": {
  5281. "type": "zip",
  5282. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  5283. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  5284. "shasum": ""
  5285. },
  5286. "require": {
  5287. "php": "^7.1"
  5288. },
  5289. "require-dev": {
  5290. "phpunit/phpunit": "^7.0"
  5291. },
  5292. "type": "library",
  5293. "extra": {
  5294. "branch-alias": {
  5295. "dev-master": "2.1-dev"
  5296. }
  5297. },
  5298. "autoload": {
  5299. "classmap": [
  5300. "src/"
  5301. ]
  5302. },
  5303. "notification-url": "https://packagist.org/downloads/",
  5304. "license": [
  5305. "BSD-3-Clause"
  5306. ],
  5307. "authors": [
  5308. {
  5309. "name": "Sebastian Bergmann",
  5310. "email": "sebastian@phpunit.de",
  5311. "role": "lead"
  5312. }
  5313. ],
  5314. "description": "Utility class for timing",
  5315. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5316. "keywords": [
  5317. "timer"
  5318. ],
  5319. "time": "2019-06-07T04:22:29+00:00"
  5320. },
  5321. {
  5322. "name": "phpunit/php-token-stream",
  5323. "version": "3.1.1",
  5324. "source": {
  5325. "type": "git",
  5326. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5327. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  5328. },
  5329. "dist": {
  5330. "type": "zip",
  5331. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  5332. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  5333. "shasum": ""
  5334. },
  5335. "require": {
  5336. "ext-tokenizer": "*",
  5337. "php": "^7.1"
  5338. },
  5339. "require-dev": {
  5340. "phpunit/phpunit": "^7.0"
  5341. },
  5342. "type": "library",
  5343. "extra": {
  5344. "branch-alias": {
  5345. "dev-master": "3.1-dev"
  5346. }
  5347. },
  5348. "autoload": {
  5349. "classmap": [
  5350. "src/"
  5351. ]
  5352. },
  5353. "notification-url": "https://packagist.org/downloads/",
  5354. "license": [
  5355. "BSD-3-Clause"
  5356. ],
  5357. "authors": [
  5358. {
  5359. "name": "Sebastian Bergmann",
  5360. "email": "sebastian@phpunit.de"
  5361. }
  5362. ],
  5363. "description": "Wrapper around PHP's tokenizer extension.",
  5364. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5365. "keywords": [
  5366. "tokenizer"
  5367. ],
  5368. "time": "2019-09-17T06:23:10+00:00"
  5369. },
  5370. {
  5371. "name": "phpunit/phpunit",
  5372. "version": "8.5.2",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5376. "reference": "018b6ac3c8ab20916db85fa91bf6465acb64d1e0"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/018b6ac3c8ab20916db85fa91bf6465acb64d1e0",
  5381. "reference": "018b6ac3c8ab20916db85fa91bf6465acb64d1e0",
  5382. "shasum": ""
  5383. },
  5384. "require": {
  5385. "doctrine/instantiator": "^1.2.0",
  5386. "ext-dom": "*",
  5387. "ext-json": "*",
  5388. "ext-libxml": "*",
  5389. "ext-mbstring": "*",
  5390. "ext-xml": "*",
  5391. "ext-xmlwriter": "*",
  5392. "myclabs/deep-copy": "^1.9.1",
  5393. "phar-io/manifest": "^1.0.3",
  5394. "phar-io/version": "^2.0.1",
  5395. "php": "^7.2",
  5396. "phpspec/prophecy": "^1.8.1",
  5397. "phpunit/php-code-coverage": "^7.0.7",
  5398. "phpunit/php-file-iterator": "^2.0.2",
  5399. "phpunit/php-text-template": "^1.2.1",
  5400. "phpunit/php-timer": "^2.1.2",
  5401. "sebastian/comparator": "^3.0.2",
  5402. "sebastian/diff": "^3.0.2",
  5403. "sebastian/environment": "^4.2.2",
  5404. "sebastian/exporter": "^3.1.1",
  5405. "sebastian/global-state": "^3.0.0",
  5406. "sebastian/object-enumerator": "^3.0.3",
  5407. "sebastian/resource-operations": "^2.0.1",
  5408. "sebastian/type": "^1.1.3",
  5409. "sebastian/version": "^2.0.1"
  5410. },
  5411. "require-dev": {
  5412. "ext-pdo": "*"
  5413. },
  5414. "suggest": {
  5415. "ext-soap": "*",
  5416. "ext-xdebug": "*",
  5417. "phpunit/php-invoker": "^2.0.0"
  5418. },
  5419. "bin": [
  5420. "phpunit"
  5421. ],
  5422. "type": "library",
  5423. "extra": {
  5424. "branch-alias": {
  5425. "dev-master": "8.5-dev"
  5426. }
  5427. },
  5428. "autoload": {
  5429. "classmap": [
  5430. "src/"
  5431. ]
  5432. },
  5433. "notification-url": "https://packagist.org/downloads/",
  5434. "license": [
  5435. "BSD-3-Clause"
  5436. ],
  5437. "authors": [
  5438. {
  5439. "name": "Sebastian Bergmann",
  5440. "email": "sebastian@phpunit.de",
  5441. "role": "lead"
  5442. }
  5443. ],
  5444. "description": "The PHP Unit Testing framework.",
  5445. "homepage": "https://phpunit.de/",
  5446. "keywords": [
  5447. "phpunit",
  5448. "testing",
  5449. "xunit"
  5450. ],
  5451. "time": "2020-01-08T08:49:49+00:00"
  5452. },
  5453. {
  5454. "name": "scrivo/highlight.php",
  5455. "version": "v9.18.1.0",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://github.com/scrivo/highlight.php.git",
  5459. "reference": "a57c858cb753f543965a1e17af386a648012ed8f"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/a57c858cb753f543965a1e17af386a648012ed8f",
  5464. "reference": "a57c858cb753f543965a1e17af386a648012ed8f",
  5465. "shasum": ""
  5466. },
  5467. "require": {
  5468. "ext-json": "*",
  5469. "ext-mbstring": "*",
  5470. "php": ">=5.4"
  5471. },
  5472. "require-dev": {
  5473. "phpunit/phpunit": "^4.8|^5.7",
  5474. "symfony/finder": "^2.8|^3.4",
  5475. "symfony/var-dumper": "^2.8|^3.4"
  5476. },
  5477. "suggest": {
  5478. "ext-dom": "Needed to make use of the features in the utilities namespace"
  5479. },
  5480. "type": "library",
  5481. "autoload": {
  5482. "psr-0": {
  5483. "Highlight\\": "",
  5484. "HighlightUtilities\\": ""
  5485. },
  5486. "files": [
  5487. "HighlightUtilities/functions.php"
  5488. ]
  5489. },
  5490. "notification-url": "https://packagist.org/downloads/",
  5491. "license": [
  5492. "BSD-3-Clause"
  5493. ],
  5494. "authors": [
  5495. {
  5496. "name": "Geert Bergman",
  5497. "homepage": "http://www.scrivo.org/",
  5498. "role": "Project Author"
  5499. },
  5500. {
  5501. "name": "Vladimir Jimenez",
  5502. "homepage": "https://allejo.io",
  5503. "role": "Maintainer"
  5504. },
  5505. {
  5506. "name": "Martin Folkers",
  5507. "homepage": "https://twobrain.io",
  5508. "role": "Contributor"
  5509. }
  5510. ],
  5511. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  5512. "keywords": [
  5513. "code",
  5514. "highlight",
  5515. "highlight.js",
  5516. "highlight.php",
  5517. "syntax"
  5518. ],
  5519. "time": "2020-02-03T02:19:36+00:00"
  5520. },
  5521. {
  5522. "name": "sebastian/code-unit-reverse-lookup",
  5523. "version": "1.0.1",
  5524. "source": {
  5525. "type": "git",
  5526. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5527. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  5528. },
  5529. "dist": {
  5530. "type": "zip",
  5531. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5532. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5533. "shasum": ""
  5534. },
  5535. "require": {
  5536. "php": "^5.6 || ^7.0"
  5537. },
  5538. "require-dev": {
  5539. "phpunit/phpunit": "^5.7 || ^6.0"
  5540. },
  5541. "type": "library",
  5542. "extra": {
  5543. "branch-alias": {
  5544. "dev-master": "1.0.x-dev"
  5545. }
  5546. },
  5547. "autoload": {
  5548. "classmap": [
  5549. "src/"
  5550. ]
  5551. },
  5552. "notification-url": "https://packagist.org/downloads/",
  5553. "license": [
  5554. "BSD-3-Clause"
  5555. ],
  5556. "authors": [
  5557. {
  5558. "name": "Sebastian Bergmann",
  5559. "email": "sebastian@phpunit.de"
  5560. }
  5561. ],
  5562. "description": "Looks up which function or method a line of code belongs to",
  5563. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5564. "time": "2017-03-04T06:30:41+00:00"
  5565. },
  5566. {
  5567. "name": "sebastian/comparator",
  5568. "version": "3.0.2",
  5569. "source": {
  5570. "type": "git",
  5571. "url": "https://github.com/sebastianbergmann/comparator.git",
  5572. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  5573. },
  5574. "dist": {
  5575. "type": "zip",
  5576. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  5577. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  5578. "shasum": ""
  5579. },
  5580. "require": {
  5581. "php": "^7.1",
  5582. "sebastian/diff": "^3.0",
  5583. "sebastian/exporter": "^3.1"
  5584. },
  5585. "require-dev": {
  5586. "phpunit/phpunit": "^7.1"
  5587. },
  5588. "type": "library",
  5589. "extra": {
  5590. "branch-alias": {
  5591. "dev-master": "3.0-dev"
  5592. }
  5593. },
  5594. "autoload": {
  5595. "classmap": [
  5596. "src/"
  5597. ]
  5598. },
  5599. "notification-url": "https://packagist.org/downloads/",
  5600. "license": [
  5601. "BSD-3-Clause"
  5602. ],
  5603. "authors": [
  5604. {
  5605. "name": "Jeff Welch",
  5606. "email": "whatthejeff@gmail.com"
  5607. },
  5608. {
  5609. "name": "Volker Dusch",
  5610. "email": "github@wallbash.com"
  5611. },
  5612. {
  5613. "name": "Bernhard Schussek",
  5614. "email": "bschussek@2bepublished.at"
  5615. },
  5616. {
  5617. "name": "Sebastian Bergmann",
  5618. "email": "sebastian@phpunit.de"
  5619. }
  5620. ],
  5621. "description": "Provides the functionality to compare PHP values for equality",
  5622. "homepage": "https://github.com/sebastianbergmann/comparator",
  5623. "keywords": [
  5624. "comparator",
  5625. "compare",
  5626. "equality"
  5627. ],
  5628. "time": "2018-07-12T15:12:46+00:00"
  5629. },
  5630. {
  5631. "name": "sebastian/diff",
  5632. "version": "3.0.2",
  5633. "source": {
  5634. "type": "git",
  5635. "url": "https://github.com/sebastianbergmann/diff.git",
  5636. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  5637. },
  5638. "dist": {
  5639. "type": "zip",
  5640. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  5641. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  5642. "shasum": ""
  5643. },
  5644. "require": {
  5645. "php": "^7.1"
  5646. },
  5647. "require-dev": {
  5648. "phpunit/phpunit": "^7.5 || ^8.0",
  5649. "symfony/process": "^2 || ^3.3 || ^4"
  5650. },
  5651. "type": "library",
  5652. "extra": {
  5653. "branch-alias": {
  5654. "dev-master": "3.0-dev"
  5655. }
  5656. },
  5657. "autoload": {
  5658. "classmap": [
  5659. "src/"
  5660. ]
  5661. },
  5662. "notification-url": "https://packagist.org/downloads/",
  5663. "license": [
  5664. "BSD-3-Clause"
  5665. ],
  5666. "authors": [
  5667. {
  5668. "name": "Kore Nordmann",
  5669. "email": "mail@kore-nordmann.de"
  5670. },
  5671. {
  5672. "name": "Sebastian Bergmann",
  5673. "email": "sebastian@phpunit.de"
  5674. }
  5675. ],
  5676. "description": "Diff implementation",
  5677. "homepage": "https://github.com/sebastianbergmann/diff",
  5678. "keywords": [
  5679. "diff",
  5680. "udiff",
  5681. "unidiff",
  5682. "unified diff"
  5683. ],
  5684. "time": "2019-02-04T06:01:07+00:00"
  5685. },
  5686. {
  5687. "name": "sebastian/environment",
  5688. "version": "4.2.3",
  5689. "source": {
  5690. "type": "git",
  5691. "url": "https://github.com/sebastianbergmann/environment.git",
  5692. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  5693. },
  5694. "dist": {
  5695. "type": "zip",
  5696. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  5697. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  5698. "shasum": ""
  5699. },
  5700. "require": {
  5701. "php": "^7.1"
  5702. },
  5703. "require-dev": {
  5704. "phpunit/phpunit": "^7.5"
  5705. },
  5706. "suggest": {
  5707. "ext-posix": "*"
  5708. },
  5709. "type": "library",
  5710. "extra": {
  5711. "branch-alias": {
  5712. "dev-master": "4.2-dev"
  5713. }
  5714. },
  5715. "autoload": {
  5716. "classmap": [
  5717. "src/"
  5718. ]
  5719. },
  5720. "notification-url": "https://packagist.org/downloads/",
  5721. "license": [
  5722. "BSD-3-Clause"
  5723. ],
  5724. "authors": [
  5725. {
  5726. "name": "Sebastian Bergmann",
  5727. "email": "sebastian@phpunit.de"
  5728. }
  5729. ],
  5730. "description": "Provides functionality to handle HHVM/PHP environments",
  5731. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5732. "keywords": [
  5733. "Xdebug",
  5734. "environment",
  5735. "hhvm"
  5736. ],
  5737. "time": "2019-11-20T08:46:58+00:00"
  5738. },
  5739. {
  5740. "name": "sebastian/exporter",
  5741. "version": "3.1.2",
  5742. "source": {
  5743. "type": "git",
  5744. "url": "https://github.com/sebastianbergmann/exporter.git",
  5745. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  5746. },
  5747. "dist": {
  5748. "type": "zip",
  5749. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  5750. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  5751. "shasum": ""
  5752. },
  5753. "require": {
  5754. "php": "^7.0",
  5755. "sebastian/recursion-context": "^3.0"
  5756. },
  5757. "require-dev": {
  5758. "ext-mbstring": "*",
  5759. "phpunit/phpunit": "^6.0"
  5760. },
  5761. "type": "library",
  5762. "extra": {
  5763. "branch-alias": {
  5764. "dev-master": "3.1.x-dev"
  5765. }
  5766. },
  5767. "autoload": {
  5768. "classmap": [
  5769. "src/"
  5770. ]
  5771. },
  5772. "notification-url": "https://packagist.org/downloads/",
  5773. "license": [
  5774. "BSD-3-Clause"
  5775. ],
  5776. "authors": [
  5777. {
  5778. "name": "Sebastian Bergmann",
  5779. "email": "sebastian@phpunit.de"
  5780. },
  5781. {
  5782. "name": "Jeff Welch",
  5783. "email": "whatthejeff@gmail.com"
  5784. },
  5785. {
  5786. "name": "Volker Dusch",
  5787. "email": "github@wallbash.com"
  5788. },
  5789. {
  5790. "name": "Adam Harvey",
  5791. "email": "aharvey@php.net"
  5792. },
  5793. {
  5794. "name": "Bernhard Schussek",
  5795. "email": "bschussek@gmail.com"
  5796. }
  5797. ],
  5798. "description": "Provides the functionality to export PHP variables for visualization",
  5799. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5800. "keywords": [
  5801. "export",
  5802. "exporter"
  5803. ],
  5804. "time": "2019-09-14T09:02:43+00:00"
  5805. },
  5806. {
  5807. "name": "sebastian/global-state",
  5808. "version": "3.0.0",
  5809. "source": {
  5810. "type": "git",
  5811. "url": "https://github.com/sebastianbergmann/global-state.git",
  5812. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  5813. },
  5814. "dist": {
  5815. "type": "zip",
  5816. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  5817. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  5818. "shasum": ""
  5819. },
  5820. "require": {
  5821. "php": "^7.2",
  5822. "sebastian/object-reflector": "^1.1.1",
  5823. "sebastian/recursion-context": "^3.0"
  5824. },
  5825. "require-dev": {
  5826. "ext-dom": "*",
  5827. "phpunit/phpunit": "^8.0"
  5828. },
  5829. "suggest": {
  5830. "ext-uopz": "*"
  5831. },
  5832. "type": "library",
  5833. "extra": {
  5834. "branch-alias": {
  5835. "dev-master": "3.0-dev"
  5836. }
  5837. },
  5838. "autoload": {
  5839. "classmap": [
  5840. "src/"
  5841. ]
  5842. },
  5843. "notification-url": "https://packagist.org/downloads/",
  5844. "license": [
  5845. "BSD-3-Clause"
  5846. ],
  5847. "authors": [
  5848. {
  5849. "name": "Sebastian Bergmann",
  5850. "email": "sebastian@phpunit.de"
  5851. }
  5852. ],
  5853. "description": "Snapshotting of global state",
  5854. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5855. "keywords": [
  5856. "global state"
  5857. ],
  5858. "time": "2019-02-01T05:30:01+00:00"
  5859. },
  5860. {
  5861. "name": "sebastian/object-enumerator",
  5862. "version": "3.0.3",
  5863. "source": {
  5864. "type": "git",
  5865. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5866. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  5867. },
  5868. "dist": {
  5869. "type": "zip",
  5870. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5871. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5872. "shasum": ""
  5873. },
  5874. "require": {
  5875. "php": "^7.0",
  5876. "sebastian/object-reflector": "^1.1.1",
  5877. "sebastian/recursion-context": "^3.0"
  5878. },
  5879. "require-dev": {
  5880. "phpunit/phpunit": "^6.0"
  5881. },
  5882. "type": "library",
  5883. "extra": {
  5884. "branch-alias": {
  5885. "dev-master": "3.0.x-dev"
  5886. }
  5887. },
  5888. "autoload": {
  5889. "classmap": [
  5890. "src/"
  5891. ]
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "BSD-3-Clause"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "Sebastian Bergmann",
  5900. "email": "sebastian@phpunit.de"
  5901. }
  5902. ],
  5903. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5904. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5905. "time": "2017-08-03T12:35:26+00:00"
  5906. },
  5907. {
  5908. "name": "sebastian/object-reflector",
  5909. "version": "1.1.1",
  5910. "source": {
  5911. "type": "git",
  5912. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5913. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  5914. },
  5915. "dist": {
  5916. "type": "zip",
  5917. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  5918. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  5919. "shasum": ""
  5920. },
  5921. "require": {
  5922. "php": "^7.0"
  5923. },
  5924. "require-dev": {
  5925. "phpunit/phpunit": "^6.0"
  5926. },
  5927. "type": "library",
  5928. "extra": {
  5929. "branch-alias": {
  5930. "dev-master": "1.1-dev"
  5931. }
  5932. },
  5933. "autoload": {
  5934. "classmap": [
  5935. "src/"
  5936. ]
  5937. },
  5938. "notification-url": "https://packagist.org/downloads/",
  5939. "license": [
  5940. "BSD-3-Clause"
  5941. ],
  5942. "authors": [
  5943. {
  5944. "name": "Sebastian Bergmann",
  5945. "email": "sebastian@phpunit.de"
  5946. }
  5947. ],
  5948. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5949. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5950. "time": "2017-03-29T09:07:27+00:00"
  5951. },
  5952. {
  5953. "name": "sebastian/recursion-context",
  5954. "version": "3.0.0",
  5955. "source": {
  5956. "type": "git",
  5957. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5958. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  5959. },
  5960. "dist": {
  5961. "type": "zip",
  5962. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5963. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5964. "shasum": ""
  5965. },
  5966. "require": {
  5967. "php": "^7.0"
  5968. },
  5969. "require-dev": {
  5970. "phpunit/phpunit": "^6.0"
  5971. },
  5972. "type": "library",
  5973. "extra": {
  5974. "branch-alias": {
  5975. "dev-master": "3.0.x-dev"
  5976. }
  5977. },
  5978. "autoload": {
  5979. "classmap": [
  5980. "src/"
  5981. ]
  5982. },
  5983. "notification-url": "https://packagist.org/downloads/",
  5984. "license": [
  5985. "BSD-3-Clause"
  5986. ],
  5987. "authors": [
  5988. {
  5989. "name": "Jeff Welch",
  5990. "email": "whatthejeff@gmail.com"
  5991. },
  5992. {
  5993. "name": "Sebastian Bergmann",
  5994. "email": "sebastian@phpunit.de"
  5995. },
  5996. {
  5997. "name": "Adam Harvey",
  5998. "email": "aharvey@php.net"
  5999. }
  6000. ],
  6001. "description": "Provides functionality to recursively process PHP variables",
  6002. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6003. "time": "2017-03-03T06:23:57+00:00"
  6004. },
  6005. {
  6006. "name": "sebastian/resource-operations",
  6007. "version": "2.0.1",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6011. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6016. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6017. "shasum": ""
  6018. },
  6019. "require": {
  6020. "php": "^7.1"
  6021. },
  6022. "type": "library",
  6023. "extra": {
  6024. "branch-alias": {
  6025. "dev-master": "2.0-dev"
  6026. }
  6027. },
  6028. "autoload": {
  6029. "classmap": [
  6030. "src/"
  6031. ]
  6032. },
  6033. "notification-url": "https://packagist.org/downloads/",
  6034. "license": [
  6035. "BSD-3-Clause"
  6036. ],
  6037. "authors": [
  6038. {
  6039. "name": "Sebastian Bergmann",
  6040. "email": "sebastian@phpunit.de"
  6041. }
  6042. ],
  6043. "description": "Provides a list of PHP built-in functions that operate on resources",
  6044. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6045. "time": "2018-10-04T04:07:39+00:00"
  6046. },
  6047. {
  6048. "name": "sebastian/type",
  6049. "version": "1.1.3",
  6050. "source": {
  6051. "type": "git",
  6052. "url": "https://github.com/sebastianbergmann/type.git",
  6053. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  6054. },
  6055. "dist": {
  6056. "type": "zip",
  6057. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  6058. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  6059. "shasum": ""
  6060. },
  6061. "require": {
  6062. "php": "^7.2"
  6063. },
  6064. "require-dev": {
  6065. "phpunit/phpunit": "^8.2"
  6066. },
  6067. "type": "library",
  6068. "extra": {
  6069. "branch-alias": {
  6070. "dev-master": "1.1-dev"
  6071. }
  6072. },
  6073. "autoload": {
  6074. "classmap": [
  6075. "src/"
  6076. ]
  6077. },
  6078. "notification-url": "https://packagist.org/downloads/",
  6079. "license": [
  6080. "BSD-3-Clause"
  6081. ],
  6082. "authors": [
  6083. {
  6084. "name": "Sebastian Bergmann",
  6085. "email": "sebastian@phpunit.de",
  6086. "role": "lead"
  6087. }
  6088. ],
  6089. "description": "Collection of value objects that represent the types of the PHP type system",
  6090. "homepage": "https://github.com/sebastianbergmann/type",
  6091. "time": "2019-07-02T08:10:15+00:00"
  6092. },
  6093. {
  6094. "name": "sebastian/version",
  6095. "version": "2.0.1",
  6096. "source": {
  6097. "type": "git",
  6098. "url": "https://github.com/sebastianbergmann/version.git",
  6099. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6100. },
  6101. "dist": {
  6102. "type": "zip",
  6103. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6104. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6105. "shasum": ""
  6106. },
  6107. "require": {
  6108. "php": ">=5.6"
  6109. },
  6110. "type": "library",
  6111. "extra": {
  6112. "branch-alias": {
  6113. "dev-master": "2.0.x-dev"
  6114. }
  6115. },
  6116. "autoload": {
  6117. "classmap": [
  6118. "src/"
  6119. ]
  6120. },
  6121. "notification-url": "https://packagist.org/downloads/",
  6122. "license": [
  6123. "BSD-3-Clause"
  6124. ],
  6125. "authors": [
  6126. {
  6127. "name": "Sebastian Bergmann",
  6128. "email": "sebastian@phpunit.de",
  6129. "role": "lead"
  6130. }
  6131. ],
  6132. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6133. "homepage": "https://github.com/sebastianbergmann/version",
  6134. "time": "2016-10-03T07:35:21+00:00"
  6135. },
  6136. {
  6137. "name": "theseer/tokenizer",
  6138. "version": "1.1.3",
  6139. "source": {
  6140. "type": "git",
  6141. "url": "https://github.com/theseer/tokenizer.git",
  6142. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  6143. },
  6144. "dist": {
  6145. "type": "zip",
  6146. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  6147. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  6148. "shasum": ""
  6149. },
  6150. "require": {
  6151. "ext-dom": "*",
  6152. "ext-tokenizer": "*",
  6153. "ext-xmlwriter": "*",
  6154. "php": "^7.0"
  6155. },
  6156. "type": "library",
  6157. "autoload": {
  6158. "classmap": [
  6159. "src/"
  6160. ]
  6161. },
  6162. "notification-url": "https://packagist.org/downloads/",
  6163. "license": [
  6164. "BSD-3-Clause"
  6165. ],
  6166. "authors": [
  6167. {
  6168. "name": "Arne Blankerts",
  6169. "email": "arne@blankerts.de",
  6170. "role": "Developer"
  6171. }
  6172. ],
  6173. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6174. "time": "2019-06-13T22:48:21+00:00"
  6175. },
  6176. {
  6177. "name": "webmozart/assert",
  6178. "version": "1.6.0",
  6179. "source": {
  6180. "type": "git",
  6181. "url": "https://github.com/webmozart/assert.git",
  6182. "reference": "573381c0a64f155a0d9a23f4b0c797194805b925"
  6183. },
  6184. "dist": {
  6185. "type": "zip",
  6186. "url": "https://api.github.com/repos/webmozart/assert/zipball/573381c0a64f155a0d9a23f4b0c797194805b925",
  6187. "reference": "573381c0a64f155a0d9a23f4b0c797194805b925",
  6188. "shasum": ""
  6189. },
  6190. "require": {
  6191. "php": "^5.3.3 || ^7.0",
  6192. "symfony/polyfill-ctype": "^1.8"
  6193. },
  6194. "conflict": {
  6195. "vimeo/psalm": "<3.6.0"
  6196. },
  6197. "require-dev": {
  6198. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6199. },
  6200. "type": "library",
  6201. "autoload": {
  6202. "psr-4": {
  6203. "Webmozart\\Assert\\": "src/"
  6204. }
  6205. },
  6206. "notification-url": "https://packagist.org/downloads/",
  6207. "license": [
  6208. "MIT"
  6209. ],
  6210. "authors": [
  6211. {
  6212. "name": "Bernhard Schussek",
  6213. "email": "bschussek@gmail.com"
  6214. }
  6215. ],
  6216. "description": "Assertions to validate method input/output with nice error messages.",
  6217. "keywords": [
  6218. "assert",
  6219. "check",
  6220. "validate"
  6221. ],
  6222. "time": "2019-11-24T13:36:37+00:00"
  6223. }
  6224. ],
  6225. "aliases": [],
  6226. "minimum-stability": "dev",
  6227. "stability-flags": [],
  6228. "prefer-stable": true,
  6229. "prefer-lowest": false,
  6230. "platform": {
  6231. "php": "^7.2"
  6232. },
  6233. "platform-dev": []
  6234. }