composer.lock 249 KB

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