composer.lock 281 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917
  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": "eea6b133e58e699b8b666be84520cb12",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa",
  20. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0|^8.0",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.0.2"
  62. },
  63. "time": "2020-10-29T16:03:21+00:00"
  64. },
  65. {
  66. "name": "bacon/bacon-qr-code",
  67. "version": "2.0.3",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Bacon/BaconQrCode.git",
  71. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  76. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "dasprid/enum": "^1.0.3",
  81. "ext-iconv": "*",
  82. "php": "^7.1 || ^8.0"
  83. },
  84. "require-dev": {
  85. "phly/keep-a-changelog": "^1.4",
  86. "phpunit/phpunit": "^7 | ^8 | ^9",
  87. "squizlabs/php_codesniffer": "^3.4"
  88. },
  89. "suggest": {
  90. "ext-imagick": "to generate QR code images"
  91. },
  92. "type": "library",
  93. "autoload": {
  94. "psr-4": {
  95. "BaconQrCode\\": "src/"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "BSD-2-Clause"
  101. ],
  102. "authors": [
  103. {
  104. "name": "Ben Scholzen 'DASPRiD'",
  105. "email": "mail@dasprids.de",
  106. "homepage": "https://dasprids.de/",
  107. "role": "Developer"
  108. }
  109. ],
  110. "description": "BaconQrCode is a QR code generator for PHP.",
  111. "homepage": "https://github.com/Bacon/BaconQrCode",
  112. "time": "2020-10-30T02:02:47+00:00"
  113. },
  114. {
  115. "name": "brick/math",
  116. "version": "0.9.1",
  117. "source": {
  118. "type": "git",
  119. "url": "https://github.com/brick/math.git",
  120. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  121. },
  122. "dist": {
  123. "type": "zip",
  124. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  125. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  126. "shasum": ""
  127. },
  128. "require": {
  129. "ext-json": "*",
  130. "php": "^7.1|^8.0"
  131. },
  132. "require-dev": {
  133. "php-coveralls/php-coveralls": "^2.2",
  134. "phpunit/phpunit": "^7.5.15|^8.5",
  135. "vimeo/psalm": "^3.5"
  136. },
  137. "type": "library",
  138. "autoload": {
  139. "psr-4": {
  140. "Brick\\Math\\": "src/"
  141. }
  142. },
  143. "notification-url": "https://packagist.org/downloads/",
  144. "license": [
  145. "MIT"
  146. ],
  147. "description": "Arbitrary-precision arithmetic library",
  148. "keywords": [
  149. "Arbitrary-precision",
  150. "BigInteger",
  151. "BigRational",
  152. "arithmetic",
  153. "bigdecimal",
  154. "bignum",
  155. "brick",
  156. "math"
  157. ],
  158. "support": {
  159. "issues": "https://github.com/brick/math/issues",
  160. "source": "https://github.com/brick/math/tree/master"
  161. },
  162. "funding": [
  163. {
  164. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  165. "type": "tidelift"
  166. }
  167. ],
  168. "time": "2020-08-18T23:57:15+00:00"
  169. },
  170. {
  171. "name": "dasprid/enum",
  172. "version": "1.0.3",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/DASPRiD/Enum.git",
  176. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  181. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  182. "shasum": ""
  183. },
  184. "require-dev": {
  185. "phpunit/phpunit": "^7 | ^8 | ^9",
  186. "squizlabs/php_codesniffer": "^3.4"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "DASPRiD\\Enum\\": "src/"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "BSD-2-Clause"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Ben Scholzen 'DASPRiD'",
  201. "email": "mail@dasprids.de",
  202. "homepage": "https://dasprids.de/",
  203. "role": "Developer"
  204. }
  205. ],
  206. "description": "PHP 7.1 enum implementation",
  207. "keywords": [
  208. "enum",
  209. "map"
  210. ],
  211. "time": "2020-10-02T16:03:48+00:00"
  212. },
  213. {
  214. "name": "dnoegel/php-xdg-base-dir",
  215. "version": "v0.1.1",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  219. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  224. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": ">=5.3.2"
  229. },
  230. "require-dev": {
  231. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  232. },
  233. "type": "library",
  234. "autoload": {
  235. "psr-4": {
  236. "XdgBaseDir\\": "src/"
  237. }
  238. },
  239. "notification-url": "https://packagist.org/downloads/",
  240. "license": [
  241. "MIT"
  242. ],
  243. "description": "implementation of xdg base directory specification for php",
  244. "support": {
  245. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  246. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  247. },
  248. "time": "2019-12-04T15:06:13+00:00"
  249. },
  250. {
  251. "name": "doctrine/inflector",
  252. "version": "2.0.3",
  253. "source": {
  254. "type": "git",
  255. "url": "https://github.com/doctrine/inflector.git",
  256. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  257. },
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  261. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  262. "shasum": ""
  263. },
  264. "require": {
  265. "php": "^7.2 || ^8.0"
  266. },
  267. "require-dev": {
  268. "doctrine/coding-standard": "^7.0",
  269. "phpstan/phpstan": "^0.11",
  270. "phpstan/phpstan-phpunit": "^0.11",
  271. "phpstan/phpstan-strict-rules": "^0.11",
  272. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  273. },
  274. "type": "library",
  275. "extra": {
  276. "branch-alias": {
  277. "dev-master": "2.0.x-dev"
  278. }
  279. },
  280. "autoload": {
  281. "psr-4": {
  282. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  283. }
  284. },
  285. "notification-url": "https://packagist.org/downloads/",
  286. "license": [
  287. "MIT"
  288. ],
  289. "authors": [
  290. {
  291. "name": "Guilherme Blanco",
  292. "email": "guilhermeblanco@gmail.com"
  293. },
  294. {
  295. "name": "Roman Borschel",
  296. "email": "roman@code-factory.org"
  297. },
  298. {
  299. "name": "Benjamin Eberlei",
  300. "email": "kontakt@beberlei.de"
  301. },
  302. {
  303. "name": "Jonathan Wage",
  304. "email": "jonwage@gmail.com"
  305. },
  306. {
  307. "name": "Johannes Schmitt",
  308. "email": "schmittjoh@gmail.com"
  309. }
  310. ],
  311. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  312. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  313. "keywords": [
  314. "inflection",
  315. "inflector",
  316. "lowercase",
  317. "manipulation",
  318. "php",
  319. "plural",
  320. "singular",
  321. "strings",
  322. "uppercase",
  323. "words"
  324. ],
  325. "support": {
  326. "issues": "https://github.com/doctrine/inflector/issues",
  327. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  328. },
  329. "funding": [
  330. {
  331. "url": "https://www.doctrine-project.org/sponsorship.html",
  332. "type": "custom"
  333. },
  334. {
  335. "url": "https://www.patreon.com/phpdoctrine",
  336. "type": "patreon"
  337. },
  338. {
  339. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  340. "type": "tidelift"
  341. }
  342. ],
  343. "time": "2020-05-29T15:13:26+00:00"
  344. },
  345. {
  346. "name": "doctrine/lexer",
  347. "version": "1.2.1",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/doctrine/lexer.git",
  351. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  356. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  357. "shasum": ""
  358. },
  359. "require": {
  360. "php": "^7.2 || ^8.0"
  361. },
  362. "require-dev": {
  363. "doctrine/coding-standard": "^6.0",
  364. "phpstan/phpstan": "^0.11.8",
  365. "phpunit/phpunit": "^8.2"
  366. },
  367. "type": "library",
  368. "extra": {
  369. "branch-alias": {
  370. "dev-master": "1.2.x-dev"
  371. }
  372. },
  373. "autoload": {
  374. "psr-4": {
  375. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  376. }
  377. },
  378. "notification-url": "https://packagist.org/downloads/",
  379. "license": [
  380. "MIT"
  381. ],
  382. "authors": [
  383. {
  384. "name": "Guilherme Blanco",
  385. "email": "guilhermeblanco@gmail.com"
  386. },
  387. {
  388. "name": "Roman Borschel",
  389. "email": "roman@code-factory.org"
  390. },
  391. {
  392. "name": "Johannes Schmitt",
  393. "email": "schmittjoh@gmail.com"
  394. }
  395. ],
  396. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  397. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  398. "keywords": [
  399. "annotations",
  400. "docblock",
  401. "lexer",
  402. "parser",
  403. "php"
  404. ],
  405. "support": {
  406. "issues": "https://github.com/doctrine/lexer/issues",
  407. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  408. },
  409. "funding": [
  410. {
  411. "url": "https://www.doctrine-project.org/sponsorship.html",
  412. "type": "custom"
  413. },
  414. {
  415. "url": "https://www.patreon.com/phpdoctrine",
  416. "type": "patreon"
  417. },
  418. {
  419. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  420. "type": "tidelift"
  421. }
  422. ],
  423. "time": "2020-05-25T17:44:05+00:00"
  424. },
  425. {
  426. "name": "dragonmantank/cron-expression",
  427. "version": "v3.1.0",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/dragonmantank/cron-expression.git",
  431. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  436. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "php": "^7.2|^8.0",
  441. "webmozart/assert": "^1.7.0"
  442. },
  443. "replace": {
  444. "mtdowling/cron-expression": "^1.0"
  445. },
  446. "require-dev": {
  447. "phpstan/extension-installer": "^1.0",
  448. "phpstan/phpstan": "^0.12",
  449. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  450. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  451. },
  452. "type": "library",
  453. "autoload": {
  454. "psr-4": {
  455. "Cron\\": "src/Cron/"
  456. }
  457. },
  458. "notification-url": "https://packagist.org/downloads/",
  459. "license": [
  460. "MIT"
  461. ],
  462. "authors": [
  463. {
  464. "name": "Chris Tankersley",
  465. "email": "chris@ctankersley.com",
  466. "homepage": "https://github.com/dragonmantank"
  467. }
  468. ],
  469. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  470. "keywords": [
  471. "cron",
  472. "schedule"
  473. ],
  474. "support": {
  475. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  476. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  477. },
  478. "funding": [
  479. {
  480. "url": "https://github.com/dragonmantank",
  481. "type": "github"
  482. }
  483. ],
  484. "time": "2020-11-24T19:55:57+00:00"
  485. },
  486. {
  487. "name": "egulias/email-validator",
  488. "version": "2.1.24",
  489. "source": {
  490. "type": "git",
  491. "url": "https://github.com/egulias/EmailValidator.git",
  492. "reference": "ca90a3291eee1538cd48ff25163240695bd95448"
  493. },
  494. "dist": {
  495. "type": "zip",
  496. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ca90a3291eee1538cd48ff25163240695bd95448",
  497. "reference": "ca90a3291eee1538cd48ff25163240695bd95448",
  498. "shasum": ""
  499. },
  500. "require": {
  501. "doctrine/lexer": "^1.0.1",
  502. "php": ">=5.5",
  503. "symfony/polyfill-intl-idn": "^1.10"
  504. },
  505. "require-dev": {
  506. "dominicsayers/isemail": "^3.0.7",
  507. "phpunit/phpunit": "^4.8.36|^7.5.15",
  508. "satooshi/php-coveralls": "^1.0.1"
  509. },
  510. "suggest": {
  511. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-master": "2.1.x-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Egulias\\EmailValidator\\": "src"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Eduardo Gulias Davis"
  531. }
  532. ],
  533. "description": "A library for validating emails against several RFCs",
  534. "homepage": "https://github.com/egulias/EmailValidator",
  535. "keywords": [
  536. "email",
  537. "emailvalidation",
  538. "emailvalidator",
  539. "validation",
  540. "validator"
  541. ],
  542. "support": {
  543. "issues": "https://github.com/egulias/EmailValidator/issues",
  544. "source": "https://github.com/egulias/EmailValidator/tree/2.1.24"
  545. },
  546. "funding": [
  547. {
  548. "url": "https://github.com/egulias",
  549. "type": "github"
  550. }
  551. ],
  552. "time": "2020-11-14T15:56:27+00:00"
  553. },
  554. {
  555. "name": "fideloper/proxy",
  556. "version": "4.4.1",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/fideloper/TrustedProxy.git",
  560. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  565. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  570. "php": ">=5.4.0"
  571. },
  572. "require-dev": {
  573. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  574. "mockery/mockery": "^1.0",
  575. "phpunit/phpunit": "^6.0"
  576. },
  577. "type": "library",
  578. "extra": {
  579. "laravel": {
  580. "providers": [
  581. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  582. ]
  583. }
  584. },
  585. "autoload": {
  586. "psr-4": {
  587. "Fideloper\\Proxy\\": "src/"
  588. }
  589. },
  590. "notification-url": "https://packagist.org/downloads/",
  591. "license": [
  592. "MIT"
  593. ],
  594. "authors": [
  595. {
  596. "name": "Chris Fidao",
  597. "email": "fideloper@gmail.com"
  598. }
  599. ],
  600. "description": "Set trusted proxies for Laravel",
  601. "keywords": [
  602. "load balancing",
  603. "proxy",
  604. "trusted proxy"
  605. ],
  606. "support": {
  607. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  608. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  609. },
  610. "time": "2020-10-22T13:48:01+00:00"
  611. },
  612. {
  613. "name": "fruitcake/laravel-cors",
  614. "version": "v2.0.3",
  615. "source": {
  616. "type": "git",
  617. "url": "https://github.com/fruitcake/laravel-cors.git",
  618. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  619. },
  620. "dist": {
  621. "type": "zip",
  622. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  623. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  624. "shasum": ""
  625. },
  626. "require": {
  627. "asm89/stack-cors": "^2.0.1",
  628. "illuminate/contracts": "^6|^7|^8|^9",
  629. "illuminate/support": "^6|^7|^8|^9",
  630. "php": ">=7.2",
  631. "symfony/http-foundation": "^4|^5",
  632. "symfony/http-kernel": "^4.3.4|^5"
  633. },
  634. "require-dev": {
  635. "laravel/framework": "^6|^7|^8",
  636. "orchestra/testbench-dusk": "^4|^5|^6",
  637. "phpunit/phpunit": "^6|^7|^8",
  638. "squizlabs/php_codesniffer": "^3.5"
  639. },
  640. "type": "library",
  641. "extra": {
  642. "branch-alias": {
  643. "dev-master": "2.0-dev"
  644. },
  645. "laravel": {
  646. "providers": [
  647. "Fruitcake\\Cors\\CorsServiceProvider"
  648. ]
  649. }
  650. },
  651. "autoload": {
  652. "psr-4": {
  653. "Fruitcake\\Cors\\": "src/"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Fruitcake",
  663. "homepage": "https://fruitcake.nl"
  664. },
  665. {
  666. "name": "Barry vd. Heuvel",
  667. "email": "barryvdh@gmail.com"
  668. }
  669. ],
  670. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  671. "keywords": [
  672. "api",
  673. "cors",
  674. "crossdomain",
  675. "laravel"
  676. ],
  677. "support": {
  678. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  679. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  680. },
  681. "funding": [
  682. {
  683. "url": "https://github.com/barryvdh",
  684. "type": "github"
  685. }
  686. ],
  687. "time": "2020-10-22T13:57:20+00:00"
  688. },
  689. {
  690. "name": "graham-campbell/result-type",
  691. "version": "v1.0.1",
  692. "source": {
  693. "type": "git",
  694. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  695. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb"
  696. },
  697. "dist": {
  698. "type": "zip",
  699. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb",
  700. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb",
  701. "shasum": ""
  702. },
  703. "require": {
  704. "php": "^7.0|^8.0",
  705. "phpoption/phpoption": "^1.7.3"
  706. },
  707. "require-dev": {
  708. "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0"
  709. },
  710. "type": "library",
  711. "extra": {
  712. "branch-alias": {
  713. "dev-master": "1.0-dev"
  714. }
  715. },
  716. "autoload": {
  717. "psr-4": {
  718. "GrahamCampbell\\ResultType\\": "src/"
  719. }
  720. },
  721. "notification-url": "https://packagist.org/downloads/",
  722. "license": [
  723. "MIT"
  724. ],
  725. "authors": [
  726. {
  727. "name": "Graham Campbell",
  728. "email": "graham@alt-three.com"
  729. }
  730. ],
  731. "description": "An Implementation Of The Result Type",
  732. "keywords": [
  733. "Graham Campbell",
  734. "GrahamCampbell",
  735. "Result Type",
  736. "Result-Type",
  737. "result"
  738. ],
  739. "support": {
  740. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  741. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1"
  742. },
  743. "funding": [
  744. {
  745. "url": "https://github.com/GrahamCampbell",
  746. "type": "github"
  747. },
  748. {
  749. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  750. "type": "tidelift"
  751. }
  752. ],
  753. "time": "2020-04-13T13:17:36+00:00"
  754. },
  755. {
  756. "name": "guzzlehttp/guzzle",
  757. "version": "7.2.0",
  758. "source": {
  759. "type": "git",
  760. "url": "https://github.com/guzzle/guzzle.git",
  761. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
  762. },
  763. "dist": {
  764. "type": "zip",
  765. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
  766. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
  767. "shasum": ""
  768. },
  769. "require": {
  770. "ext-json": "*",
  771. "guzzlehttp/promises": "^1.4",
  772. "guzzlehttp/psr7": "^1.7",
  773. "php": "^7.2.5 || ^8.0",
  774. "psr/http-client": "^1.0"
  775. },
  776. "provide": {
  777. "psr/http-client-implementation": "1.0"
  778. },
  779. "require-dev": {
  780. "ext-curl": "*",
  781. "php-http/client-integration-tests": "^3.0",
  782. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  783. "psr/log": "^1.1"
  784. },
  785. "suggest": {
  786. "ext-curl": "Required for CURL handler support",
  787. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  788. "psr/log": "Required for using the Log middleware"
  789. },
  790. "type": "library",
  791. "extra": {
  792. "branch-alias": {
  793. "dev-master": "7.1-dev"
  794. }
  795. },
  796. "autoload": {
  797. "psr-4": {
  798. "GuzzleHttp\\": "src/"
  799. },
  800. "files": [
  801. "src/functions_include.php"
  802. ]
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "MIT"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Michael Dowling",
  811. "email": "mtdowling@gmail.com",
  812. "homepage": "https://github.com/mtdowling"
  813. },
  814. {
  815. "name": "Márk Sági-Kazár",
  816. "email": "mark.sagikazar@gmail.com",
  817. "homepage": "https://sagikazarmark.hu"
  818. }
  819. ],
  820. "description": "Guzzle is a PHP HTTP client library",
  821. "homepage": "http://guzzlephp.org/",
  822. "keywords": [
  823. "client",
  824. "curl",
  825. "framework",
  826. "http",
  827. "http client",
  828. "psr-18",
  829. "psr-7",
  830. "rest",
  831. "web service"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/guzzle/guzzle/issues",
  835. "source": "https://github.com/guzzle/guzzle/tree/7.2.0"
  836. },
  837. "funding": [
  838. {
  839. "url": "https://github.com/GrahamCampbell",
  840. "type": "github"
  841. },
  842. {
  843. "url": "https://github.com/Nyholm",
  844. "type": "github"
  845. },
  846. {
  847. "url": "https://github.com/alexeyshockov",
  848. "type": "github"
  849. },
  850. {
  851. "url": "https://github.com/gmponos",
  852. "type": "github"
  853. }
  854. ],
  855. "time": "2020-10-10T11:47:56+00:00"
  856. },
  857. {
  858. "name": "guzzlehttp/promises",
  859. "version": "1.4.0",
  860. "source": {
  861. "type": "git",
  862. "url": "https://github.com/guzzle/promises.git",
  863. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  864. },
  865. "dist": {
  866. "type": "zip",
  867. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  868. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  869. "shasum": ""
  870. },
  871. "require": {
  872. "php": ">=5.5"
  873. },
  874. "require-dev": {
  875. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  876. },
  877. "type": "library",
  878. "extra": {
  879. "branch-alias": {
  880. "dev-master": "1.4-dev"
  881. }
  882. },
  883. "autoload": {
  884. "psr-4": {
  885. "GuzzleHttp\\Promise\\": "src/"
  886. },
  887. "files": [
  888. "src/functions_include.php"
  889. ]
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "MIT"
  894. ],
  895. "authors": [
  896. {
  897. "name": "Michael Dowling",
  898. "email": "mtdowling@gmail.com",
  899. "homepage": "https://github.com/mtdowling"
  900. }
  901. ],
  902. "description": "Guzzle promises library",
  903. "keywords": [
  904. "promise"
  905. ],
  906. "support": {
  907. "issues": "https://github.com/guzzle/promises/issues",
  908. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  909. },
  910. "time": "2020-09-30T07:37:28+00:00"
  911. },
  912. {
  913. "name": "guzzlehttp/psr7",
  914. "version": "1.7.0",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/guzzle/psr7.git",
  918. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  923. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "php": ">=5.4.0",
  928. "psr/http-message": "~1.0",
  929. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  930. },
  931. "provide": {
  932. "psr/http-message-implementation": "1.0"
  933. },
  934. "require-dev": {
  935. "ext-zlib": "*",
  936. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  937. },
  938. "suggest": {
  939. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  940. },
  941. "type": "library",
  942. "extra": {
  943. "branch-alias": {
  944. "dev-master": "1.7-dev"
  945. }
  946. },
  947. "autoload": {
  948. "psr-4": {
  949. "GuzzleHttp\\Psr7\\": "src/"
  950. },
  951. "files": [
  952. "src/functions_include.php"
  953. ]
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "MIT"
  958. ],
  959. "authors": [
  960. {
  961. "name": "Michael Dowling",
  962. "email": "mtdowling@gmail.com",
  963. "homepage": "https://github.com/mtdowling"
  964. },
  965. {
  966. "name": "Tobias Schultze",
  967. "homepage": "https://github.com/Tobion"
  968. }
  969. ],
  970. "description": "PSR-7 message implementation that also provides common utility methods",
  971. "keywords": [
  972. "http",
  973. "message",
  974. "psr-7",
  975. "request",
  976. "response",
  977. "stream",
  978. "uri",
  979. "url"
  980. ],
  981. "support": {
  982. "issues": "https://github.com/guzzle/psr7/issues",
  983. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  984. },
  985. "time": "2020-09-30T07:37:11+00:00"
  986. },
  987. {
  988. "name": "jaybizzle/crawler-detect",
  989. "version": "v1.2.103",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  993. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/3efa2860959cc971f17624b40bf0699823f9d0f3",
  998. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3",
  999. "shasum": ""
  1000. },
  1001. "require": {
  1002. "php": ">=5.3.0"
  1003. },
  1004. "require-dev": {
  1005. "phpunit/phpunit": "^4.8|^5.5|^6.5"
  1006. },
  1007. "type": "library",
  1008. "autoload": {
  1009. "psr-4": {
  1010. "Jaybizzle\\CrawlerDetect\\": "src/"
  1011. }
  1012. },
  1013. "notification-url": "https://packagist.org/downloads/",
  1014. "license": [
  1015. "MIT"
  1016. ],
  1017. "authors": [
  1018. {
  1019. "name": "Mark Beech",
  1020. "email": "m@rkbee.ch",
  1021. "role": "Developer"
  1022. }
  1023. ],
  1024. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1025. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1026. "keywords": [
  1027. "crawler",
  1028. "crawler detect",
  1029. "crawler detector",
  1030. "crawlerdetect",
  1031. "php crawler detect"
  1032. ],
  1033. "time": "2020-11-23T19:49:25+00:00"
  1034. },
  1035. {
  1036. "name": "jenssegers/agent",
  1037. "version": "v2.6.4",
  1038. "source": {
  1039. "type": "git",
  1040. "url": "https://github.com/jenssegers/agent.git",
  1041. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1042. },
  1043. "dist": {
  1044. "type": "zip",
  1045. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1046. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1047. "shasum": ""
  1048. },
  1049. "require": {
  1050. "jaybizzle/crawler-detect": "^1.2",
  1051. "mobiledetect/mobiledetectlib": "^2.7.6",
  1052. "php": ">=5.6"
  1053. },
  1054. "require-dev": {
  1055. "php-coveralls/php-coveralls": "^2.1",
  1056. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1057. },
  1058. "suggest": {
  1059. "illuminate/support": "Required for laravel service providers"
  1060. },
  1061. "type": "library",
  1062. "extra": {
  1063. "branch-alias": {
  1064. "dev-master": "3.0-dev"
  1065. },
  1066. "laravel": {
  1067. "providers": [
  1068. "Jenssegers\\Agent\\AgentServiceProvider"
  1069. ],
  1070. "aliases": {
  1071. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1072. }
  1073. }
  1074. },
  1075. "autoload": {
  1076. "psr-4": {
  1077. "Jenssegers\\Agent\\": "src/"
  1078. }
  1079. },
  1080. "notification-url": "https://packagist.org/downloads/",
  1081. "license": [
  1082. "MIT"
  1083. ],
  1084. "authors": [
  1085. {
  1086. "name": "Jens Segers",
  1087. "homepage": "https://jenssegers.com"
  1088. }
  1089. ],
  1090. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1091. "homepage": "https://github.com/jenssegers/agent",
  1092. "keywords": [
  1093. "Agent",
  1094. "browser",
  1095. "desktop",
  1096. "laravel",
  1097. "mobile",
  1098. "platform",
  1099. "user agent",
  1100. "useragent"
  1101. ],
  1102. "funding": [
  1103. {
  1104. "url": "https://github.com/jenssegers",
  1105. "type": "github"
  1106. },
  1107. {
  1108. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1109. "type": "tidelift"
  1110. }
  1111. ],
  1112. "time": "2020-06-13T08:05:20+00:00"
  1113. },
  1114. {
  1115. "name": "laravel/fortify",
  1116. "version": "v1.7.2",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/laravel/fortify.git",
  1120. "reference": "1333184e4797de9f6fe5891e4b6f07919a151289"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/laravel/fortify/zipball/1333184e4797de9f6fe5891e4b6f07919a151289",
  1125. "reference": "1333184e4797de9f6fe5891e4b6f07919a151289",
  1126. "shasum": ""
  1127. },
  1128. "require": {
  1129. "bacon/bacon-qr-code": "^2.0",
  1130. "ext-json": "*",
  1131. "illuminate/support": "^8.0",
  1132. "php": "^7.3|^8.0",
  1133. "pragmarx/google2fa": "^7.0|^8.0"
  1134. },
  1135. "require-dev": {
  1136. "mockery/mockery": "^1.0",
  1137. "orchestra/testbench": "^6.0",
  1138. "phpunit/phpunit": "^9.3"
  1139. },
  1140. "type": "library",
  1141. "extra": {
  1142. "branch-alias": {
  1143. "dev-master": "1.x-dev"
  1144. },
  1145. "laravel": {
  1146. "providers": [
  1147. "Laravel\\Fortify\\FortifyServiceProvider"
  1148. ]
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Laravel\\Fortify\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "Taylor Otwell",
  1163. "email": "taylor@laravel.com"
  1164. }
  1165. ],
  1166. "description": "Backend controllers and scaffolding for Laravel authentication.",
  1167. "keywords": [
  1168. "auth",
  1169. "laravel"
  1170. ],
  1171. "time": "2020-11-24T16:52:33+00:00"
  1172. },
  1173. {
  1174. "name": "laravel/framework",
  1175. "version": "v8.19.0",
  1176. "source": {
  1177. "type": "git",
  1178. "url": "https://github.com/laravel/framework.git",
  1179. "reference": "f5f331cee60f1bbe672503b7eb9ba5b22b2ceacb"
  1180. },
  1181. "dist": {
  1182. "type": "zip",
  1183. "url": "https://api.github.com/repos/laravel/framework/zipball/f5f331cee60f1bbe672503b7eb9ba5b22b2ceacb",
  1184. "reference": "f5f331cee60f1bbe672503b7eb9ba5b22b2ceacb",
  1185. "shasum": ""
  1186. },
  1187. "require": {
  1188. "doctrine/inflector": "^1.4|^2.0",
  1189. "dragonmantank/cron-expression": "^3.0.2",
  1190. "egulias/email-validator": "^2.1.10",
  1191. "ext-json": "*",
  1192. "ext-mbstring": "*",
  1193. "ext-openssl": "*",
  1194. "league/commonmark": "^1.3",
  1195. "league/flysystem": "^1.1",
  1196. "monolog/monolog": "^2.0",
  1197. "nesbot/carbon": "^2.31",
  1198. "opis/closure": "^3.6",
  1199. "php": "^7.3|^8.0",
  1200. "psr/container": "^1.0",
  1201. "psr/simple-cache": "^1.0",
  1202. "ramsey/uuid": "^4.0",
  1203. "swiftmailer/swiftmailer": "^6.0",
  1204. "symfony/console": "^5.1.4",
  1205. "symfony/error-handler": "^5.1.4",
  1206. "symfony/finder": "^5.1.4",
  1207. "symfony/http-foundation": "^5.1.4",
  1208. "symfony/http-kernel": "^5.1.4",
  1209. "symfony/mime": "^5.1.4",
  1210. "symfony/process": "^5.1.4",
  1211. "symfony/routing": "^5.1.4",
  1212. "symfony/var-dumper": "^5.1.4",
  1213. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1214. "vlucas/phpdotenv": "^5.2",
  1215. "voku/portable-ascii": "^1.4.8"
  1216. },
  1217. "conflict": {
  1218. "tightenco/collect": "<5.5.33"
  1219. },
  1220. "provide": {
  1221. "psr/container-implementation": "1.0"
  1222. },
  1223. "replace": {
  1224. "illuminate/auth": "self.version",
  1225. "illuminate/broadcasting": "self.version",
  1226. "illuminate/bus": "self.version",
  1227. "illuminate/cache": "self.version",
  1228. "illuminate/collections": "self.version",
  1229. "illuminate/config": "self.version",
  1230. "illuminate/console": "self.version",
  1231. "illuminate/container": "self.version",
  1232. "illuminate/contracts": "self.version",
  1233. "illuminate/cookie": "self.version",
  1234. "illuminate/database": "self.version",
  1235. "illuminate/encryption": "self.version",
  1236. "illuminate/events": "self.version",
  1237. "illuminate/filesystem": "self.version",
  1238. "illuminate/hashing": "self.version",
  1239. "illuminate/http": "self.version",
  1240. "illuminate/log": "self.version",
  1241. "illuminate/macroable": "self.version",
  1242. "illuminate/mail": "self.version",
  1243. "illuminate/notifications": "self.version",
  1244. "illuminate/pagination": "self.version",
  1245. "illuminate/pipeline": "self.version",
  1246. "illuminate/queue": "self.version",
  1247. "illuminate/redis": "self.version",
  1248. "illuminate/routing": "self.version",
  1249. "illuminate/session": "self.version",
  1250. "illuminate/support": "self.version",
  1251. "illuminate/testing": "self.version",
  1252. "illuminate/translation": "self.version",
  1253. "illuminate/validation": "self.version",
  1254. "illuminate/view": "self.version"
  1255. },
  1256. "require-dev": {
  1257. "aws/aws-sdk-php": "^3.155",
  1258. "doctrine/dbal": "^2.6|^3.0",
  1259. "filp/whoops": "^2.8",
  1260. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1261. "league/flysystem-cached-adapter": "^1.0",
  1262. "mockery/mockery": "^1.4.2",
  1263. "orchestra/testbench-core": "^6.8",
  1264. "pda/pheanstalk": "^4.0",
  1265. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1266. "predis/predis": "^1.1.1",
  1267. "symfony/cache": "^5.1.4"
  1268. },
  1269. "suggest": {
  1270. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1271. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).",
  1272. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1273. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1274. "ext-memcached": "Required to use the memcache cache driver.",
  1275. "ext-pcntl": "Required to use all features of the queue worker.",
  1276. "ext-posix": "Required to use all features of the queue worker.",
  1277. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1278. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1279. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1280. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1281. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1282. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1283. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1284. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1285. "mockery/mockery": "Required to use mocking (^1.4.2).",
  1286. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1287. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1288. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).",
  1289. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1290. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1291. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1292. "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).",
  1293. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).",
  1294. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1295. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1296. },
  1297. "type": "library",
  1298. "extra": {
  1299. "branch-alias": {
  1300. "dev-master": "8.x-dev"
  1301. }
  1302. },
  1303. "autoload": {
  1304. "files": [
  1305. "src/Illuminate/Collections/helpers.php",
  1306. "src/Illuminate/Events/functions.php",
  1307. "src/Illuminate/Foundation/helpers.php",
  1308. "src/Illuminate/Support/helpers.php"
  1309. ],
  1310. "psr-4": {
  1311. "Illuminate\\": "src/Illuminate/",
  1312. "Illuminate\\Support\\": [
  1313. "src/Illuminate/Macroable/",
  1314. "src/Illuminate/Collections/"
  1315. ]
  1316. }
  1317. },
  1318. "notification-url": "https://packagist.org/downloads/",
  1319. "license": [
  1320. "MIT"
  1321. ],
  1322. "authors": [
  1323. {
  1324. "name": "Taylor Otwell",
  1325. "email": "taylor@laravel.com"
  1326. }
  1327. ],
  1328. "description": "The Laravel Framework.",
  1329. "homepage": "https://laravel.com",
  1330. "keywords": [
  1331. "framework",
  1332. "laravel"
  1333. ],
  1334. "support": {
  1335. "issues": "https://github.com/laravel/framework/issues",
  1336. "source": "https://github.com/laravel/framework"
  1337. },
  1338. "time": "2020-12-15T16:16:31+00:00"
  1339. },
  1340. {
  1341. "name": "laravel/jetstream",
  1342. "version": "v1.6.5",
  1343. "source": {
  1344. "type": "git",
  1345. "url": "https://github.com/laravel/jetstream.git",
  1346. "reference": "0d3d5a9c91702892c0b0d2047fd81540747053e9"
  1347. },
  1348. "dist": {
  1349. "type": "zip",
  1350. "url": "https://api.github.com/repos/laravel/jetstream/zipball/0d3d5a9c91702892c0b0d2047fd81540747053e9",
  1351. "reference": "0d3d5a9c91702892c0b0d2047fd81540747053e9",
  1352. "shasum": ""
  1353. },
  1354. "require": {
  1355. "ext-json": "*",
  1356. "illuminate/support": "^8.0",
  1357. "jenssegers/agent": "^2.6",
  1358. "laravel/fortify": "^1.0",
  1359. "php": "^7.3|^8.0"
  1360. },
  1361. "require-dev": {
  1362. "inertiajs/inertia-laravel": "^0.2.4",
  1363. "laravel/sanctum": "^2.6",
  1364. "mockery/mockery": "^1.0",
  1365. "orchestra/testbench": "^6.0",
  1366. "phpunit/phpunit": "^9.3"
  1367. },
  1368. "type": "library",
  1369. "extra": {
  1370. "branch-alias": {
  1371. "dev-master": "1.x-dev"
  1372. },
  1373. "laravel": {
  1374. "providers": [
  1375. "Laravel\\Jetstream\\JetstreamServiceProvider"
  1376. ]
  1377. }
  1378. },
  1379. "autoload": {
  1380. "psr-4": {
  1381. "Laravel\\Jetstream\\": "src/"
  1382. }
  1383. },
  1384. "notification-url": "https://packagist.org/downloads/",
  1385. "license": [
  1386. "MIT"
  1387. ],
  1388. "authors": [
  1389. {
  1390. "name": "Taylor Otwell",
  1391. "email": "taylor@laravel.com"
  1392. }
  1393. ],
  1394. "description": "Tailwind scaffolding for the Laravel framework.",
  1395. "keywords": [
  1396. "auth",
  1397. "laravel",
  1398. "tailwind"
  1399. ],
  1400. "time": "2020-12-15T19:12:42+00:00"
  1401. },
  1402. {
  1403. "name": "laravel/sanctum",
  1404. "version": "v2.8.2",
  1405. "source": {
  1406. "type": "git",
  1407. "url": "https://github.com/laravel/sanctum.git",
  1408. "reference": "331bd6572610b06ad6dd6b2a7c15a0465a3ca9c9"
  1409. },
  1410. "dist": {
  1411. "type": "zip",
  1412. "url": "https://api.github.com/repos/laravel/sanctum/zipball/331bd6572610b06ad6dd6b2a7c15a0465a3ca9c9",
  1413. "reference": "331bd6572610b06ad6dd6b2a7c15a0465a3ca9c9",
  1414. "shasum": ""
  1415. },
  1416. "require": {
  1417. "ext-json": "*",
  1418. "illuminate/contracts": "^6.9|^7.0|^8.0",
  1419. "illuminate/database": "^6.9|^7.0|^8.0",
  1420. "illuminate/support": "^6.9|^7.0|^8.0",
  1421. "php": "^7.2|^8.0"
  1422. },
  1423. "require-dev": {
  1424. "mockery/mockery": "^1.0",
  1425. "orchestra/testbench": "^4.0|^5.0|^6.0",
  1426. "phpunit/phpunit": "^8.0|^9.3"
  1427. },
  1428. "type": "library",
  1429. "extra": {
  1430. "branch-alias": {
  1431. "dev-master": "2.x-dev"
  1432. },
  1433. "laravel": {
  1434. "providers": [
  1435. "Laravel\\Sanctum\\SanctumServiceProvider"
  1436. ]
  1437. }
  1438. },
  1439. "autoload": {
  1440. "psr-4": {
  1441. "Laravel\\Sanctum\\": "src/"
  1442. }
  1443. },
  1444. "notification-url": "https://packagist.org/downloads/",
  1445. "license": [
  1446. "MIT"
  1447. ],
  1448. "authors": [
  1449. {
  1450. "name": "Taylor Otwell",
  1451. "email": "taylor@laravel.com"
  1452. }
  1453. ],
  1454. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1455. "keywords": [
  1456. "auth",
  1457. "laravel",
  1458. "sanctum"
  1459. ],
  1460. "support": {
  1461. "issues": "https://github.com/laravel/sanctum/issues",
  1462. "source": "https://github.com/laravel/sanctum"
  1463. },
  1464. "time": "2020-11-24T17:31:19+00:00"
  1465. },
  1466. {
  1467. "name": "laravel/tinker",
  1468. "version": "v2.5.0",
  1469. "source": {
  1470. "type": "git",
  1471. "url": "https://github.com/laravel/tinker.git",
  1472. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  1473. },
  1474. "dist": {
  1475. "type": "zip",
  1476. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1477. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1478. "shasum": ""
  1479. },
  1480. "require": {
  1481. "illuminate/console": "^6.0|^7.0|^8.0",
  1482. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1483. "illuminate/support": "^6.0|^7.0|^8.0",
  1484. "php": "^7.2.5|^8.0",
  1485. "psy/psysh": "^0.10.4",
  1486. "symfony/var-dumper": "^4.3.4|^5.0"
  1487. },
  1488. "require-dev": {
  1489. "mockery/mockery": "~1.3.3|^1.4.2",
  1490. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1491. },
  1492. "suggest": {
  1493. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1494. },
  1495. "type": "library",
  1496. "extra": {
  1497. "branch-alias": {
  1498. "dev-master": "2.x-dev"
  1499. },
  1500. "laravel": {
  1501. "providers": [
  1502. "Laravel\\Tinker\\TinkerServiceProvider"
  1503. ]
  1504. }
  1505. },
  1506. "autoload": {
  1507. "psr-4": {
  1508. "Laravel\\Tinker\\": "src/"
  1509. }
  1510. },
  1511. "notification-url": "https://packagist.org/downloads/",
  1512. "license": [
  1513. "MIT"
  1514. ],
  1515. "authors": [
  1516. {
  1517. "name": "Taylor Otwell",
  1518. "email": "taylor@laravel.com"
  1519. }
  1520. ],
  1521. "description": "Powerful REPL for the Laravel framework.",
  1522. "keywords": [
  1523. "REPL",
  1524. "Tinker",
  1525. "laravel",
  1526. "psysh"
  1527. ],
  1528. "support": {
  1529. "issues": "https://github.com/laravel/tinker/issues",
  1530. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  1531. },
  1532. "time": "2020-10-29T13:07:12+00:00"
  1533. },
  1534. {
  1535. "name": "league/commonmark",
  1536. "version": "1.5.7",
  1537. "source": {
  1538. "type": "git",
  1539. "url": "https://github.com/thephpleague/commonmark.git",
  1540. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  1541. },
  1542. "dist": {
  1543. "type": "zip",
  1544. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1545. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1546. "shasum": ""
  1547. },
  1548. "require": {
  1549. "ext-mbstring": "*",
  1550. "php": "^7.1 || ^8.0"
  1551. },
  1552. "conflict": {
  1553. "scrutinizer/ocular": "1.7.*"
  1554. },
  1555. "require-dev": {
  1556. "cebe/markdown": "~1.0",
  1557. "commonmark/commonmark.js": "0.29.2",
  1558. "erusev/parsedown": "~1.0",
  1559. "ext-json": "*",
  1560. "github/gfm": "0.29.0",
  1561. "michelf/php-markdown": "~1.4",
  1562. "mikehaertl/php-shellcommand": "^1.4",
  1563. "phpstan/phpstan": "^0.12",
  1564. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1565. "scrutinizer/ocular": "^1.5",
  1566. "symfony/finder": "^4.2"
  1567. },
  1568. "bin": [
  1569. "bin/commonmark"
  1570. ],
  1571. "type": "library",
  1572. "autoload": {
  1573. "psr-4": {
  1574. "League\\CommonMark\\": "src"
  1575. }
  1576. },
  1577. "notification-url": "https://packagist.org/downloads/",
  1578. "license": [
  1579. "BSD-3-Clause"
  1580. ],
  1581. "authors": [
  1582. {
  1583. "name": "Colin O'Dell",
  1584. "email": "colinodell@gmail.com",
  1585. "homepage": "https://www.colinodell.com",
  1586. "role": "Lead Developer"
  1587. }
  1588. ],
  1589. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1590. "homepage": "https://commonmark.thephpleague.com",
  1591. "keywords": [
  1592. "commonmark",
  1593. "flavored",
  1594. "gfm",
  1595. "github",
  1596. "github-flavored",
  1597. "markdown",
  1598. "md",
  1599. "parser"
  1600. ],
  1601. "support": {
  1602. "docs": "https://commonmark.thephpleague.com/",
  1603. "issues": "https://github.com/thephpleague/commonmark/issues",
  1604. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1605. "source": "https://github.com/thephpleague/commonmark"
  1606. },
  1607. "funding": [
  1608. {
  1609. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1610. "type": "custom"
  1611. },
  1612. {
  1613. "url": "https://www.colinodell.com/sponsor",
  1614. "type": "custom"
  1615. },
  1616. {
  1617. "url": "https://www.paypal.me/colinpodell/10.00",
  1618. "type": "custom"
  1619. },
  1620. {
  1621. "url": "https://github.com/colinodell",
  1622. "type": "github"
  1623. },
  1624. {
  1625. "url": "https://www.patreon.com/colinodell",
  1626. "type": "patreon"
  1627. },
  1628. {
  1629. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1630. "type": "tidelift"
  1631. }
  1632. ],
  1633. "time": "2020-10-31T13:49:32+00:00"
  1634. },
  1635. {
  1636. "name": "league/flysystem",
  1637. "version": "1.1.3",
  1638. "source": {
  1639. "type": "git",
  1640. "url": "https://github.com/thephpleague/flysystem.git",
  1641. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1642. },
  1643. "dist": {
  1644. "type": "zip",
  1645. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1646. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1647. "shasum": ""
  1648. },
  1649. "require": {
  1650. "ext-fileinfo": "*",
  1651. "league/mime-type-detection": "^1.3",
  1652. "php": "^7.2.5 || ^8.0"
  1653. },
  1654. "conflict": {
  1655. "league/flysystem-sftp": "<1.0.6"
  1656. },
  1657. "require-dev": {
  1658. "phpspec/prophecy": "^1.11.1",
  1659. "phpunit/phpunit": "^8.5.8"
  1660. },
  1661. "suggest": {
  1662. "ext-fileinfo": "Required for MimeType",
  1663. "ext-ftp": "Allows you to use FTP server storage",
  1664. "ext-openssl": "Allows you to use FTPS server storage",
  1665. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1666. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1667. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1668. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1669. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1670. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1671. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1672. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1673. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1674. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1675. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1676. },
  1677. "type": "library",
  1678. "extra": {
  1679. "branch-alias": {
  1680. "dev-master": "1.1-dev"
  1681. }
  1682. },
  1683. "autoload": {
  1684. "psr-4": {
  1685. "League\\Flysystem\\": "src/"
  1686. }
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Frank de Jonge",
  1695. "email": "info@frenky.net"
  1696. }
  1697. ],
  1698. "description": "Filesystem abstraction: Many filesystems, one API.",
  1699. "keywords": [
  1700. "Cloud Files",
  1701. "WebDAV",
  1702. "abstraction",
  1703. "aws",
  1704. "cloud",
  1705. "copy.com",
  1706. "dropbox",
  1707. "file systems",
  1708. "files",
  1709. "filesystem",
  1710. "filesystems",
  1711. "ftp",
  1712. "rackspace",
  1713. "remote",
  1714. "s3",
  1715. "sftp",
  1716. "storage"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/thephpleague/flysystem/issues",
  1720. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  1721. },
  1722. "funding": [
  1723. {
  1724. "url": "https://offset.earth/frankdejonge",
  1725. "type": "other"
  1726. }
  1727. ],
  1728. "time": "2020-08-23T07:39:11+00:00"
  1729. },
  1730. {
  1731. "name": "league/mime-type-detection",
  1732. "version": "1.5.1",
  1733. "source": {
  1734. "type": "git",
  1735. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1736. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  1737. },
  1738. "dist": {
  1739. "type": "zip",
  1740. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  1741. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  1742. "shasum": ""
  1743. },
  1744. "require": {
  1745. "ext-fileinfo": "*",
  1746. "php": "^7.2 || ^8.0"
  1747. },
  1748. "require-dev": {
  1749. "phpstan/phpstan": "^0.12.36",
  1750. "phpunit/phpunit": "^8.5.8"
  1751. },
  1752. "type": "library",
  1753. "autoload": {
  1754. "psr-4": {
  1755. "League\\MimeTypeDetection\\": "src"
  1756. }
  1757. },
  1758. "notification-url": "https://packagist.org/downloads/",
  1759. "license": [
  1760. "MIT"
  1761. ],
  1762. "authors": [
  1763. {
  1764. "name": "Frank de Jonge",
  1765. "email": "info@frankdejonge.nl"
  1766. }
  1767. ],
  1768. "description": "Mime-type detection for Flysystem",
  1769. "support": {
  1770. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1771. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  1772. },
  1773. "funding": [
  1774. {
  1775. "url": "https://github.com/frankdejonge",
  1776. "type": "github"
  1777. },
  1778. {
  1779. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1780. "type": "tidelift"
  1781. }
  1782. ],
  1783. "time": "2020-10-18T11:50:25+00:00"
  1784. },
  1785. {
  1786. "name": "mobiledetect/mobiledetectlib",
  1787. "version": "2.8.34",
  1788. "source": {
  1789. "type": "git",
  1790. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  1791. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  1792. },
  1793. "dist": {
  1794. "type": "zip",
  1795. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  1796. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  1797. "shasum": ""
  1798. },
  1799. "require": {
  1800. "php": ">=5.0.0"
  1801. },
  1802. "require-dev": {
  1803. "phpunit/phpunit": "~4.8.35||~5.7"
  1804. },
  1805. "type": "library",
  1806. "autoload": {
  1807. "classmap": [
  1808. "Mobile_Detect.php"
  1809. ],
  1810. "psr-0": {
  1811. "Detection": "namespaced/"
  1812. }
  1813. },
  1814. "notification-url": "https://packagist.org/downloads/",
  1815. "license": [
  1816. "MIT"
  1817. ],
  1818. "authors": [
  1819. {
  1820. "name": "Serban Ghita",
  1821. "email": "serbanghita@gmail.com",
  1822. "homepage": "http://mobiledetect.net",
  1823. "role": "Developer"
  1824. }
  1825. ],
  1826. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  1827. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  1828. "keywords": [
  1829. "detect mobile devices",
  1830. "mobile",
  1831. "mobile detect",
  1832. "mobile detector",
  1833. "php mobile detect"
  1834. ],
  1835. "time": "2019-09-18T18:44:20+00:00"
  1836. },
  1837. {
  1838. "name": "monolog/monolog",
  1839. "version": "2.2.0",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://github.com/Seldaek/monolog.git",
  1843. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  1848. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  1849. "shasum": ""
  1850. },
  1851. "require": {
  1852. "php": ">=7.2",
  1853. "psr/log": "^1.0.1"
  1854. },
  1855. "provide": {
  1856. "psr/log-implementation": "1.0.0"
  1857. },
  1858. "require-dev": {
  1859. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1860. "doctrine/couchdb": "~1.0@dev",
  1861. "elasticsearch/elasticsearch": "^7",
  1862. "graylog2/gelf-php": "^1.4.2",
  1863. "mongodb/mongodb": "^1.8",
  1864. "php-amqplib/php-amqplib": "~2.4",
  1865. "php-console/php-console": "^3.1.3",
  1866. "phpspec/prophecy": "^1.6.1",
  1867. "phpstan/phpstan": "^0.12.59",
  1868. "phpunit/phpunit": "^8.5",
  1869. "predis/predis": "^1.1",
  1870. "rollbar/rollbar": "^1.3",
  1871. "ruflin/elastica": ">=0.90 <7.0.1",
  1872. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1873. },
  1874. "suggest": {
  1875. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1876. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1877. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1878. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1879. "ext-mbstring": "Allow to work properly with unicode symbols",
  1880. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1881. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1882. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1883. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1884. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1885. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1886. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1887. },
  1888. "type": "library",
  1889. "extra": {
  1890. "branch-alias": {
  1891. "dev-main": "2.x-dev"
  1892. }
  1893. },
  1894. "autoload": {
  1895. "psr-4": {
  1896. "Monolog\\": "src/Monolog"
  1897. }
  1898. },
  1899. "notification-url": "https://packagist.org/downloads/",
  1900. "license": [
  1901. "MIT"
  1902. ],
  1903. "authors": [
  1904. {
  1905. "name": "Jordi Boggiano",
  1906. "email": "j.boggiano@seld.be",
  1907. "homepage": "https://seld.be"
  1908. }
  1909. ],
  1910. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1911. "homepage": "https://github.com/Seldaek/monolog",
  1912. "keywords": [
  1913. "log",
  1914. "logging",
  1915. "psr-3"
  1916. ],
  1917. "support": {
  1918. "issues": "https://github.com/Seldaek/monolog/issues",
  1919. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  1920. },
  1921. "funding": [
  1922. {
  1923. "url": "https://github.com/Seldaek",
  1924. "type": "github"
  1925. },
  1926. {
  1927. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1928. "type": "tidelift"
  1929. }
  1930. ],
  1931. "time": "2020-12-14T13:15:25+00:00"
  1932. },
  1933. {
  1934. "name": "nesbot/carbon",
  1935. "version": "2.43.0",
  1936. "source": {
  1937. "type": "git",
  1938. "url": "https://github.com/briannesbitt/Carbon.git",
  1939. "reference": "d32c57d8389113742f4a88725a170236470012e2"
  1940. },
  1941. "dist": {
  1942. "type": "zip",
  1943. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d32c57d8389113742f4a88725a170236470012e2",
  1944. "reference": "d32c57d8389113742f4a88725a170236470012e2",
  1945. "shasum": ""
  1946. },
  1947. "require": {
  1948. "ext-json": "*",
  1949. "php": "^7.1.8 || ^8.0",
  1950. "symfony/polyfill-mbstring": "^1.0",
  1951. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  1952. },
  1953. "require-dev": {
  1954. "doctrine/orm": "^2.7",
  1955. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1956. "kylekatarnls/multi-tester": "^2.0",
  1957. "phpmd/phpmd": "^2.9",
  1958. "phpstan/extension-installer": "^1.0",
  1959. "phpstan/phpstan": "^0.12.54",
  1960. "phpunit/phpunit": "^7.5 || ^8.0",
  1961. "squizlabs/php_codesniffer": "^3.4"
  1962. },
  1963. "bin": [
  1964. "bin/carbon"
  1965. ],
  1966. "type": "library",
  1967. "extra": {
  1968. "branch-alias": {
  1969. "dev-master": "2.x-dev",
  1970. "dev-3.x": "3.x-dev"
  1971. },
  1972. "laravel": {
  1973. "providers": [
  1974. "Carbon\\Laravel\\ServiceProvider"
  1975. ]
  1976. },
  1977. "phpstan": {
  1978. "includes": [
  1979. "extension.neon"
  1980. ]
  1981. }
  1982. },
  1983. "autoload": {
  1984. "psr-4": {
  1985. "Carbon\\": "src/Carbon/"
  1986. }
  1987. },
  1988. "notification-url": "https://packagist.org/downloads/",
  1989. "license": [
  1990. "MIT"
  1991. ],
  1992. "authors": [
  1993. {
  1994. "name": "Brian Nesbitt",
  1995. "email": "brian@nesbot.com",
  1996. "homepage": "http://nesbot.com"
  1997. },
  1998. {
  1999. "name": "kylekatarnls",
  2000. "homepage": "http://github.com/kylekatarnls"
  2001. }
  2002. ],
  2003. "description": "An API extension for DateTime that supports 281 different languages.",
  2004. "homepage": "http://carbon.nesbot.com",
  2005. "keywords": [
  2006. "date",
  2007. "datetime",
  2008. "time"
  2009. ],
  2010. "support": {
  2011. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2012. "source": "https://github.com/briannesbitt/Carbon"
  2013. },
  2014. "funding": [
  2015. {
  2016. "url": "https://opencollective.com/Carbon",
  2017. "type": "open_collective"
  2018. },
  2019. {
  2020. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2021. "type": "tidelift"
  2022. }
  2023. ],
  2024. "time": "2020-12-17T20:55:32+00:00"
  2025. },
  2026. {
  2027. "name": "nikic/php-parser",
  2028. "version": "v4.10.4",
  2029. "source": {
  2030. "type": "git",
  2031. "url": "https://github.com/nikic/PHP-Parser.git",
  2032. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  2033. },
  2034. "dist": {
  2035. "type": "zip",
  2036. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  2037. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  2038. "shasum": ""
  2039. },
  2040. "require": {
  2041. "ext-tokenizer": "*",
  2042. "php": ">=7.0"
  2043. },
  2044. "require-dev": {
  2045. "ircmaxell/php-yacc": "^0.0.7",
  2046. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2047. },
  2048. "bin": [
  2049. "bin/php-parse"
  2050. ],
  2051. "type": "library",
  2052. "extra": {
  2053. "branch-alias": {
  2054. "dev-master": "4.9-dev"
  2055. }
  2056. },
  2057. "autoload": {
  2058. "psr-4": {
  2059. "PhpParser\\": "lib/PhpParser"
  2060. }
  2061. },
  2062. "notification-url": "https://packagist.org/downloads/",
  2063. "license": [
  2064. "BSD-3-Clause"
  2065. ],
  2066. "authors": [
  2067. {
  2068. "name": "Nikita Popov"
  2069. }
  2070. ],
  2071. "description": "A PHP parser written in PHP",
  2072. "keywords": [
  2073. "parser",
  2074. "php"
  2075. ],
  2076. "support": {
  2077. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2078. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  2079. },
  2080. "time": "2020-12-20T10:01:03+00:00"
  2081. },
  2082. {
  2083. "name": "opis/closure",
  2084. "version": "3.6.1",
  2085. "source": {
  2086. "type": "git",
  2087. "url": "https://github.com/opis/closure.git",
  2088. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  2089. },
  2090. "dist": {
  2091. "type": "zip",
  2092. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  2093. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  2094. "shasum": ""
  2095. },
  2096. "require": {
  2097. "php": "^5.4 || ^7.0 || ^8.0"
  2098. },
  2099. "require-dev": {
  2100. "jeremeamia/superclosure": "^2.0",
  2101. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2102. },
  2103. "type": "library",
  2104. "extra": {
  2105. "branch-alias": {
  2106. "dev-master": "3.6.x-dev"
  2107. }
  2108. },
  2109. "autoload": {
  2110. "psr-4": {
  2111. "Opis\\Closure\\": "src/"
  2112. },
  2113. "files": [
  2114. "functions.php"
  2115. ]
  2116. },
  2117. "notification-url": "https://packagist.org/downloads/",
  2118. "license": [
  2119. "MIT"
  2120. ],
  2121. "authors": [
  2122. {
  2123. "name": "Marius Sarca",
  2124. "email": "marius.sarca@gmail.com"
  2125. },
  2126. {
  2127. "name": "Sorin Sarca",
  2128. "email": "sarca_sorin@hotmail.com"
  2129. }
  2130. ],
  2131. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2132. "homepage": "https://opis.io/closure",
  2133. "keywords": [
  2134. "anonymous functions",
  2135. "closure",
  2136. "function",
  2137. "serializable",
  2138. "serialization",
  2139. "serialize"
  2140. ],
  2141. "support": {
  2142. "issues": "https://github.com/opis/closure/issues",
  2143. "source": "https://github.com/opis/closure/tree/3.6.1"
  2144. },
  2145. "time": "2020-11-07T02:01:34+00:00"
  2146. },
  2147. {
  2148. "name": "paragonie/constant_time_encoding",
  2149. "version": "v2.4.0",
  2150. "source": {
  2151. "type": "git",
  2152. "url": "https://github.com/paragonie/constant_time_encoding.git",
  2153. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  2154. },
  2155. "dist": {
  2156. "type": "zip",
  2157. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  2158. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  2159. "shasum": ""
  2160. },
  2161. "require": {
  2162. "php": "^7|^8"
  2163. },
  2164. "require-dev": {
  2165. "phpunit/phpunit": "^6|^7|^8|^9",
  2166. "vimeo/psalm": "^1|^2|^3|^4"
  2167. },
  2168. "type": "library",
  2169. "autoload": {
  2170. "psr-4": {
  2171. "ParagonIE\\ConstantTime\\": "src/"
  2172. }
  2173. },
  2174. "notification-url": "https://packagist.org/downloads/",
  2175. "license": [
  2176. "MIT"
  2177. ],
  2178. "authors": [
  2179. {
  2180. "name": "Paragon Initiative Enterprises",
  2181. "email": "security@paragonie.com",
  2182. "homepage": "https://paragonie.com",
  2183. "role": "Maintainer"
  2184. },
  2185. {
  2186. "name": "Steve 'Sc00bz' Thomas",
  2187. "email": "steve@tobtu.com",
  2188. "homepage": "https://www.tobtu.com",
  2189. "role": "Original Developer"
  2190. }
  2191. ],
  2192. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  2193. "keywords": [
  2194. "base16",
  2195. "base32",
  2196. "base32_decode",
  2197. "base32_encode",
  2198. "base64",
  2199. "base64_decode",
  2200. "base64_encode",
  2201. "bin2hex",
  2202. "encoding",
  2203. "hex",
  2204. "hex2bin",
  2205. "rfc4648"
  2206. ],
  2207. "time": "2020-12-06T15:14:20+00:00"
  2208. },
  2209. {
  2210. "name": "phpoption/phpoption",
  2211. "version": "1.7.5",
  2212. "source": {
  2213. "type": "git",
  2214. "url": "https://github.com/schmittjoh/php-option.git",
  2215. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  2216. },
  2217. "dist": {
  2218. "type": "zip",
  2219. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2220. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2221. "shasum": ""
  2222. },
  2223. "require": {
  2224. "php": "^5.5.9 || ^7.0 || ^8.0"
  2225. },
  2226. "require-dev": {
  2227. "bamarni/composer-bin-plugin": "^1.4.1",
  2228. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  2229. },
  2230. "type": "library",
  2231. "extra": {
  2232. "branch-alias": {
  2233. "dev-master": "1.7-dev"
  2234. }
  2235. },
  2236. "autoload": {
  2237. "psr-4": {
  2238. "PhpOption\\": "src/PhpOption/"
  2239. }
  2240. },
  2241. "notification-url": "https://packagist.org/downloads/",
  2242. "license": [
  2243. "Apache-2.0"
  2244. ],
  2245. "authors": [
  2246. {
  2247. "name": "Johannes M. Schmitt",
  2248. "email": "schmittjoh@gmail.com"
  2249. },
  2250. {
  2251. "name": "Graham Campbell",
  2252. "email": "graham@alt-three.com"
  2253. }
  2254. ],
  2255. "description": "Option Type for PHP",
  2256. "keywords": [
  2257. "language",
  2258. "option",
  2259. "php",
  2260. "type"
  2261. ],
  2262. "support": {
  2263. "issues": "https://github.com/schmittjoh/php-option/issues",
  2264. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  2265. },
  2266. "funding": [
  2267. {
  2268. "url": "https://github.com/GrahamCampbell",
  2269. "type": "github"
  2270. },
  2271. {
  2272. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2273. "type": "tidelift"
  2274. }
  2275. ],
  2276. "time": "2020-07-20T17:29:33+00:00"
  2277. },
  2278. {
  2279. "name": "pragmarx/google2fa",
  2280. "version": "8.0.0",
  2281. "source": {
  2282. "type": "git",
  2283. "url": "https://github.com/antonioribeiro/google2fa.git",
  2284. "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b"
  2285. },
  2286. "dist": {
  2287. "type": "zip",
  2288. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/26c4c5cf30a2844ba121760fd7301f8ad240100b",
  2289. "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b",
  2290. "shasum": ""
  2291. },
  2292. "require": {
  2293. "paragonie/constant_time_encoding": "^1.0|^2.0",
  2294. "php": "^7.1|^8.0"
  2295. },
  2296. "require-dev": {
  2297. "phpstan/phpstan": "^0.12.18",
  2298. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  2299. },
  2300. "type": "library",
  2301. "autoload": {
  2302. "psr-4": {
  2303. "PragmaRX\\Google2FA\\": "src/"
  2304. }
  2305. },
  2306. "notification-url": "https://packagist.org/downloads/",
  2307. "license": [
  2308. "MIT"
  2309. ],
  2310. "authors": [
  2311. {
  2312. "name": "Antonio Carlos Ribeiro",
  2313. "email": "acr@antoniocarlosribeiro.com",
  2314. "role": "Creator & Designer"
  2315. }
  2316. ],
  2317. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  2318. "keywords": [
  2319. "2fa",
  2320. "Authentication",
  2321. "Two Factor Authentication",
  2322. "google2fa"
  2323. ],
  2324. "time": "2020-04-05T10:47:18+00:00"
  2325. },
  2326. {
  2327. "name": "psr/container",
  2328. "version": "1.0.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://github.com/php-fig/container.git",
  2332. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2337. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2338. "shasum": ""
  2339. },
  2340. "require": {
  2341. "php": ">=5.3.0"
  2342. },
  2343. "type": "library",
  2344. "extra": {
  2345. "branch-alias": {
  2346. "dev-master": "1.0.x-dev"
  2347. }
  2348. },
  2349. "autoload": {
  2350. "psr-4": {
  2351. "Psr\\Container\\": "src/"
  2352. }
  2353. },
  2354. "notification-url": "https://packagist.org/downloads/",
  2355. "license": [
  2356. "MIT"
  2357. ],
  2358. "authors": [
  2359. {
  2360. "name": "PHP-FIG",
  2361. "homepage": "http://www.php-fig.org/"
  2362. }
  2363. ],
  2364. "description": "Common Container Interface (PHP FIG PSR-11)",
  2365. "homepage": "https://github.com/php-fig/container",
  2366. "keywords": [
  2367. "PSR-11",
  2368. "container",
  2369. "container-interface",
  2370. "container-interop",
  2371. "psr"
  2372. ],
  2373. "support": {
  2374. "issues": "https://github.com/php-fig/container/issues",
  2375. "source": "https://github.com/php-fig/container/tree/master"
  2376. },
  2377. "time": "2017-02-14T16:28:37+00:00"
  2378. },
  2379. {
  2380. "name": "psr/event-dispatcher",
  2381. "version": "1.0.0",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://github.com/php-fig/event-dispatcher.git",
  2385. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2390. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2391. "shasum": ""
  2392. },
  2393. "require": {
  2394. "php": ">=7.2.0"
  2395. },
  2396. "type": "library",
  2397. "extra": {
  2398. "branch-alias": {
  2399. "dev-master": "1.0.x-dev"
  2400. }
  2401. },
  2402. "autoload": {
  2403. "psr-4": {
  2404. "Psr\\EventDispatcher\\": "src/"
  2405. }
  2406. },
  2407. "notification-url": "https://packagist.org/downloads/",
  2408. "license": [
  2409. "MIT"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "PHP-FIG",
  2414. "homepage": "http://www.php-fig.org/"
  2415. }
  2416. ],
  2417. "description": "Standard interfaces for event handling.",
  2418. "keywords": [
  2419. "events",
  2420. "psr",
  2421. "psr-14"
  2422. ],
  2423. "support": {
  2424. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2425. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2426. },
  2427. "time": "2019-01-08T18:20:26+00:00"
  2428. },
  2429. {
  2430. "name": "psr/http-client",
  2431. "version": "1.0.1",
  2432. "source": {
  2433. "type": "git",
  2434. "url": "https://github.com/php-fig/http-client.git",
  2435. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2436. },
  2437. "dist": {
  2438. "type": "zip",
  2439. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2440. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2441. "shasum": ""
  2442. },
  2443. "require": {
  2444. "php": "^7.0 || ^8.0",
  2445. "psr/http-message": "^1.0"
  2446. },
  2447. "type": "library",
  2448. "extra": {
  2449. "branch-alias": {
  2450. "dev-master": "1.0.x-dev"
  2451. }
  2452. },
  2453. "autoload": {
  2454. "psr-4": {
  2455. "Psr\\Http\\Client\\": "src/"
  2456. }
  2457. },
  2458. "notification-url": "https://packagist.org/downloads/",
  2459. "license": [
  2460. "MIT"
  2461. ],
  2462. "authors": [
  2463. {
  2464. "name": "PHP-FIG",
  2465. "homepage": "http://www.php-fig.org/"
  2466. }
  2467. ],
  2468. "description": "Common interface for HTTP clients",
  2469. "homepage": "https://github.com/php-fig/http-client",
  2470. "keywords": [
  2471. "http",
  2472. "http-client",
  2473. "psr",
  2474. "psr-18"
  2475. ],
  2476. "support": {
  2477. "source": "https://github.com/php-fig/http-client/tree/master"
  2478. },
  2479. "time": "2020-06-29T06:28:15+00:00"
  2480. },
  2481. {
  2482. "name": "psr/http-message",
  2483. "version": "1.0.1",
  2484. "source": {
  2485. "type": "git",
  2486. "url": "https://github.com/php-fig/http-message.git",
  2487. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2488. },
  2489. "dist": {
  2490. "type": "zip",
  2491. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2492. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2493. "shasum": ""
  2494. },
  2495. "require": {
  2496. "php": ">=5.3.0"
  2497. },
  2498. "type": "library",
  2499. "extra": {
  2500. "branch-alias": {
  2501. "dev-master": "1.0.x-dev"
  2502. }
  2503. },
  2504. "autoload": {
  2505. "psr-4": {
  2506. "Psr\\Http\\Message\\": "src/"
  2507. }
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "MIT"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "PHP-FIG",
  2516. "homepage": "http://www.php-fig.org/"
  2517. }
  2518. ],
  2519. "description": "Common interface for HTTP messages",
  2520. "homepage": "https://github.com/php-fig/http-message",
  2521. "keywords": [
  2522. "http",
  2523. "http-message",
  2524. "psr",
  2525. "psr-7",
  2526. "request",
  2527. "response"
  2528. ],
  2529. "support": {
  2530. "source": "https://github.com/php-fig/http-message/tree/master"
  2531. },
  2532. "time": "2016-08-06T14:39:51+00:00"
  2533. },
  2534. {
  2535. "name": "psr/log",
  2536. "version": "1.1.3",
  2537. "source": {
  2538. "type": "git",
  2539. "url": "https://github.com/php-fig/log.git",
  2540. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2541. },
  2542. "dist": {
  2543. "type": "zip",
  2544. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2545. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2546. "shasum": ""
  2547. },
  2548. "require": {
  2549. "php": ">=5.3.0"
  2550. },
  2551. "type": "library",
  2552. "extra": {
  2553. "branch-alias": {
  2554. "dev-master": "1.1.x-dev"
  2555. }
  2556. },
  2557. "autoload": {
  2558. "psr-4": {
  2559. "Psr\\Log\\": "Psr/Log/"
  2560. }
  2561. },
  2562. "notification-url": "https://packagist.org/downloads/",
  2563. "license": [
  2564. "MIT"
  2565. ],
  2566. "authors": [
  2567. {
  2568. "name": "PHP-FIG",
  2569. "homepage": "http://www.php-fig.org/"
  2570. }
  2571. ],
  2572. "description": "Common interface for logging libraries",
  2573. "homepage": "https://github.com/php-fig/log",
  2574. "keywords": [
  2575. "log",
  2576. "psr",
  2577. "psr-3"
  2578. ],
  2579. "support": {
  2580. "source": "https://github.com/php-fig/log/tree/1.1.3"
  2581. },
  2582. "time": "2020-03-23T09:12:05+00:00"
  2583. },
  2584. {
  2585. "name": "psr/simple-cache",
  2586. "version": "1.0.1",
  2587. "source": {
  2588. "type": "git",
  2589. "url": "https://github.com/php-fig/simple-cache.git",
  2590. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2591. },
  2592. "dist": {
  2593. "type": "zip",
  2594. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2595. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2596. "shasum": ""
  2597. },
  2598. "require": {
  2599. "php": ">=5.3.0"
  2600. },
  2601. "type": "library",
  2602. "extra": {
  2603. "branch-alias": {
  2604. "dev-master": "1.0.x-dev"
  2605. }
  2606. },
  2607. "autoload": {
  2608. "psr-4": {
  2609. "Psr\\SimpleCache\\": "src/"
  2610. }
  2611. },
  2612. "notification-url": "https://packagist.org/downloads/",
  2613. "license": [
  2614. "MIT"
  2615. ],
  2616. "authors": [
  2617. {
  2618. "name": "PHP-FIG",
  2619. "homepage": "http://www.php-fig.org/"
  2620. }
  2621. ],
  2622. "description": "Common interfaces for simple caching",
  2623. "keywords": [
  2624. "cache",
  2625. "caching",
  2626. "psr",
  2627. "psr-16",
  2628. "simple-cache"
  2629. ],
  2630. "support": {
  2631. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2632. },
  2633. "time": "2017-10-23T01:57:42+00:00"
  2634. },
  2635. {
  2636. "name": "psy/psysh",
  2637. "version": "v0.10.5",
  2638. "source": {
  2639. "type": "git",
  2640. "url": "https://github.com/bobthecow/psysh.git",
  2641. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  2642. },
  2643. "dist": {
  2644. "type": "zip",
  2645. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  2646. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  2647. "shasum": ""
  2648. },
  2649. "require": {
  2650. "dnoegel/php-xdg-base-dir": "0.1.*",
  2651. "ext-json": "*",
  2652. "ext-tokenizer": "*",
  2653. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  2654. "php": "^8.0 || ^7.0 || ^5.5.9",
  2655. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  2656. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  2657. },
  2658. "require-dev": {
  2659. "bamarni/composer-bin-plugin": "^1.2",
  2660. "hoa/console": "3.17.*"
  2661. },
  2662. "suggest": {
  2663. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2664. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2665. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2666. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2667. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2668. },
  2669. "bin": [
  2670. "bin/psysh"
  2671. ],
  2672. "type": "library",
  2673. "extra": {
  2674. "branch-alias": {
  2675. "dev-master": "0.10.x-dev"
  2676. }
  2677. },
  2678. "autoload": {
  2679. "files": [
  2680. "src/functions.php"
  2681. ],
  2682. "psr-4": {
  2683. "Psy\\": "src/"
  2684. }
  2685. },
  2686. "notification-url": "https://packagist.org/downloads/",
  2687. "license": [
  2688. "MIT"
  2689. ],
  2690. "authors": [
  2691. {
  2692. "name": "Justin Hileman",
  2693. "email": "justin@justinhileman.info",
  2694. "homepage": "http://justinhileman.com"
  2695. }
  2696. ],
  2697. "description": "An interactive shell for modern PHP.",
  2698. "homepage": "http://psysh.org",
  2699. "keywords": [
  2700. "REPL",
  2701. "console",
  2702. "interactive",
  2703. "shell"
  2704. ],
  2705. "support": {
  2706. "issues": "https://github.com/bobthecow/psysh/issues",
  2707. "source": "https://github.com/bobthecow/psysh/tree/v0.10.5"
  2708. },
  2709. "time": "2020-12-04T02:51:30+00:00"
  2710. },
  2711. {
  2712. "name": "ralouphie/getallheaders",
  2713. "version": "3.0.3",
  2714. "source": {
  2715. "type": "git",
  2716. "url": "https://github.com/ralouphie/getallheaders.git",
  2717. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2718. },
  2719. "dist": {
  2720. "type": "zip",
  2721. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2722. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2723. "shasum": ""
  2724. },
  2725. "require": {
  2726. "php": ">=5.6"
  2727. },
  2728. "require-dev": {
  2729. "php-coveralls/php-coveralls": "^2.1",
  2730. "phpunit/phpunit": "^5 || ^6.5"
  2731. },
  2732. "type": "library",
  2733. "autoload": {
  2734. "files": [
  2735. "src/getallheaders.php"
  2736. ]
  2737. },
  2738. "notification-url": "https://packagist.org/downloads/",
  2739. "license": [
  2740. "MIT"
  2741. ],
  2742. "authors": [
  2743. {
  2744. "name": "Ralph Khattar",
  2745. "email": "ralph.khattar@gmail.com"
  2746. }
  2747. ],
  2748. "description": "A polyfill for getallheaders.",
  2749. "support": {
  2750. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2751. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2752. },
  2753. "time": "2019-03-08T08:55:37+00:00"
  2754. },
  2755. {
  2756. "name": "ramsey/collection",
  2757. "version": "1.1.1",
  2758. "source": {
  2759. "type": "git",
  2760. "url": "https://github.com/ramsey/collection.git",
  2761. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  2762. },
  2763. "dist": {
  2764. "type": "zip",
  2765. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  2766. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  2767. "shasum": ""
  2768. },
  2769. "require": {
  2770. "php": "^7.2 || ^8"
  2771. },
  2772. "require-dev": {
  2773. "captainhook/captainhook": "^5.3",
  2774. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2775. "ergebnis/composer-normalize": "^2.6",
  2776. "fzaninotto/faker": "^1.5",
  2777. "hamcrest/hamcrest-php": "^2",
  2778. "jangregor/phpstan-prophecy": "^0.6",
  2779. "mockery/mockery": "^1.3",
  2780. "phpstan/extension-installer": "^1",
  2781. "phpstan/phpstan": "^0.12.32",
  2782. "phpstan/phpstan-mockery": "^0.12.5",
  2783. "phpstan/phpstan-phpunit": "^0.12.11",
  2784. "phpunit/phpunit": "^8.5",
  2785. "psy/psysh": "^0.10.4",
  2786. "slevomat/coding-standard": "^6.3",
  2787. "squizlabs/php_codesniffer": "^3.5",
  2788. "vimeo/psalm": "^3.12.2"
  2789. },
  2790. "type": "library",
  2791. "autoload": {
  2792. "psr-4": {
  2793. "Ramsey\\Collection\\": "src/"
  2794. }
  2795. },
  2796. "notification-url": "https://packagist.org/downloads/",
  2797. "license": [
  2798. "MIT"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "Ben Ramsey",
  2803. "email": "ben@benramsey.com",
  2804. "homepage": "https://benramsey.com"
  2805. }
  2806. ],
  2807. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  2808. "keywords": [
  2809. "array",
  2810. "collection",
  2811. "hash",
  2812. "map",
  2813. "queue",
  2814. "set"
  2815. ],
  2816. "support": {
  2817. "issues": "https://github.com/ramsey/collection/issues",
  2818. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  2819. },
  2820. "funding": [
  2821. {
  2822. "url": "https://github.com/ramsey",
  2823. "type": "github"
  2824. }
  2825. ],
  2826. "time": "2020-09-10T20:58:17+00:00"
  2827. },
  2828. {
  2829. "name": "ramsey/uuid",
  2830. "version": "4.1.1",
  2831. "source": {
  2832. "type": "git",
  2833. "url": "https://github.com/ramsey/uuid.git",
  2834. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  2835. },
  2836. "dist": {
  2837. "type": "zip",
  2838. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  2839. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  2840. "shasum": ""
  2841. },
  2842. "require": {
  2843. "brick/math": "^0.8 || ^0.9",
  2844. "ext-json": "*",
  2845. "php": "^7.2 || ^8",
  2846. "ramsey/collection": "^1.0",
  2847. "symfony/polyfill-ctype": "^1.8"
  2848. },
  2849. "replace": {
  2850. "rhumsaa/uuid": "self.version"
  2851. },
  2852. "require-dev": {
  2853. "codeception/aspect-mock": "^3",
  2854. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  2855. "doctrine/annotations": "^1.8",
  2856. "goaop/framework": "^2",
  2857. "mockery/mockery": "^1.3",
  2858. "moontoast/math": "^1.1",
  2859. "paragonie/random-lib": "^2",
  2860. "php-mock/php-mock-mockery": "^1.3",
  2861. "php-mock/php-mock-phpunit": "^2.5",
  2862. "php-parallel-lint/php-parallel-lint": "^1.1",
  2863. "phpbench/phpbench": "^0.17.1",
  2864. "phpstan/extension-installer": "^1.0",
  2865. "phpstan/phpstan": "^0.12",
  2866. "phpstan/phpstan-mockery": "^0.12",
  2867. "phpstan/phpstan-phpunit": "^0.12",
  2868. "phpunit/phpunit": "^8.5",
  2869. "psy/psysh": "^0.10.0",
  2870. "slevomat/coding-standard": "^6.0",
  2871. "squizlabs/php_codesniffer": "^3.5",
  2872. "vimeo/psalm": "3.9.4"
  2873. },
  2874. "suggest": {
  2875. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2876. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2877. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2878. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2879. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2880. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2881. },
  2882. "type": "library",
  2883. "extra": {
  2884. "branch-alias": {
  2885. "dev-master": "4.x-dev"
  2886. }
  2887. },
  2888. "autoload": {
  2889. "psr-4": {
  2890. "Ramsey\\Uuid\\": "src/"
  2891. },
  2892. "files": [
  2893. "src/functions.php"
  2894. ]
  2895. },
  2896. "notification-url": "https://packagist.org/downloads/",
  2897. "license": [
  2898. "MIT"
  2899. ],
  2900. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2901. "homepage": "https://github.com/ramsey/uuid",
  2902. "keywords": [
  2903. "guid",
  2904. "identifier",
  2905. "uuid"
  2906. ],
  2907. "support": {
  2908. "issues": "https://github.com/ramsey/uuid/issues",
  2909. "rss": "https://github.com/ramsey/uuid/releases.atom",
  2910. "source": "https://github.com/ramsey/uuid"
  2911. },
  2912. "funding": [
  2913. {
  2914. "url": "https://github.com/ramsey",
  2915. "type": "github"
  2916. }
  2917. ],
  2918. "time": "2020-08-18T17:17:46+00:00"
  2919. },
  2920. {
  2921. "name": "swiftmailer/swiftmailer",
  2922. "version": "v6.2.4",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2926. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  2931. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  2932. "shasum": ""
  2933. },
  2934. "require": {
  2935. "egulias/email-validator": "^2.0",
  2936. "php": ">=7.0.0",
  2937. "symfony/polyfill-iconv": "^1.0",
  2938. "symfony/polyfill-intl-idn": "^1.10",
  2939. "symfony/polyfill-mbstring": "^1.0"
  2940. },
  2941. "require-dev": {
  2942. "mockery/mockery": "^1.0",
  2943. "symfony/phpunit-bridge": "^4.4|^5.0"
  2944. },
  2945. "suggest": {
  2946. "ext-intl": "Needed to support internationalized email addresses"
  2947. },
  2948. "type": "library",
  2949. "extra": {
  2950. "branch-alias": {
  2951. "dev-master": "6.2-dev"
  2952. }
  2953. },
  2954. "autoload": {
  2955. "files": [
  2956. "lib/swift_required.php"
  2957. ]
  2958. },
  2959. "notification-url": "https://packagist.org/downloads/",
  2960. "license": [
  2961. "MIT"
  2962. ],
  2963. "authors": [
  2964. {
  2965. "name": "Chris Corbyn"
  2966. },
  2967. {
  2968. "name": "Fabien Potencier",
  2969. "email": "fabien@symfony.com"
  2970. }
  2971. ],
  2972. "description": "Swiftmailer, free feature-rich PHP mailer",
  2973. "homepage": "https://swiftmailer.symfony.com",
  2974. "keywords": [
  2975. "email",
  2976. "mail",
  2977. "mailer"
  2978. ],
  2979. "support": {
  2980. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2981. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
  2982. },
  2983. "funding": [
  2984. {
  2985. "url": "https://github.com/fabpot",
  2986. "type": "github"
  2987. },
  2988. {
  2989. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2990. "type": "tidelift"
  2991. }
  2992. ],
  2993. "time": "2020-12-08T18:02:06+00:00"
  2994. },
  2995. {
  2996. "name": "symfony/console",
  2997. "version": "v5.2.1",
  2998. "source": {
  2999. "type": "git",
  3000. "url": "https://github.com/symfony/console.git",
  3001. "reference": "47c02526c532fb381374dab26df05e7313978976"
  3002. },
  3003. "dist": {
  3004. "type": "zip",
  3005. "url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976",
  3006. "reference": "47c02526c532fb381374dab26df05e7313978976",
  3007. "shasum": ""
  3008. },
  3009. "require": {
  3010. "php": ">=7.2.5",
  3011. "symfony/polyfill-mbstring": "~1.0",
  3012. "symfony/polyfill-php73": "^1.8",
  3013. "symfony/polyfill-php80": "^1.15",
  3014. "symfony/service-contracts": "^1.1|^2",
  3015. "symfony/string": "^5.1"
  3016. },
  3017. "conflict": {
  3018. "symfony/dependency-injection": "<4.4",
  3019. "symfony/dotenv": "<5.1",
  3020. "symfony/event-dispatcher": "<4.4",
  3021. "symfony/lock": "<4.4",
  3022. "symfony/process": "<4.4"
  3023. },
  3024. "provide": {
  3025. "psr/log-implementation": "1.0"
  3026. },
  3027. "require-dev": {
  3028. "psr/log": "~1.0",
  3029. "symfony/config": "^4.4|^5.0",
  3030. "symfony/dependency-injection": "^4.4|^5.0",
  3031. "symfony/event-dispatcher": "^4.4|^5.0",
  3032. "symfony/lock": "^4.4|^5.0",
  3033. "symfony/process": "^4.4|^5.0",
  3034. "symfony/var-dumper": "^4.4|^5.0"
  3035. },
  3036. "suggest": {
  3037. "psr/log": "For using the console logger",
  3038. "symfony/event-dispatcher": "",
  3039. "symfony/lock": "",
  3040. "symfony/process": ""
  3041. },
  3042. "type": "library",
  3043. "autoload": {
  3044. "psr-4": {
  3045. "Symfony\\Component\\Console\\": ""
  3046. },
  3047. "exclude-from-classmap": [
  3048. "/Tests/"
  3049. ]
  3050. },
  3051. "notification-url": "https://packagist.org/downloads/",
  3052. "license": [
  3053. "MIT"
  3054. ],
  3055. "authors": [
  3056. {
  3057. "name": "Fabien Potencier",
  3058. "email": "fabien@symfony.com"
  3059. },
  3060. {
  3061. "name": "Symfony Community",
  3062. "homepage": "https://symfony.com/contributors"
  3063. }
  3064. ],
  3065. "description": "Symfony Console Component",
  3066. "homepage": "https://symfony.com",
  3067. "keywords": [
  3068. "cli",
  3069. "command line",
  3070. "console",
  3071. "terminal"
  3072. ],
  3073. "support": {
  3074. "source": "https://github.com/symfony/console/tree/v5.2.1"
  3075. },
  3076. "funding": [
  3077. {
  3078. "url": "https://symfony.com/sponsor",
  3079. "type": "custom"
  3080. },
  3081. {
  3082. "url": "https://github.com/fabpot",
  3083. "type": "github"
  3084. },
  3085. {
  3086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3087. "type": "tidelift"
  3088. }
  3089. ],
  3090. "time": "2020-12-18T08:03:05+00:00"
  3091. },
  3092. {
  3093. "name": "symfony/css-selector",
  3094. "version": "v5.2.1",
  3095. "source": {
  3096. "type": "git",
  3097. "url": "https://github.com/symfony/css-selector.git",
  3098. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
  3099. },
  3100. "dist": {
  3101. "type": "zip",
  3102. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  3103. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  3104. "shasum": ""
  3105. },
  3106. "require": {
  3107. "php": ">=7.2.5"
  3108. },
  3109. "type": "library",
  3110. "autoload": {
  3111. "psr-4": {
  3112. "Symfony\\Component\\CssSelector\\": ""
  3113. },
  3114. "exclude-from-classmap": [
  3115. "/Tests/"
  3116. ]
  3117. },
  3118. "notification-url": "https://packagist.org/downloads/",
  3119. "license": [
  3120. "MIT"
  3121. ],
  3122. "authors": [
  3123. {
  3124. "name": "Fabien Potencier",
  3125. "email": "fabien@symfony.com"
  3126. },
  3127. {
  3128. "name": "Jean-François Simon",
  3129. "email": "jeanfrancois.simon@sensiolabs.com"
  3130. },
  3131. {
  3132. "name": "Symfony Community",
  3133. "homepage": "https://symfony.com/contributors"
  3134. }
  3135. ],
  3136. "description": "Symfony CssSelector Component",
  3137. "homepage": "https://symfony.com",
  3138. "support": {
  3139. "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
  3140. },
  3141. "funding": [
  3142. {
  3143. "url": "https://symfony.com/sponsor",
  3144. "type": "custom"
  3145. },
  3146. {
  3147. "url": "https://github.com/fabpot",
  3148. "type": "github"
  3149. },
  3150. {
  3151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3152. "type": "tidelift"
  3153. }
  3154. ],
  3155. "time": "2020-12-08T17:02:38+00:00"
  3156. },
  3157. {
  3158. "name": "symfony/deprecation-contracts",
  3159. "version": "v2.2.0",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://github.com/symfony/deprecation-contracts.git",
  3163. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3168. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3169. "shasum": ""
  3170. },
  3171. "require": {
  3172. "php": ">=7.1"
  3173. },
  3174. "type": "library",
  3175. "extra": {
  3176. "branch-alias": {
  3177. "dev-master": "2.2-dev"
  3178. },
  3179. "thanks": {
  3180. "name": "symfony/contracts",
  3181. "url": "https://github.com/symfony/contracts"
  3182. }
  3183. },
  3184. "autoload": {
  3185. "files": [
  3186. "function.php"
  3187. ]
  3188. },
  3189. "notification-url": "https://packagist.org/downloads/",
  3190. "license": [
  3191. "MIT"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "Nicolas Grekas",
  3196. "email": "p@tchwork.com"
  3197. },
  3198. {
  3199. "name": "Symfony Community",
  3200. "homepage": "https://symfony.com/contributors"
  3201. }
  3202. ],
  3203. "description": "A generic function and convention to trigger deprecation notices",
  3204. "homepage": "https://symfony.com",
  3205. "support": {
  3206. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  3207. },
  3208. "funding": [
  3209. {
  3210. "url": "https://symfony.com/sponsor",
  3211. "type": "custom"
  3212. },
  3213. {
  3214. "url": "https://github.com/fabpot",
  3215. "type": "github"
  3216. },
  3217. {
  3218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3219. "type": "tidelift"
  3220. }
  3221. ],
  3222. "time": "2020-09-07T11:33:47+00:00"
  3223. },
  3224. {
  3225. "name": "symfony/error-handler",
  3226. "version": "v5.2.1",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://github.com/symfony/error-handler.git",
  3230. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://api.github.com/repos/symfony/error-handler/zipball/59b190ce16ddf32771a22087b60f6dafd3407147",
  3235. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147",
  3236. "shasum": ""
  3237. },
  3238. "require": {
  3239. "php": ">=7.2.5",
  3240. "psr/log": "^1.0",
  3241. "symfony/polyfill-php80": "^1.15",
  3242. "symfony/var-dumper": "^4.4|^5.0"
  3243. },
  3244. "require-dev": {
  3245. "symfony/deprecation-contracts": "^2.1",
  3246. "symfony/http-kernel": "^4.4|^5.0",
  3247. "symfony/serializer": "^4.4|^5.0"
  3248. },
  3249. "type": "library",
  3250. "autoload": {
  3251. "psr-4": {
  3252. "Symfony\\Component\\ErrorHandler\\": ""
  3253. },
  3254. "exclude-from-classmap": [
  3255. "/Tests/"
  3256. ]
  3257. },
  3258. "notification-url": "https://packagist.org/downloads/",
  3259. "license": [
  3260. "MIT"
  3261. ],
  3262. "authors": [
  3263. {
  3264. "name": "Fabien Potencier",
  3265. "email": "fabien@symfony.com"
  3266. },
  3267. {
  3268. "name": "Symfony Community",
  3269. "homepage": "https://symfony.com/contributors"
  3270. }
  3271. ],
  3272. "description": "Symfony ErrorHandler Component",
  3273. "homepage": "https://symfony.com",
  3274. "support": {
  3275. "source": "https://github.com/symfony/error-handler/tree/v5.2.1"
  3276. },
  3277. "funding": [
  3278. {
  3279. "url": "https://symfony.com/sponsor",
  3280. "type": "custom"
  3281. },
  3282. {
  3283. "url": "https://github.com/fabpot",
  3284. "type": "github"
  3285. },
  3286. {
  3287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3288. "type": "tidelift"
  3289. }
  3290. ],
  3291. "time": "2020-12-09T18:54:12+00:00"
  3292. },
  3293. {
  3294. "name": "symfony/event-dispatcher",
  3295. "version": "v5.2.1",
  3296. "source": {
  3297. "type": "git",
  3298. "url": "https://github.com/symfony/event-dispatcher.git",
  3299. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
  3300. },
  3301. "dist": {
  3302. "type": "zip",
  3303. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
  3304. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
  3305. "shasum": ""
  3306. },
  3307. "require": {
  3308. "php": ">=7.2.5",
  3309. "symfony/deprecation-contracts": "^2.1",
  3310. "symfony/event-dispatcher-contracts": "^2",
  3311. "symfony/polyfill-php80": "^1.15"
  3312. },
  3313. "conflict": {
  3314. "symfony/dependency-injection": "<4.4"
  3315. },
  3316. "provide": {
  3317. "psr/event-dispatcher-implementation": "1.0",
  3318. "symfony/event-dispatcher-implementation": "2.0"
  3319. },
  3320. "require-dev": {
  3321. "psr/log": "~1.0",
  3322. "symfony/config": "^4.4|^5.0",
  3323. "symfony/dependency-injection": "^4.4|^5.0",
  3324. "symfony/error-handler": "^4.4|^5.0",
  3325. "symfony/expression-language": "^4.4|^5.0",
  3326. "symfony/http-foundation": "^4.4|^5.0",
  3327. "symfony/service-contracts": "^1.1|^2",
  3328. "symfony/stopwatch": "^4.4|^5.0"
  3329. },
  3330. "suggest": {
  3331. "symfony/dependency-injection": "",
  3332. "symfony/http-kernel": ""
  3333. },
  3334. "type": "library",
  3335. "autoload": {
  3336. "psr-4": {
  3337. "Symfony\\Component\\EventDispatcher\\": ""
  3338. },
  3339. "exclude-from-classmap": [
  3340. "/Tests/"
  3341. ]
  3342. },
  3343. "notification-url": "https://packagist.org/downloads/",
  3344. "license": [
  3345. "MIT"
  3346. ],
  3347. "authors": [
  3348. {
  3349. "name": "Fabien Potencier",
  3350. "email": "fabien@symfony.com"
  3351. },
  3352. {
  3353. "name": "Symfony Community",
  3354. "homepage": "https://symfony.com/contributors"
  3355. }
  3356. ],
  3357. "description": "Symfony EventDispatcher Component",
  3358. "homepage": "https://symfony.com",
  3359. "support": {
  3360. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.1"
  3361. },
  3362. "funding": [
  3363. {
  3364. "url": "https://symfony.com/sponsor",
  3365. "type": "custom"
  3366. },
  3367. {
  3368. "url": "https://github.com/fabpot",
  3369. "type": "github"
  3370. },
  3371. {
  3372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3373. "type": "tidelift"
  3374. }
  3375. ],
  3376. "time": "2020-12-18T08:03:05+00:00"
  3377. },
  3378. {
  3379. "name": "symfony/event-dispatcher-contracts",
  3380. "version": "v2.2.0",
  3381. "source": {
  3382. "type": "git",
  3383. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3384. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  3385. },
  3386. "dist": {
  3387. "type": "zip",
  3388. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  3389. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  3390. "shasum": ""
  3391. },
  3392. "require": {
  3393. "php": ">=7.2.5",
  3394. "psr/event-dispatcher": "^1"
  3395. },
  3396. "suggest": {
  3397. "symfony/event-dispatcher-implementation": ""
  3398. },
  3399. "type": "library",
  3400. "extra": {
  3401. "branch-alias": {
  3402. "dev-master": "2.2-dev"
  3403. },
  3404. "thanks": {
  3405. "name": "symfony/contracts",
  3406. "url": "https://github.com/symfony/contracts"
  3407. }
  3408. },
  3409. "autoload": {
  3410. "psr-4": {
  3411. "Symfony\\Contracts\\EventDispatcher\\": ""
  3412. }
  3413. },
  3414. "notification-url": "https://packagist.org/downloads/",
  3415. "license": [
  3416. "MIT"
  3417. ],
  3418. "authors": [
  3419. {
  3420. "name": "Nicolas Grekas",
  3421. "email": "p@tchwork.com"
  3422. },
  3423. {
  3424. "name": "Symfony Community",
  3425. "homepage": "https://symfony.com/contributors"
  3426. }
  3427. ],
  3428. "description": "Generic abstractions related to dispatching event",
  3429. "homepage": "https://symfony.com",
  3430. "keywords": [
  3431. "abstractions",
  3432. "contracts",
  3433. "decoupling",
  3434. "interfaces",
  3435. "interoperability",
  3436. "standards"
  3437. ],
  3438. "support": {
  3439. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  3440. },
  3441. "funding": [
  3442. {
  3443. "url": "https://symfony.com/sponsor",
  3444. "type": "custom"
  3445. },
  3446. {
  3447. "url": "https://github.com/fabpot",
  3448. "type": "github"
  3449. },
  3450. {
  3451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3452. "type": "tidelift"
  3453. }
  3454. ],
  3455. "time": "2020-09-07T11:33:47+00:00"
  3456. },
  3457. {
  3458. "name": "symfony/finder",
  3459. "version": "v5.2.1",
  3460. "source": {
  3461. "type": "git",
  3462. "url": "https://github.com/symfony/finder.git",
  3463. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
  3464. },
  3465. "dist": {
  3466. "type": "zip",
  3467. "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  3468. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  3469. "shasum": ""
  3470. },
  3471. "require": {
  3472. "php": ">=7.2.5"
  3473. },
  3474. "type": "library",
  3475. "autoload": {
  3476. "psr-4": {
  3477. "Symfony\\Component\\Finder\\": ""
  3478. },
  3479. "exclude-from-classmap": [
  3480. "/Tests/"
  3481. ]
  3482. },
  3483. "notification-url": "https://packagist.org/downloads/",
  3484. "license": [
  3485. "MIT"
  3486. ],
  3487. "authors": [
  3488. {
  3489. "name": "Fabien Potencier",
  3490. "email": "fabien@symfony.com"
  3491. },
  3492. {
  3493. "name": "Symfony Community",
  3494. "homepage": "https://symfony.com/contributors"
  3495. }
  3496. ],
  3497. "description": "Symfony Finder Component",
  3498. "homepage": "https://symfony.com",
  3499. "support": {
  3500. "source": "https://github.com/symfony/finder/tree/v5.2.1"
  3501. },
  3502. "funding": [
  3503. {
  3504. "url": "https://symfony.com/sponsor",
  3505. "type": "custom"
  3506. },
  3507. {
  3508. "url": "https://github.com/fabpot",
  3509. "type": "github"
  3510. },
  3511. {
  3512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3513. "type": "tidelift"
  3514. }
  3515. ],
  3516. "time": "2020-12-08T17:02:38+00:00"
  3517. },
  3518. {
  3519. "name": "symfony/http-client-contracts",
  3520. "version": "v2.3.1",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/symfony/http-client-contracts.git",
  3524. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  3529. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  3530. "shasum": ""
  3531. },
  3532. "require": {
  3533. "php": ">=7.2.5"
  3534. },
  3535. "suggest": {
  3536. "symfony/http-client-implementation": ""
  3537. },
  3538. "type": "library",
  3539. "extra": {
  3540. "branch-version": "2.3",
  3541. "branch-alias": {
  3542. "dev-main": "2.3-dev"
  3543. },
  3544. "thanks": {
  3545. "name": "symfony/contracts",
  3546. "url": "https://github.com/symfony/contracts"
  3547. }
  3548. },
  3549. "autoload": {
  3550. "psr-4": {
  3551. "Symfony\\Contracts\\HttpClient\\": ""
  3552. }
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "MIT"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "Nicolas Grekas",
  3561. "email": "p@tchwork.com"
  3562. },
  3563. {
  3564. "name": "Symfony Community",
  3565. "homepage": "https://symfony.com/contributors"
  3566. }
  3567. ],
  3568. "description": "Generic abstractions related to HTTP clients",
  3569. "homepage": "https://symfony.com",
  3570. "keywords": [
  3571. "abstractions",
  3572. "contracts",
  3573. "decoupling",
  3574. "interfaces",
  3575. "interoperability",
  3576. "standards"
  3577. ],
  3578. "support": {
  3579. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  3580. },
  3581. "funding": [
  3582. {
  3583. "url": "https://symfony.com/sponsor",
  3584. "type": "custom"
  3585. },
  3586. {
  3587. "url": "https://github.com/fabpot",
  3588. "type": "github"
  3589. },
  3590. {
  3591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3592. "type": "tidelift"
  3593. }
  3594. ],
  3595. "time": "2020-10-14T17:08:19+00:00"
  3596. },
  3597. {
  3598. "name": "symfony/http-foundation",
  3599. "version": "v5.2.1",
  3600. "source": {
  3601. "type": "git",
  3602. "url": "https://github.com/symfony/http-foundation.git",
  3603. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d"
  3604. },
  3605. "dist": {
  3606. "type": "zip",
  3607. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a1f6218b29897ab52acba58cfa905b83625bef8d",
  3608. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d",
  3609. "shasum": ""
  3610. },
  3611. "require": {
  3612. "php": ">=7.2.5",
  3613. "symfony/deprecation-contracts": "^2.1",
  3614. "symfony/polyfill-mbstring": "~1.1",
  3615. "symfony/polyfill-php80": "^1.15"
  3616. },
  3617. "require-dev": {
  3618. "predis/predis": "~1.0",
  3619. "symfony/cache": "^4.4|^5.0",
  3620. "symfony/expression-language": "^4.4|^5.0",
  3621. "symfony/mime": "^4.4|^5.0"
  3622. },
  3623. "suggest": {
  3624. "symfony/mime": "To use the file extension guesser"
  3625. },
  3626. "type": "library",
  3627. "autoload": {
  3628. "psr-4": {
  3629. "Symfony\\Component\\HttpFoundation\\": ""
  3630. },
  3631. "exclude-from-classmap": [
  3632. "/Tests/"
  3633. ]
  3634. },
  3635. "notification-url": "https://packagist.org/downloads/",
  3636. "license": [
  3637. "MIT"
  3638. ],
  3639. "authors": [
  3640. {
  3641. "name": "Fabien Potencier",
  3642. "email": "fabien@symfony.com"
  3643. },
  3644. {
  3645. "name": "Symfony Community",
  3646. "homepage": "https://symfony.com/contributors"
  3647. }
  3648. ],
  3649. "description": "Symfony HttpFoundation Component",
  3650. "homepage": "https://symfony.com",
  3651. "support": {
  3652. "source": "https://github.com/symfony/http-foundation/tree/v5.2.1"
  3653. },
  3654. "funding": [
  3655. {
  3656. "url": "https://symfony.com/sponsor",
  3657. "type": "custom"
  3658. },
  3659. {
  3660. "url": "https://github.com/fabpot",
  3661. "type": "github"
  3662. },
  3663. {
  3664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3665. "type": "tidelift"
  3666. }
  3667. ],
  3668. "time": "2020-12-18T10:00:10+00:00"
  3669. },
  3670. {
  3671. "name": "symfony/http-kernel",
  3672. "version": "v5.2.1",
  3673. "source": {
  3674. "type": "git",
  3675. "url": "https://github.com/symfony/http-kernel.git",
  3676. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647"
  3677. },
  3678. "dist": {
  3679. "type": "zip",
  3680. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1feb619286d819180f7b8bc0dc44f516d9c62647",
  3681. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647",
  3682. "shasum": ""
  3683. },
  3684. "require": {
  3685. "php": ">=7.2.5",
  3686. "psr/log": "~1.0",
  3687. "symfony/deprecation-contracts": "^2.1",
  3688. "symfony/error-handler": "^4.4|^5.0",
  3689. "symfony/event-dispatcher": "^5.0",
  3690. "symfony/http-client-contracts": "^1.1|^2",
  3691. "symfony/http-foundation": "^4.4|^5.0",
  3692. "symfony/polyfill-ctype": "^1.8",
  3693. "symfony/polyfill-php73": "^1.9",
  3694. "symfony/polyfill-php80": "^1.15"
  3695. },
  3696. "conflict": {
  3697. "symfony/browser-kit": "<4.4",
  3698. "symfony/cache": "<5.0",
  3699. "symfony/config": "<5.0",
  3700. "symfony/console": "<4.4",
  3701. "symfony/dependency-injection": "<5.1.8",
  3702. "symfony/doctrine-bridge": "<5.0",
  3703. "symfony/form": "<5.0",
  3704. "symfony/http-client": "<5.0",
  3705. "symfony/mailer": "<5.0",
  3706. "symfony/messenger": "<5.0",
  3707. "symfony/translation": "<5.0",
  3708. "symfony/twig-bridge": "<5.0",
  3709. "symfony/validator": "<5.0",
  3710. "twig/twig": "<2.4"
  3711. },
  3712. "provide": {
  3713. "psr/log-implementation": "1.0"
  3714. },
  3715. "require-dev": {
  3716. "psr/cache": "~1.0",
  3717. "symfony/browser-kit": "^4.4|^5.0",
  3718. "symfony/config": "^5.0",
  3719. "symfony/console": "^4.4|^5.0",
  3720. "symfony/css-selector": "^4.4|^5.0",
  3721. "symfony/dependency-injection": "^5.1.8",
  3722. "symfony/dom-crawler": "^4.4|^5.0",
  3723. "symfony/expression-language": "^4.4|^5.0",
  3724. "symfony/finder": "^4.4|^5.0",
  3725. "symfony/process": "^4.4|^5.0",
  3726. "symfony/routing": "^4.4|^5.0",
  3727. "symfony/stopwatch": "^4.4|^5.0",
  3728. "symfony/translation": "^4.4|^5.0",
  3729. "symfony/translation-contracts": "^1.1|^2",
  3730. "twig/twig": "^2.4|^3.0"
  3731. },
  3732. "suggest": {
  3733. "symfony/browser-kit": "",
  3734. "symfony/config": "",
  3735. "symfony/console": "",
  3736. "symfony/dependency-injection": ""
  3737. },
  3738. "type": "library",
  3739. "autoload": {
  3740. "psr-4": {
  3741. "Symfony\\Component\\HttpKernel\\": ""
  3742. },
  3743. "exclude-from-classmap": [
  3744. "/Tests/"
  3745. ]
  3746. },
  3747. "notification-url": "https://packagist.org/downloads/",
  3748. "license": [
  3749. "MIT"
  3750. ],
  3751. "authors": [
  3752. {
  3753. "name": "Fabien Potencier",
  3754. "email": "fabien@symfony.com"
  3755. },
  3756. {
  3757. "name": "Symfony Community",
  3758. "homepage": "https://symfony.com/contributors"
  3759. }
  3760. ],
  3761. "description": "Symfony HttpKernel Component",
  3762. "homepage": "https://symfony.com",
  3763. "support": {
  3764. "source": "https://github.com/symfony/http-kernel/tree/v5.2.1"
  3765. },
  3766. "funding": [
  3767. {
  3768. "url": "https://symfony.com/sponsor",
  3769. "type": "custom"
  3770. },
  3771. {
  3772. "url": "https://github.com/fabpot",
  3773. "type": "github"
  3774. },
  3775. {
  3776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3777. "type": "tidelift"
  3778. }
  3779. ],
  3780. "time": "2020-12-18T13:49:39+00:00"
  3781. },
  3782. {
  3783. "name": "symfony/mime",
  3784. "version": "v5.2.1",
  3785. "source": {
  3786. "type": "git",
  3787. "url": "https://github.com/symfony/mime.git",
  3788. "reference": "de97005aef7426ba008c46ba840fc301df577ada"
  3789. },
  3790. "dist": {
  3791. "type": "zip",
  3792. "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
  3793. "reference": "de97005aef7426ba008c46ba840fc301df577ada",
  3794. "shasum": ""
  3795. },
  3796. "require": {
  3797. "php": ">=7.2.5",
  3798. "symfony/deprecation-contracts": "^2.1",
  3799. "symfony/polyfill-intl-idn": "^1.10",
  3800. "symfony/polyfill-mbstring": "^1.0",
  3801. "symfony/polyfill-php80": "^1.15"
  3802. },
  3803. "conflict": {
  3804. "symfony/mailer": "<4.4"
  3805. },
  3806. "require-dev": {
  3807. "egulias/email-validator": "^2.1.10",
  3808. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3809. "symfony/dependency-injection": "^4.4|^5.0",
  3810. "symfony/property-access": "^4.4|^5.1",
  3811. "symfony/property-info": "^4.4|^5.1",
  3812. "symfony/serializer": "^5.2"
  3813. },
  3814. "type": "library",
  3815. "autoload": {
  3816. "psr-4": {
  3817. "Symfony\\Component\\Mime\\": ""
  3818. },
  3819. "exclude-from-classmap": [
  3820. "/Tests/"
  3821. ]
  3822. },
  3823. "notification-url": "https://packagist.org/downloads/",
  3824. "license": [
  3825. "MIT"
  3826. ],
  3827. "authors": [
  3828. {
  3829. "name": "Fabien Potencier",
  3830. "email": "fabien@symfony.com"
  3831. },
  3832. {
  3833. "name": "Symfony Community",
  3834. "homepage": "https://symfony.com/contributors"
  3835. }
  3836. ],
  3837. "description": "A library to manipulate MIME messages",
  3838. "homepage": "https://symfony.com",
  3839. "keywords": [
  3840. "mime",
  3841. "mime-type"
  3842. ],
  3843. "support": {
  3844. "source": "https://github.com/symfony/mime/tree/v5.2.1"
  3845. },
  3846. "funding": [
  3847. {
  3848. "url": "https://symfony.com/sponsor",
  3849. "type": "custom"
  3850. },
  3851. {
  3852. "url": "https://github.com/fabpot",
  3853. "type": "github"
  3854. },
  3855. {
  3856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3857. "type": "tidelift"
  3858. }
  3859. ],
  3860. "time": "2020-12-09T18:54:12+00:00"
  3861. },
  3862. {
  3863. "name": "symfony/polyfill-ctype",
  3864. "version": "v1.20.0",
  3865. "source": {
  3866. "type": "git",
  3867. "url": "https://github.com/symfony/polyfill-ctype.git",
  3868. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  3869. },
  3870. "dist": {
  3871. "type": "zip",
  3872. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  3873. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  3874. "shasum": ""
  3875. },
  3876. "require": {
  3877. "php": ">=7.1"
  3878. },
  3879. "suggest": {
  3880. "ext-ctype": "For best performance"
  3881. },
  3882. "type": "library",
  3883. "extra": {
  3884. "branch-alias": {
  3885. "dev-main": "1.20-dev"
  3886. },
  3887. "thanks": {
  3888. "name": "symfony/polyfill",
  3889. "url": "https://github.com/symfony/polyfill"
  3890. }
  3891. },
  3892. "autoload": {
  3893. "psr-4": {
  3894. "Symfony\\Polyfill\\Ctype\\": ""
  3895. },
  3896. "files": [
  3897. "bootstrap.php"
  3898. ]
  3899. },
  3900. "notification-url": "https://packagist.org/downloads/",
  3901. "license": [
  3902. "MIT"
  3903. ],
  3904. "authors": [
  3905. {
  3906. "name": "Gert de Pagter",
  3907. "email": "BackEndTea@gmail.com"
  3908. },
  3909. {
  3910. "name": "Symfony Community",
  3911. "homepage": "https://symfony.com/contributors"
  3912. }
  3913. ],
  3914. "description": "Symfony polyfill for ctype functions",
  3915. "homepage": "https://symfony.com",
  3916. "keywords": [
  3917. "compatibility",
  3918. "ctype",
  3919. "polyfill",
  3920. "portable"
  3921. ],
  3922. "support": {
  3923. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  3924. },
  3925. "funding": [
  3926. {
  3927. "url": "https://symfony.com/sponsor",
  3928. "type": "custom"
  3929. },
  3930. {
  3931. "url": "https://github.com/fabpot",
  3932. "type": "github"
  3933. },
  3934. {
  3935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3936. "type": "tidelift"
  3937. }
  3938. ],
  3939. "time": "2020-10-23T14:02:19+00:00"
  3940. },
  3941. {
  3942. "name": "symfony/polyfill-iconv",
  3943. "version": "v1.20.0",
  3944. "source": {
  3945. "type": "git",
  3946. "url": "https://github.com/symfony/polyfill-iconv.git",
  3947. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  3948. },
  3949. "dist": {
  3950. "type": "zip",
  3951. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  3952. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  3953. "shasum": ""
  3954. },
  3955. "require": {
  3956. "php": ">=7.1"
  3957. },
  3958. "suggest": {
  3959. "ext-iconv": "For best performance"
  3960. },
  3961. "type": "library",
  3962. "extra": {
  3963. "branch-alias": {
  3964. "dev-main": "1.20-dev"
  3965. },
  3966. "thanks": {
  3967. "name": "symfony/polyfill",
  3968. "url": "https://github.com/symfony/polyfill"
  3969. }
  3970. },
  3971. "autoload": {
  3972. "psr-4": {
  3973. "Symfony\\Polyfill\\Iconv\\": ""
  3974. },
  3975. "files": [
  3976. "bootstrap.php"
  3977. ]
  3978. },
  3979. "notification-url": "https://packagist.org/downloads/",
  3980. "license": [
  3981. "MIT"
  3982. ],
  3983. "authors": [
  3984. {
  3985. "name": "Nicolas Grekas",
  3986. "email": "p@tchwork.com"
  3987. },
  3988. {
  3989. "name": "Symfony Community",
  3990. "homepage": "https://symfony.com/contributors"
  3991. }
  3992. ],
  3993. "description": "Symfony polyfill for the Iconv extension",
  3994. "homepage": "https://symfony.com",
  3995. "keywords": [
  3996. "compatibility",
  3997. "iconv",
  3998. "polyfill",
  3999. "portable",
  4000. "shim"
  4001. ],
  4002. "support": {
  4003. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  4004. },
  4005. "funding": [
  4006. {
  4007. "url": "https://symfony.com/sponsor",
  4008. "type": "custom"
  4009. },
  4010. {
  4011. "url": "https://github.com/fabpot",
  4012. "type": "github"
  4013. },
  4014. {
  4015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4016. "type": "tidelift"
  4017. }
  4018. ],
  4019. "time": "2020-10-23T14:02:19+00:00"
  4020. },
  4021. {
  4022. "name": "symfony/polyfill-intl-grapheme",
  4023. "version": "v1.20.0",
  4024. "source": {
  4025. "type": "git",
  4026. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4027. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  4028. },
  4029. "dist": {
  4030. "type": "zip",
  4031. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  4032. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  4033. "shasum": ""
  4034. },
  4035. "require": {
  4036. "php": ">=7.1"
  4037. },
  4038. "suggest": {
  4039. "ext-intl": "For best performance"
  4040. },
  4041. "type": "library",
  4042. "extra": {
  4043. "branch-alias": {
  4044. "dev-main": "1.20-dev"
  4045. },
  4046. "thanks": {
  4047. "name": "symfony/polyfill",
  4048. "url": "https://github.com/symfony/polyfill"
  4049. }
  4050. },
  4051. "autoload": {
  4052. "psr-4": {
  4053. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4054. },
  4055. "files": [
  4056. "bootstrap.php"
  4057. ]
  4058. },
  4059. "notification-url": "https://packagist.org/downloads/",
  4060. "license": [
  4061. "MIT"
  4062. ],
  4063. "authors": [
  4064. {
  4065. "name": "Nicolas Grekas",
  4066. "email": "p@tchwork.com"
  4067. },
  4068. {
  4069. "name": "Symfony Community",
  4070. "homepage": "https://symfony.com/contributors"
  4071. }
  4072. ],
  4073. "description": "Symfony polyfill for intl's grapheme_* functions",
  4074. "homepage": "https://symfony.com",
  4075. "keywords": [
  4076. "compatibility",
  4077. "grapheme",
  4078. "intl",
  4079. "polyfill",
  4080. "portable",
  4081. "shim"
  4082. ],
  4083. "support": {
  4084. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  4085. },
  4086. "funding": [
  4087. {
  4088. "url": "https://symfony.com/sponsor",
  4089. "type": "custom"
  4090. },
  4091. {
  4092. "url": "https://github.com/fabpot",
  4093. "type": "github"
  4094. },
  4095. {
  4096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4097. "type": "tidelift"
  4098. }
  4099. ],
  4100. "time": "2020-10-23T14:02:19+00:00"
  4101. },
  4102. {
  4103. "name": "symfony/polyfill-intl-idn",
  4104. "version": "v1.20.0",
  4105. "source": {
  4106. "type": "git",
  4107. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4108. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  4109. },
  4110. "dist": {
  4111. "type": "zip",
  4112. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  4113. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  4114. "shasum": ""
  4115. },
  4116. "require": {
  4117. "php": ">=7.1",
  4118. "symfony/polyfill-intl-normalizer": "^1.10",
  4119. "symfony/polyfill-php72": "^1.10"
  4120. },
  4121. "suggest": {
  4122. "ext-intl": "For best performance"
  4123. },
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-main": "1.20-dev"
  4128. },
  4129. "thanks": {
  4130. "name": "symfony/polyfill",
  4131. "url": "https://github.com/symfony/polyfill"
  4132. }
  4133. },
  4134. "autoload": {
  4135. "psr-4": {
  4136. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4137. },
  4138. "files": [
  4139. "bootstrap.php"
  4140. ]
  4141. },
  4142. "notification-url": "https://packagist.org/downloads/",
  4143. "license": [
  4144. "MIT"
  4145. ],
  4146. "authors": [
  4147. {
  4148. "name": "Laurent Bassin",
  4149. "email": "laurent@bassin.info"
  4150. },
  4151. {
  4152. "name": "Trevor Rowbotham",
  4153. "email": "trevor.rowbotham@pm.me"
  4154. },
  4155. {
  4156. "name": "Symfony Community",
  4157. "homepage": "https://symfony.com/contributors"
  4158. }
  4159. ],
  4160. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4161. "homepage": "https://symfony.com",
  4162. "keywords": [
  4163. "compatibility",
  4164. "idn",
  4165. "intl",
  4166. "polyfill",
  4167. "portable",
  4168. "shim"
  4169. ],
  4170. "support": {
  4171. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  4172. },
  4173. "funding": [
  4174. {
  4175. "url": "https://symfony.com/sponsor",
  4176. "type": "custom"
  4177. },
  4178. {
  4179. "url": "https://github.com/fabpot",
  4180. "type": "github"
  4181. },
  4182. {
  4183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4184. "type": "tidelift"
  4185. }
  4186. ],
  4187. "time": "2020-10-23T14:02:19+00:00"
  4188. },
  4189. {
  4190. "name": "symfony/polyfill-intl-normalizer",
  4191. "version": "v1.20.0",
  4192. "source": {
  4193. "type": "git",
  4194. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4195. "reference": "727d1096295d807c309fb01a851577302394c897"
  4196. },
  4197. "dist": {
  4198. "type": "zip",
  4199. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  4200. "reference": "727d1096295d807c309fb01a851577302394c897",
  4201. "shasum": ""
  4202. },
  4203. "require": {
  4204. "php": ">=7.1"
  4205. },
  4206. "suggest": {
  4207. "ext-intl": "For best performance"
  4208. },
  4209. "type": "library",
  4210. "extra": {
  4211. "branch-alias": {
  4212. "dev-main": "1.20-dev"
  4213. },
  4214. "thanks": {
  4215. "name": "symfony/polyfill",
  4216. "url": "https://github.com/symfony/polyfill"
  4217. }
  4218. },
  4219. "autoload": {
  4220. "psr-4": {
  4221. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4222. },
  4223. "files": [
  4224. "bootstrap.php"
  4225. ],
  4226. "classmap": [
  4227. "Resources/stubs"
  4228. ]
  4229. },
  4230. "notification-url": "https://packagist.org/downloads/",
  4231. "license": [
  4232. "MIT"
  4233. ],
  4234. "authors": [
  4235. {
  4236. "name": "Nicolas Grekas",
  4237. "email": "p@tchwork.com"
  4238. },
  4239. {
  4240. "name": "Symfony Community",
  4241. "homepage": "https://symfony.com/contributors"
  4242. }
  4243. ],
  4244. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4245. "homepage": "https://symfony.com",
  4246. "keywords": [
  4247. "compatibility",
  4248. "intl",
  4249. "normalizer",
  4250. "polyfill",
  4251. "portable",
  4252. "shim"
  4253. ],
  4254. "support": {
  4255. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  4256. },
  4257. "funding": [
  4258. {
  4259. "url": "https://symfony.com/sponsor",
  4260. "type": "custom"
  4261. },
  4262. {
  4263. "url": "https://github.com/fabpot",
  4264. "type": "github"
  4265. },
  4266. {
  4267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4268. "type": "tidelift"
  4269. }
  4270. ],
  4271. "time": "2020-10-23T14:02:19+00:00"
  4272. },
  4273. {
  4274. "name": "symfony/polyfill-mbstring",
  4275. "version": "v1.20.0",
  4276. "source": {
  4277. "type": "git",
  4278. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4279. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  4280. },
  4281. "dist": {
  4282. "type": "zip",
  4283. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  4284. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  4285. "shasum": ""
  4286. },
  4287. "require": {
  4288. "php": ">=7.1"
  4289. },
  4290. "suggest": {
  4291. "ext-mbstring": "For best performance"
  4292. },
  4293. "type": "library",
  4294. "extra": {
  4295. "branch-alias": {
  4296. "dev-main": "1.20-dev"
  4297. },
  4298. "thanks": {
  4299. "name": "symfony/polyfill",
  4300. "url": "https://github.com/symfony/polyfill"
  4301. }
  4302. },
  4303. "autoload": {
  4304. "psr-4": {
  4305. "Symfony\\Polyfill\\Mbstring\\": ""
  4306. },
  4307. "files": [
  4308. "bootstrap.php"
  4309. ]
  4310. },
  4311. "notification-url": "https://packagist.org/downloads/",
  4312. "license": [
  4313. "MIT"
  4314. ],
  4315. "authors": [
  4316. {
  4317. "name": "Nicolas Grekas",
  4318. "email": "p@tchwork.com"
  4319. },
  4320. {
  4321. "name": "Symfony Community",
  4322. "homepage": "https://symfony.com/contributors"
  4323. }
  4324. ],
  4325. "description": "Symfony polyfill for the Mbstring extension",
  4326. "homepage": "https://symfony.com",
  4327. "keywords": [
  4328. "compatibility",
  4329. "mbstring",
  4330. "polyfill",
  4331. "portable",
  4332. "shim"
  4333. ],
  4334. "support": {
  4335. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  4336. },
  4337. "funding": [
  4338. {
  4339. "url": "https://symfony.com/sponsor",
  4340. "type": "custom"
  4341. },
  4342. {
  4343. "url": "https://github.com/fabpot",
  4344. "type": "github"
  4345. },
  4346. {
  4347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4348. "type": "tidelift"
  4349. }
  4350. ],
  4351. "time": "2020-10-23T14:02:19+00:00"
  4352. },
  4353. {
  4354. "name": "symfony/polyfill-php72",
  4355. "version": "v1.20.0",
  4356. "source": {
  4357. "type": "git",
  4358. "url": "https://github.com/symfony/polyfill-php72.git",
  4359. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  4360. },
  4361. "dist": {
  4362. "type": "zip",
  4363. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  4364. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  4365. "shasum": ""
  4366. },
  4367. "require": {
  4368. "php": ">=7.1"
  4369. },
  4370. "type": "library",
  4371. "extra": {
  4372. "branch-alias": {
  4373. "dev-main": "1.20-dev"
  4374. },
  4375. "thanks": {
  4376. "name": "symfony/polyfill",
  4377. "url": "https://github.com/symfony/polyfill"
  4378. }
  4379. },
  4380. "autoload": {
  4381. "psr-4": {
  4382. "Symfony\\Polyfill\\Php72\\": ""
  4383. },
  4384. "files": [
  4385. "bootstrap.php"
  4386. ]
  4387. },
  4388. "notification-url": "https://packagist.org/downloads/",
  4389. "license": [
  4390. "MIT"
  4391. ],
  4392. "authors": [
  4393. {
  4394. "name": "Nicolas Grekas",
  4395. "email": "p@tchwork.com"
  4396. },
  4397. {
  4398. "name": "Symfony Community",
  4399. "homepage": "https://symfony.com/contributors"
  4400. }
  4401. ],
  4402. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4403. "homepage": "https://symfony.com",
  4404. "keywords": [
  4405. "compatibility",
  4406. "polyfill",
  4407. "portable",
  4408. "shim"
  4409. ],
  4410. "support": {
  4411. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  4412. },
  4413. "funding": [
  4414. {
  4415. "url": "https://symfony.com/sponsor",
  4416. "type": "custom"
  4417. },
  4418. {
  4419. "url": "https://github.com/fabpot",
  4420. "type": "github"
  4421. },
  4422. {
  4423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4424. "type": "tidelift"
  4425. }
  4426. ],
  4427. "time": "2020-10-23T14:02:19+00:00"
  4428. },
  4429. {
  4430. "name": "symfony/polyfill-php73",
  4431. "version": "v1.20.0",
  4432. "source": {
  4433. "type": "git",
  4434. "url": "https://github.com/symfony/polyfill-php73.git",
  4435. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  4436. },
  4437. "dist": {
  4438. "type": "zip",
  4439. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  4440. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  4441. "shasum": ""
  4442. },
  4443. "require": {
  4444. "php": ">=7.1"
  4445. },
  4446. "type": "library",
  4447. "extra": {
  4448. "branch-alias": {
  4449. "dev-main": "1.20-dev"
  4450. },
  4451. "thanks": {
  4452. "name": "symfony/polyfill",
  4453. "url": "https://github.com/symfony/polyfill"
  4454. }
  4455. },
  4456. "autoload": {
  4457. "psr-4": {
  4458. "Symfony\\Polyfill\\Php73\\": ""
  4459. },
  4460. "files": [
  4461. "bootstrap.php"
  4462. ],
  4463. "classmap": [
  4464. "Resources/stubs"
  4465. ]
  4466. },
  4467. "notification-url": "https://packagist.org/downloads/",
  4468. "license": [
  4469. "MIT"
  4470. ],
  4471. "authors": [
  4472. {
  4473. "name": "Nicolas Grekas",
  4474. "email": "p@tchwork.com"
  4475. },
  4476. {
  4477. "name": "Symfony Community",
  4478. "homepage": "https://symfony.com/contributors"
  4479. }
  4480. ],
  4481. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4482. "homepage": "https://symfony.com",
  4483. "keywords": [
  4484. "compatibility",
  4485. "polyfill",
  4486. "portable",
  4487. "shim"
  4488. ],
  4489. "support": {
  4490. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  4491. },
  4492. "funding": [
  4493. {
  4494. "url": "https://symfony.com/sponsor",
  4495. "type": "custom"
  4496. },
  4497. {
  4498. "url": "https://github.com/fabpot",
  4499. "type": "github"
  4500. },
  4501. {
  4502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4503. "type": "tidelift"
  4504. }
  4505. ],
  4506. "time": "2020-10-23T14:02:19+00:00"
  4507. },
  4508. {
  4509. "name": "symfony/polyfill-php80",
  4510. "version": "v1.20.0",
  4511. "source": {
  4512. "type": "git",
  4513. "url": "https://github.com/symfony/polyfill-php80.git",
  4514. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  4515. },
  4516. "dist": {
  4517. "type": "zip",
  4518. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  4519. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  4520. "shasum": ""
  4521. },
  4522. "require": {
  4523. "php": ">=7.1"
  4524. },
  4525. "type": "library",
  4526. "extra": {
  4527. "branch-alias": {
  4528. "dev-main": "1.20-dev"
  4529. },
  4530. "thanks": {
  4531. "name": "symfony/polyfill",
  4532. "url": "https://github.com/symfony/polyfill"
  4533. }
  4534. },
  4535. "autoload": {
  4536. "psr-4": {
  4537. "Symfony\\Polyfill\\Php80\\": ""
  4538. },
  4539. "files": [
  4540. "bootstrap.php"
  4541. ],
  4542. "classmap": [
  4543. "Resources/stubs"
  4544. ]
  4545. },
  4546. "notification-url": "https://packagist.org/downloads/",
  4547. "license": [
  4548. "MIT"
  4549. ],
  4550. "authors": [
  4551. {
  4552. "name": "Ion Bazan",
  4553. "email": "ion.bazan@gmail.com"
  4554. },
  4555. {
  4556. "name": "Nicolas Grekas",
  4557. "email": "p@tchwork.com"
  4558. },
  4559. {
  4560. "name": "Symfony Community",
  4561. "homepage": "https://symfony.com/contributors"
  4562. }
  4563. ],
  4564. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4565. "homepage": "https://symfony.com",
  4566. "keywords": [
  4567. "compatibility",
  4568. "polyfill",
  4569. "portable",
  4570. "shim"
  4571. ],
  4572. "support": {
  4573. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  4574. },
  4575. "funding": [
  4576. {
  4577. "url": "https://symfony.com/sponsor",
  4578. "type": "custom"
  4579. },
  4580. {
  4581. "url": "https://github.com/fabpot",
  4582. "type": "github"
  4583. },
  4584. {
  4585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4586. "type": "tidelift"
  4587. }
  4588. ],
  4589. "time": "2020-10-23T14:02:19+00:00"
  4590. },
  4591. {
  4592. "name": "symfony/process",
  4593. "version": "v5.2.1",
  4594. "source": {
  4595. "type": "git",
  4596. "url": "https://github.com/symfony/process.git",
  4597. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
  4598. },
  4599. "dist": {
  4600. "type": "zip",
  4601. "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
  4602. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
  4603. "shasum": ""
  4604. },
  4605. "require": {
  4606. "php": ">=7.2.5",
  4607. "symfony/polyfill-php80": "^1.15"
  4608. },
  4609. "type": "library",
  4610. "autoload": {
  4611. "psr-4": {
  4612. "Symfony\\Component\\Process\\": ""
  4613. },
  4614. "exclude-from-classmap": [
  4615. "/Tests/"
  4616. ]
  4617. },
  4618. "notification-url": "https://packagist.org/downloads/",
  4619. "license": [
  4620. "MIT"
  4621. ],
  4622. "authors": [
  4623. {
  4624. "name": "Fabien Potencier",
  4625. "email": "fabien@symfony.com"
  4626. },
  4627. {
  4628. "name": "Symfony Community",
  4629. "homepage": "https://symfony.com/contributors"
  4630. }
  4631. ],
  4632. "description": "Symfony Process Component",
  4633. "homepage": "https://symfony.com",
  4634. "support": {
  4635. "source": "https://github.com/symfony/process/tree/v5.2.1"
  4636. },
  4637. "funding": [
  4638. {
  4639. "url": "https://symfony.com/sponsor",
  4640. "type": "custom"
  4641. },
  4642. {
  4643. "url": "https://github.com/fabpot",
  4644. "type": "github"
  4645. },
  4646. {
  4647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4648. "type": "tidelift"
  4649. }
  4650. ],
  4651. "time": "2020-12-08T17:03:37+00:00"
  4652. },
  4653. {
  4654. "name": "symfony/routing",
  4655. "version": "v5.2.1",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/symfony/routing.git",
  4659. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/symfony/routing/zipball/934ac2720dcc878a47a45c986b483a7ee7193620",
  4664. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620",
  4665. "shasum": ""
  4666. },
  4667. "require": {
  4668. "php": ">=7.2.5",
  4669. "symfony/deprecation-contracts": "^2.1",
  4670. "symfony/polyfill-php80": "^1.15"
  4671. },
  4672. "conflict": {
  4673. "symfony/config": "<5.0",
  4674. "symfony/dependency-injection": "<4.4",
  4675. "symfony/yaml": "<4.4"
  4676. },
  4677. "require-dev": {
  4678. "doctrine/annotations": "^1.7",
  4679. "psr/log": "~1.0",
  4680. "symfony/config": "^5.0",
  4681. "symfony/dependency-injection": "^4.4|^5.0",
  4682. "symfony/expression-language": "^4.4|^5.0",
  4683. "symfony/http-foundation": "^4.4|^5.0",
  4684. "symfony/yaml": "^4.4|^5.0"
  4685. },
  4686. "suggest": {
  4687. "doctrine/annotations": "For using the annotation loader",
  4688. "symfony/config": "For using the all-in-one router or any loader",
  4689. "symfony/expression-language": "For using expression matching",
  4690. "symfony/http-foundation": "For using a Symfony Request object",
  4691. "symfony/yaml": "For using the YAML loader"
  4692. },
  4693. "type": "library",
  4694. "autoload": {
  4695. "psr-4": {
  4696. "Symfony\\Component\\Routing\\": ""
  4697. },
  4698. "exclude-from-classmap": [
  4699. "/Tests/"
  4700. ]
  4701. },
  4702. "notification-url": "https://packagist.org/downloads/",
  4703. "license": [
  4704. "MIT"
  4705. ],
  4706. "authors": [
  4707. {
  4708. "name": "Fabien Potencier",
  4709. "email": "fabien@symfony.com"
  4710. },
  4711. {
  4712. "name": "Symfony Community",
  4713. "homepage": "https://symfony.com/contributors"
  4714. }
  4715. ],
  4716. "description": "Symfony Routing Component",
  4717. "homepage": "https://symfony.com",
  4718. "keywords": [
  4719. "router",
  4720. "routing",
  4721. "uri",
  4722. "url"
  4723. ],
  4724. "support": {
  4725. "source": "https://github.com/symfony/routing/tree/v5.2.1"
  4726. },
  4727. "funding": [
  4728. {
  4729. "url": "https://symfony.com/sponsor",
  4730. "type": "custom"
  4731. },
  4732. {
  4733. "url": "https://github.com/fabpot",
  4734. "type": "github"
  4735. },
  4736. {
  4737. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4738. "type": "tidelift"
  4739. }
  4740. ],
  4741. "time": "2020-12-08T17:03:37+00:00"
  4742. },
  4743. {
  4744. "name": "symfony/service-contracts",
  4745. "version": "v2.2.0",
  4746. "source": {
  4747. "type": "git",
  4748. "url": "https://github.com/symfony/service-contracts.git",
  4749. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  4750. },
  4751. "dist": {
  4752. "type": "zip",
  4753. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  4754. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  4755. "shasum": ""
  4756. },
  4757. "require": {
  4758. "php": ">=7.2.5",
  4759. "psr/container": "^1.0"
  4760. },
  4761. "suggest": {
  4762. "symfony/service-implementation": ""
  4763. },
  4764. "type": "library",
  4765. "extra": {
  4766. "branch-alias": {
  4767. "dev-master": "2.2-dev"
  4768. },
  4769. "thanks": {
  4770. "name": "symfony/contracts",
  4771. "url": "https://github.com/symfony/contracts"
  4772. }
  4773. },
  4774. "autoload": {
  4775. "psr-4": {
  4776. "Symfony\\Contracts\\Service\\": ""
  4777. }
  4778. },
  4779. "notification-url": "https://packagist.org/downloads/",
  4780. "license": [
  4781. "MIT"
  4782. ],
  4783. "authors": [
  4784. {
  4785. "name": "Nicolas Grekas",
  4786. "email": "p@tchwork.com"
  4787. },
  4788. {
  4789. "name": "Symfony Community",
  4790. "homepage": "https://symfony.com/contributors"
  4791. }
  4792. ],
  4793. "description": "Generic abstractions related to writing services",
  4794. "homepage": "https://symfony.com",
  4795. "keywords": [
  4796. "abstractions",
  4797. "contracts",
  4798. "decoupling",
  4799. "interfaces",
  4800. "interoperability",
  4801. "standards"
  4802. ],
  4803. "support": {
  4804. "source": "https://github.com/symfony/service-contracts/tree/master"
  4805. },
  4806. "funding": [
  4807. {
  4808. "url": "https://symfony.com/sponsor",
  4809. "type": "custom"
  4810. },
  4811. {
  4812. "url": "https://github.com/fabpot",
  4813. "type": "github"
  4814. },
  4815. {
  4816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4817. "type": "tidelift"
  4818. }
  4819. ],
  4820. "time": "2020-09-07T11:33:47+00:00"
  4821. },
  4822. {
  4823. "name": "symfony/string",
  4824. "version": "v5.2.1",
  4825. "source": {
  4826. "type": "git",
  4827. "url": "https://github.com/symfony/string.git",
  4828. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed"
  4829. },
  4830. "dist": {
  4831. "type": "zip",
  4832. "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  4833. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  4834. "shasum": ""
  4835. },
  4836. "require": {
  4837. "php": ">=7.2.5",
  4838. "symfony/polyfill-ctype": "~1.8",
  4839. "symfony/polyfill-intl-grapheme": "~1.0",
  4840. "symfony/polyfill-intl-normalizer": "~1.0",
  4841. "symfony/polyfill-mbstring": "~1.0",
  4842. "symfony/polyfill-php80": "~1.15"
  4843. },
  4844. "require-dev": {
  4845. "symfony/error-handler": "^4.4|^5.0",
  4846. "symfony/http-client": "^4.4|^5.0",
  4847. "symfony/translation-contracts": "^1.1|^2",
  4848. "symfony/var-exporter": "^4.4|^5.0"
  4849. },
  4850. "type": "library",
  4851. "autoload": {
  4852. "psr-4": {
  4853. "Symfony\\Component\\String\\": ""
  4854. },
  4855. "files": [
  4856. "Resources/functions.php"
  4857. ],
  4858. "exclude-from-classmap": [
  4859. "/Tests/"
  4860. ]
  4861. },
  4862. "notification-url": "https://packagist.org/downloads/",
  4863. "license": [
  4864. "MIT"
  4865. ],
  4866. "authors": [
  4867. {
  4868. "name": "Nicolas Grekas",
  4869. "email": "p@tchwork.com"
  4870. },
  4871. {
  4872. "name": "Symfony Community",
  4873. "homepage": "https://symfony.com/contributors"
  4874. }
  4875. ],
  4876. "description": "Symfony String component",
  4877. "homepage": "https://symfony.com",
  4878. "keywords": [
  4879. "grapheme",
  4880. "i18n",
  4881. "string",
  4882. "unicode",
  4883. "utf-8",
  4884. "utf8"
  4885. ],
  4886. "support": {
  4887. "source": "https://github.com/symfony/string/tree/v5.2.1"
  4888. },
  4889. "funding": [
  4890. {
  4891. "url": "https://symfony.com/sponsor",
  4892. "type": "custom"
  4893. },
  4894. {
  4895. "url": "https://github.com/fabpot",
  4896. "type": "github"
  4897. },
  4898. {
  4899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4900. "type": "tidelift"
  4901. }
  4902. ],
  4903. "time": "2020-12-05T07:33:16+00:00"
  4904. },
  4905. {
  4906. "name": "symfony/translation",
  4907. "version": "v5.2.1",
  4908. "source": {
  4909. "type": "git",
  4910. "url": "https://github.com/symfony/translation.git",
  4911. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70"
  4912. },
  4913. "dist": {
  4914. "type": "zip",
  4915. "url": "https://api.github.com/repos/symfony/translation/zipball/a04209ba0d1391c828e5b2373181dac63c52ee70",
  4916. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70",
  4917. "shasum": ""
  4918. },
  4919. "require": {
  4920. "php": ">=7.2.5",
  4921. "symfony/polyfill-mbstring": "~1.0",
  4922. "symfony/polyfill-php80": "^1.15",
  4923. "symfony/translation-contracts": "^2.3"
  4924. },
  4925. "conflict": {
  4926. "symfony/config": "<4.4",
  4927. "symfony/dependency-injection": "<5.0",
  4928. "symfony/http-kernel": "<5.0",
  4929. "symfony/twig-bundle": "<5.0",
  4930. "symfony/yaml": "<4.4"
  4931. },
  4932. "provide": {
  4933. "symfony/translation-implementation": "2.0"
  4934. },
  4935. "require-dev": {
  4936. "psr/log": "~1.0",
  4937. "symfony/config": "^4.4|^5.0",
  4938. "symfony/console": "^4.4|^5.0",
  4939. "symfony/dependency-injection": "^5.0",
  4940. "symfony/finder": "^4.4|^5.0",
  4941. "symfony/http-kernel": "^5.0",
  4942. "symfony/intl": "^4.4|^5.0",
  4943. "symfony/service-contracts": "^1.1.2|^2",
  4944. "symfony/yaml": "^4.4|^5.0"
  4945. },
  4946. "suggest": {
  4947. "psr/log-implementation": "To use logging capability in translator",
  4948. "symfony/config": "",
  4949. "symfony/yaml": ""
  4950. },
  4951. "type": "library",
  4952. "autoload": {
  4953. "files": [
  4954. "Resources/functions.php"
  4955. ],
  4956. "psr-4": {
  4957. "Symfony\\Component\\Translation\\": ""
  4958. },
  4959. "exclude-from-classmap": [
  4960. "/Tests/"
  4961. ]
  4962. },
  4963. "notification-url": "https://packagist.org/downloads/",
  4964. "license": [
  4965. "MIT"
  4966. ],
  4967. "authors": [
  4968. {
  4969. "name": "Fabien Potencier",
  4970. "email": "fabien@symfony.com"
  4971. },
  4972. {
  4973. "name": "Symfony Community",
  4974. "homepage": "https://symfony.com/contributors"
  4975. }
  4976. ],
  4977. "description": "Symfony Translation Component",
  4978. "homepage": "https://symfony.com",
  4979. "support": {
  4980. "source": "https://github.com/symfony/translation/tree/v5.2.1"
  4981. },
  4982. "funding": [
  4983. {
  4984. "url": "https://symfony.com/sponsor",
  4985. "type": "custom"
  4986. },
  4987. {
  4988. "url": "https://github.com/fabpot",
  4989. "type": "github"
  4990. },
  4991. {
  4992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4993. "type": "tidelift"
  4994. }
  4995. ],
  4996. "time": "2020-12-08T17:03:37+00:00"
  4997. },
  4998. {
  4999. "name": "symfony/translation-contracts",
  5000. "version": "v2.3.0",
  5001. "source": {
  5002. "type": "git",
  5003. "url": "https://github.com/symfony/translation-contracts.git",
  5004. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  5005. },
  5006. "dist": {
  5007. "type": "zip",
  5008. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  5009. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  5010. "shasum": ""
  5011. },
  5012. "require": {
  5013. "php": ">=7.2.5"
  5014. },
  5015. "suggest": {
  5016. "symfony/translation-implementation": ""
  5017. },
  5018. "type": "library",
  5019. "extra": {
  5020. "branch-alias": {
  5021. "dev-master": "2.3-dev"
  5022. },
  5023. "thanks": {
  5024. "name": "symfony/contracts",
  5025. "url": "https://github.com/symfony/contracts"
  5026. }
  5027. },
  5028. "autoload": {
  5029. "psr-4": {
  5030. "Symfony\\Contracts\\Translation\\": ""
  5031. }
  5032. },
  5033. "notification-url": "https://packagist.org/downloads/",
  5034. "license": [
  5035. "MIT"
  5036. ],
  5037. "authors": [
  5038. {
  5039. "name": "Nicolas Grekas",
  5040. "email": "p@tchwork.com"
  5041. },
  5042. {
  5043. "name": "Symfony Community",
  5044. "homepage": "https://symfony.com/contributors"
  5045. }
  5046. ],
  5047. "description": "Generic abstractions related to translation",
  5048. "homepage": "https://symfony.com",
  5049. "keywords": [
  5050. "abstractions",
  5051. "contracts",
  5052. "decoupling",
  5053. "interfaces",
  5054. "interoperability",
  5055. "standards"
  5056. ],
  5057. "support": {
  5058. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  5059. },
  5060. "funding": [
  5061. {
  5062. "url": "https://symfony.com/sponsor",
  5063. "type": "custom"
  5064. },
  5065. {
  5066. "url": "https://github.com/fabpot",
  5067. "type": "github"
  5068. },
  5069. {
  5070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5071. "type": "tidelift"
  5072. }
  5073. ],
  5074. "time": "2020-09-28T13:05:58+00:00"
  5075. },
  5076. {
  5077. "name": "symfony/var-dumper",
  5078. "version": "v5.2.1",
  5079. "source": {
  5080. "type": "git",
  5081. "url": "https://github.com/symfony/var-dumper.git",
  5082. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089"
  5083. },
  5084. "dist": {
  5085. "type": "zip",
  5086. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  5087. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  5088. "shasum": ""
  5089. },
  5090. "require": {
  5091. "php": ">=7.2.5",
  5092. "symfony/polyfill-mbstring": "~1.0",
  5093. "symfony/polyfill-php80": "^1.15"
  5094. },
  5095. "conflict": {
  5096. "phpunit/phpunit": "<5.4.3",
  5097. "symfony/console": "<4.4"
  5098. },
  5099. "require-dev": {
  5100. "ext-iconv": "*",
  5101. "symfony/console": "^4.4|^5.0",
  5102. "symfony/process": "^4.4|^5.0",
  5103. "twig/twig": "^2.4|^3.0"
  5104. },
  5105. "suggest": {
  5106. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5107. "ext-intl": "To show region name in time zone dump",
  5108. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5109. },
  5110. "bin": [
  5111. "Resources/bin/var-dump-server"
  5112. ],
  5113. "type": "library",
  5114. "autoload": {
  5115. "files": [
  5116. "Resources/functions/dump.php"
  5117. ],
  5118. "psr-4": {
  5119. "Symfony\\Component\\VarDumper\\": ""
  5120. },
  5121. "exclude-from-classmap": [
  5122. "/Tests/"
  5123. ]
  5124. },
  5125. "notification-url": "https://packagist.org/downloads/",
  5126. "license": [
  5127. "MIT"
  5128. ],
  5129. "authors": [
  5130. {
  5131. "name": "Nicolas Grekas",
  5132. "email": "p@tchwork.com"
  5133. },
  5134. {
  5135. "name": "Symfony Community",
  5136. "homepage": "https://symfony.com/contributors"
  5137. }
  5138. ],
  5139. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5140. "homepage": "https://symfony.com",
  5141. "keywords": [
  5142. "debug",
  5143. "dump"
  5144. ],
  5145. "support": {
  5146. "source": "https://github.com/symfony/var-dumper/tree/v5.2.1"
  5147. },
  5148. "funding": [
  5149. {
  5150. "url": "https://symfony.com/sponsor",
  5151. "type": "custom"
  5152. },
  5153. {
  5154. "url": "https://github.com/fabpot",
  5155. "type": "github"
  5156. },
  5157. {
  5158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5159. "type": "tidelift"
  5160. }
  5161. ],
  5162. "time": "2020-12-16T17:02:19+00:00"
  5163. },
  5164. {
  5165. "name": "tijsverkoyen/css-to-inline-styles",
  5166. "version": "2.2.3",
  5167. "source": {
  5168. "type": "git",
  5169. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5170. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  5171. },
  5172. "dist": {
  5173. "type": "zip",
  5174. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  5175. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  5176. "shasum": ""
  5177. },
  5178. "require": {
  5179. "ext-dom": "*",
  5180. "ext-libxml": "*",
  5181. "php": "^5.5 || ^7.0 || ^8.0",
  5182. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  5183. },
  5184. "require-dev": {
  5185. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  5186. },
  5187. "type": "library",
  5188. "extra": {
  5189. "branch-alias": {
  5190. "dev-master": "2.2.x-dev"
  5191. }
  5192. },
  5193. "autoload": {
  5194. "psr-4": {
  5195. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5196. }
  5197. },
  5198. "notification-url": "https://packagist.org/downloads/",
  5199. "license": [
  5200. "BSD-3-Clause"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "Tijs Verkoyen",
  5205. "email": "css_to_inline_styles@verkoyen.eu",
  5206. "role": "Developer"
  5207. }
  5208. ],
  5209. "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.",
  5210. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5211. "support": {
  5212. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5213. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  5214. },
  5215. "time": "2020-07-13T06:12:54+00:00"
  5216. },
  5217. {
  5218. "name": "vlucas/phpdotenv",
  5219. "version": "v5.2.0",
  5220. "source": {
  5221. "type": "git",
  5222. "url": "https://github.com/vlucas/phpdotenv.git",
  5223. "reference": "fba64139db67123c7a57072e5f8d3db10d160b66"
  5224. },
  5225. "dist": {
  5226. "type": "zip",
  5227. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/fba64139db67123c7a57072e5f8d3db10d160b66",
  5228. "reference": "fba64139db67123c7a57072e5f8d3db10d160b66",
  5229. "shasum": ""
  5230. },
  5231. "require": {
  5232. "ext-pcre": "*",
  5233. "graham-campbell/result-type": "^1.0.1",
  5234. "php": "^7.1.3 || ^8.0",
  5235. "phpoption/phpoption": "^1.7.4",
  5236. "symfony/polyfill-ctype": "^1.17",
  5237. "symfony/polyfill-mbstring": "^1.17",
  5238. "symfony/polyfill-php80": "^1.17"
  5239. },
  5240. "require-dev": {
  5241. "bamarni/composer-bin-plugin": "^1.4.1",
  5242. "ext-filter": "*",
  5243. "phpunit/phpunit": "^7.5.20 || ^8.5.2 || ^9.0"
  5244. },
  5245. "suggest": {
  5246. "ext-filter": "Required to use the boolean validator."
  5247. },
  5248. "type": "library",
  5249. "extra": {
  5250. "branch-alias": {
  5251. "dev-master": "5.2-dev"
  5252. }
  5253. },
  5254. "autoload": {
  5255. "psr-4": {
  5256. "Dotenv\\": "src/"
  5257. }
  5258. },
  5259. "notification-url": "https://packagist.org/downloads/",
  5260. "license": [
  5261. "BSD-3-Clause"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "Graham Campbell",
  5266. "email": "graham@alt-three.com",
  5267. "homepage": "https://gjcampbell.co.uk/"
  5268. },
  5269. {
  5270. "name": "Vance Lucas",
  5271. "email": "vance@vancelucas.com",
  5272. "homepage": "https://vancelucas.com/"
  5273. }
  5274. ],
  5275. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5276. "keywords": [
  5277. "dotenv",
  5278. "env",
  5279. "environment"
  5280. ],
  5281. "support": {
  5282. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5283. "source": "https://github.com/vlucas/phpdotenv/tree/v5.2.0"
  5284. },
  5285. "funding": [
  5286. {
  5287. "url": "https://github.com/GrahamCampbell",
  5288. "type": "github"
  5289. },
  5290. {
  5291. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5292. "type": "tidelift"
  5293. }
  5294. ],
  5295. "time": "2020-09-14T15:57:31+00:00"
  5296. },
  5297. {
  5298. "name": "voku/portable-ascii",
  5299. "version": "1.5.6",
  5300. "source": {
  5301. "type": "git",
  5302. "url": "https://github.com/voku/portable-ascii.git",
  5303. "reference": "80953678b19901e5165c56752d087fc11526017c"
  5304. },
  5305. "dist": {
  5306. "type": "zip",
  5307. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  5308. "reference": "80953678b19901e5165c56752d087fc11526017c",
  5309. "shasum": ""
  5310. },
  5311. "require": {
  5312. "php": ">=7.0.0"
  5313. },
  5314. "require-dev": {
  5315. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5316. },
  5317. "suggest": {
  5318. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5319. },
  5320. "type": "library",
  5321. "autoload": {
  5322. "psr-4": {
  5323. "voku\\": "src/voku/"
  5324. }
  5325. },
  5326. "notification-url": "https://packagist.org/downloads/",
  5327. "license": [
  5328. "MIT"
  5329. ],
  5330. "authors": [
  5331. {
  5332. "name": "Lars Moelleken",
  5333. "homepage": "http://www.moelleken.org/"
  5334. }
  5335. ],
  5336. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5337. "homepage": "https://github.com/voku/portable-ascii",
  5338. "keywords": [
  5339. "ascii",
  5340. "clean",
  5341. "php"
  5342. ],
  5343. "support": {
  5344. "issues": "https://github.com/voku/portable-ascii/issues",
  5345. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  5346. },
  5347. "funding": [
  5348. {
  5349. "url": "https://www.paypal.me/moelleken",
  5350. "type": "custom"
  5351. },
  5352. {
  5353. "url": "https://github.com/voku",
  5354. "type": "github"
  5355. },
  5356. {
  5357. "url": "https://opencollective.com/portable-ascii",
  5358. "type": "open_collective"
  5359. },
  5360. {
  5361. "url": "https://www.patreon.com/voku",
  5362. "type": "patreon"
  5363. },
  5364. {
  5365. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5366. "type": "tidelift"
  5367. }
  5368. ],
  5369. "time": "2020-11-12T00:07:28+00:00"
  5370. },
  5371. {
  5372. "name": "webmozart/assert",
  5373. "version": "1.9.1",
  5374. "source": {
  5375. "type": "git",
  5376. "url": "https://github.com/webmozart/assert.git",
  5377. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  5378. },
  5379. "dist": {
  5380. "type": "zip",
  5381. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5382. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5383. "shasum": ""
  5384. },
  5385. "require": {
  5386. "php": "^5.3.3 || ^7.0 || ^8.0",
  5387. "symfony/polyfill-ctype": "^1.8"
  5388. },
  5389. "conflict": {
  5390. "phpstan/phpstan": "<0.12.20",
  5391. "vimeo/psalm": "<3.9.1"
  5392. },
  5393. "require-dev": {
  5394. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  5395. },
  5396. "type": "library",
  5397. "autoload": {
  5398. "psr-4": {
  5399. "Webmozart\\Assert\\": "src/"
  5400. }
  5401. },
  5402. "notification-url": "https://packagist.org/downloads/",
  5403. "license": [
  5404. "MIT"
  5405. ],
  5406. "authors": [
  5407. {
  5408. "name": "Bernhard Schussek",
  5409. "email": "bschussek@gmail.com"
  5410. }
  5411. ],
  5412. "description": "Assertions to validate method input/output with nice error messages.",
  5413. "keywords": [
  5414. "assert",
  5415. "check",
  5416. "validate"
  5417. ],
  5418. "support": {
  5419. "issues": "https://github.com/webmozart/assert/issues",
  5420. "source": "https://github.com/webmozart/assert/tree/master"
  5421. },
  5422. "time": "2020-07-08T17:02:28+00:00"
  5423. }
  5424. ],
  5425. "packages-dev": [
  5426. {
  5427. "name": "doctrine/instantiator",
  5428. "version": "1.4.0",
  5429. "source": {
  5430. "type": "git",
  5431. "url": "https://github.com/doctrine/instantiator.git",
  5432. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  5433. },
  5434. "dist": {
  5435. "type": "zip",
  5436. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  5437. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  5438. "shasum": ""
  5439. },
  5440. "require": {
  5441. "php": "^7.1 || ^8.0"
  5442. },
  5443. "require-dev": {
  5444. "doctrine/coding-standard": "^8.0",
  5445. "ext-pdo": "*",
  5446. "ext-phar": "*",
  5447. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  5448. "phpstan/phpstan": "^0.12",
  5449. "phpstan/phpstan-phpunit": "^0.12",
  5450. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5451. },
  5452. "type": "library",
  5453. "autoload": {
  5454. "psr-4": {
  5455. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5456. }
  5457. },
  5458. "notification-url": "https://packagist.org/downloads/",
  5459. "license": [
  5460. "MIT"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Marco Pivetta",
  5465. "email": "ocramius@gmail.com",
  5466. "homepage": "https://ocramius.github.io/"
  5467. }
  5468. ],
  5469. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5470. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5471. "keywords": [
  5472. "constructor",
  5473. "instantiate"
  5474. ],
  5475. "support": {
  5476. "issues": "https://github.com/doctrine/instantiator/issues",
  5477. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  5478. },
  5479. "funding": [
  5480. {
  5481. "url": "https://www.doctrine-project.org/sponsorship.html",
  5482. "type": "custom"
  5483. },
  5484. {
  5485. "url": "https://www.patreon.com/phpdoctrine",
  5486. "type": "patreon"
  5487. },
  5488. {
  5489. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5490. "type": "tidelift"
  5491. }
  5492. ],
  5493. "time": "2020-11-10T18:47:58+00:00"
  5494. },
  5495. {
  5496. "name": "facade/flare-client-php",
  5497. "version": "1.3.7",
  5498. "source": {
  5499. "type": "git",
  5500. "url": "https://github.com/facade/flare-client-php.git",
  5501. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  5502. },
  5503. "dist": {
  5504. "type": "zip",
  5505. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  5506. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  5507. "shasum": ""
  5508. },
  5509. "require": {
  5510. "facade/ignition-contracts": "~1.0",
  5511. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  5512. "php": "^7.1|^8.0",
  5513. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5514. "symfony/mime": "^3.4|^4.0|^5.1",
  5515. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5516. },
  5517. "require-dev": {
  5518. "friendsofphp/php-cs-fixer": "^2.14",
  5519. "phpunit/phpunit": "^7.5.16",
  5520. "spatie/phpunit-snapshot-assertions": "^2.0"
  5521. },
  5522. "type": "library",
  5523. "extra": {
  5524. "branch-alias": {
  5525. "dev-master": "1.0-dev"
  5526. }
  5527. },
  5528. "autoload": {
  5529. "psr-4": {
  5530. "Facade\\FlareClient\\": "src"
  5531. },
  5532. "files": [
  5533. "src/helpers.php"
  5534. ]
  5535. },
  5536. "notification-url": "https://packagist.org/downloads/",
  5537. "license": [
  5538. "MIT"
  5539. ],
  5540. "description": "Send PHP errors to Flare",
  5541. "homepage": "https://github.com/facade/flare-client-php",
  5542. "keywords": [
  5543. "exception",
  5544. "facade",
  5545. "flare",
  5546. "reporting"
  5547. ],
  5548. "support": {
  5549. "issues": "https://github.com/facade/flare-client-php/issues",
  5550. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  5551. },
  5552. "funding": [
  5553. {
  5554. "url": "https://github.com/spatie",
  5555. "type": "github"
  5556. }
  5557. ],
  5558. "time": "2020-10-21T16:02:39+00:00"
  5559. },
  5560. {
  5561. "name": "facade/ignition",
  5562. "version": "2.5.3",
  5563. "source": {
  5564. "type": "git",
  5565. "url": "https://github.com/facade/ignition.git",
  5566. "reference": "d8dc4f90ed469f9f9313b976fb078c20585d5c99"
  5567. },
  5568. "dist": {
  5569. "type": "zip",
  5570. "url": "https://api.github.com/repos/facade/ignition/zipball/d8dc4f90ed469f9f9313b976fb078c20585d5c99",
  5571. "reference": "d8dc4f90ed469f9f9313b976fb078c20585d5c99",
  5572. "shasum": ""
  5573. },
  5574. "require": {
  5575. "ext-json": "*",
  5576. "ext-mbstring": "*",
  5577. "facade/flare-client-php": "^1.3.7",
  5578. "facade/ignition-contracts": "^1.0.2",
  5579. "filp/whoops": "^2.4",
  5580. "illuminate/support": "^7.0|^8.0",
  5581. "monolog/monolog": "^2.0",
  5582. "php": "^7.2.5|^8.0",
  5583. "symfony/console": "^5.0",
  5584. "symfony/var-dumper": "^5.0"
  5585. },
  5586. "require-dev": {
  5587. "friendsofphp/php-cs-fixer": "^2.14",
  5588. "mockery/mockery": "^1.3",
  5589. "orchestra/testbench": "^5.0|^6.0",
  5590. "psalm/plugin-laravel": "^1.2"
  5591. },
  5592. "suggest": {
  5593. "laravel/telescope": "^3.1"
  5594. },
  5595. "type": "library",
  5596. "extra": {
  5597. "branch-alias": {
  5598. "dev-master": "2.x-dev"
  5599. },
  5600. "laravel": {
  5601. "providers": [
  5602. "Facade\\Ignition\\IgnitionServiceProvider"
  5603. ],
  5604. "aliases": {
  5605. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5606. }
  5607. }
  5608. },
  5609. "autoload": {
  5610. "psr-4": {
  5611. "Facade\\Ignition\\": "src"
  5612. },
  5613. "files": [
  5614. "src/helpers.php"
  5615. ]
  5616. },
  5617. "notification-url": "https://packagist.org/downloads/",
  5618. "license": [
  5619. "MIT"
  5620. ],
  5621. "description": "A beautiful error page for Laravel applications.",
  5622. "homepage": "https://github.com/facade/ignition",
  5623. "keywords": [
  5624. "error",
  5625. "flare",
  5626. "laravel",
  5627. "page"
  5628. ],
  5629. "support": {
  5630. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  5631. "forum": "https://twitter.com/flareappio",
  5632. "issues": "https://github.com/facade/ignition/issues",
  5633. "source": "https://github.com/facade/ignition"
  5634. },
  5635. "time": "2020-12-09T20:25:45+00:00"
  5636. },
  5637. {
  5638. "name": "facade/ignition-contracts",
  5639. "version": "1.0.2",
  5640. "source": {
  5641. "type": "git",
  5642. "url": "https://github.com/facade/ignition-contracts.git",
  5643. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5644. },
  5645. "dist": {
  5646. "type": "zip",
  5647. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5648. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5649. "shasum": ""
  5650. },
  5651. "require": {
  5652. "php": "^7.3|^8.0"
  5653. },
  5654. "require-dev": {
  5655. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5656. "phpunit/phpunit": "^9.3.11",
  5657. "vimeo/psalm": "^3.17.1"
  5658. },
  5659. "type": "library",
  5660. "autoload": {
  5661. "psr-4": {
  5662. "Facade\\IgnitionContracts\\": "src"
  5663. }
  5664. },
  5665. "notification-url": "https://packagist.org/downloads/",
  5666. "license": [
  5667. "MIT"
  5668. ],
  5669. "authors": [
  5670. {
  5671. "name": "Freek Van der Herten",
  5672. "email": "freek@spatie.be",
  5673. "homepage": "https://flareapp.io",
  5674. "role": "Developer"
  5675. }
  5676. ],
  5677. "description": "Solution contracts for Ignition",
  5678. "homepage": "https://github.com/facade/ignition-contracts",
  5679. "keywords": [
  5680. "contracts",
  5681. "flare",
  5682. "ignition"
  5683. ],
  5684. "support": {
  5685. "issues": "https://github.com/facade/ignition-contracts/issues",
  5686. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5687. },
  5688. "time": "2020-10-16T08:27:54+00:00"
  5689. },
  5690. {
  5691. "name": "fakerphp/faker",
  5692. "version": "v1.13.0",
  5693. "source": {
  5694. "type": "git",
  5695. "url": "https://github.com/FakerPHP/Faker.git",
  5696. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
  5697. },
  5698. "dist": {
  5699. "type": "zip",
  5700. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
  5701. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
  5702. "shasum": ""
  5703. },
  5704. "require": {
  5705. "php": "^7.1 || ^8.0"
  5706. },
  5707. "conflict": {
  5708. "fzaninotto/faker": "*"
  5709. },
  5710. "require-dev": {
  5711. "bamarni/composer-bin-plugin": "^1.4.1",
  5712. "ext-intl": "*",
  5713. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  5714. },
  5715. "type": "library",
  5716. "autoload": {
  5717. "psr-4": {
  5718. "Faker\\": "src/Faker/"
  5719. }
  5720. },
  5721. "notification-url": "https://packagist.org/downloads/",
  5722. "license": [
  5723. "MIT"
  5724. ],
  5725. "authors": [
  5726. {
  5727. "name": "François Zaninotto"
  5728. }
  5729. ],
  5730. "description": "Faker is a PHP library that generates fake data for you.",
  5731. "keywords": [
  5732. "data",
  5733. "faker",
  5734. "fixtures"
  5735. ],
  5736. "support": {
  5737. "issues": "https://github.com/FakerPHP/Faker/issues",
  5738. "source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
  5739. },
  5740. "time": "2020-12-18T16:50:48+00:00"
  5741. },
  5742. {
  5743. "name": "filp/whoops",
  5744. "version": "2.9.1",
  5745. "source": {
  5746. "type": "git",
  5747. "url": "https://github.com/filp/whoops.git",
  5748. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  5749. },
  5750. "dist": {
  5751. "type": "zip",
  5752. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  5753. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  5754. "shasum": ""
  5755. },
  5756. "require": {
  5757. "php": "^5.5.9 || ^7.0 || ^8.0",
  5758. "psr/log": "^1.0.1"
  5759. },
  5760. "require-dev": {
  5761. "mockery/mockery": "^0.9 || ^1.0",
  5762. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5763. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5764. },
  5765. "suggest": {
  5766. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5767. "whoops/soap": "Formats errors as SOAP responses"
  5768. },
  5769. "type": "library",
  5770. "extra": {
  5771. "branch-alias": {
  5772. "dev-master": "2.7-dev"
  5773. }
  5774. },
  5775. "autoload": {
  5776. "psr-4": {
  5777. "Whoops\\": "src/Whoops/"
  5778. }
  5779. },
  5780. "notification-url": "https://packagist.org/downloads/",
  5781. "license": [
  5782. "MIT"
  5783. ],
  5784. "authors": [
  5785. {
  5786. "name": "Filipe Dobreira",
  5787. "homepage": "https://github.com/filp",
  5788. "role": "Developer"
  5789. }
  5790. ],
  5791. "description": "php error handling for cool kids",
  5792. "homepage": "https://filp.github.io/whoops/",
  5793. "keywords": [
  5794. "error",
  5795. "exception",
  5796. "handling",
  5797. "library",
  5798. "throwable",
  5799. "whoops"
  5800. ],
  5801. "support": {
  5802. "issues": "https://github.com/filp/whoops/issues",
  5803. "source": "https://github.com/filp/whoops/tree/2.9.1"
  5804. },
  5805. "time": "2020-11-01T12:00:00+00:00"
  5806. },
  5807. {
  5808. "name": "hamcrest/hamcrest-php",
  5809. "version": "v2.0.1",
  5810. "source": {
  5811. "type": "git",
  5812. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5813. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5814. },
  5815. "dist": {
  5816. "type": "zip",
  5817. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5818. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5819. "shasum": ""
  5820. },
  5821. "require": {
  5822. "php": "^5.3|^7.0|^8.0"
  5823. },
  5824. "replace": {
  5825. "cordoval/hamcrest-php": "*",
  5826. "davedevelopment/hamcrest-php": "*",
  5827. "kodova/hamcrest-php": "*"
  5828. },
  5829. "require-dev": {
  5830. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5831. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5832. },
  5833. "type": "library",
  5834. "extra": {
  5835. "branch-alias": {
  5836. "dev-master": "2.1-dev"
  5837. }
  5838. },
  5839. "autoload": {
  5840. "classmap": [
  5841. "hamcrest"
  5842. ]
  5843. },
  5844. "notification-url": "https://packagist.org/downloads/",
  5845. "license": [
  5846. "BSD-3-Clause"
  5847. ],
  5848. "description": "This is the PHP port of Hamcrest Matchers",
  5849. "keywords": [
  5850. "test"
  5851. ],
  5852. "support": {
  5853. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5854. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5855. },
  5856. "time": "2020-07-09T08:09:16+00:00"
  5857. },
  5858. {
  5859. "name": "laravel/sail",
  5860. "version": "v0.0.5",
  5861. "source": {
  5862. "type": "git",
  5863. "url": "https://github.com/laravel/sail.git",
  5864. "reference": "d9b0575ece889a35b9741789452c1c7abca5bc2f"
  5865. },
  5866. "dist": {
  5867. "type": "zip",
  5868. "url": "https://api.github.com/repos/laravel/sail/zipball/d9b0575ece889a35b9741789452c1c7abca5bc2f",
  5869. "reference": "d9b0575ece889a35b9741789452c1c7abca5bc2f",
  5870. "shasum": ""
  5871. },
  5872. "require": {
  5873. "illuminate/contracts": "^8.0|^9.0",
  5874. "illuminate/support": "^8.0|^9.0",
  5875. "php": "^7.3|^8.0"
  5876. },
  5877. "bin": [
  5878. "bin/sail"
  5879. ],
  5880. "type": "library",
  5881. "extra": {
  5882. "branch-alias": {
  5883. "dev-master": "1.x-dev"
  5884. },
  5885. "laravel": {
  5886. "providers": [
  5887. "Laravel\\Sail\\SailServiceProvider"
  5888. ]
  5889. }
  5890. },
  5891. "autoload": {
  5892. "psr-4": {
  5893. "Laravel\\Sail\\": "src/"
  5894. }
  5895. },
  5896. "notification-url": "https://packagist.org/downloads/",
  5897. "license": [
  5898. "MIT"
  5899. ],
  5900. "authors": [
  5901. {
  5902. "name": "Taylor Otwell",
  5903. "email": "taylor@laravel.com"
  5904. }
  5905. ],
  5906. "description": "Docker files for running a basic Laravel application.",
  5907. "keywords": [
  5908. "docker",
  5909. "laravel"
  5910. ],
  5911. "support": {
  5912. "issues": "https://github.com/laravel/sail/issues",
  5913. "source": "https://github.com/laravel/sail"
  5914. },
  5915. "time": "2020-12-07T20:58:56+00:00"
  5916. },
  5917. {
  5918. "name": "mockery/mockery",
  5919. "version": "1.4.2",
  5920. "source": {
  5921. "type": "git",
  5922. "url": "https://github.com/mockery/mockery.git",
  5923. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  5924. },
  5925. "dist": {
  5926. "type": "zip",
  5927. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  5928. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  5929. "shasum": ""
  5930. },
  5931. "require": {
  5932. "hamcrest/hamcrest-php": "^2.0.1",
  5933. "lib-pcre": ">=7.0",
  5934. "php": "^7.3 || ^8.0"
  5935. },
  5936. "conflict": {
  5937. "phpunit/phpunit": "<8.0"
  5938. },
  5939. "require-dev": {
  5940. "phpunit/phpunit": "^8.5 || ^9.3"
  5941. },
  5942. "type": "library",
  5943. "extra": {
  5944. "branch-alias": {
  5945. "dev-master": "1.4.x-dev"
  5946. }
  5947. },
  5948. "autoload": {
  5949. "psr-0": {
  5950. "Mockery": "library/"
  5951. }
  5952. },
  5953. "notification-url": "https://packagist.org/downloads/",
  5954. "license": [
  5955. "BSD-3-Clause"
  5956. ],
  5957. "authors": [
  5958. {
  5959. "name": "Pádraic Brady",
  5960. "email": "padraic.brady@gmail.com",
  5961. "homepage": "http://blog.astrumfutura.com"
  5962. },
  5963. {
  5964. "name": "Dave Marshall",
  5965. "email": "dave.marshall@atstsolutions.co.uk",
  5966. "homepage": "http://davedevelopment.co.uk"
  5967. }
  5968. ],
  5969. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5970. "homepage": "https://github.com/mockery/mockery",
  5971. "keywords": [
  5972. "BDD",
  5973. "TDD",
  5974. "library",
  5975. "mock",
  5976. "mock objects",
  5977. "mockery",
  5978. "stub",
  5979. "test",
  5980. "test double",
  5981. "testing"
  5982. ],
  5983. "support": {
  5984. "issues": "https://github.com/mockery/mockery/issues",
  5985. "source": "https://github.com/mockery/mockery/tree/master"
  5986. },
  5987. "time": "2020-08-11T18:10:13+00:00"
  5988. },
  5989. {
  5990. "name": "myclabs/deep-copy",
  5991. "version": "1.10.2",
  5992. "source": {
  5993. "type": "git",
  5994. "url": "https://github.com/myclabs/DeepCopy.git",
  5995. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  5996. },
  5997. "dist": {
  5998. "type": "zip",
  5999. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  6000. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  6001. "shasum": ""
  6002. },
  6003. "require": {
  6004. "php": "^7.1 || ^8.0"
  6005. },
  6006. "replace": {
  6007. "myclabs/deep-copy": "self.version"
  6008. },
  6009. "require-dev": {
  6010. "doctrine/collections": "^1.0",
  6011. "doctrine/common": "^2.6",
  6012. "phpunit/phpunit": "^7.1"
  6013. },
  6014. "type": "library",
  6015. "autoload": {
  6016. "psr-4": {
  6017. "DeepCopy\\": "src/DeepCopy/"
  6018. },
  6019. "files": [
  6020. "src/DeepCopy/deep_copy.php"
  6021. ]
  6022. },
  6023. "notification-url": "https://packagist.org/downloads/",
  6024. "license": [
  6025. "MIT"
  6026. ],
  6027. "description": "Create deep copies (clones) of your objects",
  6028. "keywords": [
  6029. "clone",
  6030. "copy",
  6031. "duplicate",
  6032. "object",
  6033. "object graph"
  6034. ],
  6035. "support": {
  6036. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6037. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  6038. },
  6039. "funding": [
  6040. {
  6041. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6042. "type": "tidelift"
  6043. }
  6044. ],
  6045. "time": "2020-11-13T09:40:50+00:00"
  6046. },
  6047. {
  6048. "name": "nunomaduro/collision",
  6049. "version": "v5.1.0",
  6050. "source": {
  6051. "type": "git",
  6052. "url": "https://github.com/nunomaduro/collision.git",
  6053. "reference": "7c2b95589bf81e274e61e47f7672a1b2c3e06eaa"
  6054. },
  6055. "dist": {
  6056. "type": "zip",
  6057. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c2b95589bf81e274e61e47f7672a1b2c3e06eaa",
  6058. "reference": "7c2b95589bf81e274e61e47f7672a1b2c3e06eaa",
  6059. "shasum": ""
  6060. },
  6061. "require": {
  6062. "facade/ignition-contracts": "^1.0",
  6063. "filp/whoops": "^2.7.2",
  6064. "php": "^7.3 || ^8.0",
  6065. "symfony/console": "^5.0"
  6066. },
  6067. "require-dev": {
  6068. "fideloper/proxy": "^4.4.0",
  6069. "friendsofphp/php-cs-fixer": "^2.16.4",
  6070. "fruitcake/laravel-cors": "^2.0.1",
  6071. "laravel/framework": "^8.0",
  6072. "laravel/tinker": "^2.4.1",
  6073. "nunomaduro/larastan": "^0.6.2",
  6074. "nunomaduro/mock-final-classes": "^1.0",
  6075. "orchestra/testbench": "^6.0",
  6076. "phpstan/phpstan": "^0.12.36",
  6077. "phpunit/phpunit": "^9.3.3"
  6078. },
  6079. "type": "library",
  6080. "extra": {
  6081. "laravel": {
  6082. "providers": [
  6083. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6084. ]
  6085. }
  6086. },
  6087. "autoload": {
  6088. "psr-4": {
  6089. "NunoMaduro\\Collision\\": "src/"
  6090. }
  6091. },
  6092. "notification-url": "https://packagist.org/downloads/",
  6093. "license": [
  6094. "MIT"
  6095. ],
  6096. "authors": [
  6097. {
  6098. "name": "Nuno Maduro",
  6099. "email": "enunomaduro@gmail.com"
  6100. }
  6101. ],
  6102. "description": "Cli error handling for console/command-line PHP applications.",
  6103. "keywords": [
  6104. "artisan",
  6105. "cli",
  6106. "command-line",
  6107. "console",
  6108. "error",
  6109. "handling",
  6110. "laravel",
  6111. "laravel-zero",
  6112. "php",
  6113. "symfony"
  6114. ],
  6115. "support": {
  6116. "issues": "https://github.com/nunomaduro/collision/issues",
  6117. "source": "https://github.com/nunomaduro/collision"
  6118. },
  6119. "funding": [
  6120. {
  6121. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  6122. "type": "custom"
  6123. },
  6124. {
  6125. "url": "https://github.com/nunomaduro",
  6126. "type": "github"
  6127. },
  6128. {
  6129. "url": "https://www.patreon.com/nunomaduro",
  6130. "type": "patreon"
  6131. }
  6132. ],
  6133. "time": "2020-10-29T14:50:40+00:00"
  6134. },
  6135. {
  6136. "name": "phar-io/manifest",
  6137. "version": "2.0.1",
  6138. "source": {
  6139. "type": "git",
  6140. "url": "https://github.com/phar-io/manifest.git",
  6141. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  6142. },
  6143. "dist": {
  6144. "type": "zip",
  6145. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  6146. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  6147. "shasum": ""
  6148. },
  6149. "require": {
  6150. "ext-dom": "*",
  6151. "ext-phar": "*",
  6152. "ext-xmlwriter": "*",
  6153. "phar-io/version": "^3.0.1",
  6154. "php": "^7.2 || ^8.0"
  6155. },
  6156. "type": "library",
  6157. "extra": {
  6158. "branch-alias": {
  6159. "dev-master": "2.0.x-dev"
  6160. }
  6161. },
  6162. "autoload": {
  6163. "classmap": [
  6164. "src/"
  6165. ]
  6166. },
  6167. "notification-url": "https://packagist.org/downloads/",
  6168. "license": [
  6169. "BSD-3-Clause"
  6170. ],
  6171. "authors": [
  6172. {
  6173. "name": "Arne Blankerts",
  6174. "email": "arne@blankerts.de",
  6175. "role": "Developer"
  6176. },
  6177. {
  6178. "name": "Sebastian Heuer",
  6179. "email": "sebastian@phpeople.de",
  6180. "role": "Developer"
  6181. },
  6182. {
  6183. "name": "Sebastian Bergmann",
  6184. "email": "sebastian@phpunit.de",
  6185. "role": "Developer"
  6186. }
  6187. ],
  6188. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6189. "support": {
  6190. "issues": "https://github.com/phar-io/manifest/issues",
  6191. "source": "https://github.com/phar-io/manifest/tree/master"
  6192. },
  6193. "time": "2020-06-27T14:33:11+00:00"
  6194. },
  6195. {
  6196. "name": "phar-io/version",
  6197. "version": "3.0.4",
  6198. "source": {
  6199. "type": "git",
  6200. "url": "https://github.com/phar-io/version.git",
  6201. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
  6202. },
  6203. "dist": {
  6204. "type": "zip",
  6205. "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
  6206. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
  6207. "shasum": ""
  6208. },
  6209. "require": {
  6210. "php": "^7.2 || ^8.0"
  6211. },
  6212. "type": "library",
  6213. "autoload": {
  6214. "classmap": [
  6215. "src/"
  6216. ]
  6217. },
  6218. "notification-url": "https://packagist.org/downloads/",
  6219. "license": [
  6220. "BSD-3-Clause"
  6221. ],
  6222. "authors": [
  6223. {
  6224. "name": "Arne Blankerts",
  6225. "email": "arne@blankerts.de",
  6226. "role": "Developer"
  6227. },
  6228. {
  6229. "name": "Sebastian Heuer",
  6230. "email": "sebastian@phpeople.de",
  6231. "role": "Developer"
  6232. },
  6233. {
  6234. "name": "Sebastian Bergmann",
  6235. "email": "sebastian@phpunit.de",
  6236. "role": "Developer"
  6237. }
  6238. ],
  6239. "description": "Library for handling version information and constraints",
  6240. "support": {
  6241. "issues": "https://github.com/phar-io/version/issues",
  6242. "source": "https://github.com/phar-io/version/tree/3.0.4"
  6243. },
  6244. "time": "2020-12-13T23:18:30+00:00"
  6245. },
  6246. {
  6247. "name": "phpdocumentor/reflection-common",
  6248. "version": "2.2.0",
  6249. "source": {
  6250. "type": "git",
  6251. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6252. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  6253. },
  6254. "dist": {
  6255. "type": "zip",
  6256. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6257. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6258. "shasum": ""
  6259. },
  6260. "require": {
  6261. "php": "^7.2 || ^8.0"
  6262. },
  6263. "type": "library",
  6264. "extra": {
  6265. "branch-alias": {
  6266. "dev-2.x": "2.x-dev"
  6267. }
  6268. },
  6269. "autoload": {
  6270. "psr-4": {
  6271. "phpDocumentor\\Reflection\\": "src/"
  6272. }
  6273. },
  6274. "notification-url": "https://packagist.org/downloads/",
  6275. "license": [
  6276. "MIT"
  6277. ],
  6278. "authors": [
  6279. {
  6280. "name": "Jaap van Otterdijk",
  6281. "email": "opensource@ijaap.nl"
  6282. }
  6283. ],
  6284. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6285. "homepage": "http://www.phpdoc.org",
  6286. "keywords": [
  6287. "FQSEN",
  6288. "phpDocumentor",
  6289. "phpdoc",
  6290. "reflection",
  6291. "static analysis"
  6292. ],
  6293. "support": {
  6294. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  6295. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  6296. },
  6297. "time": "2020-06-27T09:03:43+00:00"
  6298. },
  6299. {
  6300. "name": "phpdocumentor/reflection-docblock",
  6301. "version": "5.2.2",
  6302. "source": {
  6303. "type": "git",
  6304. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6305. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  6306. },
  6307. "dist": {
  6308. "type": "zip",
  6309. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  6310. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  6311. "shasum": ""
  6312. },
  6313. "require": {
  6314. "ext-filter": "*",
  6315. "php": "^7.2 || ^8.0",
  6316. "phpdocumentor/reflection-common": "^2.2",
  6317. "phpdocumentor/type-resolver": "^1.3",
  6318. "webmozart/assert": "^1.9.1"
  6319. },
  6320. "require-dev": {
  6321. "mockery/mockery": "~1.3.2"
  6322. },
  6323. "type": "library",
  6324. "extra": {
  6325. "branch-alias": {
  6326. "dev-master": "5.x-dev"
  6327. }
  6328. },
  6329. "autoload": {
  6330. "psr-4": {
  6331. "phpDocumentor\\Reflection\\": "src"
  6332. }
  6333. },
  6334. "notification-url": "https://packagist.org/downloads/",
  6335. "license": [
  6336. "MIT"
  6337. ],
  6338. "authors": [
  6339. {
  6340. "name": "Mike van Riel",
  6341. "email": "me@mikevanriel.com"
  6342. },
  6343. {
  6344. "name": "Jaap van Otterdijk",
  6345. "email": "account@ijaap.nl"
  6346. }
  6347. ],
  6348. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6349. "support": {
  6350. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  6351. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  6352. },
  6353. "time": "2020-09-03T19:13:55+00:00"
  6354. },
  6355. {
  6356. "name": "phpdocumentor/type-resolver",
  6357. "version": "1.4.0",
  6358. "source": {
  6359. "type": "git",
  6360. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6361. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  6362. },
  6363. "dist": {
  6364. "type": "zip",
  6365. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  6366. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  6367. "shasum": ""
  6368. },
  6369. "require": {
  6370. "php": "^7.2 || ^8.0",
  6371. "phpdocumentor/reflection-common": "^2.0"
  6372. },
  6373. "require-dev": {
  6374. "ext-tokenizer": "*"
  6375. },
  6376. "type": "library",
  6377. "extra": {
  6378. "branch-alias": {
  6379. "dev-1.x": "1.x-dev"
  6380. }
  6381. },
  6382. "autoload": {
  6383. "psr-4": {
  6384. "phpDocumentor\\Reflection\\": "src"
  6385. }
  6386. },
  6387. "notification-url": "https://packagist.org/downloads/",
  6388. "license": [
  6389. "MIT"
  6390. ],
  6391. "authors": [
  6392. {
  6393. "name": "Mike van Riel",
  6394. "email": "me@mikevanriel.com"
  6395. }
  6396. ],
  6397. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  6398. "support": {
  6399. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  6400. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  6401. },
  6402. "time": "2020-09-17T18:55:26+00:00"
  6403. },
  6404. {
  6405. "name": "phpspec/prophecy",
  6406. "version": "1.12.2",
  6407. "source": {
  6408. "type": "git",
  6409. "url": "https://github.com/phpspec/prophecy.git",
  6410. "reference": "245710e971a030f42e08f4912863805570f23d39"
  6411. },
  6412. "dist": {
  6413. "type": "zip",
  6414. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  6415. "reference": "245710e971a030f42e08f4912863805570f23d39",
  6416. "shasum": ""
  6417. },
  6418. "require": {
  6419. "doctrine/instantiator": "^1.2",
  6420. "php": "^7.2 || ~8.0, <8.1",
  6421. "phpdocumentor/reflection-docblock": "^5.2",
  6422. "sebastian/comparator": "^3.0 || ^4.0",
  6423. "sebastian/recursion-context": "^3.0 || ^4.0"
  6424. },
  6425. "require-dev": {
  6426. "phpspec/phpspec": "^6.0",
  6427. "phpunit/phpunit": "^8.0 || ^9.0"
  6428. },
  6429. "type": "library",
  6430. "extra": {
  6431. "branch-alias": {
  6432. "dev-master": "1.11.x-dev"
  6433. }
  6434. },
  6435. "autoload": {
  6436. "psr-4": {
  6437. "Prophecy\\": "src/Prophecy"
  6438. }
  6439. },
  6440. "notification-url": "https://packagist.org/downloads/",
  6441. "license": [
  6442. "MIT"
  6443. ],
  6444. "authors": [
  6445. {
  6446. "name": "Konstantin Kudryashov",
  6447. "email": "ever.zet@gmail.com",
  6448. "homepage": "http://everzet.com"
  6449. },
  6450. {
  6451. "name": "Marcello Duarte",
  6452. "email": "marcello.duarte@gmail.com"
  6453. }
  6454. ],
  6455. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6456. "homepage": "https://github.com/phpspec/prophecy",
  6457. "keywords": [
  6458. "Double",
  6459. "Dummy",
  6460. "fake",
  6461. "mock",
  6462. "spy",
  6463. "stub"
  6464. ],
  6465. "support": {
  6466. "issues": "https://github.com/phpspec/prophecy/issues",
  6467. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  6468. },
  6469. "time": "2020-12-19T10:15:11+00:00"
  6470. },
  6471. {
  6472. "name": "phpunit/php-code-coverage",
  6473. "version": "9.2.5",
  6474. "source": {
  6475. "type": "git",
  6476. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6477. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  6478. },
  6479. "dist": {
  6480. "type": "zip",
  6481. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  6482. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  6483. "shasum": ""
  6484. },
  6485. "require": {
  6486. "ext-dom": "*",
  6487. "ext-libxml": "*",
  6488. "ext-xmlwriter": "*",
  6489. "nikic/php-parser": "^4.10.2",
  6490. "php": ">=7.3",
  6491. "phpunit/php-file-iterator": "^3.0.3",
  6492. "phpunit/php-text-template": "^2.0.2",
  6493. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6494. "sebastian/complexity": "^2.0",
  6495. "sebastian/environment": "^5.1.2",
  6496. "sebastian/lines-of-code": "^1.0.3",
  6497. "sebastian/version": "^3.0.1",
  6498. "theseer/tokenizer": "^1.2.0"
  6499. },
  6500. "require-dev": {
  6501. "phpunit/phpunit": "^9.3"
  6502. },
  6503. "suggest": {
  6504. "ext-pcov": "*",
  6505. "ext-xdebug": "*"
  6506. },
  6507. "type": "library",
  6508. "extra": {
  6509. "branch-alias": {
  6510. "dev-master": "9.2-dev"
  6511. }
  6512. },
  6513. "autoload": {
  6514. "classmap": [
  6515. "src/"
  6516. ]
  6517. },
  6518. "notification-url": "https://packagist.org/downloads/",
  6519. "license": [
  6520. "BSD-3-Clause"
  6521. ],
  6522. "authors": [
  6523. {
  6524. "name": "Sebastian Bergmann",
  6525. "email": "sebastian@phpunit.de",
  6526. "role": "lead"
  6527. }
  6528. ],
  6529. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6530. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6531. "keywords": [
  6532. "coverage",
  6533. "testing",
  6534. "xunit"
  6535. ],
  6536. "support": {
  6537. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6538. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  6539. },
  6540. "funding": [
  6541. {
  6542. "url": "https://github.com/sebastianbergmann",
  6543. "type": "github"
  6544. }
  6545. ],
  6546. "time": "2020-11-28T06:44:49+00:00"
  6547. },
  6548. {
  6549. "name": "phpunit/php-file-iterator",
  6550. "version": "3.0.5",
  6551. "source": {
  6552. "type": "git",
  6553. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6554. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  6555. },
  6556. "dist": {
  6557. "type": "zip",
  6558. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  6559. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  6560. "shasum": ""
  6561. },
  6562. "require": {
  6563. "php": ">=7.3"
  6564. },
  6565. "require-dev": {
  6566. "phpunit/phpunit": "^9.3"
  6567. },
  6568. "type": "library",
  6569. "extra": {
  6570. "branch-alias": {
  6571. "dev-master": "3.0-dev"
  6572. }
  6573. },
  6574. "autoload": {
  6575. "classmap": [
  6576. "src/"
  6577. ]
  6578. },
  6579. "notification-url": "https://packagist.org/downloads/",
  6580. "license": [
  6581. "BSD-3-Clause"
  6582. ],
  6583. "authors": [
  6584. {
  6585. "name": "Sebastian Bergmann",
  6586. "email": "sebastian@phpunit.de",
  6587. "role": "lead"
  6588. }
  6589. ],
  6590. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6591. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6592. "keywords": [
  6593. "filesystem",
  6594. "iterator"
  6595. ],
  6596. "support": {
  6597. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6598. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  6599. },
  6600. "funding": [
  6601. {
  6602. "url": "https://github.com/sebastianbergmann",
  6603. "type": "github"
  6604. }
  6605. ],
  6606. "time": "2020-09-28T05:57:25+00:00"
  6607. },
  6608. {
  6609. "name": "phpunit/php-invoker",
  6610. "version": "3.1.1",
  6611. "source": {
  6612. "type": "git",
  6613. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6614. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6615. },
  6616. "dist": {
  6617. "type": "zip",
  6618. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6619. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6620. "shasum": ""
  6621. },
  6622. "require": {
  6623. "php": ">=7.3"
  6624. },
  6625. "require-dev": {
  6626. "ext-pcntl": "*",
  6627. "phpunit/phpunit": "^9.3"
  6628. },
  6629. "suggest": {
  6630. "ext-pcntl": "*"
  6631. },
  6632. "type": "library",
  6633. "extra": {
  6634. "branch-alias": {
  6635. "dev-master": "3.1-dev"
  6636. }
  6637. },
  6638. "autoload": {
  6639. "classmap": [
  6640. "src/"
  6641. ]
  6642. },
  6643. "notification-url": "https://packagist.org/downloads/",
  6644. "license": [
  6645. "BSD-3-Clause"
  6646. ],
  6647. "authors": [
  6648. {
  6649. "name": "Sebastian Bergmann",
  6650. "email": "sebastian@phpunit.de",
  6651. "role": "lead"
  6652. }
  6653. ],
  6654. "description": "Invoke callables with a timeout",
  6655. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6656. "keywords": [
  6657. "process"
  6658. ],
  6659. "support": {
  6660. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6661. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6662. },
  6663. "funding": [
  6664. {
  6665. "url": "https://github.com/sebastianbergmann",
  6666. "type": "github"
  6667. }
  6668. ],
  6669. "time": "2020-09-28T05:58:55+00:00"
  6670. },
  6671. {
  6672. "name": "phpunit/php-text-template",
  6673. "version": "2.0.4",
  6674. "source": {
  6675. "type": "git",
  6676. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6677. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6678. },
  6679. "dist": {
  6680. "type": "zip",
  6681. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6682. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6683. "shasum": ""
  6684. },
  6685. "require": {
  6686. "php": ">=7.3"
  6687. },
  6688. "require-dev": {
  6689. "phpunit/phpunit": "^9.3"
  6690. },
  6691. "type": "library",
  6692. "extra": {
  6693. "branch-alias": {
  6694. "dev-master": "2.0-dev"
  6695. }
  6696. },
  6697. "autoload": {
  6698. "classmap": [
  6699. "src/"
  6700. ]
  6701. },
  6702. "notification-url": "https://packagist.org/downloads/",
  6703. "license": [
  6704. "BSD-3-Clause"
  6705. ],
  6706. "authors": [
  6707. {
  6708. "name": "Sebastian Bergmann",
  6709. "email": "sebastian@phpunit.de",
  6710. "role": "lead"
  6711. }
  6712. ],
  6713. "description": "Simple template engine.",
  6714. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6715. "keywords": [
  6716. "template"
  6717. ],
  6718. "support": {
  6719. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6720. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6721. },
  6722. "funding": [
  6723. {
  6724. "url": "https://github.com/sebastianbergmann",
  6725. "type": "github"
  6726. }
  6727. ],
  6728. "time": "2020-10-26T05:33:50+00:00"
  6729. },
  6730. {
  6731. "name": "phpunit/php-timer",
  6732. "version": "5.0.3",
  6733. "source": {
  6734. "type": "git",
  6735. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6736. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6737. },
  6738. "dist": {
  6739. "type": "zip",
  6740. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6741. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6742. "shasum": ""
  6743. },
  6744. "require": {
  6745. "php": ">=7.3"
  6746. },
  6747. "require-dev": {
  6748. "phpunit/phpunit": "^9.3"
  6749. },
  6750. "type": "library",
  6751. "extra": {
  6752. "branch-alias": {
  6753. "dev-master": "5.0-dev"
  6754. }
  6755. },
  6756. "autoload": {
  6757. "classmap": [
  6758. "src/"
  6759. ]
  6760. },
  6761. "notification-url": "https://packagist.org/downloads/",
  6762. "license": [
  6763. "BSD-3-Clause"
  6764. ],
  6765. "authors": [
  6766. {
  6767. "name": "Sebastian Bergmann",
  6768. "email": "sebastian@phpunit.de",
  6769. "role": "lead"
  6770. }
  6771. ],
  6772. "description": "Utility class for timing",
  6773. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6774. "keywords": [
  6775. "timer"
  6776. ],
  6777. "support": {
  6778. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6779. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6780. },
  6781. "funding": [
  6782. {
  6783. "url": "https://github.com/sebastianbergmann",
  6784. "type": "github"
  6785. }
  6786. ],
  6787. "time": "2020-10-26T13:16:10+00:00"
  6788. },
  6789. {
  6790. "name": "phpunit/phpunit",
  6791. "version": "9.5.0",
  6792. "source": {
  6793. "type": "git",
  6794. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6795. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe"
  6796. },
  6797. "dist": {
  6798. "type": "zip",
  6799. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  6800. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  6801. "shasum": ""
  6802. },
  6803. "require": {
  6804. "doctrine/instantiator": "^1.3.1",
  6805. "ext-dom": "*",
  6806. "ext-json": "*",
  6807. "ext-libxml": "*",
  6808. "ext-mbstring": "*",
  6809. "ext-xml": "*",
  6810. "ext-xmlwriter": "*",
  6811. "myclabs/deep-copy": "^1.10.1",
  6812. "phar-io/manifest": "^2.0.1",
  6813. "phar-io/version": "^3.0.2",
  6814. "php": ">=7.3",
  6815. "phpspec/prophecy": "^1.12.1",
  6816. "phpunit/php-code-coverage": "^9.2.3",
  6817. "phpunit/php-file-iterator": "^3.0.5",
  6818. "phpunit/php-invoker": "^3.1.1",
  6819. "phpunit/php-text-template": "^2.0.3",
  6820. "phpunit/php-timer": "^5.0.2",
  6821. "sebastian/cli-parser": "^1.0.1",
  6822. "sebastian/code-unit": "^1.0.6",
  6823. "sebastian/comparator": "^4.0.5",
  6824. "sebastian/diff": "^4.0.3",
  6825. "sebastian/environment": "^5.1.3",
  6826. "sebastian/exporter": "^4.0.3",
  6827. "sebastian/global-state": "^5.0.1",
  6828. "sebastian/object-enumerator": "^4.0.3",
  6829. "sebastian/resource-operations": "^3.0.3",
  6830. "sebastian/type": "^2.3",
  6831. "sebastian/version": "^3.0.2"
  6832. },
  6833. "require-dev": {
  6834. "ext-pdo": "*",
  6835. "phpspec/prophecy-phpunit": "^2.0.1"
  6836. },
  6837. "suggest": {
  6838. "ext-soap": "*",
  6839. "ext-xdebug": "*"
  6840. },
  6841. "bin": [
  6842. "phpunit"
  6843. ],
  6844. "type": "library",
  6845. "extra": {
  6846. "branch-alias": {
  6847. "dev-master": "9.5-dev"
  6848. }
  6849. },
  6850. "autoload": {
  6851. "classmap": [
  6852. "src/"
  6853. ],
  6854. "files": [
  6855. "src/Framework/Assert/Functions.php"
  6856. ]
  6857. },
  6858. "notification-url": "https://packagist.org/downloads/",
  6859. "license": [
  6860. "BSD-3-Clause"
  6861. ],
  6862. "authors": [
  6863. {
  6864. "name": "Sebastian Bergmann",
  6865. "email": "sebastian@phpunit.de",
  6866. "role": "lead"
  6867. }
  6868. ],
  6869. "description": "The PHP Unit Testing framework.",
  6870. "homepage": "https://phpunit.de/",
  6871. "keywords": [
  6872. "phpunit",
  6873. "testing",
  6874. "xunit"
  6875. ],
  6876. "support": {
  6877. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6878. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.0"
  6879. },
  6880. "funding": [
  6881. {
  6882. "url": "https://phpunit.de/donate.html",
  6883. "type": "custom"
  6884. },
  6885. {
  6886. "url": "https://github.com/sebastianbergmann",
  6887. "type": "github"
  6888. }
  6889. ],
  6890. "time": "2020-12-04T05:05:53+00:00"
  6891. },
  6892. {
  6893. "name": "sebastian/cli-parser",
  6894. "version": "1.0.1",
  6895. "source": {
  6896. "type": "git",
  6897. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6898. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6899. },
  6900. "dist": {
  6901. "type": "zip",
  6902. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6903. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6904. "shasum": ""
  6905. },
  6906. "require": {
  6907. "php": ">=7.3"
  6908. },
  6909. "require-dev": {
  6910. "phpunit/phpunit": "^9.3"
  6911. },
  6912. "type": "library",
  6913. "extra": {
  6914. "branch-alias": {
  6915. "dev-master": "1.0-dev"
  6916. }
  6917. },
  6918. "autoload": {
  6919. "classmap": [
  6920. "src/"
  6921. ]
  6922. },
  6923. "notification-url": "https://packagist.org/downloads/",
  6924. "license": [
  6925. "BSD-3-Clause"
  6926. ],
  6927. "authors": [
  6928. {
  6929. "name": "Sebastian Bergmann",
  6930. "email": "sebastian@phpunit.de",
  6931. "role": "lead"
  6932. }
  6933. ],
  6934. "description": "Library for parsing CLI options",
  6935. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6936. "support": {
  6937. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  6938. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  6939. },
  6940. "funding": [
  6941. {
  6942. "url": "https://github.com/sebastianbergmann",
  6943. "type": "github"
  6944. }
  6945. ],
  6946. "time": "2020-09-28T06:08:49+00:00"
  6947. },
  6948. {
  6949. "name": "sebastian/code-unit",
  6950. "version": "1.0.8",
  6951. "source": {
  6952. "type": "git",
  6953. "url": "https://github.com/sebastianbergmann/code-unit.git",
  6954. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  6955. },
  6956. "dist": {
  6957. "type": "zip",
  6958. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6959. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6960. "shasum": ""
  6961. },
  6962. "require": {
  6963. "php": ">=7.3"
  6964. },
  6965. "require-dev": {
  6966. "phpunit/phpunit": "^9.3"
  6967. },
  6968. "type": "library",
  6969. "extra": {
  6970. "branch-alias": {
  6971. "dev-master": "1.0-dev"
  6972. }
  6973. },
  6974. "autoload": {
  6975. "classmap": [
  6976. "src/"
  6977. ]
  6978. },
  6979. "notification-url": "https://packagist.org/downloads/",
  6980. "license": [
  6981. "BSD-3-Clause"
  6982. ],
  6983. "authors": [
  6984. {
  6985. "name": "Sebastian Bergmann",
  6986. "email": "sebastian@phpunit.de",
  6987. "role": "lead"
  6988. }
  6989. ],
  6990. "description": "Collection of value objects that represent the PHP code units",
  6991. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6992. "support": {
  6993. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  6994. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  6995. },
  6996. "funding": [
  6997. {
  6998. "url": "https://github.com/sebastianbergmann",
  6999. "type": "github"
  7000. }
  7001. ],
  7002. "time": "2020-10-26T13:08:54+00:00"
  7003. },
  7004. {
  7005. "name": "sebastian/code-unit-reverse-lookup",
  7006. "version": "2.0.3",
  7007. "source": {
  7008. "type": "git",
  7009. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7010. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  7011. },
  7012. "dist": {
  7013. "type": "zip",
  7014. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  7015. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  7016. "shasum": ""
  7017. },
  7018. "require": {
  7019. "php": ">=7.3"
  7020. },
  7021. "require-dev": {
  7022. "phpunit/phpunit": "^9.3"
  7023. },
  7024. "type": "library",
  7025. "extra": {
  7026. "branch-alias": {
  7027. "dev-master": "2.0-dev"
  7028. }
  7029. },
  7030. "autoload": {
  7031. "classmap": [
  7032. "src/"
  7033. ]
  7034. },
  7035. "notification-url": "https://packagist.org/downloads/",
  7036. "license": [
  7037. "BSD-3-Clause"
  7038. ],
  7039. "authors": [
  7040. {
  7041. "name": "Sebastian Bergmann",
  7042. "email": "sebastian@phpunit.de"
  7043. }
  7044. ],
  7045. "description": "Looks up which function or method a line of code belongs to",
  7046. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7047. "support": {
  7048. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7049. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  7050. },
  7051. "funding": [
  7052. {
  7053. "url": "https://github.com/sebastianbergmann",
  7054. "type": "github"
  7055. }
  7056. ],
  7057. "time": "2020-09-28T05:30:19+00:00"
  7058. },
  7059. {
  7060. "name": "sebastian/comparator",
  7061. "version": "4.0.6",
  7062. "source": {
  7063. "type": "git",
  7064. "url": "https://github.com/sebastianbergmann/comparator.git",
  7065. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  7066. },
  7067. "dist": {
  7068. "type": "zip",
  7069. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  7070. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  7071. "shasum": ""
  7072. },
  7073. "require": {
  7074. "php": ">=7.3",
  7075. "sebastian/diff": "^4.0",
  7076. "sebastian/exporter": "^4.0"
  7077. },
  7078. "require-dev": {
  7079. "phpunit/phpunit": "^9.3"
  7080. },
  7081. "type": "library",
  7082. "extra": {
  7083. "branch-alias": {
  7084. "dev-master": "4.0-dev"
  7085. }
  7086. },
  7087. "autoload": {
  7088. "classmap": [
  7089. "src/"
  7090. ]
  7091. },
  7092. "notification-url": "https://packagist.org/downloads/",
  7093. "license": [
  7094. "BSD-3-Clause"
  7095. ],
  7096. "authors": [
  7097. {
  7098. "name": "Sebastian Bergmann",
  7099. "email": "sebastian@phpunit.de"
  7100. },
  7101. {
  7102. "name": "Jeff Welch",
  7103. "email": "whatthejeff@gmail.com"
  7104. },
  7105. {
  7106. "name": "Volker Dusch",
  7107. "email": "github@wallbash.com"
  7108. },
  7109. {
  7110. "name": "Bernhard Schussek",
  7111. "email": "bschussek@2bepublished.at"
  7112. }
  7113. ],
  7114. "description": "Provides the functionality to compare PHP values for equality",
  7115. "homepage": "https://github.com/sebastianbergmann/comparator",
  7116. "keywords": [
  7117. "comparator",
  7118. "compare",
  7119. "equality"
  7120. ],
  7121. "support": {
  7122. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7123. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  7124. },
  7125. "funding": [
  7126. {
  7127. "url": "https://github.com/sebastianbergmann",
  7128. "type": "github"
  7129. }
  7130. ],
  7131. "time": "2020-10-26T15:49:45+00:00"
  7132. },
  7133. {
  7134. "name": "sebastian/complexity",
  7135. "version": "2.0.2",
  7136. "source": {
  7137. "type": "git",
  7138. "url": "https://github.com/sebastianbergmann/complexity.git",
  7139. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  7140. },
  7141. "dist": {
  7142. "type": "zip",
  7143. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  7144. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  7145. "shasum": ""
  7146. },
  7147. "require": {
  7148. "nikic/php-parser": "^4.7",
  7149. "php": ">=7.3"
  7150. },
  7151. "require-dev": {
  7152. "phpunit/phpunit": "^9.3"
  7153. },
  7154. "type": "library",
  7155. "extra": {
  7156. "branch-alias": {
  7157. "dev-master": "2.0-dev"
  7158. }
  7159. },
  7160. "autoload": {
  7161. "classmap": [
  7162. "src/"
  7163. ]
  7164. },
  7165. "notification-url": "https://packagist.org/downloads/",
  7166. "license": [
  7167. "BSD-3-Clause"
  7168. ],
  7169. "authors": [
  7170. {
  7171. "name": "Sebastian Bergmann",
  7172. "email": "sebastian@phpunit.de",
  7173. "role": "lead"
  7174. }
  7175. ],
  7176. "description": "Library for calculating the complexity of PHP code units",
  7177. "homepage": "https://github.com/sebastianbergmann/complexity",
  7178. "support": {
  7179. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  7180. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  7181. },
  7182. "funding": [
  7183. {
  7184. "url": "https://github.com/sebastianbergmann",
  7185. "type": "github"
  7186. }
  7187. ],
  7188. "time": "2020-10-26T15:52:27+00:00"
  7189. },
  7190. {
  7191. "name": "sebastian/diff",
  7192. "version": "4.0.4",
  7193. "source": {
  7194. "type": "git",
  7195. "url": "https://github.com/sebastianbergmann/diff.git",
  7196. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  7197. },
  7198. "dist": {
  7199. "type": "zip",
  7200. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  7201. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  7202. "shasum": ""
  7203. },
  7204. "require": {
  7205. "php": ">=7.3"
  7206. },
  7207. "require-dev": {
  7208. "phpunit/phpunit": "^9.3",
  7209. "symfony/process": "^4.2 || ^5"
  7210. },
  7211. "type": "library",
  7212. "extra": {
  7213. "branch-alias": {
  7214. "dev-master": "4.0-dev"
  7215. }
  7216. },
  7217. "autoload": {
  7218. "classmap": [
  7219. "src/"
  7220. ]
  7221. },
  7222. "notification-url": "https://packagist.org/downloads/",
  7223. "license": [
  7224. "BSD-3-Clause"
  7225. ],
  7226. "authors": [
  7227. {
  7228. "name": "Sebastian Bergmann",
  7229. "email": "sebastian@phpunit.de"
  7230. },
  7231. {
  7232. "name": "Kore Nordmann",
  7233. "email": "mail@kore-nordmann.de"
  7234. }
  7235. ],
  7236. "description": "Diff implementation",
  7237. "homepage": "https://github.com/sebastianbergmann/diff",
  7238. "keywords": [
  7239. "diff",
  7240. "udiff",
  7241. "unidiff",
  7242. "unified diff"
  7243. ],
  7244. "support": {
  7245. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7246. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  7247. },
  7248. "funding": [
  7249. {
  7250. "url": "https://github.com/sebastianbergmann",
  7251. "type": "github"
  7252. }
  7253. ],
  7254. "time": "2020-10-26T13:10:38+00:00"
  7255. },
  7256. {
  7257. "name": "sebastian/environment",
  7258. "version": "5.1.3",
  7259. "source": {
  7260. "type": "git",
  7261. "url": "https://github.com/sebastianbergmann/environment.git",
  7262. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  7263. },
  7264. "dist": {
  7265. "type": "zip",
  7266. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  7267. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  7268. "shasum": ""
  7269. },
  7270. "require": {
  7271. "php": ">=7.3"
  7272. },
  7273. "require-dev": {
  7274. "phpunit/phpunit": "^9.3"
  7275. },
  7276. "suggest": {
  7277. "ext-posix": "*"
  7278. },
  7279. "type": "library",
  7280. "extra": {
  7281. "branch-alias": {
  7282. "dev-master": "5.1-dev"
  7283. }
  7284. },
  7285. "autoload": {
  7286. "classmap": [
  7287. "src/"
  7288. ]
  7289. },
  7290. "notification-url": "https://packagist.org/downloads/",
  7291. "license": [
  7292. "BSD-3-Clause"
  7293. ],
  7294. "authors": [
  7295. {
  7296. "name": "Sebastian Bergmann",
  7297. "email": "sebastian@phpunit.de"
  7298. }
  7299. ],
  7300. "description": "Provides functionality to handle HHVM/PHP environments",
  7301. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7302. "keywords": [
  7303. "Xdebug",
  7304. "environment",
  7305. "hhvm"
  7306. ],
  7307. "support": {
  7308. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7309. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  7310. },
  7311. "funding": [
  7312. {
  7313. "url": "https://github.com/sebastianbergmann",
  7314. "type": "github"
  7315. }
  7316. ],
  7317. "time": "2020-09-28T05:52:38+00:00"
  7318. },
  7319. {
  7320. "name": "sebastian/exporter",
  7321. "version": "4.0.3",
  7322. "source": {
  7323. "type": "git",
  7324. "url": "https://github.com/sebastianbergmann/exporter.git",
  7325. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  7326. },
  7327. "dist": {
  7328. "type": "zip",
  7329. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  7330. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  7331. "shasum": ""
  7332. },
  7333. "require": {
  7334. "php": ">=7.3",
  7335. "sebastian/recursion-context": "^4.0"
  7336. },
  7337. "require-dev": {
  7338. "ext-mbstring": "*",
  7339. "phpunit/phpunit": "^9.3"
  7340. },
  7341. "type": "library",
  7342. "extra": {
  7343. "branch-alias": {
  7344. "dev-master": "4.0-dev"
  7345. }
  7346. },
  7347. "autoload": {
  7348. "classmap": [
  7349. "src/"
  7350. ]
  7351. },
  7352. "notification-url": "https://packagist.org/downloads/",
  7353. "license": [
  7354. "BSD-3-Clause"
  7355. ],
  7356. "authors": [
  7357. {
  7358. "name": "Sebastian Bergmann",
  7359. "email": "sebastian@phpunit.de"
  7360. },
  7361. {
  7362. "name": "Jeff Welch",
  7363. "email": "whatthejeff@gmail.com"
  7364. },
  7365. {
  7366. "name": "Volker Dusch",
  7367. "email": "github@wallbash.com"
  7368. },
  7369. {
  7370. "name": "Adam Harvey",
  7371. "email": "aharvey@php.net"
  7372. },
  7373. {
  7374. "name": "Bernhard Schussek",
  7375. "email": "bschussek@gmail.com"
  7376. }
  7377. ],
  7378. "description": "Provides the functionality to export PHP variables for visualization",
  7379. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7380. "keywords": [
  7381. "export",
  7382. "exporter"
  7383. ],
  7384. "support": {
  7385. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7386. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  7387. },
  7388. "funding": [
  7389. {
  7390. "url": "https://github.com/sebastianbergmann",
  7391. "type": "github"
  7392. }
  7393. ],
  7394. "time": "2020-09-28T05:24:23+00:00"
  7395. },
  7396. {
  7397. "name": "sebastian/global-state",
  7398. "version": "5.0.2",
  7399. "source": {
  7400. "type": "git",
  7401. "url": "https://github.com/sebastianbergmann/global-state.git",
  7402. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  7403. },
  7404. "dist": {
  7405. "type": "zip",
  7406. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  7407. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  7408. "shasum": ""
  7409. },
  7410. "require": {
  7411. "php": ">=7.3",
  7412. "sebastian/object-reflector": "^2.0",
  7413. "sebastian/recursion-context": "^4.0"
  7414. },
  7415. "require-dev": {
  7416. "ext-dom": "*",
  7417. "phpunit/phpunit": "^9.3"
  7418. },
  7419. "suggest": {
  7420. "ext-uopz": "*"
  7421. },
  7422. "type": "library",
  7423. "extra": {
  7424. "branch-alias": {
  7425. "dev-master": "5.0-dev"
  7426. }
  7427. },
  7428. "autoload": {
  7429. "classmap": [
  7430. "src/"
  7431. ]
  7432. },
  7433. "notification-url": "https://packagist.org/downloads/",
  7434. "license": [
  7435. "BSD-3-Clause"
  7436. ],
  7437. "authors": [
  7438. {
  7439. "name": "Sebastian Bergmann",
  7440. "email": "sebastian@phpunit.de"
  7441. }
  7442. ],
  7443. "description": "Snapshotting of global state",
  7444. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7445. "keywords": [
  7446. "global state"
  7447. ],
  7448. "support": {
  7449. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7450. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  7451. },
  7452. "funding": [
  7453. {
  7454. "url": "https://github.com/sebastianbergmann",
  7455. "type": "github"
  7456. }
  7457. ],
  7458. "time": "2020-10-26T15:55:19+00:00"
  7459. },
  7460. {
  7461. "name": "sebastian/lines-of-code",
  7462. "version": "1.0.3",
  7463. "source": {
  7464. "type": "git",
  7465. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7466. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  7467. },
  7468. "dist": {
  7469. "type": "zip",
  7470. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7471. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7472. "shasum": ""
  7473. },
  7474. "require": {
  7475. "nikic/php-parser": "^4.6",
  7476. "php": ">=7.3"
  7477. },
  7478. "require-dev": {
  7479. "phpunit/phpunit": "^9.3"
  7480. },
  7481. "type": "library",
  7482. "extra": {
  7483. "branch-alias": {
  7484. "dev-master": "1.0-dev"
  7485. }
  7486. },
  7487. "autoload": {
  7488. "classmap": [
  7489. "src/"
  7490. ]
  7491. },
  7492. "notification-url": "https://packagist.org/downloads/",
  7493. "license": [
  7494. "BSD-3-Clause"
  7495. ],
  7496. "authors": [
  7497. {
  7498. "name": "Sebastian Bergmann",
  7499. "email": "sebastian@phpunit.de",
  7500. "role": "lead"
  7501. }
  7502. ],
  7503. "description": "Library for counting the lines of code in PHP source code",
  7504. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7505. "support": {
  7506. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7507. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  7508. },
  7509. "funding": [
  7510. {
  7511. "url": "https://github.com/sebastianbergmann",
  7512. "type": "github"
  7513. }
  7514. ],
  7515. "time": "2020-11-28T06:42:11+00:00"
  7516. },
  7517. {
  7518. "name": "sebastian/object-enumerator",
  7519. "version": "4.0.4",
  7520. "source": {
  7521. "type": "git",
  7522. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7523. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7524. },
  7525. "dist": {
  7526. "type": "zip",
  7527. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7528. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7529. "shasum": ""
  7530. },
  7531. "require": {
  7532. "php": ">=7.3",
  7533. "sebastian/object-reflector": "^2.0",
  7534. "sebastian/recursion-context": "^4.0"
  7535. },
  7536. "require-dev": {
  7537. "phpunit/phpunit": "^9.3"
  7538. },
  7539. "type": "library",
  7540. "extra": {
  7541. "branch-alias": {
  7542. "dev-master": "4.0-dev"
  7543. }
  7544. },
  7545. "autoload": {
  7546. "classmap": [
  7547. "src/"
  7548. ]
  7549. },
  7550. "notification-url": "https://packagist.org/downloads/",
  7551. "license": [
  7552. "BSD-3-Clause"
  7553. ],
  7554. "authors": [
  7555. {
  7556. "name": "Sebastian Bergmann",
  7557. "email": "sebastian@phpunit.de"
  7558. }
  7559. ],
  7560. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7561. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7562. "support": {
  7563. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7564. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7565. },
  7566. "funding": [
  7567. {
  7568. "url": "https://github.com/sebastianbergmann",
  7569. "type": "github"
  7570. }
  7571. ],
  7572. "time": "2020-10-26T13:12:34+00:00"
  7573. },
  7574. {
  7575. "name": "sebastian/object-reflector",
  7576. "version": "2.0.4",
  7577. "source": {
  7578. "type": "git",
  7579. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7580. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7581. },
  7582. "dist": {
  7583. "type": "zip",
  7584. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7585. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7586. "shasum": ""
  7587. },
  7588. "require": {
  7589. "php": ">=7.3"
  7590. },
  7591. "require-dev": {
  7592. "phpunit/phpunit": "^9.3"
  7593. },
  7594. "type": "library",
  7595. "extra": {
  7596. "branch-alias": {
  7597. "dev-master": "2.0-dev"
  7598. }
  7599. },
  7600. "autoload": {
  7601. "classmap": [
  7602. "src/"
  7603. ]
  7604. },
  7605. "notification-url": "https://packagist.org/downloads/",
  7606. "license": [
  7607. "BSD-3-Clause"
  7608. ],
  7609. "authors": [
  7610. {
  7611. "name": "Sebastian Bergmann",
  7612. "email": "sebastian@phpunit.de"
  7613. }
  7614. ],
  7615. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7616. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7617. "support": {
  7618. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7619. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7620. },
  7621. "funding": [
  7622. {
  7623. "url": "https://github.com/sebastianbergmann",
  7624. "type": "github"
  7625. }
  7626. ],
  7627. "time": "2020-10-26T13:14:26+00:00"
  7628. },
  7629. {
  7630. "name": "sebastian/recursion-context",
  7631. "version": "4.0.4",
  7632. "source": {
  7633. "type": "git",
  7634. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7635. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  7636. },
  7637. "dist": {
  7638. "type": "zip",
  7639. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  7640. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  7641. "shasum": ""
  7642. },
  7643. "require": {
  7644. "php": ">=7.3"
  7645. },
  7646. "require-dev": {
  7647. "phpunit/phpunit": "^9.3"
  7648. },
  7649. "type": "library",
  7650. "extra": {
  7651. "branch-alias": {
  7652. "dev-master": "4.0-dev"
  7653. }
  7654. },
  7655. "autoload": {
  7656. "classmap": [
  7657. "src/"
  7658. ]
  7659. },
  7660. "notification-url": "https://packagist.org/downloads/",
  7661. "license": [
  7662. "BSD-3-Clause"
  7663. ],
  7664. "authors": [
  7665. {
  7666. "name": "Sebastian Bergmann",
  7667. "email": "sebastian@phpunit.de"
  7668. },
  7669. {
  7670. "name": "Jeff Welch",
  7671. "email": "whatthejeff@gmail.com"
  7672. },
  7673. {
  7674. "name": "Adam Harvey",
  7675. "email": "aharvey@php.net"
  7676. }
  7677. ],
  7678. "description": "Provides functionality to recursively process PHP variables",
  7679. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7680. "support": {
  7681. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7682. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  7683. },
  7684. "funding": [
  7685. {
  7686. "url": "https://github.com/sebastianbergmann",
  7687. "type": "github"
  7688. }
  7689. ],
  7690. "time": "2020-10-26T13:17:30+00:00"
  7691. },
  7692. {
  7693. "name": "sebastian/resource-operations",
  7694. "version": "3.0.3",
  7695. "source": {
  7696. "type": "git",
  7697. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7698. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7699. },
  7700. "dist": {
  7701. "type": "zip",
  7702. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7703. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7704. "shasum": ""
  7705. },
  7706. "require": {
  7707. "php": ">=7.3"
  7708. },
  7709. "require-dev": {
  7710. "phpunit/phpunit": "^9.0"
  7711. },
  7712. "type": "library",
  7713. "extra": {
  7714. "branch-alias": {
  7715. "dev-master": "3.0-dev"
  7716. }
  7717. },
  7718. "autoload": {
  7719. "classmap": [
  7720. "src/"
  7721. ]
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "license": [
  7725. "BSD-3-Clause"
  7726. ],
  7727. "authors": [
  7728. {
  7729. "name": "Sebastian Bergmann",
  7730. "email": "sebastian@phpunit.de"
  7731. }
  7732. ],
  7733. "description": "Provides a list of PHP built-in functions that operate on resources",
  7734. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7735. "support": {
  7736. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7737. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7738. },
  7739. "funding": [
  7740. {
  7741. "url": "https://github.com/sebastianbergmann",
  7742. "type": "github"
  7743. }
  7744. ],
  7745. "time": "2020-09-28T06:45:17+00:00"
  7746. },
  7747. {
  7748. "name": "sebastian/type",
  7749. "version": "2.3.1",
  7750. "source": {
  7751. "type": "git",
  7752. "url": "https://github.com/sebastianbergmann/type.git",
  7753. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  7754. },
  7755. "dist": {
  7756. "type": "zip",
  7757. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  7758. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  7759. "shasum": ""
  7760. },
  7761. "require": {
  7762. "php": ">=7.3"
  7763. },
  7764. "require-dev": {
  7765. "phpunit/phpunit": "^9.3"
  7766. },
  7767. "type": "library",
  7768. "extra": {
  7769. "branch-alias": {
  7770. "dev-master": "2.3-dev"
  7771. }
  7772. },
  7773. "autoload": {
  7774. "classmap": [
  7775. "src/"
  7776. ]
  7777. },
  7778. "notification-url": "https://packagist.org/downloads/",
  7779. "license": [
  7780. "BSD-3-Clause"
  7781. ],
  7782. "authors": [
  7783. {
  7784. "name": "Sebastian Bergmann",
  7785. "email": "sebastian@phpunit.de",
  7786. "role": "lead"
  7787. }
  7788. ],
  7789. "description": "Collection of value objects that represent the types of the PHP type system",
  7790. "homepage": "https://github.com/sebastianbergmann/type",
  7791. "support": {
  7792. "issues": "https://github.com/sebastianbergmann/type/issues",
  7793. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  7794. },
  7795. "funding": [
  7796. {
  7797. "url": "https://github.com/sebastianbergmann",
  7798. "type": "github"
  7799. }
  7800. ],
  7801. "time": "2020-10-26T13:18:59+00:00"
  7802. },
  7803. {
  7804. "name": "sebastian/version",
  7805. "version": "3.0.2",
  7806. "source": {
  7807. "type": "git",
  7808. "url": "https://github.com/sebastianbergmann/version.git",
  7809. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7810. },
  7811. "dist": {
  7812. "type": "zip",
  7813. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7814. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7815. "shasum": ""
  7816. },
  7817. "require": {
  7818. "php": ">=7.3"
  7819. },
  7820. "type": "library",
  7821. "extra": {
  7822. "branch-alias": {
  7823. "dev-master": "3.0-dev"
  7824. }
  7825. },
  7826. "autoload": {
  7827. "classmap": [
  7828. "src/"
  7829. ]
  7830. },
  7831. "notification-url": "https://packagist.org/downloads/",
  7832. "license": [
  7833. "BSD-3-Clause"
  7834. ],
  7835. "authors": [
  7836. {
  7837. "name": "Sebastian Bergmann",
  7838. "email": "sebastian@phpunit.de",
  7839. "role": "lead"
  7840. }
  7841. ],
  7842. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7843. "homepage": "https://github.com/sebastianbergmann/version",
  7844. "support": {
  7845. "issues": "https://github.com/sebastianbergmann/version/issues",
  7846. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7847. },
  7848. "funding": [
  7849. {
  7850. "url": "https://github.com/sebastianbergmann",
  7851. "type": "github"
  7852. }
  7853. ],
  7854. "time": "2020-09-28T06:39:44+00:00"
  7855. },
  7856. {
  7857. "name": "theseer/tokenizer",
  7858. "version": "1.2.0",
  7859. "source": {
  7860. "type": "git",
  7861. "url": "https://github.com/theseer/tokenizer.git",
  7862. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  7863. },
  7864. "dist": {
  7865. "type": "zip",
  7866. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  7867. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  7868. "shasum": ""
  7869. },
  7870. "require": {
  7871. "ext-dom": "*",
  7872. "ext-tokenizer": "*",
  7873. "ext-xmlwriter": "*",
  7874. "php": "^7.2 || ^8.0"
  7875. },
  7876. "type": "library",
  7877. "autoload": {
  7878. "classmap": [
  7879. "src/"
  7880. ]
  7881. },
  7882. "notification-url": "https://packagist.org/downloads/",
  7883. "license": [
  7884. "BSD-3-Clause"
  7885. ],
  7886. "authors": [
  7887. {
  7888. "name": "Arne Blankerts",
  7889. "email": "arne@blankerts.de",
  7890. "role": "Developer"
  7891. }
  7892. ],
  7893. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7894. "support": {
  7895. "issues": "https://github.com/theseer/tokenizer/issues",
  7896. "source": "https://github.com/theseer/tokenizer/tree/master"
  7897. },
  7898. "funding": [
  7899. {
  7900. "url": "https://github.com/theseer",
  7901. "type": "github"
  7902. }
  7903. ],
  7904. "time": "2020-07-12T23:59:07+00:00"
  7905. }
  7906. ],
  7907. "aliases": [],
  7908. "minimum-stability": "dev",
  7909. "stability-flags": [],
  7910. "prefer-stable": true,
  7911. "prefer-lowest": false,
  7912. "platform": {
  7913. "php": "^7.3|^8.0"
  7914. },
  7915. "platform-dev": [],
  7916. "plugin-api-version": "2.0.0"
  7917. }