composer.lock 397 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097
  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": "8a9b4a3cda2a919fa33f41527b679dce",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/1926277fc71d253dfa820271ac5987bdb193ccf5",
  20. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.1"
  60. },
  61. "time": "2023-03-24T20:22:19+00:00"
  62. },
  63. {
  64. "name": "aws/aws-sdk-php",
  65. "version": "3.269.0",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "6d759ef9f24f0c7f271baf8014f41fc0cfdfbf78"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/6d759ef9f24f0c7f271baf8014f41fc0cfdfbf78",
  74. "reference": "6d759ef9f24f0c7f271baf8014f41fc0cfdfbf78",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "aws/aws-crt-php": "^1.0.4",
  79. "ext-json": "*",
  80. "ext-pcre": "*",
  81. "ext-simplexml": "*",
  82. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  83. "guzzlehttp/promises": "^1.4.0",
  84. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  85. "mtdowling/jmespath.php": "^2.6",
  86. "php": ">=5.5"
  87. },
  88. "require-dev": {
  89. "andrewsville/php-token-reflection": "^1.4",
  90. "aws/aws-php-sns-message-validator": "~1.0",
  91. "behat/behat": "~3.0",
  92. "composer/composer": "^1.10.22",
  93. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  94. "doctrine/cache": "~1.4",
  95. "ext-dom": "*",
  96. "ext-openssl": "*",
  97. "ext-pcntl": "*",
  98. "ext-sockets": "*",
  99. "nette/neon": "^2.3",
  100. "paragonie/random_compat": ">= 2",
  101. "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5",
  102. "psr/cache": "^1.0",
  103. "psr/http-message": "^1.0",
  104. "psr/simple-cache": "^1.0",
  105. "sebastian/comparator": "^1.2.3 || ^4.0",
  106. "yoast/phpunit-polyfills": "^1.0"
  107. },
  108. "suggest": {
  109. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  110. "doctrine/cache": "To use the DoctrineCacheAdapter",
  111. "ext-curl": "To send requests using cURL",
  112. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  113. "ext-sockets": "To use client-side monitoring"
  114. },
  115. "type": "library",
  116. "extra": {
  117. "branch-alias": {
  118. "dev-master": "3.0-dev"
  119. }
  120. },
  121. "autoload": {
  122. "files": [
  123. "src/functions.php"
  124. ],
  125. "psr-4": {
  126. "Aws\\": "src/"
  127. }
  128. },
  129. "notification-url": "https://packagist.org/downloads/",
  130. "license": [
  131. "Apache-2.0"
  132. ],
  133. "authors": [
  134. {
  135. "name": "Amazon Web Services",
  136. "homepage": "http://aws.amazon.com"
  137. }
  138. ],
  139. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  140. "homepage": "http://aws.amazon.com/sdkforphp",
  141. "keywords": [
  142. "amazon",
  143. "aws",
  144. "cloud",
  145. "dynamodb",
  146. "ec2",
  147. "glacier",
  148. "s3",
  149. "sdk"
  150. ],
  151. "support": {
  152. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  153. "issues": "https://github.com/aws/aws-sdk-php/issues",
  154. "source": "https://github.com/aws/aws-sdk-php/tree/3.269.0"
  155. },
  156. "time": "2023-04-26T18:21:04+00:00"
  157. },
  158. {
  159. "name": "barryvdh/laravel-dompdf",
  160. "version": "v2.0.1",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  164. "reference": "9843d2be423670fb434f4c978b3c0f4dd92c87a6"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/9843d2be423670fb434f4c978b3c0f4dd92c87a6",
  169. "reference": "9843d2be423670fb434f4c978b3c0f4dd92c87a6",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "dompdf/dompdf": "^2.0.1",
  174. "illuminate/support": "^6|^7|^8|^9|^10",
  175. "php": "^7.2 || ^8.0"
  176. },
  177. "require-dev": {
  178. "nunomaduro/larastan": "^1|^2",
  179. "orchestra/testbench": "^4|^5|^6|^7|^8",
  180. "phpro/grumphp": "^1",
  181. "squizlabs/php_codesniffer": "^3.5"
  182. },
  183. "type": "library",
  184. "extra": {
  185. "branch-alias": {
  186. "dev-master": "2.0-dev"
  187. },
  188. "laravel": {
  189. "providers": [
  190. "Barryvdh\\DomPDF\\ServiceProvider"
  191. ],
  192. "aliases": {
  193. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf",
  194. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf"
  195. }
  196. }
  197. },
  198. "autoload": {
  199. "psr-4": {
  200. "Barryvdh\\DomPDF\\": "src"
  201. }
  202. },
  203. "notification-url": "https://packagist.org/downloads/",
  204. "license": [
  205. "MIT"
  206. ],
  207. "authors": [
  208. {
  209. "name": "Barry vd. Heuvel",
  210. "email": "barryvdh@gmail.com"
  211. }
  212. ],
  213. "description": "A DOMPDF Wrapper for Laravel",
  214. "keywords": [
  215. "dompdf",
  216. "laravel",
  217. "pdf"
  218. ],
  219. "support": {
  220. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  221. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.0.1"
  222. },
  223. "funding": [
  224. {
  225. "url": "https://fruitcake.nl",
  226. "type": "custom"
  227. },
  228. {
  229. "url": "https://github.com/barryvdh",
  230. "type": "github"
  231. }
  232. ],
  233. "time": "2023-01-12T15:12:49+00:00"
  234. },
  235. {
  236. "name": "biscolab/laravel-recaptcha",
  237. "version": "v5.4.0",
  238. "source": {
  239. "type": "git",
  240. "url": "https://github.com/biscolab/laravel-recaptcha.git",
  241. "reference": "1bab726402d5376553a439b88a0faa07e84488fd"
  242. },
  243. "dist": {
  244. "type": "zip",
  245. "url": "https://api.github.com/repos/biscolab/laravel-recaptcha/zipball/1bab726402d5376553a439b88a0faa07e84488fd",
  246. "reference": "1bab726402d5376553a439b88a0faa07e84488fd",
  247. "shasum": ""
  248. },
  249. "require": {
  250. "illuminate/routing": "^7.0|^8.0|^9.0",
  251. "illuminate/support": "^7.0|^8.0|^9.0",
  252. "php": "^7.3|^8.0"
  253. },
  254. "require-dev": {
  255. "orchestra/testbench": "5.*|6.*|^7.0",
  256. "phpunit/phpunit": "^9.1"
  257. },
  258. "suggest": {
  259. "biscolab/laravel-authlog": "It allows to handle logged-in users and force log-out if needed"
  260. },
  261. "type": "library",
  262. "extra": {
  263. "laravel": {
  264. "providers": [
  265. "Biscolab\\ReCaptcha\\ReCaptchaServiceProvider"
  266. ],
  267. "aliases": {
  268. "ReCaptcha": "Biscolab\\ReCaptcha\\Facades\\ReCaptcha"
  269. }
  270. }
  271. },
  272. "autoload": {
  273. "files": [
  274. "src/helpers.php"
  275. ],
  276. "psr-4": {
  277. "Biscolab\\ReCaptcha\\": "src/"
  278. }
  279. },
  280. "notification-url": "https://packagist.org/downloads/",
  281. "license": [
  282. "MIT"
  283. ],
  284. "authors": [
  285. {
  286. "name": "Roberto Belotti",
  287. "email": "roby.belotti@gmail.com",
  288. "homepage": "https://biscolab.com",
  289. "role": "Developer"
  290. }
  291. ],
  292. "description": "Simple and painless Google reCAPTCHA package for Laravel framework",
  293. "homepage": "https://biscolab.com/laravel-recaptcha",
  294. "keywords": [
  295. "captcha",
  296. "laravel",
  297. "recaptcha",
  298. "validation"
  299. ],
  300. "support": {
  301. "issues": "https://github.com/biscolab/laravel-recaptcha/issues",
  302. "source": "https://github.com/biscolab/laravel-recaptcha/tree/v5.4.0"
  303. },
  304. "time": "2022-05-07T12:52:46+00:00"
  305. },
  306. {
  307. "name": "brick/math",
  308. "version": "0.11.0",
  309. "source": {
  310. "type": "git",
  311. "url": "https://github.com/brick/math.git",
  312. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  313. },
  314. "dist": {
  315. "type": "zip",
  316. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  317. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  318. "shasum": ""
  319. },
  320. "require": {
  321. "php": "^8.0"
  322. },
  323. "require-dev": {
  324. "php-coveralls/php-coveralls": "^2.2",
  325. "phpunit/phpunit": "^9.0",
  326. "vimeo/psalm": "5.0.0"
  327. },
  328. "type": "library",
  329. "autoload": {
  330. "psr-4": {
  331. "Brick\\Math\\": "src/"
  332. }
  333. },
  334. "notification-url": "https://packagist.org/downloads/",
  335. "license": [
  336. "MIT"
  337. ],
  338. "description": "Arbitrary-precision arithmetic library",
  339. "keywords": [
  340. "Arbitrary-precision",
  341. "BigInteger",
  342. "BigRational",
  343. "arithmetic",
  344. "bigdecimal",
  345. "bignum",
  346. "brick",
  347. "math"
  348. ],
  349. "support": {
  350. "issues": "https://github.com/brick/math/issues",
  351. "source": "https://github.com/brick/math/tree/0.11.0"
  352. },
  353. "funding": [
  354. {
  355. "url": "https://github.com/BenMorel",
  356. "type": "github"
  357. }
  358. ],
  359. "time": "2023-01-15T23:15:59+00:00"
  360. },
  361. {
  362. "name": "dflydev/dot-access-data",
  363. "version": "v3.0.2",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  367. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  372. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  373. "shasum": ""
  374. },
  375. "require": {
  376. "php": "^7.1 || ^8.0"
  377. },
  378. "require-dev": {
  379. "phpstan/phpstan": "^0.12.42",
  380. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  381. "scrutinizer/ocular": "1.6.0",
  382. "squizlabs/php_codesniffer": "^3.5",
  383. "vimeo/psalm": "^4.0.0"
  384. },
  385. "type": "library",
  386. "extra": {
  387. "branch-alias": {
  388. "dev-main": "3.x-dev"
  389. }
  390. },
  391. "autoload": {
  392. "psr-4": {
  393. "Dflydev\\DotAccessData\\": "src/"
  394. }
  395. },
  396. "notification-url": "https://packagist.org/downloads/",
  397. "license": [
  398. "MIT"
  399. ],
  400. "authors": [
  401. {
  402. "name": "Dragonfly Development Inc.",
  403. "email": "info@dflydev.com",
  404. "homepage": "http://dflydev.com"
  405. },
  406. {
  407. "name": "Beau Simensen",
  408. "email": "beau@dflydev.com",
  409. "homepage": "http://beausimensen.com"
  410. },
  411. {
  412. "name": "Carlos Frutos",
  413. "email": "carlos@kiwing.it",
  414. "homepage": "https://github.com/cfrutos"
  415. },
  416. {
  417. "name": "Colin O'Dell",
  418. "email": "colinodell@gmail.com",
  419. "homepage": "https://www.colinodell.com"
  420. }
  421. ],
  422. "description": "Given a deep data structure, access data by dot notation.",
  423. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  424. "keywords": [
  425. "access",
  426. "data",
  427. "dot",
  428. "notation"
  429. ],
  430. "support": {
  431. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  432. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  433. },
  434. "time": "2022-10-27T11:44:00+00:00"
  435. },
  436. {
  437. "name": "doctrine/cache",
  438. "version": "2.2.0",
  439. "source": {
  440. "type": "git",
  441. "url": "https://github.com/doctrine/cache.git",
  442. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  443. },
  444. "dist": {
  445. "type": "zip",
  446. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  447. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  448. "shasum": ""
  449. },
  450. "require": {
  451. "php": "~7.1 || ^8.0"
  452. },
  453. "conflict": {
  454. "doctrine/common": ">2.2,<2.4"
  455. },
  456. "require-dev": {
  457. "cache/integration-tests": "dev-master",
  458. "doctrine/coding-standard": "^9",
  459. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  460. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  461. "symfony/cache": "^4.4 || ^5.4 || ^6",
  462. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  463. },
  464. "type": "library",
  465. "autoload": {
  466. "psr-4": {
  467. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  468. }
  469. },
  470. "notification-url": "https://packagist.org/downloads/",
  471. "license": [
  472. "MIT"
  473. ],
  474. "authors": [
  475. {
  476. "name": "Guilherme Blanco",
  477. "email": "guilhermeblanco@gmail.com"
  478. },
  479. {
  480. "name": "Roman Borschel",
  481. "email": "roman@code-factory.org"
  482. },
  483. {
  484. "name": "Benjamin Eberlei",
  485. "email": "kontakt@beberlei.de"
  486. },
  487. {
  488. "name": "Jonathan Wage",
  489. "email": "jonwage@gmail.com"
  490. },
  491. {
  492. "name": "Johannes Schmitt",
  493. "email": "schmittjoh@gmail.com"
  494. }
  495. ],
  496. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  497. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  498. "keywords": [
  499. "abstraction",
  500. "apcu",
  501. "cache",
  502. "caching",
  503. "couchdb",
  504. "memcached",
  505. "php",
  506. "redis",
  507. "xcache"
  508. ],
  509. "support": {
  510. "issues": "https://github.com/doctrine/cache/issues",
  511. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  512. },
  513. "funding": [
  514. {
  515. "url": "https://www.doctrine-project.org/sponsorship.html",
  516. "type": "custom"
  517. },
  518. {
  519. "url": "https://www.patreon.com/phpdoctrine",
  520. "type": "patreon"
  521. },
  522. {
  523. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  524. "type": "tidelift"
  525. }
  526. ],
  527. "time": "2022-05-20T20:07:39+00:00"
  528. },
  529. {
  530. "name": "doctrine/dbal",
  531. "version": "3.6.2",
  532. "source": {
  533. "type": "git",
  534. "url": "https://github.com/doctrine/dbal.git",
  535. "reference": "b4bd1cfbd2b916951696d82e57d054394d84864c"
  536. },
  537. "dist": {
  538. "type": "zip",
  539. "url": "https://api.github.com/repos/doctrine/dbal/zipball/b4bd1cfbd2b916951696d82e57d054394d84864c",
  540. "reference": "b4bd1cfbd2b916951696d82e57d054394d84864c",
  541. "shasum": ""
  542. },
  543. "require": {
  544. "composer-runtime-api": "^2",
  545. "doctrine/cache": "^1.11|^2.0",
  546. "doctrine/deprecations": "^0.5.3|^1",
  547. "doctrine/event-manager": "^1|^2",
  548. "php": "^7.4 || ^8.0",
  549. "psr/cache": "^1|^2|^3",
  550. "psr/log": "^1|^2|^3"
  551. },
  552. "require-dev": {
  553. "doctrine/coding-standard": "11.1.0",
  554. "fig/log-test": "^1",
  555. "jetbrains/phpstorm-stubs": "2022.3",
  556. "phpstan/phpstan": "1.10.9",
  557. "phpstan/phpstan-strict-rules": "^1.5",
  558. "phpunit/phpunit": "9.6.6",
  559. "psalm/plugin-phpunit": "0.18.4",
  560. "squizlabs/php_codesniffer": "3.7.2",
  561. "symfony/cache": "^5.4|^6.0",
  562. "symfony/console": "^4.4|^5.4|^6.0",
  563. "vimeo/psalm": "4.30.0"
  564. },
  565. "suggest": {
  566. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  567. },
  568. "bin": [
  569. "bin/doctrine-dbal"
  570. ],
  571. "type": "library",
  572. "autoload": {
  573. "psr-4": {
  574. "Doctrine\\DBAL\\": "src"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "MIT"
  580. ],
  581. "authors": [
  582. {
  583. "name": "Guilherme Blanco",
  584. "email": "guilhermeblanco@gmail.com"
  585. },
  586. {
  587. "name": "Roman Borschel",
  588. "email": "roman@code-factory.org"
  589. },
  590. {
  591. "name": "Benjamin Eberlei",
  592. "email": "kontakt@beberlei.de"
  593. },
  594. {
  595. "name": "Jonathan Wage",
  596. "email": "jonwage@gmail.com"
  597. }
  598. ],
  599. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  600. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  601. "keywords": [
  602. "abstraction",
  603. "database",
  604. "db2",
  605. "dbal",
  606. "mariadb",
  607. "mssql",
  608. "mysql",
  609. "oci8",
  610. "oracle",
  611. "pdo",
  612. "pgsql",
  613. "postgresql",
  614. "queryobject",
  615. "sasql",
  616. "sql",
  617. "sqlite",
  618. "sqlserver",
  619. "sqlsrv"
  620. ],
  621. "support": {
  622. "issues": "https://github.com/doctrine/dbal/issues",
  623. "source": "https://github.com/doctrine/dbal/tree/3.6.2"
  624. },
  625. "funding": [
  626. {
  627. "url": "https://www.doctrine-project.org/sponsorship.html",
  628. "type": "custom"
  629. },
  630. {
  631. "url": "https://www.patreon.com/phpdoctrine",
  632. "type": "patreon"
  633. },
  634. {
  635. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  636. "type": "tidelift"
  637. }
  638. ],
  639. "time": "2023-04-14T07:25:38+00:00"
  640. },
  641. {
  642. "name": "doctrine/deprecations",
  643. "version": "v1.0.0",
  644. "source": {
  645. "type": "git",
  646. "url": "https://github.com/doctrine/deprecations.git",
  647. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  648. },
  649. "dist": {
  650. "type": "zip",
  651. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  652. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  653. "shasum": ""
  654. },
  655. "require": {
  656. "php": "^7.1|^8.0"
  657. },
  658. "require-dev": {
  659. "doctrine/coding-standard": "^9",
  660. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  661. "psr/log": "^1|^2|^3"
  662. },
  663. "suggest": {
  664. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  665. },
  666. "type": "library",
  667. "autoload": {
  668. "psr-4": {
  669. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  677. "homepage": "https://www.doctrine-project.org/",
  678. "support": {
  679. "issues": "https://github.com/doctrine/deprecations/issues",
  680. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  681. },
  682. "time": "2022-05-02T15:47:09+00:00"
  683. },
  684. {
  685. "name": "doctrine/event-manager",
  686. "version": "2.0.0",
  687. "source": {
  688. "type": "git",
  689. "url": "https://github.com/doctrine/event-manager.git",
  690. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  691. },
  692. "dist": {
  693. "type": "zip",
  694. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  695. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  696. "shasum": ""
  697. },
  698. "require": {
  699. "php": "^8.1"
  700. },
  701. "conflict": {
  702. "doctrine/common": "<2.9"
  703. },
  704. "require-dev": {
  705. "doctrine/coding-standard": "^10",
  706. "phpstan/phpstan": "^1.8.8",
  707. "phpunit/phpunit": "^9.5",
  708. "vimeo/psalm": "^4.28"
  709. },
  710. "type": "library",
  711. "autoload": {
  712. "psr-4": {
  713. "Doctrine\\Common\\": "src"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "MIT"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Guilherme Blanco",
  723. "email": "guilhermeblanco@gmail.com"
  724. },
  725. {
  726. "name": "Roman Borschel",
  727. "email": "roman@code-factory.org"
  728. },
  729. {
  730. "name": "Benjamin Eberlei",
  731. "email": "kontakt@beberlei.de"
  732. },
  733. {
  734. "name": "Jonathan Wage",
  735. "email": "jonwage@gmail.com"
  736. },
  737. {
  738. "name": "Johannes Schmitt",
  739. "email": "schmittjoh@gmail.com"
  740. },
  741. {
  742. "name": "Marco Pivetta",
  743. "email": "ocramius@gmail.com"
  744. }
  745. ],
  746. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  747. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  748. "keywords": [
  749. "event",
  750. "event dispatcher",
  751. "event manager",
  752. "event system",
  753. "events"
  754. ],
  755. "support": {
  756. "issues": "https://github.com/doctrine/event-manager/issues",
  757. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  758. },
  759. "funding": [
  760. {
  761. "url": "https://www.doctrine-project.org/sponsorship.html",
  762. "type": "custom"
  763. },
  764. {
  765. "url": "https://www.patreon.com/phpdoctrine",
  766. "type": "patreon"
  767. },
  768. {
  769. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  770. "type": "tidelift"
  771. }
  772. ],
  773. "time": "2022-10-12T20:59:15+00:00"
  774. },
  775. {
  776. "name": "doctrine/inflector",
  777. "version": "2.0.6",
  778. "source": {
  779. "type": "git",
  780. "url": "https://github.com/doctrine/inflector.git",
  781. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  782. },
  783. "dist": {
  784. "type": "zip",
  785. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  786. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  787. "shasum": ""
  788. },
  789. "require": {
  790. "php": "^7.2 || ^8.0"
  791. },
  792. "require-dev": {
  793. "doctrine/coding-standard": "^10",
  794. "phpstan/phpstan": "^1.8",
  795. "phpstan/phpstan-phpunit": "^1.1",
  796. "phpstan/phpstan-strict-rules": "^1.3",
  797. "phpunit/phpunit": "^8.5 || ^9.5",
  798. "vimeo/psalm": "^4.25"
  799. },
  800. "type": "library",
  801. "autoload": {
  802. "psr-4": {
  803. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  804. }
  805. },
  806. "notification-url": "https://packagist.org/downloads/",
  807. "license": [
  808. "MIT"
  809. ],
  810. "authors": [
  811. {
  812. "name": "Guilherme Blanco",
  813. "email": "guilhermeblanco@gmail.com"
  814. },
  815. {
  816. "name": "Roman Borschel",
  817. "email": "roman@code-factory.org"
  818. },
  819. {
  820. "name": "Benjamin Eberlei",
  821. "email": "kontakt@beberlei.de"
  822. },
  823. {
  824. "name": "Jonathan Wage",
  825. "email": "jonwage@gmail.com"
  826. },
  827. {
  828. "name": "Johannes Schmitt",
  829. "email": "schmittjoh@gmail.com"
  830. }
  831. ],
  832. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  833. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  834. "keywords": [
  835. "inflection",
  836. "inflector",
  837. "lowercase",
  838. "manipulation",
  839. "php",
  840. "plural",
  841. "singular",
  842. "strings",
  843. "uppercase",
  844. "words"
  845. ],
  846. "support": {
  847. "issues": "https://github.com/doctrine/inflector/issues",
  848. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  849. },
  850. "funding": [
  851. {
  852. "url": "https://www.doctrine-project.org/sponsorship.html",
  853. "type": "custom"
  854. },
  855. {
  856. "url": "https://www.patreon.com/phpdoctrine",
  857. "type": "patreon"
  858. },
  859. {
  860. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  861. "type": "tidelift"
  862. }
  863. ],
  864. "time": "2022-10-20T09:10:12+00:00"
  865. },
  866. {
  867. "name": "doctrine/lexer",
  868. "version": "3.0.0",
  869. "source": {
  870. "type": "git",
  871. "url": "https://github.com/doctrine/lexer.git",
  872. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  873. },
  874. "dist": {
  875. "type": "zip",
  876. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  877. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  878. "shasum": ""
  879. },
  880. "require": {
  881. "php": "^8.1"
  882. },
  883. "require-dev": {
  884. "doctrine/coding-standard": "^10",
  885. "phpstan/phpstan": "^1.9",
  886. "phpunit/phpunit": "^9.5",
  887. "psalm/plugin-phpunit": "^0.18.3",
  888. "vimeo/psalm": "^5.0"
  889. },
  890. "type": "library",
  891. "autoload": {
  892. "psr-4": {
  893. "Doctrine\\Common\\Lexer\\": "src"
  894. }
  895. },
  896. "notification-url": "https://packagist.org/downloads/",
  897. "license": [
  898. "MIT"
  899. ],
  900. "authors": [
  901. {
  902. "name": "Guilherme Blanco",
  903. "email": "guilhermeblanco@gmail.com"
  904. },
  905. {
  906. "name": "Roman Borschel",
  907. "email": "roman@code-factory.org"
  908. },
  909. {
  910. "name": "Johannes Schmitt",
  911. "email": "schmittjoh@gmail.com"
  912. }
  913. ],
  914. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  915. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  916. "keywords": [
  917. "annotations",
  918. "docblock",
  919. "lexer",
  920. "parser",
  921. "php"
  922. ],
  923. "support": {
  924. "issues": "https://github.com/doctrine/lexer/issues",
  925. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  926. },
  927. "funding": [
  928. {
  929. "url": "https://www.doctrine-project.org/sponsorship.html",
  930. "type": "custom"
  931. },
  932. {
  933. "url": "https://www.patreon.com/phpdoctrine",
  934. "type": "patreon"
  935. },
  936. {
  937. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  938. "type": "tidelift"
  939. }
  940. ],
  941. "time": "2022-12-15T16:57:16+00:00"
  942. },
  943. {
  944. "name": "dompdf/dompdf",
  945. "version": "v2.0.3",
  946. "source": {
  947. "type": "git",
  948. "url": "https://github.com/dompdf/dompdf.git",
  949. "reference": "e8d2d5e37e8b0b30f0732a011295ab80680d7e85"
  950. },
  951. "dist": {
  952. "type": "zip",
  953. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/e8d2d5e37e8b0b30f0732a011295ab80680d7e85",
  954. "reference": "e8d2d5e37e8b0b30f0732a011295ab80680d7e85",
  955. "shasum": ""
  956. },
  957. "require": {
  958. "ext-dom": "*",
  959. "ext-mbstring": "*",
  960. "masterminds/html5": "^2.0",
  961. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  962. "phenx/php-svg-lib": ">=0.3.3 <1.0.0",
  963. "php": "^7.1 || ^8.0"
  964. },
  965. "require-dev": {
  966. "ext-json": "*",
  967. "ext-zip": "*",
  968. "mockery/mockery": "^1.3",
  969. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  970. "squizlabs/php_codesniffer": "^3.5"
  971. },
  972. "suggest": {
  973. "ext-gd": "Needed to process images",
  974. "ext-gmagick": "Improves image processing performance",
  975. "ext-imagick": "Improves image processing performance",
  976. "ext-zlib": "Needed for pdf stream compression"
  977. },
  978. "type": "library",
  979. "autoload": {
  980. "psr-4": {
  981. "Dompdf\\": "src/"
  982. },
  983. "classmap": [
  984. "lib/"
  985. ]
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "LGPL-2.1"
  990. ],
  991. "authors": [
  992. {
  993. "name": "The Dompdf Community",
  994. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  995. }
  996. ],
  997. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  998. "homepage": "https://github.com/dompdf/dompdf",
  999. "support": {
  1000. "issues": "https://github.com/dompdf/dompdf/issues",
  1001. "source": "https://github.com/dompdf/dompdf/tree/v2.0.3"
  1002. },
  1003. "time": "2023-02-07T12:51:48+00:00"
  1004. },
  1005. {
  1006. "name": "dragonmantank/cron-expression",
  1007. "version": "v3.3.2",
  1008. "source": {
  1009. "type": "git",
  1010. "url": "https://github.com/dragonmantank/cron-expression.git",
  1011. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  1012. },
  1013. "dist": {
  1014. "type": "zip",
  1015. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1016. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1017. "shasum": ""
  1018. },
  1019. "require": {
  1020. "php": "^7.2|^8.0",
  1021. "webmozart/assert": "^1.0"
  1022. },
  1023. "replace": {
  1024. "mtdowling/cron-expression": "^1.0"
  1025. },
  1026. "require-dev": {
  1027. "phpstan/extension-installer": "^1.0",
  1028. "phpstan/phpstan": "^1.0",
  1029. "phpstan/phpstan-webmozart-assert": "^1.0",
  1030. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1031. },
  1032. "type": "library",
  1033. "autoload": {
  1034. "psr-4": {
  1035. "Cron\\": "src/Cron/"
  1036. }
  1037. },
  1038. "notification-url": "https://packagist.org/downloads/",
  1039. "license": [
  1040. "MIT"
  1041. ],
  1042. "authors": [
  1043. {
  1044. "name": "Chris Tankersley",
  1045. "email": "chris@ctankersley.com",
  1046. "homepage": "https://github.com/dragonmantank"
  1047. }
  1048. ],
  1049. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1050. "keywords": [
  1051. "cron",
  1052. "schedule"
  1053. ],
  1054. "support": {
  1055. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1056. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  1057. },
  1058. "funding": [
  1059. {
  1060. "url": "https://github.com/dragonmantank",
  1061. "type": "github"
  1062. }
  1063. ],
  1064. "time": "2022-09-10T18:51:20+00:00"
  1065. },
  1066. {
  1067. "name": "egulias/email-validator",
  1068. "version": "4.0.1",
  1069. "source": {
  1070. "type": "git",
  1071. "url": "https://github.com/egulias/EmailValidator.git",
  1072. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1073. },
  1074. "dist": {
  1075. "type": "zip",
  1076. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1077. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1078. "shasum": ""
  1079. },
  1080. "require": {
  1081. "doctrine/lexer": "^2.0 || ^3.0",
  1082. "php": ">=8.1",
  1083. "symfony/polyfill-intl-idn": "^1.26"
  1084. },
  1085. "require-dev": {
  1086. "phpunit/phpunit": "^9.5.27",
  1087. "vimeo/psalm": "^4.30"
  1088. },
  1089. "suggest": {
  1090. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1091. },
  1092. "type": "library",
  1093. "extra": {
  1094. "branch-alias": {
  1095. "dev-master": "4.0.x-dev"
  1096. }
  1097. },
  1098. "autoload": {
  1099. "psr-4": {
  1100. "Egulias\\EmailValidator\\": "src"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Eduardo Gulias Davis"
  1110. }
  1111. ],
  1112. "description": "A library for validating emails against several RFCs",
  1113. "homepage": "https://github.com/egulias/EmailValidator",
  1114. "keywords": [
  1115. "email",
  1116. "emailvalidation",
  1117. "emailvalidator",
  1118. "validation",
  1119. "validator"
  1120. ],
  1121. "support": {
  1122. "issues": "https://github.com/egulias/EmailValidator/issues",
  1123. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1124. },
  1125. "funding": [
  1126. {
  1127. "url": "https://github.com/egulias",
  1128. "type": "github"
  1129. }
  1130. ],
  1131. "time": "2023-01-14T14:17:03+00:00"
  1132. },
  1133. {
  1134. "name": "facade/ignition-contracts",
  1135. "version": "1.0.2",
  1136. "source": {
  1137. "type": "git",
  1138. "url": "https://github.com/facade/ignition-contracts.git",
  1139. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1140. },
  1141. "dist": {
  1142. "type": "zip",
  1143. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1144. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1145. "shasum": ""
  1146. },
  1147. "require": {
  1148. "php": "^7.3|^8.0"
  1149. },
  1150. "require-dev": {
  1151. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1152. "phpunit/phpunit": "^9.3.11",
  1153. "vimeo/psalm": "^3.17.1"
  1154. },
  1155. "type": "library",
  1156. "autoload": {
  1157. "psr-4": {
  1158. "Facade\\IgnitionContracts\\": "src"
  1159. }
  1160. },
  1161. "notification-url": "https://packagist.org/downloads/",
  1162. "license": [
  1163. "MIT"
  1164. ],
  1165. "authors": [
  1166. {
  1167. "name": "Freek Van der Herten",
  1168. "email": "freek@spatie.be",
  1169. "homepage": "https://flareapp.io",
  1170. "role": "Developer"
  1171. }
  1172. ],
  1173. "description": "Solution contracts for Ignition",
  1174. "homepage": "https://github.com/facade/ignition-contracts",
  1175. "keywords": [
  1176. "contracts",
  1177. "flare",
  1178. "ignition"
  1179. ],
  1180. "support": {
  1181. "issues": "https://github.com/facade/ignition-contracts/issues",
  1182. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1183. },
  1184. "time": "2020-10-16T08:27:54+00:00"
  1185. },
  1186. {
  1187. "name": "fruitcake/php-cors",
  1188. "version": "v1.2.0",
  1189. "source": {
  1190. "type": "git",
  1191. "url": "https://github.com/fruitcake/php-cors.git",
  1192. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1193. },
  1194. "dist": {
  1195. "type": "zip",
  1196. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1197. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1198. "shasum": ""
  1199. },
  1200. "require": {
  1201. "php": "^7.4|^8.0",
  1202. "symfony/http-foundation": "^4.4|^5.4|^6"
  1203. },
  1204. "require-dev": {
  1205. "phpstan/phpstan": "^1.4",
  1206. "phpunit/phpunit": "^9",
  1207. "squizlabs/php_codesniffer": "^3.5"
  1208. },
  1209. "type": "library",
  1210. "extra": {
  1211. "branch-alias": {
  1212. "dev-main": "1.1-dev"
  1213. }
  1214. },
  1215. "autoload": {
  1216. "psr-4": {
  1217. "Fruitcake\\Cors\\": "src/"
  1218. }
  1219. },
  1220. "notification-url": "https://packagist.org/downloads/",
  1221. "license": [
  1222. "MIT"
  1223. ],
  1224. "authors": [
  1225. {
  1226. "name": "Fruitcake",
  1227. "homepage": "https://fruitcake.nl"
  1228. },
  1229. {
  1230. "name": "Barryvdh",
  1231. "email": "barryvdh@gmail.com"
  1232. }
  1233. ],
  1234. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1235. "homepage": "https://github.com/fruitcake/php-cors",
  1236. "keywords": [
  1237. "cors",
  1238. "laravel",
  1239. "symfony"
  1240. ],
  1241. "support": {
  1242. "issues": "https://github.com/fruitcake/php-cors/issues",
  1243. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1244. },
  1245. "funding": [
  1246. {
  1247. "url": "https://fruitcake.nl",
  1248. "type": "custom"
  1249. },
  1250. {
  1251. "url": "https://github.com/barryvdh",
  1252. "type": "github"
  1253. }
  1254. ],
  1255. "time": "2022-02-20T15:07:15+00:00"
  1256. },
  1257. {
  1258. "name": "graham-campbell/result-type",
  1259. "version": "v1.1.1",
  1260. "source": {
  1261. "type": "git",
  1262. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1263. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  1264. },
  1265. "dist": {
  1266. "type": "zip",
  1267. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1268. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1269. "shasum": ""
  1270. },
  1271. "require": {
  1272. "php": "^7.2.5 || ^8.0",
  1273. "phpoption/phpoption": "^1.9.1"
  1274. },
  1275. "require-dev": {
  1276. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1277. },
  1278. "type": "library",
  1279. "autoload": {
  1280. "psr-4": {
  1281. "GrahamCampbell\\ResultType\\": "src/"
  1282. }
  1283. },
  1284. "notification-url": "https://packagist.org/downloads/",
  1285. "license": [
  1286. "MIT"
  1287. ],
  1288. "authors": [
  1289. {
  1290. "name": "Graham Campbell",
  1291. "email": "hello@gjcampbell.co.uk",
  1292. "homepage": "https://github.com/GrahamCampbell"
  1293. }
  1294. ],
  1295. "description": "An Implementation Of The Result Type",
  1296. "keywords": [
  1297. "Graham Campbell",
  1298. "GrahamCampbell",
  1299. "Result Type",
  1300. "Result-Type",
  1301. "result"
  1302. ],
  1303. "support": {
  1304. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1305. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  1306. },
  1307. "funding": [
  1308. {
  1309. "url": "https://github.com/GrahamCampbell",
  1310. "type": "github"
  1311. },
  1312. {
  1313. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1314. "type": "tidelift"
  1315. }
  1316. ],
  1317. "time": "2023-02-25T20:23:15+00:00"
  1318. },
  1319. {
  1320. "name": "guzzlehttp/guzzle",
  1321. "version": "7.5.1",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/guzzle/guzzle.git",
  1325. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  1330. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  1331. "shasum": ""
  1332. },
  1333. "require": {
  1334. "ext-json": "*",
  1335. "guzzlehttp/promises": "^1.5",
  1336. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  1337. "php": "^7.2.5 || ^8.0",
  1338. "psr/http-client": "^1.0",
  1339. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1340. },
  1341. "provide": {
  1342. "psr/http-client-implementation": "1.0"
  1343. },
  1344. "require-dev": {
  1345. "bamarni/composer-bin-plugin": "^1.8.1",
  1346. "ext-curl": "*",
  1347. "php-http/client-integration-tests": "^3.0",
  1348. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1349. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1350. },
  1351. "suggest": {
  1352. "ext-curl": "Required for CURL handler support",
  1353. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1354. "psr/log": "Required for using the Log middleware"
  1355. },
  1356. "type": "library",
  1357. "extra": {
  1358. "bamarni-bin": {
  1359. "bin-links": true,
  1360. "forward-command": false
  1361. },
  1362. "branch-alias": {
  1363. "dev-master": "7.5-dev"
  1364. }
  1365. },
  1366. "autoload": {
  1367. "files": [
  1368. "src/functions_include.php"
  1369. ],
  1370. "psr-4": {
  1371. "GuzzleHttp\\": "src/"
  1372. }
  1373. },
  1374. "notification-url": "https://packagist.org/downloads/",
  1375. "license": [
  1376. "MIT"
  1377. ],
  1378. "authors": [
  1379. {
  1380. "name": "Graham Campbell",
  1381. "email": "hello@gjcampbell.co.uk",
  1382. "homepage": "https://github.com/GrahamCampbell"
  1383. },
  1384. {
  1385. "name": "Michael Dowling",
  1386. "email": "mtdowling@gmail.com",
  1387. "homepage": "https://github.com/mtdowling"
  1388. },
  1389. {
  1390. "name": "Jeremy Lindblom",
  1391. "email": "jeremeamia@gmail.com",
  1392. "homepage": "https://github.com/jeremeamia"
  1393. },
  1394. {
  1395. "name": "George Mponos",
  1396. "email": "gmponos@gmail.com",
  1397. "homepage": "https://github.com/gmponos"
  1398. },
  1399. {
  1400. "name": "Tobias Nyholm",
  1401. "email": "tobias.nyholm@gmail.com",
  1402. "homepage": "https://github.com/Nyholm"
  1403. },
  1404. {
  1405. "name": "Márk Sági-Kazár",
  1406. "email": "mark.sagikazar@gmail.com",
  1407. "homepage": "https://github.com/sagikazarmark"
  1408. },
  1409. {
  1410. "name": "Tobias Schultze",
  1411. "email": "webmaster@tubo-world.de",
  1412. "homepage": "https://github.com/Tobion"
  1413. }
  1414. ],
  1415. "description": "Guzzle is a PHP HTTP client library",
  1416. "keywords": [
  1417. "client",
  1418. "curl",
  1419. "framework",
  1420. "http",
  1421. "http client",
  1422. "psr-18",
  1423. "psr-7",
  1424. "rest",
  1425. "web service"
  1426. ],
  1427. "support": {
  1428. "issues": "https://github.com/guzzle/guzzle/issues",
  1429. "source": "https://github.com/guzzle/guzzle/tree/7.5.1"
  1430. },
  1431. "funding": [
  1432. {
  1433. "url": "https://github.com/GrahamCampbell",
  1434. "type": "github"
  1435. },
  1436. {
  1437. "url": "https://github.com/Nyholm",
  1438. "type": "github"
  1439. },
  1440. {
  1441. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1442. "type": "tidelift"
  1443. }
  1444. ],
  1445. "time": "2023-04-17T16:30:08+00:00"
  1446. },
  1447. {
  1448. "name": "guzzlehttp/promises",
  1449. "version": "1.5.2",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/guzzle/promises.git",
  1453. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  1458. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "php": ">=5.5"
  1463. },
  1464. "require-dev": {
  1465. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1466. },
  1467. "type": "library",
  1468. "extra": {
  1469. "branch-alias": {
  1470. "dev-master": "1.5-dev"
  1471. }
  1472. },
  1473. "autoload": {
  1474. "files": [
  1475. "src/functions_include.php"
  1476. ],
  1477. "psr-4": {
  1478. "GuzzleHttp\\Promise\\": "src/"
  1479. }
  1480. },
  1481. "notification-url": "https://packagist.org/downloads/",
  1482. "license": [
  1483. "MIT"
  1484. ],
  1485. "authors": [
  1486. {
  1487. "name": "Graham Campbell",
  1488. "email": "hello@gjcampbell.co.uk",
  1489. "homepage": "https://github.com/GrahamCampbell"
  1490. },
  1491. {
  1492. "name": "Michael Dowling",
  1493. "email": "mtdowling@gmail.com",
  1494. "homepage": "https://github.com/mtdowling"
  1495. },
  1496. {
  1497. "name": "Tobias Nyholm",
  1498. "email": "tobias.nyholm@gmail.com",
  1499. "homepage": "https://github.com/Nyholm"
  1500. },
  1501. {
  1502. "name": "Tobias Schultze",
  1503. "email": "webmaster@tubo-world.de",
  1504. "homepage": "https://github.com/Tobion"
  1505. }
  1506. ],
  1507. "description": "Guzzle promises library",
  1508. "keywords": [
  1509. "promise"
  1510. ],
  1511. "support": {
  1512. "issues": "https://github.com/guzzle/promises/issues",
  1513. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1514. },
  1515. "funding": [
  1516. {
  1517. "url": "https://github.com/GrahamCampbell",
  1518. "type": "github"
  1519. },
  1520. {
  1521. "url": "https://github.com/Nyholm",
  1522. "type": "github"
  1523. },
  1524. {
  1525. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1526. "type": "tidelift"
  1527. }
  1528. ],
  1529. "time": "2022-08-28T14:55:35+00:00"
  1530. },
  1531. {
  1532. "name": "guzzlehttp/psr7",
  1533. "version": "2.5.0",
  1534. "source": {
  1535. "type": "git",
  1536. "url": "https://github.com/guzzle/psr7.git",
  1537. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  1538. },
  1539. "dist": {
  1540. "type": "zip",
  1541. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  1542. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  1543. "shasum": ""
  1544. },
  1545. "require": {
  1546. "php": "^7.2.5 || ^8.0",
  1547. "psr/http-factory": "^1.0",
  1548. "psr/http-message": "^1.1 || ^2.0",
  1549. "ralouphie/getallheaders": "^3.0"
  1550. },
  1551. "provide": {
  1552. "psr/http-factory-implementation": "1.0",
  1553. "psr/http-message-implementation": "1.0"
  1554. },
  1555. "require-dev": {
  1556. "bamarni/composer-bin-plugin": "^1.8.1",
  1557. "http-interop/http-factory-tests": "^0.9",
  1558. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1559. },
  1560. "suggest": {
  1561. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1562. },
  1563. "type": "library",
  1564. "extra": {
  1565. "bamarni-bin": {
  1566. "bin-links": true,
  1567. "forward-command": false
  1568. }
  1569. },
  1570. "autoload": {
  1571. "psr-4": {
  1572. "GuzzleHttp\\Psr7\\": "src/"
  1573. }
  1574. },
  1575. "notification-url": "https://packagist.org/downloads/",
  1576. "license": [
  1577. "MIT"
  1578. ],
  1579. "authors": [
  1580. {
  1581. "name": "Graham Campbell",
  1582. "email": "hello@gjcampbell.co.uk",
  1583. "homepage": "https://github.com/GrahamCampbell"
  1584. },
  1585. {
  1586. "name": "Michael Dowling",
  1587. "email": "mtdowling@gmail.com",
  1588. "homepage": "https://github.com/mtdowling"
  1589. },
  1590. {
  1591. "name": "George Mponos",
  1592. "email": "gmponos@gmail.com",
  1593. "homepage": "https://github.com/gmponos"
  1594. },
  1595. {
  1596. "name": "Tobias Nyholm",
  1597. "email": "tobias.nyholm@gmail.com",
  1598. "homepage": "https://github.com/Nyholm"
  1599. },
  1600. {
  1601. "name": "Márk Sági-Kazár",
  1602. "email": "mark.sagikazar@gmail.com",
  1603. "homepage": "https://github.com/sagikazarmark"
  1604. },
  1605. {
  1606. "name": "Tobias Schultze",
  1607. "email": "webmaster@tubo-world.de",
  1608. "homepage": "https://github.com/Tobion"
  1609. },
  1610. {
  1611. "name": "Márk Sági-Kazár",
  1612. "email": "mark.sagikazar@gmail.com",
  1613. "homepage": "https://sagikazarmark.hu"
  1614. }
  1615. ],
  1616. "description": "PSR-7 message implementation that also provides common utility methods",
  1617. "keywords": [
  1618. "http",
  1619. "message",
  1620. "psr-7",
  1621. "request",
  1622. "response",
  1623. "stream",
  1624. "uri",
  1625. "url"
  1626. ],
  1627. "support": {
  1628. "issues": "https://github.com/guzzle/psr7/issues",
  1629. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  1630. },
  1631. "funding": [
  1632. {
  1633. "url": "https://github.com/GrahamCampbell",
  1634. "type": "github"
  1635. },
  1636. {
  1637. "url": "https://github.com/Nyholm",
  1638. "type": "github"
  1639. },
  1640. {
  1641. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1642. "type": "tidelift"
  1643. }
  1644. ],
  1645. "time": "2023-04-17T16:11:26+00:00"
  1646. },
  1647. {
  1648. "name": "guzzlehttp/uri-template",
  1649. "version": "v1.0.1",
  1650. "source": {
  1651. "type": "git",
  1652. "url": "https://github.com/guzzle/uri-template.git",
  1653. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1654. },
  1655. "dist": {
  1656. "type": "zip",
  1657. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1658. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1659. "shasum": ""
  1660. },
  1661. "require": {
  1662. "php": "^7.2.5 || ^8.0",
  1663. "symfony/polyfill-php80": "^1.17"
  1664. },
  1665. "require-dev": {
  1666. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1667. "uri-template/tests": "1.0.0"
  1668. },
  1669. "type": "library",
  1670. "extra": {
  1671. "branch-alias": {
  1672. "dev-master": "1.0-dev"
  1673. }
  1674. },
  1675. "autoload": {
  1676. "psr-4": {
  1677. "GuzzleHttp\\UriTemplate\\": "src"
  1678. }
  1679. },
  1680. "notification-url": "https://packagist.org/downloads/",
  1681. "license": [
  1682. "MIT"
  1683. ],
  1684. "authors": [
  1685. {
  1686. "name": "Graham Campbell",
  1687. "email": "hello@gjcampbell.co.uk",
  1688. "homepage": "https://github.com/GrahamCampbell"
  1689. },
  1690. {
  1691. "name": "Michael Dowling",
  1692. "email": "mtdowling@gmail.com",
  1693. "homepage": "https://github.com/mtdowling"
  1694. },
  1695. {
  1696. "name": "George Mponos",
  1697. "email": "gmponos@gmail.com",
  1698. "homepage": "https://github.com/gmponos"
  1699. },
  1700. {
  1701. "name": "Tobias Nyholm",
  1702. "email": "tobias.nyholm@gmail.com",
  1703. "homepage": "https://github.com/Nyholm"
  1704. }
  1705. ],
  1706. "description": "A polyfill class for uri_template of PHP",
  1707. "keywords": [
  1708. "guzzlehttp",
  1709. "uri-template"
  1710. ],
  1711. "support": {
  1712. "issues": "https://github.com/guzzle/uri-template/issues",
  1713. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1714. },
  1715. "funding": [
  1716. {
  1717. "url": "https://github.com/GrahamCampbell",
  1718. "type": "github"
  1719. },
  1720. {
  1721. "url": "https://github.com/Nyholm",
  1722. "type": "github"
  1723. },
  1724. {
  1725. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1726. "type": "tidelift"
  1727. }
  1728. ],
  1729. "time": "2021-10-07T12:57:01+00:00"
  1730. },
  1731. {
  1732. "name": "hidehalo/nanoid-php",
  1733. "version": "1.1.13",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://github.com/hidehalo/nanoid-php.git",
  1737. "reference": "3fc7c949f4e655939cc30e7110d658af3dbb0e30"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://api.github.com/repos/hidehalo/nanoid-php/zipball/3fc7c949f4e655939cc30e7110d658af3dbb0e30",
  1742. "reference": "3fc7c949f4e655939cc30e7110d658af3dbb0e30",
  1743. "shasum": ""
  1744. },
  1745. "require": {
  1746. "paragonie/random_compat": ">=2.0",
  1747. "php": "~5.6|~7.0|~8.0"
  1748. },
  1749. "require-dev": {
  1750. "phpunit/phpunit": ">=5.6",
  1751. "squizlabs/php_codesniffer": "^2.3"
  1752. },
  1753. "type": "library",
  1754. "extra": {
  1755. "branch-alias": {
  1756. "dev-master": "1.0-dev"
  1757. }
  1758. },
  1759. "autoload": {
  1760. "psr-4": {
  1761. "Hidehalo\\Nanoid\\": "src"
  1762. }
  1763. },
  1764. "notification-url": "https://packagist.org/downloads/",
  1765. "license": [
  1766. "MIT"
  1767. ],
  1768. "authors": [
  1769. {
  1770. "name": "hidehalo",
  1771. "email": "tianchen_cc@yeah.net",
  1772. "homepage": "https://github.com/hidehalo",
  1773. "role": "Owner"
  1774. }
  1775. ],
  1776. "description": "A copy of nanoid in PHP",
  1777. "homepage": "https://github.com/hidehalo/nanoid-php",
  1778. "keywords": [
  1779. "hidehalo",
  1780. "nanoid-php"
  1781. ],
  1782. "support": {
  1783. "issues": "https://github.com/hidehalo/nanoid-php/issues",
  1784. "source": "https://github.com/hidehalo/nanoid-php/tree/1.1.13"
  1785. },
  1786. "time": "2022-08-04T12:07:12+00:00"
  1787. },
  1788. {
  1789. "name": "kkomelin/laravel-translatable-string-exporter",
  1790. "version": "1.21.0",
  1791. "source": {
  1792. "type": "git",
  1793. "url": "https://github.com/kkomelin/laravel-translatable-string-exporter.git",
  1794. "reference": "51e6575223c345be359f5387ecaaf6bb7fc1de3d"
  1795. },
  1796. "dist": {
  1797. "type": "zip",
  1798. "url": "https://api.github.com/repos/kkomelin/laravel-translatable-string-exporter/zipball/51e6575223c345be359f5387ecaaf6bb7fc1de3d",
  1799. "reference": "51e6575223c345be359f5387ecaaf6bb7fc1de3d",
  1800. "shasum": ""
  1801. },
  1802. "require": {
  1803. "ext-json": "*",
  1804. "illuminate/support": "^8|^9|^10.0",
  1805. "illuminate/translation": "^8|^9|^10.0",
  1806. "php": "^8.0",
  1807. "symfony/finder": "^5|^6"
  1808. },
  1809. "require-dev": {
  1810. "nunomaduro/larastan": "^1.0|^2.0",
  1811. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1812. "phpunit/phpunit": "^9.0"
  1813. },
  1814. "type": "library",
  1815. "extra": {
  1816. "laravel": {
  1817. "providers": [
  1818. "KKomelin\\TranslatableStringExporter\\Providers\\ExporterServiceProvider"
  1819. ]
  1820. }
  1821. },
  1822. "autoload": {
  1823. "psr-4": {
  1824. "KKomelin\\TranslatableStringExporter\\": "src/"
  1825. }
  1826. },
  1827. "notification-url": "https://packagist.org/downloads/",
  1828. "license": [
  1829. "MIT"
  1830. ],
  1831. "authors": [
  1832. {
  1833. "name": "Konstantin Komelin",
  1834. "email": "konstantin.komelin@gmail.com"
  1835. }
  1836. ],
  1837. "description": "Translatable String Exporter for Laravel",
  1838. "keywords": [
  1839. "export",
  1840. "exporter",
  1841. "json",
  1842. "laravel",
  1843. "localization",
  1844. "translation",
  1845. "translations"
  1846. ],
  1847. "support": {
  1848. "issues": "https://github.com/kkomelin/laravel-translatable-string-exporter/issues",
  1849. "source": "https://github.com/kkomelin/laravel-translatable-string-exporter/tree/1.21.0"
  1850. },
  1851. "time": "2023-03-14T04:18:49+00:00"
  1852. },
  1853. {
  1854. "name": "laravel/framework",
  1855. "version": "v9.52.7",
  1856. "source": {
  1857. "type": "git",
  1858. "url": "https://github.com/laravel/framework.git",
  1859. "reference": "675ea868fe36b18c8303e954aac540e6b1caa677"
  1860. },
  1861. "dist": {
  1862. "type": "zip",
  1863. "url": "https://api.github.com/repos/laravel/framework/zipball/675ea868fe36b18c8303e954aac540e6b1caa677",
  1864. "reference": "675ea868fe36b18c8303e954aac540e6b1caa677",
  1865. "shasum": ""
  1866. },
  1867. "require": {
  1868. "brick/math": "^0.9.3|^0.10.2|^0.11",
  1869. "doctrine/inflector": "^2.0.5",
  1870. "dragonmantank/cron-expression": "^3.3.2",
  1871. "egulias/email-validator": "^3.2.1|^4.0",
  1872. "ext-ctype": "*",
  1873. "ext-filter": "*",
  1874. "ext-hash": "*",
  1875. "ext-mbstring": "*",
  1876. "ext-openssl": "*",
  1877. "ext-session": "*",
  1878. "ext-tokenizer": "*",
  1879. "fruitcake/php-cors": "^1.2",
  1880. "guzzlehttp/uri-template": "^1.0",
  1881. "laravel/serializable-closure": "^1.2.2",
  1882. "league/commonmark": "^2.2.1",
  1883. "league/flysystem": "^3.8.0",
  1884. "monolog/monolog": "^2.0",
  1885. "nesbot/carbon": "^2.62.1",
  1886. "nunomaduro/termwind": "^1.13",
  1887. "php": "^8.0.2",
  1888. "psr/container": "^1.1.1|^2.0.1",
  1889. "psr/log": "^1.0|^2.0|^3.0",
  1890. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1891. "ramsey/uuid": "^4.7",
  1892. "symfony/console": "^6.0.9",
  1893. "symfony/error-handler": "^6.0",
  1894. "symfony/finder": "^6.0",
  1895. "symfony/http-foundation": "^6.0",
  1896. "symfony/http-kernel": "^6.0",
  1897. "symfony/mailer": "^6.0",
  1898. "symfony/mime": "^6.0",
  1899. "symfony/process": "^6.0",
  1900. "symfony/routing": "^6.0",
  1901. "symfony/uid": "^6.0",
  1902. "symfony/var-dumper": "^6.0",
  1903. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1904. "vlucas/phpdotenv": "^5.4.1",
  1905. "voku/portable-ascii": "^2.0"
  1906. },
  1907. "conflict": {
  1908. "tightenco/collect": "<5.5.33"
  1909. },
  1910. "provide": {
  1911. "psr/container-implementation": "1.1|2.0",
  1912. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1913. },
  1914. "replace": {
  1915. "illuminate/auth": "self.version",
  1916. "illuminate/broadcasting": "self.version",
  1917. "illuminate/bus": "self.version",
  1918. "illuminate/cache": "self.version",
  1919. "illuminate/collections": "self.version",
  1920. "illuminate/conditionable": "self.version",
  1921. "illuminate/config": "self.version",
  1922. "illuminate/console": "self.version",
  1923. "illuminate/container": "self.version",
  1924. "illuminate/contracts": "self.version",
  1925. "illuminate/cookie": "self.version",
  1926. "illuminate/database": "self.version",
  1927. "illuminate/encryption": "self.version",
  1928. "illuminate/events": "self.version",
  1929. "illuminate/filesystem": "self.version",
  1930. "illuminate/hashing": "self.version",
  1931. "illuminate/http": "self.version",
  1932. "illuminate/log": "self.version",
  1933. "illuminate/macroable": "self.version",
  1934. "illuminate/mail": "self.version",
  1935. "illuminate/notifications": "self.version",
  1936. "illuminate/pagination": "self.version",
  1937. "illuminate/pipeline": "self.version",
  1938. "illuminate/queue": "self.version",
  1939. "illuminate/redis": "self.version",
  1940. "illuminate/routing": "self.version",
  1941. "illuminate/session": "self.version",
  1942. "illuminate/support": "self.version",
  1943. "illuminate/testing": "self.version",
  1944. "illuminate/translation": "self.version",
  1945. "illuminate/validation": "self.version",
  1946. "illuminate/view": "self.version"
  1947. },
  1948. "require-dev": {
  1949. "ably/ably-php": "^1.0",
  1950. "aws/aws-sdk-php": "^3.235.5",
  1951. "doctrine/dbal": "^2.13.3|^3.1.4",
  1952. "ext-gmp": "*",
  1953. "fakerphp/faker": "^1.21",
  1954. "guzzlehttp/guzzle": "^7.5",
  1955. "league/flysystem-aws-s3-v3": "^3.0",
  1956. "league/flysystem-ftp": "^3.0",
  1957. "league/flysystem-path-prefixing": "^3.3",
  1958. "league/flysystem-read-only": "^3.3",
  1959. "league/flysystem-sftp-v3": "^3.0",
  1960. "mockery/mockery": "^1.5.1",
  1961. "orchestra/testbench-core": "^7.24",
  1962. "pda/pheanstalk": "^4.0",
  1963. "phpstan/phpdoc-parser": "^1.15",
  1964. "phpstan/phpstan": "^1.4.7",
  1965. "phpunit/phpunit": "^9.5.8",
  1966. "predis/predis": "^1.1.9|^2.0.2",
  1967. "symfony/cache": "^6.0",
  1968. "symfony/http-client": "^6.0"
  1969. },
  1970. "suggest": {
  1971. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1972. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1973. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1974. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1975. "ext-apcu": "Required to use the APC cache driver.",
  1976. "ext-fileinfo": "Required to use the Filesystem class.",
  1977. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1978. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1979. "ext-memcached": "Required to use the memcache cache driver.",
  1980. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1981. "ext-pdo": "Required to use all database features.",
  1982. "ext-posix": "Required to use all features of the queue worker.",
  1983. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1984. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1985. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1986. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  1987. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1988. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1989. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1990. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1991. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1992. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1993. "mockery/mockery": "Required to use mocking (^1.5.1).",
  1994. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1995. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1996. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  1997. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
  1998. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1999. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2000. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  2001. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  2002. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  2003. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  2004. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  2005. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "9.x-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "files": [
  2015. "src/Illuminate/Collections/helpers.php",
  2016. "src/Illuminate/Events/functions.php",
  2017. "src/Illuminate/Foundation/helpers.php",
  2018. "src/Illuminate/Support/helpers.php"
  2019. ],
  2020. "psr-4": {
  2021. "Illuminate\\": "src/Illuminate/",
  2022. "Illuminate\\Support\\": [
  2023. "src/Illuminate/Macroable/",
  2024. "src/Illuminate/Collections/",
  2025. "src/Illuminate/Conditionable/"
  2026. ]
  2027. }
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Taylor Otwell",
  2036. "email": "taylor@laravel.com"
  2037. }
  2038. ],
  2039. "description": "The Laravel Framework.",
  2040. "homepage": "https://laravel.com",
  2041. "keywords": [
  2042. "framework",
  2043. "laravel"
  2044. ],
  2045. "support": {
  2046. "issues": "https://github.com/laravel/framework/issues",
  2047. "source": "https://github.com/laravel/framework"
  2048. },
  2049. "time": "2023-04-25T13:44:05+00:00"
  2050. },
  2051. {
  2052. "name": "laravel/serializable-closure",
  2053. "version": "v1.3.0",
  2054. "source": {
  2055. "type": "git",
  2056. "url": "https://github.com/laravel/serializable-closure.git",
  2057. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
  2058. },
  2059. "dist": {
  2060. "type": "zip",
  2061. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2062. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2063. "shasum": ""
  2064. },
  2065. "require": {
  2066. "php": "^7.3|^8.0"
  2067. },
  2068. "require-dev": {
  2069. "nesbot/carbon": "^2.61",
  2070. "pestphp/pest": "^1.21.3",
  2071. "phpstan/phpstan": "^1.8.2",
  2072. "symfony/var-dumper": "^5.4.11"
  2073. },
  2074. "type": "library",
  2075. "extra": {
  2076. "branch-alias": {
  2077. "dev-master": "1.x-dev"
  2078. }
  2079. },
  2080. "autoload": {
  2081. "psr-4": {
  2082. "Laravel\\SerializableClosure\\": "src/"
  2083. }
  2084. },
  2085. "notification-url": "https://packagist.org/downloads/",
  2086. "license": [
  2087. "MIT"
  2088. ],
  2089. "authors": [
  2090. {
  2091. "name": "Taylor Otwell",
  2092. "email": "taylor@laravel.com"
  2093. },
  2094. {
  2095. "name": "Nuno Maduro",
  2096. "email": "nuno@laravel.com"
  2097. }
  2098. ],
  2099. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2100. "keywords": [
  2101. "closure",
  2102. "laravel",
  2103. "serializable"
  2104. ],
  2105. "support": {
  2106. "issues": "https://github.com/laravel/serializable-closure/issues",
  2107. "source": "https://github.com/laravel/serializable-closure"
  2108. },
  2109. "time": "2023-01-30T18:31:20+00:00"
  2110. },
  2111. {
  2112. "name": "laravel/socialite",
  2113. "version": "v5.6.1",
  2114. "source": {
  2115. "type": "git",
  2116. "url": "https://github.com/laravel/socialite.git",
  2117. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09"
  2118. },
  2119. "dist": {
  2120. "type": "zip",
  2121. "url": "https://api.github.com/repos/laravel/socialite/zipball/a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2122. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2123. "shasum": ""
  2124. },
  2125. "require": {
  2126. "ext-json": "*",
  2127. "guzzlehttp/guzzle": "^6.0|^7.0",
  2128. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2129. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2130. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2131. "league/oauth1-client": "^1.10.1",
  2132. "php": "^7.2|^8.0"
  2133. },
  2134. "require-dev": {
  2135. "mockery/mockery": "^1.0",
  2136. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2137. "phpunit/phpunit": "^8.0|^9.3"
  2138. },
  2139. "type": "library",
  2140. "extra": {
  2141. "branch-alias": {
  2142. "dev-master": "5.x-dev"
  2143. },
  2144. "laravel": {
  2145. "providers": [
  2146. "Laravel\\Socialite\\SocialiteServiceProvider"
  2147. ],
  2148. "aliases": {
  2149. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2150. }
  2151. }
  2152. },
  2153. "autoload": {
  2154. "psr-4": {
  2155. "Laravel\\Socialite\\": "src/"
  2156. }
  2157. },
  2158. "notification-url": "https://packagist.org/downloads/",
  2159. "license": [
  2160. "MIT"
  2161. ],
  2162. "authors": [
  2163. {
  2164. "name": "Taylor Otwell",
  2165. "email": "taylor@laravel.com"
  2166. }
  2167. ],
  2168. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2169. "homepage": "https://laravel.com",
  2170. "keywords": [
  2171. "laravel",
  2172. "oauth"
  2173. ],
  2174. "support": {
  2175. "issues": "https://github.com/laravel/socialite/issues",
  2176. "source": "https://github.com/laravel/socialite"
  2177. },
  2178. "time": "2023-01-20T15:42:35+00:00"
  2179. },
  2180. {
  2181. "name": "laravel/tinker",
  2182. "version": "v2.8.1",
  2183. "source": {
  2184. "type": "git",
  2185. "url": "https://github.com/laravel/tinker.git",
  2186. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  2187. },
  2188. "dist": {
  2189. "type": "zip",
  2190. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2191. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2192. "shasum": ""
  2193. },
  2194. "require": {
  2195. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2196. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2197. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2198. "php": "^7.2.5|^8.0",
  2199. "psy/psysh": "^0.10.4|^0.11.1",
  2200. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2201. },
  2202. "require-dev": {
  2203. "mockery/mockery": "~1.3.3|^1.4.2",
  2204. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2205. },
  2206. "suggest": {
  2207. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2208. },
  2209. "type": "library",
  2210. "extra": {
  2211. "branch-alias": {
  2212. "dev-master": "2.x-dev"
  2213. },
  2214. "laravel": {
  2215. "providers": [
  2216. "Laravel\\Tinker\\TinkerServiceProvider"
  2217. ]
  2218. }
  2219. },
  2220. "autoload": {
  2221. "psr-4": {
  2222. "Laravel\\Tinker\\": "src/"
  2223. }
  2224. },
  2225. "notification-url": "https://packagist.org/downloads/",
  2226. "license": [
  2227. "MIT"
  2228. ],
  2229. "authors": [
  2230. {
  2231. "name": "Taylor Otwell",
  2232. "email": "taylor@laravel.com"
  2233. }
  2234. ],
  2235. "description": "Powerful REPL for the Laravel framework.",
  2236. "keywords": [
  2237. "REPL",
  2238. "Tinker",
  2239. "laravel",
  2240. "psysh"
  2241. ],
  2242. "support": {
  2243. "issues": "https://github.com/laravel/tinker/issues",
  2244. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  2245. },
  2246. "time": "2023-02-15T16:40:09+00:00"
  2247. },
  2248. {
  2249. "name": "laravel/ui",
  2250. "version": "v3.4.6",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/laravel/ui.git",
  2254. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/laravel/ui/zipball/65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2259. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "illuminate/console": "^8.42|^9.0",
  2264. "illuminate/filesystem": "^8.42|^9.0",
  2265. "illuminate/support": "^8.82|^9.0",
  2266. "illuminate/validation": "^8.42|^9.0",
  2267. "php": "^7.3|^8.0"
  2268. },
  2269. "require-dev": {
  2270. "orchestra/testbench": "^6.23|^7.0"
  2271. },
  2272. "type": "library",
  2273. "extra": {
  2274. "branch-alias": {
  2275. "dev-master": "3.x-dev"
  2276. },
  2277. "laravel": {
  2278. "providers": [
  2279. "Laravel\\Ui\\UiServiceProvider"
  2280. ]
  2281. }
  2282. },
  2283. "autoload": {
  2284. "psr-4": {
  2285. "Laravel\\Ui\\": "src/",
  2286. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2287. }
  2288. },
  2289. "notification-url": "https://packagist.org/downloads/",
  2290. "license": [
  2291. "MIT"
  2292. ],
  2293. "authors": [
  2294. {
  2295. "name": "Taylor Otwell",
  2296. "email": "taylor@laravel.com"
  2297. }
  2298. ],
  2299. "description": "Laravel UI utilities and presets.",
  2300. "keywords": [
  2301. "laravel",
  2302. "ui"
  2303. ],
  2304. "support": {
  2305. "source": "https://github.com/laravel/ui/tree/v3.4.6"
  2306. },
  2307. "time": "2022-05-20T13:38:08+00:00"
  2308. },
  2309. {
  2310. "name": "laraveldaily/laravel-invoices",
  2311. "version": "3.1.0",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/LaravelDaily/laravel-invoices.git",
  2315. "reference": "7f3f2fd2042ad7ca228b506059a1e8535de46e05"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/LaravelDaily/laravel-invoices/zipball/7f3f2fd2042ad7ca228b506059a1e8535de46e05",
  2320. "reference": "7f3f2fd2042ad7ca228b506059a1e8535de46e05",
  2321. "shasum": ""
  2322. },
  2323. "require": {
  2324. "barryvdh/laravel-dompdf": "^v2.0",
  2325. "illuminate/http": "^5.5|^6|^7|^8|^9|^10",
  2326. "illuminate/support": "^5.5|^6|^7|^8|^9|^10",
  2327. "php": "^7.3|^8.0",
  2328. "symfony/http-foundation": "^4.0|^5.0|^6.0"
  2329. },
  2330. "require-dev": {
  2331. "phpunit/phpunit": "^9.3",
  2332. "symfony/var-dumper": "^5.0"
  2333. },
  2334. "type": "library",
  2335. "extra": {
  2336. "laravel": {
  2337. "providers": [
  2338. "LaravelDaily\\Invoices\\InvoiceServiceProvider"
  2339. ],
  2340. "aliases": {
  2341. "Invoice": "LaravelDaily\\Invoices\\Facades\\Invoice"
  2342. }
  2343. }
  2344. },
  2345. "autoload": {
  2346. "psr-4": {
  2347. "LaravelDaily\\Invoices\\": "src"
  2348. }
  2349. },
  2350. "notification-url": "https://packagist.org/downloads/",
  2351. "license": [
  2352. "GPL-3.0-only"
  2353. ],
  2354. "authors": [
  2355. {
  2356. "name": "David Lun",
  2357. "email": "mysticcode@gmail.com",
  2358. "homepage": "https://davidlun.com",
  2359. "role": "Developer"
  2360. }
  2361. ],
  2362. "description": "Missing invoices for Laravel",
  2363. "homepage": "https://github.com/LaravelDaily/laravel-invoices",
  2364. "keywords": [
  2365. "invoice",
  2366. "invoices",
  2367. "laravel",
  2368. "pdf"
  2369. ],
  2370. "support": {
  2371. "issues": "https://github.com/LaravelDaily/laravel-invoices/issues",
  2372. "source": "https://github.com/LaravelDaily/laravel-invoices/tree/3.1.0"
  2373. },
  2374. "time": "2023-02-15T12:35:38+00:00"
  2375. },
  2376. {
  2377. "name": "league/commonmark",
  2378. "version": "2.4.0",
  2379. "source": {
  2380. "type": "git",
  2381. "url": "https://github.com/thephpleague/commonmark.git",
  2382. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  2383. },
  2384. "dist": {
  2385. "type": "zip",
  2386. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2387. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2388. "shasum": ""
  2389. },
  2390. "require": {
  2391. "ext-mbstring": "*",
  2392. "league/config": "^1.1.1",
  2393. "php": "^7.4 || ^8.0",
  2394. "psr/event-dispatcher": "^1.0",
  2395. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2396. "symfony/polyfill-php80": "^1.16"
  2397. },
  2398. "require-dev": {
  2399. "cebe/markdown": "^1.0",
  2400. "commonmark/cmark": "0.30.0",
  2401. "commonmark/commonmark.js": "0.30.0",
  2402. "composer/package-versions-deprecated": "^1.8",
  2403. "embed/embed": "^4.4",
  2404. "erusev/parsedown": "^1.0",
  2405. "ext-json": "*",
  2406. "github/gfm": "0.29.0",
  2407. "michelf/php-markdown": "^1.4 || ^2.0",
  2408. "nyholm/psr7": "^1.5",
  2409. "phpstan/phpstan": "^1.8.2",
  2410. "phpunit/phpunit": "^9.5.21",
  2411. "scrutinizer/ocular": "^1.8.1",
  2412. "symfony/finder": "^5.3 | ^6.0",
  2413. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2414. "unleashedtech/php-coding-standard": "^3.1.1",
  2415. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2416. },
  2417. "suggest": {
  2418. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2419. },
  2420. "type": "library",
  2421. "extra": {
  2422. "branch-alias": {
  2423. "dev-main": "2.5-dev"
  2424. }
  2425. },
  2426. "autoload": {
  2427. "psr-4": {
  2428. "League\\CommonMark\\": "src"
  2429. }
  2430. },
  2431. "notification-url": "https://packagist.org/downloads/",
  2432. "license": [
  2433. "BSD-3-Clause"
  2434. ],
  2435. "authors": [
  2436. {
  2437. "name": "Colin O'Dell",
  2438. "email": "colinodell@gmail.com",
  2439. "homepage": "https://www.colinodell.com",
  2440. "role": "Lead Developer"
  2441. }
  2442. ],
  2443. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2444. "homepage": "https://commonmark.thephpleague.com",
  2445. "keywords": [
  2446. "commonmark",
  2447. "flavored",
  2448. "gfm",
  2449. "github",
  2450. "github-flavored",
  2451. "markdown",
  2452. "md",
  2453. "parser"
  2454. ],
  2455. "support": {
  2456. "docs": "https://commonmark.thephpleague.com/",
  2457. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2458. "issues": "https://github.com/thephpleague/commonmark/issues",
  2459. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2460. "source": "https://github.com/thephpleague/commonmark"
  2461. },
  2462. "funding": [
  2463. {
  2464. "url": "https://www.colinodell.com/sponsor",
  2465. "type": "custom"
  2466. },
  2467. {
  2468. "url": "https://www.paypal.me/colinpodell/10.00",
  2469. "type": "custom"
  2470. },
  2471. {
  2472. "url": "https://github.com/colinodell",
  2473. "type": "github"
  2474. },
  2475. {
  2476. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2477. "type": "tidelift"
  2478. }
  2479. ],
  2480. "time": "2023-03-24T15:16:10+00:00"
  2481. },
  2482. {
  2483. "name": "league/config",
  2484. "version": "v1.2.0",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://github.com/thephpleague/config.git",
  2488. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2493. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2494. "shasum": ""
  2495. },
  2496. "require": {
  2497. "dflydev/dot-access-data": "^3.0.1",
  2498. "nette/schema": "^1.2",
  2499. "php": "^7.4 || ^8.0"
  2500. },
  2501. "require-dev": {
  2502. "phpstan/phpstan": "^1.8.2",
  2503. "phpunit/phpunit": "^9.5.5",
  2504. "scrutinizer/ocular": "^1.8.1",
  2505. "unleashedtech/php-coding-standard": "^3.1",
  2506. "vimeo/psalm": "^4.7.3"
  2507. },
  2508. "type": "library",
  2509. "extra": {
  2510. "branch-alias": {
  2511. "dev-main": "1.2-dev"
  2512. }
  2513. },
  2514. "autoload": {
  2515. "psr-4": {
  2516. "League\\Config\\": "src"
  2517. }
  2518. },
  2519. "notification-url": "https://packagist.org/downloads/",
  2520. "license": [
  2521. "BSD-3-Clause"
  2522. ],
  2523. "authors": [
  2524. {
  2525. "name": "Colin O'Dell",
  2526. "email": "colinodell@gmail.com",
  2527. "homepage": "https://www.colinodell.com",
  2528. "role": "Lead Developer"
  2529. }
  2530. ],
  2531. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2532. "homepage": "https://config.thephpleague.com",
  2533. "keywords": [
  2534. "array",
  2535. "config",
  2536. "configuration",
  2537. "dot",
  2538. "dot-access",
  2539. "nested",
  2540. "schema"
  2541. ],
  2542. "support": {
  2543. "docs": "https://config.thephpleague.com/",
  2544. "issues": "https://github.com/thephpleague/config/issues",
  2545. "rss": "https://github.com/thephpleague/config/releases.atom",
  2546. "source": "https://github.com/thephpleague/config"
  2547. },
  2548. "funding": [
  2549. {
  2550. "url": "https://www.colinodell.com/sponsor",
  2551. "type": "custom"
  2552. },
  2553. {
  2554. "url": "https://www.paypal.me/colinpodell/10.00",
  2555. "type": "custom"
  2556. },
  2557. {
  2558. "url": "https://github.com/colinodell",
  2559. "type": "github"
  2560. }
  2561. ],
  2562. "time": "2022-12-11T20:36:23+00:00"
  2563. },
  2564. {
  2565. "name": "league/flysystem",
  2566. "version": "3.14.0",
  2567. "source": {
  2568. "type": "git",
  2569. "url": "https://github.com/thephpleague/flysystem.git",
  2570. "reference": "e2a279d7f47d9098e479e8b21f7fb8b8de230158"
  2571. },
  2572. "dist": {
  2573. "type": "zip",
  2574. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e2a279d7f47d9098e479e8b21f7fb8b8de230158",
  2575. "reference": "e2a279d7f47d9098e479e8b21f7fb8b8de230158",
  2576. "shasum": ""
  2577. },
  2578. "require": {
  2579. "league/mime-type-detection": "^1.0.0",
  2580. "php": "^8.0.2"
  2581. },
  2582. "conflict": {
  2583. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2584. "guzzlehttp/guzzle": "<7.0",
  2585. "guzzlehttp/ringphp": "<1.1.1",
  2586. "phpseclib/phpseclib": "3.0.15",
  2587. "symfony/http-client": "<5.2"
  2588. },
  2589. "require-dev": {
  2590. "async-aws/s3": "^1.5",
  2591. "async-aws/simple-s3": "^1.1",
  2592. "aws/aws-sdk-php": "^3.220.0",
  2593. "composer/semver": "^3.0",
  2594. "ext-fileinfo": "*",
  2595. "ext-ftp": "*",
  2596. "ext-zip": "*",
  2597. "friendsofphp/php-cs-fixer": "^3.5",
  2598. "google/cloud-storage": "^1.23",
  2599. "microsoft/azure-storage-blob": "^1.1",
  2600. "phpseclib/phpseclib": "^3.0.14",
  2601. "phpstan/phpstan": "^0.12.26",
  2602. "phpunit/phpunit": "^9.5.11",
  2603. "sabre/dav": "^4.3.1"
  2604. },
  2605. "type": "library",
  2606. "autoload": {
  2607. "psr-4": {
  2608. "League\\Flysystem\\": "src"
  2609. }
  2610. },
  2611. "notification-url": "https://packagist.org/downloads/",
  2612. "license": [
  2613. "MIT"
  2614. ],
  2615. "authors": [
  2616. {
  2617. "name": "Frank de Jonge",
  2618. "email": "info@frankdejonge.nl"
  2619. }
  2620. ],
  2621. "description": "File storage abstraction for PHP",
  2622. "keywords": [
  2623. "WebDAV",
  2624. "aws",
  2625. "cloud",
  2626. "file",
  2627. "files",
  2628. "filesystem",
  2629. "filesystems",
  2630. "ftp",
  2631. "s3",
  2632. "sftp",
  2633. "storage"
  2634. ],
  2635. "support": {
  2636. "issues": "https://github.com/thephpleague/flysystem/issues",
  2637. "source": "https://github.com/thephpleague/flysystem/tree/3.14.0"
  2638. },
  2639. "funding": [
  2640. {
  2641. "url": "https://ecologi.com/frankdejonge",
  2642. "type": "custom"
  2643. },
  2644. {
  2645. "url": "https://github.com/frankdejonge",
  2646. "type": "github"
  2647. }
  2648. ],
  2649. "time": "2023-04-11T18:11:47+00:00"
  2650. },
  2651. {
  2652. "name": "league/flysystem-aws-s3-v3",
  2653. "version": "3.13.0",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2657. "reference": "8e04cbb403d4dfd5b73a2f8685f1df395bd177eb"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/8e04cbb403d4dfd5b73a2f8685f1df395bd177eb",
  2662. "reference": "8e04cbb403d4dfd5b73a2f8685f1df395bd177eb",
  2663. "shasum": ""
  2664. },
  2665. "require": {
  2666. "aws/aws-sdk-php": "^3.220.0",
  2667. "league/flysystem": "^3.10.0",
  2668. "league/mime-type-detection": "^1.0.0",
  2669. "php": "^8.0.2"
  2670. },
  2671. "conflict": {
  2672. "guzzlehttp/guzzle": "<7.0",
  2673. "guzzlehttp/ringphp": "<1.1.1"
  2674. },
  2675. "type": "library",
  2676. "autoload": {
  2677. "psr-4": {
  2678. "League\\Flysystem\\AwsS3V3\\": ""
  2679. }
  2680. },
  2681. "notification-url": "https://packagist.org/downloads/",
  2682. "license": [
  2683. "MIT"
  2684. ],
  2685. "authors": [
  2686. {
  2687. "name": "Frank de Jonge",
  2688. "email": "info@frankdejonge.nl"
  2689. }
  2690. ],
  2691. "description": "AWS S3 filesystem adapter for Flysystem.",
  2692. "keywords": [
  2693. "Flysystem",
  2694. "aws",
  2695. "file",
  2696. "files",
  2697. "filesystem",
  2698. "s3",
  2699. "storage"
  2700. ],
  2701. "support": {
  2702. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  2703. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.13.0"
  2704. },
  2705. "funding": [
  2706. {
  2707. "url": "https://ecologi.com/frankdejonge",
  2708. "type": "custom"
  2709. },
  2710. {
  2711. "url": "https://github.com/frankdejonge",
  2712. "type": "github"
  2713. }
  2714. ],
  2715. "time": "2023-03-16T14:29:01+00:00"
  2716. },
  2717. {
  2718. "name": "league/mime-type-detection",
  2719. "version": "1.11.0",
  2720. "source": {
  2721. "type": "git",
  2722. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2723. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2724. },
  2725. "dist": {
  2726. "type": "zip",
  2727. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2728. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2729. "shasum": ""
  2730. },
  2731. "require": {
  2732. "ext-fileinfo": "*",
  2733. "php": "^7.2 || ^8.0"
  2734. },
  2735. "require-dev": {
  2736. "friendsofphp/php-cs-fixer": "^3.2",
  2737. "phpstan/phpstan": "^0.12.68",
  2738. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2739. },
  2740. "type": "library",
  2741. "autoload": {
  2742. "psr-4": {
  2743. "League\\MimeTypeDetection\\": "src"
  2744. }
  2745. },
  2746. "notification-url": "https://packagist.org/downloads/",
  2747. "license": [
  2748. "MIT"
  2749. ],
  2750. "authors": [
  2751. {
  2752. "name": "Frank de Jonge",
  2753. "email": "info@frankdejonge.nl"
  2754. }
  2755. ],
  2756. "description": "Mime-type detection for Flysystem",
  2757. "support": {
  2758. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2759. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2760. },
  2761. "funding": [
  2762. {
  2763. "url": "https://github.com/frankdejonge",
  2764. "type": "github"
  2765. },
  2766. {
  2767. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2768. "type": "tidelift"
  2769. }
  2770. ],
  2771. "time": "2022-04-17T13:12:02+00:00"
  2772. },
  2773. {
  2774. "name": "league/oauth1-client",
  2775. "version": "v1.10.1",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/thephpleague/oauth1-client.git",
  2779. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2784. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2785. "shasum": ""
  2786. },
  2787. "require": {
  2788. "ext-json": "*",
  2789. "ext-openssl": "*",
  2790. "guzzlehttp/guzzle": "^6.0|^7.0",
  2791. "guzzlehttp/psr7": "^1.7|^2.0",
  2792. "php": ">=7.1||>=8.0"
  2793. },
  2794. "require-dev": {
  2795. "ext-simplexml": "*",
  2796. "friendsofphp/php-cs-fixer": "^2.17",
  2797. "mockery/mockery": "^1.3.3",
  2798. "phpstan/phpstan": "^0.12.42",
  2799. "phpunit/phpunit": "^7.5||9.5"
  2800. },
  2801. "suggest": {
  2802. "ext-simplexml": "For decoding XML-based responses."
  2803. },
  2804. "type": "library",
  2805. "extra": {
  2806. "branch-alias": {
  2807. "dev-master": "1.0-dev",
  2808. "dev-develop": "2.0-dev"
  2809. }
  2810. },
  2811. "autoload": {
  2812. "psr-4": {
  2813. "League\\OAuth1\\Client\\": "src/"
  2814. }
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "MIT"
  2819. ],
  2820. "authors": [
  2821. {
  2822. "name": "Ben Corlett",
  2823. "email": "bencorlett@me.com",
  2824. "homepage": "http://www.webcomm.com.au",
  2825. "role": "Developer"
  2826. }
  2827. ],
  2828. "description": "OAuth 1.0 Client Library",
  2829. "keywords": [
  2830. "Authentication",
  2831. "SSO",
  2832. "authorization",
  2833. "bitbucket",
  2834. "identity",
  2835. "idp",
  2836. "oauth",
  2837. "oauth1",
  2838. "single sign on",
  2839. "trello",
  2840. "tumblr",
  2841. "twitter"
  2842. ],
  2843. "support": {
  2844. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2845. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2846. },
  2847. "time": "2022-04-15T14:02:14+00:00"
  2848. },
  2849. {
  2850. "name": "masterminds/html5",
  2851. "version": "2.8.0",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://github.com/Masterminds/html5-php.git",
  2855. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  2860. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  2861. "shasum": ""
  2862. },
  2863. "require": {
  2864. "ext-dom": "*",
  2865. "php": ">=5.3.0"
  2866. },
  2867. "require-dev": {
  2868. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  2869. },
  2870. "type": "library",
  2871. "extra": {
  2872. "branch-alias": {
  2873. "dev-master": "2.7-dev"
  2874. }
  2875. },
  2876. "autoload": {
  2877. "psr-4": {
  2878. "Masterminds\\": "src"
  2879. }
  2880. },
  2881. "notification-url": "https://packagist.org/downloads/",
  2882. "license": [
  2883. "MIT"
  2884. ],
  2885. "authors": [
  2886. {
  2887. "name": "Matt Butcher",
  2888. "email": "technosophos@gmail.com"
  2889. },
  2890. {
  2891. "name": "Matt Farina",
  2892. "email": "matt@mattfarina.com"
  2893. },
  2894. {
  2895. "name": "Asmir Mustafic",
  2896. "email": "goetas@gmail.com"
  2897. }
  2898. ],
  2899. "description": "An HTML5 parser and serializer.",
  2900. "homepage": "http://masterminds.github.io/html5-php",
  2901. "keywords": [
  2902. "HTML5",
  2903. "dom",
  2904. "html",
  2905. "parser",
  2906. "querypath",
  2907. "serializer",
  2908. "xml"
  2909. ],
  2910. "support": {
  2911. "issues": "https://github.com/Masterminds/html5-php/issues",
  2912. "source": "https://github.com/Masterminds/html5-php/tree/2.8.0"
  2913. },
  2914. "time": "2023-04-26T07:27:39+00:00"
  2915. },
  2916. {
  2917. "name": "monolog/monolog",
  2918. "version": "2.9.1",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/Seldaek/monolog.git",
  2922. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  2927. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  2928. "shasum": ""
  2929. },
  2930. "require": {
  2931. "php": ">=7.2",
  2932. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2933. },
  2934. "provide": {
  2935. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2936. },
  2937. "require-dev": {
  2938. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2939. "doctrine/couchdb": "~1.0@dev",
  2940. "elasticsearch/elasticsearch": "^7 || ^8",
  2941. "ext-json": "*",
  2942. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2943. "guzzlehttp/guzzle": "^7.4",
  2944. "guzzlehttp/psr7": "^2.2",
  2945. "mongodb/mongodb": "^1.8",
  2946. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2947. "phpspec/prophecy": "^1.15",
  2948. "phpstan/phpstan": "^0.12.91",
  2949. "phpunit/phpunit": "^8.5.14",
  2950. "predis/predis": "^1.1 || ^2.0",
  2951. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2952. "ruflin/elastica": "^7",
  2953. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2954. "symfony/mailer": "^5.4 || ^6",
  2955. "symfony/mime": "^5.4 || ^6"
  2956. },
  2957. "suggest": {
  2958. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2959. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2960. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2961. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2962. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2963. "ext-mbstring": "Allow to work properly with unicode symbols",
  2964. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2965. "ext-openssl": "Required to send log messages using SSL",
  2966. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2967. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2968. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2969. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2970. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2971. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2972. },
  2973. "type": "library",
  2974. "extra": {
  2975. "branch-alias": {
  2976. "dev-main": "2.x-dev"
  2977. }
  2978. },
  2979. "autoload": {
  2980. "psr-4": {
  2981. "Monolog\\": "src/Monolog"
  2982. }
  2983. },
  2984. "notification-url": "https://packagist.org/downloads/",
  2985. "license": [
  2986. "MIT"
  2987. ],
  2988. "authors": [
  2989. {
  2990. "name": "Jordi Boggiano",
  2991. "email": "j.boggiano@seld.be",
  2992. "homepage": "https://seld.be"
  2993. }
  2994. ],
  2995. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2996. "homepage": "https://github.com/Seldaek/monolog",
  2997. "keywords": [
  2998. "log",
  2999. "logging",
  3000. "psr-3"
  3001. ],
  3002. "support": {
  3003. "issues": "https://github.com/Seldaek/monolog/issues",
  3004. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  3005. },
  3006. "funding": [
  3007. {
  3008. "url": "https://github.com/Seldaek",
  3009. "type": "github"
  3010. },
  3011. {
  3012. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3013. "type": "tidelift"
  3014. }
  3015. ],
  3016. "time": "2023-02-06T13:44:46+00:00"
  3017. },
  3018. {
  3019. "name": "mtdowling/jmespath.php",
  3020. "version": "2.6.1",
  3021. "source": {
  3022. "type": "git",
  3023. "url": "https://github.com/jmespath/jmespath.php.git",
  3024. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  3025. },
  3026. "dist": {
  3027. "type": "zip",
  3028. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3029. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3030. "shasum": ""
  3031. },
  3032. "require": {
  3033. "php": "^5.4 || ^7.0 || ^8.0",
  3034. "symfony/polyfill-mbstring": "^1.17"
  3035. },
  3036. "require-dev": {
  3037. "composer/xdebug-handler": "^1.4 || ^2.0",
  3038. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  3039. },
  3040. "bin": [
  3041. "bin/jp.php"
  3042. ],
  3043. "type": "library",
  3044. "extra": {
  3045. "branch-alias": {
  3046. "dev-master": "2.6-dev"
  3047. }
  3048. },
  3049. "autoload": {
  3050. "files": [
  3051. "src/JmesPath.php"
  3052. ],
  3053. "psr-4": {
  3054. "JmesPath\\": "src/"
  3055. }
  3056. },
  3057. "notification-url": "https://packagist.org/downloads/",
  3058. "license": [
  3059. "MIT"
  3060. ],
  3061. "authors": [
  3062. {
  3063. "name": "Michael Dowling",
  3064. "email": "mtdowling@gmail.com",
  3065. "homepage": "https://github.com/mtdowling"
  3066. }
  3067. ],
  3068. "description": "Declaratively specify how to extract elements from a JSON document",
  3069. "keywords": [
  3070. "json",
  3071. "jsonpath"
  3072. ],
  3073. "support": {
  3074. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3075. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  3076. },
  3077. "time": "2021-06-14T00:11:39+00:00"
  3078. },
  3079. {
  3080. "name": "nesbot/carbon",
  3081. "version": "2.66.0",
  3082. "source": {
  3083. "type": "git",
  3084. "url": "https://github.com/briannesbitt/Carbon.git",
  3085. "reference": "496712849902241f04902033b0441b269effe001"
  3086. },
  3087. "dist": {
  3088. "type": "zip",
  3089. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  3090. "reference": "496712849902241f04902033b0441b269effe001",
  3091. "shasum": ""
  3092. },
  3093. "require": {
  3094. "ext-json": "*",
  3095. "php": "^7.1.8 || ^8.0",
  3096. "symfony/polyfill-mbstring": "^1.0",
  3097. "symfony/polyfill-php80": "^1.16",
  3098. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3099. },
  3100. "require-dev": {
  3101. "doctrine/dbal": "^2.0 || ^3.1.4",
  3102. "doctrine/orm": "^2.7",
  3103. "friendsofphp/php-cs-fixer": "^3.0",
  3104. "kylekatarnls/multi-tester": "^2.0",
  3105. "ondrejmirtes/better-reflection": "*",
  3106. "phpmd/phpmd": "^2.9",
  3107. "phpstan/extension-installer": "^1.0",
  3108. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3109. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3110. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3111. "squizlabs/php_codesniffer": "^3.4"
  3112. },
  3113. "bin": [
  3114. "bin/carbon"
  3115. ],
  3116. "type": "library",
  3117. "extra": {
  3118. "branch-alias": {
  3119. "dev-3.x": "3.x-dev",
  3120. "dev-master": "2.x-dev"
  3121. },
  3122. "laravel": {
  3123. "providers": [
  3124. "Carbon\\Laravel\\ServiceProvider"
  3125. ]
  3126. },
  3127. "phpstan": {
  3128. "includes": [
  3129. "extension.neon"
  3130. ]
  3131. }
  3132. },
  3133. "autoload": {
  3134. "psr-4": {
  3135. "Carbon\\": "src/Carbon/"
  3136. }
  3137. },
  3138. "notification-url": "https://packagist.org/downloads/",
  3139. "license": [
  3140. "MIT"
  3141. ],
  3142. "authors": [
  3143. {
  3144. "name": "Brian Nesbitt",
  3145. "email": "brian@nesbot.com",
  3146. "homepage": "https://markido.com"
  3147. },
  3148. {
  3149. "name": "kylekatarnls",
  3150. "homepage": "https://github.com/kylekatarnls"
  3151. }
  3152. ],
  3153. "description": "An API extension for DateTime that supports 281 different languages.",
  3154. "homepage": "https://carbon.nesbot.com",
  3155. "keywords": [
  3156. "date",
  3157. "datetime",
  3158. "time"
  3159. ],
  3160. "support": {
  3161. "docs": "https://carbon.nesbot.com/docs",
  3162. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3163. "source": "https://github.com/briannesbitt/Carbon"
  3164. },
  3165. "funding": [
  3166. {
  3167. "url": "https://github.com/sponsors/kylekatarnls",
  3168. "type": "github"
  3169. },
  3170. {
  3171. "url": "https://opencollective.com/Carbon#sponsor",
  3172. "type": "opencollective"
  3173. },
  3174. {
  3175. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3176. "type": "tidelift"
  3177. }
  3178. ],
  3179. "time": "2023-01-29T18:53:47+00:00"
  3180. },
  3181. {
  3182. "name": "nette/schema",
  3183. "version": "v1.2.3",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/nette/schema.git",
  3187. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3192. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3197. "php": ">=7.1 <8.3"
  3198. },
  3199. "require-dev": {
  3200. "nette/tester": "^2.3 || ^2.4",
  3201. "phpstan/phpstan-nette": "^1.0",
  3202. "tracy/tracy": "^2.7"
  3203. },
  3204. "type": "library",
  3205. "extra": {
  3206. "branch-alias": {
  3207. "dev-master": "1.2-dev"
  3208. }
  3209. },
  3210. "autoload": {
  3211. "classmap": [
  3212. "src/"
  3213. ]
  3214. },
  3215. "notification-url": "https://packagist.org/downloads/",
  3216. "license": [
  3217. "BSD-3-Clause",
  3218. "GPL-2.0-only",
  3219. "GPL-3.0-only"
  3220. ],
  3221. "authors": [
  3222. {
  3223. "name": "David Grudl",
  3224. "homepage": "https://davidgrudl.com"
  3225. },
  3226. {
  3227. "name": "Nette Community",
  3228. "homepage": "https://nette.org/contributors"
  3229. }
  3230. ],
  3231. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3232. "homepage": "https://nette.org",
  3233. "keywords": [
  3234. "config",
  3235. "nette"
  3236. ],
  3237. "support": {
  3238. "issues": "https://github.com/nette/schema/issues",
  3239. "source": "https://github.com/nette/schema/tree/v1.2.3"
  3240. },
  3241. "time": "2022-10-13T01:24:26+00:00"
  3242. },
  3243. {
  3244. "name": "nette/utils",
  3245. "version": "v4.0.0",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://github.com/nette/utils.git",
  3249. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3254. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3255. "shasum": ""
  3256. },
  3257. "require": {
  3258. "php": ">=8.0 <8.3"
  3259. },
  3260. "conflict": {
  3261. "nette/finder": "<3",
  3262. "nette/schema": "<1.2.2"
  3263. },
  3264. "require-dev": {
  3265. "jetbrains/phpstorm-attributes": "dev-master",
  3266. "nette/tester": "^2.4",
  3267. "phpstan/phpstan": "^1.0",
  3268. "tracy/tracy": "^2.9"
  3269. },
  3270. "suggest": {
  3271. "ext-gd": "to use Image",
  3272. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3273. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3274. "ext-json": "to use Nette\\Utils\\Json",
  3275. "ext-mbstring": "to use Strings::lower() etc...",
  3276. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3277. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "branch-alias": {
  3282. "dev-master": "4.0-dev"
  3283. }
  3284. },
  3285. "autoload": {
  3286. "classmap": [
  3287. "src/"
  3288. ]
  3289. },
  3290. "notification-url": "https://packagist.org/downloads/",
  3291. "license": [
  3292. "BSD-3-Clause",
  3293. "GPL-2.0-only",
  3294. "GPL-3.0-only"
  3295. ],
  3296. "authors": [
  3297. {
  3298. "name": "David Grudl",
  3299. "homepage": "https://davidgrudl.com"
  3300. },
  3301. {
  3302. "name": "Nette Community",
  3303. "homepage": "https://nette.org/contributors"
  3304. }
  3305. ],
  3306. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3307. "homepage": "https://nette.org",
  3308. "keywords": [
  3309. "array",
  3310. "core",
  3311. "datetime",
  3312. "images",
  3313. "json",
  3314. "nette",
  3315. "paginator",
  3316. "password",
  3317. "slugify",
  3318. "string",
  3319. "unicode",
  3320. "utf-8",
  3321. "utility",
  3322. "validation"
  3323. ],
  3324. "support": {
  3325. "issues": "https://github.com/nette/utils/issues",
  3326. "source": "https://github.com/nette/utils/tree/v4.0.0"
  3327. },
  3328. "time": "2023-02-02T10:41:53+00:00"
  3329. },
  3330. {
  3331. "name": "nikic/php-parser",
  3332. "version": "v4.15.4",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/nikic/PHP-Parser.git",
  3336. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3341. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "ext-tokenizer": "*",
  3346. "php": ">=7.0"
  3347. },
  3348. "require-dev": {
  3349. "ircmaxell/php-yacc": "^0.0.7",
  3350. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3351. },
  3352. "bin": [
  3353. "bin/php-parse"
  3354. ],
  3355. "type": "library",
  3356. "extra": {
  3357. "branch-alias": {
  3358. "dev-master": "4.9-dev"
  3359. }
  3360. },
  3361. "autoload": {
  3362. "psr-4": {
  3363. "PhpParser\\": "lib/PhpParser"
  3364. }
  3365. },
  3366. "notification-url": "https://packagist.org/downloads/",
  3367. "license": [
  3368. "BSD-3-Clause"
  3369. ],
  3370. "authors": [
  3371. {
  3372. "name": "Nikita Popov"
  3373. }
  3374. ],
  3375. "description": "A PHP parser written in PHP",
  3376. "keywords": [
  3377. "parser",
  3378. "php"
  3379. ],
  3380. "support": {
  3381. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3382. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  3383. },
  3384. "time": "2023-03-05T19:49:14+00:00"
  3385. },
  3386. {
  3387. "name": "nunomaduro/termwind",
  3388. "version": "v1.15.1",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://github.com/nunomaduro/termwind.git",
  3392. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3397. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3398. "shasum": ""
  3399. },
  3400. "require": {
  3401. "ext-mbstring": "*",
  3402. "php": "^8.0",
  3403. "symfony/console": "^5.3.0|^6.0.0"
  3404. },
  3405. "require-dev": {
  3406. "ergebnis/phpstan-rules": "^1.0.",
  3407. "illuminate/console": "^8.0|^9.0",
  3408. "illuminate/support": "^8.0|^9.0",
  3409. "laravel/pint": "^1.0.0",
  3410. "pestphp/pest": "^1.21.0",
  3411. "pestphp/pest-plugin-mock": "^1.0",
  3412. "phpstan/phpstan": "^1.4.6",
  3413. "phpstan/phpstan-strict-rules": "^1.1.0",
  3414. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3415. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3416. },
  3417. "type": "library",
  3418. "extra": {
  3419. "laravel": {
  3420. "providers": [
  3421. "Termwind\\Laravel\\TermwindServiceProvider"
  3422. ]
  3423. }
  3424. },
  3425. "autoload": {
  3426. "files": [
  3427. "src/Functions.php"
  3428. ],
  3429. "psr-4": {
  3430. "Termwind\\": "src/"
  3431. }
  3432. },
  3433. "notification-url": "https://packagist.org/downloads/",
  3434. "license": [
  3435. "MIT"
  3436. ],
  3437. "authors": [
  3438. {
  3439. "name": "Nuno Maduro",
  3440. "email": "enunomaduro@gmail.com"
  3441. }
  3442. ],
  3443. "description": "Its like Tailwind CSS, but for the console.",
  3444. "keywords": [
  3445. "cli",
  3446. "console",
  3447. "css",
  3448. "package",
  3449. "php",
  3450. "style"
  3451. ],
  3452. "support": {
  3453. "issues": "https://github.com/nunomaduro/termwind/issues",
  3454. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3455. },
  3456. "funding": [
  3457. {
  3458. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3459. "type": "custom"
  3460. },
  3461. {
  3462. "url": "https://github.com/nunomaduro",
  3463. "type": "github"
  3464. },
  3465. {
  3466. "url": "https://github.com/xiCO2k",
  3467. "type": "github"
  3468. }
  3469. ],
  3470. "time": "2023-02-08T01:06:31+00:00"
  3471. },
  3472. {
  3473. "name": "paragonie/random_compat",
  3474. "version": "v9.99.100",
  3475. "source": {
  3476. "type": "git",
  3477. "url": "https://github.com/paragonie/random_compat.git",
  3478. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3479. },
  3480. "dist": {
  3481. "type": "zip",
  3482. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3483. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3484. "shasum": ""
  3485. },
  3486. "require": {
  3487. "php": ">= 7"
  3488. },
  3489. "require-dev": {
  3490. "phpunit/phpunit": "4.*|5.*",
  3491. "vimeo/psalm": "^1"
  3492. },
  3493. "suggest": {
  3494. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3495. },
  3496. "type": "library",
  3497. "notification-url": "https://packagist.org/downloads/",
  3498. "license": [
  3499. "MIT"
  3500. ],
  3501. "authors": [
  3502. {
  3503. "name": "Paragon Initiative Enterprises",
  3504. "email": "security@paragonie.com",
  3505. "homepage": "https://paragonie.com"
  3506. }
  3507. ],
  3508. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3509. "keywords": [
  3510. "csprng",
  3511. "polyfill",
  3512. "pseudorandom",
  3513. "random"
  3514. ],
  3515. "support": {
  3516. "email": "info@paragonie.com",
  3517. "issues": "https://github.com/paragonie/random_compat/issues",
  3518. "source": "https://github.com/paragonie/random_compat"
  3519. },
  3520. "time": "2020-10-15T08:29:30+00:00"
  3521. },
  3522. {
  3523. "name": "paypal/paypal-checkout-sdk",
  3524. "version": "1.0.2",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://github.com/paypal/Checkout-PHP-SDK.git",
  3528. "reference": "19992ce7051ff9e47e643f28abb8cc1b3e5f1812"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://api.github.com/repos/paypal/Checkout-PHP-SDK/zipball/19992ce7051ff9e47e643f28abb8cc1b3e5f1812",
  3533. "reference": "19992ce7051ff9e47e643f28abb8cc1b3e5f1812",
  3534. "shasum": ""
  3535. },
  3536. "require": {
  3537. "paypal/paypalhttp": "1.0.1"
  3538. },
  3539. "require-dev": {
  3540. "phpunit/phpunit": "^5.7"
  3541. },
  3542. "type": "library",
  3543. "autoload": {
  3544. "psr-4": {
  3545. "Sample\\": "samples/",
  3546. "PayPalCheckoutSdk\\": "lib/PayPalCheckoutSdk"
  3547. }
  3548. },
  3549. "notification-url": "https://packagist.org/downloads/",
  3550. "license": [
  3551. "https://github.com/paypal/Checkout-PHP-SDK/blob/master/LICENSE"
  3552. ],
  3553. "authors": [
  3554. {
  3555. "name": "PayPal",
  3556. "homepage": "https://github.com/paypal/Checkout-PHP-SDK/contributors"
  3557. }
  3558. ],
  3559. "description": "PayPal's PHP SDK for Checkout REST APIs",
  3560. "homepage": "http://github.com/paypal/Checkout-PHP-SDK/",
  3561. "keywords": [
  3562. "checkout",
  3563. "orders",
  3564. "payments",
  3565. "paypal",
  3566. "rest",
  3567. "sdk"
  3568. ],
  3569. "support": {
  3570. "source": "https://github.com/paypal/Checkout-PHP-SDK/tree/1.0.2"
  3571. },
  3572. "abandoned": true,
  3573. "time": "2021-09-21T20:57:38+00:00"
  3574. },
  3575. {
  3576. "name": "paypal/paypalhttp",
  3577. "version": "1.0.1",
  3578. "source": {
  3579. "type": "git",
  3580. "url": "https://github.com/paypal/paypalhttp_php.git",
  3581. "reference": "7b09c89c80828e842c79230e7f156b61fbb68d25"
  3582. },
  3583. "dist": {
  3584. "type": "zip",
  3585. "url": "https://api.github.com/repos/paypal/paypalhttp_php/zipball/7b09c89c80828e842c79230e7f156b61fbb68d25",
  3586. "reference": "7b09c89c80828e842c79230e7f156b61fbb68d25",
  3587. "shasum": ""
  3588. },
  3589. "require": {
  3590. "ext-curl": "*"
  3591. },
  3592. "require-dev": {
  3593. "phpunit/phpunit": "^5.7",
  3594. "wiremock-php/wiremock-php": "1.43.2"
  3595. },
  3596. "type": "library",
  3597. "autoload": {
  3598. "psr-4": {
  3599. "PayPalHttp\\": "lib/PayPalHttp"
  3600. }
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "MIT"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "PayPal",
  3609. "homepage": "https://github.com/paypal/paypalhttp_php/contributors"
  3610. }
  3611. ],
  3612. "support": {
  3613. "issues": "https://github.com/paypal/paypalhttp_php/issues",
  3614. "source": "https://github.com/paypal/paypalhttp_php/tree/1.0.1"
  3615. },
  3616. "time": "2021-09-14T21:35:26+00:00"
  3617. },
  3618. {
  3619. "name": "paypal/rest-api-sdk-php",
  3620. "version": "1.14.0",
  3621. "source": {
  3622. "type": "git",
  3623. "url": "https://github.com/paypal/PayPal-PHP-SDK.git",
  3624. "reference": "72e2f2466975bf128a31e02b15110180f059fc04"
  3625. },
  3626. "dist": {
  3627. "type": "zip",
  3628. "url": "https://api.github.com/repos/paypal/PayPal-PHP-SDK/zipball/72e2f2466975bf128a31e02b15110180f059fc04",
  3629. "reference": "72e2f2466975bf128a31e02b15110180f059fc04",
  3630. "shasum": ""
  3631. },
  3632. "require": {
  3633. "ext-curl": "*",
  3634. "ext-json": "*",
  3635. "php": ">=5.3.0",
  3636. "psr/log": "^1.0.0"
  3637. },
  3638. "require-dev": {
  3639. "phpunit/phpunit": "^4.8.35"
  3640. },
  3641. "type": "library",
  3642. "autoload": {
  3643. "psr-0": {
  3644. "PayPal": "lib/"
  3645. }
  3646. },
  3647. "notification-url": "https://packagist.org/downloads/",
  3648. "license": [
  3649. "Apache-2.0"
  3650. ],
  3651. "authors": [
  3652. {
  3653. "name": "PayPal",
  3654. "homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
  3655. }
  3656. ],
  3657. "description": "PayPal's PHP SDK for REST APIs",
  3658. "homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
  3659. "keywords": [
  3660. "payments",
  3661. "paypal",
  3662. "rest",
  3663. "sdk"
  3664. ],
  3665. "support": {
  3666. "issues": "https://github.com/paypal/PayPal-PHP-SDK/issues",
  3667. "source": "https://github.com/paypal/PayPal-PHP-SDK/tree/master"
  3668. },
  3669. "abandoned": true,
  3670. "time": "2019-01-04T20:04:25+00:00"
  3671. },
  3672. {
  3673. "name": "phenx/php-font-lib",
  3674. "version": "0.5.4",
  3675. "source": {
  3676. "type": "git",
  3677. "url": "https://github.com/dompdf/php-font-lib.git",
  3678. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  3679. },
  3680. "dist": {
  3681. "type": "zip",
  3682. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  3683. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  3684. "shasum": ""
  3685. },
  3686. "require": {
  3687. "ext-mbstring": "*"
  3688. },
  3689. "require-dev": {
  3690. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  3691. },
  3692. "type": "library",
  3693. "autoload": {
  3694. "psr-4": {
  3695. "FontLib\\": "src/FontLib"
  3696. }
  3697. },
  3698. "notification-url": "https://packagist.org/downloads/",
  3699. "license": [
  3700. "LGPL-3.0"
  3701. ],
  3702. "authors": [
  3703. {
  3704. "name": "Fabien Ménager",
  3705. "email": "fabien.menager@gmail.com"
  3706. }
  3707. ],
  3708. "description": "A library to read, parse, export and make subsets of different types of font files.",
  3709. "homepage": "https://github.com/PhenX/php-font-lib",
  3710. "support": {
  3711. "issues": "https://github.com/dompdf/php-font-lib/issues",
  3712. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  3713. },
  3714. "time": "2021-12-17T19:44:54+00:00"
  3715. },
  3716. {
  3717. "name": "phenx/php-svg-lib",
  3718. "version": "0.5.0",
  3719. "source": {
  3720. "type": "git",
  3721. "url": "https://github.com/dompdf/php-svg-lib.git",
  3722. "reference": "76876c6cf3080bcb6f249d7d59705108166a6685"
  3723. },
  3724. "dist": {
  3725. "type": "zip",
  3726. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/76876c6cf3080bcb6f249d7d59705108166a6685",
  3727. "reference": "76876c6cf3080bcb6f249d7d59705108166a6685",
  3728. "shasum": ""
  3729. },
  3730. "require": {
  3731. "ext-mbstring": "*",
  3732. "php": "^7.1 || ^8.0",
  3733. "sabberworm/php-css-parser": "^8.4"
  3734. },
  3735. "require-dev": {
  3736. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  3737. },
  3738. "type": "library",
  3739. "autoload": {
  3740. "psr-4": {
  3741. "Svg\\": "src/Svg"
  3742. }
  3743. },
  3744. "notification-url": "https://packagist.org/downloads/",
  3745. "license": [
  3746. "LGPL-3.0"
  3747. ],
  3748. "authors": [
  3749. {
  3750. "name": "Fabien Ménager",
  3751. "email": "fabien.menager@gmail.com"
  3752. }
  3753. ],
  3754. "description": "A library to read, parse and export to PDF SVG files.",
  3755. "homepage": "https://github.com/PhenX/php-svg-lib",
  3756. "support": {
  3757. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  3758. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.0"
  3759. },
  3760. "time": "2022-09-06T12:16:56+00:00"
  3761. },
  3762. {
  3763. "name": "phpdocumentor/reflection-common",
  3764. "version": "2.2.0",
  3765. "source": {
  3766. "type": "git",
  3767. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3768. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3769. },
  3770. "dist": {
  3771. "type": "zip",
  3772. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3773. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3774. "shasum": ""
  3775. },
  3776. "require": {
  3777. "php": "^7.2 || ^8.0"
  3778. },
  3779. "type": "library",
  3780. "extra": {
  3781. "branch-alias": {
  3782. "dev-2.x": "2.x-dev"
  3783. }
  3784. },
  3785. "autoload": {
  3786. "psr-4": {
  3787. "phpDocumentor\\Reflection\\": "src/"
  3788. }
  3789. },
  3790. "notification-url": "https://packagist.org/downloads/",
  3791. "license": [
  3792. "MIT"
  3793. ],
  3794. "authors": [
  3795. {
  3796. "name": "Jaap van Otterdijk",
  3797. "email": "opensource@ijaap.nl"
  3798. }
  3799. ],
  3800. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3801. "homepage": "http://www.phpdoc.org",
  3802. "keywords": [
  3803. "FQSEN",
  3804. "phpDocumentor",
  3805. "phpdoc",
  3806. "reflection",
  3807. "static analysis"
  3808. ],
  3809. "support": {
  3810. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3811. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3812. },
  3813. "time": "2020-06-27T09:03:43+00:00"
  3814. },
  3815. {
  3816. "name": "phpdocumentor/type-resolver",
  3817. "version": "1.7.1",
  3818. "source": {
  3819. "type": "git",
  3820. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3821. "reference": "dfc078e8af9c99210337325ff5aa152872c98714"
  3822. },
  3823. "dist": {
  3824. "type": "zip",
  3825. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
  3826. "reference": "dfc078e8af9c99210337325ff5aa152872c98714",
  3827. "shasum": ""
  3828. },
  3829. "require": {
  3830. "doctrine/deprecations": "^1.0",
  3831. "php": "^7.4 || ^8.0",
  3832. "phpdocumentor/reflection-common": "^2.0",
  3833. "phpstan/phpdoc-parser": "^1.13"
  3834. },
  3835. "require-dev": {
  3836. "ext-tokenizer": "*",
  3837. "phpbench/phpbench": "^1.2",
  3838. "phpstan/extension-installer": "^1.1",
  3839. "phpstan/phpstan": "^1.8",
  3840. "phpstan/phpstan-phpunit": "^1.1",
  3841. "phpunit/phpunit": "^9.5",
  3842. "rector/rector": "^0.13.9",
  3843. "vimeo/psalm": "^4.25"
  3844. },
  3845. "type": "library",
  3846. "extra": {
  3847. "branch-alias": {
  3848. "dev-1.x": "1.x-dev"
  3849. }
  3850. },
  3851. "autoload": {
  3852. "psr-4": {
  3853. "phpDocumentor\\Reflection\\": "src"
  3854. }
  3855. },
  3856. "notification-url": "https://packagist.org/downloads/",
  3857. "license": [
  3858. "MIT"
  3859. ],
  3860. "authors": [
  3861. {
  3862. "name": "Mike van Riel",
  3863. "email": "me@mikevanriel.com"
  3864. }
  3865. ],
  3866. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3867. "support": {
  3868. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3869. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
  3870. },
  3871. "time": "2023-03-27T19:02:04+00:00"
  3872. },
  3873. {
  3874. "name": "phpoption/phpoption",
  3875. "version": "1.9.1",
  3876. "source": {
  3877. "type": "git",
  3878. "url": "https://github.com/schmittjoh/php-option.git",
  3879. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3880. },
  3881. "dist": {
  3882. "type": "zip",
  3883. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3884. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3885. "shasum": ""
  3886. },
  3887. "require": {
  3888. "php": "^7.2.5 || ^8.0"
  3889. },
  3890. "require-dev": {
  3891. "bamarni/composer-bin-plugin": "^1.8.2",
  3892. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  3893. },
  3894. "type": "library",
  3895. "extra": {
  3896. "bamarni-bin": {
  3897. "bin-links": true,
  3898. "forward-command": true
  3899. },
  3900. "branch-alias": {
  3901. "dev-master": "1.9-dev"
  3902. }
  3903. },
  3904. "autoload": {
  3905. "psr-4": {
  3906. "PhpOption\\": "src/PhpOption/"
  3907. }
  3908. },
  3909. "notification-url": "https://packagist.org/downloads/",
  3910. "license": [
  3911. "Apache-2.0"
  3912. ],
  3913. "authors": [
  3914. {
  3915. "name": "Johannes M. Schmitt",
  3916. "email": "schmittjoh@gmail.com",
  3917. "homepage": "https://github.com/schmittjoh"
  3918. },
  3919. {
  3920. "name": "Graham Campbell",
  3921. "email": "hello@gjcampbell.co.uk",
  3922. "homepage": "https://github.com/GrahamCampbell"
  3923. }
  3924. ],
  3925. "description": "Option Type for PHP",
  3926. "keywords": [
  3927. "language",
  3928. "option",
  3929. "php",
  3930. "type"
  3931. ],
  3932. "support": {
  3933. "issues": "https://github.com/schmittjoh/php-option/issues",
  3934. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3935. },
  3936. "funding": [
  3937. {
  3938. "url": "https://github.com/GrahamCampbell",
  3939. "type": "github"
  3940. },
  3941. {
  3942. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3943. "type": "tidelift"
  3944. }
  3945. ],
  3946. "time": "2023-02-25T19:38:58+00:00"
  3947. },
  3948. {
  3949. "name": "phpstan/phpdoc-parser",
  3950. "version": "1.20.3",
  3951. "source": {
  3952. "type": "git",
  3953. "url": "https://github.com/phpstan/phpdoc-parser.git",
  3954. "reference": "6c04009f6cae6eda2f040745b6b846080ef069c2"
  3955. },
  3956. "dist": {
  3957. "type": "zip",
  3958. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/6c04009f6cae6eda2f040745b6b846080ef069c2",
  3959. "reference": "6c04009f6cae6eda2f040745b6b846080ef069c2",
  3960. "shasum": ""
  3961. },
  3962. "require": {
  3963. "php": "^7.2 || ^8.0"
  3964. },
  3965. "require-dev": {
  3966. "php-parallel-lint/php-parallel-lint": "^1.2",
  3967. "phpstan/extension-installer": "^1.0",
  3968. "phpstan/phpstan": "^1.5",
  3969. "phpstan/phpstan-phpunit": "^1.1",
  3970. "phpstan/phpstan-strict-rules": "^1.0",
  3971. "phpunit/phpunit": "^9.5",
  3972. "symfony/process": "^5.2"
  3973. },
  3974. "type": "library",
  3975. "autoload": {
  3976. "psr-4": {
  3977. "PHPStan\\PhpDocParser\\": [
  3978. "src/"
  3979. ]
  3980. }
  3981. },
  3982. "notification-url": "https://packagist.org/downloads/",
  3983. "license": [
  3984. "MIT"
  3985. ],
  3986. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  3987. "support": {
  3988. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  3989. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.20.3"
  3990. },
  3991. "time": "2023-04-25T09:01:03+00:00"
  3992. },
  3993. {
  3994. "name": "predis/predis",
  3995. "version": "v2.1.2",
  3996. "source": {
  3997. "type": "git",
  3998. "url": "https://github.com/predis/predis.git",
  3999. "reference": "a77a43913a74f9331f637bb12867eb8e274814e5"
  4000. },
  4001. "dist": {
  4002. "type": "zip",
  4003. "url": "https://api.github.com/repos/predis/predis/zipball/a77a43913a74f9331f637bb12867eb8e274814e5",
  4004. "reference": "a77a43913a74f9331f637bb12867eb8e274814e5",
  4005. "shasum": ""
  4006. },
  4007. "require": {
  4008. "php": "^7.2 || ^8.0"
  4009. },
  4010. "require-dev": {
  4011. "friendsofphp/php-cs-fixer": "^3.3",
  4012. "phpstan/phpstan": "^1.9",
  4013. "phpunit/phpunit": "^8.0 || ~9.4.4"
  4014. },
  4015. "type": "library",
  4016. "autoload": {
  4017. "psr-4": {
  4018. "Predis\\": "src/"
  4019. }
  4020. },
  4021. "notification-url": "https://packagist.org/downloads/",
  4022. "license": [
  4023. "MIT"
  4024. ],
  4025. "authors": [
  4026. {
  4027. "name": "Till Krüss",
  4028. "homepage": "https://till.im",
  4029. "role": "Maintainer"
  4030. }
  4031. ],
  4032. "description": "A flexible and feature-complete Redis client for PHP.",
  4033. "homepage": "http://github.com/predis/predis",
  4034. "keywords": [
  4035. "nosql",
  4036. "predis",
  4037. "redis"
  4038. ],
  4039. "support": {
  4040. "issues": "https://github.com/predis/predis/issues",
  4041. "source": "https://github.com/predis/predis/tree/v2.1.2"
  4042. },
  4043. "funding": [
  4044. {
  4045. "url": "https://github.com/sponsors/tillkruss",
  4046. "type": "github"
  4047. }
  4048. ],
  4049. "time": "2023-03-02T18:32:04+00:00"
  4050. },
  4051. {
  4052. "name": "psr/cache",
  4053. "version": "3.0.0",
  4054. "source": {
  4055. "type": "git",
  4056. "url": "https://github.com/php-fig/cache.git",
  4057. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4058. },
  4059. "dist": {
  4060. "type": "zip",
  4061. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4062. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4063. "shasum": ""
  4064. },
  4065. "require": {
  4066. "php": ">=8.0.0"
  4067. },
  4068. "type": "library",
  4069. "extra": {
  4070. "branch-alias": {
  4071. "dev-master": "1.0.x-dev"
  4072. }
  4073. },
  4074. "autoload": {
  4075. "psr-4": {
  4076. "Psr\\Cache\\": "src/"
  4077. }
  4078. },
  4079. "notification-url": "https://packagist.org/downloads/",
  4080. "license": [
  4081. "MIT"
  4082. ],
  4083. "authors": [
  4084. {
  4085. "name": "PHP-FIG",
  4086. "homepage": "https://www.php-fig.org/"
  4087. }
  4088. ],
  4089. "description": "Common interface for caching libraries",
  4090. "keywords": [
  4091. "cache",
  4092. "psr",
  4093. "psr-6"
  4094. ],
  4095. "support": {
  4096. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4097. },
  4098. "time": "2021-02-03T23:26:27+00:00"
  4099. },
  4100. {
  4101. "name": "psr/container",
  4102. "version": "2.0.2",
  4103. "source": {
  4104. "type": "git",
  4105. "url": "https://github.com/php-fig/container.git",
  4106. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4107. },
  4108. "dist": {
  4109. "type": "zip",
  4110. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4111. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4112. "shasum": ""
  4113. },
  4114. "require": {
  4115. "php": ">=7.4.0"
  4116. },
  4117. "type": "library",
  4118. "extra": {
  4119. "branch-alias": {
  4120. "dev-master": "2.0.x-dev"
  4121. }
  4122. },
  4123. "autoload": {
  4124. "psr-4": {
  4125. "Psr\\Container\\": "src/"
  4126. }
  4127. },
  4128. "notification-url": "https://packagist.org/downloads/",
  4129. "license": [
  4130. "MIT"
  4131. ],
  4132. "authors": [
  4133. {
  4134. "name": "PHP-FIG",
  4135. "homepage": "https://www.php-fig.org/"
  4136. }
  4137. ],
  4138. "description": "Common Container Interface (PHP FIG PSR-11)",
  4139. "homepage": "https://github.com/php-fig/container",
  4140. "keywords": [
  4141. "PSR-11",
  4142. "container",
  4143. "container-interface",
  4144. "container-interop",
  4145. "psr"
  4146. ],
  4147. "support": {
  4148. "issues": "https://github.com/php-fig/container/issues",
  4149. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4150. },
  4151. "time": "2021-11-05T16:47:00+00:00"
  4152. },
  4153. {
  4154. "name": "psr/event-dispatcher",
  4155. "version": "1.0.0",
  4156. "source": {
  4157. "type": "git",
  4158. "url": "https://github.com/php-fig/event-dispatcher.git",
  4159. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4160. },
  4161. "dist": {
  4162. "type": "zip",
  4163. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4164. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4165. "shasum": ""
  4166. },
  4167. "require": {
  4168. "php": ">=7.2.0"
  4169. },
  4170. "type": "library",
  4171. "extra": {
  4172. "branch-alias": {
  4173. "dev-master": "1.0.x-dev"
  4174. }
  4175. },
  4176. "autoload": {
  4177. "psr-4": {
  4178. "Psr\\EventDispatcher\\": "src/"
  4179. }
  4180. },
  4181. "notification-url": "https://packagist.org/downloads/",
  4182. "license": [
  4183. "MIT"
  4184. ],
  4185. "authors": [
  4186. {
  4187. "name": "PHP-FIG",
  4188. "homepage": "http://www.php-fig.org/"
  4189. }
  4190. ],
  4191. "description": "Standard interfaces for event handling.",
  4192. "keywords": [
  4193. "events",
  4194. "psr",
  4195. "psr-14"
  4196. ],
  4197. "support": {
  4198. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4199. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4200. },
  4201. "time": "2019-01-08T18:20:26+00:00"
  4202. },
  4203. {
  4204. "name": "psr/http-client",
  4205. "version": "1.0.2",
  4206. "source": {
  4207. "type": "git",
  4208. "url": "https://github.com/php-fig/http-client.git",
  4209. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  4210. },
  4211. "dist": {
  4212. "type": "zip",
  4213. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4214. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4215. "shasum": ""
  4216. },
  4217. "require": {
  4218. "php": "^7.0 || ^8.0",
  4219. "psr/http-message": "^1.0 || ^2.0"
  4220. },
  4221. "type": "library",
  4222. "extra": {
  4223. "branch-alias": {
  4224. "dev-master": "1.0.x-dev"
  4225. }
  4226. },
  4227. "autoload": {
  4228. "psr-4": {
  4229. "Psr\\Http\\Client\\": "src/"
  4230. }
  4231. },
  4232. "notification-url": "https://packagist.org/downloads/",
  4233. "license": [
  4234. "MIT"
  4235. ],
  4236. "authors": [
  4237. {
  4238. "name": "PHP-FIG",
  4239. "homepage": "https://www.php-fig.org/"
  4240. }
  4241. ],
  4242. "description": "Common interface for HTTP clients",
  4243. "homepage": "https://github.com/php-fig/http-client",
  4244. "keywords": [
  4245. "http",
  4246. "http-client",
  4247. "psr",
  4248. "psr-18"
  4249. ],
  4250. "support": {
  4251. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  4252. },
  4253. "time": "2023-04-10T20:12:12+00:00"
  4254. },
  4255. {
  4256. "name": "psr/http-factory",
  4257. "version": "1.0.2",
  4258. "source": {
  4259. "type": "git",
  4260. "url": "https://github.com/php-fig/http-factory.git",
  4261. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4262. },
  4263. "dist": {
  4264. "type": "zip",
  4265. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4266. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4267. "shasum": ""
  4268. },
  4269. "require": {
  4270. "php": ">=7.0.0",
  4271. "psr/http-message": "^1.0 || ^2.0"
  4272. },
  4273. "type": "library",
  4274. "extra": {
  4275. "branch-alias": {
  4276. "dev-master": "1.0.x-dev"
  4277. }
  4278. },
  4279. "autoload": {
  4280. "psr-4": {
  4281. "Psr\\Http\\Message\\": "src/"
  4282. }
  4283. },
  4284. "notification-url": "https://packagist.org/downloads/",
  4285. "license": [
  4286. "MIT"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "PHP-FIG",
  4291. "homepage": "https://www.php-fig.org/"
  4292. }
  4293. ],
  4294. "description": "Common interfaces for PSR-7 HTTP message factories",
  4295. "keywords": [
  4296. "factory",
  4297. "http",
  4298. "message",
  4299. "psr",
  4300. "psr-17",
  4301. "psr-7",
  4302. "request",
  4303. "response"
  4304. ],
  4305. "support": {
  4306. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4307. },
  4308. "time": "2023-04-10T20:10:41+00:00"
  4309. },
  4310. {
  4311. "name": "psr/http-message",
  4312. "version": "2.0",
  4313. "source": {
  4314. "type": "git",
  4315. "url": "https://github.com/php-fig/http-message.git",
  4316. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4317. },
  4318. "dist": {
  4319. "type": "zip",
  4320. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4321. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4322. "shasum": ""
  4323. },
  4324. "require": {
  4325. "php": "^7.2 || ^8.0"
  4326. },
  4327. "type": "library",
  4328. "extra": {
  4329. "branch-alias": {
  4330. "dev-master": "2.0.x-dev"
  4331. }
  4332. },
  4333. "autoload": {
  4334. "psr-4": {
  4335. "Psr\\Http\\Message\\": "src/"
  4336. }
  4337. },
  4338. "notification-url": "https://packagist.org/downloads/",
  4339. "license": [
  4340. "MIT"
  4341. ],
  4342. "authors": [
  4343. {
  4344. "name": "PHP-FIG",
  4345. "homepage": "https://www.php-fig.org/"
  4346. }
  4347. ],
  4348. "description": "Common interface for HTTP messages",
  4349. "homepage": "https://github.com/php-fig/http-message",
  4350. "keywords": [
  4351. "http",
  4352. "http-message",
  4353. "psr",
  4354. "psr-7",
  4355. "request",
  4356. "response"
  4357. ],
  4358. "support": {
  4359. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4360. },
  4361. "time": "2023-04-04T09:54:51+00:00"
  4362. },
  4363. {
  4364. "name": "psr/log",
  4365. "version": "1.1.4",
  4366. "source": {
  4367. "type": "git",
  4368. "url": "https://github.com/php-fig/log.git",
  4369. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4370. },
  4371. "dist": {
  4372. "type": "zip",
  4373. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4374. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4375. "shasum": ""
  4376. },
  4377. "require": {
  4378. "php": ">=5.3.0"
  4379. },
  4380. "type": "library",
  4381. "extra": {
  4382. "branch-alias": {
  4383. "dev-master": "1.1.x-dev"
  4384. }
  4385. },
  4386. "autoload": {
  4387. "psr-4": {
  4388. "Psr\\Log\\": "Psr/Log/"
  4389. }
  4390. },
  4391. "notification-url": "https://packagist.org/downloads/",
  4392. "license": [
  4393. "MIT"
  4394. ],
  4395. "authors": [
  4396. {
  4397. "name": "PHP-FIG",
  4398. "homepage": "https://www.php-fig.org/"
  4399. }
  4400. ],
  4401. "description": "Common interface for logging libraries",
  4402. "homepage": "https://github.com/php-fig/log",
  4403. "keywords": [
  4404. "log",
  4405. "psr",
  4406. "psr-3"
  4407. ],
  4408. "support": {
  4409. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4410. },
  4411. "time": "2021-05-03T11:20:27+00:00"
  4412. },
  4413. {
  4414. "name": "psr/simple-cache",
  4415. "version": "3.0.0",
  4416. "source": {
  4417. "type": "git",
  4418. "url": "https://github.com/php-fig/simple-cache.git",
  4419. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4420. },
  4421. "dist": {
  4422. "type": "zip",
  4423. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4424. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4425. "shasum": ""
  4426. },
  4427. "require": {
  4428. "php": ">=8.0.0"
  4429. },
  4430. "type": "library",
  4431. "extra": {
  4432. "branch-alias": {
  4433. "dev-master": "3.0.x-dev"
  4434. }
  4435. },
  4436. "autoload": {
  4437. "psr-4": {
  4438. "Psr\\SimpleCache\\": "src/"
  4439. }
  4440. },
  4441. "notification-url": "https://packagist.org/downloads/",
  4442. "license": [
  4443. "MIT"
  4444. ],
  4445. "authors": [
  4446. {
  4447. "name": "PHP-FIG",
  4448. "homepage": "https://www.php-fig.org/"
  4449. }
  4450. ],
  4451. "description": "Common interfaces for simple caching",
  4452. "keywords": [
  4453. "cache",
  4454. "caching",
  4455. "psr",
  4456. "psr-16",
  4457. "simple-cache"
  4458. ],
  4459. "support": {
  4460. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4461. },
  4462. "time": "2021-10-29T13:26:27+00:00"
  4463. },
  4464. {
  4465. "name": "psy/psysh",
  4466. "version": "v0.11.16",
  4467. "source": {
  4468. "type": "git",
  4469. "url": "https://github.com/bobthecow/psysh.git",
  4470. "reference": "151b145906804eea8e5d71fea23bfb470c904bfb"
  4471. },
  4472. "dist": {
  4473. "type": "zip",
  4474. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/151b145906804eea8e5d71fea23bfb470c904bfb",
  4475. "reference": "151b145906804eea8e5d71fea23bfb470c904bfb",
  4476. "shasum": ""
  4477. },
  4478. "require": {
  4479. "ext-json": "*",
  4480. "ext-tokenizer": "*",
  4481. "nikic/php-parser": "^4.0 || ^3.1",
  4482. "php": "^8.0 || ^7.0.8",
  4483. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4484. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4485. },
  4486. "conflict": {
  4487. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4488. },
  4489. "require-dev": {
  4490. "bamarni/composer-bin-plugin": "^1.2"
  4491. },
  4492. "suggest": {
  4493. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4494. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4495. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4496. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4497. },
  4498. "bin": [
  4499. "bin/psysh"
  4500. ],
  4501. "type": "library",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-main": "0.11.x-dev"
  4505. }
  4506. },
  4507. "autoload": {
  4508. "files": [
  4509. "src/functions.php"
  4510. ],
  4511. "psr-4": {
  4512. "Psy\\": "src/"
  4513. }
  4514. },
  4515. "notification-url": "https://packagist.org/downloads/",
  4516. "license": [
  4517. "MIT"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "Justin Hileman",
  4522. "email": "justin@justinhileman.info",
  4523. "homepage": "http://justinhileman.com"
  4524. }
  4525. ],
  4526. "description": "An interactive shell for modern PHP.",
  4527. "homepage": "http://psysh.org",
  4528. "keywords": [
  4529. "REPL",
  4530. "console",
  4531. "interactive",
  4532. "shell"
  4533. ],
  4534. "support": {
  4535. "issues": "https://github.com/bobthecow/psysh/issues",
  4536. "source": "https://github.com/bobthecow/psysh/tree/v0.11.16"
  4537. },
  4538. "time": "2023-04-26T12:53:57+00:00"
  4539. },
  4540. {
  4541. "name": "qirolab/laravel-themer",
  4542. "version": "2.1.0",
  4543. "source": {
  4544. "type": "git",
  4545. "url": "https://github.com/qirolab/laravel-themer.git",
  4546. "reference": "f643b371411e063fb0d42bffb1586df6ec70972b"
  4547. },
  4548. "dist": {
  4549. "type": "zip",
  4550. "url": "https://api.github.com/repos/qirolab/laravel-themer/zipball/f643b371411e063fb0d42bffb1586df6ec70972b",
  4551. "reference": "f643b371411e063fb0d42bffb1586df6ec70972b",
  4552. "shasum": ""
  4553. },
  4554. "require": {
  4555. "facade/ignition-contracts": "^1.0",
  4556. "illuminate/support": "^9.19|^10.0",
  4557. "php": ">=7.1.0"
  4558. },
  4559. "require-dev": {
  4560. "orchestra/testbench": "^7.0|^8.0",
  4561. "phpunit/phpunit": "^8.3|^9.0",
  4562. "vimeo/psalm": "^4.0"
  4563. },
  4564. "type": "library",
  4565. "extra": {
  4566. "laravel": {
  4567. "providers": [
  4568. "Qirolab\\Theme\\ThemeServiceProvider"
  4569. ]
  4570. }
  4571. },
  4572. "autoload": {
  4573. "psr-4": {
  4574. "Qirolab\\Theme\\": "src",
  4575. "Qirolab\\Theme\\Database\\Factories\\": "database/factories"
  4576. }
  4577. },
  4578. "notification-url": "https://packagist.org/downloads/",
  4579. "license": [
  4580. "MIT"
  4581. ],
  4582. "authors": [
  4583. {
  4584. "name": "Harish Kumar",
  4585. "email": "harish@qirolab.com",
  4586. "homepage": "https://qirolab.com",
  4587. "role": "Developer"
  4588. }
  4589. ],
  4590. "description": "A Laravel theme manager, that will help you organize and maintain your themes inside Laravel projects.",
  4591. "homepage": "https://qirolab.com",
  4592. "keywords": [
  4593. "laravel",
  4594. "laravel-theme",
  4595. "qirolab",
  4596. "theme"
  4597. ],
  4598. "support": {
  4599. "issues": "https://github.com/qirolab/laravel-themer/issues",
  4600. "source": "https://github.com/qirolab/laravel-themer/tree/2.1.0"
  4601. },
  4602. "funding": [
  4603. {
  4604. "url": "https://www.buymeacoffee.com/qirolab",
  4605. "type": "other"
  4606. }
  4607. ],
  4608. "time": "2023-02-14T12:31:27+00:00"
  4609. },
  4610. {
  4611. "name": "ralouphie/getallheaders",
  4612. "version": "3.0.3",
  4613. "source": {
  4614. "type": "git",
  4615. "url": "https://github.com/ralouphie/getallheaders.git",
  4616. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4617. },
  4618. "dist": {
  4619. "type": "zip",
  4620. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4621. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4622. "shasum": ""
  4623. },
  4624. "require": {
  4625. "php": ">=5.6"
  4626. },
  4627. "require-dev": {
  4628. "php-coveralls/php-coveralls": "^2.1",
  4629. "phpunit/phpunit": "^5 || ^6.5"
  4630. },
  4631. "type": "library",
  4632. "autoload": {
  4633. "files": [
  4634. "src/getallheaders.php"
  4635. ]
  4636. },
  4637. "notification-url": "https://packagist.org/downloads/",
  4638. "license": [
  4639. "MIT"
  4640. ],
  4641. "authors": [
  4642. {
  4643. "name": "Ralph Khattar",
  4644. "email": "ralph.khattar@gmail.com"
  4645. }
  4646. ],
  4647. "description": "A polyfill for getallheaders.",
  4648. "support": {
  4649. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4650. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4651. },
  4652. "time": "2019-03-08T08:55:37+00:00"
  4653. },
  4654. {
  4655. "name": "ramsey/collection",
  4656. "version": "2.0.0",
  4657. "source": {
  4658. "type": "git",
  4659. "url": "https://github.com/ramsey/collection.git",
  4660. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4661. },
  4662. "dist": {
  4663. "type": "zip",
  4664. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4665. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4666. "shasum": ""
  4667. },
  4668. "require": {
  4669. "php": "^8.1"
  4670. },
  4671. "require-dev": {
  4672. "captainhook/plugin-composer": "^5.3",
  4673. "ergebnis/composer-normalize": "^2.28.3",
  4674. "fakerphp/faker": "^1.21",
  4675. "hamcrest/hamcrest-php": "^2.0",
  4676. "jangregor/phpstan-prophecy": "^1.0",
  4677. "mockery/mockery": "^1.5",
  4678. "php-parallel-lint/php-console-highlighter": "^1.0",
  4679. "php-parallel-lint/php-parallel-lint": "^1.3",
  4680. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4681. "phpspec/prophecy-phpunit": "^2.0",
  4682. "phpstan/extension-installer": "^1.2",
  4683. "phpstan/phpstan": "^1.9",
  4684. "phpstan/phpstan-mockery": "^1.1",
  4685. "phpstan/phpstan-phpunit": "^1.3",
  4686. "phpunit/phpunit": "^9.5",
  4687. "psalm/plugin-mockery": "^1.1",
  4688. "psalm/plugin-phpunit": "^0.18.4",
  4689. "ramsey/coding-standard": "^2.0.3",
  4690. "ramsey/conventional-commits": "^1.3",
  4691. "vimeo/psalm": "^5.4"
  4692. },
  4693. "type": "library",
  4694. "extra": {
  4695. "captainhook": {
  4696. "force-install": true
  4697. },
  4698. "ramsey/conventional-commits": {
  4699. "configFile": "conventional-commits.json"
  4700. }
  4701. },
  4702. "autoload": {
  4703. "psr-4": {
  4704. "Ramsey\\Collection\\": "src/"
  4705. }
  4706. },
  4707. "notification-url": "https://packagist.org/downloads/",
  4708. "license": [
  4709. "MIT"
  4710. ],
  4711. "authors": [
  4712. {
  4713. "name": "Ben Ramsey",
  4714. "email": "ben@benramsey.com",
  4715. "homepage": "https://benramsey.com"
  4716. }
  4717. ],
  4718. "description": "A PHP library for representing and manipulating collections.",
  4719. "keywords": [
  4720. "array",
  4721. "collection",
  4722. "hash",
  4723. "map",
  4724. "queue",
  4725. "set"
  4726. ],
  4727. "support": {
  4728. "issues": "https://github.com/ramsey/collection/issues",
  4729. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4730. },
  4731. "funding": [
  4732. {
  4733. "url": "https://github.com/ramsey",
  4734. "type": "github"
  4735. },
  4736. {
  4737. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4738. "type": "tidelift"
  4739. }
  4740. ],
  4741. "time": "2022-12-31T21:50:55+00:00"
  4742. },
  4743. {
  4744. "name": "ramsey/uuid",
  4745. "version": "4.7.4",
  4746. "source": {
  4747. "type": "git",
  4748. "url": "https://github.com/ramsey/uuid.git",
  4749. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  4750. },
  4751. "dist": {
  4752. "type": "zip",
  4753. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  4754. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  4755. "shasum": ""
  4756. },
  4757. "require": {
  4758. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4759. "ext-json": "*",
  4760. "php": "^8.0",
  4761. "ramsey/collection": "^1.2 || ^2.0"
  4762. },
  4763. "replace": {
  4764. "rhumsaa/uuid": "self.version"
  4765. },
  4766. "require-dev": {
  4767. "captainhook/captainhook": "^5.10",
  4768. "captainhook/plugin-composer": "^5.3",
  4769. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4770. "doctrine/annotations": "^1.8",
  4771. "ergebnis/composer-normalize": "^2.15",
  4772. "mockery/mockery": "^1.3",
  4773. "paragonie/random-lib": "^2",
  4774. "php-mock/php-mock": "^2.2",
  4775. "php-mock/php-mock-mockery": "^1.3",
  4776. "php-parallel-lint/php-parallel-lint": "^1.1",
  4777. "phpbench/phpbench": "^1.0",
  4778. "phpstan/extension-installer": "^1.1",
  4779. "phpstan/phpstan": "^1.8",
  4780. "phpstan/phpstan-mockery": "^1.1",
  4781. "phpstan/phpstan-phpunit": "^1.1",
  4782. "phpunit/phpunit": "^8.5 || ^9",
  4783. "ramsey/composer-repl": "^1.4",
  4784. "slevomat/coding-standard": "^8.4",
  4785. "squizlabs/php_codesniffer": "^3.5",
  4786. "vimeo/psalm": "^4.9"
  4787. },
  4788. "suggest": {
  4789. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4790. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4791. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4792. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4793. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4794. },
  4795. "type": "library",
  4796. "extra": {
  4797. "captainhook": {
  4798. "force-install": true
  4799. }
  4800. },
  4801. "autoload": {
  4802. "files": [
  4803. "src/functions.php"
  4804. ],
  4805. "psr-4": {
  4806. "Ramsey\\Uuid\\": "src/"
  4807. }
  4808. },
  4809. "notification-url": "https://packagist.org/downloads/",
  4810. "license": [
  4811. "MIT"
  4812. ],
  4813. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4814. "keywords": [
  4815. "guid",
  4816. "identifier",
  4817. "uuid"
  4818. ],
  4819. "support": {
  4820. "issues": "https://github.com/ramsey/uuid/issues",
  4821. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  4822. },
  4823. "funding": [
  4824. {
  4825. "url": "https://github.com/ramsey",
  4826. "type": "github"
  4827. },
  4828. {
  4829. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4830. "type": "tidelift"
  4831. }
  4832. ],
  4833. "time": "2023-04-15T23:01:58+00:00"
  4834. },
  4835. {
  4836. "name": "sabberworm/php-css-parser",
  4837. "version": "8.4.0",
  4838. "source": {
  4839. "type": "git",
  4840. "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
  4841. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30"
  4842. },
  4843. "dist": {
  4844. "type": "zip",
  4845. "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/e41d2140031d533348b2192a83f02d8dd8a71d30",
  4846. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30",
  4847. "shasum": ""
  4848. },
  4849. "require": {
  4850. "ext-iconv": "*",
  4851. "php": ">=5.6.20"
  4852. },
  4853. "require-dev": {
  4854. "codacy/coverage": "^1.4",
  4855. "phpunit/phpunit": "^4.8.36"
  4856. },
  4857. "suggest": {
  4858. "ext-mbstring": "for parsing UTF-8 CSS"
  4859. },
  4860. "type": "library",
  4861. "autoload": {
  4862. "psr-4": {
  4863. "Sabberworm\\CSS\\": "src/"
  4864. }
  4865. },
  4866. "notification-url": "https://packagist.org/downloads/",
  4867. "license": [
  4868. "MIT"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Raphael Schweikert"
  4873. }
  4874. ],
  4875. "description": "Parser for CSS Files written in PHP",
  4876. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  4877. "keywords": [
  4878. "css",
  4879. "parser",
  4880. "stylesheet"
  4881. ],
  4882. "support": {
  4883. "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
  4884. "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.4.0"
  4885. },
  4886. "time": "2021-12-11T13:40:54+00:00"
  4887. },
  4888. {
  4889. "name": "socialiteproviders/discord",
  4890. "version": "4.1.2",
  4891. "source": {
  4892. "type": "git",
  4893. "url": "https://github.com/SocialiteProviders/Discord.git",
  4894. "reference": "11f6a8ded5b1948723886f2e5413b91139fcce6b"
  4895. },
  4896. "dist": {
  4897. "type": "zip",
  4898. "url": "https://api.github.com/repos/SocialiteProviders/Discord/zipball/11f6a8ded5b1948723886f2e5413b91139fcce6b",
  4899. "reference": "11f6a8ded5b1948723886f2e5413b91139fcce6b",
  4900. "shasum": ""
  4901. },
  4902. "require": {
  4903. "ext-json": "*",
  4904. "php": "^7.4 || ^8.0",
  4905. "socialiteproviders/manager": "~4.0"
  4906. },
  4907. "type": "library",
  4908. "autoload": {
  4909. "psr-4": {
  4910. "SocialiteProviders\\Discord\\": ""
  4911. }
  4912. },
  4913. "notification-url": "https://packagist.org/downloads/",
  4914. "license": [
  4915. "MIT"
  4916. ],
  4917. "authors": [
  4918. {
  4919. "name": "Christopher Eklund",
  4920. "email": "eklundchristopher@gmail.com"
  4921. }
  4922. ],
  4923. "description": "Discord OAuth2 Provider for Laravel Socialite",
  4924. "keywords": [
  4925. "discord",
  4926. "laravel",
  4927. "oauth",
  4928. "provider",
  4929. "socialite"
  4930. ],
  4931. "support": {
  4932. "docs": "https://socialiteproviders.com/discord",
  4933. "issues": "https://github.com/socialiteproviders/providers/issues",
  4934. "source": "https://github.com/socialiteproviders/providers"
  4935. },
  4936. "time": "2023-02-01T08:54:49+00:00"
  4937. },
  4938. {
  4939. "name": "socialiteproviders/manager",
  4940. "version": "v4.3.0",
  4941. "source": {
  4942. "type": "git",
  4943. "url": "https://github.com/SocialiteProviders/Manager.git",
  4944. "reference": "47402cbc5b7ef445317e799bf12fd5a12062206c"
  4945. },
  4946. "dist": {
  4947. "type": "zip",
  4948. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/47402cbc5b7ef445317e799bf12fd5a12062206c",
  4949. "reference": "47402cbc5b7ef445317e799bf12fd5a12062206c",
  4950. "shasum": ""
  4951. },
  4952. "require": {
  4953. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  4954. "laravel/socialite": "~5.0",
  4955. "php": "^7.4 || ^8.0"
  4956. },
  4957. "require-dev": {
  4958. "mockery/mockery": "^1.2",
  4959. "phpunit/phpunit": "^6.0 || ^9.0"
  4960. },
  4961. "type": "library",
  4962. "extra": {
  4963. "laravel": {
  4964. "providers": [
  4965. "SocialiteProviders\\Manager\\ServiceProvider"
  4966. ]
  4967. }
  4968. },
  4969. "autoload": {
  4970. "psr-4": {
  4971. "SocialiteProviders\\Manager\\": "src/"
  4972. }
  4973. },
  4974. "notification-url": "https://packagist.org/downloads/",
  4975. "license": [
  4976. "MIT"
  4977. ],
  4978. "authors": [
  4979. {
  4980. "name": "Andy Wendt",
  4981. "email": "andy@awendt.com"
  4982. },
  4983. {
  4984. "name": "Anton Komarev",
  4985. "email": "a.komarev@cybercog.su"
  4986. },
  4987. {
  4988. "name": "Miguel Piedrafita",
  4989. "email": "soy@miguelpiedrafita.com"
  4990. },
  4991. {
  4992. "name": "atymic",
  4993. "email": "atymicq@gmail.com",
  4994. "homepage": "https://atymic.dev"
  4995. }
  4996. ],
  4997. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  4998. "homepage": "https://socialiteproviders.com",
  4999. "keywords": [
  5000. "laravel",
  5001. "manager",
  5002. "oauth",
  5003. "providers",
  5004. "socialite"
  5005. ],
  5006. "support": {
  5007. "issues": "https://github.com/socialiteproviders/manager/issues",
  5008. "source": "https://github.com/socialiteproviders/manager"
  5009. },
  5010. "time": "2023-01-26T23:11:27+00:00"
  5011. },
  5012. {
  5013. "name": "spatie/laravel-activitylog",
  5014. "version": "4.7.3",
  5015. "source": {
  5016. "type": "git",
  5017. "url": "https://github.com/spatie/laravel-activitylog.git",
  5018. "reference": "ec65a478a909b8df1b4f0c3c45de2592ca7639e5"
  5019. },
  5020. "dist": {
  5021. "type": "zip",
  5022. "url": "https://api.github.com/repos/spatie/laravel-activitylog/zipball/ec65a478a909b8df1b4f0c3c45de2592ca7639e5",
  5023. "reference": "ec65a478a909b8df1b4f0c3c45de2592ca7639e5",
  5024. "shasum": ""
  5025. },
  5026. "require": {
  5027. "illuminate/config": "^8.0 || ^9.0 || ^10.0",
  5028. "illuminate/database": "^8.69 || ^9.27 || ^10.0",
  5029. "illuminate/support": "^8.0 || ^9.0 || ^10.0",
  5030. "php": "^8.0",
  5031. "spatie/laravel-package-tools": "^1.6.3"
  5032. },
  5033. "require-dev": {
  5034. "ext-json": "*",
  5035. "orchestra/testbench": "^6.23 || ^7.0 || ^8.0",
  5036. "pestphp/pest": "^1.20"
  5037. },
  5038. "type": "library",
  5039. "extra": {
  5040. "laravel": {
  5041. "providers": [
  5042. "Spatie\\Activitylog\\ActivitylogServiceProvider"
  5043. ]
  5044. }
  5045. },
  5046. "autoload": {
  5047. "files": [
  5048. "src/helpers.php"
  5049. ],
  5050. "psr-4": {
  5051. "Spatie\\Activitylog\\": "src"
  5052. }
  5053. },
  5054. "notification-url": "https://packagist.org/downloads/",
  5055. "license": [
  5056. "MIT"
  5057. ],
  5058. "authors": [
  5059. {
  5060. "name": "Freek Van der Herten",
  5061. "email": "freek@spatie.be",
  5062. "homepage": "https://spatie.be",
  5063. "role": "Developer"
  5064. },
  5065. {
  5066. "name": "Sebastian De Deyne",
  5067. "email": "sebastian@spatie.be",
  5068. "homepage": "https://spatie.be",
  5069. "role": "Developer"
  5070. },
  5071. {
  5072. "name": "Tom Witkowski",
  5073. "email": "dev.gummibeer@gmail.com",
  5074. "homepage": "https://gummibeer.de",
  5075. "role": "Developer"
  5076. }
  5077. ],
  5078. "description": "A very simple activity logger to monitor the users of your website or application",
  5079. "homepage": "https://github.com/spatie/activitylog",
  5080. "keywords": [
  5081. "activity",
  5082. "laravel",
  5083. "log",
  5084. "spatie",
  5085. "user"
  5086. ],
  5087. "support": {
  5088. "issues": "https://github.com/spatie/laravel-activitylog/issues",
  5089. "source": "https://github.com/spatie/laravel-activitylog/tree/4.7.3"
  5090. },
  5091. "funding": [
  5092. {
  5093. "url": "https://spatie.be/open-source/support-us",
  5094. "type": "custom"
  5095. },
  5096. {
  5097. "url": "https://github.com/spatie",
  5098. "type": "github"
  5099. }
  5100. ],
  5101. "time": "2023-01-25T17:04:51+00:00"
  5102. },
  5103. {
  5104. "name": "spatie/laravel-package-tools",
  5105. "version": "1.15.0",
  5106. "source": {
  5107. "type": "git",
  5108. "url": "https://github.com/spatie/laravel-package-tools.git",
  5109. "reference": "efab1844b8826443135201c4443690f032c3d533"
  5110. },
  5111. "dist": {
  5112. "type": "zip",
  5113. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533",
  5114. "reference": "efab1844b8826443135201c4443690f032c3d533",
  5115. "shasum": ""
  5116. },
  5117. "require": {
  5118. "illuminate/contracts": "^9.28|^10.0",
  5119. "php": "^8.0"
  5120. },
  5121. "require-dev": {
  5122. "mockery/mockery": "^1.5",
  5123. "orchestra/testbench": "^7.7|^8.0",
  5124. "pestphp/pest": "^1.22",
  5125. "phpunit/phpunit": "^9.5.24",
  5126. "spatie/pest-plugin-test-time": "^1.1"
  5127. },
  5128. "type": "library",
  5129. "autoload": {
  5130. "psr-4": {
  5131. "Spatie\\LaravelPackageTools\\": "src"
  5132. }
  5133. },
  5134. "notification-url": "https://packagist.org/downloads/",
  5135. "license": [
  5136. "MIT"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "Freek Van der Herten",
  5141. "email": "freek@spatie.be",
  5142. "role": "Developer"
  5143. }
  5144. ],
  5145. "description": "Tools for creating Laravel packages",
  5146. "homepage": "https://github.com/spatie/laravel-package-tools",
  5147. "keywords": [
  5148. "laravel-package-tools",
  5149. "spatie"
  5150. ],
  5151. "support": {
  5152. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  5153. "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0"
  5154. },
  5155. "funding": [
  5156. {
  5157. "url": "https://github.com/spatie",
  5158. "type": "github"
  5159. }
  5160. ],
  5161. "time": "2023-04-27T08:09:01+00:00"
  5162. },
  5163. {
  5164. "name": "spatie/laravel-permission",
  5165. "version": "5.10.1",
  5166. "source": {
  5167. "type": "git",
  5168. "url": "https://github.com/spatie/laravel-permission.git",
  5169. "reference": "d08b3ffc5870cce4a47a39f22174947b33c191ae"
  5170. },
  5171. "dist": {
  5172. "type": "zip",
  5173. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/d08b3ffc5870cce4a47a39f22174947b33c191ae",
  5174. "reference": "d08b3ffc5870cce4a47a39f22174947b33c191ae",
  5175. "shasum": ""
  5176. },
  5177. "require": {
  5178. "illuminate/auth": "^7.0|^8.0|^9.0|^10.0",
  5179. "illuminate/container": "^7.0|^8.0|^9.0|^10.0",
  5180. "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0",
  5181. "illuminate/database": "^7.0|^8.0|^9.0|^10.0",
  5182. "php": "^7.3|^8.0"
  5183. },
  5184. "require-dev": {
  5185. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
  5186. "phpunit/phpunit": "^9.4",
  5187. "predis/predis": "^1.1"
  5188. },
  5189. "type": "library",
  5190. "extra": {
  5191. "branch-alias": {
  5192. "dev-main": "5.x-dev",
  5193. "dev-master": "5.x-dev"
  5194. },
  5195. "laravel": {
  5196. "providers": [
  5197. "Spatie\\Permission\\PermissionServiceProvider"
  5198. ]
  5199. }
  5200. },
  5201. "autoload": {
  5202. "files": [
  5203. "src/helpers.php"
  5204. ],
  5205. "psr-4": {
  5206. "Spatie\\Permission\\": "src"
  5207. }
  5208. },
  5209. "notification-url": "https://packagist.org/downloads/",
  5210. "license": [
  5211. "MIT"
  5212. ],
  5213. "authors": [
  5214. {
  5215. "name": "Freek Van der Herten",
  5216. "email": "freek@spatie.be",
  5217. "homepage": "https://spatie.be",
  5218. "role": "Developer"
  5219. }
  5220. ],
  5221. "description": "Permission handling for Laravel 6.0 and up",
  5222. "homepage": "https://github.com/spatie/laravel-permission",
  5223. "keywords": [
  5224. "acl",
  5225. "laravel",
  5226. "permission",
  5227. "permissions",
  5228. "rbac",
  5229. "roles",
  5230. "security",
  5231. "spatie"
  5232. ],
  5233. "support": {
  5234. "issues": "https://github.com/spatie/laravel-permission/issues",
  5235. "source": "https://github.com/spatie/laravel-permission/tree/5.10.1"
  5236. },
  5237. "funding": [
  5238. {
  5239. "url": "https://github.com/spatie",
  5240. "type": "github"
  5241. }
  5242. ],
  5243. "time": "2023-04-12T17:08:32+00:00"
  5244. },
  5245. {
  5246. "name": "spatie/laravel-query-builder",
  5247. "version": "5.2.0",
  5248. "source": {
  5249. "type": "git",
  5250. "url": "https://github.com/spatie/laravel-query-builder.git",
  5251. "reference": "7b3911f61dcaa27804b80f30b73a468a9539e850"
  5252. },
  5253. "dist": {
  5254. "type": "zip",
  5255. "url": "https://api.github.com/repos/spatie/laravel-query-builder/zipball/7b3911f61dcaa27804b80f30b73a468a9539e850",
  5256. "reference": "7b3911f61dcaa27804b80f30b73a468a9539e850",
  5257. "shasum": ""
  5258. },
  5259. "require": {
  5260. "illuminate/database": "^9.0|^10.0",
  5261. "illuminate/http": "^9.0|^10.0",
  5262. "illuminate/support": "^9.0|^10.0",
  5263. "php": "^8.0",
  5264. "spatie/laravel-package-tools": "^1.11"
  5265. },
  5266. "require-dev": {
  5267. "ext-json": "*",
  5268. "mockery/mockery": "^1.4",
  5269. "orchestra/testbench": "^7.0|^8.0",
  5270. "pestphp/pest": "^1.20",
  5271. "spatie/laravel-ray": "^1.28"
  5272. },
  5273. "type": "library",
  5274. "extra": {
  5275. "laravel": {
  5276. "providers": [
  5277. "Spatie\\QueryBuilder\\QueryBuilderServiceProvider"
  5278. ]
  5279. }
  5280. },
  5281. "autoload": {
  5282. "psr-4": {
  5283. "Spatie\\QueryBuilder\\": "src",
  5284. "Spatie\\QueryBuilder\\Database\\Factories\\": "database/factories"
  5285. }
  5286. },
  5287. "notification-url": "https://packagist.org/downloads/",
  5288. "license": [
  5289. "MIT"
  5290. ],
  5291. "authors": [
  5292. {
  5293. "name": "Alex Vanderbist",
  5294. "email": "alex@spatie.be",
  5295. "homepage": "https://spatie.be",
  5296. "role": "Developer"
  5297. }
  5298. ],
  5299. "description": "Easily build Eloquent queries from API requests",
  5300. "homepage": "https://github.com/spatie/laravel-query-builder",
  5301. "keywords": [
  5302. "laravel-query-builder",
  5303. "spatie"
  5304. ],
  5305. "support": {
  5306. "issues": "https://github.com/spatie/laravel-query-builder/issues",
  5307. "source": "https://github.com/spatie/laravel-query-builder"
  5308. },
  5309. "funding": [
  5310. {
  5311. "url": "https://spatie.be/open-source/support-us",
  5312. "type": "custom"
  5313. }
  5314. ],
  5315. "time": "2023-02-24T15:48:30+00:00"
  5316. },
  5317. {
  5318. "name": "spatie/laravel-settings",
  5319. "version": "2.8.3",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://github.com/spatie/laravel-settings.git",
  5323. "reference": "9193603a3e02d19af9f2fd0d309ac2469b25d680"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://api.github.com/repos/spatie/laravel-settings/zipball/9193603a3e02d19af9f2fd0d309ac2469b25d680",
  5328. "reference": "9193603a3e02d19af9f2fd0d309ac2469b25d680",
  5329. "shasum": ""
  5330. },
  5331. "require": {
  5332. "ext-json": "*",
  5333. "illuminate/database": "^8.73|^9.0|^10.0",
  5334. "php": "^7.4|^8.0",
  5335. "phpdocumentor/type-resolver": "^1.5",
  5336. "spatie/temporary-directory": "^1.3|^2.0"
  5337. },
  5338. "require-dev": {
  5339. "ext-redis": "*",
  5340. "mockery/mockery": "^1.4",
  5341. "nunomaduro/larastan": "^2.0",
  5342. "orchestra/testbench": "^6.23|^7.0|^8.0",
  5343. "pestphp/pest": "^1.21",
  5344. "pestphp/pest-plugin-laravel": "^1.2",
  5345. "phpstan/extension-installer": "^1.1",
  5346. "phpstan/phpstan-deprecation-rules": "^1.0",
  5347. "phpstan/phpstan-phpunit": "^1.0",
  5348. "phpunit/phpunit": "^9.5",
  5349. "spatie/laravel-data": "^1.0.0|^2.0.0",
  5350. "spatie/pest-plugin-snapshots": "^1.1",
  5351. "spatie/phpunit-snapshot-assertions": "^4.2",
  5352. "spatie/ray": "^1.36"
  5353. },
  5354. "suggest": {
  5355. "spatie/data-transfer-object": "Allows for DTO casting to settings. (deprecated)"
  5356. },
  5357. "type": "library",
  5358. "extra": {
  5359. "laravel": {
  5360. "providers": [
  5361. "Spatie\\LaravelSettings\\LaravelSettingsServiceProvider"
  5362. ]
  5363. }
  5364. },
  5365. "autoload": {
  5366. "psr-4": {
  5367. "Spatie\\LaravelSettings\\": "src"
  5368. }
  5369. },
  5370. "notification-url": "https://packagist.org/downloads/",
  5371. "license": [
  5372. "MIT"
  5373. ],
  5374. "authors": [
  5375. {
  5376. "name": "Ruben Van Assche",
  5377. "email": "ruben@spatie.be",
  5378. "homepage": "https://spatie.be",
  5379. "role": "Developer"
  5380. }
  5381. ],
  5382. "description": "Store your application settings",
  5383. "homepage": "https://github.com/spatie/laravel-settings",
  5384. "keywords": [
  5385. "laravel-settings",
  5386. "spatie"
  5387. ],
  5388. "support": {
  5389. "issues": "https://github.com/spatie/laravel-settings/issues",
  5390. "source": "https://github.com/spatie/laravel-settings/tree/2.8.3"
  5391. },
  5392. "funding": [
  5393. {
  5394. "url": "https://spatie.be/open-source/support-us",
  5395. "type": "custom"
  5396. },
  5397. {
  5398. "url": "https://github.com/spatie",
  5399. "type": "github"
  5400. }
  5401. ],
  5402. "time": "2023-03-30T12:47:39+00:00"
  5403. },
  5404. {
  5405. "name": "spatie/laravel-validation-rules",
  5406. "version": "3.2.2",
  5407. "source": {
  5408. "type": "git",
  5409. "url": "https://github.com/spatie/laravel-validation-rules.git",
  5410. "reference": "3cbef3441cb274cd3c12409586f18c3a44d46d0a"
  5411. },
  5412. "dist": {
  5413. "type": "zip",
  5414. "url": "https://api.github.com/repos/spatie/laravel-validation-rules/zipball/3cbef3441cb274cd3c12409586f18c3a44d46d0a",
  5415. "reference": "3cbef3441cb274cd3c12409586f18c3a44d46d0a",
  5416. "shasum": ""
  5417. },
  5418. "require": {
  5419. "illuminate/support": "^8.0|^9.0|^10.0",
  5420. "php": "^8.0"
  5421. },
  5422. "require-dev": {
  5423. "laravel/pint": "^1.3",
  5424. "league/iso3166": "^3.0",
  5425. "myclabs/php-enum": "^1.6",
  5426. "orchestra/testbench": "^6.23|^7.0|^8.0",
  5427. "phpunit/phpunit": "^9.4",
  5428. "spatie/enum": "^2.2|^3.0"
  5429. },
  5430. "suggest": {
  5431. "league/iso3166": "Needed for the CountryCode rule and Currency rule"
  5432. },
  5433. "type": "library",
  5434. "extra": {
  5435. "laravel": {
  5436. "providers": [
  5437. "Spatie\\ValidationRules\\ValidationRulesServiceProvider"
  5438. ]
  5439. }
  5440. },
  5441. "autoload": {
  5442. "psr-4": {
  5443. "Spatie\\ValidationRules\\": "src",
  5444. "Spatie\\ValidationRules\\Database\\Factories\\": "database/factories"
  5445. }
  5446. },
  5447. "notification-url": "https://packagist.org/downloads/",
  5448. "license": [
  5449. "MIT"
  5450. ],
  5451. "authors": [
  5452. {
  5453. "name": "Freek Van der Herten",
  5454. "email": "freek@spatie.be",
  5455. "homepage": "https://spatie.be",
  5456. "role": "Developer"
  5457. }
  5458. ],
  5459. "description": "A set of useful Laravel validation rules",
  5460. "homepage": "https://github.com/spatie/laravel-validation-rules",
  5461. "keywords": [
  5462. "laravel-validation-rules",
  5463. "spatie"
  5464. ],
  5465. "support": {
  5466. "issues": "https://github.com/spatie/laravel-validation-rules/issues",
  5467. "source": "https://github.com/spatie/laravel-validation-rules/tree/3.2.2"
  5468. },
  5469. "funding": [
  5470. {
  5471. "url": "https://github.com/spatie",
  5472. "type": "github"
  5473. }
  5474. ],
  5475. "time": "2023-01-25T16:22:06+00:00"
  5476. },
  5477. {
  5478. "name": "spatie/temporary-directory",
  5479. "version": "2.1.2",
  5480. "source": {
  5481. "type": "git",
  5482. "url": "https://github.com/spatie/temporary-directory.git",
  5483. "reference": "0c804873f6b4042aa8836839dca683c7d0f71831"
  5484. },
  5485. "dist": {
  5486. "type": "zip",
  5487. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/0c804873f6b4042aa8836839dca683c7d0f71831",
  5488. "reference": "0c804873f6b4042aa8836839dca683c7d0f71831",
  5489. "shasum": ""
  5490. },
  5491. "require": {
  5492. "php": "^8.0"
  5493. },
  5494. "require-dev": {
  5495. "phpunit/phpunit": "^9.5"
  5496. },
  5497. "type": "library",
  5498. "autoload": {
  5499. "psr-4": {
  5500. "Spatie\\TemporaryDirectory\\": "src"
  5501. }
  5502. },
  5503. "notification-url": "https://packagist.org/downloads/",
  5504. "license": [
  5505. "MIT"
  5506. ],
  5507. "authors": [
  5508. {
  5509. "name": "Alex Vanderbist",
  5510. "email": "alex@spatie.be",
  5511. "homepage": "https://spatie.be",
  5512. "role": "Developer"
  5513. }
  5514. ],
  5515. "description": "Easily create, use and destroy temporary directories",
  5516. "homepage": "https://github.com/spatie/temporary-directory",
  5517. "keywords": [
  5518. "php",
  5519. "spatie",
  5520. "temporary-directory"
  5521. ],
  5522. "support": {
  5523. "issues": "https://github.com/spatie/temporary-directory/issues",
  5524. "source": "https://github.com/spatie/temporary-directory/tree/2.1.2"
  5525. },
  5526. "funding": [
  5527. {
  5528. "url": "https://spatie.be/open-source/support-us",
  5529. "type": "custom"
  5530. },
  5531. {
  5532. "url": "https://github.com/spatie",
  5533. "type": "github"
  5534. }
  5535. ],
  5536. "time": "2023-04-28T07:47:42+00:00"
  5537. },
  5538. {
  5539. "name": "stripe/stripe-php",
  5540. "version": "v7.128.0",
  5541. "source": {
  5542. "type": "git",
  5543. "url": "https://github.com/stripe/stripe-php.git",
  5544. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e"
  5545. },
  5546. "dist": {
  5547. "type": "zip",
  5548. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c704949c49b72985c76cc61063aa26fefbd2724e",
  5549. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e",
  5550. "shasum": ""
  5551. },
  5552. "require": {
  5553. "ext-curl": "*",
  5554. "ext-json": "*",
  5555. "ext-mbstring": "*",
  5556. "php": ">=5.6.0"
  5557. },
  5558. "require-dev": {
  5559. "friendsofphp/php-cs-fixer": "3.5.0",
  5560. "phpstan/phpstan": "^1.2",
  5561. "phpunit/phpunit": "^5.7 || ^9.0",
  5562. "squizlabs/php_codesniffer": "^3.3"
  5563. },
  5564. "type": "library",
  5565. "extra": {
  5566. "branch-alias": {
  5567. "dev-master": "2.0-dev"
  5568. }
  5569. },
  5570. "autoload": {
  5571. "psr-4": {
  5572. "Stripe\\": "lib/"
  5573. }
  5574. },
  5575. "notification-url": "https://packagist.org/downloads/",
  5576. "license": [
  5577. "MIT"
  5578. ],
  5579. "authors": [
  5580. {
  5581. "name": "Stripe and contributors",
  5582. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5583. }
  5584. ],
  5585. "description": "Stripe PHP Library",
  5586. "homepage": "https://stripe.com/",
  5587. "keywords": [
  5588. "api",
  5589. "payment processing",
  5590. "stripe"
  5591. ],
  5592. "support": {
  5593. "issues": "https://github.com/stripe/stripe-php/issues",
  5594. "source": "https://github.com/stripe/stripe-php/tree/v7.128.0"
  5595. },
  5596. "time": "2022-05-05T17:18:02+00:00"
  5597. },
  5598. {
  5599. "name": "symfony/console",
  5600. "version": "v6.2.10",
  5601. "source": {
  5602. "type": "git",
  5603. "url": "https://github.com/symfony/console.git",
  5604. "reference": "12288d9f4500f84a4d02254d4aa968b15488476f"
  5605. },
  5606. "dist": {
  5607. "type": "zip",
  5608. "url": "https://api.github.com/repos/symfony/console/zipball/12288d9f4500f84a4d02254d4aa968b15488476f",
  5609. "reference": "12288d9f4500f84a4d02254d4aa968b15488476f",
  5610. "shasum": ""
  5611. },
  5612. "require": {
  5613. "php": ">=8.1",
  5614. "symfony/deprecation-contracts": "^2.1|^3",
  5615. "symfony/polyfill-mbstring": "~1.0",
  5616. "symfony/service-contracts": "^1.1|^2|^3",
  5617. "symfony/string": "^5.4|^6.0"
  5618. },
  5619. "conflict": {
  5620. "symfony/dependency-injection": "<5.4",
  5621. "symfony/dotenv": "<5.4",
  5622. "symfony/event-dispatcher": "<5.4",
  5623. "symfony/lock": "<5.4",
  5624. "symfony/process": "<5.4"
  5625. },
  5626. "provide": {
  5627. "psr/log-implementation": "1.0|2.0|3.0"
  5628. },
  5629. "require-dev": {
  5630. "psr/log": "^1|^2|^3",
  5631. "symfony/config": "^5.4|^6.0",
  5632. "symfony/dependency-injection": "^5.4|^6.0",
  5633. "symfony/event-dispatcher": "^5.4|^6.0",
  5634. "symfony/lock": "^5.4|^6.0",
  5635. "symfony/process": "^5.4|^6.0",
  5636. "symfony/var-dumper": "^5.4|^6.0"
  5637. },
  5638. "suggest": {
  5639. "psr/log": "For using the console logger",
  5640. "symfony/event-dispatcher": "",
  5641. "symfony/lock": "",
  5642. "symfony/process": ""
  5643. },
  5644. "type": "library",
  5645. "autoload": {
  5646. "psr-4": {
  5647. "Symfony\\Component\\Console\\": ""
  5648. },
  5649. "exclude-from-classmap": [
  5650. "/Tests/"
  5651. ]
  5652. },
  5653. "notification-url": "https://packagist.org/downloads/",
  5654. "license": [
  5655. "MIT"
  5656. ],
  5657. "authors": [
  5658. {
  5659. "name": "Fabien Potencier",
  5660. "email": "fabien@symfony.com"
  5661. },
  5662. {
  5663. "name": "Symfony Community",
  5664. "homepage": "https://symfony.com/contributors"
  5665. }
  5666. ],
  5667. "description": "Eases the creation of beautiful and testable command line interfaces",
  5668. "homepage": "https://symfony.com",
  5669. "keywords": [
  5670. "cli",
  5671. "command-line",
  5672. "console",
  5673. "terminal"
  5674. ],
  5675. "support": {
  5676. "source": "https://github.com/symfony/console/tree/v6.2.10"
  5677. },
  5678. "funding": [
  5679. {
  5680. "url": "https://symfony.com/sponsor",
  5681. "type": "custom"
  5682. },
  5683. {
  5684. "url": "https://github.com/fabpot",
  5685. "type": "github"
  5686. },
  5687. {
  5688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5689. "type": "tidelift"
  5690. }
  5691. ],
  5692. "time": "2023-04-28T13:37:43+00:00"
  5693. },
  5694. {
  5695. "name": "symfony/css-selector",
  5696. "version": "v6.2.7",
  5697. "source": {
  5698. "type": "git",
  5699. "url": "https://github.com/symfony/css-selector.git",
  5700. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0"
  5701. },
  5702. "dist": {
  5703. "type": "zip",
  5704. "url": "https://api.github.com/repos/symfony/css-selector/zipball/aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  5705. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  5706. "shasum": ""
  5707. },
  5708. "require": {
  5709. "php": ">=8.1"
  5710. },
  5711. "type": "library",
  5712. "autoload": {
  5713. "psr-4": {
  5714. "Symfony\\Component\\CssSelector\\": ""
  5715. },
  5716. "exclude-from-classmap": [
  5717. "/Tests/"
  5718. ]
  5719. },
  5720. "notification-url": "https://packagist.org/downloads/",
  5721. "license": [
  5722. "MIT"
  5723. ],
  5724. "authors": [
  5725. {
  5726. "name": "Fabien Potencier",
  5727. "email": "fabien@symfony.com"
  5728. },
  5729. {
  5730. "name": "Jean-François Simon",
  5731. "email": "jeanfrancois.simon@sensiolabs.com"
  5732. },
  5733. {
  5734. "name": "Symfony Community",
  5735. "homepage": "https://symfony.com/contributors"
  5736. }
  5737. ],
  5738. "description": "Converts CSS selectors to XPath expressions",
  5739. "homepage": "https://symfony.com",
  5740. "support": {
  5741. "source": "https://github.com/symfony/css-selector/tree/v6.2.7"
  5742. },
  5743. "funding": [
  5744. {
  5745. "url": "https://symfony.com/sponsor",
  5746. "type": "custom"
  5747. },
  5748. {
  5749. "url": "https://github.com/fabpot",
  5750. "type": "github"
  5751. },
  5752. {
  5753. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5754. "type": "tidelift"
  5755. }
  5756. ],
  5757. "time": "2023-02-14T08:44:56+00:00"
  5758. },
  5759. {
  5760. "name": "symfony/deprecation-contracts",
  5761. "version": "v3.2.1",
  5762. "source": {
  5763. "type": "git",
  5764. "url": "https://github.com/symfony/deprecation-contracts.git",
  5765. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  5766. },
  5767. "dist": {
  5768. "type": "zip",
  5769. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  5770. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  5771. "shasum": ""
  5772. },
  5773. "require": {
  5774. "php": ">=8.1"
  5775. },
  5776. "type": "library",
  5777. "extra": {
  5778. "branch-alias": {
  5779. "dev-main": "3.3-dev"
  5780. },
  5781. "thanks": {
  5782. "name": "symfony/contracts",
  5783. "url": "https://github.com/symfony/contracts"
  5784. }
  5785. },
  5786. "autoload": {
  5787. "files": [
  5788. "function.php"
  5789. ]
  5790. },
  5791. "notification-url": "https://packagist.org/downloads/",
  5792. "license": [
  5793. "MIT"
  5794. ],
  5795. "authors": [
  5796. {
  5797. "name": "Nicolas Grekas",
  5798. "email": "p@tchwork.com"
  5799. },
  5800. {
  5801. "name": "Symfony Community",
  5802. "homepage": "https://symfony.com/contributors"
  5803. }
  5804. ],
  5805. "description": "A generic function and convention to trigger deprecation notices",
  5806. "homepage": "https://symfony.com",
  5807. "support": {
  5808. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  5809. },
  5810. "funding": [
  5811. {
  5812. "url": "https://symfony.com/sponsor",
  5813. "type": "custom"
  5814. },
  5815. {
  5816. "url": "https://github.com/fabpot",
  5817. "type": "github"
  5818. },
  5819. {
  5820. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5821. "type": "tidelift"
  5822. }
  5823. ],
  5824. "time": "2023-03-01T10:25:55+00:00"
  5825. },
  5826. {
  5827. "name": "symfony/error-handler",
  5828. "version": "v6.2.10",
  5829. "source": {
  5830. "type": "git",
  5831. "url": "https://github.com/symfony/error-handler.git",
  5832. "reference": "8b7e9f124640cb0611624a9383176c3e5f7d8cfb"
  5833. },
  5834. "dist": {
  5835. "type": "zip",
  5836. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8b7e9f124640cb0611624a9383176c3e5f7d8cfb",
  5837. "reference": "8b7e9f124640cb0611624a9383176c3e5f7d8cfb",
  5838. "shasum": ""
  5839. },
  5840. "require": {
  5841. "php": ">=8.1",
  5842. "psr/log": "^1|^2|^3",
  5843. "symfony/var-dumper": "^5.4|^6.0"
  5844. },
  5845. "require-dev": {
  5846. "symfony/deprecation-contracts": "^2.1|^3",
  5847. "symfony/http-kernel": "^5.4|^6.0",
  5848. "symfony/serializer": "^5.4|^6.0"
  5849. },
  5850. "bin": [
  5851. "Resources/bin/patch-type-declarations"
  5852. ],
  5853. "type": "library",
  5854. "autoload": {
  5855. "psr-4": {
  5856. "Symfony\\Component\\ErrorHandler\\": ""
  5857. },
  5858. "exclude-from-classmap": [
  5859. "/Tests/"
  5860. ]
  5861. },
  5862. "notification-url": "https://packagist.org/downloads/",
  5863. "license": [
  5864. "MIT"
  5865. ],
  5866. "authors": [
  5867. {
  5868. "name": "Fabien Potencier",
  5869. "email": "fabien@symfony.com"
  5870. },
  5871. {
  5872. "name": "Symfony Community",
  5873. "homepage": "https://symfony.com/contributors"
  5874. }
  5875. ],
  5876. "description": "Provides tools to manage errors and ease debugging PHP code",
  5877. "homepage": "https://symfony.com",
  5878. "support": {
  5879. "source": "https://github.com/symfony/error-handler/tree/v6.2.10"
  5880. },
  5881. "funding": [
  5882. {
  5883. "url": "https://symfony.com/sponsor",
  5884. "type": "custom"
  5885. },
  5886. {
  5887. "url": "https://github.com/fabpot",
  5888. "type": "github"
  5889. },
  5890. {
  5891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5892. "type": "tidelift"
  5893. }
  5894. ],
  5895. "time": "2023-04-18T13:46:08+00:00"
  5896. },
  5897. {
  5898. "name": "symfony/event-dispatcher",
  5899. "version": "v6.2.8",
  5900. "source": {
  5901. "type": "git",
  5902. "url": "https://github.com/symfony/event-dispatcher.git",
  5903. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
  5904. },
  5905. "dist": {
  5906. "type": "zip",
  5907. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  5908. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  5909. "shasum": ""
  5910. },
  5911. "require": {
  5912. "php": ">=8.1",
  5913. "symfony/event-dispatcher-contracts": "^2|^3"
  5914. },
  5915. "conflict": {
  5916. "symfony/dependency-injection": "<5.4"
  5917. },
  5918. "provide": {
  5919. "psr/event-dispatcher-implementation": "1.0",
  5920. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5921. },
  5922. "require-dev": {
  5923. "psr/log": "^1|^2|^3",
  5924. "symfony/config": "^5.4|^6.0",
  5925. "symfony/dependency-injection": "^5.4|^6.0",
  5926. "symfony/error-handler": "^5.4|^6.0",
  5927. "symfony/expression-language": "^5.4|^6.0",
  5928. "symfony/http-foundation": "^5.4|^6.0",
  5929. "symfony/service-contracts": "^1.1|^2|^3",
  5930. "symfony/stopwatch": "^5.4|^6.0"
  5931. },
  5932. "suggest": {
  5933. "symfony/dependency-injection": "",
  5934. "symfony/http-kernel": ""
  5935. },
  5936. "type": "library",
  5937. "autoload": {
  5938. "psr-4": {
  5939. "Symfony\\Component\\EventDispatcher\\": ""
  5940. },
  5941. "exclude-from-classmap": [
  5942. "/Tests/"
  5943. ]
  5944. },
  5945. "notification-url": "https://packagist.org/downloads/",
  5946. "license": [
  5947. "MIT"
  5948. ],
  5949. "authors": [
  5950. {
  5951. "name": "Fabien Potencier",
  5952. "email": "fabien@symfony.com"
  5953. },
  5954. {
  5955. "name": "Symfony Community",
  5956. "homepage": "https://symfony.com/contributors"
  5957. }
  5958. ],
  5959. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5960. "homepage": "https://symfony.com",
  5961. "support": {
  5962. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
  5963. },
  5964. "funding": [
  5965. {
  5966. "url": "https://symfony.com/sponsor",
  5967. "type": "custom"
  5968. },
  5969. {
  5970. "url": "https://github.com/fabpot",
  5971. "type": "github"
  5972. },
  5973. {
  5974. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5975. "type": "tidelift"
  5976. }
  5977. ],
  5978. "time": "2023-03-20T16:06:02+00:00"
  5979. },
  5980. {
  5981. "name": "symfony/event-dispatcher-contracts",
  5982. "version": "v3.2.1",
  5983. "source": {
  5984. "type": "git",
  5985. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5986. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
  5987. },
  5988. "dist": {
  5989. "type": "zip",
  5990. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  5991. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  5992. "shasum": ""
  5993. },
  5994. "require": {
  5995. "php": ">=8.1",
  5996. "psr/event-dispatcher": "^1"
  5997. },
  5998. "suggest": {
  5999. "symfony/event-dispatcher-implementation": ""
  6000. },
  6001. "type": "library",
  6002. "extra": {
  6003. "branch-alias": {
  6004. "dev-main": "3.3-dev"
  6005. },
  6006. "thanks": {
  6007. "name": "symfony/contracts",
  6008. "url": "https://github.com/symfony/contracts"
  6009. }
  6010. },
  6011. "autoload": {
  6012. "psr-4": {
  6013. "Symfony\\Contracts\\EventDispatcher\\": ""
  6014. }
  6015. },
  6016. "notification-url": "https://packagist.org/downloads/",
  6017. "license": [
  6018. "MIT"
  6019. ],
  6020. "authors": [
  6021. {
  6022. "name": "Nicolas Grekas",
  6023. "email": "p@tchwork.com"
  6024. },
  6025. {
  6026. "name": "Symfony Community",
  6027. "homepage": "https://symfony.com/contributors"
  6028. }
  6029. ],
  6030. "description": "Generic abstractions related to dispatching event",
  6031. "homepage": "https://symfony.com",
  6032. "keywords": [
  6033. "abstractions",
  6034. "contracts",
  6035. "decoupling",
  6036. "interfaces",
  6037. "interoperability",
  6038. "standards"
  6039. ],
  6040. "support": {
  6041. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
  6042. },
  6043. "funding": [
  6044. {
  6045. "url": "https://symfony.com/sponsor",
  6046. "type": "custom"
  6047. },
  6048. {
  6049. "url": "https://github.com/fabpot",
  6050. "type": "github"
  6051. },
  6052. {
  6053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6054. "type": "tidelift"
  6055. }
  6056. ],
  6057. "time": "2023-03-01T10:32:47+00:00"
  6058. },
  6059. {
  6060. "name": "symfony/finder",
  6061. "version": "v6.2.7",
  6062. "source": {
  6063. "type": "git",
  6064. "url": "https://github.com/symfony/finder.git",
  6065. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  6066. },
  6067. "dist": {
  6068. "type": "zip",
  6069. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  6070. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  6071. "shasum": ""
  6072. },
  6073. "require": {
  6074. "php": ">=8.1"
  6075. },
  6076. "require-dev": {
  6077. "symfony/filesystem": "^6.0"
  6078. },
  6079. "type": "library",
  6080. "autoload": {
  6081. "psr-4": {
  6082. "Symfony\\Component\\Finder\\": ""
  6083. },
  6084. "exclude-from-classmap": [
  6085. "/Tests/"
  6086. ]
  6087. },
  6088. "notification-url": "https://packagist.org/downloads/",
  6089. "license": [
  6090. "MIT"
  6091. ],
  6092. "authors": [
  6093. {
  6094. "name": "Fabien Potencier",
  6095. "email": "fabien@symfony.com"
  6096. },
  6097. {
  6098. "name": "Symfony Community",
  6099. "homepage": "https://symfony.com/contributors"
  6100. }
  6101. ],
  6102. "description": "Finds files and directories via an intuitive fluent interface",
  6103. "homepage": "https://symfony.com",
  6104. "support": {
  6105. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  6106. },
  6107. "funding": [
  6108. {
  6109. "url": "https://symfony.com/sponsor",
  6110. "type": "custom"
  6111. },
  6112. {
  6113. "url": "https://github.com/fabpot",
  6114. "type": "github"
  6115. },
  6116. {
  6117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6118. "type": "tidelift"
  6119. }
  6120. ],
  6121. "time": "2023-02-16T09:57:23+00:00"
  6122. },
  6123. {
  6124. "name": "symfony/http-client",
  6125. "version": "v6.2.10",
  6126. "source": {
  6127. "type": "git",
  6128. "url": "https://github.com/symfony/http-client.git",
  6129. "reference": "3f5545a91c8e79dedd1a06c4b04e1682c80c42f9"
  6130. },
  6131. "dist": {
  6132. "type": "zip",
  6133. "url": "https://api.github.com/repos/symfony/http-client/zipball/3f5545a91c8e79dedd1a06c4b04e1682c80c42f9",
  6134. "reference": "3f5545a91c8e79dedd1a06c4b04e1682c80c42f9",
  6135. "shasum": ""
  6136. },
  6137. "require": {
  6138. "php": ">=8.1",
  6139. "psr/log": "^1|^2|^3",
  6140. "symfony/deprecation-contracts": "^2.1|^3",
  6141. "symfony/http-client-contracts": "^3",
  6142. "symfony/service-contracts": "^1.0|^2|^3"
  6143. },
  6144. "provide": {
  6145. "php-http/async-client-implementation": "*",
  6146. "php-http/client-implementation": "*",
  6147. "psr/http-client-implementation": "1.0",
  6148. "symfony/http-client-implementation": "3.0"
  6149. },
  6150. "require-dev": {
  6151. "amphp/amp": "^2.5",
  6152. "amphp/http-client": "^4.2.1",
  6153. "amphp/http-tunnel": "^1.0",
  6154. "amphp/socket": "^1.1",
  6155. "guzzlehttp/promises": "^1.4",
  6156. "nyholm/psr7": "^1.0",
  6157. "php-http/httplug": "^1.0|^2.0",
  6158. "psr/http-client": "^1.0",
  6159. "symfony/dependency-injection": "^5.4|^6.0",
  6160. "symfony/http-kernel": "^5.4|^6.0",
  6161. "symfony/process": "^5.4|^6.0",
  6162. "symfony/stopwatch": "^5.4|^6.0"
  6163. },
  6164. "type": "library",
  6165. "autoload": {
  6166. "psr-4": {
  6167. "Symfony\\Component\\HttpClient\\": ""
  6168. },
  6169. "exclude-from-classmap": [
  6170. "/Tests/"
  6171. ]
  6172. },
  6173. "notification-url": "https://packagist.org/downloads/",
  6174. "license": [
  6175. "MIT"
  6176. ],
  6177. "authors": [
  6178. {
  6179. "name": "Nicolas Grekas",
  6180. "email": "p@tchwork.com"
  6181. },
  6182. {
  6183. "name": "Symfony Community",
  6184. "homepage": "https://symfony.com/contributors"
  6185. }
  6186. ],
  6187. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  6188. "homepage": "https://symfony.com",
  6189. "keywords": [
  6190. "http"
  6191. ],
  6192. "support": {
  6193. "source": "https://github.com/symfony/http-client/tree/v6.2.10"
  6194. },
  6195. "funding": [
  6196. {
  6197. "url": "https://symfony.com/sponsor",
  6198. "type": "custom"
  6199. },
  6200. {
  6201. "url": "https://github.com/fabpot",
  6202. "type": "github"
  6203. },
  6204. {
  6205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6206. "type": "tidelift"
  6207. }
  6208. ],
  6209. "time": "2023-04-20T13:12:48+00:00"
  6210. },
  6211. {
  6212. "name": "symfony/http-client-contracts",
  6213. "version": "v3.2.1",
  6214. "source": {
  6215. "type": "git",
  6216. "url": "https://github.com/symfony/http-client-contracts.git",
  6217. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b"
  6218. },
  6219. "dist": {
  6220. "type": "zip",
  6221. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  6222. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  6223. "shasum": ""
  6224. },
  6225. "require": {
  6226. "php": ">=8.1"
  6227. },
  6228. "suggest": {
  6229. "symfony/http-client-implementation": ""
  6230. },
  6231. "type": "library",
  6232. "extra": {
  6233. "branch-alias": {
  6234. "dev-main": "3.3-dev"
  6235. },
  6236. "thanks": {
  6237. "name": "symfony/contracts",
  6238. "url": "https://github.com/symfony/contracts"
  6239. }
  6240. },
  6241. "autoload": {
  6242. "psr-4": {
  6243. "Symfony\\Contracts\\HttpClient\\": ""
  6244. },
  6245. "exclude-from-classmap": [
  6246. "/Test/"
  6247. ]
  6248. },
  6249. "notification-url": "https://packagist.org/downloads/",
  6250. "license": [
  6251. "MIT"
  6252. ],
  6253. "authors": [
  6254. {
  6255. "name": "Nicolas Grekas",
  6256. "email": "p@tchwork.com"
  6257. },
  6258. {
  6259. "name": "Symfony Community",
  6260. "homepage": "https://symfony.com/contributors"
  6261. }
  6262. ],
  6263. "description": "Generic abstractions related to HTTP clients",
  6264. "homepage": "https://symfony.com",
  6265. "keywords": [
  6266. "abstractions",
  6267. "contracts",
  6268. "decoupling",
  6269. "interfaces",
  6270. "interoperability",
  6271. "standards"
  6272. ],
  6273. "support": {
  6274. "source": "https://github.com/symfony/http-client-contracts/tree/v3.2.1"
  6275. },
  6276. "funding": [
  6277. {
  6278. "url": "https://symfony.com/sponsor",
  6279. "type": "custom"
  6280. },
  6281. {
  6282. "url": "https://github.com/fabpot",
  6283. "type": "github"
  6284. },
  6285. {
  6286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6287. "type": "tidelift"
  6288. }
  6289. ],
  6290. "time": "2023-03-01T10:32:47+00:00"
  6291. },
  6292. {
  6293. "name": "symfony/http-foundation",
  6294. "version": "v6.2.10",
  6295. "source": {
  6296. "type": "git",
  6297. "url": "https://github.com/symfony/http-foundation.git",
  6298. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc"
  6299. },
  6300. "dist": {
  6301. "type": "zip",
  6302. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/49adbb92bcb4e3c2943719d2756271e8b9602acc",
  6303. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc",
  6304. "shasum": ""
  6305. },
  6306. "require": {
  6307. "php": ">=8.1",
  6308. "symfony/deprecation-contracts": "^2.1|^3",
  6309. "symfony/polyfill-mbstring": "~1.1"
  6310. },
  6311. "conflict": {
  6312. "symfony/cache": "<6.2"
  6313. },
  6314. "require-dev": {
  6315. "predis/predis": "~1.0",
  6316. "symfony/cache": "^5.4|^6.0",
  6317. "symfony/dependency-injection": "^5.4|^6.0",
  6318. "symfony/expression-language": "^5.4|^6.0",
  6319. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6320. "symfony/mime": "^5.4|^6.0",
  6321. "symfony/rate-limiter": "^5.2|^6.0"
  6322. },
  6323. "suggest": {
  6324. "symfony/mime": "To use the file extension guesser"
  6325. },
  6326. "type": "library",
  6327. "autoload": {
  6328. "psr-4": {
  6329. "Symfony\\Component\\HttpFoundation\\": ""
  6330. },
  6331. "exclude-from-classmap": [
  6332. "/Tests/"
  6333. ]
  6334. },
  6335. "notification-url": "https://packagist.org/downloads/",
  6336. "license": [
  6337. "MIT"
  6338. ],
  6339. "authors": [
  6340. {
  6341. "name": "Fabien Potencier",
  6342. "email": "fabien@symfony.com"
  6343. },
  6344. {
  6345. "name": "Symfony Community",
  6346. "homepage": "https://symfony.com/contributors"
  6347. }
  6348. ],
  6349. "description": "Defines an object-oriented layer for the HTTP specification",
  6350. "homepage": "https://symfony.com",
  6351. "support": {
  6352. "source": "https://github.com/symfony/http-foundation/tree/v6.2.10"
  6353. },
  6354. "funding": [
  6355. {
  6356. "url": "https://symfony.com/sponsor",
  6357. "type": "custom"
  6358. },
  6359. {
  6360. "url": "https://github.com/fabpot",
  6361. "type": "github"
  6362. },
  6363. {
  6364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6365. "type": "tidelift"
  6366. }
  6367. ],
  6368. "time": "2023-04-18T13:46:08+00:00"
  6369. },
  6370. {
  6371. "name": "symfony/http-kernel",
  6372. "version": "v6.2.10",
  6373. "source": {
  6374. "type": "git",
  6375. "url": "https://github.com/symfony/http-kernel.git",
  6376. "reference": "81064a65a5496f17d2b6984f6519406f98864215"
  6377. },
  6378. "dist": {
  6379. "type": "zip",
  6380. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/81064a65a5496f17d2b6984f6519406f98864215",
  6381. "reference": "81064a65a5496f17d2b6984f6519406f98864215",
  6382. "shasum": ""
  6383. },
  6384. "require": {
  6385. "php": ">=8.1",
  6386. "psr/log": "^1|^2|^3",
  6387. "symfony/deprecation-contracts": "^2.1|^3",
  6388. "symfony/error-handler": "^6.1",
  6389. "symfony/event-dispatcher": "^5.4|^6.0",
  6390. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6391. "symfony/polyfill-ctype": "^1.8"
  6392. },
  6393. "conflict": {
  6394. "symfony/browser-kit": "<5.4",
  6395. "symfony/cache": "<5.4",
  6396. "symfony/config": "<6.1",
  6397. "symfony/console": "<5.4",
  6398. "symfony/dependency-injection": "<6.2",
  6399. "symfony/doctrine-bridge": "<5.4",
  6400. "symfony/form": "<5.4",
  6401. "symfony/http-client": "<5.4",
  6402. "symfony/mailer": "<5.4",
  6403. "symfony/messenger": "<5.4",
  6404. "symfony/translation": "<5.4",
  6405. "symfony/twig-bridge": "<5.4",
  6406. "symfony/validator": "<5.4",
  6407. "twig/twig": "<2.13"
  6408. },
  6409. "provide": {
  6410. "psr/log-implementation": "1.0|2.0|3.0"
  6411. },
  6412. "require-dev": {
  6413. "psr/cache": "^1.0|^2.0|^3.0",
  6414. "symfony/browser-kit": "^5.4|^6.0",
  6415. "symfony/config": "^6.1",
  6416. "symfony/console": "^5.4|^6.0",
  6417. "symfony/css-selector": "^5.4|^6.0",
  6418. "symfony/dependency-injection": "^6.2",
  6419. "symfony/dom-crawler": "^5.4|^6.0",
  6420. "symfony/expression-language": "^5.4|^6.0",
  6421. "symfony/finder": "^5.4|^6.0",
  6422. "symfony/http-client-contracts": "^1.1|^2|^3",
  6423. "symfony/process": "^5.4|^6.0",
  6424. "symfony/routing": "^5.4|^6.0",
  6425. "symfony/stopwatch": "^5.4|^6.0",
  6426. "symfony/translation": "^5.4|^6.0",
  6427. "symfony/translation-contracts": "^1.1|^2|^3",
  6428. "symfony/uid": "^5.4|^6.0",
  6429. "twig/twig": "^2.13|^3.0.4"
  6430. },
  6431. "suggest": {
  6432. "symfony/browser-kit": "",
  6433. "symfony/config": "",
  6434. "symfony/console": "",
  6435. "symfony/dependency-injection": ""
  6436. },
  6437. "type": "library",
  6438. "autoload": {
  6439. "psr-4": {
  6440. "Symfony\\Component\\HttpKernel\\": ""
  6441. },
  6442. "exclude-from-classmap": [
  6443. "/Tests/"
  6444. ]
  6445. },
  6446. "notification-url": "https://packagist.org/downloads/",
  6447. "license": [
  6448. "MIT"
  6449. ],
  6450. "authors": [
  6451. {
  6452. "name": "Fabien Potencier",
  6453. "email": "fabien@symfony.com"
  6454. },
  6455. {
  6456. "name": "Symfony Community",
  6457. "homepage": "https://symfony.com/contributors"
  6458. }
  6459. ],
  6460. "description": "Provides a structured process for converting a Request into a Response",
  6461. "homepage": "https://symfony.com",
  6462. "support": {
  6463. "source": "https://github.com/symfony/http-kernel/tree/v6.2.10"
  6464. },
  6465. "funding": [
  6466. {
  6467. "url": "https://symfony.com/sponsor",
  6468. "type": "custom"
  6469. },
  6470. {
  6471. "url": "https://github.com/fabpot",
  6472. "type": "github"
  6473. },
  6474. {
  6475. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6476. "type": "tidelift"
  6477. }
  6478. ],
  6479. "time": "2023-04-28T13:50:28+00:00"
  6480. },
  6481. {
  6482. "name": "symfony/intl",
  6483. "version": "v6.2.10",
  6484. "source": {
  6485. "type": "git",
  6486. "url": "https://github.com/symfony/intl.git",
  6487. "reference": "860c99e53149d22df1900d3aefdaeb17adb7669d"
  6488. },
  6489. "dist": {
  6490. "type": "zip",
  6491. "url": "https://api.github.com/repos/symfony/intl/zipball/860c99e53149d22df1900d3aefdaeb17adb7669d",
  6492. "reference": "860c99e53149d22df1900d3aefdaeb17adb7669d",
  6493. "shasum": ""
  6494. },
  6495. "require": {
  6496. "php": ">=8.1"
  6497. },
  6498. "require-dev": {
  6499. "symfony/filesystem": "^5.4|^6.0",
  6500. "symfony/finder": "^5.4|^6.0"
  6501. },
  6502. "type": "library",
  6503. "autoload": {
  6504. "psr-4": {
  6505. "Symfony\\Component\\Intl\\": ""
  6506. },
  6507. "exclude-from-classmap": [
  6508. "/Tests/"
  6509. ]
  6510. },
  6511. "notification-url": "https://packagist.org/downloads/",
  6512. "license": [
  6513. "MIT"
  6514. ],
  6515. "authors": [
  6516. {
  6517. "name": "Bernhard Schussek",
  6518. "email": "bschussek@gmail.com"
  6519. },
  6520. {
  6521. "name": "Eriksen Costa",
  6522. "email": "eriksen.costa@infranology.com.br"
  6523. },
  6524. {
  6525. "name": "Igor Wiedler",
  6526. "email": "igor@wiedler.ch"
  6527. },
  6528. {
  6529. "name": "Symfony Community",
  6530. "homepage": "https://symfony.com/contributors"
  6531. }
  6532. ],
  6533. "description": "Provides access to the localization data of the ICU library",
  6534. "homepage": "https://symfony.com",
  6535. "keywords": [
  6536. "i18n",
  6537. "icu",
  6538. "internationalization",
  6539. "intl",
  6540. "l10n",
  6541. "localization"
  6542. ],
  6543. "support": {
  6544. "source": "https://github.com/symfony/intl/tree/v6.2.10"
  6545. },
  6546. "funding": [
  6547. {
  6548. "url": "https://symfony.com/sponsor",
  6549. "type": "custom"
  6550. },
  6551. {
  6552. "url": "https://github.com/fabpot",
  6553. "type": "github"
  6554. },
  6555. {
  6556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6557. "type": "tidelift"
  6558. }
  6559. ],
  6560. "time": "2023-04-14T16:23:31+00:00"
  6561. },
  6562. {
  6563. "name": "symfony/mailer",
  6564. "version": "v6.2.8",
  6565. "source": {
  6566. "type": "git",
  6567. "url": "https://github.com/symfony/mailer.git",
  6568. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17"
  6569. },
  6570. "dist": {
  6571. "type": "zip",
  6572. "url": "https://api.github.com/repos/symfony/mailer/zipball/bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  6573. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  6574. "shasum": ""
  6575. },
  6576. "require": {
  6577. "egulias/email-validator": "^2.1.10|^3|^4",
  6578. "php": ">=8.1",
  6579. "psr/event-dispatcher": "^1",
  6580. "psr/log": "^1|^2|^3",
  6581. "symfony/event-dispatcher": "^5.4|^6.0",
  6582. "symfony/mime": "^6.2",
  6583. "symfony/service-contracts": "^1.1|^2|^3"
  6584. },
  6585. "conflict": {
  6586. "symfony/http-kernel": "<5.4",
  6587. "symfony/messenger": "<6.2",
  6588. "symfony/mime": "<6.2",
  6589. "symfony/twig-bridge": "<6.2.1"
  6590. },
  6591. "require-dev": {
  6592. "symfony/console": "^5.4|^6.0",
  6593. "symfony/http-client": "^5.4|^6.0",
  6594. "symfony/messenger": "^6.2",
  6595. "symfony/twig-bridge": "^6.2"
  6596. },
  6597. "type": "library",
  6598. "autoload": {
  6599. "psr-4": {
  6600. "Symfony\\Component\\Mailer\\": ""
  6601. },
  6602. "exclude-from-classmap": [
  6603. "/Tests/"
  6604. ]
  6605. },
  6606. "notification-url": "https://packagist.org/downloads/",
  6607. "license": [
  6608. "MIT"
  6609. ],
  6610. "authors": [
  6611. {
  6612. "name": "Fabien Potencier",
  6613. "email": "fabien@symfony.com"
  6614. },
  6615. {
  6616. "name": "Symfony Community",
  6617. "homepage": "https://symfony.com/contributors"
  6618. }
  6619. ],
  6620. "description": "Helps sending emails",
  6621. "homepage": "https://symfony.com",
  6622. "support": {
  6623. "source": "https://github.com/symfony/mailer/tree/v6.2.8"
  6624. },
  6625. "funding": [
  6626. {
  6627. "url": "https://symfony.com/sponsor",
  6628. "type": "custom"
  6629. },
  6630. {
  6631. "url": "https://github.com/fabpot",
  6632. "type": "github"
  6633. },
  6634. {
  6635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6636. "type": "tidelift"
  6637. }
  6638. ],
  6639. "time": "2023-03-14T15:00:05+00:00"
  6640. },
  6641. {
  6642. "name": "symfony/mailgun-mailer",
  6643. "version": "v6.2.10",
  6644. "source": {
  6645. "type": "git",
  6646. "url": "https://github.com/symfony/mailgun-mailer.git",
  6647. "reference": "2c9d47b11cc154d2db3f571030cd965d128de1a8"
  6648. },
  6649. "dist": {
  6650. "type": "zip",
  6651. "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/2c9d47b11cc154d2db3f571030cd965d128de1a8",
  6652. "reference": "2c9d47b11cc154d2db3f571030cd965d128de1a8",
  6653. "shasum": ""
  6654. },
  6655. "require": {
  6656. "php": ">=8.1",
  6657. "symfony/mailer": "^5.4.21|^6.2.7"
  6658. },
  6659. "require-dev": {
  6660. "symfony/http-client": "^5.4|^6.0"
  6661. },
  6662. "type": "symfony-mailer-bridge",
  6663. "autoload": {
  6664. "psr-4": {
  6665. "Symfony\\Component\\Mailer\\Bridge\\Mailgun\\": ""
  6666. },
  6667. "exclude-from-classmap": [
  6668. "/Tests/"
  6669. ]
  6670. },
  6671. "notification-url": "https://packagist.org/downloads/",
  6672. "license": [
  6673. "MIT"
  6674. ],
  6675. "authors": [
  6676. {
  6677. "name": "Fabien Potencier",
  6678. "email": "fabien@symfony.com"
  6679. },
  6680. {
  6681. "name": "Symfony Community",
  6682. "homepage": "https://symfony.com/contributors"
  6683. }
  6684. ],
  6685. "description": "Symfony Mailgun Mailer Bridge",
  6686. "homepage": "https://symfony.com",
  6687. "support": {
  6688. "source": "https://github.com/symfony/mailgun-mailer/tree/v6.2.10"
  6689. },
  6690. "funding": [
  6691. {
  6692. "url": "https://symfony.com/sponsor",
  6693. "type": "custom"
  6694. },
  6695. {
  6696. "url": "https://github.com/fabpot",
  6697. "type": "github"
  6698. },
  6699. {
  6700. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6701. "type": "tidelift"
  6702. }
  6703. ],
  6704. "time": "2023-04-14T16:23:31+00:00"
  6705. },
  6706. {
  6707. "name": "symfony/mime",
  6708. "version": "v6.2.10",
  6709. "source": {
  6710. "type": "git",
  6711. "url": "https://github.com/symfony/mime.git",
  6712. "reference": "b6c137fc53a9f7c4c951cd3f362b3734c7a97723"
  6713. },
  6714. "dist": {
  6715. "type": "zip",
  6716. "url": "https://api.github.com/repos/symfony/mime/zipball/b6c137fc53a9f7c4c951cd3f362b3734c7a97723",
  6717. "reference": "b6c137fc53a9f7c4c951cd3f362b3734c7a97723",
  6718. "shasum": ""
  6719. },
  6720. "require": {
  6721. "php": ">=8.1",
  6722. "symfony/polyfill-intl-idn": "^1.10",
  6723. "symfony/polyfill-mbstring": "^1.0"
  6724. },
  6725. "conflict": {
  6726. "egulias/email-validator": "~3.0.0",
  6727. "phpdocumentor/reflection-docblock": "<3.2.2",
  6728. "phpdocumentor/type-resolver": "<1.4.0",
  6729. "symfony/mailer": "<5.4",
  6730. "symfony/serializer": "<6.2"
  6731. },
  6732. "require-dev": {
  6733. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6734. "league/html-to-markdown": "^5.0",
  6735. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6736. "symfony/dependency-injection": "^5.4|^6.0",
  6737. "symfony/property-access": "^5.4|^6.0",
  6738. "symfony/property-info": "^5.4|^6.0",
  6739. "symfony/serializer": "^6.2"
  6740. },
  6741. "type": "library",
  6742. "autoload": {
  6743. "psr-4": {
  6744. "Symfony\\Component\\Mime\\": ""
  6745. },
  6746. "exclude-from-classmap": [
  6747. "/Tests/"
  6748. ]
  6749. },
  6750. "notification-url": "https://packagist.org/downloads/",
  6751. "license": [
  6752. "MIT"
  6753. ],
  6754. "authors": [
  6755. {
  6756. "name": "Fabien Potencier",
  6757. "email": "fabien@symfony.com"
  6758. },
  6759. {
  6760. "name": "Symfony Community",
  6761. "homepage": "https://symfony.com/contributors"
  6762. }
  6763. ],
  6764. "description": "Allows manipulating MIME messages",
  6765. "homepage": "https://symfony.com",
  6766. "keywords": [
  6767. "mime",
  6768. "mime-type"
  6769. ],
  6770. "support": {
  6771. "source": "https://github.com/symfony/mime/tree/v6.2.10"
  6772. },
  6773. "funding": [
  6774. {
  6775. "url": "https://symfony.com/sponsor",
  6776. "type": "custom"
  6777. },
  6778. {
  6779. "url": "https://github.com/fabpot",
  6780. "type": "github"
  6781. },
  6782. {
  6783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6784. "type": "tidelift"
  6785. }
  6786. ],
  6787. "time": "2023-04-19T09:54:16+00:00"
  6788. },
  6789. {
  6790. "name": "symfony/polyfill-ctype",
  6791. "version": "v1.27.0",
  6792. "source": {
  6793. "type": "git",
  6794. "url": "https://github.com/symfony/polyfill-ctype.git",
  6795. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  6796. },
  6797. "dist": {
  6798. "type": "zip",
  6799. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  6800. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  6801. "shasum": ""
  6802. },
  6803. "require": {
  6804. "php": ">=7.1"
  6805. },
  6806. "provide": {
  6807. "ext-ctype": "*"
  6808. },
  6809. "suggest": {
  6810. "ext-ctype": "For best performance"
  6811. },
  6812. "type": "library",
  6813. "extra": {
  6814. "branch-alias": {
  6815. "dev-main": "1.27-dev"
  6816. },
  6817. "thanks": {
  6818. "name": "symfony/polyfill",
  6819. "url": "https://github.com/symfony/polyfill"
  6820. }
  6821. },
  6822. "autoload": {
  6823. "files": [
  6824. "bootstrap.php"
  6825. ],
  6826. "psr-4": {
  6827. "Symfony\\Polyfill\\Ctype\\": ""
  6828. }
  6829. },
  6830. "notification-url": "https://packagist.org/downloads/",
  6831. "license": [
  6832. "MIT"
  6833. ],
  6834. "authors": [
  6835. {
  6836. "name": "Gert de Pagter",
  6837. "email": "BackEndTea@gmail.com"
  6838. },
  6839. {
  6840. "name": "Symfony Community",
  6841. "homepage": "https://symfony.com/contributors"
  6842. }
  6843. ],
  6844. "description": "Symfony polyfill for ctype functions",
  6845. "homepage": "https://symfony.com",
  6846. "keywords": [
  6847. "compatibility",
  6848. "ctype",
  6849. "polyfill",
  6850. "portable"
  6851. ],
  6852. "support": {
  6853. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  6854. },
  6855. "funding": [
  6856. {
  6857. "url": "https://symfony.com/sponsor",
  6858. "type": "custom"
  6859. },
  6860. {
  6861. "url": "https://github.com/fabpot",
  6862. "type": "github"
  6863. },
  6864. {
  6865. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6866. "type": "tidelift"
  6867. }
  6868. ],
  6869. "time": "2022-11-03T14:55:06+00:00"
  6870. },
  6871. {
  6872. "name": "symfony/polyfill-intl-grapheme",
  6873. "version": "v1.27.0",
  6874. "source": {
  6875. "type": "git",
  6876. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6877. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  6878. },
  6879. "dist": {
  6880. "type": "zip",
  6881. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  6882. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  6883. "shasum": ""
  6884. },
  6885. "require": {
  6886. "php": ">=7.1"
  6887. },
  6888. "suggest": {
  6889. "ext-intl": "For best performance"
  6890. },
  6891. "type": "library",
  6892. "extra": {
  6893. "branch-alias": {
  6894. "dev-main": "1.27-dev"
  6895. },
  6896. "thanks": {
  6897. "name": "symfony/polyfill",
  6898. "url": "https://github.com/symfony/polyfill"
  6899. }
  6900. },
  6901. "autoload": {
  6902. "files": [
  6903. "bootstrap.php"
  6904. ],
  6905. "psr-4": {
  6906. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6907. }
  6908. },
  6909. "notification-url": "https://packagist.org/downloads/",
  6910. "license": [
  6911. "MIT"
  6912. ],
  6913. "authors": [
  6914. {
  6915. "name": "Nicolas Grekas",
  6916. "email": "p@tchwork.com"
  6917. },
  6918. {
  6919. "name": "Symfony Community",
  6920. "homepage": "https://symfony.com/contributors"
  6921. }
  6922. ],
  6923. "description": "Symfony polyfill for intl's grapheme_* functions",
  6924. "homepage": "https://symfony.com",
  6925. "keywords": [
  6926. "compatibility",
  6927. "grapheme",
  6928. "intl",
  6929. "polyfill",
  6930. "portable",
  6931. "shim"
  6932. ],
  6933. "support": {
  6934. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  6935. },
  6936. "funding": [
  6937. {
  6938. "url": "https://symfony.com/sponsor",
  6939. "type": "custom"
  6940. },
  6941. {
  6942. "url": "https://github.com/fabpot",
  6943. "type": "github"
  6944. },
  6945. {
  6946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6947. "type": "tidelift"
  6948. }
  6949. ],
  6950. "time": "2022-11-03T14:55:06+00:00"
  6951. },
  6952. {
  6953. "name": "symfony/polyfill-intl-idn",
  6954. "version": "v1.27.0",
  6955. "source": {
  6956. "type": "git",
  6957. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6958. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  6959. },
  6960. "dist": {
  6961. "type": "zip",
  6962. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  6963. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  6964. "shasum": ""
  6965. },
  6966. "require": {
  6967. "php": ">=7.1",
  6968. "symfony/polyfill-intl-normalizer": "^1.10",
  6969. "symfony/polyfill-php72": "^1.10"
  6970. },
  6971. "suggest": {
  6972. "ext-intl": "For best performance"
  6973. },
  6974. "type": "library",
  6975. "extra": {
  6976. "branch-alias": {
  6977. "dev-main": "1.27-dev"
  6978. },
  6979. "thanks": {
  6980. "name": "symfony/polyfill",
  6981. "url": "https://github.com/symfony/polyfill"
  6982. }
  6983. },
  6984. "autoload": {
  6985. "files": [
  6986. "bootstrap.php"
  6987. ],
  6988. "psr-4": {
  6989. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6990. }
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "MIT"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "Laurent Bassin",
  6999. "email": "laurent@bassin.info"
  7000. },
  7001. {
  7002. "name": "Trevor Rowbotham",
  7003. "email": "trevor.rowbotham@pm.me"
  7004. },
  7005. {
  7006. "name": "Symfony Community",
  7007. "homepage": "https://symfony.com/contributors"
  7008. }
  7009. ],
  7010. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7011. "homepage": "https://symfony.com",
  7012. "keywords": [
  7013. "compatibility",
  7014. "idn",
  7015. "intl",
  7016. "polyfill",
  7017. "portable",
  7018. "shim"
  7019. ],
  7020. "support": {
  7021. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  7022. },
  7023. "funding": [
  7024. {
  7025. "url": "https://symfony.com/sponsor",
  7026. "type": "custom"
  7027. },
  7028. {
  7029. "url": "https://github.com/fabpot",
  7030. "type": "github"
  7031. },
  7032. {
  7033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7034. "type": "tidelift"
  7035. }
  7036. ],
  7037. "time": "2022-11-03T14:55:06+00:00"
  7038. },
  7039. {
  7040. "name": "symfony/polyfill-intl-normalizer",
  7041. "version": "v1.27.0",
  7042. "source": {
  7043. "type": "git",
  7044. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7045. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  7046. },
  7047. "dist": {
  7048. "type": "zip",
  7049. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  7050. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  7051. "shasum": ""
  7052. },
  7053. "require": {
  7054. "php": ">=7.1"
  7055. },
  7056. "suggest": {
  7057. "ext-intl": "For best performance"
  7058. },
  7059. "type": "library",
  7060. "extra": {
  7061. "branch-alias": {
  7062. "dev-main": "1.27-dev"
  7063. },
  7064. "thanks": {
  7065. "name": "symfony/polyfill",
  7066. "url": "https://github.com/symfony/polyfill"
  7067. }
  7068. },
  7069. "autoload": {
  7070. "files": [
  7071. "bootstrap.php"
  7072. ],
  7073. "psr-4": {
  7074. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7075. },
  7076. "classmap": [
  7077. "Resources/stubs"
  7078. ]
  7079. },
  7080. "notification-url": "https://packagist.org/downloads/",
  7081. "license": [
  7082. "MIT"
  7083. ],
  7084. "authors": [
  7085. {
  7086. "name": "Nicolas Grekas",
  7087. "email": "p@tchwork.com"
  7088. },
  7089. {
  7090. "name": "Symfony Community",
  7091. "homepage": "https://symfony.com/contributors"
  7092. }
  7093. ],
  7094. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7095. "homepage": "https://symfony.com",
  7096. "keywords": [
  7097. "compatibility",
  7098. "intl",
  7099. "normalizer",
  7100. "polyfill",
  7101. "portable",
  7102. "shim"
  7103. ],
  7104. "support": {
  7105. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  7106. },
  7107. "funding": [
  7108. {
  7109. "url": "https://symfony.com/sponsor",
  7110. "type": "custom"
  7111. },
  7112. {
  7113. "url": "https://github.com/fabpot",
  7114. "type": "github"
  7115. },
  7116. {
  7117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7118. "type": "tidelift"
  7119. }
  7120. ],
  7121. "time": "2022-11-03T14:55:06+00:00"
  7122. },
  7123. {
  7124. "name": "symfony/polyfill-mbstring",
  7125. "version": "v1.27.0",
  7126. "source": {
  7127. "type": "git",
  7128. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7129. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  7130. },
  7131. "dist": {
  7132. "type": "zip",
  7133. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  7134. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  7135. "shasum": ""
  7136. },
  7137. "require": {
  7138. "php": ">=7.1"
  7139. },
  7140. "provide": {
  7141. "ext-mbstring": "*"
  7142. },
  7143. "suggest": {
  7144. "ext-mbstring": "For best performance"
  7145. },
  7146. "type": "library",
  7147. "extra": {
  7148. "branch-alias": {
  7149. "dev-main": "1.27-dev"
  7150. },
  7151. "thanks": {
  7152. "name": "symfony/polyfill",
  7153. "url": "https://github.com/symfony/polyfill"
  7154. }
  7155. },
  7156. "autoload": {
  7157. "files": [
  7158. "bootstrap.php"
  7159. ],
  7160. "psr-4": {
  7161. "Symfony\\Polyfill\\Mbstring\\": ""
  7162. }
  7163. },
  7164. "notification-url": "https://packagist.org/downloads/",
  7165. "license": [
  7166. "MIT"
  7167. ],
  7168. "authors": [
  7169. {
  7170. "name": "Nicolas Grekas",
  7171. "email": "p@tchwork.com"
  7172. },
  7173. {
  7174. "name": "Symfony Community",
  7175. "homepage": "https://symfony.com/contributors"
  7176. }
  7177. ],
  7178. "description": "Symfony polyfill for the Mbstring extension",
  7179. "homepage": "https://symfony.com",
  7180. "keywords": [
  7181. "compatibility",
  7182. "mbstring",
  7183. "polyfill",
  7184. "portable",
  7185. "shim"
  7186. ],
  7187. "support": {
  7188. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  7189. },
  7190. "funding": [
  7191. {
  7192. "url": "https://symfony.com/sponsor",
  7193. "type": "custom"
  7194. },
  7195. {
  7196. "url": "https://github.com/fabpot",
  7197. "type": "github"
  7198. },
  7199. {
  7200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7201. "type": "tidelift"
  7202. }
  7203. ],
  7204. "time": "2022-11-03T14:55:06+00:00"
  7205. },
  7206. {
  7207. "name": "symfony/polyfill-php72",
  7208. "version": "v1.27.0",
  7209. "source": {
  7210. "type": "git",
  7211. "url": "https://github.com/symfony/polyfill-php72.git",
  7212. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  7213. },
  7214. "dist": {
  7215. "type": "zip",
  7216. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  7217. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  7218. "shasum": ""
  7219. },
  7220. "require": {
  7221. "php": ">=7.1"
  7222. },
  7223. "type": "library",
  7224. "extra": {
  7225. "branch-alias": {
  7226. "dev-main": "1.27-dev"
  7227. },
  7228. "thanks": {
  7229. "name": "symfony/polyfill",
  7230. "url": "https://github.com/symfony/polyfill"
  7231. }
  7232. },
  7233. "autoload": {
  7234. "files": [
  7235. "bootstrap.php"
  7236. ],
  7237. "psr-4": {
  7238. "Symfony\\Polyfill\\Php72\\": ""
  7239. }
  7240. },
  7241. "notification-url": "https://packagist.org/downloads/",
  7242. "license": [
  7243. "MIT"
  7244. ],
  7245. "authors": [
  7246. {
  7247. "name": "Nicolas Grekas",
  7248. "email": "p@tchwork.com"
  7249. },
  7250. {
  7251. "name": "Symfony Community",
  7252. "homepage": "https://symfony.com/contributors"
  7253. }
  7254. ],
  7255. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7256. "homepage": "https://symfony.com",
  7257. "keywords": [
  7258. "compatibility",
  7259. "polyfill",
  7260. "portable",
  7261. "shim"
  7262. ],
  7263. "support": {
  7264. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  7265. },
  7266. "funding": [
  7267. {
  7268. "url": "https://symfony.com/sponsor",
  7269. "type": "custom"
  7270. },
  7271. {
  7272. "url": "https://github.com/fabpot",
  7273. "type": "github"
  7274. },
  7275. {
  7276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7277. "type": "tidelift"
  7278. }
  7279. ],
  7280. "time": "2022-11-03T14:55:06+00:00"
  7281. },
  7282. {
  7283. "name": "symfony/polyfill-php80",
  7284. "version": "v1.27.0",
  7285. "source": {
  7286. "type": "git",
  7287. "url": "https://github.com/symfony/polyfill-php80.git",
  7288. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  7289. },
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  7293. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "php": ">=7.1"
  7298. },
  7299. "type": "library",
  7300. "extra": {
  7301. "branch-alias": {
  7302. "dev-main": "1.27-dev"
  7303. },
  7304. "thanks": {
  7305. "name": "symfony/polyfill",
  7306. "url": "https://github.com/symfony/polyfill"
  7307. }
  7308. },
  7309. "autoload": {
  7310. "files": [
  7311. "bootstrap.php"
  7312. ],
  7313. "psr-4": {
  7314. "Symfony\\Polyfill\\Php80\\": ""
  7315. },
  7316. "classmap": [
  7317. "Resources/stubs"
  7318. ]
  7319. },
  7320. "notification-url": "https://packagist.org/downloads/",
  7321. "license": [
  7322. "MIT"
  7323. ],
  7324. "authors": [
  7325. {
  7326. "name": "Ion Bazan",
  7327. "email": "ion.bazan@gmail.com"
  7328. },
  7329. {
  7330. "name": "Nicolas Grekas",
  7331. "email": "p@tchwork.com"
  7332. },
  7333. {
  7334. "name": "Symfony Community",
  7335. "homepage": "https://symfony.com/contributors"
  7336. }
  7337. ],
  7338. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7339. "homepage": "https://symfony.com",
  7340. "keywords": [
  7341. "compatibility",
  7342. "polyfill",
  7343. "portable",
  7344. "shim"
  7345. ],
  7346. "support": {
  7347. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  7348. },
  7349. "funding": [
  7350. {
  7351. "url": "https://symfony.com/sponsor",
  7352. "type": "custom"
  7353. },
  7354. {
  7355. "url": "https://github.com/fabpot",
  7356. "type": "github"
  7357. },
  7358. {
  7359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7360. "type": "tidelift"
  7361. }
  7362. ],
  7363. "time": "2022-11-03T14:55:06+00:00"
  7364. },
  7365. {
  7366. "name": "symfony/polyfill-uuid",
  7367. "version": "v1.27.0",
  7368. "source": {
  7369. "type": "git",
  7370. "url": "https://github.com/symfony/polyfill-uuid.git",
  7371. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  7372. },
  7373. "dist": {
  7374. "type": "zip",
  7375. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7376. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7377. "shasum": ""
  7378. },
  7379. "require": {
  7380. "php": ">=7.1"
  7381. },
  7382. "provide": {
  7383. "ext-uuid": "*"
  7384. },
  7385. "suggest": {
  7386. "ext-uuid": "For best performance"
  7387. },
  7388. "type": "library",
  7389. "extra": {
  7390. "branch-alias": {
  7391. "dev-main": "1.27-dev"
  7392. },
  7393. "thanks": {
  7394. "name": "symfony/polyfill",
  7395. "url": "https://github.com/symfony/polyfill"
  7396. }
  7397. },
  7398. "autoload": {
  7399. "files": [
  7400. "bootstrap.php"
  7401. ],
  7402. "psr-4": {
  7403. "Symfony\\Polyfill\\Uuid\\": ""
  7404. }
  7405. },
  7406. "notification-url": "https://packagist.org/downloads/",
  7407. "license": [
  7408. "MIT"
  7409. ],
  7410. "authors": [
  7411. {
  7412. "name": "Grégoire Pineau",
  7413. "email": "lyrixx@lyrixx.info"
  7414. },
  7415. {
  7416. "name": "Symfony Community",
  7417. "homepage": "https://symfony.com/contributors"
  7418. }
  7419. ],
  7420. "description": "Symfony polyfill for uuid functions",
  7421. "homepage": "https://symfony.com",
  7422. "keywords": [
  7423. "compatibility",
  7424. "polyfill",
  7425. "portable",
  7426. "uuid"
  7427. ],
  7428. "support": {
  7429. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  7430. },
  7431. "funding": [
  7432. {
  7433. "url": "https://symfony.com/sponsor",
  7434. "type": "custom"
  7435. },
  7436. {
  7437. "url": "https://github.com/fabpot",
  7438. "type": "github"
  7439. },
  7440. {
  7441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7442. "type": "tidelift"
  7443. }
  7444. ],
  7445. "time": "2022-11-03T14:55:06+00:00"
  7446. },
  7447. {
  7448. "name": "symfony/process",
  7449. "version": "v6.2.10",
  7450. "source": {
  7451. "type": "git",
  7452. "url": "https://github.com/symfony/process.git",
  7453. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e"
  7454. },
  7455. "dist": {
  7456. "type": "zip",
  7457. "url": "https://api.github.com/repos/symfony/process/zipball/b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  7458. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  7459. "shasum": ""
  7460. },
  7461. "require": {
  7462. "php": ">=8.1"
  7463. },
  7464. "type": "library",
  7465. "autoload": {
  7466. "psr-4": {
  7467. "Symfony\\Component\\Process\\": ""
  7468. },
  7469. "exclude-from-classmap": [
  7470. "/Tests/"
  7471. ]
  7472. },
  7473. "notification-url": "https://packagist.org/downloads/",
  7474. "license": [
  7475. "MIT"
  7476. ],
  7477. "authors": [
  7478. {
  7479. "name": "Fabien Potencier",
  7480. "email": "fabien@symfony.com"
  7481. },
  7482. {
  7483. "name": "Symfony Community",
  7484. "homepage": "https://symfony.com/contributors"
  7485. }
  7486. ],
  7487. "description": "Executes commands in sub-processes",
  7488. "homepage": "https://symfony.com",
  7489. "support": {
  7490. "source": "https://github.com/symfony/process/tree/v6.2.10"
  7491. },
  7492. "funding": [
  7493. {
  7494. "url": "https://symfony.com/sponsor",
  7495. "type": "custom"
  7496. },
  7497. {
  7498. "url": "https://github.com/fabpot",
  7499. "type": "github"
  7500. },
  7501. {
  7502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7503. "type": "tidelift"
  7504. }
  7505. ],
  7506. "time": "2023-04-18T13:56:57+00:00"
  7507. },
  7508. {
  7509. "name": "symfony/routing",
  7510. "version": "v6.2.8",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/symfony/routing.git",
  7514. "reference": "69062e2823f03b82265d73a966999660f0e1e404"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/symfony/routing/zipball/69062e2823f03b82265d73a966999660f0e1e404",
  7519. "reference": "69062e2823f03b82265d73a966999660f0e1e404",
  7520. "shasum": ""
  7521. },
  7522. "require": {
  7523. "php": ">=8.1"
  7524. },
  7525. "conflict": {
  7526. "doctrine/annotations": "<1.12",
  7527. "symfony/config": "<6.2",
  7528. "symfony/dependency-injection": "<5.4",
  7529. "symfony/yaml": "<5.4"
  7530. },
  7531. "require-dev": {
  7532. "doctrine/annotations": "^1.12|^2",
  7533. "psr/log": "^1|^2|^3",
  7534. "symfony/config": "^6.2",
  7535. "symfony/dependency-injection": "^5.4|^6.0",
  7536. "symfony/expression-language": "^5.4|^6.0",
  7537. "symfony/http-foundation": "^5.4|^6.0",
  7538. "symfony/yaml": "^5.4|^6.0"
  7539. },
  7540. "suggest": {
  7541. "symfony/config": "For using the all-in-one router or any loader",
  7542. "symfony/expression-language": "For using expression matching",
  7543. "symfony/http-foundation": "For using a Symfony Request object",
  7544. "symfony/yaml": "For using the YAML loader"
  7545. },
  7546. "type": "library",
  7547. "autoload": {
  7548. "psr-4": {
  7549. "Symfony\\Component\\Routing\\": ""
  7550. },
  7551. "exclude-from-classmap": [
  7552. "/Tests/"
  7553. ]
  7554. },
  7555. "notification-url": "https://packagist.org/downloads/",
  7556. "license": [
  7557. "MIT"
  7558. ],
  7559. "authors": [
  7560. {
  7561. "name": "Fabien Potencier",
  7562. "email": "fabien@symfony.com"
  7563. },
  7564. {
  7565. "name": "Symfony Community",
  7566. "homepage": "https://symfony.com/contributors"
  7567. }
  7568. ],
  7569. "description": "Maps an HTTP request to a set of configuration variables",
  7570. "homepage": "https://symfony.com",
  7571. "keywords": [
  7572. "router",
  7573. "routing",
  7574. "uri",
  7575. "url"
  7576. ],
  7577. "support": {
  7578. "source": "https://github.com/symfony/routing/tree/v6.2.8"
  7579. },
  7580. "funding": [
  7581. {
  7582. "url": "https://symfony.com/sponsor",
  7583. "type": "custom"
  7584. },
  7585. {
  7586. "url": "https://github.com/fabpot",
  7587. "type": "github"
  7588. },
  7589. {
  7590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7591. "type": "tidelift"
  7592. }
  7593. ],
  7594. "time": "2023-03-14T15:00:05+00:00"
  7595. },
  7596. {
  7597. "name": "symfony/service-contracts",
  7598. "version": "v3.2.1",
  7599. "source": {
  7600. "type": "git",
  7601. "url": "https://github.com/symfony/service-contracts.git",
  7602. "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
  7603. },
  7604. "dist": {
  7605. "type": "zip",
  7606. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
  7607. "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
  7608. "shasum": ""
  7609. },
  7610. "require": {
  7611. "php": ">=8.1",
  7612. "psr/container": "^2.0"
  7613. },
  7614. "conflict": {
  7615. "ext-psr": "<1.1|>=2"
  7616. },
  7617. "suggest": {
  7618. "symfony/service-implementation": ""
  7619. },
  7620. "type": "library",
  7621. "extra": {
  7622. "branch-alias": {
  7623. "dev-main": "3.3-dev"
  7624. },
  7625. "thanks": {
  7626. "name": "symfony/contracts",
  7627. "url": "https://github.com/symfony/contracts"
  7628. }
  7629. },
  7630. "autoload": {
  7631. "psr-4": {
  7632. "Symfony\\Contracts\\Service\\": ""
  7633. },
  7634. "exclude-from-classmap": [
  7635. "/Test/"
  7636. ]
  7637. },
  7638. "notification-url": "https://packagist.org/downloads/",
  7639. "license": [
  7640. "MIT"
  7641. ],
  7642. "authors": [
  7643. {
  7644. "name": "Nicolas Grekas",
  7645. "email": "p@tchwork.com"
  7646. },
  7647. {
  7648. "name": "Symfony Community",
  7649. "homepage": "https://symfony.com/contributors"
  7650. }
  7651. ],
  7652. "description": "Generic abstractions related to writing services",
  7653. "homepage": "https://symfony.com",
  7654. "keywords": [
  7655. "abstractions",
  7656. "contracts",
  7657. "decoupling",
  7658. "interfaces",
  7659. "interoperability",
  7660. "standards"
  7661. ],
  7662. "support": {
  7663. "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
  7664. },
  7665. "funding": [
  7666. {
  7667. "url": "https://symfony.com/sponsor",
  7668. "type": "custom"
  7669. },
  7670. {
  7671. "url": "https://github.com/fabpot",
  7672. "type": "github"
  7673. },
  7674. {
  7675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7676. "type": "tidelift"
  7677. }
  7678. ],
  7679. "time": "2023-03-01T10:32:47+00:00"
  7680. },
  7681. {
  7682. "name": "symfony/string",
  7683. "version": "v6.2.8",
  7684. "source": {
  7685. "type": "git",
  7686. "url": "https://github.com/symfony/string.git",
  7687. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef"
  7688. },
  7689. "dist": {
  7690. "type": "zip",
  7691. "url": "https://api.github.com/repos/symfony/string/zipball/193e83bbd6617d6b2151c37fff10fa7168ebddef",
  7692. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef",
  7693. "shasum": ""
  7694. },
  7695. "require": {
  7696. "php": ">=8.1",
  7697. "symfony/polyfill-ctype": "~1.8",
  7698. "symfony/polyfill-intl-grapheme": "~1.0",
  7699. "symfony/polyfill-intl-normalizer": "~1.0",
  7700. "symfony/polyfill-mbstring": "~1.0"
  7701. },
  7702. "conflict": {
  7703. "symfony/translation-contracts": "<2.0"
  7704. },
  7705. "require-dev": {
  7706. "symfony/error-handler": "^5.4|^6.0",
  7707. "symfony/http-client": "^5.4|^6.0",
  7708. "symfony/intl": "^6.2",
  7709. "symfony/translation-contracts": "^2.0|^3.0",
  7710. "symfony/var-exporter": "^5.4|^6.0"
  7711. },
  7712. "type": "library",
  7713. "autoload": {
  7714. "files": [
  7715. "Resources/functions.php"
  7716. ],
  7717. "psr-4": {
  7718. "Symfony\\Component\\String\\": ""
  7719. },
  7720. "exclude-from-classmap": [
  7721. "/Tests/"
  7722. ]
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "MIT"
  7727. ],
  7728. "authors": [
  7729. {
  7730. "name": "Nicolas Grekas",
  7731. "email": "p@tchwork.com"
  7732. },
  7733. {
  7734. "name": "Symfony Community",
  7735. "homepage": "https://symfony.com/contributors"
  7736. }
  7737. ],
  7738. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7739. "homepage": "https://symfony.com",
  7740. "keywords": [
  7741. "grapheme",
  7742. "i18n",
  7743. "string",
  7744. "unicode",
  7745. "utf-8",
  7746. "utf8"
  7747. ],
  7748. "support": {
  7749. "source": "https://github.com/symfony/string/tree/v6.2.8"
  7750. },
  7751. "funding": [
  7752. {
  7753. "url": "https://symfony.com/sponsor",
  7754. "type": "custom"
  7755. },
  7756. {
  7757. "url": "https://github.com/fabpot",
  7758. "type": "github"
  7759. },
  7760. {
  7761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7762. "type": "tidelift"
  7763. }
  7764. ],
  7765. "time": "2023-03-20T16:06:02+00:00"
  7766. },
  7767. {
  7768. "name": "symfony/translation",
  7769. "version": "v6.2.8",
  7770. "source": {
  7771. "type": "git",
  7772. "url": "https://github.com/symfony/translation.git",
  7773. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5"
  7774. },
  7775. "dist": {
  7776. "type": "zip",
  7777. "url": "https://api.github.com/repos/symfony/translation/zipball/817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  7778. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  7779. "shasum": ""
  7780. },
  7781. "require": {
  7782. "php": ">=8.1",
  7783. "symfony/polyfill-mbstring": "~1.0",
  7784. "symfony/translation-contracts": "^2.3|^3.0"
  7785. },
  7786. "conflict": {
  7787. "symfony/config": "<5.4",
  7788. "symfony/console": "<5.4",
  7789. "symfony/dependency-injection": "<5.4",
  7790. "symfony/http-kernel": "<5.4",
  7791. "symfony/twig-bundle": "<5.4",
  7792. "symfony/yaml": "<5.4"
  7793. },
  7794. "provide": {
  7795. "symfony/translation-implementation": "2.3|3.0"
  7796. },
  7797. "require-dev": {
  7798. "nikic/php-parser": "^4.13",
  7799. "psr/log": "^1|^2|^3",
  7800. "symfony/config": "^5.4|^6.0",
  7801. "symfony/console": "^5.4|^6.0",
  7802. "symfony/dependency-injection": "^5.4|^6.0",
  7803. "symfony/finder": "^5.4|^6.0",
  7804. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7805. "symfony/http-kernel": "^5.4|^6.0",
  7806. "symfony/intl": "^5.4|^6.0",
  7807. "symfony/polyfill-intl-icu": "^1.21",
  7808. "symfony/routing": "^5.4|^6.0",
  7809. "symfony/service-contracts": "^1.1.2|^2|^3",
  7810. "symfony/yaml": "^5.4|^6.0"
  7811. },
  7812. "suggest": {
  7813. "nikic/php-parser": "To use PhpAstExtractor",
  7814. "psr/log-implementation": "To use logging capability in translator",
  7815. "symfony/config": "",
  7816. "symfony/yaml": ""
  7817. },
  7818. "type": "library",
  7819. "autoload": {
  7820. "files": [
  7821. "Resources/functions.php"
  7822. ],
  7823. "psr-4": {
  7824. "Symfony\\Component\\Translation\\": ""
  7825. },
  7826. "exclude-from-classmap": [
  7827. "/Tests/"
  7828. ]
  7829. },
  7830. "notification-url": "https://packagist.org/downloads/",
  7831. "license": [
  7832. "MIT"
  7833. ],
  7834. "authors": [
  7835. {
  7836. "name": "Fabien Potencier",
  7837. "email": "fabien@symfony.com"
  7838. },
  7839. {
  7840. "name": "Symfony Community",
  7841. "homepage": "https://symfony.com/contributors"
  7842. }
  7843. ],
  7844. "description": "Provides tools to internationalize your application",
  7845. "homepage": "https://symfony.com",
  7846. "support": {
  7847. "source": "https://github.com/symfony/translation/tree/v6.2.8"
  7848. },
  7849. "funding": [
  7850. {
  7851. "url": "https://symfony.com/sponsor",
  7852. "type": "custom"
  7853. },
  7854. {
  7855. "url": "https://github.com/fabpot",
  7856. "type": "github"
  7857. },
  7858. {
  7859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7860. "type": "tidelift"
  7861. }
  7862. ],
  7863. "time": "2023-03-31T09:14:44+00:00"
  7864. },
  7865. {
  7866. "name": "symfony/translation-contracts",
  7867. "version": "v3.2.1",
  7868. "source": {
  7869. "type": "git",
  7870. "url": "https://github.com/symfony/translation-contracts.git",
  7871. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
  7872. },
  7873. "dist": {
  7874. "type": "zip",
  7875. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
  7876. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
  7877. "shasum": ""
  7878. },
  7879. "require": {
  7880. "php": ">=8.1"
  7881. },
  7882. "suggest": {
  7883. "symfony/translation-implementation": ""
  7884. },
  7885. "type": "library",
  7886. "extra": {
  7887. "branch-alias": {
  7888. "dev-main": "3.3-dev"
  7889. },
  7890. "thanks": {
  7891. "name": "symfony/contracts",
  7892. "url": "https://github.com/symfony/contracts"
  7893. }
  7894. },
  7895. "autoload": {
  7896. "psr-4": {
  7897. "Symfony\\Contracts\\Translation\\": ""
  7898. },
  7899. "exclude-from-classmap": [
  7900. "/Test/"
  7901. ]
  7902. },
  7903. "notification-url": "https://packagist.org/downloads/",
  7904. "license": [
  7905. "MIT"
  7906. ],
  7907. "authors": [
  7908. {
  7909. "name": "Nicolas Grekas",
  7910. "email": "p@tchwork.com"
  7911. },
  7912. {
  7913. "name": "Symfony Community",
  7914. "homepage": "https://symfony.com/contributors"
  7915. }
  7916. ],
  7917. "description": "Generic abstractions related to translation",
  7918. "homepage": "https://symfony.com",
  7919. "keywords": [
  7920. "abstractions",
  7921. "contracts",
  7922. "decoupling",
  7923. "interfaces",
  7924. "interoperability",
  7925. "standards"
  7926. ],
  7927. "support": {
  7928. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
  7929. },
  7930. "funding": [
  7931. {
  7932. "url": "https://symfony.com/sponsor",
  7933. "type": "custom"
  7934. },
  7935. {
  7936. "url": "https://github.com/fabpot",
  7937. "type": "github"
  7938. },
  7939. {
  7940. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7941. "type": "tidelift"
  7942. }
  7943. ],
  7944. "time": "2023-03-01T10:32:47+00:00"
  7945. },
  7946. {
  7947. "name": "symfony/uid",
  7948. "version": "v6.2.7",
  7949. "source": {
  7950. "type": "git",
  7951. "url": "https://github.com/symfony/uid.git",
  7952. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0"
  7953. },
  7954. "dist": {
  7955. "type": "zip",
  7956. "url": "https://api.github.com/repos/symfony/uid/zipball/d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  7957. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  7958. "shasum": ""
  7959. },
  7960. "require": {
  7961. "php": ">=8.1",
  7962. "symfony/polyfill-uuid": "^1.15"
  7963. },
  7964. "require-dev": {
  7965. "symfony/console": "^5.4|^6.0"
  7966. },
  7967. "type": "library",
  7968. "autoload": {
  7969. "psr-4": {
  7970. "Symfony\\Component\\Uid\\": ""
  7971. },
  7972. "exclude-from-classmap": [
  7973. "/Tests/"
  7974. ]
  7975. },
  7976. "notification-url": "https://packagist.org/downloads/",
  7977. "license": [
  7978. "MIT"
  7979. ],
  7980. "authors": [
  7981. {
  7982. "name": "Grégoire Pineau",
  7983. "email": "lyrixx@lyrixx.info"
  7984. },
  7985. {
  7986. "name": "Nicolas Grekas",
  7987. "email": "p@tchwork.com"
  7988. },
  7989. {
  7990. "name": "Symfony Community",
  7991. "homepage": "https://symfony.com/contributors"
  7992. }
  7993. ],
  7994. "description": "Provides an object-oriented API to generate and represent UIDs",
  7995. "homepage": "https://symfony.com",
  7996. "keywords": [
  7997. "UID",
  7998. "ulid",
  7999. "uuid"
  8000. ],
  8001. "support": {
  8002. "source": "https://github.com/symfony/uid/tree/v6.2.7"
  8003. },
  8004. "funding": [
  8005. {
  8006. "url": "https://symfony.com/sponsor",
  8007. "type": "custom"
  8008. },
  8009. {
  8010. "url": "https://github.com/fabpot",
  8011. "type": "github"
  8012. },
  8013. {
  8014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8015. "type": "tidelift"
  8016. }
  8017. ],
  8018. "time": "2023-02-14T08:44:56+00:00"
  8019. },
  8020. {
  8021. "name": "symfony/var-dumper",
  8022. "version": "v6.2.10",
  8023. "source": {
  8024. "type": "git",
  8025. "url": "https://github.com/symfony/var-dumper.git",
  8026. "reference": "41a750a23412ca76fdbbf5096943b4134272c1ab"
  8027. },
  8028. "dist": {
  8029. "type": "zip",
  8030. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/41a750a23412ca76fdbbf5096943b4134272c1ab",
  8031. "reference": "41a750a23412ca76fdbbf5096943b4134272c1ab",
  8032. "shasum": ""
  8033. },
  8034. "require": {
  8035. "php": ">=8.1",
  8036. "symfony/polyfill-mbstring": "~1.0"
  8037. },
  8038. "conflict": {
  8039. "phpunit/phpunit": "<5.4.3",
  8040. "symfony/console": "<5.4"
  8041. },
  8042. "require-dev": {
  8043. "ext-iconv": "*",
  8044. "symfony/console": "^5.4|^6.0",
  8045. "symfony/process": "^5.4|^6.0",
  8046. "symfony/uid": "^5.4|^6.0",
  8047. "twig/twig": "^2.13|^3.0.4"
  8048. },
  8049. "suggest": {
  8050. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8051. "ext-intl": "To show region name in time zone dump",
  8052. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8053. },
  8054. "bin": [
  8055. "Resources/bin/var-dump-server"
  8056. ],
  8057. "type": "library",
  8058. "autoload": {
  8059. "files": [
  8060. "Resources/functions/dump.php"
  8061. ],
  8062. "psr-4": {
  8063. "Symfony\\Component\\VarDumper\\": ""
  8064. },
  8065. "exclude-from-classmap": [
  8066. "/Tests/"
  8067. ]
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "MIT"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "Nicolas Grekas",
  8076. "email": "p@tchwork.com"
  8077. },
  8078. {
  8079. "name": "Symfony Community",
  8080. "homepage": "https://symfony.com/contributors"
  8081. }
  8082. ],
  8083. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8084. "homepage": "https://symfony.com",
  8085. "keywords": [
  8086. "debug",
  8087. "dump"
  8088. ],
  8089. "support": {
  8090. "source": "https://github.com/symfony/var-dumper/tree/v6.2.10"
  8091. },
  8092. "funding": [
  8093. {
  8094. "url": "https://symfony.com/sponsor",
  8095. "type": "custom"
  8096. },
  8097. {
  8098. "url": "https://github.com/fabpot",
  8099. "type": "github"
  8100. },
  8101. {
  8102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8103. "type": "tidelift"
  8104. }
  8105. ],
  8106. "time": "2023-04-18T13:46:08+00:00"
  8107. },
  8108. {
  8109. "name": "tijsverkoyen/css-to-inline-styles",
  8110. "version": "2.2.6",
  8111. "source": {
  8112. "type": "git",
  8113. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8114. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  8115. },
  8116. "dist": {
  8117. "type": "zip",
  8118. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8119. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8120. "shasum": ""
  8121. },
  8122. "require": {
  8123. "ext-dom": "*",
  8124. "ext-libxml": "*",
  8125. "php": "^5.5 || ^7.0 || ^8.0",
  8126. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8127. },
  8128. "require-dev": {
  8129. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8130. },
  8131. "type": "library",
  8132. "extra": {
  8133. "branch-alias": {
  8134. "dev-master": "2.2.x-dev"
  8135. }
  8136. },
  8137. "autoload": {
  8138. "psr-4": {
  8139. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8140. }
  8141. },
  8142. "notification-url": "https://packagist.org/downloads/",
  8143. "license": [
  8144. "BSD-3-Clause"
  8145. ],
  8146. "authors": [
  8147. {
  8148. "name": "Tijs Verkoyen",
  8149. "email": "css_to_inline_styles@verkoyen.eu",
  8150. "role": "Developer"
  8151. }
  8152. ],
  8153. "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.",
  8154. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8155. "support": {
  8156. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8157. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  8158. },
  8159. "time": "2023-01-03T09:29:04+00:00"
  8160. },
  8161. {
  8162. "name": "vlucas/phpdotenv",
  8163. "version": "v5.5.0",
  8164. "source": {
  8165. "type": "git",
  8166. "url": "https://github.com/vlucas/phpdotenv.git",
  8167. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  8168. },
  8169. "dist": {
  8170. "type": "zip",
  8171. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8172. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8173. "shasum": ""
  8174. },
  8175. "require": {
  8176. "ext-pcre": "*",
  8177. "graham-campbell/result-type": "^1.0.2",
  8178. "php": "^7.1.3 || ^8.0",
  8179. "phpoption/phpoption": "^1.8",
  8180. "symfony/polyfill-ctype": "^1.23",
  8181. "symfony/polyfill-mbstring": "^1.23.1",
  8182. "symfony/polyfill-php80": "^1.23.1"
  8183. },
  8184. "require-dev": {
  8185. "bamarni/composer-bin-plugin": "^1.4.1",
  8186. "ext-filter": "*",
  8187. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  8188. },
  8189. "suggest": {
  8190. "ext-filter": "Required to use the boolean validator."
  8191. },
  8192. "type": "library",
  8193. "extra": {
  8194. "bamarni-bin": {
  8195. "bin-links": true,
  8196. "forward-command": true
  8197. },
  8198. "branch-alias": {
  8199. "dev-master": "5.5-dev"
  8200. }
  8201. },
  8202. "autoload": {
  8203. "psr-4": {
  8204. "Dotenv\\": "src/"
  8205. }
  8206. },
  8207. "notification-url": "https://packagist.org/downloads/",
  8208. "license": [
  8209. "BSD-3-Clause"
  8210. ],
  8211. "authors": [
  8212. {
  8213. "name": "Graham Campbell",
  8214. "email": "hello@gjcampbell.co.uk",
  8215. "homepage": "https://github.com/GrahamCampbell"
  8216. },
  8217. {
  8218. "name": "Vance Lucas",
  8219. "email": "vance@vancelucas.com",
  8220. "homepage": "https://github.com/vlucas"
  8221. }
  8222. ],
  8223. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8224. "keywords": [
  8225. "dotenv",
  8226. "env",
  8227. "environment"
  8228. ],
  8229. "support": {
  8230. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8231. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8232. },
  8233. "funding": [
  8234. {
  8235. "url": "https://github.com/GrahamCampbell",
  8236. "type": "github"
  8237. },
  8238. {
  8239. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8240. "type": "tidelift"
  8241. }
  8242. ],
  8243. "time": "2022-10-16T01:01:54+00:00"
  8244. },
  8245. {
  8246. "name": "voku/portable-ascii",
  8247. "version": "2.0.1",
  8248. "source": {
  8249. "type": "git",
  8250. "url": "https://github.com/voku/portable-ascii.git",
  8251. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  8252. },
  8253. "dist": {
  8254. "type": "zip",
  8255. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  8256. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  8257. "shasum": ""
  8258. },
  8259. "require": {
  8260. "php": ">=7.0.0"
  8261. },
  8262. "require-dev": {
  8263. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8264. },
  8265. "suggest": {
  8266. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8267. },
  8268. "type": "library",
  8269. "autoload": {
  8270. "psr-4": {
  8271. "voku\\": "src/voku/"
  8272. }
  8273. },
  8274. "notification-url": "https://packagist.org/downloads/",
  8275. "license": [
  8276. "MIT"
  8277. ],
  8278. "authors": [
  8279. {
  8280. "name": "Lars Moelleken",
  8281. "homepage": "http://www.moelleken.org/"
  8282. }
  8283. ],
  8284. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8285. "homepage": "https://github.com/voku/portable-ascii",
  8286. "keywords": [
  8287. "ascii",
  8288. "clean",
  8289. "php"
  8290. ],
  8291. "support": {
  8292. "issues": "https://github.com/voku/portable-ascii/issues",
  8293. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://www.paypal.me/moelleken",
  8298. "type": "custom"
  8299. },
  8300. {
  8301. "url": "https://github.com/voku",
  8302. "type": "github"
  8303. },
  8304. {
  8305. "url": "https://opencollective.com/portable-ascii",
  8306. "type": "open_collective"
  8307. },
  8308. {
  8309. "url": "https://www.patreon.com/voku",
  8310. "type": "patreon"
  8311. },
  8312. {
  8313. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8314. "type": "tidelift"
  8315. }
  8316. ],
  8317. "time": "2022-03-08T17:03:00+00:00"
  8318. },
  8319. {
  8320. "name": "webmozart/assert",
  8321. "version": "1.11.0",
  8322. "source": {
  8323. "type": "git",
  8324. "url": "https://github.com/webmozarts/assert.git",
  8325. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8326. },
  8327. "dist": {
  8328. "type": "zip",
  8329. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8330. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8331. "shasum": ""
  8332. },
  8333. "require": {
  8334. "ext-ctype": "*",
  8335. "php": "^7.2 || ^8.0"
  8336. },
  8337. "conflict": {
  8338. "phpstan/phpstan": "<0.12.20",
  8339. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8340. },
  8341. "require-dev": {
  8342. "phpunit/phpunit": "^8.5.13"
  8343. },
  8344. "type": "library",
  8345. "extra": {
  8346. "branch-alias": {
  8347. "dev-master": "1.10-dev"
  8348. }
  8349. },
  8350. "autoload": {
  8351. "psr-4": {
  8352. "Webmozart\\Assert\\": "src/"
  8353. }
  8354. },
  8355. "notification-url": "https://packagist.org/downloads/",
  8356. "license": [
  8357. "MIT"
  8358. ],
  8359. "authors": [
  8360. {
  8361. "name": "Bernhard Schussek",
  8362. "email": "bschussek@gmail.com"
  8363. }
  8364. ],
  8365. "description": "Assertions to validate method input/output with nice error messages.",
  8366. "keywords": [
  8367. "assert",
  8368. "check",
  8369. "validate"
  8370. ],
  8371. "support": {
  8372. "issues": "https://github.com/webmozarts/assert/issues",
  8373. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8374. },
  8375. "time": "2022-06-03T18:03:27+00:00"
  8376. },
  8377. {
  8378. "name": "yajra/laravel-datatables-oracle",
  8379. "version": "v9.21.2",
  8380. "source": {
  8381. "type": "git",
  8382. "url": "https://github.com/yajra/laravel-datatables.git",
  8383. "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a"
  8384. },
  8385. "dist": {
  8386. "type": "zip",
  8387. "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/a7fd01f06282923e9c63fa27fe6b391e21dc321a",
  8388. "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a",
  8389. "shasum": ""
  8390. },
  8391. "require": {
  8392. "illuminate/database": "5.8.*|^6|^7|^8|^9",
  8393. "illuminate/filesystem": "5.8.*|^6|^7|^8|^9",
  8394. "illuminate/http": "5.8.*|^6|^7|^8|^9",
  8395. "illuminate/support": "5.8.*|^6|^7|^8|^9",
  8396. "illuminate/view": "5.8.*|^6|^7|^8|^9",
  8397. "php": "^7.1.3|^8"
  8398. },
  8399. "require-dev": {
  8400. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0|^7.0"
  8401. },
  8402. "suggest": {
  8403. "yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTables.",
  8404. "yajra/laravel-datatables-editor": "Plugin to use DataTables Editor (requires a license).",
  8405. "yajra/laravel-datatables-fractal": "Plugin for server-side response using Fractal.",
  8406. "yajra/laravel-datatables-html": "Plugin for server-side HTML builder of dataTables."
  8407. },
  8408. "type": "library",
  8409. "extra": {
  8410. "branch-alias": {
  8411. "dev-master": "9.0-dev"
  8412. },
  8413. "laravel": {
  8414. "providers": [
  8415. "Yajra\\DataTables\\DataTablesServiceProvider"
  8416. ],
  8417. "aliases": {
  8418. "DataTables": "Yajra\\DataTables\\Facades\\DataTables"
  8419. }
  8420. }
  8421. },
  8422. "autoload": {
  8423. "files": [
  8424. "src/helper.php"
  8425. ],
  8426. "psr-4": {
  8427. "Yajra\\DataTables\\": "src/"
  8428. }
  8429. },
  8430. "notification-url": "https://packagist.org/downloads/",
  8431. "license": [
  8432. "MIT"
  8433. ],
  8434. "authors": [
  8435. {
  8436. "name": "Arjay Angeles",
  8437. "email": "aqangeles@gmail.com"
  8438. }
  8439. ],
  8440. "description": "jQuery DataTables API for Laravel 5|6|7|8|9",
  8441. "keywords": [
  8442. "datatables",
  8443. "jquery",
  8444. "laravel"
  8445. ],
  8446. "support": {
  8447. "issues": "https://github.com/yajra/laravel-datatables/issues",
  8448. "source": "https://github.com/yajra/laravel-datatables/tree/v9.21.2"
  8449. },
  8450. "funding": [
  8451. {
  8452. "url": "https://www.paypal.me/yajra",
  8453. "type": "custom"
  8454. },
  8455. {
  8456. "url": "https://www.patreon.com/yajra",
  8457. "type": "patreon"
  8458. }
  8459. ],
  8460. "time": "2022-07-12T04:48:03+00:00"
  8461. }
  8462. ],
  8463. "packages-dev": [
  8464. {
  8465. "name": "barryvdh/laravel-debugbar",
  8466. "version": "v3.8.1",
  8467. "source": {
  8468. "type": "git",
  8469. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8470. "reference": "aff3235fecb4104203b1e62c32239c56530eee32"
  8471. },
  8472. "dist": {
  8473. "type": "zip",
  8474. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/aff3235fecb4104203b1e62c32239c56530eee32",
  8475. "reference": "aff3235fecb4104203b1e62c32239c56530eee32",
  8476. "shasum": ""
  8477. },
  8478. "require": {
  8479. "illuminate/routing": "^9|^10",
  8480. "illuminate/session": "^9|^10",
  8481. "illuminate/support": "^9|^10",
  8482. "maximebf/debugbar": "^1.18.2",
  8483. "php": "^8.0",
  8484. "symfony/finder": "^6"
  8485. },
  8486. "require-dev": {
  8487. "mockery/mockery": "^1.3.3",
  8488. "orchestra/testbench-dusk": "^5|^6|^7|^8",
  8489. "phpunit/phpunit": "^8.5.30|^9.0",
  8490. "squizlabs/php_codesniffer": "^3.5"
  8491. },
  8492. "type": "library",
  8493. "extra": {
  8494. "branch-alias": {
  8495. "dev-master": "3.8-dev"
  8496. },
  8497. "laravel": {
  8498. "providers": [
  8499. "Barryvdh\\Debugbar\\ServiceProvider"
  8500. ],
  8501. "aliases": {
  8502. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  8503. }
  8504. }
  8505. },
  8506. "autoload": {
  8507. "files": [
  8508. "src/helpers.php"
  8509. ],
  8510. "psr-4": {
  8511. "Barryvdh\\Debugbar\\": "src/"
  8512. }
  8513. },
  8514. "notification-url": "https://packagist.org/downloads/",
  8515. "license": [
  8516. "MIT"
  8517. ],
  8518. "authors": [
  8519. {
  8520. "name": "Barry vd. Heuvel",
  8521. "email": "barryvdh@gmail.com"
  8522. }
  8523. ],
  8524. "description": "PHP Debugbar integration for Laravel",
  8525. "keywords": [
  8526. "debug",
  8527. "debugbar",
  8528. "laravel",
  8529. "profiler",
  8530. "webprofiler"
  8531. ],
  8532. "support": {
  8533. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8534. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.8.1"
  8535. },
  8536. "funding": [
  8537. {
  8538. "url": "https://fruitcake.nl",
  8539. "type": "custom"
  8540. },
  8541. {
  8542. "url": "https://github.com/barryvdh",
  8543. "type": "github"
  8544. }
  8545. ],
  8546. "time": "2023-02-21T14:21:02+00:00"
  8547. },
  8548. {
  8549. "name": "doctrine/instantiator",
  8550. "version": "2.0.0",
  8551. "source": {
  8552. "type": "git",
  8553. "url": "https://github.com/doctrine/instantiator.git",
  8554. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  8555. },
  8556. "dist": {
  8557. "type": "zip",
  8558. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8559. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8560. "shasum": ""
  8561. },
  8562. "require": {
  8563. "php": "^8.1"
  8564. },
  8565. "require-dev": {
  8566. "doctrine/coding-standard": "^11",
  8567. "ext-pdo": "*",
  8568. "ext-phar": "*",
  8569. "phpbench/phpbench": "^1.2",
  8570. "phpstan/phpstan": "^1.9.4",
  8571. "phpstan/phpstan-phpunit": "^1.3",
  8572. "phpunit/phpunit": "^9.5.27",
  8573. "vimeo/psalm": "^5.4"
  8574. },
  8575. "type": "library",
  8576. "autoload": {
  8577. "psr-4": {
  8578. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8579. }
  8580. },
  8581. "notification-url": "https://packagist.org/downloads/",
  8582. "license": [
  8583. "MIT"
  8584. ],
  8585. "authors": [
  8586. {
  8587. "name": "Marco Pivetta",
  8588. "email": "ocramius@gmail.com",
  8589. "homepage": "https://ocramius.github.io/"
  8590. }
  8591. ],
  8592. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8593. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8594. "keywords": [
  8595. "constructor",
  8596. "instantiate"
  8597. ],
  8598. "support": {
  8599. "issues": "https://github.com/doctrine/instantiator/issues",
  8600. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  8601. },
  8602. "funding": [
  8603. {
  8604. "url": "https://www.doctrine-project.org/sponsorship.html",
  8605. "type": "custom"
  8606. },
  8607. {
  8608. "url": "https://www.patreon.com/phpdoctrine",
  8609. "type": "patreon"
  8610. },
  8611. {
  8612. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8613. "type": "tidelift"
  8614. }
  8615. ],
  8616. "time": "2022-12-30T00:23:10+00:00"
  8617. },
  8618. {
  8619. "name": "fakerphp/faker",
  8620. "version": "v1.21.0",
  8621. "source": {
  8622. "type": "git",
  8623. "url": "https://github.com/FakerPHP/Faker.git",
  8624. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  8625. },
  8626. "dist": {
  8627. "type": "zip",
  8628. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  8629. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  8630. "shasum": ""
  8631. },
  8632. "require": {
  8633. "php": "^7.4 || ^8.0",
  8634. "psr/container": "^1.0 || ^2.0",
  8635. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8636. },
  8637. "conflict": {
  8638. "fzaninotto/faker": "*"
  8639. },
  8640. "require-dev": {
  8641. "bamarni/composer-bin-plugin": "^1.4.1",
  8642. "doctrine/persistence": "^1.3 || ^2.0",
  8643. "ext-intl": "*",
  8644. "phpunit/phpunit": "^9.5.26",
  8645. "symfony/phpunit-bridge": "^5.4.16"
  8646. },
  8647. "suggest": {
  8648. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8649. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8650. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8651. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8652. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8653. },
  8654. "type": "library",
  8655. "extra": {
  8656. "branch-alias": {
  8657. "dev-main": "v1.21-dev"
  8658. }
  8659. },
  8660. "autoload": {
  8661. "psr-4": {
  8662. "Faker\\": "src/Faker/"
  8663. }
  8664. },
  8665. "notification-url": "https://packagist.org/downloads/",
  8666. "license": [
  8667. "MIT"
  8668. ],
  8669. "authors": [
  8670. {
  8671. "name": "François Zaninotto"
  8672. }
  8673. ],
  8674. "description": "Faker is a PHP library that generates fake data for you.",
  8675. "keywords": [
  8676. "data",
  8677. "faker",
  8678. "fixtures"
  8679. ],
  8680. "support": {
  8681. "issues": "https://github.com/FakerPHP/Faker/issues",
  8682. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  8683. },
  8684. "time": "2022-12-13T13:54:32+00:00"
  8685. },
  8686. {
  8687. "name": "filp/whoops",
  8688. "version": "2.15.2",
  8689. "source": {
  8690. "type": "git",
  8691. "url": "https://github.com/filp/whoops.git",
  8692. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  8693. },
  8694. "dist": {
  8695. "type": "zip",
  8696. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8697. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8698. "shasum": ""
  8699. },
  8700. "require": {
  8701. "php": "^5.5.9 || ^7.0 || ^8.0",
  8702. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8703. },
  8704. "require-dev": {
  8705. "mockery/mockery": "^0.9 || ^1.0",
  8706. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8707. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8708. },
  8709. "suggest": {
  8710. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8711. "whoops/soap": "Formats errors as SOAP responses"
  8712. },
  8713. "type": "library",
  8714. "extra": {
  8715. "branch-alias": {
  8716. "dev-master": "2.7-dev"
  8717. }
  8718. },
  8719. "autoload": {
  8720. "psr-4": {
  8721. "Whoops\\": "src/Whoops/"
  8722. }
  8723. },
  8724. "notification-url": "https://packagist.org/downloads/",
  8725. "license": [
  8726. "MIT"
  8727. ],
  8728. "authors": [
  8729. {
  8730. "name": "Filipe Dobreira",
  8731. "homepage": "https://github.com/filp",
  8732. "role": "Developer"
  8733. }
  8734. ],
  8735. "description": "php error handling for cool kids",
  8736. "homepage": "https://filp.github.io/whoops/",
  8737. "keywords": [
  8738. "error",
  8739. "exception",
  8740. "handling",
  8741. "library",
  8742. "throwable",
  8743. "whoops"
  8744. ],
  8745. "support": {
  8746. "issues": "https://github.com/filp/whoops/issues",
  8747. "source": "https://github.com/filp/whoops/tree/2.15.2"
  8748. },
  8749. "funding": [
  8750. {
  8751. "url": "https://github.com/denis-sokolov",
  8752. "type": "github"
  8753. }
  8754. ],
  8755. "time": "2023-04-12T12:00:00+00:00"
  8756. },
  8757. {
  8758. "name": "hamcrest/hamcrest-php",
  8759. "version": "v2.0.1",
  8760. "source": {
  8761. "type": "git",
  8762. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8763. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8764. },
  8765. "dist": {
  8766. "type": "zip",
  8767. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8768. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8769. "shasum": ""
  8770. },
  8771. "require": {
  8772. "php": "^5.3|^7.0|^8.0"
  8773. },
  8774. "replace": {
  8775. "cordoval/hamcrest-php": "*",
  8776. "davedevelopment/hamcrest-php": "*",
  8777. "kodova/hamcrest-php": "*"
  8778. },
  8779. "require-dev": {
  8780. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8781. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8782. },
  8783. "type": "library",
  8784. "extra": {
  8785. "branch-alias": {
  8786. "dev-master": "2.1-dev"
  8787. }
  8788. },
  8789. "autoload": {
  8790. "classmap": [
  8791. "hamcrest"
  8792. ]
  8793. },
  8794. "notification-url": "https://packagist.org/downloads/",
  8795. "license": [
  8796. "BSD-3-Clause"
  8797. ],
  8798. "description": "This is the PHP port of Hamcrest Matchers",
  8799. "keywords": [
  8800. "test"
  8801. ],
  8802. "support": {
  8803. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8804. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8805. },
  8806. "time": "2020-07-09T08:09:16+00:00"
  8807. },
  8808. {
  8809. "name": "laravel/sail",
  8810. "version": "v1.21.5",
  8811. "source": {
  8812. "type": "git",
  8813. "url": "https://github.com/laravel/sail.git",
  8814. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d"
  8815. },
  8816. "dist": {
  8817. "type": "zip",
  8818. "url": "https://api.github.com/repos/laravel/sail/zipball/27af207bb1c53faddcba34c7528b3e969f6a646d",
  8819. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d",
  8820. "shasum": ""
  8821. },
  8822. "require": {
  8823. "illuminate/console": "^8.0|^9.0|^10.0",
  8824. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8825. "illuminate/support": "^8.0|^9.0|^10.0",
  8826. "php": "^7.3|^8.0",
  8827. "symfony/yaml": "^6.0"
  8828. },
  8829. "require-dev": {
  8830. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8831. "phpstan/phpstan": "^1.10"
  8832. },
  8833. "bin": [
  8834. "bin/sail"
  8835. ],
  8836. "type": "library",
  8837. "extra": {
  8838. "branch-alias": {
  8839. "dev-master": "1.x-dev"
  8840. },
  8841. "laravel": {
  8842. "providers": [
  8843. "Laravel\\Sail\\SailServiceProvider"
  8844. ]
  8845. }
  8846. },
  8847. "autoload": {
  8848. "psr-4": {
  8849. "Laravel\\Sail\\": "src/"
  8850. }
  8851. },
  8852. "notification-url": "https://packagist.org/downloads/",
  8853. "license": [
  8854. "MIT"
  8855. ],
  8856. "authors": [
  8857. {
  8858. "name": "Taylor Otwell",
  8859. "email": "taylor@laravel.com"
  8860. }
  8861. ],
  8862. "description": "Docker files for running a basic Laravel application.",
  8863. "keywords": [
  8864. "docker",
  8865. "laravel"
  8866. ],
  8867. "support": {
  8868. "issues": "https://github.com/laravel/sail/issues",
  8869. "source": "https://github.com/laravel/sail"
  8870. },
  8871. "time": "2023-04-24T13:29:38+00:00"
  8872. },
  8873. {
  8874. "name": "maximebf/debugbar",
  8875. "version": "v1.18.2",
  8876. "source": {
  8877. "type": "git",
  8878. "url": "https://github.com/maximebf/php-debugbar.git",
  8879. "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274"
  8880. },
  8881. "dist": {
  8882. "type": "zip",
  8883. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/17dcf3f6ed112bb85a37cf13538fd8de49f5c274",
  8884. "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274",
  8885. "shasum": ""
  8886. },
  8887. "require": {
  8888. "php": "^7.1|^8",
  8889. "psr/log": "^1|^2|^3",
  8890. "symfony/var-dumper": "^4|^5|^6"
  8891. },
  8892. "require-dev": {
  8893. "phpunit/phpunit": ">=7.5.20 <10.0",
  8894. "twig/twig": "^1.38|^2.7|^3.0"
  8895. },
  8896. "suggest": {
  8897. "kriswallsmith/assetic": "The best way to manage assets",
  8898. "monolog/monolog": "Log using Monolog",
  8899. "predis/predis": "Redis storage"
  8900. },
  8901. "type": "library",
  8902. "extra": {
  8903. "branch-alias": {
  8904. "dev-master": "1.18-dev"
  8905. }
  8906. },
  8907. "autoload": {
  8908. "psr-4": {
  8909. "DebugBar\\": "src/DebugBar/"
  8910. }
  8911. },
  8912. "notification-url": "https://packagist.org/downloads/",
  8913. "license": [
  8914. "MIT"
  8915. ],
  8916. "authors": [
  8917. {
  8918. "name": "Maxime Bouroumeau-Fuseau",
  8919. "email": "maxime.bouroumeau@gmail.com",
  8920. "homepage": "http://maximebf.com"
  8921. },
  8922. {
  8923. "name": "Barry vd. Heuvel",
  8924. "email": "barryvdh@gmail.com"
  8925. }
  8926. ],
  8927. "description": "Debug bar in the browser for php application",
  8928. "homepage": "https://github.com/maximebf/php-debugbar",
  8929. "keywords": [
  8930. "debug",
  8931. "debugbar"
  8932. ],
  8933. "support": {
  8934. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8935. "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.2"
  8936. },
  8937. "time": "2023-02-04T15:27:00+00:00"
  8938. },
  8939. {
  8940. "name": "mockery/mockery",
  8941. "version": "1.5.1",
  8942. "source": {
  8943. "type": "git",
  8944. "url": "https://github.com/mockery/mockery.git",
  8945. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  8946. },
  8947. "dist": {
  8948. "type": "zip",
  8949. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8950. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8951. "shasum": ""
  8952. },
  8953. "require": {
  8954. "hamcrest/hamcrest-php": "^2.0.1",
  8955. "lib-pcre": ">=7.0",
  8956. "php": "^7.3 || ^8.0"
  8957. },
  8958. "conflict": {
  8959. "phpunit/phpunit": "<8.0"
  8960. },
  8961. "require-dev": {
  8962. "phpunit/phpunit": "^8.5 || ^9.3"
  8963. },
  8964. "type": "library",
  8965. "extra": {
  8966. "branch-alias": {
  8967. "dev-master": "1.4.x-dev"
  8968. }
  8969. },
  8970. "autoload": {
  8971. "psr-0": {
  8972. "Mockery": "library/"
  8973. }
  8974. },
  8975. "notification-url": "https://packagist.org/downloads/",
  8976. "license": [
  8977. "BSD-3-Clause"
  8978. ],
  8979. "authors": [
  8980. {
  8981. "name": "Pádraic Brady",
  8982. "email": "padraic.brady@gmail.com",
  8983. "homepage": "http://blog.astrumfutura.com"
  8984. },
  8985. {
  8986. "name": "Dave Marshall",
  8987. "email": "dave.marshall@atstsolutions.co.uk",
  8988. "homepage": "http://davedevelopment.co.uk"
  8989. }
  8990. ],
  8991. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8992. "homepage": "https://github.com/mockery/mockery",
  8993. "keywords": [
  8994. "BDD",
  8995. "TDD",
  8996. "library",
  8997. "mock",
  8998. "mock objects",
  8999. "mockery",
  9000. "stub",
  9001. "test",
  9002. "test double",
  9003. "testing"
  9004. ],
  9005. "support": {
  9006. "issues": "https://github.com/mockery/mockery/issues",
  9007. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  9008. },
  9009. "time": "2022-09-07T15:32:08+00:00"
  9010. },
  9011. {
  9012. "name": "myclabs/deep-copy",
  9013. "version": "1.11.1",
  9014. "source": {
  9015. "type": "git",
  9016. "url": "https://github.com/myclabs/DeepCopy.git",
  9017. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9018. },
  9019. "dist": {
  9020. "type": "zip",
  9021. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9022. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9023. "shasum": ""
  9024. },
  9025. "require": {
  9026. "php": "^7.1 || ^8.0"
  9027. },
  9028. "conflict": {
  9029. "doctrine/collections": "<1.6.8",
  9030. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9031. },
  9032. "require-dev": {
  9033. "doctrine/collections": "^1.6.8",
  9034. "doctrine/common": "^2.13.3 || ^3.2.2",
  9035. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9036. },
  9037. "type": "library",
  9038. "autoload": {
  9039. "files": [
  9040. "src/DeepCopy/deep_copy.php"
  9041. ],
  9042. "psr-4": {
  9043. "DeepCopy\\": "src/DeepCopy/"
  9044. }
  9045. },
  9046. "notification-url": "https://packagist.org/downloads/",
  9047. "license": [
  9048. "MIT"
  9049. ],
  9050. "description": "Create deep copies (clones) of your objects",
  9051. "keywords": [
  9052. "clone",
  9053. "copy",
  9054. "duplicate",
  9055. "object",
  9056. "object graph"
  9057. ],
  9058. "support": {
  9059. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9060. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9061. },
  9062. "funding": [
  9063. {
  9064. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9065. "type": "tidelift"
  9066. }
  9067. ],
  9068. "time": "2023-03-08T13:26:56+00:00"
  9069. },
  9070. {
  9071. "name": "nunomaduro/collision",
  9072. "version": "v6.4.0",
  9073. "source": {
  9074. "type": "git",
  9075. "url": "https://github.com/nunomaduro/collision.git",
  9076. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  9077. },
  9078. "dist": {
  9079. "type": "zip",
  9080. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  9081. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  9082. "shasum": ""
  9083. },
  9084. "require": {
  9085. "filp/whoops": "^2.14.5",
  9086. "php": "^8.0.0",
  9087. "symfony/console": "^6.0.2"
  9088. },
  9089. "require-dev": {
  9090. "brianium/paratest": "^6.4.1",
  9091. "laravel/framework": "^9.26.1",
  9092. "laravel/pint": "^1.1.1",
  9093. "nunomaduro/larastan": "^1.0.3",
  9094. "nunomaduro/mock-final-classes": "^1.1.0",
  9095. "orchestra/testbench": "^7.7",
  9096. "phpunit/phpunit": "^9.5.23",
  9097. "spatie/ignition": "^1.4.1"
  9098. },
  9099. "type": "library",
  9100. "extra": {
  9101. "branch-alias": {
  9102. "dev-develop": "6.x-dev"
  9103. },
  9104. "laravel": {
  9105. "providers": [
  9106. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9107. ]
  9108. }
  9109. },
  9110. "autoload": {
  9111. "psr-4": {
  9112. "NunoMaduro\\Collision\\": "src/"
  9113. }
  9114. },
  9115. "notification-url": "https://packagist.org/downloads/",
  9116. "license": [
  9117. "MIT"
  9118. ],
  9119. "authors": [
  9120. {
  9121. "name": "Nuno Maduro",
  9122. "email": "enunomaduro@gmail.com"
  9123. }
  9124. ],
  9125. "description": "Cli error handling for console/command-line PHP applications.",
  9126. "keywords": [
  9127. "artisan",
  9128. "cli",
  9129. "command-line",
  9130. "console",
  9131. "error",
  9132. "handling",
  9133. "laravel",
  9134. "laravel-zero",
  9135. "php",
  9136. "symfony"
  9137. ],
  9138. "support": {
  9139. "issues": "https://github.com/nunomaduro/collision/issues",
  9140. "source": "https://github.com/nunomaduro/collision"
  9141. },
  9142. "funding": [
  9143. {
  9144. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9145. "type": "custom"
  9146. },
  9147. {
  9148. "url": "https://github.com/nunomaduro",
  9149. "type": "github"
  9150. },
  9151. {
  9152. "url": "https://www.patreon.com/nunomaduro",
  9153. "type": "patreon"
  9154. }
  9155. ],
  9156. "time": "2023-01-03T12:54:54+00:00"
  9157. },
  9158. {
  9159. "name": "phar-io/manifest",
  9160. "version": "2.0.3",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/phar-io/manifest.git",
  9164. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9169. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9170. "shasum": ""
  9171. },
  9172. "require": {
  9173. "ext-dom": "*",
  9174. "ext-phar": "*",
  9175. "ext-xmlwriter": "*",
  9176. "phar-io/version": "^3.0.1",
  9177. "php": "^7.2 || ^8.0"
  9178. },
  9179. "type": "library",
  9180. "extra": {
  9181. "branch-alias": {
  9182. "dev-master": "2.0.x-dev"
  9183. }
  9184. },
  9185. "autoload": {
  9186. "classmap": [
  9187. "src/"
  9188. ]
  9189. },
  9190. "notification-url": "https://packagist.org/downloads/",
  9191. "license": [
  9192. "BSD-3-Clause"
  9193. ],
  9194. "authors": [
  9195. {
  9196. "name": "Arne Blankerts",
  9197. "email": "arne@blankerts.de",
  9198. "role": "Developer"
  9199. },
  9200. {
  9201. "name": "Sebastian Heuer",
  9202. "email": "sebastian@phpeople.de",
  9203. "role": "Developer"
  9204. },
  9205. {
  9206. "name": "Sebastian Bergmann",
  9207. "email": "sebastian@phpunit.de",
  9208. "role": "Developer"
  9209. }
  9210. ],
  9211. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9212. "support": {
  9213. "issues": "https://github.com/phar-io/manifest/issues",
  9214. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9215. },
  9216. "time": "2021-07-20T11:28:43+00:00"
  9217. },
  9218. {
  9219. "name": "phar-io/version",
  9220. "version": "3.2.1",
  9221. "source": {
  9222. "type": "git",
  9223. "url": "https://github.com/phar-io/version.git",
  9224. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9225. },
  9226. "dist": {
  9227. "type": "zip",
  9228. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9229. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9230. "shasum": ""
  9231. },
  9232. "require": {
  9233. "php": "^7.2 || ^8.0"
  9234. },
  9235. "type": "library",
  9236. "autoload": {
  9237. "classmap": [
  9238. "src/"
  9239. ]
  9240. },
  9241. "notification-url": "https://packagist.org/downloads/",
  9242. "license": [
  9243. "BSD-3-Clause"
  9244. ],
  9245. "authors": [
  9246. {
  9247. "name": "Arne Blankerts",
  9248. "email": "arne@blankerts.de",
  9249. "role": "Developer"
  9250. },
  9251. {
  9252. "name": "Sebastian Heuer",
  9253. "email": "sebastian@phpeople.de",
  9254. "role": "Developer"
  9255. },
  9256. {
  9257. "name": "Sebastian Bergmann",
  9258. "email": "sebastian@phpunit.de",
  9259. "role": "Developer"
  9260. }
  9261. ],
  9262. "description": "Library for handling version information and constraints",
  9263. "support": {
  9264. "issues": "https://github.com/phar-io/version/issues",
  9265. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9266. },
  9267. "time": "2022-02-21T01:04:05+00:00"
  9268. },
  9269. {
  9270. "name": "phpunit/php-code-coverage",
  9271. "version": "9.2.26",
  9272. "source": {
  9273. "type": "git",
  9274. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9275. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  9276. },
  9277. "dist": {
  9278. "type": "zip",
  9279. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9280. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9281. "shasum": ""
  9282. },
  9283. "require": {
  9284. "ext-dom": "*",
  9285. "ext-libxml": "*",
  9286. "ext-xmlwriter": "*",
  9287. "nikic/php-parser": "^4.15",
  9288. "php": ">=7.3",
  9289. "phpunit/php-file-iterator": "^3.0.3",
  9290. "phpunit/php-text-template": "^2.0.2",
  9291. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9292. "sebastian/complexity": "^2.0",
  9293. "sebastian/environment": "^5.1.2",
  9294. "sebastian/lines-of-code": "^1.0.3",
  9295. "sebastian/version": "^3.0.1",
  9296. "theseer/tokenizer": "^1.2.0"
  9297. },
  9298. "require-dev": {
  9299. "phpunit/phpunit": "^9.3"
  9300. },
  9301. "suggest": {
  9302. "ext-pcov": "PHP extension that provides line coverage",
  9303. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9304. },
  9305. "type": "library",
  9306. "extra": {
  9307. "branch-alias": {
  9308. "dev-master": "9.2-dev"
  9309. }
  9310. },
  9311. "autoload": {
  9312. "classmap": [
  9313. "src/"
  9314. ]
  9315. },
  9316. "notification-url": "https://packagist.org/downloads/",
  9317. "license": [
  9318. "BSD-3-Clause"
  9319. ],
  9320. "authors": [
  9321. {
  9322. "name": "Sebastian Bergmann",
  9323. "email": "sebastian@phpunit.de",
  9324. "role": "lead"
  9325. }
  9326. ],
  9327. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9328. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9329. "keywords": [
  9330. "coverage",
  9331. "testing",
  9332. "xunit"
  9333. ],
  9334. "support": {
  9335. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9336. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  9337. },
  9338. "funding": [
  9339. {
  9340. "url": "https://github.com/sebastianbergmann",
  9341. "type": "github"
  9342. }
  9343. ],
  9344. "time": "2023-03-06T12:58:08+00:00"
  9345. },
  9346. {
  9347. "name": "phpunit/php-file-iterator",
  9348. "version": "3.0.6",
  9349. "source": {
  9350. "type": "git",
  9351. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9352. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9353. },
  9354. "dist": {
  9355. "type": "zip",
  9356. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9357. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9358. "shasum": ""
  9359. },
  9360. "require": {
  9361. "php": ">=7.3"
  9362. },
  9363. "require-dev": {
  9364. "phpunit/phpunit": "^9.3"
  9365. },
  9366. "type": "library",
  9367. "extra": {
  9368. "branch-alias": {
  9369. "dev-master": "3.0-dev"
  9370. }
  9371. },
  9372. "autoload": {
  9373. "classmap": [
  9374. "src/"
  9375. ]
  9376. },
  9377. "notification-url": "https://packagist.org/downloads/",
  9378. "license": [
  9379. "BSD-3-Clause"
  9380. ],
  9381. "authors": [
  9382. {
  9383. "name": "Sebastian Bergmann",
  9384. "email": "sebastian@phpunit.de",
  9385. "role": "lead"
  9386. }
  9387. ],
  9388. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9389. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9390. "keywords": [
  9391. "filesystem",
  9392. "iterator"
  9393. ],
  9394. "support": {
  9395. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9396. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9397. },
  9398. "funding": [
  9399. {
  9400. "url": "https://github.com/sebastianbergmann",
  9401. "type": "github"
  9402. }
  9403. ],
  9404. "time": "2021-12-02T12:48:52+00:00"
  9405. },
  9406. {
  9407. "name": "phpunit/php-invoker",
  9408. "version": "3.1.1",
  9409. "source": {
  9410. "type": "git",
  9411. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9412. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9413. },
  9414. "dist": {
  9415. "type": "zip",
  9416. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9417. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9418. "shasum": ""
  9419. },
  9420. "require": {
  9421. "php": ">=7.3"
  9422. },
  9423. "require-dev": {
  9424. "ext-pcntl": "*",
  9425. "phpunit/phpunit": "^9.3"
  9426. },
  9427. "suggest": {
  9428. "ext-pcntl": "*"
  9429. },
  9430. "type": "library",
  9431. "extra": {
  9432. "branch-alias": {
  9433. "dev-master": "3.1-dev"
  9434. }
  9435. },
  9436. "autoload": {
  9437. "classmap": [
  9438. "src/"
  9439. ]
  9440. },
  9441. "notification-url": "https://packagist.org/downloads/",
  9442. "license": [
  9443. "BSD-3-Clause"
  9444. ],
  9445. "authors": [
  9446. {
  9447. "name": "Sebastian Bergmann",
  9448. "email": "sebastian@phpunit.de",
  9449. "role": "lead"
  9450. }
  9451. ],
  9452. "description": "Invoke callables with a timeout",
  9453. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9454. "keywords": [
  9455. "process"
  9456. ],
  9457. "support": {
  9458. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9459. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9460. },
  9461. "funding": [
  9462. {
  9463. "url": "https://github.com/sebastianbergmann",
  9464. "type": "github"
  9465. }
  9466. ],
  9467. "time": "2020-09-28T05:58:55+00:00"
  9468. },
  9469. {
  9470. "name": "phpunit/php-text-template",
  9471. "version": "2.0.4",
  9472. "source": {
  9473. "type": "git",
  9474. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9475. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9476. },
  9477. "dist": {
  9478. "type": "zip",
  9479. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9480. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9481. "shasum": ""
  9482. },
  9483. "require": {
  9484. "php": ">=7.3"
  9485. },
  9486. "require-dev": {
  9487. "phpunit/phpunit": "^9.3"
  9488. },
  9489. "type": "library",
  9490. "extra": {
  9491. "branch-alias": {
  9492. "dev-master": "2.0-dev"
  9493. }
  9494. },
  9495. "autoload": {
  9496. "classmap": [
  9497. "src/"
  9498. ]
  9499. },
  9500. "notification-url": "https://packagist.org/downloads/",
  9501. "license": [
  9502. "BSD-3-Clause"
  9503. ],
  9504. "authors": [
  9505. {
  9506. "name": "Sebastian Bergmann",
  9507. "email": "sebastian@phpunit.de",
  9508. "role": "lead"
  9509. }
  9510. ],
  9511. "description": "Simple template engine.",
  9512. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9513. "keywords": [
  9514. "template"
  9515. ],
  9516. "support": {
  9517. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9518. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9519. },
  9520. "funding": [
  9521. {
  9522. "url": "https://github.com/sebastianbergmann",
  9523. "type": "github"
  9524. }
  9525. ],
  9526. "time": "2020-10-26T05:33:50+00:00"
  9527. },
  9528. {
  9529. "name": "phpunit/php-timer",
  9530. "version": "5.0.3",
  9531. "source": {
  9532. "type": "git",
  9533. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9534. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9535. },
  9536. "dist": {
  9537. "type": "zip",
  9538. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9539. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9540. "shasum": ""
  9541. },
  9542. "require": {
  9543. "php": ">=7.3"
  9544. },
  9545. "require-dev": {
  9546. "phpunit/phpunit": "^9.3"
  9547. },
  9548. "type": "library",
  9549. "extra": {
  9550. "branch-alias": {
  9551. "dev-master": "5.0-dev"
  9552. }
  9553. },
  9554. "autoload": {
  9555. "classmap": [
  9556. "src/"
  9557. ]
  9558. },
  9559. "notification-url": "https://packagist.org/downloads/",
  9560. "license": [
  9561. "BSD-3-Clause"
  9562. ],
  9563. "authors": [
  9564. {
  9565. "name": "Sebastian Bergmann",
  9566. "email": "sebastian@phpunit.de",
  9567. "role": "lead"
  9568. }
  9569. ],
  9570. "description": "Utility class for timing",
  9571. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9572. "keywords": [
  9573. "timer"
  9574. ],
  9575. "support": {
  9576. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9577. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9578. },
  9579. "funding": [
  9580. {
  9581. "url": "https://github.com/sebastianbergmann",
  9582. "type": "github"
  9583. }
  9584. ],
  9585. "time": "2020-10-26T13:16:10+00:00"
  9586. },
  9587. {
  9588. "name": "phpunit/phpunit",
  9589. "version": "9.6.7",
  9590. "source": {
  9591. "type": "git",
  9592. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9593. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2"
  9594. },
  9595. "dist": {
  9596. "type": "zip",
  9597. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  9598. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  9599. "shasum": ""
  9600. },
  9601. "require": {
  9602. "doctrine/instantiator": "^1.3.1 || ^2",
  9603. "ext-dom": "*",
  9604. "ext-json": "*",
  9605. "ext-libxml": "*",
  9606. "ext-mbstring": "*",
  9607. "ext-xml": "*",
  9608. "ext-xmlwriter": "*",
  9609. "myclabs/deep-copy": "^1.10.1",
  9610. "phar-io/manifest": "^2.0.3",
  9611. "phar-io/version": "^3.0.2",
  9612. "php": ">=7.3",
  9613. "phpunit/php-code-coverage": "^9.2.13",
  9614. "phpunit/php-file-iterator": "^3.0.5",
  9615. "phpunit/php-invoker": "^3.1.1",
  9616. "phpunit/php-text-template": "^2.0.3",
  9617. "phpunit/php-timer": "^5.0.2",
  9618. "sebastian/cli-parser": "^1.0.1",
  9619. "sebastian/code-unit": "^1.0.6",
  9620. "sebastian/comparator": "^4.0.8",
  9621. "sebastian/diff": "^4.0.3",
  9622. "sebastian/environment": "^5.1.3",
  9623. "sebastian/exporter": "^4.0.5",
  9624. "sebastian/global-state": "^5.0.1",
  9625. "sebastian/object-enumerator": "^4.0.3",
  9626. "sebastian/resource-operations": "^3.0.3",
  9627. "sebastian/type": "^3.2",
  9628. "sebastian/version": "^3.0.2"
  9629. },
  9630. "suggest": {
  9631. "ext-soap": "To be able to generate mocks based on WSDL files",
  9632. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9633. },
  9634. "bin": [
  9635. "phpunit"
  9636. ],
  9637. "type": "library",
  9638. "extra": {
  9639. "branch-alias": {
  9640. "dev-master": "9.6-dev"
  9641. }
  9642. },
  9643. "autoload": {
  9644. "files": [
  9645. "src/Framework/Assert/Functions.php"
  9646. ],
  9647. "classmap": [
  9648. "src/"
  9649. ]
  9650. },
  9651. "notification-url": "https://packagist.org/downloads/",
  9652. "license": [
  9653. "BSD-3-Clause"
  9654. ],
  9655. "authors": [
  9656. {
  9657. "name": "Sebastian Bergmann",
  9658. "email": "sebastian@phpunit.de",
  9659. "role": "lead"
  9660. }
  9661. ],
  9662. "description": "The PHP Unit Testing framework.",
  9663. "homepage": "https://phpunit.de/",
  9664. "keywords": [
  9665. "phpunit",
  9666. "testing",
  9667. "xunit"
  9668. ],
  9669. "support": {
  9670. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9671. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9672. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.7"
  9673. },
  9674. "funding": [
  9675. {
  9676. "url": "https://phpunit.de/sponsors.html",
  9677. "type": "custom"
  9678. },
  9679. {
  9680. "url": "https://github.com/sebastianbergmann",
  9681. "type": "github"
  9682. },
  9683. {
  9684. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9685. "type": "tidelift"
  9686. }
  9687. ],
  9688. "time": "2023-04-14T08:58:40+00:00"
  9689. },
  9690. {
  9691. "name": "sebastian/cli-parser",
  9692. "version": "1.0.1",
  9693. "source": {
  9694. "type": "git",
  9695. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9696. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9697. },
  9698. "dist": {
  9699. "type": "zip",
  9700. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9701. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9702. "shasum": ""
  9703. },
  9704. "require": {
  9705. "php": ">=7.3"
  9706. },
  9707. "require-dev": {
  9708. "phpunit/phpunit": "^9.3"
  9709. },
  9710. "type": "library",
  9711. "extra": {
  9712. "branch-alias": {
  9713. "dev-master": "1.0-dev"
  9714. }
  9715. },
  9716. "autoload": {
  9717. "classmap": [
  9718. "src/"
  9719. ]
  9720. },
  9721. "notification-url": "https://packagist.org/downloads/",
  9722. "license": [
  9723. "BSD-3-Clause"
  9724. ],
  9725. "authors": [
  9726. {
  9727. "name": "Sebastian Bergmann",
  9728. "email": "sebastian@phpunit.de",
  9729. "role": "lead"
  9730. }
  9731. ],
  9732. "description": "Library for parsing CLI options",
  9733. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9734. "support": {
  9735. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9736. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9737. },
  9738. "funding": [
  9739. {
  9740. "url": "https://github.com/sebastianbergmann",
  9741. "type": "github"
  9742. }
  9743. ],
  9744. "time": "2020-09-28T06:08:49+00:00"
  9745. },
  9746. {
  9747. "name": "sebastian/code-unit",
  9748. "version": "1.0.8",
  9749. "source": {
  9750. "type": "git",
  9751. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9752. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9753. },
  9754. "dist": {
  9755. "type": "zip",
  9756. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9757. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9758. "shasum": ""
  9759. },
  9760. "require": {
  9761. "php": ">=7.3"
  9762. },
  9763. "require-dev": {
  9764. "phpunit/phpunit": "^9.3"
  9765. },
  9766. "type": "library",
  9767. "extra": {
  9768. "branch-alias": {
  9769. "dev-master": "1.0-dev"
  9770. }
  9771. },
  9772. "autoload": {
  9773. "classmap": [
  9774. "src/"
  9775. ]
  9776. },
  9777. "notification-url": "https://packagist.org/downloads/",
  9778. "license": [
  9779. "BSD-3-Clause"
  9780. ],
  9781. "authors": [
  9782. {
  9783. "name": "Sebastian Bergmann",
  9784. "email": "sebastian@phpunit.de",
  9785. "role": "lead"
  9786. }
  9787. ],
  9788. "description": "Collection of value objects that represent the PHP code units",
  9789. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9790. "support": {
  9791. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9792. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9793. },
  9794. "funding": [
  9795. {
  9796. "url": "https://github.com/sebastianbergmann",
  9797. "type": "github"
  9798. }
  9799. ],
  9800. "time": "2020-10-26T13:08:54+00:00"
  9801. },
  9802. {
  9803. "name": "sebastian/code-unit-reverse-lookup",
  9804. "version": "2.0.3",
  9805. "source": {
  9806. "type": "git",
  9807. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9808. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9809. },
  9810. "dist": {
  9811. "type": "zip",
  9812. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9813. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9814. "shasum": ""
  9815. },
  9816. "require": {
  9817. "php": ">=7.3"
  9818. },
  9819. "require-dev": {
  9820. "phpunit/phpunit": "^9.3"
  9821. },
  9822. "type": "library",
  9823. "extra": {
  9824. "branch-alias": {
  9825. "dev-master": "2.0-dev"
  9826. }
  9827. },
  9828. "autoload": {
  9829. "classmap": [
  9830. "src/"
  9831. ]
  9832. },
  9833. "notification-url": "https://packagist.org/downloads/",
  9834. "license": [
  9835. "BSD-3-Clause"
  9836. ],
  9837. "authors": [
  9838. {
  9839. "name": "Sebastian Bergmann",
  9840. "email": "sebastian@phpunit.de"
  9841. }
  9842. ],
  9843. "description": "Looks up which function or method a line of code belongs to",
  9844. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9845. "support": {
  9846. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9847. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9848. },
  9849. "funding": [
  9850. {
  9851. "url": "https://github.com/sebastianbergmann",
  9852. "type": "github"
  9853. }
  9854. ],
  9855. "time": "2020-09-28T05:30:19+00:00"
  9856. },
  9857. {
  9858. "name": "sebastian/comparator",
  9859. "version": "4.0.8",
  9860. "source": {
  9861. "type": "git",
  9862. "url": "https://github.com/sebastianbergmann/comparator.git",
  9863. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9864. },
  9865. "dist": {
  9866. "type": "zip",
  9867. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9868. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9869. "shasum": ""
  9870. },
  9871. "require": {
  9872. "php": ">=7.3",
  9873. "sebastian/diff": "^4.0",
  9874. "sebastian/exporter": "^4.0"
  9875. },
  9876. "require-dev": {
  9877. "phpunit/phpunit": "^9.3"
  9878. },
  9879. "type": "library",
  9880. "extra": {
  9881. "branch-alias": {
  9882. "dev-master": "4.0-dev"
  9883. }
  9884. },
  9885. "autoload": {
  9886. "classmap": [
  9887. "src/"
  9888. ]
  9889. },
  9890. "notification-url": "https://packagist.org/downloads/",
  9891. "license": [
  9892. "BSD-3-Clause"
  9893. ],
  9894. "authors": [
  9895. {
  9896. "name": "Sebastian Bergmann",
  9897. "email": "sebastian@phpunit.de"
  9898. },
  9899. {
  9900. "name": "Jeff Welch",
  9901. "email": "whatthejeff@gmail.com"
  9902. },
  9903. {
  9904. "name": "Volker Dusch",
  9905. "email": "github@wallbash.com"
  9906. },
  9907. {
  9908. "name": "Bernhard Schussek",
  9909. "email": "bschussek@2bepublished.at"
  9910. }
  9911. ],
  9912. "description": "Provides the functionality to compare PHP values for equality",
  9913. "homepage": "https://github.com/sebastianbergmann/comparator",
  9914. "keywords": [
  9915. "comparator",
  9916. "compare",
  9917. "equality"
  9918. ],
  9919. "support": {
  9920. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9921. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9922. },
  9923. "funding": [
  9924. {
  9925. "url": "https://github.com/sebastianbergmann",
  9926. "type": "github"
  9927. }
  9928. ],
  9929. "time": "2022-09-14T12:41:17+00:00"
  9930. },
  9931. {
  9932. "name": "sebastian/complexity",
  9933. "version": "2.0.2",
  9934. "source": {
  9935. "type": "git",
  9936. "url": "https://github.com/sebastianbergmann/complexity.git",
  9937. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9938. },
  9939. "dist": {
  9940. "type": "zip",
  9941. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9942. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9943. "shasum": ""
  9944. },
  9945. "require": {
  9946. "nikic/php-parser": "^4.7",
  9947. "php": ">=7.3"
  9948. },
  9949. "require-dev": {
  9950. "phpunit/phpunit": "^9.3"
  9951. },
  9952. "type": "library",
  9953. "extra": {
  9954. "branch-alias": {
  9955. "dev-master": "2.0-dev"
  9956. }
  9957. },
  9958. "autoload": {
  9959. "classmap": [
  9960. "src/"
  9961. ]
  9962. },
  9963. "notification-url": "https://packagist.org/downloads/",
  9964. "license": [
  9965. "BSD-3-Clause"
  9966. ],
  9967. "authors": [
  9968. {
  9969. "name": "Sebastian Bergmann",
  9970. "email": "sebastian@phpunit.de",
  9971. "role": "lead"
  9972. }
  9973. ],
  9974. "description": "Library for calculating the complexity of PHP code units",
  9975. "homepage": "https://github.com/sebastianbergmann/complexity",
  9976. "support": {
  9977. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9978. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9979. },
  9980. "funding": [
  9981. {
  9982. "url": "https://github.com/sebastianbergmann",
  9983. "type": "github"
  9984. }
  9985. ],
  9986. "time": "2020-10-26T15:52:27+00:00"
  9987. },
  9988. {
  9989. "name": "sebastian/diff",
  9990. "version": "4.0.4",
  9991. "source": {
  9992. "type": "git",
  9993. "url": "https://github.com/sebastianbergmann/diff.git",
  9994. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9995. },
  9996. "dist": {
  9997. "type": "zip",
  9998. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9999. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10000. "shasum": ""
  10001. },
  10002. "require": {
  10003. "php": ">=7.3"
  10004. },
  10005. "require-dev": {
  10006. "phpunit/phpunit": "^9.3",
  10007. "symfony/process": "^4.2 || ^5"
  10008. },
  10009. "type": "library",
  10010. "extra": {
  10011. "branch-alias": {
  10012. "dev-master": "4.0-dev"
  10013. }
  10014. },
  10015. "autoload": {
  10016. "classmap": [
  10017. "src/"
  10018. ]
  10019. },
  10020. "notification-url": "https://packagist.org/downloads/",
  10021. "license": [
  10022. "BSD-3-Clause"
  10023. ],
  10024. "authors": [
  10025. {
  10026. "name": "Sebastian Bergmann",
  10027. "email": "sebastian@phpunit.de"
  10028. },
  10029. {
  10030. "name": "Kore Nordmann",
  10031. "email": "mail@kore-nordmann.de"
  10032. }
  10033. ],
  10034. "description": "Diff implementation",
  10035. "homepage": "https://github.com/sebastianbergmann/diff",
  10036. "keywords": [
  10037. "diff",
  10038. "udiff",
  10039. "unidiff",
  10040. "unified diff"
  10041. ],
  10042. "support": {
  10043. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10044. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10045. },
  10046. "funding": [
  10047. {
  10048. "url": "https://github.com/sebastianbergmann",
  10049. "type": "github"
  10050. }
  10051. ],
  10052. "time": "2020-10-26T13:10:38+00:00"
  10053. },
  10054. {
  10055. "name": "sebastian/environment",
  10056. "version": "5.1.5",
  10057. "source": {
  10058. "type": "git",
  10059. "url": "https://github.com/sebastianbergmann/environment.git",
  10060. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10061. },
  10062. "dist": {
  10063. "type": "zip",
  10064. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10065. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10066. "shasum": ""
  10067. },
  10068. "require": {
  10069. "php": ">=7.3"
  10070. },
  10071. "require-dev": {
  10072. "phpunit/phpunit": "^9.3"
  10073. },
  10074. "suggest": {
  10075. "ext-posix": "*"
  10076. },
  10077. "type": "library",
  10078. "extra": {
  10079. "branch-alias": {
  10080. "dev-master": "5.1-dev"
  10081. }
  10082. },
  10083. "autoload": {
  10084. "classmap": [
  10085. "src/"
  10086. ]
  10087. },
  10088. "notification-url": "https://packagist.org/downloads/",
  10089. "license": [
  10090. "BSD-3-Clause"
  10091. ],
  10092. "authors": [
  10093. {
  10094. "name": "Sebastian Bergmann",
  10095. "email": "sebastian@phpunit.de"
  10096. }
  10097. ],
  10098. "description": "Provides functionality to handle HHVM/PHP environments",
  10099. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10100. "keywords": [
  10101. "Xdebug",
  10102. "environment",
  10103. "hhvm"
  10104. ],
  10105. "support": {
  10106. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10107. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10108. },
  10109. "funding": [
  10110. {
  10111. "url": "https://github.com/sebastianbergmann",
  10112. "type": "github"
  10113. }
  10114. ],
  10115. "time": "2023-02-03T06:03:51+00:00"
  10116. },
  10117. {
  10118. "name": "sebastian/exporter",
  10119. "version": "4.0.5",
  10120. "source": {
  10121. "type": "git",
  10122. "url": "https://github.com/sebastianbergmann/exporter.git",
  10123. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10124. },
  10125. "dist": {
  10126. "type": "zip",
  10127. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10128. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10129. "shasum": ""
  10130. },
  10131. "require": {
  10132. "php": ">=7.3",
  10133. "sebastian/recursion-context": "^4.0"
  10134. },
  10135. "require-dev": {
  10136. "ext-mbstring": "*",
  10137. "phpunit/phpunit": "^9.3"
  10138. },
  10139. "type": "library",
  10140. "extra": {
  10141. "branch-alias": {
  10142. "dev-master": "4.0-dev"
  10143. }
  10144. },
  10145. "autoload": {
  10146. "classmap": [
  10147. "src/"
  10148. ]
  10149. },
  10150. "notification-url": "https://packagist.org/downloads/",
  10151. "license": [
  10152. "BSD-3-Clause"
  10153. ],
  10154. "authors": [
  10155. {
  10156. "name": "Sebastian Bergmann",
  10157. "email": "sebastian@phpunit.de"
  10158. },
  10159. {
  10160. "name": "Jeff Welch",
  10161. "email": "whatthejeff@gmail.com"
  10162. },
  10163. {
  10164. "name": "Volker Dusch",
  10165. "email": "github@wallbash.com"
  10166. },
  10167. {
  10168. "name": "Adam Harvey",
  10169. "email": "aharvey@php.net"
  10170. },
  10171. {
  10172. "name": "Bernhard Schussek",
  10173. "email": "bschussek@gmail.com"
  10174. }
  10175. ],
  10176. "description": "Provides the functionality to export PHP variables for visualization",
  10177. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10178. "keywords": [
  10179. "export",
  10180. "exporter"
  10181. ],
  10182. "support": {
  10183. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10184. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10185. },
  10186. "funding": [
  10187. {
  10188. "url": "https://github.com/sebastianbergmann",
  10189. "type": "github"
  10190. }
  10191. ],
  10192. "time": "2022-09-14T06:03:37+00:00"
  10193. },
  10194. {
  10195. "name": "sebastian/global-state",
  10196. "version": "5.0.5",
  10197. "source": {
  10198. "type": "git",
  10199. "url": "https://github.com/sebastianbergmann/global-state.git",
  10200. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  10201. },
  10202. "dist": {
  10203. "type": "zip",
  10204. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10205. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10206. "shasum": ""
  10207. },
  10208. "require": {
  10209. "php": ">=7.3",
  10210. "sebastian/object-reflector": "^2.0",
  10211. "sebastian/recursion-context": "^4.0"
  10212. },
  10213. "require-dev": {
  10214. "ext-dom": "*",
  10215. "phpunit/phpunit": "^9.3"
  10216. },
  10217. "suggest": {
  10218. "ext-uopz": "*"
  10219. },
  10220. "type": "library",
  10221. "extra": {
  10222. "branch-alias": {
  10223. "dev-master": "5.0-dev"
  10224. }
  10225. },
  10226. "autoload": {
  10227. "classmap": [
  10228. "src/"
  10229. ]
  10230. },
  10231. "notification-url": "https://packagist.org/downloads/",
  10232. "license": [
  10233. "BSD-3-Clause"
  10234. ],
  10235. "authors": [
  10236. {
  10237. "name": "Sebastian Bergmann",
  10238. "email": "sebastian@phpunit.de"
  10239. }
  10240. ],
  10241. "description": "Snapshotting of global state",
  10242. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10243. "keywords": [
  10244. "global state"
  10245. ],
  10246. "support": {
  10247. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10248. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  10249. },
  10250. "funding": [
  10251. {
  10252. "url": "https://github.com/sebastianbergmann",
  10253. "type": "github"
  10254. }
  10255. ],
  10256. "time": "2022-02-14T08:28:10+00:00"
  10257. },
  10258. {
  10259. "name": "sebastian/lines-of-code",
  10260. "version": "1.0.3",
  10261. "source": {
  10262. "type": "git",
  10263. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10264. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10265. },
  10266. "dist": {
  10267. "type": "zip",
  10268. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10269. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10270. "shasum": ""
  10271. },
  10272. "require": {
  10273. "nikic/php-parser": "^4.6",
  10274. "php": ">=7.3"
  10275. },
  10276. "require-dev": {
  10277. "phpunit/phpunit": "^9.3"
  10278. },
  10279. "type": "library",
  10280. "extra": {
  10281. "branch-alias": {
  10282. "dev-master": "1.0-dev"
  10283. }
  10284. },
  10285. "autoload": {
  10286. "classmap": [
  10287. "src/"
  10288. ]
  10289. },
  10290. "notification-url": "https://packagist.org/downloads/",
  10291. "license": [
  10292. "BSD-3-Clause"
  10293. ],
  10294. "authors": [
  10295. {
  10296. "name": "Sebastian Bergmann",
  10297. "email": "sebastian@phpunit.de",
  10298. "role": "lead"
  10299. }
  10300. ],
  10301. "description": "Library for counting the lines of code in PHP source code",
  10302. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10303. "support": {
  10304. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10305. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10306. },
  10307. "funding": [
  10308. {
  10309. "url": "https://github.com/sebastianbergmann",
  10310. "type": "github"
  10311. }
  10312. ],
  10313. "time": "2020-11-28T06:42:11+00:00"
  10314. },
  10315. {
  10316. "name": "sebastian/object-enumerator",
  10317. "version": "4.0.4",
  10318. "source": {
  10319. "type": "git",
  10320. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10321. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10322. },
  10323. "dist": {
  10324. "type": "zip",
  10325. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10326. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10327. "shasum": ""
  10328. },
  10329. "require": {
  10330. "php": ">=7.3",
  10331. "sebastian/object-reflector": "^2.0",
  10332. "sebastian/recursion-context": "^4.0"
  10333. },
  10334. "require-dev": {
  10335. "phpunit/phpunit": "^9.3"
  10336. },
  10337. "type": "library",
  10338. "extra": {
  10339. "branch-alias": {
  10340. "dev-master": "4.0-dev"
  10341. }
  10342. },
  10343. "autoload": {
  10344. "classmap": [
  10345. "src/"
  10346. ]
  10347. },
  10348. "notification-url": "https://packagist.org/downloads/",
  10349. "license": [
  10350. "BSD-3-Clause"
  10351. ],
  10352. "authors": [
  10353. {
  10354. "name": "Sebastian Bergmann",
  10355. "email": "sebastian@phpunit.de"
  10356. }
  10357. ],
  10358. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10359. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10360. "support": {
  10361. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10362. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10363. },
  10364. "funding": [
  10365. {
  10366. "url": "https://github.com/sebastianbergmann",
  10367. "type": "github"
  10368. }
  10369. ],
  10370. "time": "2020-10-26T13:12:34+00:00"
  10371. },
  10372. {
  10373. "name": "sebastian/object-reflector",
  10374. "version": "2.0.4",
  10375. "source": {
  10376. "type": "git",
  10377. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10378. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10379. },
  10380. "dist": {
  10381. "type": "zip",
  10382. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10383. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10384. "shasum": ""
  10385. },
  10386. "require": {
  10387. "php": ">=7.3"
  10388. },
  10389. "require-dev": {
  10390. "phpunit/phpunit": "^9.3"
  10391. },
  10392. "type": "library",
  10393. "extra": {
  10394. "branch-alias": {
  10395. "dev-master": "2.0-dev"
  10396. }
  10397. },
  10398. "autoload": {
  10399. "classmap": [
  10400. "src/"
  10401. ]
  10402. },
  10403. "notification-url": "https://packagist.org/downloads/",
  10404. "license": [
  10405. "BSD-3-Clause"
  10406. ],
  10407. "authors": [
  10408. {
  10409. "name": "Sebastian Bergmann",
  10410. "email": "sebastian@phpunit.de"
  10411. }
  10412. ],
  10413. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10414. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10415. "support": {
  10416. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10417. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10418. },
  10419. "funding": [
  10420. {
  10421. "url": "https://github.com/sebastianbergmann",
  10422. "type": "github"
  10423. }
  10424. ],
  10425. "time": "2020-10-26T13:14:26+00:00"
  10426. },
  10427. {
  10428. "name": "sebastian/recursion-context",
  10429. "version": "4.0.5",
  10430. "source": {
  10431. "type": "git",
  10432. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10433. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10434. },
  10435. "dist": {
  10436. "type": "zip",
  10437. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10438. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10439. "shasum": ""
  10440. },
  10441. "require": {
  10442. "php": ">=7.3"
  10443. },
  10444. "require-dev": {
  10445. "phpunit/phpunit": "^9.3"
  10446. },
  10447. "type": "library",
  10448. "extra": {
  10449. "branch-alias": {
  10450. "dev-master": "4.0-dev"
  10451. }
  10452. },
  10453. "autoload": {
  10454. "classmap": [
  10455. "src/"
  10456. ]
  10457. },
  10458. "notification-url": "https://packagist.org/downloads/",
  10459. "license": [
  10460. "BSD-3-Clause"
  10461. ],
  10462. "authors": [
  10463. {
  10464. "name": "Sebastian Bergmann",
  10465. "email": "sebastian@phpunit.de"
  10466. },
  10467. {
  10468. "name": "Jeff Welch",
  10469. "email": "whatthejeff@gmail.com"
  10470. },
  10471. {
  10472. "name": "Adam Harvey",
  10473. "email": "aharvey@php.net"
  10474. }
  10475. ],
  10476. "description": "Provides functionality to recursively process PHP variables",
  10477. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10478. "support": {
  10479. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10480. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10481. },
  10482. "funding": [
  10483. {
  10484. "url": "https://github.com/sebastianbergmann",
  10485. "type": "github"
  10486. }
  10487. ],
  10488. "time": "2023-02-03T06:07:39+00:00"
  10489. },
  10490. {
  10491. "name": "sebastian/resource-operations",
  10492. "version": "3.0.3",
  10493. "source": {
  10494. "type": "git",
  10495. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10496. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10497. },
  10498. "dist": {
  10499. "type": "zip",
  10500. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10501. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10502. "shasum": ""
  10503. },
  10504. "require": {
  10505. "php": ">=7.3"
  10506. },
  10507. "require-dev": {
  10508. "phpunit/phpunit": "^9.0"
  10509. },
  10510. "type": "library",
  10511. "extra": {
  10512. "branch-alias": {
  10513. "dev-master": "3.0-dev"
  10514. }
  10515. },
  10516. "autoload": {
  10517. "classmap": [
  10518. "src/"
  10519. ]
  10520. },
  10521. "notification-url": "https://packagist.org/downloads/",
  10522. "license": [
  10523. "BSD-3-Clause"
  10524. ],
  10525. "authors": [
  10526. {
  10527. "name": "Sebastian Bergmann",
  10528. "email": "sebastian@phpunit.de"
  10529. }
  10530. ],
  10531. "description": "Provides a list of PHP built-in functions that operate on resources",
  10532. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10533. "support": {
  10534. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10535. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10536. },
  10537. "funding": [
  10538. {
  10539. "url": "https://github.com/sebastianbergmann",
  10540. "type": "github"
  10541. }
  10542. ],
  10543. "time": "2020-09-28T06:45:17+00:00"
  10544. },
  10545. {
  10546. "name": "sebastian/type",
  10547. "version": "3.2.1",
  10548. "source": {
  10549. "type": "git",
  10550. "url": "https://github.com/sebastianbergmann/type.git",
  10551. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10552. },
  10553. "dist": {
  10554. "type": "zip",
  10555. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10556. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10557. "shasum": ""
  10558. },
  10559. "require": {
  10560. "php": ">=7.3"
  10561. },
  10562. "require-dev": {
  10563. "phpunit/phpunit": "^9.5"
  10564. },
  10565. "type": "library",
  10566. "extra": {
  10567. "branch-alias": {
  10568. "dev-master": "3.2-dev"
  10569. }
  10570. },
  10571. "autoload": {
  10572. "classmap": [
  10573. "src/"
  10574. ]
  10575. },
  10576. "notification-url": "https://packagist.org/downloads/",
  10577. "license": [
  10578. "BSD-3-Clause"
  10579. ],
  10580. "authors": [
  10581. {
  10582. "name": "Sebastian Bergmann",
  10583. "email": "sebastian@phpunit.de",
  10584. "role": "lead"
  10585. }
  10586. ],
  10587. "description": "Collection of value objects that represent the types of the PHP type system",
  10588. "homepage": "https://github.com/sebastianbergmann/type",
  10589. "support": {
  10590. "issues": "https://github.com/sebastianbergmann/type/issues",
  10591. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10592. },
  10593. "funding": [
  10594. {
  10595. "url": "https://github.com/sebastianbergmann",
  10596. "type": "github"
  10597. }
  10598. ],
  10599. "time": "2023-02-03T06:13:03+00:00"
  10600. },
  10601. {
  10602. "name": "sebastian/version",
  10603. "version": "3.0.2",
  10604. "source": {
  10605. "type": "git",
  10606. "url": "https://github.com/sebastianbergmann/version.git",
  10607. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10608. },
  10609. "dist": {
  10610. "type": "zip",
  10611. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10612. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10613. "shasum": ""
  10614. },
  10615. "require": {
  10616. "php": ">=7.3"
  10617. },
  10618. "type": "library",
  10619. "extra": {
  10620. "branch-alias": {
  10621. "dev-master": "3.0-dev"
  10622. }
  10623. },
  10624. "autoload": {
  10625. "classmap": [
  10626. "src/"
  10627. ]
  10628. },
  10629. "notification-url": "https://packagist.org/downloads/",
  10630. "license": [
  10631. "BSD-3-Clause"
  10632. ],
  10633. "authors": [
  10634. {
  10635. "name": "Sebastian Bergmann",
  10636. "email": "sebastian@phpunit.de",
  10637. "role": "lead"
  10638. }
  10639. ],
  10640. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10641. "homepage": "https://github.com/sebastianbergmann/version",
  10642. "support": {
  10643. "issues": "https://github.com/sebastianbergmann/version/issues",
  10644. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10645. },
  10646. "funding": [
  10647. {
  10648. "url": "https://github.com/sebastianbergmann",
  10649. "type": "github"
  10650. }
  10651. ],
  10652. "time": "2020-09-28T06:39:44+00:00"
  10653. },
  10654. {
  10655. "name": "spatie/backtrace",
  10656. "version": "1.4.0",
  10657. "source": {
  10658. "type": "git",
  10659. "url": "https://github.com/spatie/backtrace.git",
  10660. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c"
  10661. },
  10662. "dist": {
  10663. "type": "zip",
  10664. "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c",
  10665. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c",
  10666. "shasum": ""
  10667. },
  10668. "require": {
  10669. "php": "^7.3|^8.0"
  10670. },
  10671. "require-dev": {
  10672. "ext-json": "*",
  10673. "phpunit/phpunit": "^9.3",
  10674. "spatie/phpunit-snapshot-assertions": "^4.2",
  10675. "symfony/var-dumper": "^5.1"
  10676. },
  10677. "type": "library",
  10678. "autoload": {
  10679. "psr-4": {
  10680. "Spatie\\Backtrace\\": "src"
  10681. }
  10682. },
  10683. "notification-url": "https://packagist.org/downloads/",
  10684. "license": [
  10685. "MIT"
  10686. ],
  10687. "authors": [
  10688. {
  10689. "name": "Freek Van de Herten",
  10690. "email": "freek@spatie.be",
  10691. "homepage": "https://spatie.be",
  10692. "role": "Developer"
  10693. }
  10694. ],
  10695. "description": "A better backtrace",
  10696. "homepage": "https://github.com/spatie/backtrace",
  10697. "keywords": [
  10698. "Backtrace",
  10699. "spatie"
  10700. ],
  10701. "support": {
  10702. "source": "https://github.com/spatie/backtrace/tree/1.4.0"
  10703. },
  10704. "funding": [
  10705. {
  10706. "url": "https://github.com/sponsors/spatie",
  10707. "type": "github"
  10708. },
  10709. {
  10710. "url": "https://spatie.be/open-source/support-us",
  10711. "type": "other"
  10712. }
  10713. ],
  10714. "time": "2023-03-04T08:57:24+00:00"
  10715. },
  10716. {
  10717. "name": "spatie/flare-client-php",
  10718. "version": "1.3.6",
  10719. "source": {
  10720. "type": "git",
  10721. "url": "https://github.com/spatie/flare-client-php.git",
  10722. "reference": "530ac81255af79f114344286e4275f8869c671e2"
  10723. },
  10724. "dist": {
  10725. "type": "zip",
  10726. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/530ac81255af79f114344286e4275f8869c671e2",
  10727. "reference": "530ac81255af79f114344286e4275f8869c671e2",
  10728. "shasum": ""
  10729. },
  10730. "require": {
  10731. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  10732. "php": "^8.0",
  10733. "spatie/backtrace": "^1.2",
  10734. "symfony/http-foundation": "^5.0|^6.0",
  10735. "symfony/mime": "^5.2|^6.0",
  10736. "symfony/process": "^5.2|^6.0",
  10737. "symfony/var-dumper": "^5.2|^6.0"
  10738. },
  10739. "require-dev": {
  10740. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10741. "pestphp/pest": "^1.20",
  10742. "phpstan/extension-installer": "^1.1",
  10743. "phpstan/phpstan-deprecation-rules": "^1.0",
  10744. "phpstan/phpstan-phpunit": "^1.0",
  10745. "spatie/phpunit-snapshot-assertions": "^4.0"
  10746. },
  10747. "type": "library",
  10748. "extra": {
  10749. "branch-alias": {
  10750. "dev-main": "1.1.x-dev"
  10751. }
  10752. },
  10753. "autoload": {
  10754. "files": [
  10755. "src/helpers.php"
  10756. ],
  10757. "psr-4": {
  10758. "Spatie\\FlareClient\\": "src"
  10759. }
  10760. },
  10761. "notification-url": "https://packagist.org/downloads/",
  10762. "license": [
  10763. "MIT"
  10764. ],
  10765. "description": "Send PHP errors to Flare",
  10766. "homepage": "https://github.com/spatie/flare-client-php",
  10767. "keywords": [
  10768. "exception",
  10769. "flare",
  10770. "reporting",
  10771. "spatie"
  10772. ],
  10773. "support": {
  10774. "issues": "https://github.com/spatie/flare-client-php/issues",
  10775. "source": "https://github.com/spatie/flare-client-php/tree/1.3.6"
  10776. },
  10777. "funding": [
  10778. {
  10779. "url": "https://github.com/spatie",
  10780. "type": "github"
  10781. }
  10782. ],
  10783. "time": "2023-04-12T07:57:12+00:00"
  10784. },
  10785. {
  10786. "name": "spatie/ignition",
  10787. "version": "1.6.0",
  10788. "source": {
  10789. "type": "git",
  10790. "url": "https://github.com/spatie/ignition.git",
  10791. "reference": "fbcfcabc44e506e40c4d72fd4ddf465e272a600e"
  10792. },
  10793. "dist": {
  10794. "type": "zip",
  10795. "url": "https://api.github.com/repos/spatie/ignition/zipball/fbcfcabc44e506e40c4d72fd4ddf465e272a600e",
  10796. "reference": "fbcfcabc44e506e40c4d72fd4ddf465e272a600e",
  10797. "shasum": ""
  10798. },
  10799. "require": {
  10800. "ext-json": "*",
  10801. "ext-mbstring": "*",
  10802. "php": "^8.0",
  10803. "spatie/backtrace": "^1.4",
  10804. "spatie/flare-client-php": "^1.1",
  10805. "symfony/console": "^5.4|^6.0",
  10806. "symfony/var-dumper": "^5.4|^6.0"
  10807. },
  10808. "require-dev": {
  10809. "illuminate/cache": "^9.52",
  10810. "mockery/mockery": "^1.4",
  10811. "pestphp/pest": "^1.20",
  10812. "phpstan/extension-installer": "^1.1",
  10813. "phpstan/phpstan-deprecation-rules": "^1.0",
  10814. "phpstan/phpstan-phpunit": "^1.0",
  10815. "psr/simple-cache-implementation": "*",
  10816. "symfony/cache": "^6.2",
  10817. "symfony/process": "^5.4|^6.0",
  10818. "vlucas/phpdotenv": "^5.5"
  10819. },
  10820. "suggest": {
  10821. "openai-php/client": "Require get solutions from OpenAI",
  10822. "simple-cache-implementation": "To cache solutions from OpenAI"
  10823. },
  10824. "type": "library",
  10825. "extra": {
  10826. "branch-alias": {
  10827. "dev-main": "1.5.x-dev"
  10828. }
  10829. },
  10830. "autoload": {
  10831. "psr-4": {
  10832. "Spatie\\Ignition\\": "src"
  10833. }
  10834. },
  10835. "notification-url": "https://packagist.org/downloads/",
  10836. "license": [
  10837. "MIT"
  10838. ],
  10839. "authors": [
  10840. {
  10841. "name": "Spatie",
  10842. "email": "info@spatie.be",
  10843. "role": "Developer"
  10844. }
  10845. ],
  10846. "description": "A beautiful error page for PHP applications.",
  10847. "homepage": "https://flareapp.io/ignition",
  10848. "keywords": [
  10849. "error",
  10850. "flare",
  10851. "laravel",
  10852. "page"
  10853. ],
  10854. "support": {
  10855. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10856. "forum": "https://twitter.com/flareappio",
  10857. "issues": "https://github.com/spatie/ignition/issues",
  10858. "source": "https://github.com/spatie/ignition"
  10859. },
  10860. "funding": [
  10861. {
  10862. "url": "https://github.com/spatie",
  10863. "type": "github"
  10864. }
  10865. ],
  10866. "time": "2023-04-27T08:40:07+00:00"
  10867. },
  10868. {
  10869. "name": "spatie/laravel-ignition",
  10870. "version": "1.6.4",
  10871. "source": {
  10872. "type": "git",
  10873. "url": "https://github.com/spatie/laravel-ignition.git",
  10874. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  10875. },
  10876. "dist": {
  10877. "type": "zip",
  10878. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10879. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10880. "shasum": ""
  10881. },
  10882. "require": {
  10883. "ext-curl": "*",
  10884. "ext-json": "*",
  10885. "ext-mbstring": "*",
  10886. "illuminate/support": "^8.77|^9.27",
  10887. "monolog/monolog": "^2.3",
  10888. "php": "^8.0",
  10889. "spatie/flare-client-php": "^1.0.1",
  10890. "spatie/ignition": "^1.4.1",
  10891. "symfony/console": "^5.0|^6.0",
  10892. "symfony/var-dumper": "^5.0|^6.0"
  10893. },
  10894. "require-dev": {
  10895. "filp/whoops": "^2.14",
  10896. "livewire/livewire": "^2.8|dev-develop",
  10897. "mockery/mockery": "^1.4",
  10898. "nunomaduro/larastan": "^1.0",
  10899. "orchestra/testbench": "^6.23|^7.0",
  10900. "pestphp/pest": "^1.20",
  10901. "phpstan/extension-installer": "^1.1",
  10902. "phpstan/phpstan-deprecation-rules": "^1.0",
  10903. "phpstan/phpstan-phpunit": "^1.0",
  10904. "spatie/laravel-ray": "^1.27"
  10905. },
  10906. "type": "library",
  10907. "extra": {
  10908. "laravel": {
  10909. "providers": [
  10910. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10911. ],
  10912. "aliases": {
  10913. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10914. }
  10915. }
  10916. },
  10917. "autoload": {
  10918. "files": [
  10919. "src/helpers.php"
  10920. ],
  10921. "psr-4": {
  10922. "Spatie\\LaravelIgnition\\": "src"
  10923. }
  10924. },
  10925. "notification-url": "https://packagist.org/downloads/",
  10926. "license": [
  10927. "MIT"
  10928. ],
  10929. "authors": [
  10930. {
  10931. "name": "Spatie",
  10932. "email": "info@spatie.be",
  10933. "role": "Developer"
  10934. }
  10935. ],
  10936. "description": "A beautiful error page for Laravel applications.",
  10937. "homepage": "https://flareapp.io/ignition",
  10938. "keywords": [
  10939. "error",
  10940. "flare",
  10941. "laravel",
  10942. "page"
  10943. ],
  10944. "support": {
  10945. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10946. "forum": "https://twitter.com/flareappio",
  10947. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10948. "source": "https://github.com/spatie/laravel-ignition"
  10949. },
  10950. "funding": [
  10951. {
  10952. "url": "https://github.com/spatie",
  10953. "type": "github"
  10954. }
  10955. ],
  10956. "time": "2023-01-03T19:28:04+00:00"
  10957. },
  10958. {
  10959. "name": "symfony/yaml",
  10960. "version": "v6.2.10",
  10961. "source": {
  10962. "type": "git",
  10963. "url": "https://github.com/symfony/yaml.git",
  10964. "reference": "61916f3861b1e9705b18cfde723921a71dd1559d"
  10965. },
  10966. "dist": {
  10967. "type": "zip",
  10968. "url": "https://api.github.com/repos/symfony/yaml/zipball/61916f3861b1e9705b18cfde723921a71dd1559d",
  10969. "reference": "61916f3861b1e9705b18cfde723921a71dd1559d",
  10970. "shasum": ""
  10971. },
  10972. "require": {
  10973. "php": ">=8.1",
  10974. "symfony/polyfill-ctype": "^1.8"
  10975. },
  10976. "conflict": {
  10977. "symfony/console": "<5.4"
  10978. },
  10979. "require-dev": {
  10980. "symfony/console": "^5.4|^6.0"
  10981. },
  10982. "suggest": {
  10983. "symfony/console": "For validating YAML files using the lint command"
  10984. },
  10985. "bin": [
  10986. "Resources/bin/yaml-lint"
  10987. ],
  10988. "type": "library",
  10989. "autoload": {
  10990. "psr-4": {
  10991. "Symfony\\Component\\Yaml\\": ""
  10992. },
  10993. "exclude-from-classmap": [
  10994. "/Tests/"
  10995. ]
  10996. },
  10997. "notification-url": "https://packagist.org/downloads/",
  10998. "license": [
  10999. "MIT"
  11000. ],
  11001. "authors": [
  11002. {
  11003. "name": "Fabien Potencier",
  11004. "email": "fabien@symfony.com"
  11005. },
  11006. {
  11007. "name": "Symfony Community",
  11008. "homepage": "https://symfony.com/contributors"
  11009. }
  11010. ],
  11011. "description": "Loads and dumps YAML files",
  11012. "homepage": "https://symfony.com",
  11013. "support": {
  11014. "source": "https://github.com/symfony/yaml/tree/v6.2.10"
  11015. },
  11016. "funding": [
  11017. {
  11018. "url": "https://symfony.com/sponsor",
  11019. "type": "custom"
  11020. },
  11021. {
  11022. "url": "https://github.com/fabpot",
  11023. "type": "github"
  11024. },
  11025. {
  11026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11027. "type": "tidelift"
  11028. }
  11029. ],
  11030. "time": "2023-04-28T13:25:36+00:00"
  11031. },
  11032. {
  11033. "name": "theseer/tokenizer",
  11034. "version": "1.2.1",
  11035. "source": {
  11036. "type": "git",
  11037. "url": "https://github.com/theseer/tokenizer.git",
  11038. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11039. },
  11040. "dist": {
  11041. "type": "zip",
  11042. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11043. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11044. "shasum": ""
  11045. },
  11046. "require": {
  11047. "ext-dom": "*",
  11048. "ext-tokenizer": "*",
  11049. "ext-xmlwriter": "*",
  11050. "php": "^7.2 || ^8.0"
  11051. },
  11052. "type": "library",
  11053. "autoload": {
  11054. "classmap": [
  11055. "src/"
  11056. ]
  11057. },
  11058. "notification-url": "https://packagist.org/downloads/",
  11059. "license": [
  11060. "BSD-3-Clause"
  11061. ],
  11062. "authors": [
  11063. {
  11064. "name": "Arne Blankerts",
  11065. "email": "arne@blankerts.de",
  11066. "role": "Developer"
  11067. }
  11068. ],
  11069. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11070. "support": {
  11071. "issues": "https://github.com/theseer/tokenizer/issues",
  11072. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11073. },
  11074. "funding": [
  11075. {
  11076. "url": "https://github.com/theseer",
  11077. "type": "github"
  11078. }
  11079. ],
  11080. "time": "2021-07-28T10:34:58+00:00"
  11081. }
  11082. ],
  11083. "aliases": [],
  11084. "minimum-stability": "dev",
  11085. "stability-flags": [],
  11086. "prefer-stable": true,
  11087. "prefer-lowest": false,
  11088. "platform": {
  11089. "php": "^8.1",
  11090. "ext-intl": "*"
  11091. },
  11092. "platform-dev": [],
  11093. "platform-overrides": {
  11094. "php": "8.1"
  11095. },
  11096. "plugin-api-version": "2.1.0"
  11097. }