composer.lock 225 KB

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