composer.lock 250 KB

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