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