composer.lock 352 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765
  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": "cb4598509754d01e8ad36b067f85e2eb",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.2|^8.0",
  31. "symfony/http-foundation": "^4|^5|^6",
  32. "symfony/http-kernel": "^4|^5|^6"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^7|^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.1-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  68. },
  69. "time": "2022-01-18T09:12:03+00:00"
  70. },
  71. {
  72. "name": "brick/math",
  73. "version": "0.9.3",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/brick/math.git",
  77. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  82. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "ext-json": "*",
  93. "php": "^7.1 || ^8.0"
  94. },
  95. "require-dev": {
  96. "php-coveralls/php-coveralls": "^2.2",
  97. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  98. "vimeo/psalm": "4.9.2"
  99. },
  100. "type": "library",
  101. "autoload": {
  102. "psr-4": {
  103. "Brick\\Math\\": "src/"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "MIT"
  109. ],
  110. "description": "Arbitrary-precision arithmetic library",
  111. "keywords": [
  112. "Arbitrary-precision",
  113. "BigInteger",
  114. "BigRational",
  115. "arithmetic",
  116. "bigdecimal",
  117. "bignum",
  118. "brick",
  119. "math"
  120. ],
  121. "support": {
  122. "issues": "https://github.com/brick/math/issues",
  123. "source": "https://github.com/brick/math/tree/0.9.3"
  124. },
  125. "funding": [
  126. {
  127. "url": "https://github.com/BenMorel",
  128. "type": "github"
  129. },
  130. {
  131. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  132. "type": "tidelift"
  133. }
  134. ],
  135. "time": "2021-08-15T20:50:18+00:00"
  136. },
  137. {
  138. "name": "dflydev/dot-access-data",
  139. "version": "v3.0.1",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  143. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  148. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  149. "shasum": "",
  150. "mirrors": [
  151. {
  152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  153. "preferred": true
  154. }
  155. ]
  156. },
  157. "require": {
  158. "php": "^7.1 || ^8.0"
  159. },
  160. "require-dev": {
  161. "phpstan/phpstan": "^0.12.42",
  162. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  163. "scrutinizer/ocular": "1.6.0",
  164. "squizlabs/php_codesniffer": "^3.5",
  165. "vimeo/psalm": "^3.14"
  166. },
  167. "type": "library",
  168. "extra": {
  169. "branch-alias": {
  170. "dev-main": "3.x-dev"
  171. }
  172. },
  173. "autoload": {
  174. "psr-4": {
  175. "Dflydev\\DotAccessData\\": "src/"
  176. }
  177. },
  178. "notification-url": "https://packagist.org/downloads/",
  179. "license": [
  180. "MIT"
  181. ],
  182. "authors": [
  183. {
  184. "name": "Dragonfly Development Inc.",
  185. "email": "info@dflydev.com",
  186. "homepage": "http://dflydev.com"
  187. },
  188. {
  189. "name": "Beau Simensen",
  190. "email": "beau@dflydev.com",
  191. "homepage": "http://beausimensen.com"
  192. },
  193. {
  194. "name": "Carlos Frutos",
  195. "email": "carlos@kiwing.it",
  196. "homepage": "https://github.com/cfrutos"
  197. },
  198. {
  199. "name": "Colin O'Dell",
  200. "email": "colinodell@gmail.com",
  201. "homepage": "https://www.colinodell.com"
  202. }
  203. ],
  204. "description": "Given a deep data structure, access data by dot notation.",
  205. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  206. "keywords": [
  207. "access",
  208. "data",
  209. "dot",
  210. "notation"
  211. ],
  212. "support": {
  213. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  214. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  215. },
  216. "time": "2021-08-13T13:06:58+00:00"
  217. },
  218. {
  219. "name": "dingo/api",
  220. "version": "v3.0.8",
  221. "source": {
  222. "type": "git",
  223. "url": "https://github.com/dingo/api.git",
  224. "reference": "42b6afa6e20a27f938a45e676665e57d26422cea"
  225. },
  226. "dist": {
  227. "type": "zip",
  228. "url": "https://api.github.com/repos/dingo/api/zipball/42b6afa6e20a27f938a45e676665e57d26422cea",
  229. "reference": "42b6afa6e20a27f938a45e676665e57d26422cea",
  230. "shasum": "",
  231. "mirrors": [
  232. {
  233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  234. "preferred": true
  235. }
  236. ]
  237. },
  238. "require": {
  239. "dingo/blueprint": "^0.4",
  240. "illuminate/routing": "^7.0|^8.0",
  241. "illuminate/support": "^7.0|^8.0",
  242. "league/fractal": "^0.19",
  243. "php": "^7.2.5|^8.0"
  244. },
  245. "require-dev": {
  246. "friendsofphp/php-cs-fixer": "~2",
  247. "illuminate/auth": "^7.0|^8.0",
  248. "illuminate/cache": "^7.0|^8.0",
  249. "illuminate/console": "^7.0|^8.0",
  250. "illuminate/database": "^7.0|^8.0",
  251. "illuminate/events": "^7.0|^8.0",
  252. "illuminate/filesystem": "^7.0|^8.0",
  253. "illuminate/log": "^7.0|^8.0",
  254. "illuminate/pagination": "^7.0|^8.0",
  255. "laravel/lumen-framework": "^7.0|^8.0",
  256. "mockery/mockery": "~1.0",
  257. "phpunit/phpunit": "^8.5|^9.0",
  258. "squizlabs/php_codesniffer": "~2.0",
  259. "tymon/jwt-auth": "1.0.*"
  260. },
  261. "suggest": {
  262. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "2.0-dev"
  268. },
  269. "laravel": {
  270. "providers": [
  271. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  272. ],
  273. "aliases": {
  274. "API": "Dingo\\Api\\Facade\\API"
  275. }
  276. }
  277. },
  278. "autoload": {
  279. "psr-4": {
  280. "Dingo\\Api\\": "src/"
  281. },
  282. "files": [
  283. "src/helpers.php"
  284. ]
  285. },
  286. "notification-url": "https://packagist.org/downloads/",
  287. "license": [
  288. "BSD-3-Clause"
  289. ],
  290. "authors": [
  291. {
  292. "name": "Jason Lewis",
  293. "email": "jason.lewis1991@gmail.com"
  294. }
  295. ],
  296. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  297. "keywords": [
  298. "api",
  299. "dingo",
  300. "laravel",
  301. "restful"
  302. ],
  303. "support": {
  304. "issues": "https://github.com/dingo/api/issues",
  305. "source": "https://github.com/dingo/api/tree/v3.0.8"
  306. },
  307. "abandoned": "api-ecosystem-for-laravel/dingo-api",
  308. "time": "2022-01-27T15:11:20+00:00"
  309. },
  310. {
  311. "name": "dingo/blueprint",
  312. "version": "v0.4.3",
  313. "source": {
  314. "type": "git",
  315. "url": "https://github.com/dingo/blueprint.git",
  316. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88"
  317. },
  318. "dist": {
  319. "type": "zip",
  320. "url": "https://api.github.com/repos/dingo/blueprint/zipball/e3a8f19ae10716670079c3c162540756dbd20a88",
  321. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88",
  322. "shasum": "",
  323. "mirrors": [
  324. {
  325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  326. "preferred": true
  327. }
  328. ]
  329. },
  330. "require": {
  331. "doctrine/annotations": "~1.2",
  332. "illuminate/filesystem": "^7.0|^8.0",
  333. "illuminate/support": "^7.0|^8.0",
  334. "php": "^7.2.5|^8.0",
  335. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  336. },
  337. "require-dev": {
  338. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  339. "squizlabs/php_codesniffer": "~2.0"
  340. },
  341. "type": "library",
  342. "extra": {
  343. "branch-alias": {
  344. "dev-master": "0.2-dev"
  345. }
  346. },
  347. "autoload": {
  348. "psr-4": {
  349. "Dingo\\Blueprint\\": "src"
  350. }
  351. },
  352. "notification-url": "https://packagist.org/downloads/",
  353. "license": [
  354. "BSD-3-Clause"
  355. ],
  356. "authors": [
  357. {
  358. "name": "Jason Lewis",
  359. "email": "jason.lewis1991@gmail.com"
  360. }
  361. ],
  362. "description": "API Blueprint documentation generator.",
  363. "keywords": [
  364. "api",
  365. "blueprint",
  366. "dingo",
  367. "docs",
  368. "laravel"
  369. ],
  370. "support": {
  371. "issues": "https://github.com/dingo/blueprint/issues",
  372. "source": "https://github.com/dingo/blueprint/tree/v0.4.3"
  373. },
  374. "time": "2021-04-30T11:20:38+00:00"
  375. },
  376. {
  377. "name": "doctrine/annotations",
  378. "version": "1.13.2",
  379. "source": {
  380. "type": "git",
  381. "url": "https://github.com/doctrine/annotations.git",
  382. "reference": "5b668aef16090008790395c02c893b1ba13f7e08"
  383. },
  384. "dist": {
  385. "type": "zip",
  386. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08",
  387. "reference": "5b668aef16090008790395c02c893b1ba13f7e08",
  388. "shasum": "",
  389. "mirrors": [
  390. {
  391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  392. "preferred": true
  393. }
  394. ]
  395. },
  396. "require": {
  397. "doctrine/lexer": "1.*",
  398. "ext-tokenizer": "*",
  399. "php": "^7.1 || ^8.0",
  400. "psr/cache": "^1 || ^2 || ^3"
  401. },
  402. "require-dev": {
  403. "doctrine/cache": "^1.11 || ^2.0",
  404. "doctrine/coding-standard": "^6.0 || ^8.1",
  405. "phpstan/phpstan": "^0.12.20",
  406. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  407. "symfony/cache": "^4.4 || ^5.2"
  408. },
  409. "type": "library",
  410. "autoload": {
  411. "psr-4": {
  412. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  413. }
  414. },
  415. "notification-url": "https://packagist.org/downloads/",
  416. "license": [
  417. "MIT"
  418. ],
  419. "authors": [
  420. {
  421. "name": "Guilherme Blanco",
  422. "email": "guilhermeblanco@gmail.com"
  423. },
  424. {
  425. "name": "Roman Borschel",
  426. "email": "roman@code-factory.org"
  427. },
  428. {
  429. "name": "Benjamin Eberlei",
  430. "email": "kontakt@beberlei.de"
  431. },
  432. {
  433. "name": "Jonathan Wage",
  434. "email": "jonwage@gmail.com"
  435. },
  436. {
  437. "name": "Johannes Schmitt",
  438. "email": "schmittjoh@gmail.com"
  439. }
  440. ],
  441. "description": "Docblock Annotations Parser",
  442. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  443. "keywords": [
  444. "annotations",
  445. "docblock",
  446. "parser"
  447. ],
  448. "support": {
  449. "issues": "https://github.com/doctrine/annotations/issues",
  450. "source": "https://github.com/doctrine/annotations/tree/1.13.2"
  451. },
  452. "time": "2021-08-05T19:00:23+00:00"
  453. },
  454. {
  455. "name": "doctrine/inflector",
  456. "version": "2.0.4",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/doctrine/inflector.git",
  460. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  465. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  466. "shasum": "",
  467. "mirrors": [
  468. {
  469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  470. "preferred": true
  471. }
  472. ]
  473. },
  474. "require": {
  475. "php": "^7.2 || ^8.0"
  476. },
  477. "require-dev": {
  478. "doctrine/coding-standard": "^8.2",
  479. "phpstan/phpstan": "^0.12",
  480. "phpstan/phpstan-phpunit": "^0.12",
  481. "phpstan/phpstan-strict-rules": "^0.12",
  482. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  483. "vimeo/psalm": "^4.10"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "MIT"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Guilherme Blanco",
  498. "email": "guilhermeblanco@gmail.com"
  499. },
  500. {
  501. "name": "Roman Borschel",
  502. "email": "roman@code-factory.org"
  503. },
  504. {
  505. "name": "Benjamin Eberlei",
  506. "email": "kontakt@beberlei.de"
  507. },
  508. {
  509. "name": "Jonathan Wage",
  510. "email": "jonwage@gmail.com"
  511. },
  512. {
  513. "name": "Johannes Schmitt",
  514. "email": "schmittjoh@gmail.com"
  515. }
  516. ],
  517. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  518. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  519. "keywords": [
  520. "inflection",
  521. "inflector",
  522. "lowercase",
  523. "manipulation",
  524. "php",
  525. "plural",
  526. "singular",
  527. "strings",
  528. "uppercase",
  529. "words"
  530. ],
  531. "support": {
  532. "issues": "https://github.com/doctrine/inflector/issues",
  533. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  534. },
  535. "funding": [
  536. {
  537. "url": "https://www.doctrine-project.org/sponsorship.html",
  538. "type": "custom"
  539. },
  540. {
  541. "url": "https://www.patreon.com/phpdoctrine",
  542. "type": "patreon"
  543. },
  544. {
  545. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  546. "type": "tidelift"
  547. }
  548. ],
  549. "time": "2021-10-22T20:16:43+00:00"
  550. },
  551. {
  552. "name": "doctrine/lexer",
  553. "version": "1.2.3",
  554. "source": {
  555. "type": "git",
  556. "url": "https://github.com/doctrine/lexer.git",
  557. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  558. },
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  562. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  563. "shasum": "",
  564. "mirrors": [
  565. {
  566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  567. "preferred": true
  568. }
  569. ]
  570. },
  571. "require": {
  572. "php": "^7.1 || ^8.0"
  573. },
  574. "require-dev": {
  575. "doctrine/coding-standard": "^9.0",
  576. "phpstan/phpstan": "^1.3",
  577. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  578. "vimeo/psalm": "^4.11"
  579. },
  580. "type": "library",
  581. "autoload": {
  582. "psr-4": {
  583. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  584. }
  585. },
  586. "notification-url": "https://packagist.org/downloads/",
  587. "license": [
  588. "MIT"
  589. ],
  590. "authors": [
  591. {
  592. "name": "Guilherme Blanco",
  593. "email": "guilhermeblanco@gmail.com"
  594. },
  595. {
  596. "name": "Roman Borschel",
  597. "email": "roman@code-factory.org"
  598. },
  599. {
  600. "name": "Johannes Schmitt",
  601. "email": "schmittjoh@gmail.com"
  602. }
  603. ],
  604. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  605. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  606. "keywords": [
  607. "annotations",
  608. "docblock",
  609. "lexer",
  610. "parser",
  611. "php"
  612. ],
  613. "support": {
  614. "issues": "https://github.com/doctrine/lexer/issues",
  615. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  616. },
  617. "funding": [
  618. {
  619. "url": "https://www.doctrine-project.org/sponsorship.html",
  620. "type": "custom"
  621. },
  622. {
  623. "url": "https://www.patreon.com/phpdoctrine",
  624. "type": "patreon"
  625. },
  626. {
  627. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  628. "type": "tidelift"
  629. }
  630. ],
  631. "time": "2022-02-28T11:07:21+00:00"
  632. },
  633. {
  634. "name": "dragonmantank/cron-expression",
  635. "version": "v3.3.1",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/dragonmantank/cron-expression.git",
  639. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  644. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  645. "shasum": "",
  646. "mirrors": [
  647. {
  648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  649. "preferred": true
  650. }
  651. ]
  652. },
  653. "require": {
  654. "php": "^7.2|^8.0",
  655. "webmozart/assert": "^1.0"
  656. },
  657. "replace": {
  658. "mtdowling/cron-expression": "^1.0"
  659. },
  660. "require-dev": {
  661. "phpstan/extension-installer": "^1.0",
  662. "phpstan/phpstan": "^1.0",
  663. "phpstan/phpstan-webmozart-assert": "^1.0",
  664. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  665. },
  666. "type": "library",
  667. "autoload": {
  668. "psr-4": {
  669. "Cron\\": "src/Cron/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Chris Tankersley",
  679. "email": "chris@ctankersley.com",
  680. "homepage": "https://github.com/dragonmantank"
  681. }
  682. ],
  683. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  684. "keywords": [
  685. "cron",
  686. "schedule"
  687. ],
  688. "support": {
  689. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  690. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  691. },
  692. "funding": [
  693. {
  694. "url": "https://github.com/dragonmantank",
  695. "type": "github"
  696. }
  697. ],
  698. "time": "2022-01-18T15:43:28+00:00"
  699. },
  700. {
  701. "name": "egulias/email-validator",
  702. "version": "2.1.25",
  703. "source": {
  704. "type": "git",
  705. "url": "https://github.com/egulias/EmailValidator.git",
  706. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  707. },
  708. "dist": {
  709. "type": "zip",
  710. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  711. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  712. "shasum": "",
  713. "mirrors": [
  714. {
  715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  716. "preferred": true
  717. }
  718. ]
  719. },
  720. "require": {
  721. "doctrine/lexer": "^1.0.1",
  722. "php": ">=5.5",
  723. "symfony/polyfill-intl-idn": "^1.10"
  724. },
  725. "require-dev": {
  726. "dominicsayers/isemail": "^3.0.7",
  727. "phpunit/phpunit": "^4.8.36|^7.5.15",
  728. "satooshi/php-coveralls": "^1.0.1"
  729. },
  730. "suggest": {
  731. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  732. },
  733. "type": "library",
  734. "extra": {
  735. "branch-alias": {
  736. "dev-master": "2.1.x-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Egulias\\EmailValidator\\": "src"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Eduardo Gulias Davis"
  751. }
  752. ],
  753. "description": "A library for validating emails against several RFCs",
  754. "homepage": "https://github.com/egulias/EmailValidator",
  755. "keywords": [
  756. "email",
  757. "emailvalidation",
  758. "emailvalidator",
  759. "validation",
  760. "validator"
  761. ],
  762. "support": {
  763. "issues": "https://github.com/egulias/EmailValidator/issues",
  764. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  765. },
  766. "funding": [
  767. {
  768. "url": "https://github.com/egulias",
  769. "type": "github"
  770. }
  771. ],
  772. "time": "2020-12-29T14:50:06+00:00"
  773. },
  774. {
  775. "name": "fruitcake/laravel-cors",
  776. "version": "v2.2.0",
  777. "source": {
  778. "type": "git",
  779. "url": "https://github.com/fruitcake/laravel-cors.git",
  780. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  781. },
  782. "dist": {
  783. "type": "zip",
  784. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  785. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  786. "shasum": "",
  787. "mirrors": [
  788. {
  789. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  790. "preferred": true
  791. }
  792. ]
  793. },
  794. "require": {
  795. "asm89/stack-cors": "^2.0.1",
  796. "illuminate/contracts": "^6|^7|^8|^9",
  797. "illuminate/support": "^6|^7|^8|^9",
  798. "php": ">=7.2"
  799. },
  800. "require-dev": {
  801. "laravel/framework": "^6|^7.24|^8",
  802. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  803. "phpunit/phpunit": "^6|^7|^8|^9",
  804. "squizlabs/php_codesniffer": "^3.5"
  805. },
  806. "type": "library",
  807. "extra": {
  808. "branch-alias": {
  809. "dev-master": "2.1-dev"
  810. },
  811. "laravel": {
  812. "providers": [
  813. "Fruitcake\\Cors\\CorsServiceProvider"
  814. ]
  815. }
  816. },
  817. "autoload": {
  818. "psr-4": {
  819. "Fruitcake\\Cors\\": "src/"
  820. }
  821. },
  822. "notification-url": "https://packagist.org/downloads/",
  823. "license": [
  824. "MIT"
  825. ],
  826. "authors": [
  827. {
  828. "name": "Fruitcake",
  829. "homepage": "https://fruitcake.nl"
  830. },
  831. {
  832. "name": "Barry vd. Heuvel",
  833. "email": "barryvdh@gmail.com"
  834. }
  835. ],
  836. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  837. "keywords": [
  838. "api",
  839. "cors",
  840. "crossdomain",
  841. "laravel"
  842. ],
  843. "support": {
  844. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  845. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  846. },
  847. "funding": [
  848. {
  849. "url": "https://fruitcake.nl",
  850. "type": "custom"
  851. },
  852. {
  853. "url": "https://github.com/barryvdh",
  854. "type": "github"
  855. }
  856. ],
  857. "time": "2022-02-23T14:25:13+00:00"
  858. },
  859. {
  860. "name": "graham-campbell/result-type",
  861. "version": "v1.0.4",
  862. "source": {
  863. "type": "git",
  864. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  865. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  866. },
  867. "dist": {
  868. "type": "zip",
  869. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  870. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  871. "shasum": "",
  872. "mirrors": [
  873. {
  874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  875. "preferred": true
  876. }
  877. ]
  878. },
  879. "require": {
  880. "php": "^7.0 || ^8.0",
  881. "phpoption/phpoption": "^1.8"
  882. },
  883. "require-dev": {
  884. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  885. },
  886. "type": "library",
  887. "autoload": {
  888. "psr-4": {
  889. "GrahamCampbell\\ResultType\\": "src/"
  890. }
  891. },
  892. "notification-url": "https://packagist.org/downloads/",
  893. "license": [
  894. "MIT"
  895. ],
  896. "authors": [
  897. {
  898. "name": "Graham Campbell",
  899. "email": "hello@gjcampbell.co.uk",
  900. "homepage": "https://github.com/GrahamCampbell"
  901. }
  902. ],
  903. "description": "An Implementation Of The Result Type",
  904. "keywords": [
  905. "Graham Campbell",
  906. "GrahamCampbell",
  907. "Result Type",
  908. "Result-Type",
  909. "result"
  910. ],
  911. "support": {
  912. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  913. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  914. },
  915. "funding": [
  916. {
  917. "url": "https://github.com/GrahamCampbell",
  918. "type": "github"
  919. },
  920. {
  921. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  922. "type": "tidelift"
  923. }
  924. ],
  925. "time": "2021-11-21T21:41:47+00:00"
  926. },
  927. {
  928. "name": "gregwar/captcha",
  929. "version": "v1.1.9",
  930. "source": {
  931. "type": "git",
  932. "url": "https://github.com/Gregwar/Captcha.git",
  933. "reference": "4bb668e6b40e3205a020ca5ee4ca8cff8b8780c5"
  934. },
  935. "dist": {
  936. "type": "zip",
  937. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/4bb668e6b40e3205a020ca5ee4ca8cff8b8780c5",
  938. "reference": "4bb668e6b40e3205a020ca5ee4ca8cff8b8780c5",
  939. "shasum": "",
  940. "mirrors": [
  941. {
  942. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  943. "preferred": true
  944. }
  945. ]
  946. },
  947. "require": {
  948. "ext-gd": "*",
  949. "ext-mbstring": "*",
  950. "php": ">=5.3.0",
  951. "symfony/finder": "*"
  952. },
  953. "require-dev": {
  954. "phpunit/phpunit": "^6.4"
  955. },
  956. "type": "captcha",
  957. "autoload": {
  958. "psr-4": {
  959. "Gregwar\\": "src/Gregwar"
  960. }
  961. },
  962. "notification-url": "https://packagist.org/downloads/",
  963. "license": [
  964. "MIT"
  965. ],
  966. "authors": [
  967. {
  968. "name": "Grégoire Passault",
  969. "email": "g.passault@gmail.com",
  970. "homepage": "http://www.gregwar.com/"
  971. },
  972. {
  973. "name": "Jeremy Livingston",
  974. "email": "jeremy.j.livingston@gmail.com"
  975. }
  976. ],
  977. "description": "Captcha generator",
  978. "homepage": "https://github.com/Gregwar/Captcha",
  979. "keywords": [
  980. "bot",
  981. "captcha",
  982. "spam"
  983. ],
  984. "support": {
  985. "issues": "https://github.com/Gregwar/Captcha/issues",
  986. "source": "https://github.com/Gregwar/Captcha/tree/master"
  987. },
  988. "time": "2020-03-24T14:39:05+00:00"
  989. },
  990. {
  991. "name": "guzzlehttp/guzzle",
  992. "version": "7.4.5",
  993. "source": {
  994. "type": "git",
  995. "url": "https://github.com/guzzle/guzzle.git",
  996. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  997. },
  998. "dist": {
  999. "type": "zip",
  1000. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1001. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1002. "shasum": "",
  1003. "mirrors": [
  1004. {
  1005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1006. "preferred": true
  1007. }
  1008. ]
  1009. },
  1010. "require": {
  1011. "ext-json": "*",
  1012. "guzzlehttp/promises": "^1.5",
  1013. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1014. "php": "^7.2.5 || ^8.0",
  1015. "psr/http-client": "^1.0",
  1016. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1017. },
  1018. "provide": {
  1019. "psr/http-client-implementation": "1.0"
  1020. },
  1021. "require-dev": {
  1022. "bamarni/composer-bin-plugin": "^1.4.1",
  1023. "ext-curl": "*",
  1024. "php-http/client-integration-tests": "^3.0",
  1025. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1026. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1027. },
  1028. "suggest": {
  1029. "ext-curl": "Required for CURL handler support",
  1030. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1031. "psr/log": "Required for using the Log middleware"
  1032. },
  1033. "type": "library",
  1034. "extra": {
  1035. "branch-alias": {
  1036. "dev-master": "7.4-dev"
  1037. }
  1038. },
  1039. "autoload": {
  1040. "files": [
  1041. "src/functions_include.php"
  1042. ],
  1043. "psr-4": {
  1044. "GuzzleHttp\\": "src/"
  1045. }
  1046. },
  1047. "notification-url": "https://packagist.org/downloads/",
  1048. "license": [
  1049. "MIT"
  1050. ],
  1051. "authors": [
  1052. {
  1053. "name": "Graham Campbell",
  1054. "email": "hello@gjcampbell.co.uk",
  1055. "homepage": "https://github.com/GrahamCampbell"
  1056. },
  1057. {
  1058. "name": "Michael Dowling",
  1059. "email": "mtdowling@gmail.com",
  1060. "homepage": "https://github.com/mtdowling"
  1061. },
  1062. {
  1063. "name": "Jeremy Lindblom",
  1064. "email": "jeremeamia@gmail.com",
  1065. "homepage": "https://github.com/jeremeamia"
  1066. },
  1067. {
  1068. "name": "George Mponos",
  1069. "email": "gmponos@gmail.com",
  1070. "homepage": "https://github.com/gmponos"
  1071. },
  1072. {
  1073. "name": "Tobias Nyholm",
  1074. "email": "tobias.nyholm@gmail.com",
  1075. "homepage": "https://github.com/Nyholm"
  1076. },
  1077. {
  1078. "name": "Márk Sági-Kazár",
  1079. "email": "mark.sagikazar@gmail.com",
  1080. "homepage": "https://github.com/sagikazarmark"
  1081. },
  1082. {
  1083. "name": "Tobias Schultze",
  1084. "email": "webmaster@tubo-world.de",
  1085. "homepage": "https://github.com/Tobion"
  1086. }
  1087. ],
  1088. "description": "Guzzle is a PHP HTTP client library",
  1089. "keywords": [
  1090. "client",
  1091. "curl",
  1092. "framework",
  1093. "http",
  1094. "http client",
  1095. "psr-18",
  1096. "psr-7",
  1097. "rest",
  1098. "web service"
  1099. ],
  1100. "support": {
  1101. "issues": "https://github.com/guzzle/guzzle/issues",
  1102. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  1103. },
  1104. "funding": [
  1105. {
  1106. "url": "https://github.com/GrahamCampbell",
  1107. "type": "github"
  1108. },
  1109. {
  1110. "url": "https://github.com/Nyholm",
  1111. "type": "github"
  1112. },
  1113. {
  1114. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1115. "type": "tidelift"
  1116. }
  1117. ],
  1118. "time": "2022-06-20T22:16:13+00:00"
  1119. },
  1120. {
  1121. "name": "guzzlehttp/promises",
  1122. "version": "1.5.1",
  1123. "source": {
  1124. "type": "git",
  1125. "url": "https://github.com/guzzle/promises.git",
  1126. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1127. },
  1128. "dist": {
  1129. "type": "zip",
  1130. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1131. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1132. "shasum": "",
  1133. "mirrors": [
  1134. {
  1135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1136. "preferred": true
  1137. }
  1138. ]
  1139. },
  1140. "require": {
  1141. "php": ">=5.5"
  1142. },
  1143. "require-dev": {
  1144. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1145. },
  1146. "type": "library",
  1147. "extra": {
  1148. "branch-alias": {
  1149. "dev-master": "1.5-dev"
  1150. }
  1151. },
  1152. "autoload": {
  1153. "files": [
  1154. "src/functions_include.php"
  1155. ],
  1156. "psr-4": {
  1157. "GuzzleHttp\\Promise\\": "src/"
  1158. }
  1159. },
  1160. "notification-url": "https://packagist.org/downloads/",
  1161. "license": [
  1162. "MIT"
  1163. ],
  1164. "authors": [
  1165. {
  1166. "name": "Graham Campbell",
  1167. "email": "hello@gjcampbell.co.uk",
  1168. "homepage": "https://github.com/GrahamCampbell"
  1169. },
  1170. {
  1171. "name": "Michael Dowling",
  1172. "email": "mtdowling@gmail.com",
  1173. "homepage": "https://github.com/mtdowling"
  1174. },
  1175. {
  1176. "name": "Tobias Nyholm",
  1177. "email": "tobias.nyholm@gmail.com",
  1178. "homepage": "https://github.com/Nyholm"
  1179. },
  1180. {
  1181. "name": "Tobias Schultze",
  1182. "email": "webmaster@tubo-world.de",
  1183. "homepage": "https://github.com/Tobion"
  1184. }
  1185. ],
  1186. "description": "Guzzle promises library",
  1187. "keywords": [
  1188. "promise"
  1189. ],
  1190. "support": {
  1191. "issues": "https://github.com/guzzle/promises/issues",
  1192. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1193. },
  1194. "funding": [
  1195. {
  1196. "url": "https://github.com/GrahamCampbell",
  1197. "type": "github"
  1198. },
  1199. {
  1200. "url": "https://github.com/Nyholm",
  1201. "type": "github"
  1202. },
  1203. {
  1204. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1205. "type": "tidelift"
  1206. }
  1207. ],
  1208. "time": "2021-10-22T20:56:57+00:00"
  1209. },
  1210. {
  1211. "name": "guzzlehttp/psr7",
  1212. "version": "1.x-dev",
  1213. "source": {
  1214. "type": "git",
  1215. "url": "https://github.com/guzzle/psr7.git",
  1216. "reference": "337e3ad8e5716c15f9657bd214d16cc5e69df268"
  1217. },
  1218. "dist": {
  1219. "type": "zip",
  1220. "url": "https://api.github.com/repos/guzzle/psr7/zipball/337e3ad8e5716c15f9657bd214d16cc5e69df268",
  1221. "reference": "337e3ad8e5716c15f9657bd214d16cc5e69df268",
  1222. "shasum": "",
  1223. "mirrors": [
  1224. {
  1225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1226. "preferred": true
  1227. }
  1228. ]
  1229. },
  1230. "require": {
  1231. "php": ">=5.4.0",
  1232. "psr/http-message": "~1.0",
  1233. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1234. },
  1235. "provide": {
  1236. "psr/http-message-implementation": "1.0"
  1237. },
  1238. "require-dev": {
  1239. "ext-zlib": "*",
  1240. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1241. },
  1242. "suggest": {
  1243. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1244. },
  1245. "type": "library",
  1246. "extra": {
  1247. "branch-alias": {
  1248. "dev-master": "1.7-dev"
  1249. }
  1250. },
  1251. "autoload": {
  1252. "files": [
  1253. "src/functions_include.php"
  1254. ],
  1255. "psr-4": {
  1256. "GuzzleHttp\\Psr7\\": "src/"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Graham Campbell",
  1266. "email": "hello@gjcampbell.co.uk",
  1267. "homepage": "https://github.com/GrahamCampbell"
  1268. },
  1269. {
  1270. "name": "Michael Dowling",
  1271. "email": "mtdowling@gmail.com",
  1272. "homepage": "https://github.com/mtdowling"
  1273. },
  1274. {
  1275. "name": "George Mponos",
  1276. "email": "gmponos@gmail.com",
  1277. "homepage": "https://github.com/gmponos"
  1278. },
  1279. {
  1280. "name": "Tobias Nyholm",
  1281. "email": "tobias.nyholm@gmail.com",
  1282. "homepage": "https://github.com/Nyholm"
  1283. },
  1284. {
  1285. "name": "Márk Sági-Kazár",
  1286. "email": "mark.sagikazar@gmail.com",
  1287. "homepage": "https://github.com/sagikazarmark"
  1288. },
  1289. {
  1290. "name": "Tobias Schultze",
  1291. "email": "webmaster@tubo-world.de",
  1292. "homepage": "https://github.com/Tobion"
  1293. }
  1294. ],
  1295. "description": "PSR-7 message implementation that also provides common utility methods",
  1296. "keywords": [
  1297. "http",
  1298. "message",
  1299. "psr-7",
  1300. "request",
  1301. "response",
  1302. "stream",
  1303. "uri",
  1304. "url"
  1305. ],
  1306. "support": {
  1307. "issues": "https://github.com/guzzle/psr7/issues",
  1308. "source": "https://github.com/guzzle/psr7/tree/1.x"
  1309. },
  1310. "funding": [
  1311. {
  1312. "url": "https://github.com/GrahamCampbell",
  1313. "type": "github"
  1314. },
  1315. {
  1316. "url": "https://github.com/Nyholm",
  1317. "type": "github"
  1318. },
  1319. {
  1320. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1321. "type": "tidelift"
  1322. }
  1323. ],
  1324. "time": "2022-03-20T21:51:18+00:00"
  1325. },
  1326. {
  1327. "name": "intervention/image",
  1328. "version": "2.7.2",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/Intervention/image.git",
  1332. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1337. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1338. "shasum": "",
  1339. "mirrors": [
  1340. {
  1341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1342. "preferred": true
  1343. }
  1344. ]
  1345. },
  1346. "require": {
  1347. "ext-fileinfo": "*",
  1348. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1349. "php": ">=5.4.0"
  1350. },
  1351. "require-dev": {
  1352. "mockery/mockery": "~0.9.2",
  1353. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1354. },
  1355. "suggest": {
  1356. "ext-gd": "to use GD library based image processing.",
  1357. "ext-imagick": "to use Imagick based image processing.",
  1358. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1359. },
  1360. "type": "library",
  1361. "extra": {
  1362. "branch-alias": {
  1363. "dev-master": "2.4-dev"
  1364. },
  1365. "laravel": {
  1366. "providers": [
  1367. "Intervention\\Image\\ImageServiceProvider"
  1368. ],
  1369. "aliases": {
  1370. "Image": "Intervention\\Image\\Facades\\Image"
  1371. }
  1372. }
  1373. },
  1374. "autoload": {
  1375. "psr-4": {
  1376. "Intervention\\Image\\": "src/Intervention/Image"
  1377. }
  1378. },
  1379. "notification-url": "https://packagist.org/downloads/",
  1380. "license": [
  1381. "MIT"
  1382. ],
  1383. "authors": [
  1384. {
  1385. "name": "Oliver Vogel",
  1386. "email": "oliver@intervention.io",
  1387. "homepage": "https://intervention.io/"
  1388. }
  1389. ],
  1390. "description": "Image handling and manipulation library with support for Laravel integration",
  1391. "homepage": "http://image.intervention.io/",
  1392. "keywords": [
  1393. "gd",
  1394. "image",
  1395. "imagick",
  1396. "laravel",
  1397. "thumbnail",
  1398. "watermark"
  1399. ],
  1400. "support": {
  1401. "issues": "https://github.com/Intervention/image/issues",
  1402. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1403. },
  1404. "funding": [
  1405. {
  1406. "url": "https://paypal.me/interventionio",
  1407. "type": "custom"
  1408. },
  1409. {
  1410. "url": "https://github.com/Intervention",
  1411. "type": "github"
  1412. }
  1413. ],
  1414. "time": "2022-05-21T17:30:32+00:00"
  1415. },
  1416. {
  1417. "name": "jaybizzle/crawler-detect",
  1418. "version": "v1.2.111",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1422. "reference": "d572ed4a65a70a2d2871dc5137c9c5b7e69745ab"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/d572ed4a65a70a2d2871dc5137c9c5b7e69745ab",
  1427. "reference": "d572ed4a65a70a2d2871dc5137c9c5b7e69745ab",
  1428. "shasum": "",
  1429. "mirrors": [
  1430. {
  1431. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1432. "preferred": true
  1433. }
  1434. ]
  1435. },
  1436. "require": {
  1437. "php": ">=5.3.0"
  1438. },
  1439. "require-dev": {
  1440. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  1441. },
  1442. "type": "library",
  1443. "autoload": {
  1444. "psr-4": {
  1445. "Jaybizzle\\CrawlerDetect\\": "src/"
  1446. }
  1447. },
  1448. "notification-url": "https://packagist.org/downloads/",
  1449. "license": [
  1450. "MIT"
  1451. ],
  1452. "authors": [
  1453. {
  1454. "name": "Mark Beech",
  1455. "email": "m@rkbee.ch",
  1456. "role": "Developer"
  1457. }
  1458. ],
  1459. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1460. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1461. "keywords": [
  1462. "crawler",
  1463. "crawler detect",
  1464. "crawler detector",
  1465. "crawlerdetect",
  1466. "php crawler detect"
  1467. ],
  1468. "support": {
  1469. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1470. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.111"
  1471. },
  1472. "time": "2022-03-15T22:19:01+00:00"
  1473. },
  1474. {
  1475. "name": "jenssegers/agent",
  1476. "version": "v2.6.4",
  1477. "source": {
  1478. "type": "git",
  1479. "url": "https://github.com/jenssegers/agent.git",
  1480. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1481. },
  1482. "dist": {
  1483. "type": "zip",
  1484. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1485. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1486. "shasum": "",
  1487. "mirrors": [
  1488. {
  1489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1490. "preferred": true
  1491. }
  1492. ]
  1493. },
  1494. "require": {
  1495. "jaybizzle/crawler-detect": "^1.2",
  1496. "mobiledetect/mobiledetectlib": "^2.7.6",
  1497. "php": ">=5.6"
  1498. },
  1499. "require-dev": {
  1500. "php-coveralls/php-coveralls": "^2.1",
  1501. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1502. },
  1503. "suggest": {
  1504. "illuminate/support": "Required for laravel service providers"
  1505. },
  1506. "type": "library",
  1507. "extra": {
  1508. "branch-alias": {
  1509. "dev-master": "3.0-dev"
  1510. },
  1511. "laravel": {
  1512. "providers": [
  1513. "Jenssegers\\Agent\\AgentServiceProvider"
  1514. ],
  1515. "aliases": {
  1516. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1517. }
  1518. }
  1519. },
  1520. "autoload": {
  1521. "psr-4": {
  1522. "Jenssegers\\Agent\\": "src/"
  1523. }
  1524. },
  1525. "notification-url": "https://packagist.org/downloads/",
  1526. "license": [
  1527. "MIT"
  1528. ],
  1529. "authors": [
  1530. {
  1531. "name": "Jens Segers",
  1532. "homepage": "https://jenssegers.com"
  1533. }
  1534. ],
  1535. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1536. "homepage": "https://github.com/jenssegers/agent",
  1537. "keywords": [
  1538. "Agent",
  1539. "browser",
  1540. "desktop",
  1541. "laravel",
  1542. "mobile",
  1543. "platform",
  1544. "user agent",
  1545. "useragent"
  1546. ],
  1547. "support": {
  1548. "issues": "https://github.com/jenssegers/agent/issues",
  1549. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1550. },
  1551. "funding": [
  1552. {
  1553. "url": "https://github.com/jenssegers",
  1554. "type": "github"
  1555. },
  1556. {
  1557. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1558. "type": "tidelift"
  1559. }
  1560. ],
  1561. "time": "2020-06-13T08:05:20+00:00"
  1562. },
  1563. {
  1564. "name": "laravel-lang/lang",
  1565. "version": "10.9.2",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/Laravel-Lang/lang.git",
  1569. "reference": "0ab2e88f2772ae4f604ee25efe49e3f2bbf83146"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/0ab2e88f2772ae4f604ee25efe49e3f2bbf83146",
  1574. "reference": "0ab2e88f2772ae4f604ee25efe49e3f2bbf83146",
  1575. "shasum": "",
  1576. "mirrors": [
  1577. {
  1578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1579. "preferred": true
  1580. }
  1581. ]
  1582. },
  1583. "require": {
  1584. "ext-json": "*"
  1585. },
  1586. "conflict": {
  1587. "laravel-lang/publisher": "<12.0"
  1588. },
  1589. "require-dev": {
  1590. "dragon-code/pretty-array": "^4.0",
  1591. "dragon-code/simple-dto": "^2.3",
  1592. "dragon-code/support": "^6.1",
  1593. "ext-zip": "*",
  1594. "guzzlehttp/guzzle": "^7.3",
  1595. "laravel-lang/publisher": "^13.0",
  1596. "laravel/breeze": "^1.2",
  1597. "laravel/fortify": "^1.7",
  1598. "laravel/jetstream": "^2.3",
  1599. "laravel/ui": "^3.4",
  1600. "orchestra/testbench": "^7.0",
  1601. "php": "^8.1",
  1602. "phpunit/phpunit": "^9.5",
  1603. "symfony/finder": "^6.0",
  1604. "symfony/var-dumper": "^6.0",
  1605. "vlucas/phpdotenv": "^5.4.1"
  1606. },
  1607. "suggest": {
  1608. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1609. "laravel-lang/publisher": "Easy installation and update of translation files for your project",
  1610. "overtrue/laravel-lang": "Command to add languages in your project"
  1611. },
  1612. "type": "library",
  1613. "autoload": {
  1614. "psr-4": {
  1615. "LaravelLang\\Lang\\": "src"
  1616. }
  1617. },
  1618. "notification-url": "https://packagist.org/downloads/",
  1619. "license": [
  1620. "MIT"
  1621. ],
  1622. "authors": [
  1623. {
  1624. "name": "Laravel-Lang Team",
  1625. "homepage": "https://github.com/Laravel-Lang"
  1626. }
  1627. ],
  1628. "description": "Languages for Laravel",
  1629. "keywords": [
  1630. "lang",
  1631. "languages",
  1632. "laravel",
  1633. "lpm"
  1634. ],
  1635. "support": {
  1636. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1637. "source": "https://github.com/Laravel-Lang/lang"
  1638. },
  1639. "funding": [
  1640. {
  1641. "url": "https://opencollective.com/laravel-lang",
  1642. "type": "open_collective"
  1643. }
  1644. ],
  1645. "time": "2022-06-06T10:31:09+00:00"
  1646. },
  1647. {
  1648. "name": "laravel/framework",
  1649. "version": "v8.83.16",
  1650. "source": {
  1651. "type": "git",
  1652. "url": "https://github.com/laravel/framework.git",
  1653. "reference": "6be5abd144faf517879af7298e9d79f06f250f75"
  1654. },
  1655. "dist": {
  1656. "type": "zip",
  1657. "url": "https://api.github.com/repos/laravel/framework/zipball/6be5abd144faf517879af7298e9d79f06f250f75",
  1658. "reference": "6be5abd144faf517879af7298e9d79f06f250f75",
  1659. "shasum": "",
  1660. "mirrors": [
  1661. {
  1662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1663. "preferred": true
  1664. }
  1665. ]
  1666. },
  1667. "require": {
  1668. "doctrine/inflector": "^1.4|^2.0",
  1669. "dragonmantank/cron-expression": "^3.0.2",
  1670. "egulias/email-validator": "^2.1.10",
  1671. "ext-json": "*",
  1672. "ext-mbstring": "*",
  1673. "ext-openssl": "*",
  1674. "laravel/serializable-closure": "^1.0",
  1675. "league/commonmark": "^1.3|^2.0.2",
  1676. "league/flysystem": "^1.1",
  1677. "monolog/monolog": "^2.0",
  1678. "nesbot/carbon": "^2.53.1",
  1679. "opis/closure": "^3.6",
  1680. "php": "^7.3|^8.0",
  1681. "psr/container": "^1.0",
  1682. "psr/log": "^1.0|^2.0",
  1683. "psr/simple-cache": "^1.0",
  1684. "ramsey/uuid": "^4.2.2",
  1685. "swiftmailer/swiftmailer": "^6.3",
  1686. "symfony/console": "^5.4",
  1687. "symfony/error-handler": "^5.4",
  1688. "symfony/finder": "^5.4",
  1689. "symfony/http-foundation": "^5.4",
  1690. "symfony/http-kernel": "^5.4",
  1691. "symfony/mime": "^5.4",
  1692. "symfony/process": "^5.4",
  1693. "symfony/routing": "^5.4",
  1694. "symfony/var-dumper": "^5.4",
  1695. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1696. "vlucas/phpdotenv": "^5.4.1",
  1697. "voku/portable-ascii": "^1.6.1"
  1698. },
  1699. "conflict": {
  1700. "tightenco/collect": "<5.5.33"
  1701. },
  1702. "provide": {
  1703. "psr/container-implementation": "1.0",
  1704. "psr/simple-cache-implementation": "1.0"
  1705. },
  1706. "replace": {
  1707. "illuminate/auth": "self.version",
  1708. "illuminate/broadcasting": "self.version",
  1709. "illuminate/bus": "self.version",
  1710. "illuminate/cache": "self.version",
  1711. "illuminate/collections": "self.version",
  1712. "illuminate/config": "self.version",
  1713. "illuminate/console": "self.version",
  1714. "illuminate/container": "self.version",
  1715. "illuminate/contracts": "self.version",
  1716. "illuminate/cookie": "self.version",
  1717. "illuminate/database": "self.version",
  1718. "illuminate/encryption": "self.version",
  1719. "illuminate/events": "self.version",
  1720. "illuminate/filesystem": "self.version",
  1721. "illuminate/hashing": "self.version",
  1722. "illuminate/http": "self.version",
  1723. "illuminate/log": "self.version",
  1724. "illuminate/macroable": "self.version",
  1725. "illuminate/mail": "self.version",
  1726. "illuminate/notifications": "self.version",
  1727. "illuminate/pagination": "self.version",
  1728. "illuminate/pipeline": "self.version",
  1729. "illuminate/queue": "self.version",
  1730. "illuminate/redis": "self.version",
  1731. "illuminate/routing": "self.version",
  1732. "illuminate/session": "self.version",
  1733. "illuminate/support": "self.version",
  1734. "illuminate/testing": "self.version",
  1735. "illuminate/translation": "self.version",
  1736. "illuminate/validation": "self.version",
  1737. "illuminate/view": "self.version"
  1738. },
  1739. "require-dev": {
  1740. "aws/aws-sdk-php": "^3.198.1",
  1741. "doctrine/dbal": "^2.13.3|^3.1.4",
  1742. "filp/whoops": "^2.14.3",
  1743. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1744. "league/flysystem-cached-adapter": "^1.0",
  1745. "mockery/mockery": "^1.4.4",
  1746. "orchestra/testbench-core": "^6.27",
  1747. "pda/pheanstalk": "^4.0",
  1748. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1749. "predis/predis": "^1.1.9",
  1750. "symfony/cache": "^5.4"
  1751. },
  1752. "suggest": {
  1753. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1754. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1755. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1756. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1757. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1758. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1759. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1760. "ext-memcached": "Required to use the memcache cache driver.",
  1761. "ext-pcntl": "Required to use all features of the queue worker.",
  1762. "ext-posix": "Required to use all features of the queue worker.",
  1763. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1764. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1765. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1766. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1767. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1768. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1769. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1770. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1771. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1772. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1773. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1774. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1775. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1776. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1777. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1778. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1779. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1780. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1781. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1782. },
  1783. "type": "library",
  1784. "extra": {
  1785. "branch-alias": {
  1786. "dev-master": "8.x-dev"
  1787. }
  1788. },
  1789. "autoload": {
  1790. "files": [
  1791. "src/Illuminate/Collections/helpers.php",
  1792. "src/Illuminate/Events/functions.php",
  1793. "src/Illuminate/Foundation/helpers.php",
  1794. "src/Illuminate/Support/helpers.php"
  1795. ],
  1796. "psr-4": {
  1797. "Illuminate\\": "src/Illuminate/",
  1798. "Illuminate\\Support\\": [
  1799. "src/Illuminate/Macroable/",
  1800. "src/Illuminate/Collections/"
  1801. ]
  1802. }
  1803. },
  1804. "notification-url": "https://packagist.org/downloads/",
  1805. "license": [
  1806. "MIT"
  1807. ],
  1808. "authors": [
  1809. {
  1810. "name": "Taylor Otwell",
  1811. "email": "taylor@laravel.com"
  1812. }
  1813. ],
  1814. "description": "The Laravel Framework.",
  1815. "homepage": "https://laravel.com",
  1816. "keywords": [
  1817. "framework",
  1818. "laravel"
  1819. ],
  1820. "support": {
  1821. "issues": "https://github.com/laravel/framework/issues",
  1822. "source": "https://github.com/laravel/framework"
  1823. },
  1824. "time": "2022-06-07T15:09:06+00:00"
  1825. },
  1826. {
  1827. "name": "laravel/sanctum",
  1828. "version": "v2.15.1",
  1829. "source": {
  1830. "type": "git",
  1831. "url": "https://github.com/laravel/sanctum.git",
  1832. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  1833. },
  1834. "dist": {
  1835. "type": "zip",
  1836. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  1837. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  1838. "shasum": "",
  1839. "mirrors": [
  1840. {
  1841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1842. "preferred": true
  1843. }
  1844. ]
  1845. },
  1846. "require": {
  1847. "ext-json": "*",
  1848. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  1849. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  1850. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  1851. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  1852. "php": "^7.2|^8.0"
  1853. },
  1854. "require-dev": {
  1855. "mockery/mockery": "^1.0",
  1856. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  1857. "phpunit/phpunit": "^8.0|^9.3"
  1858. },
  1859. "type": "library",
  1860. "extra": {
  1861. "branch-alias": {
  1862. "dev-master": "2.x-dev"
  1863. },
  1864. "laravel": {
  1865. "providers": [
  1866. "Laravel\\Sanctum\\SanctumServiceProvider"
  1867. ]
  1868. }
  1869. },
  1870. "autoload": {
  1871. "psr-4": {
  1872. "Laravel\\Sanctum\\": "src/"
  1873. }
  1874. },
  1875. "notification-url": "https://packagist.org/downloads/",
  1876. "license": [
  1877. "MIT"
  1878. ],
  1879. "authors": [
  1880. {
  1881. "name": "Taylor Otwell",
  1882. "email": "taylor@laravel.com"
  1883. }
  1884. ],
  1885. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1886. "keywords": [
  1887. "auth",
  1888. "laravel",
  1889. "sanctum"
  1890. ],
  1891. "support": {
  1892. "issues": "https://github.com/laravel/sanctum/issues",
  1893. "source": "https://github.com/laravel/sanctum"
  1894. },
  1895. "time": "2022-04-08T13:39:49+00:00"
  1896. },
  1897. {
  1898. "name": "laravel/serializable-closure",
  1899. "version": "v1.1.1",
  1900. "source": {
  1901. "type": "git",
  1902. "url": "https://github.com/laravel/serializable-closure.git",
  1903. "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e"
  1904. },
  1905. "dist": {
  1906. "type": "zip",
  1907. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/9e4b005daa20b0c161f3845040046dc9ddc1d74e",
  1908. "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e",
  1909. "shasum": "",
  1910. "mirrors": [
  1911. {
  1912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1913. "preferred": true
  1914. }
  1915. ]
  1916. },
  1917. "require": {
  1918. "php": "^7.3|^8.0"
  1919. },
  1920. "require-dev": {
  1921. "pestphp/pest": "^1.18",
  1922. "phpstan/phpstan": "^0.12.98",
  1923. "symfony/var-dumper": "^5.3"
  1924. },
  1925. "type": "library",
  1926. "extra": {
  1927. "branch-alias": {
  1928. "dev-master": "1.x-dev"
  1929. }
  1930. },
  1931. "autoload": {
  1932. "psr-4": {
  1933. "Laravel\\SerializableClosure\\": "src/"
  1934. }
  1935. },
  1936. "notification-url": "https://packagist.org/downloads/",
  1937. "license": [
  1938. "MIT"
  1939. ],
  1940. "authors": [
  1941. {
  1942. "name": "Taylor Otwell",
  1943. "email": "taylor@laravel.com"
  1944. },
  1945. {
  1946. "name": "Nuno Maduro",
  1947. "email": "nuno@laravel.com"
  1948. }
  1949. ],
  1950. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1951. "keywords": [
  1952. "closure",
  1953. "laravel",
  1954. "serializable"
  1955. ],
  1956. "support": {
  1957. "issues": "https://github.com/laravel/serializable-closure/issues",
  1958. "source": "https://github.com/laravel/serializable-closure"
  1959. },
  1960. "time": "2022-02-11T19:23:53+00:00"
  1961. },
  1962. {
  1963. "name": "laravel/tinker",
  1964. "version": "v2.7.2",
  1965. "source": {
  1966. "type": "git",
  1967. "url": "https://github.com/laravel/tinker.git",
  1968. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  1969. },
  1970. "dist": {
  1971. "type": "zip",
  1972. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  1973. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  1974. "shasum": "",
  1975. "mirrors": [
  1976. {
  1977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1978. "preferred": true
  1979. }
  1980. ]
  1981. },
  1982. "require": {
  1983. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  1984. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  1985. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  1986. "php": "^7.2.5|^8.0",
  1987. "psy/psysh": "^0.10.4|^0.11.1",
  1988. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1989. },
  1990. "require-dev": {
  1991. "mockery/mockery": "~1.3.3|^1.4.2",
  1992. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1993. },
  1994. "suggest": {
  1995. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  1996. },
  1997. "type": "library",
  1998. "extra": {
  1999. "branch-alias": {
  2000. "dev-master": "2.x-dev"
  2001. },
  2002. "laravel": {
  2003. "providers": [
  2004. "Laravel\\Tinker\\TinkerServiceProvider"
  2005. ]
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Laravel\\Tinker\\": "src/"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Taylor Otwell",
  2020. "email": "taylor@laravel.com"
  2021. }
  2022. ],
  2023. "description": "Powerful REPL for the Laravel framework.",
  2024. "keywords": [
  2025. "REPL",
  2026. "Tinker",
  2027. "laravel",
  2028. "psysh"
  2029. ],
  2030. "support": {
  2031. "issues": "https://github.com/laravel/tinker/issues",
  2032. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  2033. },
  2034. "time": "2022-03-23T12:38:24+00:00"
  2035. },
  2036. {
  2037. "name": "lcobucci/jwt",
  2038. "version": "3.3.3",
  2039. "source": {
  2040. "type": "git",
  2041. "url": "https://github.com/lcobucci/jwt.git",
  2042. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2043. },
  2044. "dist": {
  2045. "type": "zip",
  2046. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2047. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2048. "shasum": "",
  2049. "mirrors": [
  2050. {
  2051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2052. "preferred": true
  2053. }
  2054. ]
  2055. },
  2056. "require": {
  2057. "ext-mbstring": "*",
  2058. "ext-openssl": "*",
  2059. "php": "^5.6 || ^7.0"
  2060. },
  2061. "require-dev": {
  2062. "mikey179/vfsstream": "~1.5",
  2063. "phpmd/phpmd": "~2.2",
  2064. "phpunit/php-invoker": "~1.1",
  2065. "phpunit/phpunit": "^5.7 || ^7.3",
  2066. "squizlabs/php_codesniffer": "~2.3"
  2067. },
  2068. "type": "library",
  2069. "extra": {
  2070. "branch-alias": {
  2071. "dev-master": "3.1-dev"
  2072. }
  2073. },
  2074. "autoload": {
  2075. "psr-4": {
  2076. "Lcobucci\\JWT\\": "src"
  2077. }
  2078. },
  2079. "notification-url": "https://packagist.org/downloads/",
  2080. "license": [
  2081. "BSD-3-Clause"
  2082. ],
  2083. "authors": [
  2084. {
  2085. "name": "Luís Otávio Cobucci Oblonczyk",
  2086. "email": "lcobucci@gmail.com",
  2087. "role": "Developer"
  2088. }
  2089. ],
  2090. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2091. "keywords": [
  2092. "JWS",
  2093. "jwt"
  2094. ],
  2095. "support": {
  2096. "issues": "https://github.com/lcobucci/jwt/issues",
  2097. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2098. },
  2099. "funding": [
  2100. {
  2101. "url": "https://github.com/lcobucci",
  2102. "type": "github"
  2103. },
  2104. {
  2105. "url": "https://www.patreon.com/lcobucci",
  2106. "type": "patreon"
  2107. }
  2108. ],
  2109. "time": "2020-08-20T13:22:28+00:00"
  2110. },
  2111. {
  2112. "name": "league/commonmark",
  2113. "version": "2.3.0",
  2114. "source": {
  2115. "type": "git",
  2116. "url": "https://github.com/thephpleague/commonmark.git",
  2117. "reference": "32a49eb2b38fe5e5c417ab748a45d0beaab97955"
  2118. },
  2119. "dist": {
  2120. "type": "zip",
  2121. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/32a49eb2b38fe5e5c417ab748a45d0beaab97955",
  2122. "reference": "32a49eb2b38fe5e5c417ab748a45d0beaab97955",
  2123. "shasum": "",
  2124. "mirrors": [
  2125. {
  2126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2127. "preferred": true
  2128. }
  2129. ]
  2130. },
  2131. "require": {
  2132. "ext-mbstring": "*",
  2133. "league/config": "^1.1.1",
  2134. "php": "^7.4 || ^8.0",
  2135. "psr/event-dispatcher": "^1.0",
  2136. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2137. "symfony/polyfill-php80": "^1.16"
  2138. },
  2139. "require-dev": {
  2140. "cebe/markdown": "^1.0",
  2141. "commonmark/cmark": "0.30.0",
  2142. "commonmark/commonmark.js": "0.30.0",
  2143. "composer/package-versions-deprecated": "^1.8",
  2144. "embed/embed": "^4.4",
  2145. "erusev/parsedown": "^1.0",
  2146. "ext-json": "*",
  2147. "github/gfm": "0.29.0",
  2148. "michelf/php-markdown": "^1.4",
  2149. "nyholm/psr7": "^1.5",
  2150. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  2151. "phpunit/phpunit": "^9.5.5",
  2152. "scrutinizer/ocular": "^1.8.1",
  2153. "symfony/finder": "^5.3",
  2154. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2155. "unleashedtech/php-coding-standard": "^3.1",
  2156. "vimeo/psalm": "^4.7.3"
  2157. },
  2158. "suggest": {
  2159. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2160. },
  2161. "type": "library",
  2162. "extra": {
  2163. "branch-alias": {
  2164. "dev-main": "2.4-dev"
  2165. }
  2166. },
  2167. "autoload": {
  2168. "psr-4": {
  2169. "League\\CommonMark\\": "src"
  2170. }
  2171. },
  2172. "notification-url": "https://packagist.org/downloads/",
  2173. "license": [
  2174. "BSD-3-Clause"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "Colin O'Dell",
  2179. "email": "colinodell@gmail.com",
  2180. "homepage": "https://www.colinodell.com",
  2181. "role": "Lead Developer"
  2182. }
  2183. ],
  2184. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2185. "homepage": "https://commonmark.thephpleague.com",
  2186. "keywords": [
  2187. "commonmark",
  2188. "flavored",
  2189. "gfm",
  2190. "github",
  2191. "github-flavored",
  2192. "markdown",
  2193. "md",
  2194. "parser"
  2195. ],
  2196. "support": {
  2197. "docs": "https://commonmark.thephpleague.com/",
  2198. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2199. "issues": "https://github.com/thephpleague/commonmark/issues",
  2200. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2201. "source": "https://github.com/thephpleague/commonmark"
  2202. },
  2203. "funding": [
  2204. {
  2205. "url": "https://www.colinodell.com/sponsor",
  2206. "type": "custom"
  2207. },
  2208. {
  2209. "url": "https://www.paypal.me/colinpodell/10.00",
  2210. "type": "custom"
  2211. },
  2212. {
  2213. "url": "https://github.com/colinodell",
  2214. "type": "github"
  2215. },
  2216. {
  2217. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2218. "type": "tidelift"
  2219. }
  2220. ],
  2221. "time": "2022-04-07T22:37:05+00:00"
  2222. },
  2223. {
  2224. "name": "league/config",
  2225. "version": "v1.1.1",
  2226. "source": {
  2227. "type": "git",
  2228. "url": "https://github.com/thephpleague/config.git",
  2229. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  2230. },
  2231. "dist": {
  2232. "type": "zip",
  2233. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  2234. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  2235. "shasum": "",
  2236. "mirrors": [
  2237. {
  2238. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2239. "preferred": true
  2240. }
  2241. ]
  2242. },
  2243. "require": {
  2244. "dflydev/dot-access-data": "^3.0.1",
  2245. "nette/schema": "^1.2",
  2246. "php": "^7.4 || ^8.0"
  2247. },
  2248. "require-dev": {
  2249. "phpstan/phpstan": "^0.12.90",
  2250. "phpunit/phpunit": "^9.5.5",
  2251. "scrutinizer/ocular": "^1.8.1",
  2252. "unleashedtech/php-coding-standard": "^3.1",
  2253. "vimeo/psalm": "^4.7.3"
  2254. },
  2255. "type": "library",
  2256. "extra": {
  2257. "branch-alias": {
  2258. "dev-main": "1.2-dev"
  2259. }
  2260. },
  2261. "autoload": {
  2262. "psr-4": {
  2263. "League\\Config\\": "src"
  2264. }
  2265. },
  2266. "notification-url": "https://packagist.org/downloads/",
  2267. "license": [
  2268. "BSD-3-Clause"
  2269. ],
  2270. "authors": [
  2271. {
  2272. "name": "Colin O'Dell",
  2273. "email": "colinodell@gmail.com",
  2274. "homepage": "https://www.colinodell.com",
  2275. "role": "Lead Developer"
  2276. }
  2277. ],
  2278. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2279. "homepage": "https://config.thephpleague.com",
  2280. "keywords": [
  2281. "array",
  2282. "config",
  2283. "configuration",
  2284. "dot",
  2285. "dot-access",
  2286. "nested",
  2287. "schema"
  2288. ],
  2289. "support": {
  2290. "docs": "https://config.thephpleague.com/",
  2291. "issues": "https://github.com/thephpleague/config/issues",
  2292. "rss": "https://github.com/thephpleague/config/releases.atom",
  2293. "source": "https://github.com/thephpleague/config"
  2294. },
  2295. "funding": [
  2296. {
  2297. "url": "https://www.colinodell.com/sponsor",
  2298. "type": "custom"
  2299. },
  2300. {
  2301. "url": "https://www.paypal.me/colinpodell/10.00",
  2302. "type": "custom"
  2303. },
  2304. {
  2305. "url": "https://github.com/colinodell",
  2306. "type": "github"
  2307. }
  2308. ],
  2309. "time": "2021-08-14T12:15:32+00:00"
  2310. },
  2311. {
  2312. "name": "league/flysystem",
  2313. "version": "1.1.9",
  2314. "source": {
  2315. "type": "git",
  2316. "url": "https://github.com/thephpleague/flysystem.git",
  2317. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  2318. },
  2319. "dist": {
  2320. "type": "zip",
  2321. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  2322. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  2323. "shasum": "",
  2324. "mirrors": [
  2325. {
  2326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2327. "preferred": true
  2328. }
  2329. ]
  2330. },
  2331. "require": {
  2332. "ext-fileinfo": "*",
  2333. "league/mime-type-detection": "^1.3",
  2334. "php": "^7.2.5 || ^8.0"
  2335. },
  2336. "conflict": {
  2337. "league/flysystem-sftp": "<1.0.6"
  2338. },
  2339. "require-dev": {
  2340. "phpspec/prophecy": "^1.11.1",
  2341. "phpunit/phpunit": "^8.5.8"
  2342. },
  2343. "suggest": {
  2344. "ext-ftp": "Allows you to use FTP server storage",
  2345. "ext-openssl": "Allows you to use FTPS server storage",
  2346. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2347. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2348. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2349. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2350. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2351. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2352. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2353. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2354. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2355. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2356. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2357. },
  2358. "type": "library",
  2359. "extra": {
  2360. "branch-alias": {
  2361. "dev-master": "1.1-dev"
  2362. }
  2363. },
  2364. "autoload": {
  2365. "psr-4": {
  2366. "League\\Flysystem\\": "src/"
  2367. }
  2368. },
  2369. "notification-url": "https://packagist.org/downloads/",
  2370. "license": [
  2371. "MIT"
  2372. ],
  2373. "authors": [
  2374. {
  2375. "name": "Frank de Jonge",
  2376. "email": "info@frenky.net"
  2377. }
  2378. ],
  2379. "description": "Filesystem abstraction: Many filesystems, one API.",
  2380. "keywords": [
  2381. "Cloud Files",
  2382. "WebDAV",
  2383. "abstraction",
  2384. "aws",
  2385. "cloud",
  2386. "copy.com",
  2387. "dropbox",
  2388. "file systems",
  2389. "files",
  2390. "filesystem",
  2391. "filesystems",
  2392. "ftp",
  2393. "rackspace",
  2394. "remote",
  2395. "s3",
  2396. "sftp",
  2397. "storage"
  2398. ],
  2399. "support": {
  2400. "issues": "https://github.com/thephpleague/flysystem/issues",
  2401. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  2402. },
  2403. "funding": [
  2404. {
  2405. "url": "https://offset.earth/frankdejonge",
  2406. "type": "other"
  2407. }
  2408. ],
  2409. "time": "2021-12-09T09:40:50+00:00"
  2410. },
  2411. {
  2412. "name": "league/fractal",
  2413. "version": "0.19.2",
  2414. "source": {
  2415. "type": "git",
  2416. "url": "https://github.com/thephpleague/fractal.git",
  2417. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  2418. },
  2419. "dist": {
  2420. "type": "zip",
  2421. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  2422. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  2423. "shasum": "",
  2424. "mirrors": [
  2425. {
  2426. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2427. "preferred": true
  2428. }
  2429. ]
  2430. },
  2431. "require": {
  2432. "php": ">=5.4"
  2433. },
  2434. "require-dev": {
  2435. "doctrine/orm": "^2.5",
  2436. "illuminate/contracts": "~5.0",
  2437. "mockery/mockery": "~0.9",
  2438. "pagerfanta/pagerfanta": "~1.0.0",
  2439. "phpunit/phpunit": "^4.8.35 || ^7.5",
  2440. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  2441. "zendframework/zend-paginator": "~2.3"
  2442. },
  2443. "suggest": {
  2444. "illuminate/pagination": "The Illuminate Pagination component.",
  2445. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  2446. "zendframework/zend-paginator": "Zend Framework Paginator"
  2447. },
  2448. "type": "library",
  2449. "extra": {
  2450. "branch-alias": {
  2451. "dev-master": "0.13-dev"
  2452. }
  2453. },
  2454. "autoload": {
  2455. "psr-4": {
  2456. "League\\Fractal\\": "src"
  2457. }
  2458. },
  2459. "notification-url": "https://packagist.org/downloads/",
  2460. "license": [
  2461. "MIT"
  2462. ],
  2463. "authors": [
  2464. {
  2465. "name": "Phil Sturgeon",
  2466. "email": "me@philsturgeon.uk",
  2467. "homepage": "http://philsturgeon.uk/",
  2468. "role": "Developer"
  2469. }
  2470. ],
  2471. "description": "Handle the output of complex data structures ready for API output.",
  2472. "homepage": "http://fractal.thephpleague.com/",
  2473. "keywords": [
  2474. "api",
  2475. "json",
  2476. "league",
  2477. "rest"
  2478. ],
  2479. "support": {
  2480. "issues": "https://github.com/thephpleague/fractal/issues",
  2481. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  2482. },
  2483. "time": "2020-01-24T23:17:29+00:00"
  2484. },
  2485. {
  2486. "name": "league/mime-type-detection",
  2487. "version": "1.11.0",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2491. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2496. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2497. "shasum": "",
  2498. "mirrors": [
  2499. {
  2500. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2501. "preferred": true
  2502. }
  2503. ]
  2504. },
  2505. "require": {
  2506. "ext-fileinfo": "*",
  2507. "php": "^7.2 || ^8.0"
  2508. },
  2509. "require-dev": {
  2510. "friendsofphp/php-cs-fixer": "^3.2",
  2511. "phpstan/phpstan": "^0.12.68",
  2512. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2513. },
  2514. "type": "library",
  2515. "autoload": {
  2516. "psr-4": {
  2517. "League\\MimeTypeDetection\\": "src"
  2518. }
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "MIT"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Frank de Jonge",
  2527. "email": "info@frankdejonge.nl"
  2528. }
  2529. ],
  2530. "description": "Mime-type detection for Flysystem",
  2531. "support": {
  2532. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2533. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2534. },
  2535. "funding": [
  2536. {
  2537. "url": "https://github.com/frankdejonge",
  2538. "type": "github"
  2539. },
  2540. {
  2541. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2542. "type": "tidelift"
  2543. }
  2544. ],
  2545. "time": "2022-04-17T13:12:02+00:00"
  2546. },
  2547. {
  2548. "name": "mobiledetect/mobiledetectlib",
  2549. "version": "2.8.39",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2553. "reference": "0fd6753003fc870f6e229bae869cc1337c99bc45"
  2554. },
  2555. "dist": {
  2556. "type": "zip",
  2557. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/0fd6753003fc870f6e229bae869cc1337c99bc45",
  2558. "reference": "0fd6753003fc870f6e229bae869cc1337c99bc45",
  2559. "shasum": "",
  2560. "mirrors": [
  2561. {
  2562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2563. "preferred": true
  2564. }
  2565. ]
  2566. },
  2567. "require": {
  2568. "php": ">=5.0.0"
  2569. },
  2570. "require-dev": {
  2571. "phpunit/phpunit": "~4.8.35||~5.7"
  2572. },
  2573. "type": "library",
  2574. "autoload": {
  2575. "psr-0": {
  2576. "Detection": "namespaced/"
  2577. },
  2578. "classmap": [
  2579. "Mobile_Detect.php"
  2580. ]
  2581. },
  2582. "notification-url": "https://packagist.org/downloads/",
  2583. "license": [
  2584. "MIT"
  2585. ],
  2586. "authors": [
  2587. {
  2588. "name": "Serban Ghita",
  2589. "email": "serbanghita@gmail.com",
  2590. "homepage": "http://mobiledetect.net",
  2591. "role": "Developer"
  2592. }
  2593. ],
  2594. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  2595. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2596. "keywords": [
  2597. "detect mobile devices",
  2598. "mobile",
  2599. "mobile detect",
  2600. "mobile detector",
  2601. "php mobile detect"
  2602. ],
  2603. "support": {
  2604. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  2605. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.39"
  2606. },
  2607. "time": "2022-02-17T19:24:25+00:00"
  2608. },
  2609. {
  2610. "name": "monolog/monolog",
  2611. "version": "2.7.0",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/Seldaek/monolog.git",
  2615. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  2620. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  2621. "shasum": "",
  2622. "mirrors": [
  2623. {
  2624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2625. "preferred": true
  2626. }
  2627. ]
  2628. },
  2629. "require": {
  2630. "php": ">=7.2",
  2631. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2632. },
  2633. "provide": {
  2634. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2635. },
  2636. "require-dev": {
  2637. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2638. "doctrine/couchdb": "~1.0@dev",
  2639. "elasticsearch/elasticsearch": "^7 || ^8",
  2640. "ext-json": "*",
  2641. "graylog2/gelf-php": "^1.4.2",
  2642. "guzzlehttp/guzzle": "^7.4",
  2643. "guzzlehttp/psr7": "^2.2",
  2644. "mongodb/mongodb": "^1.8",
  2645. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2646. "php-console/php-console": "^3.1.3",
  2647. "phpspec/prophecy": "^1.15",
  2648. "phpstan/phpstan": "^0.12.91",
  2649. "phpunit/phpunit": "^8.5.14",
  2650. "predis/predis": "^1.1",
  2651. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2652. "ruflin/elastica": "^7",
  2653. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2654. "symfony/mailer": "^5.4 || ^6",
  2655. "symfony/mime": "^5.4 || ^6"
  2656. },
  2657. "suggest": {
  2658. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2659. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2660. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2661. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2662. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2663. "ext-mbstring": "Allow to work properly with unicode symbols",
  2664. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2665. "ext-openssl": "Required to send log messages using SSL",
  2666. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2667. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2668. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2669. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2670. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2671. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2672. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2673. },
  2674. "type": "library",
  2675. "extra": {
  2676. "branch-alias": {
  2677. "dev-main": "2.x-dev"
  2678. }
  2679. },
  2680. "autoload": {
  2681. "psr-4": {
  2682. "Monolog\\": "src/Monolog"
  2683. }
  2684. },
  2685. "notification-url": "https://packagist.org/downloads/",
  2686. "license": [
  2687. "MIT"
  2688. ],
  2689. "authors": [
  2690. {
  2691. "name": "Jordi Boggiano",
  2692. "email": "j.boggiano@seld.be",
  2693. "homepage": "https://seld.be"
  2694. }
  2695. ],
  2696. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2697. "homepage": "https://github.com/Seldaek/monolog",
  2698. "keywords": [
  2699. "log",
  2700. "logging",
  2701. "psr-3"
  2702. ],
  2703. "support": {
  2704. "issues": "https://github.com/Seldaek/monolog/issues",
  2705. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  2706. },
  2707. "funding": [
  2708. {
  2709. "url": "https://github.com/Seldaek",
  2710. "type": "github"
  2711. },
  2712. {
  2713. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2714. "type": "tidelift"
  2715. }
  2716. ],
  2717. "time": "2022-06-09T08:59:12+00:00"
  2718. },
  2719. {
  2720. "name": "namshi/jose",
  2721. "version": "7.2.3",
  2722. "source": {
  2723. "type": "git",
  2724. "url": "https://github.com/namshi/jose.git",
  2725. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  2726. },
  2727. "dist": {
  2728. "type": "zip",
  2729. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  2730. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  2731. "shasum": "",
  2732. "mirrors": [
  2733. {
  2734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2735. "preferred": true
  2736. }
  2737. ]
  2738. },
  2739. "require": {
  2740. "ext-date": "*",
  2741. "ext-hash": "*",
  2742. "ext-json": "*",
  2743. "ext-pcre": "*",
  2744. "ext-spl": "*",
  2745. "php": ">=5.5",
  2746. "symfony/polyfill-php56": "^1.0"
  2747. },
  2748. "require-dev": {
  2749. "phpseclib/phpseclib": "^2.0",
  2750. "phpunit/phpunit": "^4.5|^5.0",
  2751. "satooshi/php-coveralls": "^1.0"
  2752. },
  2753. "suggest": {
  2754. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  2755. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  2756. },
  2757. "type": "library",
  2758. "autoload": {
  2759. "psr-4": {
  2760. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  2761. }
  2762. },
  2763. "notification-url": "https://packagist.org/downloads/",
  2764. "license": [
  2765. "MIT"
  2766. ],
  2767. "authors": [
  2768. {
  2769. "name": "Alessandro Nadalin",
  2770. "email": "alessandro.nadalin@gmail.com"
  2771. },
  2772. {
  2773. "name": "Alessandro Cinelli (cirpo)",
  2774. "email": "alessandro.cinelli@gmail.com"
  2775. }
  2776. ],
  2777. "description": "JSON Object Signing and Encryption library for PHP.",
  2778. "keywords": [
  2779. "JSON Web Signature",
  2780. "JSON Web Token",
  2781. "JWS",
  2782. "json",
  2783. "jwt",
  2784. "token"
  2785. ],
  2786. "support": {
  2787. "issues": "https://github.com/namshi/jose/issues",
  2788. "source": "https://github.com/namshi/jose/tree/master"
  2789. },
  2790. "time": "2016-12-05T07:27:31+00:00"
  2791. },
  2792. {
  2793. "name": "nesbot/carbon",
  2794. "version": "2.58.0",
  2795. "source": {
  2796. "type": "git",
  2797. "url": "https://github.com/briannesbitt/Carbon.git",
  2798. "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055"
  2799. },
  2800. "dist": {
  2801. "type": "zip",
  2802. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/97a34af22bde8d0ac20ab34b29d7bfe360902055",
  2803. "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055",
  2804. "shasum": "",
  2805. "mirrors": [
  2806. {
  2807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2808. "preferred": true
  2809. }
  2810. ]
  2811. },
  2812. "require": {
  2813. "ext-json": "*",
  2814. "php": "^7.1.8 || ^8.0",
  2815. "symfony/polyfill-mbstring": "^1.0",
  2816. "symfony/polyfill-php80": "^1.16",
  2817. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2818. },
  2819. "require-dev": {
  2820. "doctrine/dbal": "^2.0 || ^3.0",
  2821. "doctrine/orm": "^2.7",
  2822. "friendsofphp/php-cs-fixer": "^3.0",
  2823. "kylekatarnls/multi-tester": "^2.0",
  2824. "phpmd/phpmd": "^2.9",
  2825. "phpstan/extension-installer": "^1.0",
  2826. "phpstan/phpstan": "^0.12.54 || ^1.0",
  2827. "phpunit/php-file-iterator": "^2.0.5",
  2828. "phpunit/phpunit": "^7.5.20 || ^8.5.23",
  2829. "squizlabs/php_codesniffer": "^3.4"
  2830. },
  2831. "bin": [
  2832. "bin/carbon"
  2833. ],
  2834. "type": "library",
  2835. "extra": {
  2836. "branch-alias": {
  2837. "dev-3.x": "3.x-dev",
  2838. "dev-master": "2.x-dev"
  2839. },
  2840. "laravel": {
  2841. "providers": [
  2842. "Carbon\\Laravel\\ServiceProvider"
  2843. ]
  2844. },
  2845. "phpstan": {
  2846. "includes": [
  2847. "extension.neon"
  2848. ]
  2849. }
  2850. },
  2851. "autoload": {
  2852. "psr-4": {
  2853. "Carbon\\": "src/Carbon/"
  2854. }
  2855. },
  2856. "notification-url": "https://packagist.org/downloads/",
  2857. "license": [
  2858. "MIT"
  2859. ],
  2860. "authors": [
  2861. {
  2862. "name": "Brian Nesbitt",
  2863. "email": "brian@nesbot.com",
  2864. "homepage": "https://markido.com"
  2865. },
  2866. {
  2867. "name": "kylekatarnls",
  2868. "homepage": "https://github.com/kylekatarnls"
  2869. }
  2870. ],
  2871. "description": "An API extension for DateTime that supports 281 different languages.",
  2872. "homepage": "https://carbon.nesbot.com",
  2873. "keywords": [
  2874. "date",
  2875. "datetime",
  2876. "time"
  2877. ],
  2878. "support": {
  2879. "docs": "https://carbon.nesbot.com/docs",
  2880. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2881. "source": "https://github.com/briannesbitt/Carbon"
  2882. },
  2883. "funding": [
  2884. {
  2885. "url": "https://opencollective.com/Carbon",
  2886. "type": "open_collective"
  2887. },
  2888. {
  2889. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2890. "type": "tidelift"
  2891. }
  2892. ],
  2893. "time": "2022-04-25T19:31:17+00:00"
  2894. },
  2895. {
  2896. "name": "nette/schema",
  2897. "version": "v1.2.2",
  2898. "source": {
  2899. "type": "git",
  2900. "url": "https://github.com/nette/schema.git",
  2901. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  2902. },
  2903. "dist": {
  2904. "type": "zip",
  2905. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  2906. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  2907. "shasum": "",
  2908. "mirrors": [
  2909. {
  2910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2911. "preferred": true
  2912. }
  2913. ]
  2914. },
  2915. "require": {
  2916. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2917. "php": ">=7.1 <8.2"
  2918. },
  2919. "require-dev": {
  2920. "nette/tester": "^2.3 || ^2.4",
  2921. "phpstan/phpstan-nette": "^0.12",
  2922. "tracy/tracy": "^2.7"
  2923. },
  2924. "type": "library",
  2925. "extra": {
  2926. "branch-alias": {
  2927. "dev-master": "1.2-dev"
  2928. }
  2929. },
  2930. "autoload": {
  2931. "classmap": [
  2932. "src/"
  2933. ]
  2934. },
  2935. "notification-url": "https://packagist.org/downloads/",
  2936. "license": [
  2937. "BSD-3-Clause",
  2938. "GPL-2.0-only",
  2939. "GPL-3.0-only"
  2940. ],
  2941. "authors": [
  2942. {
  2943. "name": "David Grudl",
  2944. "homepage": "https://davidgrudl.com"
  2945. },
  2946. {
  2947. "name": "Nette Community",
  2948. "homepage": "https://nette.org/contributors"
  2949. }
  2950. ],
  2951. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2952. "homepage": "https://nette.org",
  2953. "keywords": [
  2954. "config",
  2955. "nette"
  2956. ],
  2957. "support": {
  2958. "issues": "https://github.com/nette/schema/issues",
  2959. "source": "https://github.com/nette/schema/tree/v1.2.2"
  2960. },
  2961. "time": "2021-10-15T11:40:02+00:00"
  2962. },
  2963. {
  2964. "name": "nette/utils",
  2965. "version": "v3.2.7",
  2966. "source": {
  2967. "type": "git",
  2968. "url": "https://github.com/nette/utils.git",
  2969. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  2970. },
  2971. "dist": {
  2972. "type": "zip",
  2973. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  2974. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  2975. "shasum": "",
  2976. "mirrors": [
  2977. {
  2978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2979. "preferred": true
  2980. }
  2981. ]
  2982. },
  2983. "require": {
  2984. "php": ">=7.2 <8.2"
  2985. },
  2986. "conflict": {
  2987. "nette/di": "<3.0.6"
  2988. },
  2989. "require-dev": {
  2990. "nette/tester": "~2.0",
  2991. "phpstan/phpstan": "^1.0",
  2992. "tracy/tracy": "^2.3"
  2993. },
  2994. "suggest": {
  2995. "ext-gd": "to use Image",
  2996. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2997. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2998. "ext-json": "to use Nette\\Utils\\Json",
  2999. "ext-mbstring": "to use Strings::lower() etc...",
  3000. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3001. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3002. },
  3003. "type": "library",
  3004. "extra": {
  3005. "branch-alias": {
  3006. "dev-master": "3.2-dev"
  3007. }
  3008. },
  3009. "autoload": {
  3010. "classmap": [
  3011. "src/"
  3012. ]
  3013. },
  3014. "notification-url": "https://packagist.org/downloads/",
  3015. "license": [
  3016. "BSD-3-Clause",
  3017. "GPL-2.0-only",
  3018. "GPL-3.0-only"
  3019. ],
  3020. "authors": [
  3021. {
  3022. "name": "David Grudl",
  3023. "homepage": "https://davidgrudl.com"
  3024. },
  3025. {
  3026. "name": "Nette Community",
  3027. "homepage": "https://nette.org/contributors"
  3028. }
  3029. ],
  3030. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3031. "homepage": "https://nette.org",
  3032. "keywords": [
  3033. "array",
  3034. "core",
  3035. "datetime",
  3036. "images",
  3037. "json",
  3038. "nette",
  3039. "paginator",
  3040. "password",
  3041. "slugify",
  3042. "string",
  3043. "unicode",
  3044. "utf-8",
  3045. "utility",
  3046. "validation"
  3047. ],
  3048. "support": {
  3049. "issues": "https://github.com/nette/utils/issues",
  3050. "source": "https://github.com/nette/utils/tree/v3.2.7"
  3051. },
  3052. "time": "2022-01-24T11:29:14+00:00"
  3053. },
  3054. {
  3055. "name": "nikic/php-parser",
  3056. "version": "v4.13.2",
  3057. "source": {
  3058. "type": "git",
  3059. "url": "https://github.com/nikic/PHP-Parser.git",
  3060. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  3061. },
  3062. "dist": {
  3063. "type": "zip",
  3064. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  3065. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  3066. "shasum": "",
  3067. "mirrors": [
  3068. {
  3069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3070. "preferred": true
  3071. }
  3072. ]
  3073. },
  3074. "require": {
  3075. "ext-tokenizer": "*",
  3076. "php": ">=7.0"
  3077. },
  3078. "require-dev": {
  3079. "ircmaxell/php-yacc": "^0.0.7",
  3080. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3081. },
  3082. "bin": [
  3083. "bin/php-parse"
  3084. ],
  3085. "type": "library",
  3086. "extra": {
  3087. "branch-alias": {
  3088. "dev-master": "4.9-dev"
  3089. }
  3090. },
  3091. "autoload": {
  3092. "psr-4": {
  3093. "PhpParser\\": "lib/PhpParser"
  3094. }
  3095. },
  3096. "notification-url": "https://packagist.org/downloads/",
  3097. "license": [
  3098. "BSD-3-Clause"
  3099. ],
  3100. "authors": [
  3101. {
  3102. "name": "Nikita Popov"
  3103. }
  3104. ],
  3105. "description": "A PHP parser written in PHP",
  3106. "keywords": [
  3107. "parser",
  3108. "php"
  3109. ],
  3110. "support": {
  3111. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3112. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  3113. },
  3114. "time": "2021-11-30T19:35:32+00:00"
  3115. },
  3116. {
  3117. "name": "opis/closure",
  3118. "version": "3.6.3",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/opis/closure.git",
  3122. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3127. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3128. "shasum": "",
  3129. "mirrors": [
  3130. {
  3131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3132. "preferred": true
  3133. }
  3134. ]
  3135. },
  3136. "require": {
  3137. "php": "^5.4 || ^7.0 || ^8.0"
  3138. },
  3139. "require-dev": {
  3140. "jeremeamia/superclosure": "^2.0",
  3141. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3142. },
  3143. "type": "library",
  3144. "extra": {
  3145. "branch-alias": {
  3146. "dev-master": "3.6.x-dev"
  3147. }
  3148. },
  3149. "autoload": {
  3150. "files": [
  3151. "functions.php"
  3152. ],
  3153. "psr-4": {
  3154. "Opis\\Closure\\": "src/"
  3155. }
  3156. },
  3157. "notification-url": "https://packagist.org/downloads/",
  3158. "license": [
  3159. "MIT"
  3160. ],
  3161. "authors": [
  3162. {
  3163. "name": "Marius Sarca",
  3164. "email": "marius.sarca@gmail.com"
  3165. },
  3166. {
  3167. "name": "Sorin Sarca",
  3168. "email": "sarca_sorin@hotmail.com"
  3169. }
  3170. ],
  3171. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3172. "homepage": "https://opis.io/closure",
  3173. "keywords": [
  3174. "anonymous functions",
  3175. "closure",
  3176. "function",
  3177. "serializable",
  3178. "serialization",
  3179. "serialize"
  3180. ],
  3181. "support": {
  3182. "issues": "https://github.com/opis/closure/issues",
  3183. "source": "https://github.com/opis/closure/tree/3.6.3"
  3184. },
  3185. "time": "2022-01-27T09:35:39+00:00"
  3186. },
  3187. {
  3188. "name": "overtrue/laravel-lang",
  3189. "version": "5.0.2",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/overtrue/laravel-lang.git",
  3193. "reference": "cb82a2f1e5fd1c7313a5aa1531f02cd5838969e4"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/cb82a2f1e5fd1c7313a5aa1531f02cd5838969e4",
  3198. "reference": "cb82a2f1e5fd1c7313a5aa1531f02cd5838969e4",
  3199. "shasum": "",
  3200. "mirrors": [
  3201. {
  3202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3203. "preferred": true
  3204. }
  3205. ]
  3206. },
  3207. "require": {
  3208. "ext-json": "*",
  3209. "laravel-lang/lang": "^10.1",
  3210. "symfony/process": "^5.0.0"
  3211. },
  3212. "require-dev": {
  3213. "laravel/framework": "~8.1"
  3214. },
  3215. "type": "library",
  3216. "extra": {
  3217. "laravel": {
  3218. "providers": [
  3219. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3220. ]
  3221. }
  3222. },
  3223. "autoload": {
  3224. "psr-4": {
  3225. "Overtrue\\LaravelLang\\": "src/"
  3226. }
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "authors": [
  3233. {
  3234. "name": "overtrue",
  3235. "email": "anzhengchao@gmail.com"
  3236. }
  3237. ],
  3238. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3239. "keywords": [
  3240. "i18n",
  3241. "languages",
  3242. "laravel",
  3243. "locale",
  3244. "overtrue"
  3245. ],
  3246. "support": {
  3247. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3248. "source": "https://github.com/overtrue/laravel-lang/tree/5.0.2"
  3249. },
  3250. "funding": [
  3251. {
  3252. "url": "https://www.patreon.com/overtrue",
  3253. "type": "patreon"
  3254. }
  3255. ],
  3256. "time": "2021-08-20T12:06:44+00:00"
  3257. },
  3258. {
  3259. "name": "phpdocumentor/reflection-common",
  3260. "version": "2.2.0",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3264. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3269. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3270. "shasum": "",
  3271. "mirrors": [
  3272. {
  3273. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3274. "preferred": true
  3275. }
  3276. ]
  3277. },
  3278. "require": {
  3279. "php": "^7.2 || ^8.0"
  3280. },
  3281. "type": "library",
  3282. "extra": {
  3283. "branch-alias": {
  3284. "dev-2.x": "2.x-dev"
  3285. }
  3286. },
  3287. "autoload": {
  3288. "psr-4": {
  3289. "phpDocumentor\\Reflection\\": "src/"
  3290. }
  3291. },
  3292. "notification-url": "https://packagist.org/downloads/",
  3293. "license": [
  3294. "MIT"
  3295. ],
  3296. "authors": [
  3297. {
  3298. "name": "Jaap van Otterdijk",
  3299. "email": "opensource@ijaap.nl"
  3300. }
  3301. ],
  3302. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3303. "homepage": "http://www.phpdoc.org",
  3304. "keywords": [
  3305. "FQSEN",
  3306. "phpDocumentor",
  3307. "phpdoc",
  3308. "reflection",
  3309. "static analysis"
  3310. ],
  3311. "support": {
  3312. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3313. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3314. },
  3315. "time": "2020-06-27T09:03:43+00:00"
  3316. },
  3317. {
  3318. "name": "phpdocumentor/reflection-docblock",
  3319. "version": "5.3.0",
  3320. "source": {
  3321. "type": "git",
  3322. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3323. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  3324. },
  3325. "dist": {
  3326. "type": "zip",
  3327. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  3328. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  3329. "shasum": "",
  3330. "mirrors": [
  3331. {
  3332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3333. "preferred": true
  3334. }
  3335. ]
  3336. },
  3337. "require": {
  3338. "ext-filter": "*",
  3339. "php": "^7.2 || ^8.0",
  3340. "phpdocumentor/reflection-common": "^2.2",
  3341. "phpdocumentor/type-resolver": "^1.3",
  3342. "webmozart/assert": "^1.9.1"
  3343. },
  3344. "require-dev": {
  3345. "mockery/mockery": "~1.3.2",
  3346. "psalm/phar": "^4.8"
  3347. },
  3348. "type": "library",
  3349. "extra": {
  3350. "branch-alias": {
  3351. "dev-master": "5.x-dev"
  3352. }
  3353. },
  3354. "autoload": {
  3355. "psr-4": {
  3356. "phpDocumentor\\Reflection\\": "src"
  3357. }
  3358. },
  3359. "notification-url": "https://packagist.org/downloads/",
  3360. "license": [
  3361. "MIT"
  3362. ],
  3363. "authors": [
  3364. {
  3365. "name": "Mike van Riel",
  3366. "email": "me@mikevanriel.com"
  3367. },
  3368. {
  3369. "name": "Jaap van Otterdijk",
  3370. "email": "account@ijaap.nl"
  3371. }
  3372. ],
  3373. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3374. "support": {
  3375. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3376. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  3377. },
  3378. "time": "2021-10-19T17:43:47+00:00"
  3379. },
  3380. {
  3381. "name": "phpdocumentor/type-resolver",
  3382. "version": "1.6.1",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3386. "reference": "77a32518733312af16a44300404e945338981de3"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  3391. "reference": "77a32518733312af16a44300404e945338981de3",
  3392. "shasum": "",
  3393. "mirrors": [
  3394. {
  3395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3396. "preferred": true
  3397. }
  3398. ]
  3399. },
  3400. "require": {
  3401. "php": "^7.2 || ^8.0",
  3402. "phpdocumentor/reflection-common": "^2.0"
  3403. },
  3404. "require-dev": {
  3405. "ext-tokenizer": "*",
  3406. "psalm/phar": "^4.8"
  3407. },
  3408. "type": "library",
  3409. "extra": {
  3410. "branch-alias": {
  3411. "dev-1.x": "1.x-dev"
  3412. }
  3413. },
  3414. "autoload": {
  3415. "psr-4": {
  3416. "phpDocumentor\\Reflection\\": "src"
  3417. }
  3418. },
  3419. "notification-url": "https://packagist.org/downloads/",
  3420. "license": [
  3421. "MIT"
  3422. ],
  3423. "authors": [
  3424. {
  3425. "name": "Mike van Riel",
  3426. "email": "me@mikevanriel.com"
  3427. }
  3428. ],
  3429. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3430. "support": {
  3431. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3432. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  3433. },
  3434. "time": "2022-03-15T21:29:03+00:00"
  3435. },
  3436. {
  3437. "name": "phpoption/phpoption",
  3438. "version": "1.8.1",
  3439. "source": {
  3440. "type": "git",
  3441. "url": "https://github.com/schmittjoh/php-option.git",
  3442. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  3443. },
  3444. "dist": {
  3445. "type": "zip",
  3446. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  3447. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  3448. "shasum": "",
  3449. "mirrors": [
  3450. {
  3451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3452. "preferred": true
  3453. }
  3454. ]
  3455. },
  3456. "require": {
  3457. "php": "^7.0 || ^8.0"
  3458. },
  3459. "require-dev": {
  3460. "bamarni/composer-bin-plugin": "^1.4.1",
  3461. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  3462. },
  3463. "type": "library",
  3464. "extra": {
  3465. "branch-alias": {
  3466. "dev-master": "1.8-dev"
  3467. }
  3468. },
  3469. "autoload": {
  3470. "psr-4": {
  3471. "PhpOption\\": "src/PhpOption/"
  3472. }
  3473. },
  3474. "notification-url": "https://packagist.org/downloads/",
  3475. "license": [
  3476. "Apache-2.0"
  3477. ],
  3478. "authors": [
  3479. {
  3480. "name": "Johannes M. Schmitt",
  3481. "email": "schmittjoh@gmail.com",
  3482. "homepage": "https://github.com/schmittjoh"
  3483. },
  3484. {
  3485. "name": "Graham Campbell",
  3486. "email": "hello@gjcampbell.co.uk",
  3487. "homepage": "https://github.com/GrahamCampbell"
  3488. }
  3489. ],
  3490. "description": "Option Type for PHP",
  3491. "keywords": [
  3492. "language",
  3493. "option",
  3494. "php",
  3495. "type"
  3496. ],
  3497. "support": {
  3498. "issues": "https://github.com/schmittjoh/php-option/issues",
  3499. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  3500. },
  3501. "funding": [
  3502. {
  3503. "url": "https://github.com/GrahamCampbell",
  3504. "type": "github"
  3505. },
  3506. {
  3507. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3508. "type": "tidelift"
  3509. }
  3510. ],
  3511. "time": "2021-12-04T23:24:31+00:00"
  3512. },
  3513. {
  3514. "name": "psr/cache",
  3515. "version": "1.0.1",
  3516. "source": {
  3517. "type": "git",
  3518. "url": "https://github.com/php-fig/cache.git",
  3519. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3520. },
  3521. "dist": {
  3522. "type": "zip",
  3523. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3524. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3525. "shasum": "",
  3526. "mirrors": [
  3527. {
  3528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3529. "preferred": true
  3530. }
  3531. ]
  3532. },
  3533. "require": {
  3534. "php": ">=5.3.0"
  3535. },
  3536. "type": "library",
  3537. "extra": {
  3538. "branch-alias": {
  3539. "dev-master": "1.0.x-dev"
  3540. }
  3541. },
  3542. "autoload": {
  3543. "psr-4": {
  3544. "Psr\\Cache\\": "src/"
  3545. }
  3546. },
  3547. "notification-url": "https://packagist.org/downloads/",
  3548. "license": [
  3549. "MIT"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "PHP-FIG",
  3554. "homepage": "http://www.php-fig.org/"
  3555. }
  3556. ],
  3557. "description": "Common interface for caching libraries",
  3558. "keywords": [
  3559. "cache",
  3560. "psr",
  3561. "psr-6"
  3562. ],
  3563. "support": {
  3564. "source": "https://github.com/php-fig/cache/tree/master"
  3565. },
  3566. "time": "2016-08-06T20:24:11+00:00"
  3567. },
  3568. {
  3569. "name": "psr/container",
  3570. "version": "1.1.2",
  3571. "source": {
  3572. "type": "git",
  3573. "url": "https://github.com/php-fig/container.git",
  3574. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3575. },
  3576. "dist": {
  3577. "type": "zip",
  3578. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3579. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3580. "shasum": "",
  3581. "mirrors": [
  3582. {
  3583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3584. "preferred": true
  3585. }
  3586. ]
  3587. },
  3588. "require": {
  3589. "php": ">=7.4.0"
  3590. },
  3591. "type": "library",
  3592. "autoload": {
  3593. "psr-4": {
  3594. "Psr\\Container\\": "src/"
  3595. }
  3596. },
  3597. "notification-url": "https://packagist.org/downloads/",
  3598. "license": [
  3599. "MIT"
  3600. ],
  3601. "authors": [
  3602. {
  3603. "name": "PHP-FIG",
  3604. "homepage": "https://www.php-fig.org/"
  3605. }
  3606. ],
  3607. "description": "Common Container Interface (PHP FIG PSR-11)",
  3608. "homepage": "https://github.com/php-fig/container",
  3609. "keywords": [
  3610. "PSR-11",
  3611. "container",
  3612. "container-interface",
  3613. "container-interop",
  3614. "psr"
  3615. ],
  3616. "support": {
  3617. "issues": "https://github.com/php-fig/container/issues",
  3618. "source": "https://github.com/php-fig/container/tree/1.1.2"
  3619. },
  3620. "time": "2021-11-05T16:50:12+00:00"
  3621. },
  3622. {
  3623. "name": "psr/event-dispatcher",
  3624. "version": "1.0.0",
  3625. "source": {
  3626. "type": "git",
  3627. "url": "https://github.com/php-fig/event-dispatcher.git",
  3628. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3629. },
  3630. "dist": {
  3631. "type": "zip",
  3632. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3633. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3634. "shasum": "",
  3635. "mirrors": [
  3636. {
  3637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3638. "preferred": true
  3639. }
  3640. ]
  3641. },
  3642. "require": {
  3643. "php": ">=7.2.0"
  3644. },
  3645. "type": "library",
  3646. "extra": {
  3647. "branch-alias": {
  3648. "dev-master": "1.0.x-dev"
  3649. }
  3650. },
  3651. "autoload": {
  3652. "psr-4": {
  3653. "Psr\\EventDispatcher\\": "src/"
  3654. }
  3655. },
  3656. "notification-url": "https://packagist.org/downloads/",
  3657. "license": [
  3658. "MIT"
  3659. ],
  3660. "authors": [
  3661. {
  3662. "name": "PHP-FIG",
  3663. "homepage": "http://www.php-fig.org/"
  3664. }
  3665. ],
  3666. "description": "Standard interfaces for event handling.",
  3667. "keywords": [
  3668. "events",
  3669. "psr",
  3670. "psr-14"
  3671. ],
  3672. "support": {
  3673. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3674. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3675. },
  3676. "time": "2019-01-08T18:20:26+00:00"
  3677. },
  3678. {
  3679. "name": "psr/http-client",
  3680. "version": "1.0.1",
  3681. "source": {
  3682. "type": "git",
  3683. "url": "https://github.com/php-fig/http-client.git",
  3684. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3685. },
  3686. "dist": {
  3687. "type": "zip",
  3688. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3689. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3690. "shasum": "",
  3691. "mirrors": [
  3692. {
  3693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3694. "preferred": true
  3695. }
  3696. ]
  3697. },
  3698. "require": {
  3699. "php": "^7.0 || ^8.0",
  3700. "psr/http-message": "^1.0"
  3701. },
  3702. "type": "library",
  3703. "extra": {
  3704. "branch-alias": {
  3705. "dev-master": "1.0.x-dev"
  3706. }
  3707. },
  3708. "autoload": {
  3709. "psr-4": {
  3710. "Psr\\Http\\Client\\": "src/"
  3711. }
  3712. },
  3713. "notification-url": "https://packagist.org/downloads/",
  3714. "license": [
  3715. "MIT"
  3716. ],
  3717. "authors": [
  3718. {
  3719. "name": "PHP-FIG",
  3720. "homepage": "http://www.php-fig.org/"
  3721. }
  3722. ],
  3723. "description": "Common interface for HTTP clients",
  3724. "homepage": "https://github.com/php-fig/http-client",
  3725. "keywords": [
  3726. "http",
  3727. "http-client",
  3728. "psr",
  3729. "psr-18"
  3730. ],
  3731. "support": {
  3732. "source": "https://github.com/php-fig/http-client/tree/master"
  3733. },
  3734. "time": "2020-06-29T06:28:15+00:00"
  3735. },
  3736. {
  3737. "name": "psr/http-message",
  3738. "version": "1.0.1",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://github.com/php-fig/http-message.git",
  3742. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3743. },
  3744. "dist": {
  3745. "type": "zip",
  3746. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3747. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3748. "shasum": "",
  3749. "mirrors": [
  3750. {
  3751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3752. "preferred": true
  3753. }
  3754. ]
  3755. },
  3756. "require": {
  3757. "php": ">=5.3.0"
  3758. },
  3759. "type": "library",
  3760. "extra": {
  3761. "branch-alias": {
  3762. "dev-master": "1.0.x-dev"
  3763. }
  3764. },
  3765. "autoload": {
  3766. "psr-4": {
  3767. "Psr\\Http\\Message\\": "src/"
  3768. }
  3769. },
  3770. "notification-url": "https://packagist.org/downloads/",
  3771. "license": [
  3772. "MIT"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "PHP-FIG",
  3777. "homepage": "http://www.php-fig.org/"
  3778. }
  3779. ],
  3780. "description": "Common interface for HTTP messages",
  3781. "homepage": "https://github.com/php-fig/http-message",
  3782. "keywords": [
  3783. "http",
  3784. "http-message",
  3785. "psr",
  3786. "psr-7",
  3787. "request",
  3788. "response"
  3789. ],
  3790. "support": {
  3791. "source": "https://github.com/php-fig/http-message/tree/master"
  3792. },
  3793. "time": "2016-08-06T14:39:51+00:00"
  3794. },
  3795. {
  3796. "name": "psr/log",
  3797. "version": "1.1.4",
  3798. "source": {
  3799. "type": "git",
  3800. "url": "https://github.com/php-fig/log.git",
  3801. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3802. },
  3803. "dist": {
  3804. "type": "zip",
  3805. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3806. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3807. "shasum": "",
  3808. "mirrors": [
  3809. {
  3810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3811. "preferred": true
  3812. }
  3813. ]
  3814. },
  3815. "require": {
  3816. "php": ">=5.3.0"
  3817. },
  3818. "type": "library",
  3819. "extra": {
  3820. "branch-alias": {
  3821. "dev-master": "1.1.x-dev"
  3822. }
  3823. },
  3824. "autoload": {
  3825. "psr-4": {
  3826. "Psr\\Log\\": "Psr/Log/"
  3827. }
  3828. },
  3829. "notification-url": "https://packagist.org/downloads/",
  3830. "license": [
  3831. "MIT"
  3832. ],
  3833. "authors": [
  3834. {
  3835. "name": "PHP-FIG",
  3836. "homepage": "https://www.php-fig.org/"
  3837. }
  3838. ],
  3839. "description": "Common interface for logging libraries",
  3840. "homepage": "https://github.com/php-fig/log",
  3841. "keywords": [
  3842. "log",
  3843. "psr",
  3844. "psr-3"
  3845. ],
  3846. "support": {
  3847. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3848. },
  3849. "time": "2021-05-03T11:20:27+00:00"
  3850. },
  3851. {
  3852. "name": "psr/simple-cache",
  3853. "version": "1.0.1",
  3854. "source": {
  3855. "type": "git",
  3856. "url": "https://github.com/php-fig/simple-cache.git",
  3857. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3858. },
  3859. "dist": {
  3860. "type": "zip",
  3861. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3862. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3863. "shasum": "",
  3864. "mirrors": [
  3865. {
  3866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3867. "preferred": true
  3868. }
  3869. ]
  3870. },
  3871. "require": {
  3872. "php": ">=5.3.0"
  3873. },
  3874. "type": "library",
  3875. "extra": {
  3876. "branch-alias": {
  3877. "dev-master": "1.0.x-dev"
  3878. }
  3879. },
  3880. "autoload": {
  3881. "psr-4": {
  3882. "Psr\\SimpleCache\\": "src/"
  3883. }
  3884. },
  3885. "notification-url": "https://packagist.org/downloads/",
  3886. "license": [
  3887. "MIT"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "PHP-FIG",
  3892. "homepage": "http://www.php-fig.org/"
  3893. }
  3894. ],
  3895. "description": "Common interfaces for simple caching",
  3896. "keywords": [
  3897. "cache",
  3898. "caching",
  3899. "psr",
  3900. "psr-16",
  3901. "simple-cache"
  3902. ],
  3903. "support": {
  3904. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3905. },
  3906. "time": "2017-10-23T01:57:42+00:00"
  3907. },
  3908. {
  3909. "name": "psy/psysh",
  3910. "version": "v0.11.5",
  3911. "source": {
  3912. "type": "git",
  3913. "url": "https://github.com/bobthecow/psysh.git",
  3914. "reference": "c23686f9c48ca202710dbb967df8385a952a2daf"
  3915. },
  3916. "dist": {
  3917. "type": "zip",
  3918. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/c23686f9c48ca202710dbb967df8385a952a2daf",
  3919. "reference": "c23686f9c48ca202710dbb967df8385a952a2daf",
  3920. "shasum": "",
  3921. "mirrors": [
  3922. {
  3923. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3924. "preferred": true
  3925. }
  3926. ]
  3927. },
  3928. "require": {
  3929. "ext-json": "*",
  3930. "ext-tokenizer": "*",
  3931. "nikic/php-parser": "^4.0 || ^3.1",
  3932. "php": "^8.0 || ^7.0.8",
  3933. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  3934. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  3935. },
  3936. "conflict": {
  3937. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3938. },
  3939. "require-dev": {
  3940. "bamarni/composer-bin-plugin": "^1.2"
  3941. },
  3942. "suggest": {
  3943. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3944. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3945. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3946. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  3947. },
  3948. "bin": [
  3949. "bin/psysh"
  3950. ],
  3951. "type": "library",
  3952. "extra": {
  3953. "branch-alias": {
  3954. "dev-main": "0.11.x-dev"
  3955. }
  3956. },
  3957. "autoload": {
  3958. "files": [
  3959. "src/functions.php"
  3960. ],
  3961. "psr-4": {
  3962. "Psy\\": "src/"
  3963. }
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "authors": [
  3970. {
  3971. "name": "Justin Hileman",
  3972. "email": "justin@justinhileman.info",
  3973. "homepage": "http://justinhileman.com"
  3974. }
  3975. ],
  3976. "description": "An interactive shell for modern PHP.",
  3977. "homepage": "http://psysh.org",
  3978. "keywords": [
  3979. "REPL",
  3980. "console",
  3981. "interactive",
  3982. "shell"
  3983. ],
  3984. "support": {
  3985. "issues": "https://github.com/bobthecow/psysh/issues",
  3986. "source": "https://github.com/bobthecow/psysh/tree/v0.11.5"
  3987. },
  3988. "time": "2022-05-27T18:03:49+00:00"
  3989. },
  3990. {
  3991. "name": "ralouphie/getallheaders",
  3992. "version": "3.0.3",
  3993. "source": {
  3994. "type": "git",
  3995. "url": "https://github.com/ralouphie/getallheaders.git",
  3996. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3997. },
  3998. "dist": {
  3999. "type": "zip",
  4000. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4001. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4002. "shasum": "",
  4003. "mirrors": [
  4004. {
  4005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4006. "preferred": true
  4007. }
  4008. ]
  4009. },
  4010. "require": {
  4011. "php": ">=5.6"
  4012. },
  4013. "require-dev": {
  4014. "php-coveralls/php-coveralls": "^2.1",
  4015. "phpunit/phpunit": "^5 || ^6.5"
  4016. },
  4017. "type": "library",
  4018. "autoload": {
  4019. "files": [
  4020. "src/getallheaders.php"
  4021. ]
  4022. },
  4023. "notification-url": "https://packagist.org/downloads/",
  4024. "license": [
  4025. "MIT"
  4026. ],
  4027. "authors": [
  4028. {
  4029. "name": "Ralph Khattar",
  4030. "email": "ralph.khattar@gmail.com"
  4031. }
  4032. ],
  4033. "description": "A polyfill for getallheaders.",
  4034. "support": {
  4035. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4036. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4037. },
  4038. "time": "2019-03-08T08:55:37+00:00"
  4039. },
  4040. {
  4041. "name": "ramsey/collection",
  4042. "version": "1.2.2",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/ramsey/collection.git",
  4046. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4051. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4052. "shasum": "",
  4053. "mirrors": [
  4054. {
  4055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4056. "preferred": true
  4057. }
  4058. ]
  4059. },
  4060. "require": {
  4061. "php": "^7.3 || ^8",
  4062. "symfony/polyfill-php81": "^1.23"
  4063. },
  4064. "require-dev": {
  4065. "captainhook/captainhook": "^5.3",
  4066. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4067. "ergebnis/composer-normalize": "^2.6",
  4068. "fakerphp/faker": "^1.5",
  4069. "hamcrest/hamcrest-php": "^2",
  4070. "jangregor/phpstan-prophecy": "^0.8",
  4071. "mockery/mockery": "^1.3",
  4072. "phpspec/prophecy-phpunit": "^2.0",
  4073. "phpstan/extension-installer": "^1",
  4074. "phpstan/phpstan": "^0.12.32",
  4075. "phpstan/phpstan-mockery": "^0.12.5",
  4076. "phpstan/phpstan-phpunit": "^0.12.11",
  4077. "phpunit/phpunit": "^8.5 || ^9",
  4078. "psy/psysh": "^0.10.4",
  4079. "slevomat/coding-standard": "^6.3",
  4080. "squizlabs/php_codesniffer": "^3.5",
  4081. "vimeo/psalm": "^4.4"
  4082. },
  4083. "type": "library",
  4084. "autoload": {
  4085. "psr-4": {
  4086. "Ramsey\\Collection\\": "src/"
  4087. }
  4088. },
  4089. "notification-url": "https://packagist.org/downloads/",
  4090. "license": [
  4091. "MIT"
  4092. ],
  4093. "authors": [
  4094. {
  4095. "name": "Ben Ramsey",
  4096. "email": "ben@benramsey.com",
  4097. "homepage": "https://benramsey.com"
  4098. }
  4099. ],
  4100. "description": "A PHP library for representing and manipulating collections.",
  4101. "keywords": [
  4102. "array",
  4103. "collection",
  4104. "hash",
  4105. "map",
  4106. "queue",
  4107. "set"
  4108. ],
  4109. "support": {
  4110. "issues": "https://github.com/ramsey/collection/issues",
  4111. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  4112. },
  4113. "funding": [
  4114. {
  4115. "url": "https://github.com/ramsey",
  4116. "type": "github"
  4117. },
  4118. {
  4119. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4120. "type": "tidelift"
  4121. }
  4122. ],
  4123. "time": "2021-10-10T03:01:02+00:00"
  4124. },
  4125. {
  4126. "name": "ramsey/uuid",
  4127. "version": "4.2.3",
  4128. "source": {
  4129. "type": "git",
  4130. "url": "https://github.com/ramsey/uuid.git",
  4131. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4132. },
  4133. "dist": {
  4134. "type": "zip",
  4135. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4136. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4137. "shasum": "",
  4138. "mirrors": [
  4139. {
  4140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4141. "preferred": true
  4142. }
  4143. ]
  4144. },
  4145. "require": {
  4146. "brick/math": "^0.8 || ^0.9",
  4147. "ext-json": "*",
  4148. "php": "^7.2 || ^8.0",
  4149. "ramsey/collection": "^1.0",
  4150. "symfony/polyfill-ctype": "^1.8",
  4151. "symfony/polyfill-php80": "^1.14"
  4152. },
  4153. "replace": {
  4154. "rhumsaa/uuid": "self.version"
  4155. },
  4156. "require-dev": {
  4157. "captainhook/captainhook": "^5.10",
  4158. "captainhook/plugin-composer": "^5.3",
  4159. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4160. "doctrine/annotations": "^1.8",
  4161. "ergebnis/composer-normalize": "^2.15",
  4162. "mockery/mockery": "^1.3",
  4163. "moontoast/math": "^1.1",
  4164. "paragonie/random-lib": "^2",
  4165. "php-mock/php-mock": "^2.2",
  4166. "php-mock/php-mock-mockery": "^1.3",
  4167. "php-parallel-lint/php-parallel-lint": "^1.1",
  4168. "phpbench/phpbench": "^1.0",
  4169. "phpstan/extension-installer": "^1.0",
  4170. "phpstan/phpstan": "^0.12",
  4171. "phpstan/phpstan-mockery": "^0.12",
  4172. "phpstan/phpstan-phpunit": "^0.12",
  4173. "phpunit/phpunit": "^8.5 || ^9",
  4174. "slevomat/coding-standard": "^7.0",
  4175. "squizlabs/php_codesniffer": "^3.5",
  4176. "vimeo/psalm": "^4.9"
  4177. },
  4178. "suggest": {
  4179. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4180. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4181. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4182. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4183. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4184. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4185. },
  4186. "type": "library",
  4187. "extra": {
  4188. "branch-alias": {
  4189. "dev-main": "4.x-dev"
  4190. },
  4191. "captainhook": {
  4192. "force-install": true
  4193. }
  4194. },
  4195. "autoload": {
  4196. "files": [
  4197. "src/functions.php"
  4198. ],
  4199. "psr-4": {
  4200. "Ramsey\\Uuid\\": "src/"
  4201. }
  4202. },
  4203. "notification-url": "https://packagist.org/downloads/",
  4204. "license": [
  4205. "MIT"
  4206. ],
  4207. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4208. "keywords": [
  4209. "guid",
  4210. "identifier",
  4211. "uuid"
  4212. ],
  4213. "support": {
  4214. "issues": "https://github.com/ramsey/uuid/issues",
  4215. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4216. },
  4217. "funding": [
  4218. {
  4219. "url": "https://github.com/ramsey",
  4220. "type": "github"
  4221. },
  4222. {
  4223. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4224. "type": "tidelift"
  4225. }
  4226. ],
  4227. "time": "2021-09-25T23:10:38+00:00"
  4228. },
  4229. {
  4230. "name": "swiftmailer/swiftmailer",
  4231. "version": "v6.3.0",
  4232. "source": {
  4233. "type": "git",
  4234. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4235. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4236. },
  4237. "dist": {
  4238. "type": "zip",
  4239. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4240. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4241. "shasum": "",
  4242. "mirrors": [
  4243. {
  4244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4245. "preferred": true
  4246. }
  4247. ]
  4248. },
  4249. "require": {
  4250. "egulias/email-validator": "^2.0|^3.1",
  4251. "php": ">=7.0.0",
  4252. "symfony/polyfill-iconv": "^1.0",
  4253. "symfony/polyfill-intl-idn": "^1.10",
  4254. "symfony/polyfill-mbstring": "^1.0"
  4255. },
  4256. "require-dev": {
  4257. "mockery/mockery": "^1.0",
  4258. "symfony/phpunit-bridge": "^4.4|^5.4"
  4259. },
  4260. "suggest": {
  4261. "ext-intl": "Needed to support internationalized email addresses"
  4262. },
  4263. "type": "library",
  4264. "extra": {
  4265. "branch-alias": {
  4266. "dev-master": "6.2-dev"
  4267. }
  4268. },
  4269. "autoload": {
  4270. "files": [
  4271. "lib/swift_required.php"
  4272. ]
  4273. },
  4274. "notification-url": "https://packagist.org/downloads/",
  4275. "license": [
  4276. "MIT"
  4277. ],
  4278. "authors": [
  4279. {
  4280. "name": "Chris Corbyn"
  4281. },
  4282. {
  4283. "name": "Fabien Potencier",
  4284. "email": "fabien@symfony.com"
  4285. }
  4286. ],
  4287. "description": "Swiftmailer, free feature-rich PHP mailer",
  4288. "homepage": "https://swiftmailer.symfony.com",
  4289. "keywords": [
  4290. "email",
  4291. "mail",
  4292. "mailer"
  4293. ],
  4294. "support": {
  4295. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4296. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4297. },
  4298. "funding": [
  4299. {
  4300. "url": "https://github.com/fabpot",
  4301. "type": "github"
  4302. },
  4303. {
  4304. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4305. "type": "tidelift"
  4306. }
  4307. ],
  4308. "abandoned": "symfony/mailer",
  4309. "time": "2021-10-18T15:26:12+00:00"
  4310. },
  4311. {
  4312. "name": "symfony/console",
  4313. "version": "v5.4.9",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/symfony/console.git",
  4317. "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/symfony/console/zipball/829d5d1bf60b2efeb0887b7436873becc71a45eb",
  4322. "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb",
  4323. "shasum": "",
  4324. "mirrors": [
  4325. {
  4326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4327. "preferred": true
  4328. }
  4329. ]
  4330. },
  4331. "require": {
  4332. "php": ">=7.2.5",
  4333. "symfony/deprecation-contracts": "^2.1|^3",
  4334. "symfony/polyfill-mbstring": "~1.0",
  4335. "symfony/polyfill-php73": "^1.9",
  4336. "symfony/polyfill-php80": "^1.16",
  4337. "symfony/service-contracts": "^1.1|^2|^3",
  4338. "symfony/string": "^5.1|^6.0"
  4339. },
  4340. "conflict": {
  4341. "psr/log": ">=3",
  4342. "symfony/dependency-injection": "<4.4",
  4343. "symfony/dotenv": "<5.1",
  4344. "symfony/event-dispatcher": "<4.4",
  4345. "symfony/lock": "<4.4",
  4346. "symfony/process": "<4.4"
  4347. },
  4348. "provide": {
  4349. "psr/log-implementation": "1.0|2.0"
  4350. },
  4351. "require-dev": {
  4352. "psr/log": "^1|^2",
  4353. "symfony/config": "^4.4|^5.0|^6.0",
  4354. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4355. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4356. "symfony/lock": "^4.4|^5.0|^6.0",
  4357. "symfony/process": "^4.4|^5.0|^6.0",
  4358. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4359. },
  4360. "suggest": {
  4361. "psr/log": "For using the console logger",
  4362. "symfony/event-dispatcher": "",
  4363. "symfony/lock": "",
  4364. "symfony/process": ""
  4365. },
  4366. "type": "library",
  4367. "autoload": {
  4368. "psr-4": {
  4369. "Symfony\\Component\\Console\\": ""
  4370. },
  4371. "exclude-from-classmap": [
  4372. "/Tests/"
  4373. ]
  4374. },
  4375. "notification-url": "https://packagist.org/downloads/",
  4376. "license": [
  4377. "MIT"
  4378. ],
  4379. "authors": [
  4380. {
  4381. "name": "Fabien Potencier",
  4382. "email": "fabien@symfony.com"
  4383. },
  4384. {
  4385. "name": "Symfony Community",
  4386. "homepage": "https://symfony.com/contributors"
  4387. }
  4388. ],
  4389. "description": "Eases the creation of beautiful and testable command line interfaces",
  4390. "homepage": "https://symfony.com",
  4391. "keywords": [
  4392. "cli",
  4393. "command line",
  4394. "console",
  4395. "terminal"
  4396. ],
  4397. "support": {
  4398. "source": "https://github.com/symfony/console/tree/v5.4.9"
  4399. },
  4400. "funding": [
  4401. {
  4402. "url": "https://symfony.com/sponsor",
  4403. "type": "custom"
  4404. },
  4405. {
  4406. "url": "https://github.com/fabpot",
  4407. "type": "github"
  4408. },
  4409. {
  4410. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4411. "type": "tidelift"
  4412. }
  4413. ],
  4414. "time": "2022-05-18T06:17:34+00:00"
  4415. },
  4416. {
  4417. "name": "symfony/css-selector",
  4418. "version": "v5.4.3",
  4419. "source": {
  4420. "type": "git",
  4421. "url": "https://github.com/symfony/css-selector.git",
  4422. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  4423. },
  4424. "dist": {
  4425. "type": "zip",
  4426. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  4427. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  4428. "shasum": "",
  4429. "mirrors": [
  4430. {
  4431. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4432. "preferred": true
  4433. }
  4434. ]
  4435. },
  4436. "require": {
  4437. "php": ">=7.2.5",
  4438. "symfony/polyfill-php80": "^1.16"
  4439. },
  4440. "type": "library",
  4441. "autoload": {
  4442. "psr-4": {
  4443. "Symfony\\Component\\CssSelector\\": ""
  4444. },
  4445. "exclude-from-classmap": [
  4446. "/Tests/"
  4447. ]
  4448. },
  4449. "notification-url": "https://packagist.org/downloads/",
  4450. "license": [
  4451. "MIT"
  4452. ],
  4453. "authors": [
  4454. {
  4455. "name": "Fabien Potencier",
  4456. "email": "fabien@symfony.com"
  4457. },
  4458. {
  4459. "name": "Jean-François Simon",
  4460. "email": "jeanfrancois.simon@sensiolabs.com"
  4461. },
  4462. {
  4463. "name": "Symfony Community",
  4464. "homepage": "https://symfony.com/contributors"
  4465. }
  4466. ],
  4467. "description": "Converts CSS selectors to XPath expressions",
  4468. "homepage": "https://symfony.com",
  4469. "support": {
  4470. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  4471. },
  4472. "funding": [
  4473. {
  4474. "url": "https://symfony.com/sponsor",
  4475. "type": "custom"
  4476. },
  4477. {
  4478. "url": "https://github.com/fabpot",
  4479. "type": "github"
  4480. },
  4481. {
  4482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4483. "type": "tidelift"
  4484. }
  4485. ],
  4486. "time": "2022-01-02T09:53:40+00:00"
  4487. },
  4488. {
  4489. "name": "symfony/deprecation-contracts",
  4490. "version": "v2.5.1",
  4491. "source": {
  4492. "type": "git",
  4493. "url": "https://github.com/symfony/deprecation-contracts.git",
  4494. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  4495. },
  4496. "dist": {
  4497. "type": "zip",
  4498. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4499. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4500. "shasum": "",
  4501. "mirrors": [
  4502. {
  4503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4504. "preferred": true
  4505. }
  4506. ]
  4507. },
  4508. "require": {
  4509. "php": ">=7.1"
  4510. },
  4511. "type": "library",
  4512. "extra": {
  4513. "branch-alias": {
  4514. "dev-main": "2.5-dev"
  4515. },
  4516. "thanks": {
  4517. "name": "symfony/contracts",
  4518. "url": "https://github.com/symfony/contracts"
  4519. }
  4520. },
  4521. "autoload": {
  4522. "files": [
  4523. "function.php"
  4524. ]
  4525. },
  4526. "notification-url": "https://packagist.org/downloads/",
  4527. "license": [
  4528. "MIT"
  4529. ],
  4530. "authors": [
  4531. {
  4532. "name": "Nicolas Grekas",
  4533. "email": "p@tchwork.com"
  4534. },
  4535. {
  4536. "name": "Symfony Community",
  4537. "homepage": "https://symfony.com/contributors"
  4538. }
  4539. ],
  4540. "description": "A generic function and convention to trigger deprecation notices",
  4541. "homepage": "https://symfony.com",
  4542. "support": {
  4543. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1"
  4544. },
  4545. "funding": [
  4546. {
  4547. "url": "https://symfony.com/sponsor",
  4548. "type": "custom"
  4549. },
  4550. {
  4551. "url": "https://github.com/fabpot",
  4552. "type": "github"
  4553. },
  4554. {
  4555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4556. "type": "tidelift"
  4557. }
  4558. ],
  4559. "time": "2022-01-02T09:53:40+00:00"
  4560. },
  4561. {
  4562. "name": "symfony/error-handler",
  4563. "version": "v5.4.9",
  4564. "source": {
  4565. "type": "git",
  4566. "url": "https://github.com/symfony/error-handler.git",
  4567. "reference": "c116cda1f51c678782768dce89a45f13c949455d"
  4568. },
  4569. "dist": {
  4570. "type": "zip",
  4571. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
  4572. "reference": "c116cda1f51c678782768dce89a45f13c949455d",
  4573. "shasum": "",
  4574. "mirrors": [
  4575. {
  4576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4577. "preferred": true
  4578. }
  4579. ]
  4580. },
  4581. "require": {
  4582. "php": ">=7.2.5",
  4583. "psr/log": "^1|^2|^3",
  4584. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4585. },
  4586. "require-dev": {
  4587. "symfony/deprecation-contracts": "^2.1|^3",
  4588. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  4589. "symfony/serializer": "^4.4|^5.0|^6.0"
  4590. },
  4591. "bin": [
  4592. "Resources/bin/patch-type-declarations"
  4593. ],
  4594. "type": "library",
  4595. "autoload": {
  4596. "psr-4": {
  4597. "Symfony\\Component\\ErrorHandler\\": ""
  4598. },
  4599. "exclude-from-classmap": [
  4600. "/Tests/"
  4601. ]
  4602. },
  4603. "notification-url": "https://packagist.org/downloads/",
  4604. "license": [
  4605. "MIT"
  4606. ],
  4607. "authors": [
  4608. {
  4609. "name": "Fabien Potencier",
  4610. "email": "fabien@symfony.com"
  4611. },
  4612. {
  4613. "name": "Symfony Community",
  4614. "homepage": "https://symfony.com/contributors"
  4615. }
  4616. ],
  4617. "description": "Provides tools to manage errors and ease debugging PHP code",
  4618. "homepage": "https://symfony.com",
  4619. "support": {
  4620. "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
  4621. },
  4622. "funding": [
  4623. {
  4624. "url": "https://symfony.com/sponsor",
  4625. "type": "custom"
  4626. },
  4627. {
  4628. "url": "https://github.com/fabpot",
  4629. "type": "github"
  4630. },
  4631. {
  4632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4633. "type": "tidelift"
  4634. }
  4635. ],
  4636. "time": "2022-05-21T13:57:48+00:00"
  4637. },
  4638. {
  4639. "name": "symfony/event-dispatcher",
  4640. "version": "v5.4.9",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/symfony/event-dispatcher.git",
  4644. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  4649. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  4650. "shasum": "",
  4651. "mirrors": [
  4652. {
  4653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4654. "preferred": true
  4655. }
  4656. ]
  4657. },
  4658. "require": {
  4659. "php": ">=7.2.5",
  4660. "symfony/deprecation-contracts": "^2.1|^3",
  4661. "symfony/event-dispatcher-contracts": "^2|^3",
  4662. "symfony/polyfill-php80": "^1.16"
  4663. },
  4664. "conflict": {
  4665. "symfony/dependency-injection": "<4.4"
  4666. },
  4667. "provide": {
  4668. "psr/event-dispatcher-implementation": "1.0",
  4669. "symfony/event-dispatcher-implementation": "2.0"
  4670. },
  4671. "require-dev": {
  4672. "psr/log": "^1|^2|^3",
  4673. "symfony/config": "^4.4|^5.0|^6.0",
  4674. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4675. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4676. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4677. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4678. "symfony/service-contracts": "^1.1|^2|^3",
  4679. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  4680. },
  4681. "suggest": {
  4682. "symfony/dependency-injection": "",
  4683. "symfony/http-kernel": ""
  4684. },
  4685. "type": "library",
  4686. "autoload": {
  4687. "psr-4": {
  4688. "Symfony\\Component\\EventDispatcher\\": ""
  4689. },
  4690. "exclude-from-classmap": [
  4691. "/Tests/"
  4692. ]
  4693. },
  4694. "notification-url": "https://packagist.org/downloads/",
  4695. "license": [
  4696. "MIT"
  4697. ],
  4698. "authors": [
  4699. {
  4700. "name": "Fabien Potencier",
  4701. "email": "fabien@symfony.com"
  4702. },
  4703. {
  4704. "name": "Symfony Community",
  4705. "homepage": "https://symfony.com/contributors"
  4706. }
  4707. ],
  4708. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4709. "homepage": "https://symfony.com",
  4710. "support": {
  4711. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  4712. },
  4713. "funding": [
  4714. {
  4715. "url": "https://symfony.com/sponsor",
  4716. "type": "custom"
  4717. },
  4718. {
  4719. "url": "https://github.com/fabpot",
  4720. "type": "github"
  4721. },
  4722. {
  4723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4724. "type": "tidelift"
  4725. }
  4726. ],
  4727. "time": "2022-05-05T16:45:39+00:00"
  4728. },
  4729. {
  4730. "name": "symfony/event-dispatcher-contracts",
  4731. "version": "v2.5.1",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4735. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  4740. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  4741. "shasum": "",
  4742. "mirrors": [
  4743. {
  4744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4745. "preferred": true
  4746. }
  4747. ]
  4748. },
  4749. "require": {
  4750. "php": ">=7.2.5",
  4751. "psr/event-dispatcher": "^1"
  4752. },
  4753. "suggest": {
  4754. "symfony/event-dispatcher-implementation": ""
  4755. },
  4756. "type": "library",
  4757. "extra": {
  4758. "branch-alias": {
  4759. "dev-main": "2.5-dev"
  4760. },
  4761. "thanks": {
  4762. "name": "symfony/contracts",
  4763. "url": "https://github.com/symfony/contracts"
  4764. }
  4765. },
  4766. "autoload": {
  4767. "psr-4": {
  4768. "Symfony\\Contracts\\EventDispatcher\\": ""
  4769. }
  4770. },
  4771. "notification-url": "https://packagist.org/downloads/",
  4772. "license": [
  4773. "MIT"
  4774. ],
  4775. "authors": [
  4776. {
  4777. "name": "Nicolas Grekas",
  4778. "email": "p@tchwork.com"
  4779. },
  4780. {
  4781. "name": "Symfony Community",
  4782. "homepage": "https://symfony.com/contributors"
  4783. }
  4784. ],
  4785. "description": "Generic abstractions related to dispatching event",
  4786. "homepage": "https://symfony.com",
  4787. "keywords": [
  4788. "abstractions",
  4789. "contracts",
  4790. "decoupling",
  4791. "interfaces",
  4792. "interoperability",
  4793. "standards"
  4794. ],
  4795. "support": {
  4796. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.1"
  4797. },
  4798. "funding": [
  4799. {
  4800. "url": "https://symfony.com/sponsor",
  4801. "type": "custom"
  4802. },
  4803. {
  4804. "url": "https://github.com/fabpot",
  4805. "type": "github"
  4806. },
  4807. {
  4808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4809. "type": "tidelift"
  4810. }
  4811. ],
  4812. "time": "2022-01-02T09:53:40+00:00"
  4813. },
  4814. {
  4815. "name": "symfony/finder",
  4816. "version": "v5.4.8",
  4817. "source": {
  4818. "type": "git",
  4819. "url": "https://github.com/symfony/finder.git",
  4820. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  4821. },
  4822. "dist": {
  4823. "type": "zip",
  4824. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  4825. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  4826. "shasum": "",
  4827. "mirrors": [
  4828. {
  4829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4830. "preferred": true
  4831. }
  4832. ]
  4833. },
  4834. "require": {
  4835. "php": ">=7.2.5",
  4836. "symfony/deprecation-contracts": "^2.1|^3",
  4837. "symfony/polyfill-php80": "^1.16"
  4838. },
  4839. "type": "library",
  4840. "autoload": {
  4841. "psr-4": {
  4842. "Symfony\\Component\\Finder\\": ""
  4843. },
  4844. "exclude-from-classmap": [
  4845. "/Tests/"
  4846. ]
  4847. },
  4848. "notification-url": "https://packagist.org/downloads/",
  4849. "license": [
  4850. "MIT"
  4851. ],
  4852. "authors": [
  4853. {
  4854. "name": "Fabien Potencier",
  4855. "email": "fabien@symfony.com"
  4856. },
  4857. {
  4858. "name": "Symfony Community",
  4859. "homepage": "https://symfony.com/contributors"
  4860. }
  4861. ],
  4862. "description": "Finds files and directories via an intuitive fluent interface",
  4863. "homepage": "https://symfony.com",
  4864. "support": {
  4865. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  4866. },
  4867. "funding": [
  4868. {
  4869. "url": "https://symfony.com/sponsor",
  4870. "type": "custom"
  4871. },
  4872. {
  4873. "url": "https://github.com/fabpot",
  4874. "type": "github"
  4875. },
  4876. {
  4877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4878. "type": "tidelift"
  4879. }
  4880. ],
  4881. "time": "2022-04-15T08:07:45+00:00"
  4882. },
  4883. {
  4884. "name": "symfony/http-foundation",
  4885. "version": "v5.4.9",
  4886. "source": {
  4887. "type": "git",
  4888. "url": "https://github.com/symfony/http-foundation.git",
  4889. "reference": "6b0d0e4aca38d57605dcd11e2416994b38774522"
  4890. },
  4891. "dist": {
  4892. "type": "zip",
  4893. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6b0d0e4aca38d57605dcd11e2416994b38774522",
  4894. "reference": "6b0d0e4aca38d57605dcd11e2416994b38774522",
  4895. "shasum": "",
  4896. "mirrors": [
  4897. {
  4898. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4899. "preferred": true
  4900. }
  4901. ]
  4902. },
  4903. "require": {
  4904. "php": ">=7.2.5",
  4905. "symfony/deprecation-contracts": "^2.1|^3",
  4906. "symfony/polyfill-mbstring": "~1.1",
  4907. "symfony/polyfill-php80": "^1.16"
  4908. },
  4909. "require-dev": {
  4910. "predis/predis": "~1.0",
  4911. "symfony/cache": "^4.4|^5.0|^6.0",
  4912. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4913. "symfony/mime": "^4.4|^5.0|^6.0"
  4914. },
  4915. "suggest": {
  4916. "symfony/mime": "To use the file extension guesser"
  4917. },
  4918. "type": "library",
  4919. "autoload": {
  4920. "psr-4": {
  4921. "Symfony\\Component\\HttpFoundation\\": ""
  4922. },
  4923. "exclude-from-classmap": [
  4924. "/Tests/"
  4925. ]
  4926. },
  4927. "notification-url": "https://packagist.org/downloads/",
  4928. "license": [
  4929. "MIT"
  4930. ],
  4931. "authors": [
  4932. {
  4933. "name": "Fabien Potencier",
  4934. "email": "fabien@symfony.com"
  4935. },
  4936. {
  4937. "name": "Symfony Community",
  4938. "homepage": "https://symfony.com/contributors"
  4939. }
  4940. ],
  4941. "description": "Defines an object-oriented layer for the HTTP specification",
  4942. "homepage": "https://symfony.com",
  4943. "support": {
  4944. "source": "https://github.com/symfony/http-foundation/tree/v5.4.9"
  4945. },
  4946. "funding": [
  4947. {
  4948. "url": "https://symfony.com/sponsor",
  4949. "type": "custom"
  4950. },
  4951. {
  4952. "url": "https://github.com/fabpot",
  4953. "type": "github"
  4954. },
  4955. {
  4956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4957. "type": "tidelift"
  4958. }
  4959. ],
  4960. "time": "2022-05-17T15:07:29+00:00"
  4961. },
  4962. {
  4963. "name": "symfony/http-kernel",
  4964. "version": "v5.4.9",
  4965. "source": {
  4966. "type": "git",
  4967. "url": "https://github.com/symfony/http-kernel.git",
  4968. "reference": "34b121ad3dc761f35fe1346d2f15618f8cbf77f8"
  4969. },
  4970. "dist": {
  4971. "type": "zip",
  4972. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/34b121ad3dc761f35fe1346d2f15618f8cbf77f8",
  4973. "reference": "34b121ad3dc761f35fe1346d2f15618f8cbf77f8",
  4974. "shasum": "",
  4975. "mirrors": [
  4976. {
  4977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4978. "preferred": true
  4979. }
  4980. ]
  4981. },
  4982. "require": {
  4983. "php": ">=7.2.5",
  4984. "psr/log": "^1|^2",
  4985. "symfony/deprecation-contracts": "^2.1|^3",
  4986. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4987. "symfony/event-dispatcher": "^5.0|^6.0",
  4988. "symfony/http-foundation": "^5.3.7|^6.0",
  4989. "symfony/polyfill-ctype": "^1.8",
  4990. "symfony/polyfill-php73": "^1.9",
  4991. "symfony/polyfill-php80": "^1.16"
  4992. },
  4993. "conflict": {
  4994. "symfony/browser-kit": "<5.4",
  4995. "symfony/cache": "<5.0",
  4996. "symfony/config": "<5.0",
  4997. "symfony/console": "<4.4",
  4998. "symfony/dependency-injection": "<5.3",
  4999. "symfony/doctrine-bridge": "<5.0",
  5000. "symfony/form": "<5.0",
  5001. "symfony/http-client": "<5.0",
  5002. "symfony/mailer": "<5.0",
  5003. "symfony/messenger": "<5.0",
  5004. "symfony/translation": "<5.0",
  5005. "symfony/twig-bridge": "<5.0",
  5006. "symfony/validator": "<5.0",
  5007. "twig/twig": "<2.13"
  5008. },
  5009. "provide": {
  5010. "psr/log-implementation": "1.0|2.0"
  5011. },
  5012. "require-dev": {
  5013. "psr/cache": "^1.0|^2.0|^3.0",
  5014. "symfony/browser-kit": "^5.4|^6.0",
  5015. "symfony/config": "^5.0|^6.0",
  5016. "symfony/console": "^4.4|^5.0|^6.0",
  5017. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5018. "symfony/dependency-injection": "^5.3|^6.0",
  5019. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5020. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5021. "symfony/finder": "^4.4|^5.0|^6.0",
  5022. "symfony/http-client-contracts": "^1.1|^2|^3",
  5023. "symfony/process": "^4.4|^5.0|^6.0",
  5024. "symfony/routing": "^4.4|^5.0|^6.0",
  5025. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5026. "symfony/translation": "^4.4|^5.0|^6.0",
  5027. "symfony/translation-contracts": "^1.1|^2|^3",
  5028. "twig/twig": "^2.13|^3.0.4"
  5029. },
  5030. "suggest": {
  5031. "symfony/browser-kit": "",
  5032. "symfony/config": "",
  5033. "symfony/console": "",
  5034. "symfony/dependency-injection": ""
  5035. },
  5036. "type": "library",
  5037. "autoload": {
  5038. "psr-4": {
  5039. "Symfony\\Component\\HttpKernel\\": ""
  5040. },
  5041. "exclude-from-classmap": [
  5042. "/Tests/"
  5043. ]
  5044. },
  5045. "notification-url": "https://packagist.org/downloads/",
  5046. "license": [
  5047. "MIT"
  5048. ],
  5049. "authors": [
  5050. {
  5051. "name": "Fabien Potencier",
  5052. "email": "fabien@symfony.com"
  5053. },
  5054. {
  5055. "name": "Symfony Community",
  5056. "homepage": "https://symfony.com/contributors"
  5057. }
  5058. ],
  5059. "description": "Provides a structured process for converting a Request into a Response",
  5060. "homepage": "https://symfony.com",
  5061. "support": {
  5062. "source": "https://github.com/symfony/http-kernel/tree/v5.4.9"
  5063. },
  5064. "funding": [
  5065. {
  5066. "url": "https://symfony.com/sponsor",
  5067. "type": "custom"
  5068. },
  5069. {
  5070. "url": "https://github.com/fabpot",
  5071. "type": "github"
  5072. },
  5073. {
  5074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5075. "type": "tidelift"
  5076. }
  5077. ],
  5078. "time": "2022-05-27T07:09:08+00:00"
  5079. },
  5080. {
  5081. "name": "symfony/mime",
  5082. "version": "v5.4.9",
  5083. "source": {
  5084. "type": "git",
  5085. "url": "https://github.com/symfony/mime.git",
  5086. "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e"
  5087. },
  5088. "dist": {
  5089. "type": "zip",
  5090. "url": "https://api.github.com/repos/symfony/mime/zipball/2b3802a24e48d0cfccf885173d2aac91e73df92e",
  5091. "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e",
  5092. "shasum": "",
  5093. "mirrors": [
  5094. {
  5095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5096. "preferred": true
  5097. }
  5098. ]
  5099. },
  5100. "require": {
  5101. "php": ">=7.2.5",
  5102. "symfony/deprecation-contracts": "^2.1|^3",
  5103. "symfony/polyfill-intl-idn": "^1.10",
  5104. "symfony/polyfill-mbstring": "^1.0",
  5105. "symfony/polyfill-php80": "^1.16"
  5106. },
  5107. "conflict": {
  5108. "egulias/email-validator": "~3.0.0",
  5109. "phpdocumentor/reflection-docblock": "<3.2.2",
  5110. "phpdocumentor/type-resolver": "<1.4.0",
  5111. "symfony/mailer": "<4.4"
  5112. },
  5113. "require-dev": {
  5114. "egulias/email-validator": "^2.1.10|^3.1",
  5115. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5116. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5117. "symfony/property-access": "^4.4|^5.1|^6.0",
  5118. "symfony/property-info": "^4.4|^5.1|^6.0",
  5119. "symfony/serializer": "^5.2|^6.0"
  5120. },
  5121. "type": "library",
  5122. "autoload": {
  5123. "psr-4": {
  5124. "Symfony\\Component\\Mime\\": ""
  5125. },
  5126. "exclude-from-classmap": [
  5127. "/Tests/"
  5128. ]
  5129. },
  5130. "notification-url": "https://packagist.org/downloads/",
  5131. "license": [
  5132. "MIT"
  5133. ],
  5134. "authors": [
  5135. {
  5136. "name": "Fabien Potencier",
  5137. "email": "fabien@symfony.com"
  5138. },
  5139. {
  5140. "name": "Symfony Community",
  5141. "homepage": "https://symfony.com/contributors"
  5142. }
  5143. ],
  5144. "description": "Allows manipulating MIME messages",
  5145. "homepage": "https://symfony.com",
  5146. "keywords": [
  5147. "mime",
  5148. "mime-type"
  5149. ],
  5150. "support": {
  5151. "source": "https://github.com/symfony/mime/tree/v5.4.9"
  5152. },
  5153. "funding": [
  5154. {
  5155. "url": "https://symfony.com/sponsor",
  5156. "type": "custom"
  5157. },
  5158. {
  5159. "url": "https://github.com/fabpot",
  5160. "type": "github"
  5161. },
  5162. {
  5163. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5164. "type": "tidelift"
  5165. }
  5166. ],
  5167. "time": "2022-05-21T10:24:18+00:00"
  5168. },
  5169. {
  5170. "name": "symfony/polyfill-ctype",
  5171. "version": "v1.26.0",
  5172. "source": {
  5173. "type": "git",
  5174. "url": "https://github.com/symfony/polyfill-ctype.git",
  5175. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  5176. },
  5177. "dist": {
  5178. "type": "zip",
  5179. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  5180. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  5181. "shasum": "",
  5182. "mirrors": [
  5183. {
  5184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5185. "preferred": true
  5186. }
  5187. ]
  5188. },
  5189. "require": {
  5190. "php": ">=7.1"
  5191. },
  5192. "provide": {
  5193. "ext-ctype": "*"
  5194. },
  5195. "suggest": {
  5196. "ext-ctype": "For best performance"
  5197. },
  5198. "type": "library",
  5199. "extra": {
  5200. "branch-alias": {
  5201. "dev-main": "1.26-dev"
  5202. },
  5203. "thanks": {
  5204. "name": "symfony/polyfill",
  5205. "url": "https://github.com/symfony/polyfill"
  5206. }
  5207. },
  5208. "autoload": {
  5209. "files": [
  5210. "bootstrap.php"
  5211. ],
  5212. "psr-4": {
  5213. "Symfony\\Polyfill\\Ctype\\": ""
  5214. }
  5215. },
  5216. "notification-url": "https://packagist.org/downloads/",
  5217. "license": [
  5218. "MIT"
  5219. ],
  5220. "authors": [
  5221. {
  5222. "name": "Gert de Pagter",
  5223. "email": "BackEndTea@gmail.com"
  5224. },
  5225. {
  5226. "name": "Symfony Community",
  5227. "homepage": "https://symfony.com/contributors"
  5228. }
  5229. ],
  5230. "description": "Symfony polyfill for ctype functions",
  5231. "homepage": "https://symfony.com",
  5232. "keywords": [
  5233. "compatibility",
  5234. "ctype",
  5235. "polyfill",
  5236. "portable"
  5237. ],
  5238. "support": {
  5239. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  5240. },
  5241. "funding": [
  5242. {
  5243. "url": "https://symfony.com/sponsor",
  5244. "type": "custom"
  5245. },
  5246. {
  5247. "url": "https://github.com/fabpot",
  5248. "type": "github"
  5249. },
  5250. {
  5251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5252. "type": "tidelift"
  5253. }
  5254. ],
  5255. "time": "2022-05-24T11:49:31+00:00"
  5256. },
  5257. {
  5258. "name": "symfony/polyfill-iconv",
  5259. "version": "v1.26.0",
  5260. "source": {
  5261. "type": "git",
  5262. "url": "https://github.com/symfony/polyfill-iconv.git",
  5263. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  5264. },
  5265. "dist": {
  5266. "type": "zip",
  5267. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  5268. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  5269. "shasum": "",
  5270. "mirrors": [
  5271. {
  5272. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5273. "preferred": true
  5274. }
  5275. ]
  5276. },
  5277. "require": {
  5278. "php": ">=7.1"
  5279. },
  5280. "provide": {
  5281. "ext-iconv": "*"
  5282. },
  5283. "suggest": {
  5284. "ext-iconv": "For best performance"
  5285. },
  5286. "type": "library",
  5287. "extra": {
  5288. "branch-alias": {
  5289. "dev-main": "1.26-dev"
  5290. },
  5291. "thanks": {
  5292. "name": "symfony/polyfill",
  5293. "url": "https://github.com/symfony/polyfill"
  5294. }
  5295. },
  5296. "autoload": {
  5297. "files": [
  5298. "bootstrap.php"
  5299. ],
  5300. "psr-4": {
  5301. "Symfony\\Polyfill\\Iconv\\": ""
  5302. }
  5303. },
  5304. "notification-url": "https://packagist.org/downloads/",
  5305. "license": [
  5306. "MIT"
  5307. ],
  5308. "authors": [
  5309. {
  5310. "name": "Nicolas Grekas",
  5311. "email": "p@tchwork.com"
  5312. },
  5313. {
  5314. "name": "Symfony Community",
  5315. "homepage": "https://symfony.com/contributors"
  5316. }
  5317. ],
  5318. "description": "Symfony polyfill for the Iconv extension",
  5319. "homepage": "https://symfony.com",
  5320. "keywords": [
  5321. "compatibility",
  5322. "iconv",
  5323. "polyfill",
  5324. "portable",
  5325. "shim"
  5326. ],
  5327. "support": {
  5328. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  5329. },
  5330. "funding": [
  5331. {
  5332. "url": "https://symfony.com/sponsor",
  5333. "type": "custom"
  5334. },
  5335. {
  5336. "url": "https://github.com/fabpot",
  5337. "type": "github"
  5338. },
  5339. {
  5340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5341. "type": "tidelift"
  5342. }
  5343. ],
  5344. "time": "2022-05-24T11:49:31+00:00"
  5345. },
  5346. {
  5347. "name": "symfony/polyfill-intl-grapheme",
  5348. "version": "v1.25.0",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5352. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  5357. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  5358. "shasum": "",
  5359. "mirrors": [
  5360. {
  5361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5362. "preferred": true
  5363. }
  5364. ]
  5365. },
  5366. "require": {
  5367. "php": ">=7.1"
  5368. },
  5369. "suggest": {
  5370. "ext-intl": "For best performance"
  5371. },
  5372. "type": "library",
  5373. "extra": {
  5374. "branch-alias": {
  5375. "dev-main": "1.23-dev"
  5376. },
  5377. "thanks": {
  5378. "name": "symfony/polyfill",
  5379. "url": "https://github.com/symfony/polyfill"
  5380. }
  5381. },
  5382. "autoload": {
  5383. "files": [
  5384. "bootstrap.php"
  5385. ],
  5386. "psr-4": {
  5387. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5388. }
  5389. },
  5390. "notification-url": "https://packagist.org/downloads/",
  5391. "license": [
  5392. "MIT"
  5393. ],
  5394. "authors": [
  5395. {
  5396. "name": "Nicolas Grekas",
  5397. "email": "p@tchwork.com"
  5398. },
  5399. {
  5400. "name": "Symfony Community",
  5401. "homepage": "https://symfony.com/contributors"
  5402. }
  5403. ],
  5404. "description": "Symfony polyfill for intl's grapheme_* functions",
  5405. "homepage": "https://symfony.com",
  5406. "keywords": [
  5407. "compatibility",
  5408. "grapheme",
  5409. "intl",
  5410. "polyfill",
  5411. "portable",
  5412. "shim"
  5413. ],
  5414. "support": {
  5415. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
  5416. },
  5417. "funding": [
  5418. {
  5419. "url": "https://symfony.com/sponsor",
  5420. "type": "custom"
  5421. },
  5422. {
  5423. "url": "https://github.com/fabpot",
  5424. "type": "github"
  5425. },
  5426. {
  5427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5428. "type": "tidelift"
  5429. }
  5430. ],
  5431. "time": "2021-11-23T21:10:46+00:00"
  5432. },
  5433. {
  5434. "name": "symfony/polyfill-intl-idn",
  5435. "version": "v1.25.0",
  5436. "source": {
  5437. "type": "git",
  5438. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5439. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  5440. },
  5441. "dist": {
  5442. "type": "zip",
  5443. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  5444. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  5445. "shasum": "",
  5446. "mirrors": [
  5447. {
  5448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5449. "preferred": true
  5450. }
  5451. ]
  5452. },
  5453. "require": {
  5454. "php": ">=7.1",
  5455. "symfony/polyfill-intl-normalizer": "^1.10",
  5456. "symfony/polyfill-php72": "^1.10"
  5457. },
  5458. "suggest": {
  5459. "ext-intl": "For best performance"
  5460. },
  5461. "type": "library",
  5462. "extra": {
  5463. "branch-alias": {
  5464. "dev-main": "1.23-dev"
  5465. },
  5466. "thanks": {
  5467. "name": "symfony/polyfill",
  5468. "url": "https://github.com/symfony/polyfill"
  5469. }
  5470. },
  5471. "autoload": {
  5472. "files": [
  5473. "bootstrap.php"
  5474. ],
  5475. "psr-4": {
  5476. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5477. }
  5478. },
  5479. "notification-url": "https://packagist.org/downloads/",
  5480. "license": [
  5481. "MIT"
  5482. ],
  5483. "authors": [
  5484. {
  5485. "name": "Laurent Bassin",
  5486. "email": "laurent@bassin.info"
  5487. },
  5488. {
  5489. "name": "Trevor Rowbotham",
  5490. "email": "trevor.rowbotham@pm.me"
  5491. },
  5492. {
  5493. "name": "Symfony Community",
  5494. "homepage": "https://symfony.com/contributors"
  5495. }
  5496. ],
  5497. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5498. "homepage": "https://symfony.com",
  5499. "keywords": [
  5500. "compatibility",
  5501. "idn",
  5502. "intl",
  5503. "polyfill",
  5504. "portable",
  5505. "shim"
  5506. ],
  5507. "support": {
  5508. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0"
  5509. },
  5510. "funding": [
  5511. {
  5512. "url": "https://symfony.com/sponsor",
  5513. "type": "custom"
  5514. },
  5515. {
  5516. "url": "https://github.com/fabpot",
  5517. "type": "github"
  5518. },
  5519. {
  5520. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5521. "type": "tidelift"
  5522. }
  5523. ],
  5524. "time": "2021-09-14T14:02:44+00:00"
  5525. },
  5526. {
  5527. "name": "symfony/polyfill-intl-normalizer",
  5528. "version": "v1.26.0",
  5529. "source": {
  5530. "type": "git",
  5531. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5532. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  5533. },
  5534. "dist": {
  5535. "type": "zip",
  5536. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  5537. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  5538. "shasum": "",
  5539. "mirrors": [
  5540. {
  5541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5542. "preferred": true
  5543. }
  5544. ]
  5545. },
  5546. "require": {
  5547. "php": ">=7.1"
  5548. },
  5549. "suggest": {
  5550. "ext-intl": "For best performance"
  5551. },
  5552. "type": "library",
  5553. "extra": {
  5554. "branch-alias": {
  5555. "dev-main": "1.26-dev"
  5556. },
  5557. "thanks": {
  5558. "name": "symfony/polyfill",
  5559. "url": "https://github.com/symfony/polyfill"
  5560. }
  5561. },
  5562. "autoload": {
  5563. "files": [
  5564. "bootstrap.php"
  5565. ],
  5566. "psr-4": {
  5567. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5568. },
  5569. "classmap": [
  5570. "Resources/stubs"
  5571. ]
  5572. },
  5573. "notification-url": "https://packagist.org/downloads/",
  5574. "license": [
  5575. "MIT"
  5576. ],
  5577. "authors": [
  5578. {
  5579. "name": "Nicolas Grekas",
  5580. "email": "p@tchwork.com"
  5581. },
  5582. {
  5583. "name": "Symfony Community",
  5584. "homepage": "https://symfony.com/contributors"
  5585. }
  5586. ],
  5587. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5588. "homepage": "https://symfony.com",
  5589. "keywords": [
  5590. "compatibility",
  5591. "intl",
  5592. "normalizer",
  5593. "polyfill",
  5594. "portable",
  5595. "shim"
  5596. ],
  5597. "support": {
  5598. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  5599. },
  5600. "funding": [
  5601. {
  5602. "url": "https://symfony.com/sponsor",
  5603. "type": "custom"
  5604. },
  5605. {
  5606. "url": "https://github.com/fabpot",
  5607. "type": "github"
  5608. },
  5609. {
  5610. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5611. "type": "tidelift"
  5612. }
  5613. ],
  5614. "time": "2022-05-24T11:49:31+00:00"
  5615. },
  5616. {
  5617. "name": "symfony/polyfill-mbstring",
  5618. "version": "v1.26.0",
  5619. "source": {
  5620. "type": "git",
  5621. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5622. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  5623. },
  5624. "dist": {
  5625. "type": "zip",
  5626. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  5627. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  5628. "shasum": "",
  5629. "mirrors": [
  5630. {
  5631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5632. "preferred": true
  5633. }
  5634. ]
  5635. },
  5636. "require": {
  5637. "php": ">=7.1"
  5638. },
  5639. "provide": {
  5640. "ext-mbstring": "*"
  5641. },
  5642. "suggest": {
  5643. "ext-mbstring": "For best performance"
  5644. },
  5645. "type": "library",
  5646. "extra": {
  5647. "branch-alias": {
  5648. "dev-main": "1.26-dev"
  5649. },
  5650. "thanks": {
  5651. "name": "symfony/polyfill",
  5652. "url": "https://github.com/symfony/polyfill"
  5653. }
  5654. },
  5655. "autoload": {
  5656. "files": [
  5657. "bootstrap.php"
  5658. ],
  5659. "psr-4": {
  5660. "Symfony\\Polyfill\\Mbstring\\": ""
  5661. }
  5662. },
  5663. "notification-url": "https://packagist.org/downloads/",
  5664. "license": [
  5665. "MIT"
  5666. ],
  5667. "authors": [
  5668. {
  5669. "name": "Nicolas Grekas",
  5670. "email": "p@tchwork.com"
  5671. },
  5672. {
  5673. "name": "Symfony Community",
  5674. "homepage": "https://symfony.com/contributors"
  5675. }
  5676. ],
  5677. "description": "Symfony polyfill for the Mbstring extension",
  5678. "homepage": "https://symfony.com",
  5679. "keywords": [
  5680. "compatibility",
  5681. "mbstring",
  5682. "polyfill",
  5683. "portable",
  5684. "shim"
  5685. ],
  5686. "support": {
  5687. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  5688. },
  5689. "funding": [
  5690. {
  5691. "url": "https://symfony.com/sponsor",
  5692. "type": "custom"
  5693. },
  5694. {
  5695. "url": "https://github.com/fabpot",
  5696. "type": "github"
  5697. },
  5698. {
  5699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5700. "type": "tidelift"
  5701. }
  5702. ],
  5703. "time": "2022-05-24T11:49:31+00:00"
  5704. },
  5705. {
  5706. "name": "symfony/polyfill-php56",
  5707. "version": "v1.20.0",
  5708. "source": {
  5709. "type": "git",
  5710. "url": "https://github.com/symfony/polyfill-php56.git",
  5711. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  5712. },
  5713. "dist": {
  5714. "type": "zip",
  5715. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5716. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5717. "shasum": "",
  5718. "mirrors": [
  5719. {
  5720. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5721. "preferred": true
  5722. }
  5723. ]
  5724. },
  5725. "require": {
  5726. "php": ">=7.1"
  5727. },
  5728. "type": "metapackage",
  5729. "extra": {
  5730. "branch-alias": {
  5731. "dev-main": "1.20-dev"
  5732. },
  5733. "thanks": {
  5734. "name": "symfony/polyfill",
  5735. "url": "https://github.com/symfony/polyfill"
  5736. }
  5737. },
  5738. "notification-url": "https://packagist.org/downloads/",
  5739. "license": [
  5740. "MIT"
  5741. ],
  5742. "authors": [
  5743. {
  5744. "name": "Nicolas Grekas",
  5745. "email": "p@tchwork.com"
  5746. },
  5747. {
  5748. "name": "Symfony Community",
  5749. "homepage": "https://symfony.com/contributors"
  5750. }
  5751. ],
  5752. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5753. "homepage": "https://symfony.com",
  5754. "keywords": [
  5755. "compatibility",
  5756. "polyfill",
  5757. "portable",
  5758. "shim"
  5759. ],
  5760. "support": {
  5761. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  5762. },
  5763. "funding": [
  5764. {
  5765. "url": "https://symfony.com/sponsor",
  5766. "type": "custom"
  5767. },
  5768. {
  5769. "url": "https://github.com/fabpot",
  5770. "type": "github"
  5771. },
  5772. {
  5773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5774. "type": "tidelift"
  5775. }
  5776. ],
  5777. "time": "2020-10-23T14:02:19+00:00"
  5778. },
  5779. {
  5780. "name": "symfony/polyfill-php72",
  5781. "version": "v1.26.0",
  5782. "source": {
  5783. "type": "git",
  5784. "url": "https://github.com/symfony/polyfill-php72.git",
  5785. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  5786. },
  5787. "dist": {
  5788. "type": "zip",
  5789. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  5790. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  5791. "shasum": "",
  5792. "mirrors": [
  5793. {
  5794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5795. "preferred": true
  5796. }
  5797. ]
  5798. },
  5799. "require": {
  5800. "php": ">=7.1"
  5801. },
  5802. "type": "library",
  5803. "extra": {
  5804. "branch-alias": {
  5805. "dev-main": "1.26-dev"
  5806. },
  5807. "thanks": {
  5808. "name": "symfony/polyfill",
  5809. "url": "https://github.com/symfony/polyfill"
  5810. }
  5811. },
  5812. "autoload": {
  5813. "files": [
  5814. "bootstrap.php"
  5815. ],
  5816. "psr-4": {
  5817. "Symfony\\Polyfill\\Php72\\": ""
  5818. }
  5819. },
  5820. "notification-url": "https://packagist.org/downloads/",
  5821. "license": [
  5822. "MIT"
  5823. ],
  5824. "authors": [
  5825. {
  5826. "name": "Nicolas Grekas",
  5827. "email": "p@tchwork.com"
  5828. },
  5829. {
  5830. "name": "Symfony Community",
  5831. "homepage": "https://symfony.com/contributors"
  5832. }
  5833. ],
  5834. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5835. "homepage": "https://symfony.com",
  5836. "keywords": [
  5837. "compatibility",
  5838. "polyfill",
  5839. "portable",
  5840. "shim"
  5841. ],
  5842. "support": {
  5843. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  5844. },
  5845. "funding": [
  5846. {
  5847. "url": "https://symfony.com/sponsor",
  5848. "type": "custom"
  5849. },
  5850. {
  5851. "url": "https://github.com/fabpot",
  5852. "type": "github"
  5853. },
  5854. {
  5855. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5856. "type": "tidelift"
  5857. }
  5858. ],
  5859. "time": "2022-05-24T11:49:31+00:00"
  5860. },
  5861. {
  5862. "name": "symfony/polyfill-php73",
  5863. "version": "v1.26.0",
  5864. "source": {
  5865. "type": "git",
  5866. "url": "https://github.com/symfony/polyfill-php73.git",
  5867. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  5868. },
  5869. "dist": {
  5870. "type": "zip",
  5871. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  5872. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  5873. "shasum": "",
  5874. "mirrors": [
  5875. {
  5876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5877. "preferred": true
  5878. }
  5879. ]
  5880. },
  5881. "require": {
  5882. "php": ">=7.1"
  5883. },
  5884. "type": "library",
  5885. "extra": {
  5886. "branch-alias": {
  5887. "dev-main": "1.26-dev"
  5888. },
  5889. "thanks": {
  5890. "name": "symfony/polyfill",
  5891. "url": "https://github.com/symfony/polyfill"
  5892. }
  5893. },
  5894. "autoload": {
  5895. "files": [
  5896. "bootstrap.php"
  5897. ],
  5898. "psr-4": {
  5899. "Symfony\\Polyfill\\Php73\\": ""
  5900. },
  5901. "classmap": [
  5902. "Resources/stubs"
  5903. ]
  5904. },
  5905. "notification-url": "https://packagist.org/downloads/",
  5906. "license": [
  5907. "MIT"
  5908. ],
  5909. "authors": [
  5910. {
  5911. "name": "Nicolas Grekas",
  5912. "email": "p@tchwork.com"
  5913. },
  5914. {
  5915. "name": "Symfony Community",
  5916. "homepage": "https://symfony.com/contributors"
  5917. }
  5918. ],
  5919. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5920. "homepage": "https://symfony.com",
  5921. "keywords": [
  5922. "compatibility",
  5923. "polyfill",
  5924. "portable",
  5925. "shim"
  5926. ],
  5927. "support": {
  5928. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  5929. },
  5930. "funding": [
  5931. {
  5932. "url": "https://symfony.com/sponsor",
  5933. "type": "custom"
  5934. },
  5935. {
  5936. "url": "https://github.com/fabpot",
  5937. "type": "github"
  5938. },
  5939. {
  5940. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5941. "type": "tidelift"
  5942. }
  5943. ],
  5944. "time": "2022-05-24T11:49:31+00:00"
  5945. },
  5946. {
  5947. "name": "symfony/polyfill-php80",
  5948. "version": "v1.26.0",
  5949. "source": {
  5950. "type": "git",
  5951. "url": "https://github.com/symfony/polyfill-php80.git",
  5952. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  5953. },
  5954. "dist": {
  5955. "type": "zip",
  5956. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  5957. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  5958. "shasum": "",
  5959. "mirrors": [
  5960. {
  5961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5962. "preferred": true
  5963. }
  5964. ]
  5965. },
  5966. "require": {
  5967. "php": ">=7.1"
  5968. },
  5969. "type": "library",
  5970. "extra": {
  5971. "branch-alias": {
  5972. "dev-main": "1.26-dev"
  5973. },
  5974. "thanks": {
  5975. "name": "symfony/polyfill",
  5976. "url": "https://github.com/symfony/polyfill"
  5977. }
  5978. },
  5979. "autoload": {
  5980. "files": [
  5981. "bootstrap.php"
  5982. ],
  5983. "psr-4": {
  5984. "Symfony\\Polyfill\\Php80\\": ""
  5985. },
  5986. "classmap": [
  5987. "Resources/stubs"
  5988. ]
  5989. },
  5990. "notification-url": "https://packagist.org/downloads/",
  5991. "license": [
  5992. "MIT"
  5993. ],
  5994. "authors": [
  5995. {
  5996. "name": "Ion Bazan",
  5997. "email": "ion.bazan@gmail.com"
  5998. },
  5999. {
  6000. "name": "Nicolas Grekas",
  6001. "email": "p@tchwork.com"
  6002. },
  6003. {
  6004. "name": "Symfony Community",
  6005. "homepage": "https://symfony.com/contributors"
  6006. }
  6007. ],
  6008. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6009. "homepage": "https://symfony.com",
  6010. "keywords": [
  6011. "compatibility",
  6012. "polyfill",
  6013. "portable",
  6014. "shim"
  6015. ],
  6016. "support": {
  6017. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  6018. },
  6019. "funding": [
  6020. {
  6021. "url": "https://symfony.com/sponsor",
  6022. "type": "custom"
  6023. },
  6024. {
  6025. "url": "https://github.com/fabpot",
  6026. "type": "github"
  6027. },
  6028. {
  6029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6030. "type": "tidelift"
  6031. }
  6032. ],
  6033. "time": "2022-05-10T07:21:04+00:00"
  6034. },
  6035. {
  6036. "name": "symfony/polyfill-php81",
  6037. "version": "v1.26.0",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/symfony/polyfill-php81.git",
  6041. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  6046. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  6047. "shasum": "",
  6048. "mirrors": [
  6049. {
  6050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6051. "preferred": true
  6052. }
  6053. ]
  6054. },
  6055. "require": {
  6056. "php": ">=7.1"
  6057. },
  6058. "type": "library",
  6059. "extra": {
  6060. "branch-alias": {
  6061. "dev-main": "1.26-dev"
  6062. },
  6063. "thanks": {
  6064. "name": "symfony/polyfill",
  6065. "url": "https://github.com/symfony/polyfill"
  6066. }
  6067. },
  6068. "autoload": {
  6069. "files": [
  6070. "bootstrap.php"
  6071. ],
  6072. "psr-4": {
  6073. "Symfony\\Polyfill\\Php81\\": ""
  6074. },
  6075. "classmap": [
  6076. "Resources/stubs"
  6077. ]
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Nicolas Grekas",
  6086. "email": "p@tchwork.com"
  6087. },
  6088. {
  6089. "name": "Symfony Community",
  6090. "homepage": "https://symfony.com/contributors"
  6091. }
  6092. ],
  6093. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6094. "homepage": "https://symfony.com",
  6095. "keywords": [
  6096. "compatibility",
  6097. "polyfill",
  6098. "portable",
  6099. "shim"
  6100. ],
  6101. "support": {
  6102. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  6103. },
  6104. "funding": [
  6105. {
  6106. "url": "https://symfony.com/sponsor",
  6107. "type": "custom"
  6108. },
  6109. {
  6110. "url": "https://github.com/fabpot",
  6111. "type": "github"
  6112. },
  6113. {
  6114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6115. "type": "tidelift"
  6116. }
  6117. ],
  6118. "time": "2022-05-24T11:49:31+00:00"
  6119. },
  6120. {
  6121. "name": "symfony/process",
  6122. "version": "v5.4.8",
  6123. "source": {
  6124. "type": "git",
  6125. "url": "https://github.com/symfony/process.git",
  6126. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
  6127. },
  6128. "dist": {
  6129. "type": "zip",
  6130. "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  6131. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  6132. "shasum": "",
  6133. "mirrors": [
  6134. {
  6135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6136. "preferred": true
  6137. }
  6138. ]
  6139. },
  6140. "require": {
  6141. "php": ">=7.2.5",
  6142. "symfony/polyfill-php80": "^1.16"
  6143. },
  6144. "type": "library",
  6145. "autoload": {
  6146. "psr-4": {
  6147. "Symfony\\Component\\Process\\": ""
  6148. },
  6149. "exclude-from-classmap": [
  6150. "/Tests/"
  6151. ]
  6152. },
  6153. "notification-url": "https://packagist.org/downloads/",
  6154. "license": [
  6155. "MIT"
  6156. ],
  6157. "authors": [
  6158. {
  6159. "name": "Fabien Potencier",
  6160. "email": "fabien@symfony.com"
  6161. },
  6162. {
  6163. "name": "Symfony Community",
  6164. "homepage": "https://symfony.com/contributors"
  6165. }
  6166. ],
  6167. "description": "Executes commands in sub-processes",
  6168. "homepage": "https://symfony.com",
  6169. "support": {
  6170. "source": "https://github.com/symfony/process/tree/v5.4.8"
  6171. },
  6172. "funding": [
  6173. {
  6174. "url": "https://symfony.com/sponsor",
  6175. "type": "custom"
  6176. },
  6177. {
  6178. "url": "https://github.com/fabpot",
  6179. "type": "github"
  6180. },
  6181. {
  6182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6183. "type": "tidelift"
  6184. }
  6185. ],
  6186. "time": "2022-04-08T05:07:18+00:00"
  6187. },
  6188. {
  6189. "name": "symfony/routing",
  6190. "version": "v5.4.8",
  6191. "source": {
  6192. "type": "git",
  6193. "url": "https://github.com/symfony/routing.git",
  6194. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7"
  6195. },
  6196. "dist": {
  6197. "type": "zip",
  6198. "url": "https://api.github.com/repos/symfony/routing/zipball/e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  6199. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  6200. "shasum": "",
  6201. "mirrors": [
  6202. {
  6203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6204. "preferred": true
  6205. }
  6206. ]
  6207. },
  6208. "require": {
  6209. "php": ">=7.2.5",
  6210. "symfony/deprecation-contracts": "^2.1|^3",
  6211. "symfony/polyfill-php80": "^1.16"
  6212. },
  6213. "conflict": {
  6214. "doctrine/annotations": "<1.12",
  6215. "symfony/config": "<5.3",
  6216. "symfony/dependency-injection": "<4.4",
  6217. "symfony/yaml": "<4.4"
  6218. },
  6219. "require-dev": {
  6220. "doctrine/annotations": "^1.12",
  6221. "psr/log": "^1|^2|^3",
  6222. "symfony/config": "^5.3|^6.0",
  6223. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6224. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6225. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6226. "symfony/yaml": "^4.4|^5.0|^6.0"
  6227. },
  6228. "suggest": {
  6229. "symfony/config": "For using the all-in-one router or any loader",
  6230. "symfony/expression-language": "For using expression matching",
  6231. "symfony/http-foundation": "For using a Symfony Request object",
  6232. "symfony/yaml": "For using the YAML loader"
  6233. },
  6234. "type": "library",
  6235. "autoload": {
  6236. "psr-4": {
  6237. "Symfony\\Component\\Routing\\": ""
  6238. },
  6239. "exclude-from-classmap": [
  6240. "/Tests/"
  6241. ]
  6242. },
  6243. "notification-url": "https://packagist.org/downloads/",
  6244. "license": [
  6245. "MIT"
  6246. ],
  6247. "authors": [
  6248. {
  6249. "name": "Fabien Potencier",
  6250. "email": "fabien@symfony.com"
  6251. },
  6252. {
  6253. "name": "Symfony Community",
  6254. "homepage": "https://symfony.com/contributors"
  6255. }
  6256. ],
  6257. "description": "Maps an HTTP request to a set of configuration variables",
  6258. "homepage": "https://symfony.com",
  6259. "keywords": [
  6260. "router",
  6261. "routing",
  6262. "uri",
  6263. "url"
  6264. ],
  6265. "support": {
  6266. "source": "https://github.com/symfony/routing/tree/v5.4.8"
  6267. },
  6268. "funding": [
  6269. {
  6270. "url": "https://symfony.com/sponsor",
  6271. "type": "custom"
  6272. },
  6273. {
  6274. "url": "https://github.com/fabpot",
  6275. "type": "github"
  6276. },
  6277. {
  6278. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6279. "type": "tidelift"
  6280. }
  6281. ],
  6282. "time": "2022-04-18T21:45:37+00:00"
  6283. },
  6284. {
  6285. "name": "symfony/service-contracts",
  6286. "version": "v2.5.1",
  6287. "source": {
  6288. "type": "git",
  6289. "url": "https://github.com/symfony/service-contracts.git",
  6290. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
  6291. },
  6292. "dist": {
  6293. "type": "zip",
  6294. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  6295. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  6296. "shasum": "",
  6297. "mirrors": [
  6298. {
  6299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6300. "preferred": true
  6301. }
  6302. ]
  6303. },
  6304. "require": {
  6305. "php": ">=7.2.5",
  6306. "psr/container": "^1.1",
  6307. "symfony/deprecation-contracts": "^2.1|^3"
  6308. },
  6309. "conflict": {
  6310. "ext-psr": "<1.1|>=2"
  6311. },
  6312. "suggest": {
  6313. "symfony/service-implementation": ""
  6314. },
  6315. "type": "library",
  6316. "extra": {
  6317. "branch-alias": {
  6318. "dev-main": "2.5-dev"
  6319. },
  6320. "thanks": {
  6321. "name": "symfony/contracts",
  6322. "url": "https://github.com/symfony/contracts"
  6323. }
  6324. },
  6325. "autoload": {
  6326. "psr-4": {
  6327. "Symfony\\Contracts\\Service\\": ""
  6328. }
  6329. },
  6330. "notification-url": "https://packagist.org/downloads/",
  6331. "license": [
  6332. "MIT"
  6333. ],
  6334. "authors": [
  6335. {
  6336. "name": "Nicolas Grekas",
  6337. "email": "p@tchwork.com"
  6338. },
  6339. {
  6340. "name": "Symfony Community",
  6341. "homepage": "https://symfony.com/contributors"
  6342. }
  6343. ],
  6344. "description": "Generic abstractions related to writing services",
  6345. "homepage": "https://symfony.com",
  6346. "keywords": [
  6347. "abstractions",
  6348. "contracts",
  6349. "decoupling",
  6350. "interfaces",
  6351. "interoperability",
  6352. "standards"
  6353. ],
  6354. "support": {
  6355. "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
  6356. },
  6357. "funding": [
  6358. {
  6359. "url": "https://symfony.com/sponsor",
  6360. "type": "custom"
  6361. },
  6362. {
  6363. "url": "https://github.com/fabpot",
  6364. "type": "github"
  6365. },
  6366. {
  6367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6368. "type": "tidelift"
  6369. }
  6370. ],
  6371. "time": "2022-03-13T20:07:29+00:00"
  6372. },
  6373. {
  6374. "name": "symfony/string",
  6375. "version": "v5.4.9",
  6376. "source": {
  6377. "type": "git",
  6378. "url": "https://github.com/symfony/string.git",
  6379. "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99"
  6380. },
  6381. "dist": {
  6382. "type": "zip",
  6383. "url": "https://api.github.com/repos/symfony/string/zipball/985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
  6384. "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
  6385. "shasum": "",
  6386. "mirrors": [
  6387. {
  6388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6389. "preferred": true
  6390. }
  6391. ]
  6392. },
  6393. "require": {
  6394. "php": ">=7.2.5",
  6395. "symfony/polyfill-ctype": "~1.8",
  6396. "symfony/polyfill-intl-grapheme": "~1.0",
  6397. "symfony/polyfill-intl-normalizer": "~1.0",
  6398. "symfony/polyfill-mbstring": "~1.0",
  6399. "symfony/polyfill-php80": "~1.15"
  6400. },
  6401. "conflict": {
  6402. "symfony/translation-contracts": ">=3.0"
  6403. },
  6404. "require-dev": {
  6405. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6406. "symfony/http-client": "^4.4|^5.0|^6.0",
  6407. "symfony/translation-contracts": "^1.1|^2",
  6408. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6409. },
  6410. "type": "library",
  6411. "autoload": {
  6412. "files": [
  6413. "Resources/functions.php"
  6414. ],
  6415. "psr-4": {
  6416. "Symfony\\Component\\String\\": ""
  6417. },
  6418. "exclude-from-classmap": [
  6419. "/Tests/"
  6420. ]
  6421. },
  6422. "notification-url": "https://packagist.org/downloads/",
  6423. "license": [
  6424. "MIT"
  6425. ],
  6426. "authors": [
  6427. {
  6428. "name": "Nicolas Grekas",
  6429. "email": "p@tchwork.com"
  6430. },
  6431. {
  6432. "name": "Symfony Community",
  6433. "homepage": "https://symfony.com/contributors"
  6434. }
  6435. ],
  6436. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6437. "homepage": "https://symfony.com",
  6438. "keywords": [
  6439. "grapheme",
  6440. "i18n",
  6441. "string",
  6442. "unicode",
  6443. "utf-8",
  6444. "utf8"
  6445. ],
  6446. "support": {
  6447. "source": "https://github.com/symfony/string/tree/v5.4.9"
  6448. },
  6449. "funding": [
  6450. {
  6451. "url": "https://symfony.com/sponsor",
  6452. "type": "custom"
  6453. },
  6454. {
  6455. "url": "https://github.com/fabpot",
  6456. "type": "github"
  6457. },
  6458. {
  6459. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6460. "type": "tidelift"
  6461. }
  6462. ],
  6463. "time": "2022-04-19T10:40:37+00:00"
  6464. },
  6465. {
  6466. "name": "symfony/translation",
  6467. "version": "v5.4.9",
  6468. "source": {
  6469. "type": "git",
  6470. "url": "https://github.com/symfony/translation.git",
  6471. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca"
  6472. },
  6473. "dist": {
  6474. "type": "zip",
  6475. "url": "https://api.github.com/repos/symfony/translation/zipball/1639abc1177d26bcd4320e535e664cef067ab0ca",
  6476. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca",
  6477. "shasum": "",
  6478. "mirrors": [
  6479. {
  6480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6481. "preferred": true
  6482. }
  6483. ]
  6484. },
  6485. "require": {
  6486. "php": ">=7.2.5",
  6487. "symfony/deprecation-contracts": "^2.1|^3",
  6488. "symfony/polyfill-mbstring": "~1.0",
  6489. "symfony/polyfill-php80": "^1.16",
  6490. "symfony/translation-contracts": "^2.3"
  6491. },
  6492. "conflict": {
  6493. "symfony/config": "<4.4",
  6494. "symfony/console": "<5.3",
  6495. "symfony/dependency-injection": "<5.0",
  6496. "symfony/http-kernel": "<5.0",
  6497. "symfony/twig-bundle": "<5.0",
  6498. "symfony/yaml": "<4.4"
  6499. },
  6500. "provide": {
  6501. "symfony/translation-implementation": "2.3"
  6502. },
  6503. "require-dev": {
  6504. "psr/log": "^1|^2|^3",
  6505. "symfony/config": "^4.4|^5.0|^6.0",
  6506. "symfony/console": "^5.4|^6.0",
  6507. "symfony/dependency-injection": "^5.0|^6.0",
  6508. "symfony/finder": "^4.4|^5.0|^6.0",
  6509. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6510. "symfony/http-kernel": "^5.0|^6.0",
  6511. "symfony/intl": "^4.4|^5.0|^6.0",
  6512. "symfony/polyfill-intl-icu": "^1.21",
  6513. "symfony/service-contracts": "^1.1.2|^2|^3",
  6514. "symfony/yaml": "^4.4|^5.0|^6.0"
  6515. },
  6516. "suggest": {
  6517. "psr/log-implementation": "To use logging capability in translator",
  6518. "symfony/config": "",
  6519. "symfony/yaml": ""
  6520. },
  6521. "type": "library",
  6522. "autoload": {
  6523. "files": [
  6524. "Resources/functions.php"
  6525. ],
  6526. "psr-4": {
  6527. "Symfony\\Component\\Translation\\": ""
  6528. },
  6529. "exclude-from-classmap": [
  6530. "/Tests/"
  6531. ]
  6532. },
  6533. "notification-url": "https://packagist.org/downloads/",
  6534. "license": [
  6535. "MIT"
  6536. ],
  6537. "authors": [
  6538. {
  6539. "name": "Fabien Potencier",
  6540. "email": "fabien@symfony.com"
  6541. },
  6542. {
  6543. "name": "Symfony Community",
  6544. "homepage": "https://symfony.com/contributors"
  6545. }
  6546. ],
  6547. "description": "Provides tools to internationalize your application",
  6548. "homepage": "https://symfony.com",
  6549. "support": {
  6550. "source": "https://github.com/symfony/translation/tree/v5.4.9"
  6551. },
  6552. "funding": [
  6553. {
  6554. "url": "https://symfony.com/sponsor",
  6555. "type": "custom"
  6556. },
  6557. {
  6558. "url": "https://github.com/fabpot",
  6559. "type": "github"
  6560. },
  6561. {
  6562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6563. "type": "tidelift"
  6564. }
  6565. ],
  6566. "time": "2022-05-06T12:33:37+00:00"
  6567. },
  6568. {
  6569. "name": "symfony/translation-contracts",
  6570. "version": "v2.5.1",
  6571. "source": {
  6572. "type": "git",
  6573. "url": "https://github.com/symfony/translation-contracts.git",
  6574. "reference": "1211df0afa701e45a04253110e959d4af4ef0f07"
  6575. },
  6576. "dist": {
  6577. "type": "zip",
  6578. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1211df0afa701e45a04253110e959d4af4ef0f07",
  6579. "reference": "1211df0afa701e45a04253110e959d4af4ef0f07",
  6580. "shasum": "",
  6581. "mirrors": [
  6582. {
  6583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6584. "preferred": true
  6585. }
  6586. ]
  6587. },
  6588. "require": {
  6589. "php": ">=7.2.5"
  6590. },
  6591. "suggest": {
  6592. "symfony/translation-implementation": ""
  6593. },
  6594. "type": "library",
  6595. "extra": {
  6596. "branch-alias": {
  6597. "dev-main": "2.5-dev"
  6598. },
  6599. "thanks": {
  6600. "name": "symfony/contracts",
  6601. "url": "https://github.com/symfony/contracts"
  6602. }
  6603. },
  6604. "autoload": {
  6605. "psr-4": {
  6606. "Symfony\\Contracts\\Translation\\": ""
  6607. }
  6608. },
  6609. "notification-url": "https://packagist.org/downloads/",
  6610. "license": [
  6611. "MIT"
  6612. ],
  6613. "authors": [
  6614. {
  6615. "name": "Nicolas Grekas",
  6616. "email": "p@tchwork.com"
  6617. },
  6618. {
  6619. "name": "Symfony Community",
  6620. "homepage": "https://symfony.com/contributors"
  6621. }
  6622. ],
  6623. "description": "Generic abstractions related to translation",
  6624. "homepage": "https://symfony.com",
  6625. "keywords": [
  6626. "abstractions",
  6627. "contracts",
  6628. "decoupling",
  6629. "interfaces",
  6630. "interoperability",
  6631. "standards"
  6632. ],
  6633. "support": {
  6634. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.1"
  6635. },
  6636. "funding": [
  6637. {
  6638. "url": "https://symfony.com/sponsor",
  6639. "type": "custom"
  6640. },
  6641. {
  6642. "url": "https://github.com/fabpot",
  6643. "type": "github"
  6644. },
  6645. {
  6646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6647. "type": "tidelift"
  6648. }
  6649. ],
  6650. "time": "2022-01-02T09:53:40+00:00"
  6651. },
  6652. {
  6653. "name": "symfony/var-dumper",
  6654. "version": "v5.4.9",
  6655. "source": {
  6656. "type": "git",
  6657. "url": "https://github.com/symfony/var-dumper.git",
  6658. "reference": "af52239a330fafd192c773795520dc2dd62b5657"
  6659. },
  6660. "dist": {
  6661. "type": "zip",
  6662. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
  6663. "reference": "af52239a330fafd192c773795520dc2dd62b5657",
  6664. "shasum": "",
  6665. "mirrors": [
  6666. {
  6667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6668. "preferred": true
  6669. }
  6670. ]
  6671. },
  6672. "require": {
  6673. "php": ">=7.2.5",
  6674. "symfony/polyfill-mbstring": "~1.0",
  6675. "symfony/polyfill-php80": "^1.16"
  6676. },
  6677. "conflict": {
  6678. "phpunit/phpunit": "<5.4.3",
  6679. "symfony/console": "<4.4"
  6680. },
  6681. "require-dev": {
  6682. "ext-iconv": "*",
  6683. "symfony/console": "^4.4|^5.0|^6.0",
  6684. "symfony/process": "^4.4|^5.0|^6.0",
  6685. "symfony/uid": "^5.1|^6.0",
  6686. "twig/twig": "^2.13|^3.0.4"
  6687. },
  6688. "suggest": {
  6689. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6690. "ext-intl": "To show region name in time zone dump",
  6691. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6692. },
  6693. "bin": [
  6694. "Resources/bin/var-dump-server"
  6695. ],
  6696. "type": "library",
  6697. "autoload": {
  6698. "files": [
  6699. "Resources/functions/dump.php"
  6700. ],
  6701. "psr-4": {
  6702. "Symfony\\Component\\VarDumper\\": ""
  6703. },
  6704. "exclude-from-classmap": [
  6705. "/Tests/"
  6706. ]
  6707. },
  6708. "notification-url": "https://packagist.org/downloads/",
  6709. "license": [
  6710. "MIT"
  6711. ],
  6712. "authors": [
  6713. {
  6714. "name": "Nicolas Grekas",
  6715. "email": "p@tchwork.com"
  6716. },
  6717. {
  6718. "name": "Symfony Community",
  6719. "homepage": "https://symfony.com/contributors"
  6720. }
  6721. ],
  6722. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6723. "homepage": "https://symfony.com",
  6724. "keywords": [
  6725. "debug",
  6726. "dump"
  6727. ],
  6728. "support": {
  6729. "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
  6730. },
  6731. "funding": [
  6732. {
  6733. "url": "https://symfony.com/sponsor",
  6734. "type": "custom"
  6735. },
  6736. {
  6737. "url": "https://github.com/fabpot",
  6738. "type": "github"
  6739. },
  6740. {
  6741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6742. "type": "tidelift"
  6743. }
  6744. ],
  6745. "time": "2022-05-21T10:24:18+00:00"
  6746. },
  6747. {
  6748. "name": "tijsverkoyen/css-to-inline-styles",
  6749. "version": "2.2.4",
  6750. "source": {
  6751. "type": "git",
  6752. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6753. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  6754. },
  6755. "dist": {
  6756. "type": "zip",
  6757. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  6758. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  6759. "shasum": "",
  6760. "mirrors": [
  6761. {
  6762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6763. "preferred": true
  6764. }
  6765. ]
  6766. },
  6767. "require": {
  6768. "ext-dom": "*",
  6769. "ext-libxml": "*",
  6770. "php": "^5.5 || ^7.0 || ^8.0",
  6771. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  6772. },
  6773. "require-dev": {
  6774. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  6775. },
  6776. "type": "library",
  6777. "extra": {
  6778. "branch-alias": {
  6779. "dev-master": "2.2.x-dev"
  6780. }
  6781. },
  6782. "autoload": {
  6783. "psr-4": {
  6784. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6785. }
  6786. },
  6787. "notification-url": "https://packagist.org/downloads/",
  6788. "license": [
  6789. "BSD-3-Clause"
  6790. ],
  6791. "authors": [
  6792. {
  6793. "name": "Tijs Verkoyen",
  6794. "email": "css_to_inline_styles@verkoyen.eu",
  6795. "role": "Developer"
  6796. }
  6797. ],
  6798. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  6799. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6800. "support": {
  6801. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6802. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  6803. },
  6804. "time": "2021-12-08T09:12:39+00:00"
  6805. },
  6806. {
  6807. "name": "tymon/jwt-auth",
  6808. "version": "1.0.2",
  6809. "source": {
  6810. "type": "git",
  6811. "url": "https://github.com/tymondesigns/jwt-auth.git",
  6812. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  6813. },
  6814. "dist": {
  6815. "type": "zip",
  6816. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  6817. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  6818. "shasum": "",
  6819. "mirrors": [
  6820. {
  6821. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6822. "preferred": true
  6823. }
  6824. ]
  6825. },
  6826. "require": {
  6827. "illuminate/auth": "^5.2|^6|^7|^8",
  6828. "illuminate/contracts": "^5.2|^6|^7|^8",
  6829. "illuminate/http": "^5.2|^6|^7|^8",
  6830. "illuminate/support": "^5.2|^6|^7|^8",
  6831. "lcobucci/jwt": "<3.4",
  6832. "namshi/jose": "^7.0",
  6833. "nesbot/carbon": "^1.0|^2.0",
  6834. "php": "^5.5.9|^7.0"
  6835. },
  6836. "require-dev": {
  6837. "illuminate/console": "^5.2|^6|^7|^8",
  6838. "illuminate/database": "^5.2|^6|^7|^8",
  6839. "illuminate/routing": "^5.2|^6|^7|^8",
  6840. "mockery/mockery": ">=0.9.9",
  6841. "phpunit/phpunit": "~4.8|~6.0"
  6842. },
  6843. "type": "library",
  6844. "extra": {
  6845. "branch-alias": {
  6846. "dev-develop": "1.0-dev"
  6847. },
  6848. "laravel": {
  6849. "aliases": {
  6850. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  6851. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  6852. },
  6853. "providers": [
  6854. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  6855. ]
  6856. }
  6857. },
  6858. "autoload": {
  6859. "psr-4": {
  6860. "Tymon\\JWTAuth\\": "src/"
  6861. }
  6862. },
  6863. "notification-url": "https://packagist.org/downloads/",
  6864. "license": [
  6865. "MIT"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "Sean Tymon",
  6870. "email": "tymon148@gmail.com",
  6871. "homepage": "https://tymon.xyz",
  6872. "role": "Developer"
  6873. }
  6874. ],
  6875. "description": "JSON Web Token Authentication for Laravel and Lumen",
  6876. "homepage": "https://github.com/tymondesigns/jwt-auth",
  6877. "keywords": [
  6878. "Authentication",
  6879. "JSON Web Token",
  6880. "auth",
  6881. "jwt",
  6882. "laravel"
  6883. ],
  6884. "support": {
  6885. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  6886. "source": "https://github.com/tymondesigns/jwt-auth"
  6887. },
  6888. "funding": [
  6889. {
  6890. "url": "https://www.patreon.com/seantymon",
  6891. "type": "patreon"
  6892. }
  6893. ],
  6894. "time": "2020-11-27T12:32:42+00:00"
  6895. },
  6896. {
  6897. "name": "vlucas/phpdotenv",
  6898. "version": "v5.4.1",
  6899. "source": {
  6900. "type": "git",
  6901. "url": "https://github.com/vlucas/phpdotenv.git",
  6902. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  6903. },
  6904. "dist": {
  6905. "type": "zip",
  6906. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  6907. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  6908. "shasum": "",
  6909. "mirrors": [
  6910. {
  6911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6912. "preferred": true
  6913. }
  6914. ]
  6915. },
  6916. "require": {
  6917. "ext-pcre": "*",
  6918. "graham-campbell/result-type": "^1.0.2",
  6919. "php": "^7.1.3 || ^8.0",
  6920. "phpoption/phpoption": "^1.8",
  6921. "symfony/polyfill-ctype": "^1.23",
  6922. "symfony/polyfill-mbstring": "^1.23.1",
  6923. "symfony/polyfill-php80": "^1.23.1"
  6924. },
  6925. "require-dev": {
  6926. "bamarni/composer-bin-plugin": "^1.4.1",
  6927. "ext-filter": "*",
  6928. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  6929. },
  6930. "suggest": {
  6931. "ext-filter": "Required to use the boolean validator."
  6932. },
  6933. "type": "library",
  6934. "extra": {
  6935. "branch-alias": {
  6936. "dev-master": "5.4-dev"
  6937. }
  6938. },
  6939. "autoload": {
  6940. "psr-4": {
  6941. "Dotenv\\": "src/"
  6942. }
  6943. },
  6944. "notification-url": "https://packagist.org/downloads/",
  6945. "license": [
  6946. "BSD-3-Clause"
  6947. ],
  6948. "authors": [
  6949. {
  6950. "name": "Graham Campbell",
  6951. "email": "hello@gjcampbell.co.uk",
  6952. "homepage": "https://github.com/GrahamCampbell"
  6953. },
  6954. {
  6955. "name": "Vance Lucas",
  6956. "email": "vance@vancelucas.com",
  6957. "homepage": "https://github.com/vlucas"
  6958. }
  6959. ],
  6960. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6961. "keywords": [
  6962. "dotenv",
  6963. "env",
  6964. "environment"
  6965. ],
  6966. "support": {
  6967. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6968. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  6969. },
  6970. "funding": [
  6971. {
  6972. "url": "https://github.com/GrahamCampbell",
  6973. "type": "github"
  6974. },
  6975. {
  6976. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6977. "type": "tidelift"
  6978. }
  6979. ],
  6980. "time": "2021-12-12T23:22:04+00:00"
  6981. },
  6982. {
  6983. "name": "voku/portable-ascii",
  6984. "version": "1.6.1",
  6985. "source": {
  6986. "type": "git",
  6987. "url": "https://github.com/voku/portable-ascii.git",
  6988. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  6989. },
  6990. "dist": {
  6991. "type": "zip",
  6992. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  6993. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  6994. "shasum": "",
  6995. "mirrors": [
  6996. {
  6997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6998. "preferred": true
  6999. }
  7000. ]
  7001. },
  7002. "require": {
  7003. "php": ">=7.0.0"
  7004. },
  7005. "require-dev": {
  7006. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7007. },
  7008. "suggest": {
  7009. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7010. },
  7011. "type": "library",
  7012. "autoload": {
  7013. "psr-4": {
  7014. "voku\\": "src/voku/"
  7015. }
  7016. },
  7017. "notification-url": "https://packagist.org/downloads/",
  7018. "license": [
  7019. "MIT"
  7020. ],
  7021. "authors": [
  7022. {
  7023. "name": "Lars Moelleken",
  7024. "homepage": "http://www.moelleken.org/"
  7025. }
  7026. ],
  7027. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7028. "homepage": "https://github.com/voku/portable-ascii",
  7029. "keywords": [
  7030. "ascii",
  7031. "clean",
  7032. "php"
  7033. ],
  7034. "support": {
  7035. "issues": "https://github.com/voku/portable-ascii/issues",
  7036. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7037. },
  7038. "funding": [
  7039. {
  7040. "url": "https://www.paypal.me/moelleken",
  7041. "type": "custom"
  7042. },
  7043. {
  7044. "url": "https://github.com/voku",
  7045. "type": "github"
  7046. },
  7047. {
  7048. "url": "https://opencollective.com/portable-ascii",
  7049. "type": "open_collective"
  7050. },
  7051. {
  7052. "url": "https://www.patreon.com/voku",
  7053. "type": "patreon"
  7054. },
  7055. {
  7056. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7057. "type": "tidelift"
  7058. }
  7059. ],
  7060. "time": "2022-01-24T18:55:24+00:00"
  7061. },
  7062. {
  7063. "name": "webmozart/assert",
  7064. "version": "1.10.0",
  7065. "source": {
  7066. "type": "git",
  7067. "url": "https://github.com/webmozarts/assert.git",
  7068. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  7069. },
  7070. "dist": {
  7071. "type": "zip",
  7072. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  7073. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  7074. "shasum": "",
  7075. "mirrors": [
  7076. {
  7077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7078. "preferred": true
  7079. }
  7080. ]
  7081. },
  7082. "require": {
  7083. "php": "^7.2 || ^8.0",
  7084. "symfony/polyfill-ctype": "^1.8"
  7085. },
  7086. "conflict": {
  7087. "phpstan/phpstan": "<0.12.20",
  7088. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7089. },
  7090. "require-dev": {
  7091. "phpunit/phpunit": "^8.5.13"
  7092. },
  7093. "type": "library",
  7094. "extra": {
  7095. "branch-alias": {
  7096. "dev-master": "1.10-dev"
  7097. }
  7098. },
  7099. "autoload": {
  7100. "psr-4": {
  7101. "Webmozart\\Assert\\": "src/"
  7102. }
  7103. },
  7104. "notification-url": "https://packagist.org/downloads/",
  7105. "license": [
  7106. "MIT"
  7107. ],
  7108. "authors": [
  7109. {
  7110. "name": "Bernhard Schussek",
  7111. "email": "bschussek@gmail.com"
  7112. }
  7113. ],
  7114. "description": "Assertions to validate method input/output with nice error messages.",
  7115. "keywords": [
  7116. "assert",
  7117. "check",
  7118. "validate"
  7119. ],
  7120. "support": {
  7121. "issues": "https://github.com/webmozarts/assert/issues",
  7122. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  7123. },
  7124. "time": "2021-03-09T10:59:23+00:00"
  7125. },
  7126. {
  7127. "name": "zhuzhichao/ip-location-zh",
  7128. "version": "v2.4.4",
  7129. "source": {
  7130. "type": "git",
  7131. "url": "https://github.com/zhuzhichao/ip-location-zh.git",
  7132. "reference": "d3c2b4cb0d3da79a609bd402938a2a0ffa079c5f"
  7133. },
  7134. "dist": {
  7135. "type": "zip",
  7136. "url": "https://api.github.com/repos/zhuzhichao/ip-location-zh/zipball/d3c2b4cb0d3da79a609bd402938a2a0ffa079c5f",
  7137. "reference": "d3c2b4cb0d3da79a609bd402938a2a0ffa079c5f",
  7138. "shasum": "",
  7139. "mirrors": [
  7140. {
  7141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7142. "preferred": true
  7143. }
  7144. ]
  7145. },
  7146. "require-dev": {
  7147. "phpunit/phpunit": "^4.0"
  7148. },
  7149. "type": "library",
  7150. "extra": {
  7151. "laravel": {
  7152. "aliases": {
  7153. "Ip": "Zhuzhichao\\IpLocationZh\\Ip"
  7154. }
  7155. }
  7156. },
  7157. "autoload": {
  7158. "psr-4": {
  7159. "Zhuzhichao\\IpLocationZh\\": "src/"
  7160. }
  7161. },
  7162. "notification-url": "https://packagist.org/downloads/",
  7163. "license": [
  7164. "MIT"
  7165. ],
  7166. "authors": [
  7167. {
  7168. "name": "zhuzhichao",
  7169. "email": "me@zhuzhichao.com"
  7170. }
  7171. ],
  7172. "description": "get the ip's location info with Chinese",
  7173. "keywords": [
  7174. "Chinese",
  7175. "IP",
  7176. "location"
  7177. ],
  7178. "support": {
  7179. "issues": "https://github.com/zhuzhichao/ip-location-zh/issues",
  7180. "source": "https://github.com/zhuzhichao/ip-location-zh/tree/master"
  7181. },
  7182. "time": "2019-11-14T05:42:33+00:00"
  7183. }
  7184. ],
  7185. "packages-dev": [
  7186. {
  7187. "name": "doctrine/instantiator",
  7188. "version": "1.4.1",
  7189. "source": {
  7190. "type": "git",
  7191. "url": "https://github.com/doctrine/instantiator.git",
  7192. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  7193. },
  7194. "dist": {
  7195. "type": "zip",
  7196. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  7197. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  7198. "shasum": "",
  7199. "mirrors": [
  7200. {
  7201. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7202. "preferred": true
  7203. }
  7204. ]
  7205. },
  7206. "require": {
  7207. "php": "^7.1 || ^8.0"
  7208. },
  7209. "require-dev": {
  7210. "doctrine/coding-standard": "^9",
  7211. "ext-pdo": "*",
  7212. "ext-phar": "*",
  7213. "phpbench/phpbench": "^0.16 || ^1",
  7214. "phpstan/phpstan": "^1.4",
  7215. "phpstan/phpstan-phpunit": "^1",
  7216. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7217. "vimeo/psalm": "^4.22"
  7218. },
  7219. "type": "library",
  7220. "autoload": {
  7221. "psr-4": {
  7222. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7223. }
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Marco Pivetta",
  7232. "email": "ocramius@gmail.com",
  7233. "homepage": "https://ocramius.github.io/"
  7234. }
  7235. ],
  7236. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7237. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7238. "keywords": [
  7239. "constructor",
  7240. "instantiate"
  7241. ],
  7242. "support": {
  7243. "issues": "https://github.com/doctrine/instantiator/issues",
  7244. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  7245. },
  7246. "funding": [
  7247. {
  7248. "url": "https://www.doctrine-project.org/sponsorship.html",
  7249. "type": "custom"
  7250. },
  7251. {
  7252. "url": "https://www.patreon.com/phpdoctrine",
  7253. "type": "patreon"
  7254. },
  7255. {
  7256. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7257. "type": "tidelift"
  7258. }
  7259. ],
  7260. "time": "2022-03-03T08:28:38+00:00"
  7261. },
  7262. {
  7263. "name": "facade/flare-client-php",
  7264. "version": "1.9.1",
  7265. "source": {
  7266. "type": "git",
  7267. "url": "https://github.com/facade/flare-client-php.git",
  7268. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  7269. },
  7270. "dist": {
  7271. "type": "zip",
  7272. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  7273. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  7274. "shasum": "",
  7275. "mirrors": [
  7276. {
  7277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7278. "preferred": true
  7279. }
  7280. ]
  7281. },
  7282. "require": {
  7283. "facade/ignition-contracts": "~1.0",
  7284. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7285. "php": "^7.1|^8.0",
  7286. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7287. "symfony/mime": "^3.4|^4.0|^5.1",
  7288. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7289. },
  7290. "require-dev": {
  7291. "friendsofphp/php-cs-fixer": "^2.14",
  7292. "phpunit/phpunit": "^7.5.16",
  7293. "spatie/phpunit-snapshot-assertions": "^2.0"
  7294. },
  7295. "type": "library",
  7296. "extra": {
  7297. "branch-alias": {
  7298. "dev-master": "1.0-dev"
  7299. }
  7300. },
  7301. "autoload": {
  7302. "files": [
  7303. "src/helpers.php"
  7304. ],
  7305. "psr-4": {
  7306. "Facade\\FlareClient\\": "src"
  7307. }
  7308. },
  7309. "notification-url": "https://packagist.org/downloads/",
  7310. "license": [
  7311. "MIT"
  7312. ],
  7313. "description": "Send PHP errors to Flare",
  7314. "homepage": "https://github.com/facade/flare-client-php",
  7315. "keywords": [
  7316. "exception",
  7317. "facade",
  7318. "flare",
  7319. "reporting"
  7320. ],
  7321. "support": {
  7322. "issues": "https://github.com/facade/flare-client-php/issues",
  7323. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  7324. },
  7325. "funding": [
  7326. {
  7327. "url": "https://github.com/spatie",
  7328. "type": "github"
  7329. }
  7330. ],
  7331. "time": "2021-09-13T12:16:46+00:00"
  7332. },
  7333. {
  7334. "name": "facade/ignition",
  7335. "version": "2.17.5",
  7336. "source": {
  7337. "type": "git",
  7338. "url": "https://github.com/facade/ignition.git",
  7339. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c"
  7340. },
  7341. "dist": {
  7342. "type": "zip",
  7343. "url": "https://api.github.com/repos/facade/ignition/zipball/1d71996f83c9a5a7807331b8986ac890352b7a0c",
  7344. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c",
  7345. "shasum": "",
  7346. "mirrors": [
  7347. {
  7348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7349. "preferred": true
  7350. }
  7351. ]
  7352. },
  7353. "require": {
  7354. "ext-curl": "*",
  7355. "ext-json": "*",
  7356. "ext-mbstring": "*",
  7357. "facade/flare-client-php": "^1.9.1",
  7358. "facade/ignition-contracts": "^1.0.2",
  7359. "illuminate/support": "^7.0|^8.0",
  7360. "monolog/monolog": "^2.0",
  7361. "php": "^7.2.5|^8.0",
  7362. "symfony/console": "^5.0",
  7363. "symfony/var-dumper": "^5.0"
  7364. },
  7365. "require-dev": {
  7366. "friendsofphp/php-cs-fixer": "^2.14",
  7367. "livewire/livewire": "^2.4",
  7368. "mockery/mockery": "^1.3",
  7369. "orchestra/testbench": "^5.0|^6.0",
  7370. "psalm/plugin-laravel": "^1.2"
  7371. },
  7372. "suggest": {
  7373. "laravel/telescope": "^3.1"
  7374. },
  7375. "type": "library",
  7376. "extra": {
  7377. "branch-alias": {
  7378. "dev-master": "2.x-dev"
  7379. },
  7380. "laravel": {
  7381. "providers": [
  7382. "Facade\\Ignition\\IgnitionServiceProvider"
  7383. ],
  7384. "aliases": {
  7385. "Flare": "Facade\\Ignition\\Facades\\Flare"
  7386. }
  7387. }
  7388. },
  7389. "autoload": {
  7390. "files": [
  7391. "src/helpers.php"
  7392. ],
  7393. "psr-4": {
  7394. "Facade\\Ignition\\": "src"
  7395. }
  7396. },
  7397. "notification-url": "https://packagist.org/downloads/",
  7398. "license": [
  7399. "MIT"
  7400. ],
  7401. "description": "A beautiful error page for Laravel applications.",
  7402. "homepage": "https://github.com/facade/ignition",
  7403. "keywords": [
  7404. "error",
  7405. "flare",
  7406. "laravel",
  7407. "page"
  7408. ],
  7409. "support": {
  7410. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  7411. "forum": "https://twitter.com/flareappio",
  7412. "issues": "https://github.com/facade/ignition/issues",
  7413. "source": "https://github.com/facade/ignition"
  7414. },
  7415. "time": "2022-02-23T18:31:24+00:00"
  7416. },
  7417. {
  7418. "name": "facade/ignition-contracts",
  7419. "version": "1.0.2",
  7420. "source": {
  7421. "type": "git",
  7422. "url": "https://github.com/facade/ignition-contracts.git",
  7423. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  7424. },
  7425. "dist": {
  7426. "type": "zip",
  7427. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  7428. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  7429. "shasum": "",
  7430. "mirrors": [
  7431. {
  7432. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7433. "preferred": true
  7434. }
  7435. ]
  7436. },
  7437. "require": {
  7438. "php": "^7.3|^8.0"
  7439. },
  7440. "require-dev": {
  7441. "friendsofphp/php-cs-fixer": "^v2.15.8",
  7442. "phpunit/phpunit": "^9.3.11",
  7443. "vimeo/psalm": "^3.17.1"
  7444. },
  7445. "type": "library",
  7446. "autoload": {
  7447. "psr-4": {
  7448. "Facade\\IgnitionContracts\\": "src"
  7449. }
  7450. },
  7451. "notification-url": "https://packagist.org/downloads/",
  7452. "license": [
  7453. "MIT"
  7454. ],
  7455. "authors": [
  7456. {
  7457. "name": "Freek Van der Herten",
  7458. "email": "freek@spatie.be",
  7459. "homepage": "https://flareapp.io",
  7460. "role": "Developer"
  7461. }
  7462. ],
  7463. "description": "Solution contracts for Ignition",
  7464. "homepage": "https://github.com/facade/ignition-contracts",
  7465. "keywords": [
  7466. "contracts",
  7467. "flare",
  7468. "ignition"
  7469. ],
  7470. "support": {
  7471. "issues": "https://github.com/facade/ignition-contracts/issues",
  7472. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  7473. },
  7474. "time": "2020-10-16T08:27:54+00:00"
  7475. },
  7476. {
  7477. "name": "fakerphp/faker",
  7478. "version": "v1.19.0",
  7479. "source": {
  7480. "type": "git",
  7481. "url": "https://github.com/FakerPHP/Faker.git",
  7482. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  7483. },
  7484. "dist": {
  7485. "type": "zip",
  7486. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  7487. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  7488. "shasum": "",
  7489. "mirrors": [
  7490. {
  7491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7492. "preferred": true
  7493. }
  7494. ]
  7495. },
  7496. "require": {
  7497. "php": "^7.1 || ^8.0",
  7498. "psr/container": "^1.0 || ^2.0",
  7499. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7500. },
  7501. "conflict": {
  7502. "fzaninotto/faker": "*"
  7503. },
  7504. "require-dev": {
  7505. "bamarni/composer-bin-plugin": "^1.4.1",
  7506. "doctrine/persistence": "^1.3 || ^2.0",
  7507. "ext-intl": "*",
  7508. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  7509. },
  7510. "suggest": {
  7511. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7512. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7513. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7514. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7515. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7516. },
  7517. "type": "library",
  7518. "extra": {
  7519. "branch-alias": {
  7520. "dev-main": "v1.19-dev"
  7521. }
  7522. },
  7523. "autoload": {
  7524. "psr-4": {
  7525. "Faker\\": "src/Faker/"
  7526. }
  7527. },
  7528. "notification-url": "https://packagist.org/downloads/",
  7529. "license": [
  7530. "MIT"
  7531. ],
  7532. "authors": [
  7533. {
  7534. "name": "François Zaninotto"
  7535. }
  7536. ],
  7537. "description": "Faker is a PHP library that generates fake data for you.",
  7538. "keywords": [
  7539. "data",
  7540. "faker",
  7541. "fixtures"
  7542. ],
  7543. "support": {
  7544. "issues": "https://github.com/FakerPHP/Faker/issues",
  7545. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  7546. },
  7547. "time": "2022-02-02T17:38:57+00:00"
  7548. },
  7549. {
  7550. "name": "filp/whoops",
  7551. "version": "2.14.5",
  7552. "source": {
  7553. "type": "git",
  7554. "url": "https://github.com/filp/whoops.git",
  7555. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  7556. },
  7557. "dist": {
  7558. "type": "zip",
  7559. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  7560. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  7561. "shasum": "",
  7562. "mirrors": [
  7563. {
  7564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7565. "preferred": true
  7566. }
  7567. ]
  7568. },
  7569. "require": {
  7570. "php": "^5.5.9 || ^7.0 || ^8.0",
  7571. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  7572. },
  7573. "require-dev": {
  7574. "mockery/mockery": "^0.9 || ^1.0",
  7575. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  7576. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7577. },
  7578. "suggest": {
  7579. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7580. "whoops/soap": "Formats errors as SOAP responses"
  7581. },
  7582. "type": "library",
  7583. "extra": {
  7584. "branch-alias": {
  7585. "dev-master": "2.7-dev"
  7586. }
  7587. },
  7588. "autoload": {
  7589. "psr-4": {
  7590. "Whoops\\": "src/Whoops/"
  7591. }
  7592. },
  7593. "notification-url": "https://packagist.org/downloads/",
  7594. "license": [
  7595. "MIT"
  7596. ],
  7597. "authors": [
  7598. {
  7599. "name": "Filipe Dobreira",
  7600. "homepage": "https://github.com/filp",
  7601. "role": "Developer"
  7602. }
  7603. ],
  7604. "description": "php error handling for cool kids",
  7605. "homepage": "https://filp.github.io/whoops/",
  7606. "keywords": [
  7607. "error",
  7608. "exception",
  7609. "handling",
  7610. "library",
  7611. "throwable",
  7612. "whoops"
  7613. ],
  7614. "support": {
  7615. "issues": "https://github.com/filp/whoops/issues",
  7616. "source": "https://github.com/filp/whoops/tree/2.14.5"
  7617. },
  7618. "funding": [
  7619. {
  7620. "url": "https://github.com/denis-sokolov",
  7621. "type": "github"
  7622. }
  7623. ],
  7624. "time": "2022-01-07T12:00:00+00:00"
  7625. },
  7626. {
  7627. "name": "hamcrest/hamcrest-php",
  7628. "version": "v2.0.1",
  7629. "source": {
  7630. "type": "git",
  7631. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7632. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7633. },
  7634. "dist": {
  7635. "type": "zip",
  7636. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7637. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7638. "shasum": "",
  7639. "mirrors": [
  7640. {
  7641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7642. "preferred": true
  7643. }
  7644. ]
  7645. },
  7646. "require": {
  7647. "php": "^5.3|^7.0|^8.0"
  7648. },
  7649. "replace": {
  7650. "cordoval/hamcrest-php": "*",
  7651. "davedevelopment/hamcrest-php": "*",
  7652. "kodova/hamcrest-php": "*"
  7653. },
  7654. "require-dev": {
  7655. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7656. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7657. },
  7658. "type": "library",
  7659. "extra": {
  7660. "branch-alias": {
  7661. "dev-master": "2.1-dev"
  7662. }
  7663. },
  7664. "autoload": {
  7665. "classmap": [
  7666. "hamcrest"
  7667. ]
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "BSD-3-Clause"
  7672. ],
  7673. "description": "This is the PHP port of Hamcrest Matchers",
  7674. "keywords": [
  7675. "test"
  7676. ],
  7677. "support": {
  7678. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7679. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7680. },
  7681. "time": "2020-07-09T08:09:16+00:00"
  7682. },
  7683. {
  7684. "name": "laravel/sail",
  7685. "version": "v1.14.9",
  7686. "source": {
  7687. "type": "git",
  7688. "url": "https://github.com/laravel/sail.git",
  7689. "reference": "8435763e7735f6eff15b03df014cea1217fc826e"
  7690. },
  7691. "dist": {
  7692. "type": "zip",
  7693. "url": "https://api.github.com/repos/laravel/sail/zipball/8435763e7735f6eff15b03df014cea1217fc826e",
  7694. "reference": "8435763e7735f6eff15b03df014cea1217fc826e",
  7695. "shasum": "",
  7696. "mirrors": [
  7697. {
  7698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7699. "preferred": true
  7700. }
  7701. ]
  7702. },
  7703. "require": {
  7704. "illuminate/console": "^8.0|^9.0",
  7705. "illuminate/contracts": "^8.0|^9.0",
  7706. "illuminate/support": "^8.0|^9.0",
  7707. "php": "^7.3|^8.0"
  7708. },
  7709. "bin": [
  7710. "bin/sail"
  7711. ],
  7712. "type": "library",
  7713. "extra": {
  7714. "branch-alias": {
  7715. "dev-master": "1.x-dev"
  7716. },
  7717. "laravel": {
  7718. "providers": [
  7719. "Laravel\\Sail\\SailServiceProvider"
  7720. ]
  7721. }
  7722. },
  7723. "autoload": {
  7724. "psr-4": {
  7725. "Laravel\\Sail\\": "src/"
  7726. }
  7727. },
  7728. "notification-url": "https://packagist.org/downloads/",
  7729. "license": [
  7730. "MIT"
  7731. ],
  7732. "authors": [
  7733. {
  7734. "name": "Taylor Otwell",
  7735. "email": "taylor@laravel.com"
  7736. }
  7737. ],
  7738. "description": "Docker files for running a basic Laravel application.",
  7739. "keywords": [
  7740. "docker",
  7741. "laravel"
  7742. ],
  7743. "support": {
  7744. "issues": "https://github.com/laravel/sail/issues",
  7745. "source": "https://github.com/laravel/sail"
  7746. },
  7747. "time": "2022-06-06T14:28:04+00:00"
  7748. },
  7749. {
  7750. "name": "mockery/mockery",
  7751. "version": "1.5.0",
  7752. "source": {
  7753. "type": "git",
  7754. "url": "https://github.com/mockery/mockery.git",
  7755. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  7756. },
  7757. "dist": {
  7758. "type": "zip",
  7759. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  7760. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  7761. "shasum": "",
  7762. "mirrors": [
  7763. {
  7764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7765. "preferred": true
  7766. }
  7767. ]
  7768. },
  7769. "require": {
  7770. "hamcrest/hamcrest-php": "^2.0.1",
  7771. "lib-pcre": ">=7.0",
  7772. "php": "^7.3 || ^8.0"
  7773. },
  7774. "conflict": {
  7775. "phpunit/phpunit": "<8.0"
  7776. },
  7777. "require-dev": {
  7778. "phpunit/phpunit": "^8.5 || ^9.3"
  7779. },
  7780. "type": "library",
  7781. "extra": {
  7782. "branch-alias": {
  7783. "dev-master": "1.4.x-dev"
  7784. }
  7785. },
  7786. "autoload": {
  7787. "psr-0": {
  7788. "Mockery": "library/"
  7789. }
  7790. },
  7791. "notification-url": "https://packagist.org/downloads/",
  7792. "license": [
  7793. "BSD-3-Clause"
  7794. ],
  7795. "authors": [
  7796. {
  7797. "name": "Pádraic Brady",
  7798. "email": "padraic.brady@gmail.com",
  7799. "homepage": "http://blog.astrumfutura.com"
  7800. },
  7801. {
  7802. "name": "Dave Marshall",
  7803. "email": "dave.marshall@atstsolutions.co.uk",
  7804. "homepage": "http://davedevelopment.co.uk"
  7805. }
  7806. ],
  7807. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7808. "homepage": "https://github.com/mockery/mockery",
  7809. "keywords": [
  7810. "BDD",
  7811. "TDD",
  7812. "library",
  7813. "mock",
  7814. "mock objects",
  7815. "mockery",
  7816. "stub",
  7817. "test",
  7818. "test double",
  7819. "testing"
  7820. ],
  7821. "support": {
  7822. "issues": "https://github.com/mockery/mockery/issues",
  7823. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  7824. },
  7825. "time": "2022-01-20T13:18:17+00:00"
  7826. },
  7827. {
  7828. "name": "myclabs/deep-copy",
  7829. "version": "1.11.0",
  7830. "source": {
  7831. "type": "git",
  7832. "url": "https://github.com/myclabs/DeepCopy.git",
  7833. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  7834. },
  7835. "dist": {
  7836. "type": "zip",
  7837. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7838. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7839. "shasum": "",
  7840. "mirrors": [
  7841. {
  7842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7843. "preferred": true
  7844. }
  7845. ]
  7846. },
  7847. "require": {
  7848. "php": "^7.1 || ^8.0"
  7849. },
  7850. "conflict": {
  7851. "doctrine/collections": "<1.6.8",
  7852. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7853. },
  7854. "require-dev": {
  7855. "doctrine/collections": "^1.6.8",
  7856. "doctrine/common": "^2.13.3 || ^3.2.2",
  7857. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7858. },
  7859. "type": "library",
  7860. "autoload": {
  7861. "files": [
  7862. "src/DeepCopy/deep_copy.php"
  7863. ],
  7864. "psr-4": {
  7865. "DeepCopy\\": "src/DeepCopy/"
  7866. }
  7867. },
  7868. "notification-url": "https://packagist.org/downloads/",
  7869. "license": [
  7870. "MIT"
  7871. ],
  7872. "description": "Create deep copies (clones) of your objects",
  7873. "keywords": [
  7874. "clone",
  7875. "copy",
  7876. "duplicate",
  7877. "object",
  7878. "object graph"
  7879. ],
  7880. "support": {
  7881. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7882. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  7883. },
  7884. "funding": [
  7885. {
  7886. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7887. "type": "tidelift"
  7888. }
  7889. ],
  7890. "time": "2022-03-03T13:19:32+00:00"
  7891. },
  7892. {
  7893. "name": "nunomaduro/collision",
  7894. "version": "v5.11.0",
  7895. "source": {
  7896. "type": "git",
  7897. "url": "https://github.com/nunomaduro/collision.git",
  7898. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  7899. },
  7900. "dist": {
  7901. "type": "zip",
  7902. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  7903. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  7904. "shasum": "",
  7905. "mirrors": [
  7906. {
  7907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7908. "preferred": true
  7909. }
  7910. ]
  7911. },
  7912. "require": {
  7913. "facade/ignition-contracts": "^1.0",
  7914. "filp/whoops": "^2.14.3",
  7915. "php": "^7.3 || ^8.0",
  7916. "symfony/console": "^5.0"
  7917. },
  7918. "require-dev": {
  7919. "brianium/paratest": "^6.1",
  7920. "fideloper/proxy": "^4.4.1",
  7921. "fruitcake/laravel-cors": "^2.0.3",
  7922. "laravel/framework": "8.x-dev",
  7923. "nunomaduro/larastan": "^0.6.2",
  7924. "nunomaduro/mock-final-classes": "^1.0",
  7925. "orchestra/testbench": "^6.0",
  7926. "phpstan/phpstan": "^0.12.64",
  7927. "phpunit/phpunit": "^9.5.0"
  7928. },
  7929. "type": "library",
  7930. "extra": {
  7931. "laravel": {
  7932. "providers": [
  7933. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7934. ]
  7935. }
  7936. },
  7937. "autoload": {
  7938. "psr-4": {
  7939. "NunoMaduro\\Collision\\": "src/"
  7940. }
  7941. },
  7942. "notification-url": "https://packagist.org/downloads/",
  7943. "license": [
  7944. "MIT"
  7945. ],
  7946. "authors": [
  7947. {
  7948. "name": "Nuno Maduro",
  7949. "email": "enunomaduro@gmail.com"
  7950. }
  7951. ],
  7952. "description": "Cli error handling for console/command-line PHP applications.",
  7953. "keywords": [
  7954. "artisan",
  7955. "cli",
  7956. "command-line",
  7957. "console",
  7958. "error",
  7959. "handling",
  7960. "laravel",
  7961. "laravel-zero",
  7962. "php",
  7963. "symfony"
  7964. ],
  7965. "support": {
  7966. "issues": "https://github.com/nunomaduro/collision/issues",
  7967. "source": "https://github.com/nunomaduro/collision"
  7968. },
  7969. "funding": [
  7970. {
  7971. "url": "https://www.paypal.com/paypalme/enunomaduro",
  7972. "type": "custom"
  7973. },
  7974. {
  7975. "url": "https://github.com/nunomaduro",
  7976. "type": "github"
  7977. },
  7978. {
  7979. "url": "https://www.patreon.com/nunomaduro",
  7980. "type": "patreon"
  7981. }
  7982. ],
  7983. "time": "2022-01-10T16:22:52+00:00"
  7984. },
  7985. {
  7986. "name": "phar-io/manifest",
  7987. "version": "2.0.3",
  7988. "source": {
  7989. "type": "git",
  7990. "url": "https://github.com/phar-io/manifest.git",
  7991. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  7992. },
  7993. "dist": {
  7994. "type": "zip",
  7995. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  7996. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  7997. "shasum": "",
  7998. "mirrors": [
  7999. {
  8000. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8001. "preferred": true
  8002. }
  8003. ]
  8004. },
  8005. "require": {
  8006. "ext-dom": "*",
  8007. "ext-phar": "*",
  8008. "ext-xmlwriter": "*",
  8009. "phar-io/version": "^3.0.1",
  8010. "php": "^7.2 || ^8.0"
  8011. },
  8012. "type": "library",
  8013. "extra": {
  8014. "branch-alias": {
  8015. "dev-master": "2.0.x-dev"
  8016. }
  8017. },
  8018. "autoload": {
  8019. "classmap": [
  8020. "src/"
  8021. ]
  8022. },
  8023. "notification-url": "https://packagist.org/downloads/",
  8024. "license": [
  8025. "BSD-3-Clause"
  8026. ],
  8027. "authors": [
  8028. {
  8029. "name": "Arne Blankerts",
  8030. "email": "arne@blankerts.de",
  8031. "role": "Developer"
  8032. },
  8033. {
  8034. "name": "Sebastian Heuer",
  8035. "email": "sebastian@phpeople.de",
  8036. "role": "Developer"
  8037. },
  8038. {
  8039. "name": "Sebastian Bergmann",
  8040. "email": "sebastian@phpunit.de",
  8041. "role": "Developer"
  8042. }
  8043. ],
  8044. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8045. "support": {
  8046. "issues": "https://github.com/phar-io/manifest/issues",
  8047. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8048. },
  8049. "time": "2021-07-20T11:28:43+00:00"
  8050. },
  8051. {
  8052. "name": "phar-io/version",
  8053. "version": "3.2.1",
  8054. "source": {
  8055. "type": "git",
  8056. "url": "https://github.com/phar-io/version.git",
  8057. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8058. },
  8059. "dist": {
  8060. "type": "zip",
  8061. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8062. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8063. "shasum": "",
  8064. "mirrors": [
  8065. {
  8066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8067. "preferred": true
  8068. }
  8069. ]
  8070. },
  8071. "require": {
  8072. "php": "^7.2 || ^8.0"
  8073. },
  8074. "type": "library",
  8075. "autoload": {
  8076. "classmap": [
  8077. "src/"
  8078. ]
  8079. },
  8080. "notification-url": "https://packagist.org/downloads/",
  8081. "license": [
  8082. "BSD-3-Clause"
  8083. ],
  8084. "authors": [
  8085. {
  8086. "name": "Arne Blankerts",
  8087. "email": "arne@blankerts.de",
  8088. "role": "Developer"
  8089. },
  8090. {
  8091. "name": "Sebastian Heuer",
  8092. "email": "sebastian@phpeople.de",
  8093. "role": "Developer"
  8094. },
  8095. {
  8096. "name": "Sebastian Bergmann",
  8097. "email": "sebastian@phpunit.de",
  8098. "role": "Developer"
  8099. }
  8100. ],
  8101. "description": "Library for handling version information and constraints",
  8102. "support": {
  8103. "issues": "https://github.com/phar-io/version/issues",
  8104. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8105. },
  8106. "time": "2022-02-21T01:04:05+00:00"
  8107. },
  8108. {
  8109. "name": "phpspec/prophecy",
  8110. "version": "v1.15.0",
  8111. "source": {
  8112. "type": "git",
  8113. "url": "https://github.com/phpspec/prophecy.git",
  8114. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  8115. },
  8116. "dist": {
  8117. "type": "zip",
  8118. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  8119. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  8120. "shasum": "",
  8121. "mirrors": [
  8122. {
  8123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8124. "preferred": true
  8125. }
  8126. ]
  8127. },
  8128. "require": {
  8129. "doctrine/instantiator": "^1.2",
  8130. "php": "^7.2 || ~8.0, <8.2",
  8131. "phpdocumentor/reflection-docblock": "^5.2",
  8132. "sebastian/comparator": "^3.0 || ^4.0",
  8133. "sebastian/recursion-context": "^3.0 || ^4.0"
  8134. },
  8135. "require-dev": {
  8136. "phpspec/phpspec": "^6.0 || ^7.0",
  8137. "phpunit/phpunit": "^8.0 || ^9.0"
  8138. },
  8139. "type": "library",
  8140. "extra": {
  8141. "branch-alias": {
  8142. "dev-master": "1.x-dev"
  8143. }
  8144. },
  8145. "autoload": {
  8146. "psr-4": {
  8147. "Prophecy\\": "src/Prophecy"
  8148. }
  8149. },
  8150. "notification-url": "https://packagist.org/downloads/",
  8151. "license": [
  8152. "MIT"
  8153. ],
  8154. "authors": [
  8155. {
  8156. "name": "Konstantin Kudryashov",
  8157. "email": "ever.zet@gmail.com",
  8158. "homepage": "http://everzet.com"
  8159. },
  8160. {
  8161. "name": "Marcello Duarte",
  8162. "email": "marcello.duarte@gmail.com"
  8163. }
  8164. ],
  8165. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8166. "homepage": "https://github.com/phpspec/prophecy",
  8167. "keywords": [
  8168. "Double",
  8169. "Dummy",
  8170. "fake",
  8171. "mock",
  8172. "spy",
  8173. "stub"
  8174. ],
  8175. "support": {
  8176. "issues": "https://github.com/phpspec/prophecy/issues",
  8177. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  8178. },
  8179. "time": "2021-12-08T12:19:24+00:00"
  8180. },
  8181. {
  8182. "name": "phpunit/php-code-coverage",
  8183. "version": "9.2.15",
  8184. "source": {
  8185. "type": "git",
  8186. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8187. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  8188. },
  8189. "dist": {
  8190. "type": "zip",
  8191. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  8192. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  8193. "shasum": "",
  8194. "mirrors": [
  8195. {
  8196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8197. "preferred": true
  8198. }
  8199. ]
  8200. },
  8201. "require": {
  8202. "ext-dom": "*",
  8203. "ext-libxml": "*",
  8204. "ext-xmlwriter": "*",
  8205. "nikic/php-parser": "^4.13.0",
  8206. "php": ">=7.3",
  8207. "phpunit/php-file-iterator": "^3.0.3",
  8208. "phpunit/php-text-template": "^2.0.2",
  8209. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8210. "sebastian/complexity": "^2.0",
  8211. "sebastian/environment": "^5.1.2",
  8212. "sebastian/lines-of-code": "^1.0.3",
  8213. "sebastian/version": "^3.0.1",
  8214. "theseer/tokenizer": "^1.2.0"
  8215. },
  8216. "require-dev": {
  8217. "phpunit/phpunit": "^9.3"
  8218. },
  8219. "suggest": {
  8220. "ext-pcov": "*",
  8221. "ext-xdebug": "*"
  8222. },
  8223. "type": "library",
  8224. "extra": {
  8225. "branch-alias": {
  8226. "dev-master": "9.2-dev"
  8227. }
  8228. },
  8229. "autoload": {
  8230. "classmap": [
  8231. "src/"
  8232. ]
  8233. },
  8234. "notification-url": "https://packagist.org/downloads/",
  8235. "license": [
  8236. "BSD-3-Clause"
  8237. ],
  8238. "authors": [
  8239. {
  8240. "name": "Sebastian Bergmann",
  8241. "email": "sebastian@phpunit.de",
  8242. "role": "lead"
  8243. }
  8244. ],
  8245. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8246. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8247. "keywords": [
  8248. "coverage",
  8249. "testing",
  8250. "xunit"
  8251. ],
  8252. "support": {
  8253. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8254. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  8255. },
  8256. "funding": [
  8257. {
  8258. "url": "https://github.com/sebastianbergmann",
  8259. "type": "github"
  8260. }
  8261. ],
  8262. "time": "2022-03-07T09:28:20+00:00"
  8263. },
  8264. {
  8265. "name": "phpunit/php-file-iterator",
  8266. "version": "3.0.6",
  8267. "source": {
  8268. "type": "git",
  8269. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8270. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8271. },
  8272. "dist": {
  8273. "type": "zip",
  8274. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8275. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8276. "shasum": "",
  8277. "mirrors": [
  8278. {
  8279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8280. "preferred": true
  8281. }
  8282. ]
  8283. },
  8284. "require": {
  8285. "php": ">=7.3"
  8286. },
  8287. "require-dev": {
  8288. "phpunit/phpunit": "^9.3"
  8289. },
  8290. "type": "library",
  8291. "extra": {
  8292. "branch-alias": {
  8293. "dev-master": "3.0-dev"
  8294. }
  8295. },
  8296. "autoload": {
  8297. "classmap": [
  8298. "src/"
  8299. ]
  8300. },
  8301. "notification-url": "https://packagist.org/downloads/",
  8302. "license": [
  8303. "BSD-3-Clause"
  8304. ],
  8305. "authors": [
  8306. {
  8307. "name": "Sebastian Bergmann",
  8308. "email": "sebastian@phpunit.de",
  8309. "role": "lead"
  8310. }
  8311. ],
  8312. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8313. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8314. "keywords": [
  8315. "filesystem",
  8316. "iterator"
  8317. ],
  8318. "support": {
  8319. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8320. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8321. },
  8322. "funding": [
  8323. {
  8324. "url": "https://github.com/sebastianbergmann",
  8325. "type": "github"
  8326. }
  8327. ],
  8328. "time": "2021-12-02T12:48:52+00:00"
  8329. },
  8330. {
  8331. "name": "phpunit/php-invoker",
  8332. "version": "3.1.1",
  8333. "source": {
  8334. "type": "git",
  8335. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8336. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8337. },
  8338. "dist": {
  8339. "type": "zip",
  8340. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8341. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8342. "shasum": "",
  8343. "mirrors": [
  8344. {
  8345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8346. "preferred": true
  8347. }
  8348. ]
  8349. },
  8350. "require": {
  8351. "php": ">=7.3"
  8352. },
  8353. "require-dev": {
  8354. "ext-pcntl": "*",
  8355. "phpunit/phpunit": "^9.3"
  8356. },
  8357. "suggest": {
  8358. "ext-pcntl": "*"
  8359. },
  8360. "type": "library",
  8361. "extra": {
  8362. "branch-alias": {
  8363. "dev-master": "3.1-dev"
  8364. }
  8365. },
  8366. "autoload": {
  8367. "classmap": [
  8368. "src/"
  8369. ]
  8370. },
  8371. "notification-url": "https://packagist.org/downloads/",
  8372. "license": [
  8373. "BSD-3-Clause"
  8374. ],
  8375. "authors": [
  8376. {
  8377. "name": "Sebastian Bergmann",
  8378. "email": "sebastian@phpunit.de",
  8379. "role": "lead"
  8380. }
  8381. ],
  8382. "description": "Invoke callables with a timeout",
  8383. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8384. "keywords": [
  8385. "process"
  8386. ],
  8387. "support": {
  8388. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8389. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8390. },
  8391. "funding": [
  8392. {
  8393. "url": "https://github.com/sebastianbergmann",
  8394. "type": "github"
  8395. }
  8396. ],
  8397. "time": "2020-09-28T05:58:55+00:00"
  8398. },
  8399. {
  8400. "name": "phpunit/php-text-template",
  8401. "version": "2.0.4",
  8402. "source": {
  8403. "type": "git",
  8404. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8405. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8406. },
  8407. "dist": {
  8408. "type": "zip",
  8409. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8410. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8411. "shasum": "",
  8412. "mirrors": [
  8413. {
  8414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8415. "preferred": true
  8416. }
  8417. ]
  8418. },
  8419. "require": {
  8420. "php": ">=7.3"
  8421. },
  8422. "require-dev": {
  8423. "phpunit/phpunit": "^9.3"
  8424. },
  8425. "type": "library",
  8426. "extra": {
  8427. "branch-alias": {
  8428. "dev-master": "2.0-dev"
  8429. }
  8430. },
  8431. "autoload": {
  8432. "classmap": [
  8433. "src/"
  8434. ]
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "BSD-3-Clause"
  8439. ],
  8440. "authors": [
  8441. {
  8442. "name": "Sebastian Bergmann",
  8443. "email": "sebastian@phpunit.de",
  8444. "role": "lead"
  8445. }
  8446. ],
  8447. "description": "Simple template engine.",
  8448. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8449. "keywords": [
  8450. "template"
  8451. ],
  8452. "support": {
  8453. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8454. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8455. },
  8456. "funding": [
  8457. {
  8458. "url": "https://github.com/sebastianbergmann",
  8459. "type": "github"
  8460. }
  8461. ],
  8462. "time": "2020-10-26T05:33:50+00:00"
  8463. },
  8464. {
  8465. "name": "phpunit/php-timer",
  8466. "version": "5.0.3",
  8467. "source": {
  8468. "type": "git",
  8469. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8470. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8471. },
  8472. "dist": {
  8473. "type": "zip",
  8474. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8475. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8476. "shasum": "",
  8477. "mirrors": [
  8478. {
  8479. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8480. "preferred": true
  8481. }
  8482. ]
  8483. },
  8484. "require": {
  8485. "php": ">=7.3"
  8486. },
  8487. "require-dev": {
  8488. "phpunit/phpunit": "^9.3"
  8489. },
  8490. "type": "library",
  8491. "extra": {
  8492. "branch-alias": {
  8493. "dev-master": "5.0-dev"
  8494. }
  8495. },
  8496. "autoload": {
  8497. "classmap": [
  8498. "src/"
  8499. ]
  8500. },
  8501. "notification-url": "https://packagist.org/downloads/",
  8502. "license": [
  8503. "BSD-3-Clause"
  8504. ],
  8505. "authors": [
  8506. {
  8507. "name": "Sebastian Bergmann",
  8508. "email": "sebastian@phpunit.de",
  8509. "role": "lead"
  8510. }
  8511. ],
  8512. "description": "Utility class for timing",
  8513. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8514. "keywords": [
  8515. "timer"
  8516. ],
  8517. "support": {
  8518. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8519. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8520. },
  8521. "funding": [
  8522. {
  8523. "url": "https://github.com/sebastianbergmann",
  8524. "type": "github"
  8525. }
  8526. ],
  8527. "time": "2020-10-26T13:16:10+00:00"
  8528. },
  8529. {
  8530. "name": "phpunit/phpunit",
  8531. "version": "9.5.21",
  8532. "source": {
  8533. "type": "git",
  8534. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8535. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
  8536. },
  8537. "dist": {
  8538. "type": "zip",
  8539. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
  8540. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
  8541. "shasum": "",
  8542. "mirrors": [
  8543. {
  8544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8545. "preferred": true
  8546. }
  8547. ]
  8548. },
  8549. "require": {
  8550. "doctrine/instantiator": "^1.3.1",
  8551. "ext-dom": "*",
  8552. "ext-json": "*",
  8553. "ext-libxml": "*",
  8554. "ext-mbstring": "*",
  8555. "ext-xml": "*",
  8556. "ext-xmlwriter": "*",
  8557. "myclabs/deep-copy": "^1.10.1",
  8558. "phar-io/manifest": "^2.0.3",
  8559. "phar-io/version": "^3.0.2",
  8560. "php": ">=7.3",
  8561. "phpspec/prophecy": "^1.12.1",
  8562. "phpunit/php-code-coverage": "^9.2.13",
  8563. "phpunit/php-file-iterator": "^3.0.5",
  8564. "phpunit/php-invoker": "^3.1.1",
  8565. "phpunit/php-text-template": "^2.0.3",
  8566. "phpunit/php-timer": "^5.0.2",
  8567. "sebastian/cli-parser": "^1.0.1",
  8568. "sebastian/code-unit": "^1.0.6",
  8569. "sebastian/comparator": "^4.0.5",
  8570. "sebastian/diff": "^4.0.3",
  8571. "sebastian/environment": "^5.1.3",
  8572. "sebastian/exporter": "^4.0.3",
  8573. "sebastian/global-state": "^5.0.1",
  8574. "sebastian/object-enumerator": "^4.0.3",
  8575. "sebastian/resource-operations": "^3.0.3",
  8576. "sebastian/type": "^3.0",
  8577. "sebastian/version": "^3.0.2"
  8578. },
  8579. "require-dev": {
  8580. "phpspec/prophecy-phpunit": "^2.0.1"
  8581. },
  8582. "suggest": {
  8583. "ext-soap": "*",
  8584. "ext-xdebug": "*"
  8585. },
  8586. "bin": [
  8587. "phpunit"
  8588. ],
  8589. "type": "library",
  8590. "extra": {
  8591. "branch-alias": {
  8592. "dev-master": "9.5-dev"
  8593. }
  8594. },
  8595. "autoload": {
  8596. "files": [
  8597. "src/Framework/Assert/Functions.php"
  8598. ],
  8599. "classmap": [
  8600. "src/"
  8601. ]
  8602. },
  8603. "notification-url": "https://packagist.org/downloads/",
  8604. "license": [
  8605. "BSD-3-Clause"
  8606. ],
  8607. "authors": [
  8608. {
  8609. "name": "Sebastian Bergmann",
  8610. "email": "sebastian@phpunit.de",
  8611. "role": "lead"
  8612. }
  8613. ],
  8614. "description": "The PHP Unit Testing framework.",
  8615. "homepage": "https://phpunit.de/",
  8616. "keywords": [
  8617. "phpunit",
  8618. "testing",
  8619. "xunit"
  8620. ],
  8621. "support": {
  8622. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8623. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21"
  8624. },
  8625. "funding": [
  8626. {
  8627. "url": "https://phpunit.de/sponsors.html",
  8628. "type": "custom"
  8629. },
  8630. {
  8631. "url": "https://github.com/sebastianbergmann",
  8632. "type": "github"
  8633. }
  8634. ],
  8635. "time": "2022-06-19T12:14:25+00:00"
  8636. },
  8637. {
  8638. "name": "sebastian/cli-parser",
  8639. "version": "1.0.1",
  8640. "source": {
  8641. "type": "git",
  8642. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8643. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8644. },
  8645. "dist": {
  8646. "type": "zip",
  8647. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8648. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8649. "shasum": "",
  8650. "mirrors": [
  8651. {
  8652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8653. "preferred": true
  8654. }
  8655. ]
  8656. },
  8657. "require": {
  8658. "php": ">=7.3"
  8659. },
  8660. "require-dev": {
  8661. "phpunit/phpunit": "^9.3"
  8662. },
  8663. "type": "library",
  8664. "extra": {
  8665. "branch-alias": {
  8666. "dev-master": "1.0-dev"
  8667. }
  8668. },
  8669. "autoload": {
  8670. "classmap": [
  8671. "src/"
  8672. ]
  8673. },
  8674. "notification-url": "https://packagist.org/downloads/",
  8675. "license": [
  8676. "BSD-3-Clause"
  8677. ],
  8678. "authors": [
  8679. {
  8680. "name": "Sebastian Bergmann",
  8681. "email": "sebastian@phpunit.de",
  8682. "role": "lead"
  8683. }
  8684. ],
  8685. "description": "Library for parsing CLI options",
  8686. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8687. "support": {
  8688. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8689. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  8690. },
  8691. "funding": [
  8692. {
  8693. "url": "https://github.com/sebastianbergmann",
  8694. "type": "github"
  8695. }
  8696. ],
  8697. "time": "2020-09-28T06:08:49+00:00"
  8698. },
  8699. {
  8700. "name": "sebastian/code-unit",
  8701. "version": "1.0.8",
  8702. "source": {
  8703. "type": "git",
  8704. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8705. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8706. },
  8707. "dist": {
  8708. "type": "zip",
  8709. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8710. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8711. "shasum": "",
  8712. "mirrors": [
  8713. {
  8714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8715. "preferred": true
  8716. }
  8717. ]
  8718. },
  8719. "require": {
  8720. "php": ">=7.3"
  8721. },
  8722. "require-dev": {
  8723. "phpunit/phpunit": "^9.3"
  8724. },
  8725. "type": "library",
  8726. "extra": {
  8727. "branch-alias": {
  8728. "dev-master": "1.0-dev"
  8729. }
  8730. },
  8731. "autoload": {
  8732. "classmap": [
  8733. "src/"
  8734. ]
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "BSD-3-Clause"
  8739. ],
  8740. "authors": [
  8741. {
  8742. "name": "Sebastian Bergmann",
  8743. "email": "sebastian@phpunit.de",
  8744. "role": "lead"
  8745. }
  8746. ],
  8747. "description": "Collection of value objects that represent the PHP code units",
  8748. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8749. "support": {
  8750. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8751. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8752. },
  8753. "funding": [
  8754. {
  8755. "url": "https://github.com/sebastianbergmann",
  8756. "type": "github"
  8757. }
  8758. ],
  8759. "time": "2020-10-26T13:08:54+00:00"
  8760. },
  8761. {
  8762. "name": "sebastian/code-unit-reverse-lookup",
  8763. "version": "2.0.3",
  8764. "source": {
  8765. "type": "git",
  8766. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8767. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8768. },
  8769. "dist": {
  8770. "type": "zip",
  8771. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8772. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8773. "shasum": "",
  8774. "mirrors": [
  8775. {
  8776. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8777. "preferred": true
  8778. }
  8779. ]
  8780. },
  8781. "require": {
  8782. "php": ">=7.3"
  8783. },
  8784. "require-dev": {
  8785. "phpunit/phpunit": "^9.3"
  8786. },
  8787. "type": "library",
  8788. "extra": {
  8789. "branch-alias": {
  8790. "dev-master": "2.0-dev"
  8791. }
  8792. },
  8793. "autoload": {
  8794. "classmap": [
  8795. "src/"
  8796. ]
  8797. },
  8798. "notification-url": "https://packagist.org/downloads/",
  8799. "license": [
  8800. "BSD-3-Clause"
  8801. ],
  8802. "authors": [
  8803. {
  8804. "name": "Sebastian Bergmann",
  8805. "email": "sebastian@phpunit.de"
  8806. }
  8807. ],
  8808. "description": "Looks up which function or method a line of code belongs to",
  8809. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8810. "support": {
  8811. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8812. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8813. },
  8814. "funding": [
  8815. {
  8816. "url": "https://github.com/sebastianbergmann",
  8817. "type": "github"
  8818. }
  8819. ],
  8820. "time": "2020-09-28T05:30:19+00:00"
  8821. },
  8822. {
  8823. "name": "sebastian/comparator",
  8824. "version": "4.0.6",
  8825. "source": {
  8826. "type": "git",
  8827. "url": "https://github.com/sebastianbergmann/comparator.git",
  8828. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  8829. },
  8830. "dist": {
  8831. "type": "zip",
  8832. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  8833. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  8834. "shasum": "",
  8835. "mirrors": [
  8836. {
  8837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8838. "preferred": true
  8839. }
  8840. ]
  8841. },
  8842. "require": {
  8843. "php": ">=7.3",
  8844. "sebastian/diff": "^4.0",
  8845. "sebastian/exporter": "^4.0"
  8846. },
  8847. "require-dev": {
  8848. "phpunit/phpunit": "^9.3"
  8849. },
  8850. "type": "library",
  8851. "extra": {
  8852. "branch-alias": {
  8853. "dev-master": "4.0-dev"
  8854. }
  8855. },
  8856. "autoload": {
  8857. "classmap": [
  8858. "src/"
  8859. ]
  8860. },
  8861. "notification-url": "https://packagist.org/downloads/",
  8862. "license": [
  8863. "BSD-3-Clause"
  8864. ],
  8865. "authors": [
  8866. {
  8867. "name": "Sebastian Bergmann",
  8868. "email": "sebastian@phpunit.de"
  8869. },
  8870. {
  8871. "name": "Jeff Welch",
  8872. "email": "whatthejeff@gmail.com"
  8873. },
  8874. {
  8875. "name": "Volker Dusch",
  8876. "email": "github@wallbash.com"
  8877. },
  8878. {
  8879. "name": "Bernhard Schussek",
  8880. "email": "bschussek@2bepublished.at"
  8881. }
  8882. ],
  8883. "description": "Provides the functionality to compare PHP values for equality",
  8884. "homepage": "https://github.com/sebastianbergmann/comparator",
  8885. "keywords": [
  8886. "comparator",
  8887. "compare",
  8888. "equality"
  8889. ],
  8890. "support": {
  8891. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8892. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  8893. },
  8894. "funding": [
  8895. {
  8896. "url": "https://github.com/sebastianbergmann",
  8897. "type": "github"
  8898. }
  8899. ],
  8900. "time": "2020-10-26T15:49:45+00:00"
  8901. },
  8902. {
  8903. "name": "sebastian/complexity",
  8904. "version": "2.0.2",
  8905. "source": {
  8906. "type": "git",
  8907. "url": "https://github.com/sebastianbergmann/complexity.git",
  8908. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  8909. },
  8910. "dist": {
  8911. "type": "zip",
  8912. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  8913. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  8914. "shasum": "",
  8915. "mirrors": [
  8916. {
  8917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8918. "preferred": true
  8919. }
  8920. ]
  8921. },
  8922. "require": {
  8923. "nikic/php-parser": "^4.7",
  8924. "php": ">=7.3"
  8925. },
  8926. "require-dev": {
  8927. "phpunit/phpunit": "^9.3"
  8928. },
  8929. "type": "library",
  8930. "extra": {
  8931. "branch-alias": {
  8932. "dev-master": "2.0-dev"
  8933. }
  8934. },
  8935. "autoload": {
  8936. "classmap": [
  8937. "src/"
  8938. ]
  8939. },
  8940. "notification-url": "https://packagist.org/downloads/",
  8941. "license": [
  8942. "BSD-3-Clause"
  8943. ],
  8944. "authors": [
  8945. {
  8946. "name": "Sebastian Bergmann",
  8947. "email": "sebastian@phpunit.de",
  8948. "role": "lead"
  8949. }
  8950. ],
  8951. "description": "Library for calculating the complexity of PHP code units",
  8952. "homepage": "https://github.com/sebastianbergmann/complexity",
  8953. "support": {
  8954. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8955. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  8956. },
  8957. "funding": [
  8958. {
  8959. "url": "https://github.com/sebastianbergmann",
  8960. "type": "github"
  8961. }
  8962. ],
  8963. "time": "2020-10-26T15:52:27+00:00"
  8964. },
  8965. {
  8966. "name": "sebastian/diff",
  8967. "version": "4.0.4",
  8968. "source": {
  8969. "type": "git",
  8970. "url": "https://github.com/sebastianbergmann/diff.git",
  8971. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  8972. },
  8973. "dist": {
  8974. "type": "zip",
  8975. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8976. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8977. "shasum": "",
  8978. "mirrors": [
  8979. {
  8980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8981. "preferred": true
  8982. }
  8983. ]
  8984. },
  8985. "require": {
  8986. "php": ">=7.3"
  8987. },
  8988. "require-dev": {
  8989. "phpunit/phpunit": "^9.3",
  8990. "symfony/process": "^4.2 || ^5"
  8991. },
  8992. "type": "library",
  8993. "extra": {
  8994. "branch-alias": {
  8995. "dev-master": "4.0-dev"
  8996. }
  8997. },
  8998. "autoload": {
  8999. "classmap": [
  9000. "src/"
  9001. ]
  9002. },
  9003. "notification-url": "https://packagist.org/downloads/",
  9004. "license": [
  9005. "BSD-3-Clause"
  9006. ],
  9007. "authors": [
  9008. {
  9009. "name": "Sebastian Bergmann",
  9010. "email": "sebastian@phpunit.de"
  9011. },
  9012. {
  9013. "name": "Kore Nordmann",
  9014. "email": "mail@kore-nordmann.de"
  9015. }
  9016. ],
  9017. "description": "Diff implementation",
  9018. "homepage": "https://github.com/sebastianbergmann/diff",
  9019. "keywords": [
  9020. "diff",
  9021. "udiff",
  9022. "unidiff",
  9023. "unified diff"
  9024. ],
  9025. "support": {
  9026. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9027. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9028. },
  9029. "funding": [
  9030. {
  9031. "url": "https://github.com/sebastianbergmann",
  9032. "type": "github"
  9033. }
  9034. ],
  9035. "time": "2020-10-26T13:10:38+00:00"
  9036. },
  9037. {
  9038. "name": "sebastian/environment",
  9039. "version": "5.1.4",
  9040. "source": {
  9041. "type": "git",
  9042. "url": "https://github.com/sebastianbergmann/environment.git",
  9043. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  9044. },
  9045. "dist": {
  9046. "type": "zip",
  9047. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9048. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9049. "shasum": "",
  9050. "mirrors": [
  9051. {
  9052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9053. "preferred": true
  9054. }
  9055. ]
  9056. },
  9057. "require": {
  9058. "php": ">=7.3"
  9059. },
  9060. "require-dev": {
  9061. "phpunit/phpunit": "^9.3"
  9062. },
  9063. "suggest": {
  9064. "ext-posix": "*"
  9065. },
  9066. "type": "library",
  9067. "extra": {
  9068. "branch-alias": {
  9069. "dev-master": "5.1-dev"
  9070. }
  9071. },
  9072. "autoload": {
  9073. "classmap": [
  9074. "src/"
  9075. ]
  9076. },
  9077. "notification-url": "https://packagist.org/downloads/",
  9078. "license": [
  9079. "BSD-3-Clause"
  9080. ],
  9081. "authors": [
  9082. {
  9083. "name": "Sebastian Bergmann",
  9084. "email": "sebastian@phpunit.de"
  9085. }
  9086. ],
  9087. "description": "Provides functionality to handle HHVM/PHP environments",
  9088. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9089. "keywords": [
  9090. "Xdebug",
  9091. "environment",
  9092. "hhvm"
  9093. ],
  9094. "support": {
  9095. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9096. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  9097. },
  9098. "funding": [
  9099. {
  9100. "url": "https://github.com/sebastianbergmann",
  9101. "type": "github"
  9102. }
  9103. ],
  9104. "time": "2022-04-03T09:37:03+00:00"
  9105. },
  9106. {
  9107. "name": "sebastian/exporter",
  9108. "version": "4.0.4",
  9109. "source": {
  9110. "type": "git",
  9111. "url": "https://github.com/sebastianbergmann/exporter.git",
  9112. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  9113. },
  9114. "dist": {
  9115. "type": "zip",
  9116. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  9117. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  9118. "shasum": "",
  9119. "mirrors": [
  9120. {
  9121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9122. "preferred": true
  9123. }
  9124. ]
  9125. },
  9126. "require": {
  9127. "php": ">=7.3",
  9128. "sebastian/recursion-context": "^4.0"
  9129. },
  9130. "require-dev": {
  9131. "ext-mbstring": "*",
  9132. "phpunit/phpunit": "^9.3"
  9133. },
  9134. "type": "library",
  9135. "extra": {
  9136. "branch-alias": {
  9137. "dev-master": "4.0-dev"
  9138. }
  9139. },
  9140. "autoload": {
  9141. "classmap": [
  9142. "src/"
  9143. ]
  9144. },
  9145. "notification-url": "https://packagist.org/downloads/",
  9146. "license": [
  9147. "BSD-3-Clause"
  9148. ],
  9149. "authors": [
  9150. {
  9151. "name": "Sebastian Bergmann",
  9152. "email": "sebastian@phpunit.de"
  9153. },
  9154. {
  9155. "name": "Jeff Welch",
  9156. "email": "whatthejeff@gmail.com"
  9157. },
  9158. {
  9159. "name": "Volker Dusch",
  9160. "email": "github@wallbash.com"
  9161. },
  9162. {
  9163. "name": "Adam Harvey",
  9164. "email": "aharvey@php.net"
  9165. },
  9166. {
  9167. "name": "Bernhard Schussek",
  9168. "email": "bschussek@gmail.com"
  9169. }
  9170. ],
  9171. "description": "Provides the functionality to export PHP variables for visualization",
  9172. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9173. "keywords": [
  9174. "export",
  9175. "exporter"
  9176. ],
  9177. "support": {
  9178. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9179. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  9180. },
  9181. "funding": [
  9182. {
  9183. "url": "https://github.com/sebastianbergmann",
  9184. "type": "github"
  9185. }
  9186. ],
  9187. "time": "2021-11-11T14:18:36+00:00"
  9188. },
  9189. {
  9190. "name": "sebastian/global-state",
  9191. "version": "5.0.5",
  9192. "source": {
  9193. "type": "git",
  9194. "url": "https://github.com/sebastianbergmann/global-state.git",
  9195. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9196. },
  9197. "dist": {
  9198. "type": "zip",
  9199. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9200. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9201. "shasum": "",
  9202. "mirrors": [
  9203. {
  9204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9205. "preferred": true
  9206. }
  9207. ]
  9208. },
  9209. "require": {
  9210. "php": ">=7.3",
  9211. "sebastian/object-reflector": "^2.0",
  9212. "sebastian/recursion-context": "^4.0"
  9213. },
  9214. "require-dev": {
  9215. "ext-dom": "*",
  9216. "phpunit/phpunit": "^9.3"
  9217. },
  9218. "suggest": {
  9219. "ext-uopz": "*"
  9220. },
  9221. "type": "library",
  9222. "extra": {
  9223. "branch-alias": {
  9224. "dev-master": "5.0-dev"
  9225. }
  9226. },
  9227. "autoload": {
  9228. "classmap": [
  9229. "src/"
  9230. ]
  9231. },
  9232. "notification-url": "https://packagist.org/downloads/",
  9233. "license": [
  9234. "BSD-3-Clause"
  9235. ],
  9236. "authors": [
  9237. {
  9238. "name": "Sebastian Bergmann",
  9239. "email": "sebastian@phpunit.de"
  9240. }
  9241. ],
  9242. "description": "Snapshotting of global state",
  9243. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9244. "keywords": [
  9245. "global state"
  9246. ],
  9247. "support": {
  9248. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9249. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9250. },
  9251. "funding": [
  9252. {
  9253. "url": "https://github.com/sebastianbergmann",
  9254. "type": "github"
  9255. }
  9256. ],
  9257. "time": "2022-02-14T08:28:10+00:00"
  9258. },
  9259. {
  9260. "name": "sebastian/lines-of-code",
  9261. "version": "1.0.3",
  9262. "source": {
  9263. "type": "git",
  9264. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9265. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9266. },
  9267. "dist": {
  9268. "type": "zip",
  9269. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9270. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9271. "shasum": "",
  9272. "mirrors": [
  9273. {
  9274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9275. "preferred": true
  9276. }
  9277. ]
  9278. },
  9279. "require": {
  9280. "nikic/php-parser": "^4.6",
  9281. "php": ">=7.3"
  9282. },
  9283. "require-dev": {
  9284. "phpunit/phpunit": "^9.3"
  9285. },
  9286. "type": "library",
  9287. "extra": {
  9288. "branch-alias": {
  9289. "dev-master": "1.0-dev"
  9290. }
  9291. },
  9292. "autoload": {
  9293. "classmap": [
  9294. "src/"
  9295. ]
  9296. },
  9297. "notification-url": "https://packagist.org/downloads/",
  9298. "license": [
  9299. "BSD-3-Clause"
  9300. ],
  9301. "authors": [
  9302. {
  9303. "name": "Sebastian Bergmann",
  9304. "email": "sebastian@phpunit.de",
  9305. "role": "lead"
  9306. }
  9307. ],
  9308. "description": "Library for counting the lines of code in PHP source code",
  9309. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9310. "support": {
  9311. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9312. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9313. },
  9314. "funding": [
  9315. {
  9316. "url": "https://github.com/sebastianbergmann",
  9317. "type": "github"
  9318. }
  9319. ],
  9320. "time": "2020-11-28T06:42:11+00:00"
  9321. },
  9322. {
  9323. "name": "sebastian/object-enumerator",
  9324. "version": "4.0.4",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9328. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9333. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9334. "shasum": "",
  9335. "mirrors": [
  9336. {
  9337. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9338. "preferred": true
  9339. }
  9340. ]
  9341. },
  9342. "require": {
  9343. "php": ">=7.3",
  9344. "sebastian/object-reflector": "^2.0",
  9345. "sebastian/recursion-context": "^4.0"
  9346. },
  9347. "require-dev": {
  9348. "phpunit/phpunit": "^9.3"
  9349. },
  9350. "type": "library",
  9351. "extra": {
  9352. "branch-alias": {
  9353. "dev-master": "4.0-dev"
  9354. }
  9355. },
  9356. "autoload": {
  9357. "classmap": [
  9358. "src/"
  9359. ]
  9360. },
  9361. "notification-url": "https://packagist.org/downloads/",
  9362. "license": [
  9363. "BSD-3-Clause"
  9364. ],
  9365. "authors": [
  9366. {
  9367. "name": "Sebastian Bergmann",
  9368. "email": "sebastian@phpunit.de"
  9369. }
  9370. ],
  9371. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9372. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9373. "support": {
  9374. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9375. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9376. },
  9377. "funding": [
  9378. {
  9379. "url": "https://github.com/sebastianbergmann",
  9380. "type": "github"
  9381. }
  9382. ],
  9383. "time": "2020-10-26T13:12:34+00:00"
  9384. },
  9385. {
  9386. "name": "sebastian/object-reflector",
  9387. "version": "2.0.4",
  9388. "source": {
  9389. "type": "git",
  9390. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9391. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9392. },
  9393. "dist": {
  9394. "type": "zip",
  9395. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9396. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9397. "shasum": "",
  9398. "mirrors": [
  9399. {
  9400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9401. "preferred": true
  9402. }
  9403. ]
  9404. },
  9405. "require": {
  9406. "php": ">=7.3"
  9407. },
  9408. "require-dev": {
  9409. "phpunit/phpunit": "^9.3"
  9410. },
  9411. "type": "library",
  9412. "extra": {
  9413. "branch-alias": {
  9414. "dev-master": "2.0-dev"
  9415. }
  9416. },
  9417. "autoload": {
  9418. "classmap": [
  9419. "src/"
  9420. ]
  9421. },
  9422. "notification-url": "https://packagist.org/downloads/",
  9423. "license": [
  9424. "BSD-3-Clause"
  9425. ],
  9426. "authors": [
  9427. {
  9428. "name": "Sebastian Bergmann",
  9429. "email": "sebastian@phpunit.de"
  9430. }
  9431. ],
  9432. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9433. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9434. "support": {
  9435. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9436. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9437. },
  9438. "funding": [
  9439. {
  9440. "url": "https://github.com/sebastianbergmann",
  9441. "type": "github"
  9442. }
  9443. ],
  9444. "time": "2020-10-26T13:14:26+00:00"
  9445. },
  9446. {
  9447. "name": "sebastian/recursion-context",
  9448. "version": "4.0.4",
  9449. "source": {
  9450. "type": "git",
  9451. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9452. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  9453. },
  9454. "dist": {
  9455. "type": "zip",
  9456. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  9457. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  9458. "shasum": "",
  9459. "mirrors": [
  9460. {
  9461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9462. "preferred": true
  9463. }
  9464. ]
  9465. },
  9466. "require": {
  9467. "php": ">=7.3"
  9468. },
  9469. "require-dev": {
  9470. "phpunit/phpunit": "^9.3"
  9471. },
  9472. "type": "library",
  9473. "extra": {
  9474. "branch-alias": {
  9475. "dev-master": "4.0-dev"
  9476. }
  9477. },
  9478. "autoload": {
  9479. "classmap": [
  9480. "src/"
  9481. ]
  9482. },
  9483. "notification-url": "https://packagist.org/downloads/",
  9484. "license": [
  9485. "BSD-3-Clause"
  9486. ],
  9487. "authors": [
  9488. {
  9489. "name": "Sebastian Bergmann",
  9490. "email": "sebastian@phpunit.de"
  9491. },
  9492. {
  9493. "name": "Jeff Welch",
  9494. "email": "whatthejeff@gmail.com"
  9495. },
  9496. {
  9497. "name": "Adam Harvey",
  9498. "email": "aharvey@php.net"
  9499. }
  9500. ],
  9501. "description": "Provides functionality to recursively process PHP variables",
  9502. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9503. "support": {
  9504. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9505. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  9506. },
  9507. "funding": [
  9508. {
  9509. "url": "https://github.com/sebastianbergmann",
  9510. "type": "github"
  9511. }
  9512. ],
  9513. "time": "2020-10-26T13:17:30+00:00"
  9514. },
  9515. {
  9516. "name": "sebastian/resource-operations",
  9517. "version": "3.0.3",
  9518. "source": {
  9519. "type": "git",
  9520. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9521. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9522. },
  9523. "dist": {
  9524. "type": "zip",
  9525. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9526. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9527. "shasum": "",
  9528. "mirrors": [
  9529. {
  9530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9531. "preferred": true
  9532. }
  9533. ]
  9534. },
  9535. "require": {
  9536. "php": ">=7.3"
  9537. },
  9538. "require-dev": {
  9539. "phpunit/phpunit": "^9.0"
  9540. },
  9541. "type": "library",
  9542. "extra": {
  9543. "branch-alias": {
  9544. "dev-master": "3.0-dev"
  9545. }
  9546. },
  9547. "autoload": {
  9548. "classmap": [
  9549. "src/"
  9550. ]
  9551. },
  9552. "notification-url": "https://packagist.org/downloads/",
  9553. "license": [
  9554. "BSD-3-Clause"
  9555. ],
  9556. "authors": [
  9557. {
  9558. "name": "Sebastian Bergmann",
  9559. "email": "sebastian@phpunit.de"
  9560. }
  9561. ],
  9562. "description": "Provides a list of PHP built-in functions that operate on resources",
  9563. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9564. "support": {
  9565. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9566. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9567. },
  9568. "funding": [
  9569. {
  9570. "url": "https://github.com/sebastianbergmann",
  9571. "type": "github"
  9572. }
  9573. ],
  9574. "time": "2020-09-28T06:45:17+00:00"
  9575. },
  9576. {
  9577. "name": "sebastian/type",
  9578. "version": "3.0.x-dev",
  9579. "source": {
  9580. "type": "git",
  9581. "url": "https://github.com/sebastianbergmann/type.git",
  9582. "reference": "afad3e987736f63bc54d7c923f0c1ebf247e8618"
  9583. },
  9584. "dist": {
  9585. "type": "zip",
  9586. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/afad3e987736f63bc54d7c923f0c1ebf247e8618",
  9587. "reference": "afad3e987736f63bc54d7c923f0c1ebf247e8618",
  9588. "shasum": "",
  9589. "mirrors": [
  9590. {
  9591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9592. "preferred": true
  9593. }
  9594. ]
  9595. },
  9596. "require": {
  9597. "php": ">=7.3"
  9598. },
  9599. "require-dev": {
  9600. "phpunit/phpunit": "^9.5"
  9601. },
  9602. "type": "library",
  9603. "extra": {
  9604. "branch-alias": {
  9605. "dev-master": "3.0-dev"
  9606. }
  9607. },
  9608. "autoload": {
  9609. "classmap": [
  9610. "src/"
  9611. ]
  9612. },
  9613. "notification-url": "https://packagist.org/downloads/",
  9614. "license": [
  9615. "BSD-3-Clause"
  9616. ],
  9617. "authors": [
  9618. {
  9619. "name": "Sebastian Bergmann",
  9620. "email": "sebastian@phpunit.de",
  9621. "role": "lead"
  9622. }
  9623. ],
  9624. "description": "Collection of value objects that represent the types of the PHP type system",
  9625. "homepage": "https://github.com/sebastianbergmann/type",
  9626. "support": {
  9627. "issues": "https://github.com/sebastianbergmann/type/issues",
  9628. "source": "https://github.com/sebastianbergmann/type/tree/3.0"
  9629. },
  9630. "funding": [
  9631. {
  9632. "url": "https://github.com/sebastianbergmann",
  9633. "type": "github"
  9634. }
  9635. ],
  9636. "time": "2022-03-27T17:35:59+00:00"
  9637. },
  9638. {
  9639. "name": "sebastian/version",
  9640. "version": "3.0.2",
  9641. "source": {
  9642. "type": "git",
  9643. "url": "https://github.com/sebastianbergmann/version.git",
  9644. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9645. },
  9646. "dist": {
  9647. "type": "zip",
  9648. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9649. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9650. "shasum": "",
  9651. "mirrors": [
  9652. {
  9653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9654. "preferred": true
  9655. }
  9656. ]
  9657. },
  9658. "require": {
  9659. "php": ">=7.3"
  9660. },
  9661. "type": "library",
  9662. "extra": {
  9663. "branch-alias": {
  9664. "dev-master": "3.0-dev"
  9665. }
  9666. },
  9667. "autoload": {
  9668. "classmap": [
  9669. "src/"
  9670. ]
  9671. },
  9672. "notification-url": "https://packagist.org/downloads/",
  9673. "license": [
  9674. "BSD-3-Clause"
  9675. ],
  9676. "authors": [
  9677. {
  9678. "name": "Sebastian Bergmann",
  9679. "email": "sebastian@phpunit.de",
  9680. "role": "lead"
  9681. }
  9682. ],
  9683. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9684. "homepage": "https://github.com/sebastianbergmann/version",
  9685. "support": {
  9686. "issues": "https://github.com/sebastianbergmann/version/issues",
  9687. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9688. },
  9689. "funding": [
  9690. {
  9691. "url": "https://github.com/sebastianbergmann",
  9692. "type": "github"
  9693. }
  9694. ],
  9695. "time": "2020-09-28T06:39:44+00:00"
  9696. },
  9697. {
  9698. "name": "theseer/tokenizer",
  9699. "version": "1.2.1",
  9700. "source": {
  9701. "type": "git",
  9702. "url": "https://github.com/theseer/tokenizer.git",
  9703. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  9704. },
  9705. "dist": {
  9706. "type": "zip",
  9707. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  9708. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  9709. "shasum": "",
  9710. "mirrors": [
  9711. {
  9712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9713. "preferred": true
  9714. }
  9715. ]
  9716. },
  9717. "require": {
  9718. "ext-dom": "*",
  9719. "ext-tokenizer": "*",
  9720. "ext-xmlwriter": "*",
  9721. "php": "^7.2 || ^8.0"
  9722. },
  9723. "type": "library",
  9724. "autoload": {
  9725. "classmap": [
  9726. "src/"
  9727. ]
  9728. },
  9729. "notification-url": "https://packagist.org/downloads/",
  9730. "license": [
  9731. "BSD-3-Clause"
  9732. ],
  9733. "authors": [
  9734. {
  9735. "name": "Arne Blankerts",
  9736. "email": "arne@blankerts.de",
  9737. "role": "Developer"
  9738. }
  9739. ],
  9740. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9741. "support": {
  9742. "issues": "https://github.com/theseer/tokenizer/issues",
  9743. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  9744. },
  9745. "funding": [
  9746. {
  9747. "url": "https://github.com/theseer",
  9748. "type": "github"
  9749. }
  9750. ],
  9751. "time": "2021-07-28T10:34:58+00:00"
  9752. }
  9753. ],
  9754. "aliases": [],
  9755. "minimum-stability": "dev",
  9756. "stability-flags": [],
  9757. "prefer-stable": true,
  9758. "prefer-lowest": false,
  9759. "platform": {
  9760. "php": "^7.3|^8.0",
  9761. "ext-openssl": "*"
  9762. },
  9763. "platform-dev": [],
  9764. "plugin-api-version": "2.3.0"
  9765. }