composer.lock 261 KB

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