composer.lock 411 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463
  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": "976ab2160a9193f33527adc845d4b4cc",
  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": "bacon/bacon-qr-code",
  160. "version": "2.0.8",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/Bacon/BaconQrCode.git",
  164. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  169. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "dasprid/enum": "^1.0.3",
  174. "ext-iconv": "*",
  175. "php": "^7.1 || ^8.0"
  176. },
  177. "require-dev": {
  178. "phly/keep-a-changelog": "^2.1",
  179. "phpunit/phpunit": "^7 | ^8 | ^9",
  180. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  181. "squizlabs/php_codesniffer": "^3.4"
  182. },
  183. "suggest": {
  184. "ext-imagick": "to generate QR code images"
  185. },
  186. "type": "library",
  187. "autoload": {
  188. "psr-4": {
  189. "BaconQrCode\\": "src/"
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "BSD-2-Clause"
  195. ],
  196. "authors": [
  197. {
  198. "name": "Ben Scholzen 'DASPRiD'",
  199. "email": "mail@dasprids.de",
  200. "homepage": "https://dasprids.de/",
  201. "role": "Developer"
  202. }
  203. ],
  204. "description": "BaconQrCode is a QR code generator for PHP.",
  205. "homepage": "https://github.com/Bacon/BaconQrCode",
  206. "support": {
  207. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  208. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  209. },
  210. "time": "2022-12-07T17:46:57+00:00"
  211. },
  212. {
  213. "name": "barryvdh/laravel-dompdf",
  214. "version": "v2.0.1",
  215. "source": {
  216. "type": "git",
  217. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  218. "reference": "9843d2be423670fb434f4c978b3c0f4dd92c87a6"
  219. },
  220. "dist": {
  221. "type": "zip",
  222. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/9843d2be423670fb434f4c978b3c0f4dd92c87a6",
  223. "reference": "9843d2be423670fb434f4c978b3c0f4dd92c87a6",
  224. "shasum": ""
  225. },
  226. "require": {
  227. "dompdf/dompdf": "^2.0.1",
  228. "illuminate/support": "^6|^7|^8|^9|^10",
  229. "php": "^7.2 || ^8.0"
  230. },
  231. "require-dev": {
  232. "nunomaduro/larastan": "^1|^2",
  233. "orchestra/testbench": "^4|^5|^6|^7|^8",
  234. "phpro/grumphp": "^1",
  235. "squizlabs/php_codesniffer": "^3.5"
  236. },
  237. "type": "library",
  238. "extra": {
  239. "branch-alias": {
  240. "dev-master": "2.0-dev"
  241. },
  242. "laravel": {
  243. "providers": [
  244. "Barryvdh\\DomPDF\\ServiceProvider"
  245. ],
  246. "aliases": {
  247. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf",
  248. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf"
  249. }
  250. }
  251. },
  252. "autoload": {
  253. "psr-4": {
  254. "Barryvdh\\DomPDF\\": "src"
  255. }
  256. },
  257. "notification-url": "https://packagist.org/downloads/",
  258. "license": [
  259. "MIT"
  260. ],
  261. "authors": [
  262. {
  263. "name": "Barry vd. Heuvel",
  264. "email": "barryvdh@gmail.com"
  265. }
  266. ],
  267. "description": "A DOMPDF Wrapper for Laravel",
  268. "keywords": [
  269. "dompdf",
  270. "laravel",
  271. "pdf"
  272. ],
  273. "support": {
  274. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  275. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.0.1"
  276. },
  277. "funding": [
  278. {
  279. "url": "https://fruitcake.nl",
  280. "type": "custom"
  281. },
  282. {
  283. "url": "https://github.com/barryvdh",
  284. "type": "github"
  285. }
  286. ],
  287. "time": "2023-01-12T15:12:49+00:00"
  288. },
  289. {
  290. "name": "biscolab/laravel-recaptcha",
  291. "version": "v5.4.0",
  292. "source": {
  293. "type": "git",
  294. "url": "https://github.com/biscolab/laravel-recaptcha.git",
  295. "reference": "1bab726402d5376553a439b88a0faa07e84488fd"
  296. },
  297. "dist": {
  298. "type": "zip",
  299. "url": "https://api.github.com/repos/biscolab/laravel-recaptcha/zipball/1bab726402d5376553a439b88a0faa07e84488fd",
  300. "reference": "1bab726402d5376553a439b88a0faa07e84488fd",
  301. "shasum": ""
  302. },
  303. "require": {
  304. "illuminate/routing": "^7.0|^8.0|^9.0",
  305. "illuminate/support": "^7.0|^8.0|^9.0",
  306. "php": "^7.3|^8.0"
  307. },
  308. "require-dev": {
  309. "orchestra/testbench": "5.*|6.*|^7.0",
  310. "phpunit/phpunit": "^9.1"
  311. },
  312. "suggest": {
  313. "biscolab/laravel-authlog": "It allows to handle logged-in users and force log-out if needed"
  314. },
  315. "type": "library",
  316. "extra": {
  317. "laravel": {
  318. "providers": [
  319. "Biscolab\\ReCaptcha\\ReCaptchaServiceProvider"
  320. ],
  321. "aliases": {
  322. "ReCaptcha": "Biscolab\\ReCaptcha\\Facades\\ReCaptcha"
  323. }
  324. }
  325. },
  326. "autoload": {
  327. "files": [
  328. "src/helpers.php"
  329. ],
  330. "psr-4": {
  331. "Biscolab\\ReCaptcha\\": "src/"
  332. }
  333. },
  334. "notification-url": "https://packagist.org/downloads/",
  335. "license": [
  336. "MIT"
  337. ],
  338. "authors": [
  339. {
  340. "name": "Roberto Belotti",
  341. "email": "roby.belotti@gmail.com",
  342. "homepage": "https://biscolab.com",
  343. "role": "Developer"
  344. }
  345. ],
  346. "description": "Simple and painless Google reCAPTCHA package for Laravel framework",
  347. "homepage": "https://biscolab.com/laravel-recaptcha",
  348. "keywords": [
  349. "captcha",
  350. "laravel",
  351. "recaptcha",
  352. "validation"
  353. ],
  354. "support": {
  355. "issues": "https://github.com/biscolab/laravel-recaptcha/issues",
  356. "source": "https://github.com/biscolab/laravel-recaptcha/tree/v5.4.0"
  357. },
  358. "time": "2022-05-07T12:52:46+00:00"
  359. },
  360. {
  361. "name": "brick/math",
  362. "version": "0.11.0",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/brick/math.git",
  366. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  371. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "php": "^8.0"
  376. },
  377. "require-dev": {
  378. "php-coveralls/php-coveralls": "^2.2",
  379. "phpunit/phpunit": "^9.0",
  380. "vimeo/psalm": "5.0.0"
  381. },
  382. "type": "library",
  383. "autoload": {
  384. "psr-4": {
  385. "Brick\\Math\\": "src/"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "MIT"
  391. ],
  392. "description": "Arbitrary-precision arithmetic library",
  393. "keywords": [
  394. "Arbitrary-precision",
  395. "BigInteger",
  396. "BigRational",
  397. "arithmetic",
  398. "bigdecimal",
  399. "bignum",
  400. "brick",
  401. "math"
  402. ],
  403. "support": {
  404. "issues": "https://github.com/brick/math/issues",
  405. "source": "https://github.com/brick/math/tree/0.11.0"
  406. },
  407. "funding": [
  408. {
  409. "url": "https://github.com/BenMorel",
  410. "type": "github"
  411. }
  412. ],
  413. "time": "2023-01-15T23:15:59+00:00"
  414. },
  415. {
  416. "name": "dasprid/enum",
  417. "version": "1.0.5",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/DASPRiD/Enum.git",
  421. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  426. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  427. "shasum": ""
  428. },
  429. "require": {
  430. "php": ">=7.1 <9.0"
  431. },
  432. "require-dev": {
  433. "phpunit/phpunit": "^7 | ^8 | ^9",
  434. "squizlabs/php_codesniffer": "*"
  435. },
  436. "type": "library",
  437. "autoload": {
  438. "psr-4": {
  439. "DASPRiD\\Enum\\": "src/"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "BSD-2-Clause"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Ben Scholzen 'DASPRiD'",
  449. "email": "mail@dasprids.de",
  450. "homepage": "https://dasprids.de/",
  451. "role": "Developer"
  452. }
  453. ],
  454. "description": "PHP 7.1 enum implementation",
  455. "keywords": [
  456. "enum",
  457. "map"
  458. ],
  459. "support": {
  460. "issues": "https://github.com/DASPRiD/Enum/issues",
  461. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  462. },
  463. "time": "2023-08-25T16:18:39+00:00"
  464. },
  465. {
  466. "name": "dflydev/dot-access-data",
  467. "version": "v3.0.2",
  468. "source": {
  469. "type": "git",
  470. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  471. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  472. },
  473. "dist": {
  474. "type": "zip",
  475. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  476. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  477. "shasum": ""
  478. },
  479. "require": {
  480. "php": "^7.1 || ^8.0"
  481. },
  482. "require-dev": {
  483. "phpstan/phpstan": "^0.12.42",
  484. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  485. "scrutinizer/ocular": "1.6.0",
  486. "squizlabs/php_codesniffer": "^3.5",
  487. "vimeo/psalm": "^4.0.0"
  488. },
  489. "type": "library",
  490. "extra": {
  491. "branch-alias": {
  492. "dev-main": "3.x-dev"
  493. }
  494. },
  495. "autoload": {
  496. "psr-4": {
  497. "Dflydev\\DotAccessData\\": "src/"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Dragonfly Development Inc.",
  507. "email": "info@dflydev.com",
  508. "homepage": "http://dflydev.com"
  509. },
  510. {
  511. "name": "Beau Simensen",
  512. "email": "beau@dflydev.com",
  513. "homepage": "http://beausimensen.com"
  514. },
  515. {
  516. "name": "Carlos Frutos",
  517. "email": "carlos@kiwing.it",
  518. "homepage": "https://github.com/cfrutos"
  519. },
  520. {
  521. "name": "Colin O'Dell",
  522. "email": "colinodell@gmail.com",
  523. "homepage": "https://www.colinodell.com"
  524. }
  525. ],
  526. "description": "Given a deep data structure, access data by dot notation.",
  527. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  528. "keywords": [
  529. "access",
  530. "data",
  531. "dot",
  532. "notation"
  533. ],
  534. "support": {
  535. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  536. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  537. },
  538. "time": "2022-10-27T11:44:00+00:00"
  539. },
  540. {
  541. "name": "doctrine/cache",
  542. "version": "2.2.0",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/doctrine/cache.git",
  546. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  551. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  552. "shasum": ""
  553. },
  554. "require": {
  555. "php": "~7.1 || ^8.0"
  556. },
  557. "conflict": {
  558. "doctrine/common": ">2.2,<2.4"
  559. },
  560. "require-dev": {
  561. "cache/integration-tests": "dev-master",
  562. "doctrine/coding-standard": "^9",
  563. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  564. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  565. "symfony/cache": "^4.4 || ^5.4 || ^6",
  566. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  567. },
  568. "type": "library",
  569. "autoload": {
  570. "psr-4": {
  571. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  572. }
  573. },
  574. "notification-url": "https://packagist.org/downloads/",
  575. "license": [
  576. "MIT"
  577. ],
  578. "authors": [
  579. {
  580. "name": "Guilherme Blanco",
  581. "email": "guilhermeblanco@gmail.com"
  582. },
  583. {
  584. "name": "Roman Borschel",
  585. "email": "roman@code-factory.org"
  586. },
  587. {
  588. "name": "Benjamin Eberlei",
  589. "email": "kontakt@beberlei.de"
  590. },
  591. {
  592. "name": "Jonathan Wage",
  593. "email": "jonwage@gmail.com"
  594. },
  595. {
  596. "name": "Johannes Schmitt",
  597. "email": "schmittjoh@gmail.com"
  598. }
  599. ],
  600. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  601. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  602. "keywords": [
  603. "abstraction",
  604. "apcu",
  605. "cache",
  606. "caching",
  607. "couchdb",
  608. "memcached",
  609. "php",
  610. "redis",
  611. "xcache"
  612. ],
  613. "support": {
  614. "issues": "https://github.com/doctrine/cache/issues",
  615. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  616. },
  617. "funding": [
  618. {
  619. "url": "https://www.doctrine-project.org/sponsorship.html",
  620. "type": "custom"
  621. },
  622. {
  623. "url": "https://www.patreon.com/phpdoctrine",
  624. "type": "patreon"
  625. },
  626. {
  627. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  628. "type": "tidelift"
  629. }
  630. ],
  631. "time": "2022-05-20T20:07:39+00:00"
  632. },
  633. {
  634. "name": "doctrine/dbal",
  635. "version": "3.6.2",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/doctrine/dbal.git",
  639. "reference": "b4bd1cfbd2b916951696d82e57d054394d84864c"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/doctrine/dbal/zipball/b4bd1cfbd2b916951696d82e57d054394d84864c",
  644. "reference": "b4bd1cfbd2b916951696d82e57d054394d84864c",
  645. "shasum": ""
  646. },
  647. "require": {
  648. "composer-runtime-api": "^2",
  649. "doctrine/cache": "^1.11|^2.0",
  650. "doctrine/deprecations": "^0.5.3|^1",
  651. "doctrine/event-manager": "^1|^2",
  652. "php": "^7.4 || ^8.0",
  653. "psr/cache": "^1|^2|^3",
  654. "psr/log": "^1|^2|^3"
  655. },
  656. "require-dev": {
  657. "doctrine/coding-standard": "11.1.0",
  658. "fig/log-test": "^1",
  659. "jetbrains/phpstorm-stubs": "2022.3",
  660. "phpstan/phpstan": "1.10.9",
  661. "phpstan/phpstan-strict-rules": "^1.5",
  662. "phpunit/phpunit": "9.6.6",
  663. "psalm/plugin-phpunit": "0.18.4",
  664. "squizlabs/php_codesniffer": "3.7.2",
  665. "symfony/cache": "^5.4|^6.0",
  666. "symfony/console": "^4.4|^5.4|^6.0",
  667. "vimeo/psalm": "4.30.0"
  668. },
  669. "suggest": {
  670. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  671. },
  672. "bin": [
  673. "bin/doctrine-dbal"
  674. ],
  675. "type": "library",
  676. "autoload": {
  677. "psr-4": {
  678. "Doctrine\\DBAL\\": "src"
  679. }
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "Guilherme Blanco",
  688. "email": "guilhermeblanco@gmail.com"
  689. },
  690. {
  691. "name": "Roman Borschel",
  692. "email": "roman@code-factory.org"
  693. },
  694. {
  695. "name": "Benjamin Eberlei",
  696. "email": "kontakt@beberlei.de"
  697. },
  698. {
  699. "name": "Jonathan Wage",
  700. "email": "jonwage@gmail.com"
  701. }
  702. ],
  703. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  704. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  705. "keywords": [
  706. "abstraction",
  707. "database",
  708. "db2",
  709. "dbal",
  710. "mariadb",
  711. "mssql",
  712. "mysql",
  713. "oci8",
  714. "oracle",
  715. "pdo",
  716. "pgsql",
  717. "postgresql",
  718. "queryobject",
  719. "sasql",
  720. "sql",
  721. "sqlite",
  722. "sqlserver",
  723. "sqlsrv"
  724. ],
  725. "support": {
  726. "issues": "https://github.com/doctrine/dbal/issues",
  727. "source": "https://github.com/doctrine/dbal/tree/3.6.2"
  728. },
  729. "funding": [
  730. {
  731. "url": "https://www.doctrine-project.org/sponsorship.html",
  732. "type": "custom"
  733. },
  734. {
  735. "url": "https://www.patreon.com/phpdoctrine",
  736. "type": "patreon"
  737. },
  738. {
  739. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  740. "type": "tidelift"
  741. }
  742. ],
  743. "time": "2023-04-14T07:25:38+00:00"
  744. },
  745. {
  746. "name": "doctrine/deprecations",
  747. "version": "v1.0.0",
  748. "source": {
  749. "type": "git",
  750. "url": "https://github.com/doctrine/deprecations.git",
  751. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  752. },
  753. "dist": {
  754. "type": "zip",
  755. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  756. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  757. "shasum": ""
  758. },
  759. "require": {
  760. "php": "^7.1|^8.0"
  761. },
  762. "require-dev": {
  763. "doctrine/coding-standard": "^9",
  764. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  765. "psr/log": "^1|^2|^3"
  766. },
  767. "suggest": {
  768. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  769. },
  770. "type": "library",
  771. "autoload": {
  772. "psr-4": {
  773. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  774. }
  775. },
  776. "notification-url": "https://packagist.org/downloads/",
  777. "license": [
  778. "MIT"
  779. ],
  780. "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.",
  781. "homepage": "https://www.doctrine-project.org/",
  782. "support": {
  783. "issues": "https://github.com/doctrine/deprecations/issues",
  784. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  785. },
  786. "time": "2022-05-02T15:47:09+00:00"
  787. },
  788. {
  789. "name": "doctrine/event-manager",
  790. "version": "2.0.0",
  791. "source": {
  792. "type": "git",
  793. "url": "https://github.com/doctrine/event-manager.git",
  794. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  795. },
  796. "dist": {
  797. "type": "zip",
  798. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  799. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  800. "shasum": ""
  801. },
  802. "require": {
  803. "php": "^8.1"
  804. },
  805. "conflict": {
  806. "doctrine/common": "<2.9"
  807. },
  808. "require-dev": {
  809. "doctrine/coding-standard": "^10",
  810. "phpstan/phpstan": "^1.8.8",
  811. "phpunit/phpunit": "^9.5",
  812. "vimeo/psalm": "^4.28"
  813. },
  814. "type": "library",
  815. "autoload": {
  816. "psr-4": {
  817. "Doctrine\\Common\\": "src"
  818. }
  819. },
  820. "notification-url": "https://packagist.org/downloads/",
  821. "license": [
  822. "MIT"
  823. ],
  824. "authors": [
  825. {
  826. "name": "Guilherme Blanco",
  827. "email": "guilhermeblanco@gmail.com"
  828. },
  829. {
  830. "name": "Roman Borschel",
  831. "email": "roman@code-factory.org"
  832. },
  833. {
  834. "name": "Benjamin Eberlei",
  835. "email": "kontakt@beberlei.de"
  836. },
  837. {
  838. "name": "Jonathan Wage",
  839. "email": "jonwage@gmail.com"
  840. },
  841. {
  842. "name": "Johannes Schmitt",
  843. "email": "schmittjoh@gmail.com"
  844. },
  845. {
  846. "name": "Marco Pivetta",
  847. "email": "ocramius@gmail.com"
  848. }
  849. ],
  850. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  851. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  852. "keywords": [
  853. "event",
  854. "event dispatcher",
  855. "event manager",
  856. "event system",
  857. "events"
  858. ],
  859. "support": {
  860. "issues": "https://github.com/doctrine/event-manager/issues",
  861. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  862. },
  863. "funding": [
  864. {
  865. "url": "https://www.doctrine-project.org/sponsorship.html",
  866. "type": "custom"
  867. },
  868. {
  869. "url": "https://www.patreon.com/phpdoctrine",
  870. "type": "patreon"
  871. },
  872. {
  873. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  874. "type": "tidelift"
  875. }
  876. ],
  877. "time": "2022-10-12T20:59:15+00:00"
  878. },
  879. {
  880. "name": "doctrine/inflector",
  881. "version": "2.0.6",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/doctrine/inflector.git",
  885. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  890. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "php": "^7.2 || ^8.0"
  895. },
  896. "require-dev": {
  897. "doctrine/coding-standard": "^10",
  898. "phpstan/phpstan": "^1.8",
  899. "phpstan/phpstan-phpunit": "^1.1",
  900. "phpstan/phpstan-strict-rules": "^1.3",
  901. "phpunit/phpunit": "^8.5 || ^9.5",
  902. "vimeo/psalm": "^4.25"
  903. },
  904. "type": "library",
  905. "autoload": {
  906. "psr-4": {
  907. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  908. }
  909. },
  910. "notification-url": "https://packagist.org/downloads/",
  911. "license": [
  912. "MIT"
  913. ],
  914. "authors": [
  915. {
  916. "name": "Guilherme Blanco",
  917. "email": "guilhermeblanco@gmail.com"
  918. },
  919. {
  920. "name": "Roman Borschel",
  921. "email": "roman@code-factory.org"
  922. },
  923. {
  924. "name": "Benjamin Eberlei",
  925. "email": "kontakt@beberlei.de"
  926. },
  927. {
  928. "name": "Jonathan Wage",
  929. "email": "jonwage@gmail.com"
  930. },
  931. {
  932. "name": "Johannes Schmitt",
  933. "email": "schmittjoh@gmail.com"
  934. }
  935. ],
  936. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  937. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  938. "keywords": [
  939. "inflection",
  940. "inflector",
  941. "lowercase",
  942. "manipulation",
  943. "php",
  944. "plural",
  945. "singular",
  946. "strings",
  947. "uppercase",
  948. "words"
  949. ],
  950. "support": {
  951. "issues": "https://github.com/doctrine/inflector/issues",
  952. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  953. },
  954. "funding": [
  955. {
  956. "url": "https://www.doctrine-project.org/sponsorship.html",
  957. "type": "custom"
  958. },
  959. {
  960. "url": "https://www.patreon.com/phpdoctrine",
  961. "type": "patreon"
  962. },
  963. {
  964. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  965. "type": "tidelift"
  966. }
  967. ],
  968. "time": "2022-10-20T09:10:12+00:00"
  969. },
  970. {
  971. "name": "doctrine/lexer",
  972. "version": "3.0.0",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/doctrine/lexer.git",
  976. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  981. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "php": "^8.1"
  986. },
  987. "require-dev": {
  988. "doctrine/coding-standard": "^10",
  989. "phpstan/phpstan": "^1.9",
  990. "phpunit/phpunit": "^9.5",
  991. "psalm/plugin-phpunit": "^0.18.3",
  992. "vimeo/psalm": "^5.0"
  993. },
  994. "type": "library",
  995. "autoload": {
  996. "psr-4": {
  997. "Doctrine\\Common\\Lexer\\": "src"
  998. }
  999. },
  1000. "notification-url": "https://packagist.org/downloads/",
  1001. "license": [
  1002. "MIT"
  1003. ],
  1004. "authors": [
  1005. {
  1006. "name": "Guilherme Blanco",
  1007. "email": "guilhermeblanco@gmail.com"
  1008. },
  1009. {
  1010. "name": "Roman Borschel",
  1011. "email": "roman@code-factory.org"
  1012. },
  1013. {
  1014. "name": "Johannes Schmitt",
  1015. "email": "schmittjoh@gmail.com"
  1016. }
  1017. ],
  1018. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1019. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1020. "keywords": [
  1021. "annotations",
  1022. "docblock",
  1023. "lexer",
  1024. "parser",
  1025. "php"
  1026. ],
  1027. "support": {
  1028. "issues": "https://github.com/doctrine/lexer/issues",
  1029. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  1030. },
  1031. "funding": [
  1032. {
  1033. "url": "https://www.doctrine-project.org/sponsorship.html",
  1034. "type": "custom"
  1035. },
  1036. {
  1037. "url": "https://www.patreon.com/phpdoctrine",
  1038. "type": "patreon"
  1039. },
  1040. {
  1041. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1042. "type": "tidelift"
  1043. }
  1044. ],
  1045. "time": "2022-12-15T16:57:16+00:00"
  1046. },
  1047. {
  1048. "name": "dompdf/dompdf",
  1049. "version": "v2.0.3",
  1050. "source": {
  1051. "type": "git",
  1052. "url": "https://github.com/dompdf/dompdf.git",
  1053. "reference": "e8d2d5e37e8b0b30f0732a011295ab80680d7e85"
  1054. },
  1055. "dist": {
  1056. "type": "zip",
  1057. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/e8d2d5e37e8b0b30f0732a011295ab80680d7e85",
  1058. "reference": "e8d2d5e37e8b0b30f0732a011295ab80680d7e85",
  1059. "shasum": ""
  1060. },
  1061. "require": {
  1062. "ext-dom": "*",
  1063. "ext-mbstring": "*",
  1064. "masterminds/html5": "^2.0",
  1065. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  1066. "phenx/php-svg-lib": ">=0.3.3 <1.0.0",
  1067. "php": "^7.1 || ^8.0"
  1068. },
  1069. "require-dev": {
  1070. "ext-json": "*",
  1071. "ext-zip": "*",
  1072. "mockery/mockery": "^1.3",
  1073. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  1074. "squizlabs/php_codesniffer": "^3.5"
  1075. },
  1076. "suggest": {
  1077. "ext-gd": "Needed to process images",
  1078. "ext-gmagick": "Improves image processing performance",
  1079. "ext-imagick": "Improves image processing performance",
  1080. "ext-zlib": "Needed for pdf stream compression"
  1081. },
  1082. "type": "library",
  1083. "autoload": {
  1084. "psr-4": {
  1085. "Dompdf\\": "src/"
  1086. },
  1087. "classmap": [
  1088. "lib/"
  1089. ]
  1090. },
  1091. "notification-url": "https://packagist.org/downloads/",
  1092. "license": [
  1093. "LGPL-2.1"
  1094. ],
  1095. "authors": [
  1096. {
  1097. "name": "The Dompdf Community",
  1098. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  1099. }
  1100. ],
  1101. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  1102. "homepage": "https://github.com/dompdf/dompdf",
  1103. "support": {
  1104. "issues": "https://github.com/dompdf/dompdf/issues",
  1105. "source": "https://github.com/dompdf/dompdf/tree/v2.0.3"
  1106. },
  1107. "time": "2023-02-07T12:51:48+00:00"
  1108. },
  1109. {
  1110. "name": "dragonmantank/cron-expression",
  1111. "version": "v3.3.2",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/dragonmantank/cron-expression.git",
  1115. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1120. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "php": "^7.2|^8.0",
  1125. "webmozart/assert": "^1.0"
  1126. },
  1127. "replace": {
  1128. "mtdowling/cron-expression": "^1.0"
  1129. },
  1130. "require-dev": {
  1131. "phpstan/extension-installer": "^1.0",
  1132. "phpstan/phpstan": "^1.0",
  1133. "phpstan/phpstan-webmozart-assert": "^1.0",
  1134. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1135. },
  1136. "type": "library",
  1137. "autoload": {
  1138. "psr-4": {
  1139. "Cron\\": "src/Cron/"
  1140. }
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "MIT"
  1145. ],
  1146. "authors": [
  1147. {
  1148. "name": "Chris Tankersley",
  1149. "email": "chris@ctankersley.com",
  1150. "homepage": "https://github.com/dragonmantank"
  1151. }
  1152. ],
  1153. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1154. "keywords": [
  1155. "cron",
  1156. "schedule"
  1157. ],
  1158. "support": {
  1159. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1160. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  1161. },
  1162. "funding": [
  1163. {
  1164. "url": "https://github.com/dragonmantank",
  1165. "type": "github"
  1166. }
  1167. ],
  1168. "time": "2022-09-10T18:51:20+00:00"
  1169. },
  1170. {
  1171. "name": "egulias/email-validator",
  1172. "version": "4.0.1",
  1173. "source": {
  1174. "type": "git",
  1175. "url": "https://github.com/egulias/EmailValidator.git",
  1176. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1177. },
  1178. "dist": {
  1179. "type": "zip",
  1180. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1181. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1182. "shasum": ""
  1183. },
  1184. "require": {
  1185. "doctrine/lexer": "^2.0 || ^3.0",
  1186. "php": ">=8.1",
  1187. "symfony/polyfill-intl-idn": "^1.26"
  1188. },
  1189. "require-dev": {
  1190. "phpunit/phpunit": "^9.5.27",
  1191. "vimeo/psalm": "^4.30"
  1192. },
  1193. "suggest": {
  1194. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1195. },
  1196. "type": "library",
  1197. "extra": {
  1198. "branch-alias": {
  1199. "dev-master": "4.0.x-dev"
  1200. }
  1201. },
  1202. "autoload": {
  1203. "psr-4": {
  1204. "Egulias\\EmailValidator\\": "src"
  1205. }
  1206. },
  1207. "notification-url": "https://packagist.org/downloads/",
  1208. "license": [
  1209. "MIT"
  1210. ],
  1211. "authors": [
  1212. {
  1213. "name": "Eduardo Gulias Davis"
  1214. }
  1215. ],
  1216. "description": "A library for validating emails against several RFCs",
  1217. "homepage": "https://github.com/egulias/EmailValidator",
  1218. "keywords": [
  1219. "email",
  1220. "emailvalidation",
  1221. "emailvalidator",
  1222. "validation",
  1223. "validator"
  1224. ],
  1225. "support": {
  1226. "issues": "https://github.com/egulias/EmailValidator/issues",
  1227. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1228. },
  1229. "funding": [
  1230. {
  1231. "url": "https://github.com/egulias",
  1232. "type": "github"
  1233. }
  1234. ],
  1235. "time": "2023-01-14T14:17:03+00:00"
  1236. },
  1237. {
  1238. "name": "facade/ignition-contracts",
  1239. "version": "1.0.2",
  1240. "source": {
  1241. "type": "git",
  1242. "url": "https://github.com/facade/ignition-contracts.git",
  1243. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1244. },
  1245. "dist": {
  1246. "type": "zip",
  1247. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1248. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1249. "shasum": ""
  1250. },
  1251. "require": {
  1252. "php": "^7.3|^8.0"
  1253. },
  1254. "require-dev": {
  1255. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1256. "phpunit/phpunit": "^9.3.11",
  1257. "vimeo/psalm": "^3.17.1"
  1258. },
  1259. "type": "library",
  1260. "autoload": {
  1261. "psr-4": {
  1262. "Facade\\IgnitionContracts\\": "src"
  1263. }
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "MIT"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Freek Van der Herten",
  1272. "email": "freek@spatie.be",
  1273. "homepage": "https://flareapp.io",
  1274. "role": "Developer"
  1275. }
  1276. ],
  1277. "description": "Solution contracts for Ignition",
  1278. "homepage": "https://github.com/facade/ignition-contracts",
  1279. "keywords": [
  1280. "contracts",
  1281. "flare",
  1282. "ignition"
  1283. ],
  1284. "support": {
  1285. "issues": "https://github.com/facade/ignition-contracts/issues",
  1286. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1287. },
  1288. "time": "2020-10-16T08:27:54+00:00"
  1289. },
  1290. {
  1291. "name": "fruitcake/php-cors",
  1292. "version": "v1.2.0",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/fruitcake/php-cors.git",
  1296. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1301. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1302. "shasum": ""
  1303. },
  1304. "require": {
  1305. "php": "^7.4|^8.0",
  1306. "symfony/http-foundation": "^4.4|^5.4|^6"
  1307. },
  1308. "require-dev": {
  1309. "phpstan/phpstan": "^1.4",
  1310. "phpunit/phpunit": "^9",
  1311. "squizlabs/php_codesniffer": "^3.5"
  1312. },
  1313. "type": "library",
  1314. "extra": {
  1315. "branch-alias": {
  1316. "dev-main": "1.1-dev"
  1317. }
  1318. },
  1319. "autoload": {
  1320. "psr-4": {
  1321. "Fruitcake\\Cors\\": "src/"
  1322. }
  1323. },
  1324. "notification-url": "https://packagist.org/downloads/",
  1325. "license": [
  1326. "MIT"
  1327. ],
  1328. "authors": [
  1329. {
  1330. "name": "Fruitcake",
  1331. "homepage": "https://fruitcake.nl"
  1332. },
  1333. {
  1334. "name": "Barryvdh",
  1335. "email": "barryvdh@gmail.com"
  1336. }
  1337. ],
  1338. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1339. "homepage": "https://github.com/fruitcake/php-cors",
  1340. "keywords": [
  1341. "cors",
  1342. "laravel",
  1343. "symfony"
  1344. ],
  1345. "support": {
  1346. "issues": "https://github.com/fruitcake/php-cors/issues",
  1347. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1348. },
  1349. "funding": [
  1350. {
  1351. "url": "https://fruitcake.nl",
  1352. "type": "custom"
  1353. },
  1354. {
  1355. "url": "https://github.com/barryvdh",
  1356. "type": "github"
  1357. }
  1358. ],
  1359. "time": "2022-02-20T15:07:15+00:00"
  1360. },
  1361. {
  1362. "name": "graham-campbell/result-type",
  1363. "version": "v1.1.1",
  1364. "source": {
  1365. "type": "git",
  1366. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1367. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  1368. },
  1369. "dist": {
  1370. "type": "zip",
  1371. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1372. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1373. "shasum": ""
  1374. },
  1375. "require": {
  1376. "php": "^7.2.5 || ^8.0",
  1377. "phpoption/phpoption": "^1.9.1"
  1378. },
  1379. "require-dev": {
  1380. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1381. },
  1382. "type": "library",
  1383. "autoload": {
  1384. "psr-4": {
  1385. "GrahamCampbell\\ResultType\\": "src/"
  1386. }
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "MIT"
  1391. ],
  1392. "authors": [
  1393. {
  1394. "name": "Graham Campbell",
  1395. "email": "hello@gjcampbell.co.uk",
  1396. "homepage": "https://github.com/GrahamCampbell"
  1397. }
  1398. ],
  1399. "description": "An Implementation Of The Result Type",
  1400. "keywords": [
  1401. "Graham Campbell",
  1402. "GrahamCampbell",
  1403. "Result Type",
  1404. "Result-Type",
  1405. "result"
  1406. ],
  1407. "support": {
  1408. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1409. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  1410. },
  1411. "funding": [
  1412. {
  1413. "url": "https://github.com/GrahamCampbell",
  1414. "type": "github"
  1415. },
  1416. {
  1417. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1418. "type": "tidelift"
  1419. }
  1420. ],
  1421. "time": "2023-02-25T20:23:15+00:00"
  1422. },
  1423. {
  1424. "name": "guzzlehttp/guzzle",
  1425. "version": "7.5.1",
  1426. "source": {
  1427. "type": "git",
  1428. "url": "https://github.com/guzzle/guzzle.git",
  1429. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9"
  1430. },
  1431. "dist": {
  1432. "type": "zip",
  1433. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  1434. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  1435. "shasum": ""
  1436. },
  1437. "require": {
  1438. "ext-json": "*",
  1439. "guzzlehttp/promises": "^1.5",
  1440. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  1441. "php": "^7.2.5 || ^8.0",
  1442. "psr/http-client": "^1.0",
  1443. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1444. },
  1445. "provide": {
  1446. "psr/http-client-implementation": "1.0"
  1447. },
  1448. "require-dev": {
  1449. "bamarni/composer-bin-plugin": "^1.8.1",
  1450. "ext-curl": "*",
  1451. "php-http/client-integration-tests": "^3.0",
  1452. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1453. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1454. },
  1455. "suggest": {
  1456. "ext-curl": "Required for CURL handler support",
  1457. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1458. "psr/log": "Required for using the Log middleware"
  1459. },
  1460. "type": "library",
  1461. "extra": {
  1462. "bamarni-bin": {
  1463. "bin-links": true,
  1464. "forward-command": false
  1465. },
  1466. "branch-alias": {
  1467. "dev-master": "7.5-dev"
  1468. }
  1469. },
  1470. "autoload": {
  1471. "files": [
  1472. "src/functions_include.php"
  1473. ],
  1474. "psr-4": {
  1475. "GuzzleHttp\\": "src/"
  1476. }
  1477. },
  1478. "notification-url": "https://packagist.org/downloads/",
  1479. "license": [
  1480. "MIT"
  1481. ],
  1482. "authors": [
  1483. {
  1484. "name": "Graham Campbell",
  1485. "email": "hello@gjcampbell.co.uk",
  1486. "homepage": "https://github.com/GrahamCampbell"
  1487. },
  1488. {
  1489. "name": "Michael Dowling",
  1490. "email": "mtdowling@gmail.com",
  1491. "homepage": "https://github.com/mtdowling"
  1492. },
  1493. {
  1494. "name": "Jeremy Lindblom",
  1495. "email": "jeremeamia@gmail.com",
  1496. "homepage": "https://github.com/jeremeamia"
  1497. },
  1498. {
  1499. "name": "George Mponos",
  1500. "email": "gmponos@gmail.com",
  1501. "homepage": "https://github.com/gmponos"
  1502. },
  1503. {
  1504. "name": "Tobias Nyholm",
  1505. "email": "tobias.nyholm@gmail.com",
  1506. "homepage": "https://github.com/Nyholm"
  1507. },
  1508. {
  1509. "name": "Márk Sági-Kazár",
  1510. "email": "mark.sagikazar@gmail.com",
  1511. "homepage": "https://github.com/sagikazarmark"
  1512. },
  1513. {
  1514. "name": "Tobias Schultze",
  1515. "email": "webmaster@tubo-world.de",
  1516. "homepage": "https://github.com/Tobion"
  1517. }
  1518. ],
  1519. "description": "Guzzle is a PHP HTTP client library",
  1520. "keywords": [
  1521. "client",
  1522. "curl",
  1523. "framework",
  1524. "http",
  1525. "http client",
  1526. "psr-18",
  1527. "psr-7",
  1528. "rest",
  1529. "web service"
  1530. ],
  1531. "support": {
  1532. "issues": "https://github.com/guzzle/guzzle/issues",
  1533. "source": "https://github.com/guzzle/guzzle/tree/7.5.1"
  1534. },
  1535. "funding": [
  1536. {
  1537. "url": "https://github.com/GrahamCampbell",
  1538. "type": "github"
  1539. },
  1540. {
  1541. "url": "https://github.com/Nyholm",
  1542. "type": "github"
  1543. },
  1544. {
  1545. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1546. "type": "tidelift"
  1547. }
  1548. ],
  1549. "time": "2023-04-17T16:30:08+00:00"
  1550. },
  1551. {
  1552. "name": "guzzlehttp/promises",
  1553. "version": "1.5.2",
  1554. "source": {
  1555. "type": "git",
  1556. "url": "https://github.com/guzzle/promises.git",
  1557. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  1558. },
  1559. "dist": {
  1560. "type": "zip",
  1561. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  1562. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  1563. "shasum": ""
  1564. },
  1565. "require": {
  1566. "php": ">=5.5"
  1567. },
  1568. "require-dev": {
  1569. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1570. },
  1571. "type": "library",
  1572. "extra": {
  1573. "branch-alias": {
  1574. "dev-master": "1.5-dev"
  1575. }
  1576. },
  1577. "autoload": {
  1578. "files": [
  1579. "src/functions_include.php"
  1580. ],
  1581. "psr-4": {
  1582. "GuzzleHttp\\Promise\\": "src/"
  1583. }
  1584. },
  1585. "notification-url": "https://packagist.org/downloads/",
  1586. "license": [
  1587. "MIT"
  1588. ],
  1589. "authors": [
  1590. {
  1591. "name": "Graham Campbell",
  1592. "email": "hello@gjcampbell.co.uk",
  1593. "homepage": "https://github.com/GrahamCampbell"
  1594. },
  1595. {
  1596. "name": "Michael Dowling",
  1597. "email": "mtdowling@gmail.com",
  1598. "homepage": "https://github.com/mtdowling"
  1599. },
  1600. {
  1601. "name": "Tobias Nyholm",
  1602. "email": "tobias.nyholm@gmail.com",
  1603. "homepage": "https://github.com/Nyholm"
  1604. },
  1605. {
  1606. "name": "Tobias Schultze",
  1607. "email": "webmaster@tubo-world.de",
  1608. "homepage": "https://github.com/Tobion"
  1609. }
  1610. ],
  1611. "description": "Guzzle promises library",
  1612. "keywords": [
  1613. "promise"
  1614. ],
  1615. "support": {
  1616. "issues": "https://github.com/guzzle/promises/issues",
  1617. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1618. },
  1619. "funding": [
  1620. {
  1621. "url": "https://github.com/GrahamCampbell",
  1622. "type": "github"
  1623. },
  1624. {
  1625. "url": "https://github.com/Nyholm",
  1626. "type": "github"
  1627. },
  1628. {
  1629. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1630. "type": "tidelift"
  1631. }
  1632. ],
  1633. "time": "2022-08-28T14:55:35+00:00"
  1634. },
  1635. {
  1636. "name": "guzzlehttp/psr7",
  1637. "version": "2.5.0",
  1638. "source": {
  1639. "type": "git",
  1640. "url": "https://github.com/guzzle/psr7.git",
  1641. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  1642. },
  1643. "dist": {
  1644. "type": "zip",
  1645. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  1646. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  1647. "shasum": ""
  1648. },
  1649. "require": {
  1650. "php": "^7.2.5 || ^8.0",
  1651. "psr/http-factory": "^1.0",
  1652. "psr/http-message": "^1.1 || ^2.0",
  1653. "ralouphie/getallheaders": "^3.0"
  1654. },
  1655. "provide": {
  1656. "psr/http-factory-implementation": "1.0",
  1657. "psr/http-message-implementation": "1.0"
  1658. },
  1659. "require-dev": {
  1660. "bamarni/composer-bin-plugin": "^1.8.1",
  1661. "http-interop/http-factory-tests": "^0.9",
  1662. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1663. },
  1664. "suggest": {
  1665. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1666. },
  1667. "type": "library",
  1668. "extra": {
  1669. "bamarni-bin": {
  1670. "bin-links": true,
  1671. "forward-command": false
  1672. }
  1673. },
  1674. "autoload": {
  1675. "psr-4": {
  1676. "GuzzleHttp\\Psr7\\": "src/"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Graham Campbell",
  1686. "email": "hello@gjcampbell.co.uk",
  1687. "homepage": "https://github.com/GrahamCampbell"
  1688. },
  1689. {
  1690. "name": "Michael Dowling",
  1691. "email": "mtdowling@gmail.com",
  1692. "homepage": "https://github.com/mtdowling"
  1693. },
  1694. {
  1695. "name": "George Mponos",
  1696. "email": "gmponos@gmail.com",
  1697. "homepage": "https://github.com/gmponos"
  1698. },
  1699. {
  1700. "name": "Tobias Nyholm",
  1701. "email": "tobias.nyholm@gmail.com",
  1702. "homepage": "https://github.com/Nyholm"
  1703. },
  1704. {
  1705. "name": "Márk Sági-Kazár",
  1706. "email": "mark.sagikazar@gmail.com",
  1707. "homepage": "https://github.com/sagikazarmark"
  1708. },
  1709. {
  1710. "name": "Tobias Schultze",
  1711. "email": "webmaster@tubo-world.de",
  1712. "homepage": "https://github.com/Tobion"
  1713. },
  1714. {
  1715. "name": "Márk Sági-Kazár",
  1716. "email": "mark.sagikazar@gmail.com",
  1717. "homepage": "https://sagikazarmark.hu"
  1718. }
  1719. ],
  1720. "description": "PSR-7 message implementation that also provides common utility methods",
  1721. "keywords": [
  1722. "http",
  1723. "message",
  1724. "psr-7",
  1725. "request",
  1726. "response",
  1727. "stream",
  1728. "uri",
  1729. "url"
  1730. ],
  1731. "support": {
  1732. "issues": "https://github.com/guzzle/psr7/issues",
  1733. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  1734. },
  1735. "funding": [
  1736. {
  1737. "url": "https://github.com/GrahamCampbell",
  1738. "type": "github"
  1739. },
  1740. {
  1741. "url": "https://github.com/Nyholm",
  1742. "type": "github"
  1743. },
  1744. {
  1745. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1746. "type": "tidelift"
  1747. }
  1748. ],
  1749. "time": "2023-04-17T16:11:26+00:00"
  1750. },
  1751. {
  1752. "name": "guzzlehttp/uri-template",
  1753. "version": "v1.0.1",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/guzzle/uri-template.git",
  1757. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1762. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "php": "^7.2.5 || ^8.0",
  1767. "symfony/polyfill-php80": "^1.17"
  1768. },
  1769. "require-dev": {
  1770. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1771. "uri-template/tests": "1.0.0"
  1772. },
  1773. "type": "library",
  1774. "extra": {
  1775. "branch-alias": {
  1776. "dev-master": "1.0-dev"
  1777. }
  1778. },
  1779. "autoload": {
  1780. "psr-4": {
  1781. "GuzzleHttp\\UriTemplate\\": "src"
  1782. }
  1783. },
  1784. "notification-url": "https://packagist.org/downloads/",
  1785. "license": [
  1786. "MIT"
  1787. ],
  1788. "authors": [
  1789. {
  1790. "name": "Graham Campbell",
  1791. "email": "hello@gjcampbell.co.uk",
  1792. "homepage": "https://github.com/GrahamCampbell"
  1793. },
  1794. {
  1795. "name": "Michael Dowling",
  1796. "email": "mtdowling@gmail.com",
  1797. "homepage": "https://github.com/mtdowling"
  1798. },
  1799. {
  1800. "name": "George Mponos",
  1801. "email": "gmponos@gmail.com",
  1802. "homepage": "https://github.com/gmponos"
  1803. },
  1804. {
  1805. "name": "Tobias Nyholm",
  1806. "email": "tobias.nyholm@gmail.com",
  1807. "homepage": "https://github.com/Nyholm"
  1808. }
  1809. ],
  1810. "description": "A polyfill class for uri_template of PHP",
  1811. "keywords": [
  1812. "guzzlehttp",
  1813. "uri-template"
  1814. ],
  1815. "support": {
  1816. "issues": "https://github.com/guzzle/uri-template/issues",
  1817. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1818. },
  1819. "funding": [
  1820. {
  1821. "url": "https://github.com/GrahamCampbell",
  1822. "type": "github"
  1823. },
  1824. {
  1825. "url": "https://github.com/Nyholm",
  1826. "type": "github"
  1827. },
  1828. {
  1829. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1830. "type": "tidelift"
  1831. }
  1832. ],
  1833. "time": "2021-10-07T12:57:01+00:00"
  1834. },
  1835. {
  1836. "name": "hidehalo/nanoid-php",
  1837. "version": "1.1.13",
  1838. "source": {
  1839. "type": "git",
  1840. "url": "https://github.com/hidehalo/nanoid-php.git",
  1841. "reference": "3fc7c949f4e655939cc30e7110d658af3dbb0e30"
  1842. },
  1843. "dist": {
  1844. "type": "zip",
  1845. "url": "https://api.github.com/repos/hidehalo/nanoid-php/zipball/3fc7c949f4e655939cc30e7110d658af3dbb0e30",
  1846. "reference": "3fc7c949f4e655939cc30e7110d658af3dbb0e30",
  1847. "shasum": ""
  1848. },
  1849. "require": {
  1850. "paragonie/random_compat": ">=2.0",
  1851. "php": "~5.6|~7.0|~8.0"
  1852. },
  1853. "require-dev": {
  1854. "phpunit/phpunit": ">=5.6",
  1855. "squizlabs/php_codesniffer": "^2.3"
  1856. },
  1857. "type": "library",
  1858. "extra": {
  1859. "branch-alias": {
  1860. "dev-master": "1.0-dev"
  1861. }
  1862. },
  1863. "autoload": {
  1864. "psr-4": {
  1865. "Hidehalo\\Nanoid\\": "src"
  1866. }
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "MIT"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "hidehalo",
  1875. "email": "tianchen_cc@yeah.net",
  1876. "homepage": "https://github.com/hidehalo",
  1877. "role": "Owner"
  1878. }
  1879. ],
  1880. "description": "A copy of nanoid in PHP",
  1881. "homepage": "https://github.com/hidehalo/nanoid-php",
  1882. "keywords": [
  1883. "hidehalo",
  1884. "nanoid-php"
  1885. ],
  1886. "support": {
  1887. "issues": "https://github.com/hidehalo/nanoid-php/issues",
  1888. "source": "https://github.com/hidehalo/nanoid-php/tree/1.1.13"
  1889. },
  1890. "time": "2022-08-04T12:07:12+00:00"
  1891. },
  1892. {
  1893. "name": "kkomelin/laravel-translatable-string-exporter",
  1894. "version": "1.21.0",
  1895. "source": {
  1896. "type": "git",
  1897. "url": "https://github.com/kkomelin/laravel-translatable-string-exporter.git",
  1898. "reference": "51e6575223c345be359f5387ecaaf6bb7fc1de3d"
  1899. },
  1900. "dist": {
  1901. "type": "zip",
  1902. "url": "https://api.github.com/repos/kkomelin/laravel-translatable-string-exporter/zipball/51e6575223c345be359f5387ecaaf6bb7fc1de3d",
  1903. "reference": "51e6575223c345be359f5387ecaaf6bb7fc1de3d",
  1904. "shasum": ""
  1905. },
  1906. "require": {
  1907. "ext-json": "*",
  1908. "illuminate/support": "^8|^9|^10.0",
  1909. "illuminate/translation": "^8|^9|^10.0",
  1910. "php": "^8.0",
  1911. "symfony/finder": "^5|^6"
  1912. },
  1913. "require-dev": {
  1914. "nunomaduro/larastan": "^1.0|^2.0",
  1915. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1916. "phpunit/phpunit": "^9.0"
  1917. },
  1918. "type": "library",
  1919. "extra": {
  1920. "laravel": {
  1921. "providers": [
  1922. "KKomelin\\TranslatableStringExporter\\Providers\\ExporterServiceProvider"
  1923. ]
  1924. }
  1925. },
  1926. "autoload": {
  1927. "psr-4": {
  1928. "KKomelin\\TranslatableStringExporter\\": "src/"
  1929. }
  1930. },
  1931. "notification-url": "https://packagist.org/downloads/",
  1932. "license": [
  1933. "MIT"
  1934. ],
  1935. "authors": [
  1936. {
  1937. "name": "Konstantin Komelin",
  1938. "email": "konstantin.komelin@gmail.com"
  1939. }
  1940. ],
  1941. "description": "Translatable String Exporter for Laravel",
  1942. "keywords": [
  1943. "export",
  1944. "exporter",
  1945. "json",
  1946. "laravel",
  1947. "localization",
  1948. "translation",
  1949. "translations"
  1950. ],
  1951. "support": {
  1952. "issues": "https://github.com/kkomelin/laravel-translatable-string-exporter/issues",
  1953. "source": "https://github.com/kkomelin/laravel-translatable-string-exporter/tree/1.21.0"
  1954. },
  1955. "time": "2023-03-14T04:18:49+00:00"
  1956. },
  1957. {
  1958. "name": "laravel/framework",
  1959. "version": "v9.52.7",
  1960. "source": {
  1961. "type": "git",
  1962. "url": "https://github.com/laravel/framework.git",
  1963. "reference": "675ea868fe36b18c8303e954aac540e6b1caa677"
  1964. },
  1965. "dist": {
  1966. "type": "zip",
  1967. "url": "https://api.github.com/repos/laravel/framework/zipball/675ea868fe36b18c8303e954aac540e6b1caa677",
  1968. "reference": "675ea868fe36b18c8303e954aac540e6b1caa677",
  1969. "shasum": ""
  1970. },
  1971. "require": {
  1972. "brick/math": "^0.9.3|^0.10.2|^0.11",
  1973. "doctrine/inflector": "^2.0.5",
  1974. "dragonmantank/cron-expression": "^3.3.2",
  1975. "egulias/email-validator": "^3.2.1|^4.0",
  1976. "ext-ctype": "*",
  1977. "ext-filter": "*",
  1978. "ext-hash": "*",
  1979. "ext-mbstring": "*",
  1980. "ext-openssl": "*",
  1981. "ext-session": "*",
  1982. "ext-tokenizer": "*",
  1983. "fruitcake/php-cors": "^1.2",
  1984. "guzzlehttp/uri-template": "^1.0",
  1985. "laravel/serializable-closure": "^1.2.2",
  1986. "league/commonmark": "^2.2.1",
  1987. "league/flysystem": "^3.8.0",
  1988. "monolog/monolog": "^2.0",
  1989. "nesbot/carbon": "^2.62.1",
  1990. "nunomaduro/termwind": "^1.13",
  1991. "php": "^8.0.2",
  1992. "psr/container": "^1.1.1|^2.0.1",
  1993. "psr/log": "^1.0|^2.0|^3.0",
  1994. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1995. "ramsey/uuid": "^4.7",
  1996. "symfony/console": "^6.0.9",
  1997. "symfony/error-handler": "^6.0",
  1998. "symfony/finder": "^6.0",
  1999. "symfony/http-foundation": "^6.0",
  2000. "symfony/http-kernel": "^6.0",
  2001. "symfony/mailer": "^6.0",
  2002. "symfony/mime": "^6.0",
  2003. "symfony/process": "^6.0",
  2004. "symfony/routing": "^6.0",
  2005. "symfony/uid": "^6.0",
  2006. "symfony/var-dumper": "^6.0",
  2007. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2008. "vlucas/phpdotenv": "^5.4.1",
  2009. "voku/portable-ascii": "^2.0"
  2010. },
  2011. "conflict": {
  2012. "tightenco/collect": "<5.5.33"
  2013. },
  2014. "provide": {
  2015. "psr/container-implementation": "1.1|2.0",
  2016. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2017. },
  2018. "replace": {
  2019. "illuminate/auth": "self.version",
  2020. "illuminate/broadcasting": "self.version",
  2021. "illuminate/bus": "self.version",
  2022. "illuminate/cache": "self.version",
  2023. "illuminate/collections": "self.version",
  2024. "illuminate/conditionable": "self.version",
  2025. "illuminate/config": "self.version",
  2026. "illuminate/console": "self.version",
  2027. "illuminate/container": "self.version",
  2028. "illuminate/contracts": "self.version",
  2029. "illuminate/cookie": "self.version",
  2030. "illuminate/database": "self.version",
  2031. "illuminate/encryption": "self.version",
  2032. "illuminate/events": "self.version",
  2033. "illuminate/filesystem": "self.version",
  2034. "illuminate/hashing": "self.version",
  2035. "illuminate/http": "self.version",
  2036. "illuminate/log": "self.version",
  2037. "illuminate/macroable": "self.version",
  2038. "illuminate/mail": "self.version",
  2039. "illuminate/notifications": "self.version",
  2040. "illuminate/pagination": "self.version",
  2041. "illuminate/pipeline": "self.version",
  2042. "illuminate/queue": "self.version",
  2043. "illuminate/redis": "self.version",
  2044. "illuminate/routing": "self.version",
  2045. "illuminate/session": "self.version",
  2046. "illuminate/support": "self.version",
  2047. "illuminate/testing": "self.version",
  2048. "illuminate/translation": "self.version",
  2049. "illuminate/validation": "self.version",
  2050. "illuminate/view": "self.version"
  2051. },
  2052. "require-dev": {
  2053. "ably/ably-php": "^1.0",
  2054. "aws/aws-sdk-php": "^3.235.5",
  2055. "doctrine/dbal": "^2.13.3|^3.1.4",
  2056. "ext-gmp": "*",
  2057. "fakerphp/faker": "^1.21",
  2058. "guzzlehttp/guzzle": "^7.5",
  2059. "league/flysystem-aws-s3-v3": "^3.0",
  2060. "league/flysystem-ftp": "^3.0",
  2061. "league/flysystem-path-prefixing": "^3.3",
  2062. "league/flysystem-read-only": "^3.3",
  2063. "league/flysystem-sftp-v3": "^3.0",
  2064. "mockery/mockery": "^1.5.1",
  2065. "orchestra/testbench-core": "^7.24",
  2066. "pda/pheanstalk": "^4.0",
  2067. "phpstan/phpdoc-parser": "^1.15",
  2068. "phpstan/phpstan": "^1.4.7",
  2069. "phpunit/phpunit": "^9.5.8",
  2070. "predis/predis": "^1.1.9|^2.0.2",
  2071. "symfony/cache": "^6.0",
  2072. "symfony/http-client": "^6.0"
  2073. },
  2074. "suggest": {
  2075. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2076. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2077. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2078. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2079. "ext-apcu": "Required to use the APC cache driver.",
  2080. "ext-fileinfo": "Required to use the Filesystem class.",
  2081. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2082. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2083. "ext-memcached": "Required to use the memcache cache driver.",
  2084. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2085. "ext-pdo": "Required to use all database features.",
  2086. "ext-posix": "Required to use all features of the queue worker.",
  2087. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2088. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2089. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2090. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2091. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2092. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2093. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2094. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2095. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2096. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2097. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2098. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2099. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2100. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  2101. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
  2102. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2103. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2104. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  2105. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  2106. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  2107. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  2108. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  2109. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2110. },
  2111. "type": "library",
  2112. "extra": {
  2113. "branch-alias": {
  2114. "dev-master": "9.x-dev"
  2115. }
  2116. },
  2117. "autoload": {
  2118. "files": [
  2119. "src/Illuminate/Collections/helpers.php",
  2120. "src/Illuminate/Events/functions.php",
  2121. "src/Illuminate/Foundation/helpers.php",
  2122. "src/Illuminate/Support/helpers.php"
  2123. ],
  2124. "psr-4": {
  2125. "Illuminate\\": "src/Illuminate/",
  2126. "Illuminate\\Support\\": [
  2127. "src/Illuminate/Macroable/",
  2128. "src/Illuminate/Collections/",
  2129. "src/Illuminate/Conditionable/"
  2130. ]
  2131. }
  2132. },
  2133. "notification-url": "https://packagist.org/downloads/",
  2134. "license": [
  2135. "MIT"
  2136. ],
  2137. "authors": [
  2138. {
  2139. "name": "Taylor Otwell",
  2140. "email": "taylor@laravel.com"
  2141. }
  2142. ],
  2143. "description": "The Laravel Framework.",
  2144. "homepage": "https://laravel.com",
  2145. "keywords": [
  2146. "framework",
  2147. "laravel"
  2148. ],
  2149. "support": {
  2150. "issues": "https://github.com/laravel/framework/issues",
  2151. "source": "https://github.com/laravel/framework"
  2152. },
  2153. "time": "2023-04-25T13:44:05+00:00"
  2154. },
  2155. {
  2156. "name": "laravel/serializable-closure",
  2157. "version": "v1.3.0",
  2158. "source": {
  2159. "type": "git",
  2160. "url": "https://github.com/laravel/serializable-closure.git",
  2161. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
  2162. },
  2163. "dist": {
  2164. "type": "zip",
  2165. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2166. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2167. "shasum": ""
  2168. },
  2169. "require": {
  2170. "php": "^7.3|^8.0"
  2171. },
  2172. "require-dev": {
  2173. "nesbot/carbon": "^2.61",
  2174. "pestphp/pest": "^1.21.3",
  2175. "phpstan/phpstan": "^1.8.2",
  2176. "symfony/var-dumper": "^5.4.11"
  2177. },
  2178. "type": "library",
  2179. "extra": {
  2180. "branch-alias": {
  2181. "dev-master": "1.x-dev"
  2182. }
  2183. },
  2184. "autoload": {
  2185. "psr-4": {
  2186. "Laravel\\SerializableClosure\\": "src/"
  2187. }
  2188. },
  2189. "notification-url": "https://packagist.org/downloads/",
  2190. "license": [
  2191. "MIT"
  2192. ],
  2193. "authors": [
  2194. {
  2195. "name": "Taylor Otwell",
  2196. "email": "taylor@laravel.com"
  2197. },
  2198. {
  2199. "name": "Nuno Maduro",
  2200. "email": "nuno@laravel.com"
  2201. }
  2202. ],
  2203. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2204. "keywords": [
  2205. "closure",
  2206. "laravel",
  2207. "serializable"
  2208. ],
  2209. "support": {
  2210. "issues": "https://github.com/laravel/serializable-closure/issues",
  2211. "source": "https://github.com/laravel/serializable-closure"
  2212. },
  2213. "time": "2023-01-30T18:31:20+00:00"
  2214. },
  2215. {
  2216. "name": "laravel/socialite",
  2217. "version": "v5.6.1",
  2218. "source": {
  2219. "type": "git",
  2220. "url": "https://github.com/laravel/socialite.git",
  2221. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09"
  2222. },
  2223. "dist": {
  2224. "type": "zip",
  2225. "url": "https://api.github.com/repos/laravel/socialite/zipball/a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2226. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2227. "shasum": ""
  2228. },
  2229. "require": {
  2230. "ext-json": "*",
  2231. "guzzlehttp/guzzle": "^6.0|^7.0",
  2232. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2233. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2234. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2235. "league/oauth1-client": "^1.10.1",
  2236. "php": "^7.2|^8.0"
  2237. },
  2238. "require-dev": {
  2239. "mockery/mockery": "^1.0",
  2240. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2241. "phpunit/phpunit": "^8.0|^9.3"
  2242. },
  2243. "type": "library",
  2244. "extra": {
  2245. "branch-alias": {
  2246. "dev-master": "5.x-dev"
  2247. },
  2248. "laravel": {
  2249. "providers": [
  2250. "Laravel\\Socialite\\SocialiteServiceProvider"
  2251. ],
  2252. "aliases": {
  2253. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2254. }
  2255. }
  2256. },
  2257. "autoload": {
  2258. "psr-4": {
  2259. "Laravel\\Socialite\\": "src/"
  2260. }
  2261. },
  2262. "notification-url": "https://packagist.org/downloads/",
  2263. "license": [
  2264. "MIT"
  2265. ],
  2266. "authors": [
  2267. {
  2268. "name": "Taylor Otwell",
  2269. "email": "taylor@laravel.com"
  2270. }
  2271. ],
  2272. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2273. "homepage": "https://laravel.com",
  2274. "keywords": [
  2275. "laravel",
  2276. "oauth"
  2277. ],
  2278. "support": {
  2279. "issues": "https://github.com/laravel/socialite/issues",
  2280. "source": "https://github.com/laravel/socialite"
  2281. },
  2282. "time": "2023-01-20T15:42:35+00:00"
  2283. },
  2284. {
  2285. "name": "laravel/tinker",
  2286. "version": "v2.8.1",
  2287. "source": {
  2288. "type": "git",
  2289. "url": "https://github.com/laravel/tinker.git",
  2290. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  2291. },
  2292. "dist": {
  2293. "type": "zip",
  2294. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2295. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2296. "shasum": ""
  2297. },
  2298. "require": {
  2299. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2300. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2301. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2302. "php": "^7.2.5|^8.0",
  2303. "psy/psysh": "^0.10.4|^0.11.1",
  2304. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2305. },
  2306. "require-dev": {
  2307. "mockery/mockery": "~1.3.3|^1.4.2",
  2308. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2309. },
  2310. "suggest": {
  2311. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2312. },
  2313. "type": "library",
  2314. "extra": {
  2315. "branch-alias": {
  2316. "dev-master": "2.x-dev"
  2317. },
  2318. "laravel": {
  2319. "providers": [
  2320. "Laravel\\Tinker\\TinkerServiceProvider"
  2321. ]
  2322. }
  2323. },
  2324. "autoload": {
  2325. "psr-4": {
  2326. "Laravel\\Tinker\\": "src/"
  2327. }
  2328. },
  2329. "notification-url": "https://packagist.org/downloads/",
  2330. "license": [
  2331. "MIT"
  2332. ],
  2333. "authors": [
  2334. {
  2335. "name": "Taylor Otwell",
  2336. "email": "taylor@laravel.com"
  2337. }
  2338. ],
  2339. "description": "Powerful REPL for the Laravel framework.",
  2340. "keywords": [
  2341. "REPL",
  2342. "Tinker",
  2343. "laravel",
  2344. "psysh"
  2345. ],
  2346. "support": {
  2347. "issues": "https://github.com/laravel/tinker/issues",
  2348. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  2349. },
  2350. "time": "2023-02-15T16:40:09+00:00"
  2351. },
  2352. {
  2353. "name": "laravel/ui",
  2354. "version": "v3.4.6",
  2355. "source": {
  2356. "type": "git",
  2357. "url": "https://github.com/laravel/ui.git",
  2358. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c"
  2359. },
  2360. "dist": {
  2361. "type": "zip",
  2362. "url": "https://api.github.com/repos/laravel/ui/zipball/65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2363. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2364. "shasum": ""
  2365. },
  2366. "require": {
  2367. "illuminate/console": "^8.42|^9.0",
  2368. "illuminate/filesystem": "^8.42|^9.0",
  2369. "illuminate/support": "^8.82|^9.0",
  2370. "illuminate/validation": "^8.42|^9.0",
  2371. "php": "^7.3|^8.0"
  2372. },
  2373. "require-dev": {
  2374. "orchestra/testbench": "^6.23|^7.0"
  2375. },
  2376. "type": "library",
  2377. "extra": {
  2378. "branch-alias": {
  2379. "dev-master": "3.x-dev"
  2380. },
  2381. "laravel": {
  2382. "providers": [
  2383. "Laravel\\Ui\\UiServiceProvider"
  2384. ]
  2385. }
  2386. },
  2387. "autoload": {
  2388. "psr-4": {
  2389. "Laravel\\Ui\\": "src/",
  2390. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Taylor Otwell",
  2400. "email": "taylor@laravel.com"
  2401. }
  2402. ],
  2403. "description": "Laravel UI utilities and presets.",
  2404. "keywords": [
  2405. "laravel",
  2406. "ui"
  2407. ],
  2408. "support": {
  2409. "source": "https://github.com/laravel/ui/tree/v3.4.6"
  2410. },
  2411. "time": "2022-05-20T13:38:08+00:00"
  2412. },
  2413. {
  2414. "name": "laraveldaily/laravel-invoices",
  2415. "version": "3.1.0",
  2416. "source": {
  2417. "type": "git",
  2418. "url": "https://github.com/LaravelDaily/laravel-invoices.git",
  2419. "reference": "7f3f2fd2042ad7ca228b506059a1e8535de46e05"
  2420. },
  2421. "dist": {
  2422. "type": "zip",
  2423. "url": "https://api.github.com/repos/LaravelDaily/laravel-invoices/zipball/7f3f2fd2042ad7ca228b506059a1e8535de46e05",
  2424. "reference": "7f3f2fd2042ad7ca228b506059a1e8535de46e05",
  2425. "shasum": ""
  2426. },
  2427. "require": {
  2428. "barryvdh/laravel-dompdf": "^v2.0",
  2429. "illuminate/http": "^5.5|^6|^7|^8|^9|^10",
  2430. "illuminate/support": "^5.5|^6|^7|^8|^9|^10",
  2431. "php": "^7.3|^8.0",
  2432. "symfony/http-foundation": "^4.0|^5.0|^6.0"
  2433. },
  2434. "require-dev": {
  2435. "phpunit/phpunit": "^9.3",
  2436. "symfony/var-dumper": "^5.0"
  2437. },
  2438. "type": "library",
  2439. "extra": {
  2440. "laravel": {
  2441. "providers": [
  2442. "LaravelDaily\\Invoices\\InvoiceServiceProvider"
  2443. ],
  2444. "aliases": {
  2445. "Invoice": "LaravelDaily\\Invoices\\Facades\\Invoice"
  2446. }
  2447. }
  2448. },
  2449. "autoload": {
  2450. "psr-4": {
  2451. "LaravelDaily\\Invoices\\": "src"
  2452. }
  2453. },
  2454. "notification-url": "https://packagist.org/downloads/",
  2455. "license": [
  2456. "GPL-3.0-only"
  2457. ],
  2458. "authors": [
  2459. {
  2460. "name": "David Lun",
  2461. "email": "mysticcode@gmail.com",
  2462. "homepage": "https://davidlun.com",
  2463. "role": "Developer"
  2464. }
  2465. ],
  2466. "description": "Missing invoices for Laravel",
  2467. "homepage": "https://github.com/LaravelDaily/laravel-invoices",
  2468. "keywords": [
  2469. "invoice",
  2470. "invoices",
  2471. "laravel",
  2472. "pdf"
  2473. ],
  2474. "support": {
  2475. "issues": "https://github.com/LaravelDaily/laravel-invoices/issues",
  2476. "source": "https://github.com/LaravelDaily/laravel-invoices/tree/3.1.0"
  2477. },
  2478. "time": "2023-02-15T12:35:38+00:00"
  2479. },
  2480. {
  2481. "name": "league/commonmark",
  2482. "version": "2.4.0",
  2483. "source": {
  2484. "type": "git",
  2485. "url": "https://github.com/thephpleague/commonmark.git",
  2486. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  2487. },
  2488. "dist": {
  2489. "type": "zip",
  2490. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2491. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2492. "shasum": ""
  2493. },
  2494. "require": {
  2495. "ext-mbstring": "*",
  2496. "league/config": "^1.1.1",
  2497. "php": "^7.4 || ^8.0",
  2498. "psr/event-dispatcher": "^1.0",
  2499. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2500. "symfony/polyfill-php80": "^1.16"
  2501. },
  2502. "require-dev": {
  2503. "cebe/markdown": "^1.0",
  2504. "commonmark/cmark": "0.30.0",
  2505. "commonmark/commonmark.js": "0.30.0",
  2506. "composer/package-versions-deprecated": "^1.8",
  2507. "embed/embed": "^4.4",
  2508. "erusev/parsedown": "^1.0",
  2509. "ext-json": "*",
  2510. "github/gfm": "0.29.0",
  2511. "michelf/php-markdown": "^1.4 || ^2.0",
  2512. "nyholm/psr7": "^1.5",
  2513. "phpstan/phpstan": "^1.8.2",
  2514. "phpunit/phpunit": "^9.5.21",
  2515. "scrutinizer/ocular": "^1.8.1",
  2516. "symfony/finder": "^5.3 | ^6.0",
  2517. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2518. "unleashedtech/php-coding-standard": "^3.1.1",
  2519. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2520. },
  2521. "suggest": {
  2522. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2523. },
  2524. "type": "library",
  2525. "extra": {
  2526. "branch-alias": {
  2527. "dev-main": "2.5-dev"
  2528. }
  2529. },
  2530. "autoload": {
  2531. "psr-4": {
  2532. "League\\CommonMark\\": "src"
  2533. }
  2534. },
  2535. "notification-url": "https://packagist.org/downloads/",
  2536. "license": [
  2537. "BSD-3-Clause"
  2538. ],
  2539. "authors": [
  2540. {
  2541. "name": "Colin O'Dell",
  2542. "email": "colinodell@gmail.com",
  2543. "homepage": "https://www.colinodell.com",
  2544. "role": "Lead Developer"
  2545. }
  2546. ],
  2547. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2548. "homepage": "https://commonmark.thephpleague.com",
  2549. "keywords": [
  2550. "commonmark",
  2551. "flavored",
  2552. "gfm",
  2553. "github",
  2554. "github-flavored",
  2555. "markdown",
  2556. "md",
  2557. "parser"
  2558. ],
  2559. "support": {
  2560. "docs": "https://commonmark.thephpleague.com/",
  2561. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2562. "issues": "https://github.com/thephpleague/commonmark/issues",
  2563. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2564. "source": "https://github.com/thephpleague/commonmark"
  2565. },
  2566. "funding": [
  2567. {
  2568. "url": "https://www.colinodell.com/sponsor",
  2569. "type": "custom"
  2570. },
  2571. {
  2572. "url": "https://www.paypal.me/colinpodell/10.00",
  2573. "type": "custom"
  2574. },
  2575. {
  2576. "url": "https://github.com/colinodell",
  2577. "type": "github"
  2578. },
  2579. {
  2580. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2581. "type": "tidelift"
  2582. }
  2583. ],
  2584. "time": "2023-03-24T15:16:10+00:00"
  2585. },
  2586. {
  2587. "name": "league/config",
  2588. "version": "v1.2.0",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/thephpleague/config.git",
  2592. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2597. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2598. "shasum": ""
  2599. },
  2600. "require": {
  2601. "dflydev/dot-access-data": "^3.0.1",
  2602. "nette/schema": "^1.2",
  2603. "php": "^7.4 || ^8.0"
  2604. },
  2605. "require-dev": {
  2606. "phpstan/phpstan": "^1.8.2",
  2607. "phpunit/phpunit": "^9.5.5",
  2608. "scrutinizer/ocular": "^1.8.1",
  2609. "unleashedtech/php-coding-standard": "^3.1",
  2610. "vimeo/psalm": "^4.7.3"
  2611. },
  2612. "type": "library",
  2613. "extra": {
  2614. "branch-alias": {
  2615. "dev-main": "1.2-dev"
  2616. }
  2617. },
  2618. "autoload": {
  2619. "psr-4": {
  2620. "League\\Config\\": "src"
  2621. }
  2622. },
  2623. "notification-url": "https://packagist.org/downloads/",
  2624. "license": [
  2625. "BSD-3-Clause"
  2626. ],
  2627. "authors": [
  2628. {
  2629. "name": "Colin O'Dell",
  2630. "email": "colinodell@gmail.com",
  2631. "homepage": "https://www.colinodell.com",
  2632. "role": "Lead Developer"
  2633. }
  2634. ],
  2635. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2636. "homepage": "https://config.thephpleague.com",
  2637. "keywords": [
  2638. "array",
  2639. "config",
  2640. "configuration",
  2641. "dot",
  2642. "dot-access",
  2643. "nested",
  2644. "schema"
  2645. ],
  2646. "support": {
  2647. "docs": "https://config.thephpleague.com/",
  2648. "issues": "https://github.com/thephpleague/config/issues",
  2649. "rss": "https://github.com/thephpleague/config/releases.atom",
  2650. "source": "https://github.com/thephpleague/config"
  2651. },
  2652. "funding": [
  2653. {
  2654. "url": "https://www.colinodell.com/sponsor",
  2655. "type": "custom"
  2656. },
  2657. {
  2658. "url": "https://www.paypal.me/colinpodell/10.00",
  2659. "type": "custom"
  2660. },
  2661. {
  2662. "url": "https://github.com/colinodell",
  2663. "type": "github"
  2664. }
  2665. ],
  2666. "time": "2022-12-11T20:36:23+00:00"
  2667. },
  2668. {
  2669. "name": "league/flysystem",
  2670. "version": "3.14.0",
  2671. "source": {
  2672. "type": "git",
  2673. "url": "https://github.com/thephpleague/flysystem.git",
  2674. "reference": "e2a279d7f47d9098e479e8b21f7fb8b8de230158"
  2675. },
  2676. "dist": {
  2677. "type": "zip",
  2678. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e2a279d7f47d9098e479e8b21f7fb8b8de230158",
  2679. "reference": "e2a279d7f47d9098e479e8b21f7fb8b8de230158",
  2680. "shasum": ""
  2681. },
  2682. "require": {
  2683. "league/mime-type-detection": "^1.0.0",
  2684. "php": "^8.0.2"
  2685. },
  2686. "conflict": {
  2687. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2688. "guzzlehttp/guzzle": "<7.0",
  2689. "guzzlehttp/ringphp": "<1.1.1",
  2690. "phpseclib/phpseclib": "3.0.15",
  2691. "symfony/http-client": "<5.2"
  2692. },
  2693. "require-dev": {
  2694. "async-aws/s3": "^1.5",
  2695. "async-aws/simple-s3": "^1.1",
  2696. "aws/aws-sdk-php": "^3.220.0",
  2697. "composer/semver": "^3.0",
  2698. "ext-fileinfo": "*",
  2699. "ext-ftp": "*",
  2700. "ext-zip": "*",
  2701. "friendsofphp/php-cs-fixer": "^3.5",
  2702. "google/cloud-storage": "^1.23",
  2703. "microsoft/azure-storage-blob": "^1.1",
  2704. "phpseclib/phpseclib": "^3.0.14",
  2705. "phpstan/phpstan": "^0.12.26",
  2706. "phpunit/phpunit": "^9.5.11",
  2707. "sabre/dav": "^4.3.1"
  2708. },
  2709. "type": "library",
  2710. "autoload": {
  2711. "psr-4": {
  2712. "League\\Flysystem\\": "src"
  2713. }
  2714. },
  2715. "notification-url": "https://packagist.org/downloads/",
  2716. "license": [
  2717. "MIT"
  2718. ],
  2719. "authors": [
  2720. {
  2721. "name": "Frank de Jonge",
  2722. "email": "info@frankdejonge.nl"
  2723. }
  2724. ],
  2725. "description": "File storage abstraction for PHP",
  2726. "keywords": [
  2727. "WebDAV",
  2728. "aws",
  2729. "cloud",
  2730. "file",
  2731. "files",
  2732. "filesystem",
  2733. "filesystems",
  2734. "ftp",
  2735. "s3",
  2736. "sftp",
  2737. "storage"
  2738. ],
  2739. "support": {
  2740. "issues": "https://github.com/thephpleague/flysystem/issues",
  2741. "source": "https://github.com/thephpleague/flysystem/tree/3.14.0"
  2742. },
  2743. "funding": [
  2744. {
  2745. "url": "https://ecologi.com/frankdejonge",
  2746. "type": "custom"
  2747. },
  2748. {
  2749. "url": "https://github.com/frankdejonge",
  2750. "type": "github"
  2751. }
  2752. ],
  2753. "time": "2023-04-11T18:11:47+00:00"
  2754. },
  2755. {
  2756. "name": "league/flysystem-aws-s3-v3",
  2757. "version": "3.13.0",
  2758. "source": {
  2759. "type": "git",
  2760. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2761. "reference": "8e04cbb403d4dfd5b73a2f8685f1df395bd177eb"
  2762. },
  2763. "dist": {
  2764. "type": "zip",
  2765. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/8e04cbb403d4dfd5b73a2f8685f1df395bd177eb",
  2766. "reference": "8e04cbb403d4dfd5b73a2f8685f1df395bd177eb",
  2767. "shasum": ""
  2768. },
  2769. "require": {
  2770. "aws/aws-sdk-php": "^3.220.0",
  2771. "league/flysystem": "^3.10.0",
  2772. "league/mime-type-detection": "^1.0.0",
  2773. "php": "^8.0.2"
  2774. },
  2775. "conflict": {
  2776. "guzzlehttp/guzzle": "<7.0",
  2777. "guzzlehttp/ringphp": "<1.1.1"
  2778. },
  2779. "type": "library",
  2780. "autoload": {
  2781. "psr-4": {
  2782. "League\\Flysystem\\AwsS3V3\\": ""
  2783. }
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "MIT"
  2788. ],
  2789. "authors": [
  2790. {
  2791. "name": "Frank de Jonge",
  2792. "email": "info@frankdejonge.nl"
  2793. }
  2794. ],
  2795. "description": "AWS S3 filesystem adapter for Flysystem.",
  2796. "keywords": [
  2797. "Flysystem",
  2798. "aws",
  2799. "file",
  2800. "files",
  2801. "filesystem",
  2802. "s3",
  2803. "storage"
  2804. ],
  2805. "support": {
  2806. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  2807. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.13.0"
  2808. },
  2809. "funding": [
  2810. {
  2811. "url": "https://ecologi.com/frankdejonge",
  2812. "type": "custom"
  2813. },
  2814. {
  2815. "url": "https://github.com/frankdejonge",
  2816. "type": "github"
  2817. }
  2818. ],
  2819. "time": "2023-03-16T14:29:01+00:00"
  2820. },
  2821. {
  2822. "name": "league/mime-type-detection",
  2823. "version": "1.11.0",
  2824. "source": {
  2825. "type": "git",
  2826. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2827. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2828. },
  2829. "dist": {
  2830. "type": "zip",
  2831. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2832. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2833. "shasum": ""
  2834. },
  2835. "require": {
  2836. "ext-fileinfo": "*",
  2837. "php": "^7.2 || ^8.0"
  2838. },
  2839. "require-dev": {
  2840. "friendsofphp/php-cs-fixer": "^3.2",
  2841. "phpstan/phpstan": "^0.12.68",
  2842. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2843. },
  2844. "type": "library",
  2845. "autoload": {
  2846. "psr-4": {
  2847. "League\\MimeTypeDetection\\": "src"
  2848. }
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "Frank de Jonge",
  2857. "email": "info@frankdejonge.nl"
  2858. }
  2859. ],
  2860. "description": "Mime-type detection for Flysystem",
  2861. "support": {
  2862. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2863. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2864. },
  2865. "funding": [
  2866. {
  2867. "url": "https://github.com/frankdejonge",
  2868. "type": "github"
  2869. },
  2870. {
  2871. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2872. "type": "tidelift"
  2873. }
  2874. ],
  2875. "time": "2022-04-17T13:12:02+00:00"
  2876. },
  2877. {
  2878. "name": "league/oauth1-client",
  2879. "version": "v1.10.1",
  2880. "source": {
  2881. "type": "git",
  2882. "url": "https://github.com/thephpleague/oauth1-client.git",
  2883. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2884. },
  2885. "dist": {
  2886. "type": "zip",
  2887. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2888. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2889. "shasum": ""
  2890. },
  2891. "require": {
  2892. "ext-json": "*",
  2893. "ext-openssl": "*",
  2894. "guzzlehttp/guzzle": "^6.0|^7.0",
  2895. "guzzlehttp/psr7": "^1.7|^2.0",
  2896. "php": ">=7.1||>=8.0"
  2897. },
  2898. "require-dev": {
  2899. "ext-simplexml": "*",
  2900. "friendsofphp/php-cs-fixer": "^2.17",
  2901. "mockery/mockery": "^1.3.3",
  2902. "phpstan/phpstan": "^0.12.42",
  2903. "phpunit/phpunit": "^7.5||9.5"
  2904. },
  2905. "suggest": {
  2906. "ext-simplexml": "For decoding XML-based responses."
  2907. },
  2908. "type": "library",
  2909. "extra": {
  2910. "branch-alias": {
  2911. "dev-master": "1.0-dev",
  2912. "dev-develop": "2.0-dev"
  2913. }
  2914. },
  2915. "autoload": {
  2916. "psr-4": {
  2917. "League\\OAuth1\\Client\\": "src/"
  2918. }
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "Ben Corlett",
  2927. "email": "bencorlett@me.com",
  2928. "homepage": "http://www.webcomm.com.au",
  2929. "role": "Developer"
  2930. }
  2931. ],
  2932. "description": "OAuth 1.0 Client Library",
  2933. "keywords": [
  2934. "Authentication",
  2935. "SSO",
  2936. "authorization",
  2937. "bitbucket",
  2938. "identity",
  2939. "idp",
  2940. "oauth",
  2941. "oauth1",
  2942. "single sign on",
  2943. "trello",
  2944. "tumblr",
  2945. "twitter"
  2946. ],
  2947. "support": {
  2948. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2949. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2950. },
  2951. "time": "2022-04-15T14:02:14+00:00"
  2952. },
  2953. {
  2954. "name": "masterminds/html5",
  2955. "version": "2.8.0",
  2956. "source": {
  2957. "type": "git",
  2958. "url": "https://github.com/Masterminds/html5-php.git",
  2959. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3"
  2960. },
  2961. "dist": {
  2962. "type": "zip",
  2963. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  2964. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  2965. "shasum": ""
  2966. },
  2967. "require": {
  2968. "ext-dom": "*",
  2969. "php": ">=5.3.0"
  2970. },
  2971. "require-dev": {
  2972. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  2973. },
  2974. "type": "library",
  2975. "extra": {
  2976. "branch-alias": {
  2977. "dev-master": "2.7-dev"
  2978. }
  2979. },
  2980. "autoload": {
  2981. "psr-4": {
  2982. "Masterminds\\": "src"
  2983. }
  2984. },
  2985. "notification-url": "https://packagist.org/downloads/",
  2986. "license": [
  2987. "MIT"
  2988. ],
  2989. "authors": [
  2990. {
  2991. "name": "Matt Butcher",
  2992. "email": "technosophos@gmail.com"
  2993. },
  2994. {
  2995. "name": "Matt Farina",
  2996. "email": "matt@mattfarina.com"
  2997. },
  2998. {
  2999. "name": "Asmir Mustafic",
  3000. "email": "goetas@gmail.com"
  3001. }
  3002. ],
  3003. "description": "An HTML5 parser and serializer.",
  3004. "homepage": "http://masterminds.github.io/html5-php",
  3005. "keywords": [
  3006. "HTML5",
  3007. "dom",
  3008. "html",
  3009. "parser",
  3010. "querypath",
  3011. "serializer",
  3012. "xml"
  3013. ],
  3014. "support": {
  3015. "issues": "https://github.com/Masterminds/html5-php/issues",
  3016. "source": "https://github.com/Masterminds/html5-php/tree/2.8.0"
  3017. },
  3018. "time": "2023-04-26T07:27:39+00:00"
  3019. },
  3020. {
  3021. "name": "monolog/monolog",
  3022. "version": "2.9.1",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://github.com/Seldaek/monolog.git",
  3026. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  3031. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  3032. "shasum": ""
  3033. },
  3034. "require": {
  3035. "php": ">=7.2",
  3036. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3037. },
  3038. "provide": {
  3039. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3040. },
  3041. "require-dev": {
  3042. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3043. "doctrine/couchdb": "~1.0@dev",
  3044. "elasticsearch/elasticsearch": "^7 || ^8",
  3045. "ext-json": "*",
  3046. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3047. "guzzlehttp/guzzle": "^7.4",
  3048. "guzzlehttp/psr7": "^2.2",
  3049. "mongodb/mongodb": "^1.8",
  3050. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3051. "phpspec/prophecy": "^1.15",
  3052. "phpstan/phpstan": "^0.12.91",
  3053. "phpunit/phpunit": "^8.5.14",
  3054. "predis/predis": "^1.1 || ^2.0",
  3055. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3056. "ruflin/elastica": "^7",
  3057. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3058. "symfony/mailer": "^5.4 || ^6",
  3059. "symfony/mime": "^5.4 || ^6"
  3060. },
  3061. "suggest": {
  3062. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3063. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3064. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3065. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3066. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3067. "ext-mbstring": "Allow to work properly with unicode symbols",
  3068. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3069. "ext-openssl": "Required to send log messages using SSL",
  3070. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3071. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3072. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3073. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3074. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3075. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3076. },
  3077. "type": "library",
  3078. "extra": {
  3079. "branch-alias": {
  3080. "dev-main": "2.x-dev"
  3081. }
  3082. },
  3083. "autoload": {
  3084. "psr-4": {
  3085. "Monolog\\": "src/Monolog"
  3086. }
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "MIT"
  3091. ],
  3092. "authors": [
  3093. {
  3094. "name": "Jordi Boggiano",
  3095. "email": "j.boggiano@seld.be",
  3096. "homepage": "https://seld.be"
  3097. }
  3098. ],
  3099. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3100. "homepage": "https://github.com/Seldaek/monolog",
  3101. "keywords": [
  3102. "log",
  3103. "logging",
  3104. "psr-3"
  3105. ],
  3106. "support": {
  3107. "issues": "https://github.com/Seldaek/monolog/issues",
  3108. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  3109. },
  3110. "funding": [
  3111. {
  3112. "url": "https://github.com/Seldaek",
  3113. "type": "github"
  3114. },
  3115. {
  3116. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3117. "type": "tidelift"
  3118. }
  3119. ],
  3120. "time": "2023-02-06T13:44:46+00:00"
  3121. },
  3122. {
  3123. "name": "mtdowling/jmespath.php",
  3124. "version": "2.6.1",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://github.com/jmespath/jmespath.php.git",
  3128. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3133. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3134. "shasum": ""
  3135. },
  3136. "require": {
  3137. "php": "^5.4 || ^7.0 || ^8.0",
  3138. "symfony/polyfill-mbstring": "^1.17"
  3139. },
  3140. "require-dev": {
  3141. "composer/xdebug-handler": "^1.4 || ^2.0",
  3142. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  3143. },
  3144. "bin": [
  3145. "bin/jp.php"
  3146. ],
  3147. "type": "library",
  3148. "extra": {
  3149. "branch-alias": {
  3150. "dev-master": "2.6-dev"
  3151. }
  3152. },
  3153. "autoload": {
  3154. "files": [
  3155. "src/JmesPath.php"
  3156. ],
  3157. "psr-4": {
  3158. "JmesPath\\": "src/"
  3159. }
  3160. },
  3161. "notification-url": "https://packagist.org/downloads/",
  3162. "license": [
  3163. "MIT"
  3164. ],
  3165. "authors": [
  3166. {
  3167. "name": "Michael Dowling",
  3168. "email": "mtdowling@gmail.com",
  3169. "homepage": "https://github.com/mtdowling"
  3170. }
  3171. ],
  3172. "description": "Declaratively specify how to extract elements from a JSON document",
  3173. "keywords": [
  3174. "json",
  3175. "jsonpath"
  3176. ],
  3177. "support": {
  3178. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3179. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  3180. },
  3181. "time": "2021-06-14T00:11:39+00:00"
  3182. },
  3183. {
  3184. "name": "nesbot/carbon",
  3185. "version": "2.66.0",
  3186. "source": {
  3187. "type": "git",
  3188. "url": "https://github.com/briannesbitt/Carbon.git",
  3189. "reference": "496712849902241f04902033b0441b269effe001"
  3190. },
  3191. "dist": {
  3192. "type": "zip",
  3193. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  3194. "reference": "496712849902241f04902033b0441b269effe001",
  3195. "shasum": ""
  3196. },
  3197. "require": {
  3198. "ext-json": "*",
  3199. "php": "^7.1.8 || ^8.0",
  3200. "symfony/polyfill-mbstring": "^1.0",
  3201. "symfony/polyfill-php80": "^1.16",
  3202. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3203. },
  3204. "require-dev": {
  3205. "doctrine/dbal": "^2.0 || ^3.1.4",
  3206. "doctrine/orm": "^2.7",
  3207. "friendsofphp/php-cs-fixer": "^3.0",
  3208. "kylekatarnls/multi-tester": "^2.0",
  3209. "ondrejmirtes/better-reflection": "*",
  3210. "phpmd/phpmd": "^2.9",
  3211. "phpstan/extension-installer": "^1.0",
  3212. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3213. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3214. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3215. "squizlabs/php_codesniffer": "^3.4"
  3216. },
  3217. "bin": [
  3218. "bin/carbon"
  3219. ],
  3220. "type": "library",
  3221. "extra": {
  3222. "branch-alias": {
  3223. "dev-3.x": "3.x-dev",
  3224. "dev-master": "2.x-dev"
  3225. },
  3226. "laravel": {
  3227. "providers": [
  3228. "Carbon\\Laravel\\ServiceProvider"
  3229. ]
  3230. },
  3231. "phpstan": {
  3232. "includes": [
  3233. "extension.neon"
  3234. ]
  3235. }
  3236. },
  3237. "autoload": {
  3238. "psr-4": {
  3239. "Carbon\\": "src/Carbon/"
  3240. }
  3241. },
  3242. "notification-url": "https://packagist.org/downloads/",
  3243. "license": [
  3244. "MIT"
  3245. ],
  3246. "authors": [
  3247. {
  3248. "name": "Brian Nesbitt",
  3249. "email": "brian@nesbot.com",
  3250. "homepage": "https://markido.com"
  3251. },
  3252. {
  3253. "name": "kylekatarnls",
  3254. "homepage": "https://github.com/kylekatarnls"
  3255. }
  3256. ],
  3257. "description": "An API extension for DateTime that supports 281 different languages.",
  3258. "homepage": "https://carbon.nesbot.com",
  3259. "keywords": [
  3260. "date",
  3261. "datetime",
  3262. "time"
  3263. ],
  3264. "support": {
  3265. "docs": "https://carbon.nesbot.com/docs",
  3266. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3267. "source": "https://github.com/briannesbitt/Carbon"
  3268. },
  3269. "funding": [
  3270. {
  3271. "url": "https://github.com/sponsors/kylekatarnls",
  3272. "type": "github"
  3273. },
  3274. {
  3275. "url": "https://opencollective.com/Carbon#sponsor",
  3276. "type": "opencollective"
  3277. },
  3278. {
  3279. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3280. "type": "tidelift"
  3281. }
  3282. ],
  3283. "time": "2023-01-29T18:53:47+00:00"
  3284. },
  3285. {
  3286. "name": "nette/schema",
  3287. "version": "v1.2.3",
  3288. "source": {
  3289. "type": "git",
  3290. "url": "https://github.com/nette/schema.git",
  3291. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  3292. },
  3293. "dist": {
  3294. "type": "zip",
  3295. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3296. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3297. "shasum": ""
  3298. },
  3299. "require": {
  3300. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3301. "php": ">=7.1 <8.3"
  3302. },
  3303. "require-dev": {
  3304. "nette/tester": "^2.3 || ^2.4",
  3305. "phpstan/phpstan-nette": "^1.0",
  3306. "tracy/tracy": "^2.7"
  3307. },
  3308. "type": "library",
  3309. "extra": {
  3310. "branch-alias": {
  3311. "dev-master": "1.2-dev"
  3312. }
  3313. },
  3314. "autoload": {
  3315. "classmap": [
  3316. "src/"
  3317. ]
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "BSD-3-Clause",
  3322. "GPL-2.0-only",
  3323. "GPL-3.0-only"
  3324. ],
  3325. "authors": [
  3326. {
  3327. "name": "David Grudl",
  3328. "homepage": "https://davidgrudl.com"
  3329. },
  3330. {
  3331. "name": "Nette Community",
  3332. "homepage": "https://nette.org/contributors"
  3333. }
  3334. ],
  3335. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3336. "homepage": "https://nette.org",
  3337. "keywords": [
  3338. "config",
  3339. "nette"
  3340. ],
  3341. "support": {
  3342. "issues": "https://github.com/nette/schema/issues",
  3343. "source": "https://github.com/nette/schema/tree/v1.2.3"
  3344. },
  3345. "time": "2022-10-13T01:24:26+00:00"
  3346. },
  3347. {
  3348. "name": "nette/utils",
  3349. "version": "v4.0.0",
  3350. "source": {
  3351. "type": "git",
  3352. "url": "https://github.com/nette/utils.git",
  3353. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  3354. },
  3355. "dist": {
  3356. "type": "zip",
  3357. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3358. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3359. "shasum": ""
  3360. },
  3361. "require": {
  3362. "php": ">=8.0 <8.3"
  3363. },
  3364. "conflict": {
  3365. "nette/finder": "<3",
  3366. "nette/schema": "<1.2.2"
  3367. },
  3368. "require-dev": {
  3369. "jetbrains/phpstorm-attributes": "dev-master",
  3370. "nette/tester": "^2.4",
  3371. "phpstan/phpstan": "^1.0",
  3372. "tracy/tracy": "^2.9"
  3373. },
  3374. "suggest": {
  3375. "ext-gd": "to use Image",
  3376. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3377. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3378. "ext-json": "to use Nette\\Utils\\Json",
  3379. "ext-mbstring": "to use Strings::lower() etc...",
  3380. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3381. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3382. },
  3383. "type": "library",
  3384. "extra": {
  3385. "branch-alias": {
  3386. "dev-master": "4.0-dev"
  3387. }
  3388. },
  3389. "autoload": {
  3390. "classmap": [
  3391. "src/"
  3392. ]
  3393. },
  3394. "notification-url": "https://packagist.org/downloads/",
  3395. "license": [
  3396. "BSD-3-Clause",
  3397. "GPL-2.0-only",
  3398. "GPL-3.0-only"
  3399. ],
  3400. "authors": [
  3401. {
  3402. "name": "David Grudl",
  3403. "homepage": "https://davidgrudl.com"
  3404. },
  3405. {
  3406. "name": "Nette Community",
  3407. "homepage": "https://nette.org/contributors"
  3408. }
  3409. ],
  3410. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3411. "homepage": "https://nette.org",
  3412. "keywords": [
  3413. "array",
  3414. "core",
  3415. "datetime",
  3416. "images",
  3417. "json",
  3418. "nette",
  3419. "paginator",
  3420. "password",
  3421. "slugify",
  3422. "string",
  3423. "unicode",
  3424. "utf-8",
  3425. "utility",
  3426. "validation"
  3427. ],
  3428. "support": {
  3429. "issues": "https://github.com/nette/utils/issues",
  3430. "source": "https://github.com/nette/utils/tree/v4.0.0"
  3431. },
  3432. "time": "2023-02-02T10:41:53+00:00"
  3433. },
  3434. {
  3435. "name": "nikic/php-parser",
  3436. "version": "v4.15.4",
  3437. "source": {
  3438. "type": "git",
  3439. "url": "https://github.com/nikic/PHP-Parser.git",
  3440. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  3441. },
  3442. "dist": {
  3443. "type": "zip",
  3444. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3445. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3446. "shasum": ""
  3447. },
  3448. "require": {
  3449. "ext-tokenizer": "*",
  3450. "php": ">=7.0"
  3451. },
  3452. "require-dev": {
  3453. "ircmaxell/php-yacc": "^0.0.7",
  3454. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3455. },
  3456. "bin": [
  3457. "bin/php-parse"
  3458. ],
  3459. "type": "library",
  3460. "extra": {
  3461. "branch-alias": {
  3462. "dev-master": "4.9-dev"
  3463. }
  3464. },
  3465. "autoload": {
  3466. "psr-4": {
  3467. "PhpParser\\": "lib/PhpParser"
  3468. }
  3469. },
  3470. "notification-url": "https://packagist.org/downloads/",
  3471. "license": [
  3472. "BSD-3-Clause"
  3473. ],
  3474. "authors": [
  3475. {
  3476. "name": "Nikita Popov"
  3477. }
  3478. ],
  3479. "description": "A PHP parser written in PHP",
  3480. "keywords": [
  3481. "parser",
  3482. "php"
  3483. ],
  3484. "support": {
  3485. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3486. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  3487. },
  3488. "time": "2023-03-05T19:49:14+00:00"
  3489. },
  3490. {
  3491. "name": "nunomaduro/termwind",
  3492. "version": "v1.15.1",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://github.com/nunomaduro/termwind.git",
  3496. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3501. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3502. "shasum": ""
  3503. },
  3504. "require": {
  3505. "ext-mbstring": "*",
  3506. "php": "^8.0",
  3507. "symfony/console": "^5.3.0|^6.0.0"
  3508. },
  3509. "require-dev": {
  3510. "ergebnis/phpstan-rules": "^1.0.",
  3511. "illuminate/console": "^8.0|^9.0",
  3512. "illuminate/support": "^8.0|^9.0",
  3513. "laravel/pint": "^1.0.0",
  3514. "pestphp/pest": "^1.21.0",
  3515. "pestphp/pest-plugin-mock": "^1.0",
  3516. "phpstan/phpstan": "^1.4.6",
  3517. "phpstan/phpstan-strict-rules": "^1.1.0",
  3518. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3519. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3520. },
  3521. "type": "library",
  3522. "extra": {
  3523. "laravel": {
  3524. "providers": [
  3525. "Termwind\\Laravel\\TermwindServiceProvider"
  3526. ]
  3527. }
  3528. },
  3529. "autoload": {
  3530. "files": [
  3531. "src/Functions.php"
  3532. ],
  3533. "psr-4": {
  3534. "Termwind\\": "src/"
  3535. }
  3536. },
  3537. "notification-url": "https://packagist.org/downloads/",
  3538. "license": [
  3539. "MIT"
  3540. ],
  3541. "authors": [
  3542. {
  3543. "name": "Nuno Maduro",
  3544. "email": "enunomaduro@gmail.com"
  3545. }
  3546. ],
  3547. "description": "Its like Tailwind CSS, but for the console.",
  3548. "keywords": [
  3549. "cli",
  3550. "console",
  3551. "css",
  3552. "package",
  3553. "php",
  3554. "style"
  3555. ],
  3556. "support": {
  3557. "issues": "https://github.com/nunomaduro/termwind/issues",
  3558. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3559. },
  3560. "funding": [
  3561. {
  3562. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3563. "type": "custom"
  3564. },
  3565. {
  3566. "url": "https://github.com/nunomaduro",
  3567. "type": "github"
  3568. },
  3569. {
  3570. "url": "https://github.com/xiCO2k",
  3571. "type": "github"
  3572. }
  3573. ],
  3574. "time": "2023-02-08T01:06:31+00:00"
  3575. },
  3576. {
  3577. "name": "paragonie/constant_time_encoding",
  3578. "version": "v2.6.3",
  3579. "source": {
  3580. "type": "git",
  3581. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3582. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  3583. },
  3584. "dist": {
  3585. "type": "zip",
  3586. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  3587. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  3588. "shasum": ""
  3589. },
  3590. "require": {
  3591. "php": "^7|^8"
  3592. },
  3593. "require-dev": {
  3594. "phpunit/phpunit": "^6|^7|^8|^9",
  3595. "vimeo/psalm": "^1|^2|^3|^4"
  3596. },
  3597. "type": "library",
  3598. "autoload": {
  3599. "psr-4": {
  3600. "ParagonIE\\ConstantTime\\": "src/"
  3601. }
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "MIT"
  3606. ],
  3607. "authors": [
  3608. {
  3609. "name": "Paragon Initiative Enterprises",
  3610. "email": "security@paragonie.com",
  3611. "homepage": "https://paragonie.com",
  3612. "role": "Maintainer"
  3613. },
  3614. {
  3615. "name": "Steve 'Sc00bz' Thomas",
  3616. "email": "steve@tobtu.com",
  3617. "homepage": "https://www.tobtu.com",
  3618. "role": "Original Developer"
  3619. }
  3620. ],
  3621. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3622. "keywords": [
  3623. "base16",
  3624. "base32",
  3625. "base32_decode",
  3626. "base32_encode",
  3627. "base64",
  3628. "base64_decode",
  3629. "base64_encode",
  3630. "bin2hex",
  3631. "encoding",
  3632. "hex",
  3633. "hex2bin",
  3634. "rfc4648"
  3635. ],
  3636. "support": {
  3637. "email": "info@paragonie.com",
  3638. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3639. "source": "https://github.com/paragonie/constant_time_encoding"
  3640. },
  3641. "time": "2022-06-14T06:56:20+00:00"
  3642. },
  3643. {
  3644. "name": "paragonie/random_compat",
  3645. "version": "v9.99.100",
  3646. "source": {
  3647. "type": "git",
  3648. "url": "https://github.com/paragonie/random_compat.git",
  3649. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3650. },
  3651. "dist": {
  3652. "type": "zip",
  3653. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3654. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3655. "shasum": ""
  3656. },
  3657. "require": {
  3658. "php": ">= 7"
  3659. },
  3660. "require-dev": {
  3661. "phpunit/phpunit": "4.*|5.*",
  3662. "vimeo/psalm": "^1"
  3663. },
  3664. "suggest": {
  3665. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3666. },
  3667. "type": "library",
  3668. "notification-url": "https://packagist.org/downloads/",
  3669. "license": [
  3670. "MIT"
  3671. ],
  3672. "authors": [
  3673. {
  3674. "name": "Paragon Initiative Enterprises",
  3675. "email": "security@paragonie.com",
  3676. "homepage": "https://paragonie.com"
  3677. }
  3678. ],
  3679. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3680. "keywords": [
  3681. "csprng",
  3682. "polyfill",
  3683. "pseudorandom",
  3684. "random"
  3685. ],
  3686. "support": {
  3687. "email": "info@paragonie.com",
  3688. "issues": "https://github.com/paragonie/random_compat/issues",
  3689. "source": "https://github.com/paragonie/random_compat"
  3690. },
  3691. "time": "2020-10-15T08:29:30+00:00"
  3692. },
  3693. {
  3694. "name": "paypal/paypal-checkout-sdk",
  3695. "version": "1.0.2",
  3696. "source": {
  3697. "type": "git",
  3698. "url": "https://github.com/paypal/Checkout-PHP-SDK.git",
  3699. "reference": "19992ce7051ff9e47e643f28abb8cc1b3e5f1812"
  3700. },
  3701. "dist": {
  3702. "type": "zip",
  3703. "url": "https://api.github.com/repos/paypal/Checkout-PHP-SDK/zipball/19992ce7051ff9e47e643f28abb8cc1b3e5f1812",
  3704. "reference": "19992ce7051ff9e47e643f28abb8cc1b3e5f1812",
  3705. "shasum": ""
  3706. },
  3707. "require": {
  3708. "paypal/paypalhttp": "1.0.1"
  3709. },
  3710. "require-dev": {
  3711. "phpunit/phpunit": "^5.7"
  3712. },
  3713. "type": "library",
  3714. "autoload": {
  3715. "psr-4": {
  3716. "Sample\\": "samples/",
  3717. "PayPalCheckoutSdk\\": "lib/PayPalCheckoutSdk"
  3718. }
  3719. },
  3720. "notification-url": "https://packagist.org/downloads/",
  3721. "license": [
  3722. "https://github.com/paypal/Checkout-PHP-SDK/blob/master/LICENSE"
  3723. ],
  3724. "authors": [
  3725. {
  3726. "name": "PayPal",
  3727. "homepage": "https://github.com/paypal/Checkout-PHP-SDK/contributors"
  3728. }
  3729. ],
  3730. "description": "PayPal's PHP SDK for Checkout REST APIs",
  3731. "homepage": "http://github.com/paypal/Checkout-PHP-SDK/",
  3732. "keywords": [
  3733. "checkout",
  3734. "orders",
  3735. "payments",
  3736. "paypal",
  3737. "rest",
  3738. "sdk"
  3739. ],
  3740. "support": {
  3741. "source": "https://github.com/paypal/Checkout-PHP-SDK/tree/1.0.2"
  3742. },
  3743. "abandoned": true,
  3744. "time": "2021-09-21T20:57:38+00:00"
  3745. },
  3746. {
  3747. "name": "paypal/paypalhttp",
  3748. "version": "1.0.1",
  3749. "source": {
  3750. "type": "git",
  3751. "url": "https://github.com/paypal/paypalhttp_php.git",
  3752. "reference": "7b09c89c80828e842c79230e7f156b61fbb68d25"
  3753. },
  3754. "dist": {
  3755. "type": "zip",
  3756. "url": "https://api.github.com/repos/paypal/paypalhttp_php/zipball/7b09c89c80828e842c79230e7f156b61fbb68d25",
  3757. "reference": "7b09c89c80828e842c79230e7f156b61fbb68d25",
  3758. "shasum": ""
  3759. },
  3760. "require": {
  3761. "ext-curl": "*"
  3762. },
  3763. "require-dev": {
  3764. "phpunit/phpunit": "^5.7",
  3765. "wiremock-php/wiremock-php": "1.43.2"
  3766. },
  3767. "type": "library",
  3768. "autoload": {
  3769. "psr-4": {
  3770. "PayPalHttp\\": "lib/PayPalHttp"
  3771. }
  3772. },
  3773. "notification-url": "https://packagist.org/downloads/",
  3774. "license": [
  3775. "MIT"
  3776. ],
  3777. "authors": [
  3778. {
  3779. "name": "PayPal",
  3780. "homepage": "https://github.com/paypal/paypalhttp_php/contributors"
  3781. }
  3782. ],
  3783. "support": {
  3784. "issues": "https://github.com/paypal/paypalhttp_php/issues",
  3785. "source": "https://github.com/paypal/paypalhttp_php/tree/1.0.1"
  3786. },
  3787. "time": "2021-09-14T21:35:26+00:00"
  3788. },
  3789. {
  3790. "name": "paypal/rest-api-sdk-php",
  3791. "version": "1.14.0",
  3792. "source": {
  3793. "type": "git",
  3794. "url": "https://github.com/paypal/PayPal-PHP-SDK.git",
  3795. "reference": "72e2f2466975bf128a31e02b15110180f059fc04"
  3796. },
  3797. "dist": {
  3798. "type": "zip",
  3799. "url": "https://api.github.com/repos/paypal/PayPal-PHP-SDK/zipball/72e2f2466975bf128a31e02b15110180f059fc04",
  3800. "reference": "72e2f2466975bf128a31e02b15110180f059fc04",
  3801. "shasum": ""
  3802. },
  3803. "require": {
  3804. "ext-curl": "*",
  3805. "ext-json": "*",
  3806. "php": ">=5.3.0",
  3807. "psr/log": "^1.0.0"
  3808. },
  3809. "require-dev": {
  3810. "phpunit/phpunit": "^4.8.35"
  3811. },
  3812. "type": "library",
  3813. "autoload": {
  3814. "psr-0": {
  3815. "PayPal": "lib/"
  3816. }
  3817. },
  3818. "notification-url": "https://packagist.org/downloads/",
  3819. "license": [
  3820. "Apache-2.0"
  3821. ],
  3822. "authors": [
  3823. {
  3824. "name": "PayPal",
  3825. "homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
  3826. }
  3827. ],
  3828. "description": "PayPal's PHP SDK for REST APIs",
  3829. "homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
  3830. "keywords": [
  3831. "payments",
  3832. "paypal",
  3833. "rest",
  3834. "sdk"
  3835. ],
  3836. "support": {
  3837. "issues": "https://github.com/paypal/PayPal-PHP-SDK/issues",
  3838. "source": "https://github.com/paypal/PayPal-PHP-SDK/tree/master"
  3839. },
  3840. "abandoned": true,
  3841. "time": "2019-01-04T20:04:25+00:00"
  3842. },
  3843. {
  3844. "name": "phenx/php-font-lib",
  3845. "version": "0.5.4",
  3846. "source": {
  3847. "type": "git",
  3848. "url": "https://github.com/dompdf/php-font-lib.git",
  3849. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  3850. },
  3851. "dist": {
  3852. "type": "zip",
  3853. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  3854. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  3855. "shasum": ""
  3856. },
  3857. "require": {
  3858. "ext-mbstring": "*"
  3859. },
  3860. "require-dev": {
  3861. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  3862. },
  3863. "type": "library",
  3864. "autoload": {
  3865. "psr-4": {
  3866. "FontLib\\": "src/FontLib"
  3867. }
  3868. },
  3869. "notification-url": "https://packagist.org/downloads/",
  3870. "license": [
  3871. "LGPL-3.0"
  3872. ],
  3873. "authors": [
  3874. {
  3875. "name": "Fabien Ménager",
  3876. "email": "fabien.menager@gmail.com"
  3877. }
  3878. ],
  3879. "description": "A library to read, parse, export and make subsets of different types of font files.",
  3880. "homepage": "https://github.com/PhenX/php-font-lib",
  3881. "support": {
  3882. "issues": "https://github.com/dompdf/php-font-lib/issues",
  3883. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  3884. },
  3885. "time": "2021-12-17T19:44:54+00:00"
  3886. },
  3887. {
  3888. "name": "phenx/php-svg-lib",
  3889. "version": "0.5.0",
  3890. "source": {
  3891. "type": "git",
  3892. "url": "https://github.com/dompdf/php-svg-lib.git",
  3893. "reference": "76876c6cf3080bcb6f249d7d59705108166a6685"
  3894. },
  3895. "dist": {
  3896. "type": "zip",
  3897. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/76876c6cf3080bcb6f249d7d59705108166a6685",
  3898. "reference": "76876c6cf3080bcb6f249d7d59705108166a6685",
  3899. "shasum": ""
  3900. },
  3901. "require": {
  3902. "ext-mbstring": "*",
  3903. "php": "^7.1 || ^8.0",
  3904. "sabberworm/php-css-parser": "^8.4"
  3905. },
  3906. "require-dev": {
  3907. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  3908. },
  3909. "type": "library",
  3910. "autoload": {
  3911. "psr-4": {
  3912. "Svg\\": "src/Svg"
  3913. }
  3914. },
  3915. "notification-url": "https://packagist.org/downloads/",
  3916. "license": [
  3917. "LGPL-3.0"
  3918. ],
  3919. "authors": [
  3920. {
  3921. "name": "Fabien Ménager",
  3922. "email": "fabien.menager@gmail.com"
  3923. }
  3924. ],
  3925. "description": "A library to read, parse and export to PDF SVG files.",
  3926. "homepage": "https://github.com/PhenX/php-svg-lib",
  3927. "support": {
  3928. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  3929. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.0"
  3930. },
  3931. "time": "2022-09-06T12:16:56+00:00"
  3932. },
  3933. {
  3934. "name": "phpdocumentor/reflection-common",
  3935. "version": "2.2.0",
  3936. "source": {
  3937. "type": "git",
  3938. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3939. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3940. },
  3941. "dist": {
  3942. "type": "zip",
  3943. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3944. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3945. "shasum": ""
  3946. },
  3947. "require": {
  3948. "php": "^7.2 || ^8.0"
  3949. },
  3950. "type": "library",
  3951. "extra": {
  3952. "branch-alias": {
  3953. "dev-2.x": "2.x-dev"
  3954. }
  3955. },
  3956. "autoload": {
  3957. "psr-4": {
  3958. "phpDocumentor\\Reflection\\": "src/"
  3959. }
  3960. },
  3961. "notification-url": "https://packagist.org/downloads/",
  3962. "license": [
  3963. "MIT"
  3964. ],
  3965. "authors": [
  3966. {
  3967. "name": "Jaap van Otterdijk",
  3968. "email": "opensource@ijaap.nl"
  3969. }
  3970. ],
  3971. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3972. "homepage": "http://www.phpdoc.org",
  3973. "keywords": [
  3974. "FQSEN",
  3975. "phpDocumentor",
  3976. "phpdoc",
  3977. "reflection",
  3978. "static analysis"
  3979. ],
  3980. "support": {
  3981. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3982. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3983. },
  3984. "time": "2020-06-27T09:03:43+00:00"
  3985. },
  3986. {
  3987. "name": "phpdocumentor/type-resolver",
  3988. "version": "1.7.1",
  3989. "source": {
  3990. "type": "git",
  3991. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3992. "reference": "dfc078e8af9c99210337325ff5aa152872c98714"
  3993. },
  3994. "dist": {
  3995. "type": "zip",
  3996. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
  3997. "reference": "dfc078e8af9c99210337325ff5aa152872c98714",
  3998. "shasum": ""
  3999. },
  4000. "require": {
  4001. "doctrine/deprecations": "^1.0",
  4002. "php": "^7.4 || ^8.0",
  4003. "phpdocumentor/reflection-common": "^2.0",
  4004. "phpstan/phpdoc-parser": "^1.13"
  4005. },
  4006. "require-dev": {
  4007. "ext-tokenizer": "*",
  4008. "phpbench/phpbench": "^1.2",
  4009. "phpstan/extension-installer": "^1.1",
  4010. "phpstan/phpstan": "^1.8",
  4011. "phpstan/phpstan-phpunit": "^1.1",
  4012. "phpunit/phpunit": "^9.5",
  4013. "rector/rector": "^0.13.9",
  4014. "vimeo/psalm": "^4.25"
  4015. },
  4016. "type": "library",
  4017. "extra": {
  4018. "branch-alias": {
  4019. "dev-1.x": "1.x-dev"
  4020. }
  4021. },
  4022. "autoload": {
  4023. "psr-4": {
  4024. "phpDocumentor\\Reflection\\": "src"
  4025. }
  4026. },
  4027. "notification-url": "https://packagist.org/downloads/",
  4028. "license": [
  4029. "MIT"
  4030. ],
  4031. "authors": [
  4032. {
  4033. "name": "Mike van Riel",
  4034. "email": "me@mikevanriel.com"
  4035. }
  4036. ],
  4037. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4038. "support": {
  4039. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  4040. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
  4041. },
  4042. "time": "2023-03-27T19:02:04+00:00"
  4043. },
  4044. {
  4045. "name": "phpoption/phpoption",
  4046. "version": "1.9.1",
  4047. "source": {
  4048. "type": "git",
  4049. "url": "https://github.com/schmittjoh/php-option.git",
  4050. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  4051. },
  4052. "dist": {
  4053. "type": "zip",
  4054. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  4055. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  4056. "shasum": ""
  4057. },
  4058. "require": {
  4059. "php": "^7.2.5 || ^8.0"
  4060. },
  4061. "require-dev": {
  4062. "bamarni/composer-bin-plugin": "^1.8.2",
  4063. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  4064. },
  4065. "type": "library",
  4066. "extra": {
  4067. "bamarni-bin": {
  4068. "bin-links": true,
  4069. "forward-command": true
  4070. },
  4071. "branch-alias": {
  4072. "dev-master": "1.9-dev"
  4073. }
  4074. },
  4075. "autoload": {
  4076. "psr-4": {
  4077. "PhpOption\\": "src/PhpOption/"
  4078. }
  4079. },
  4080. "notification-url": "https://packagist.org/downloads/",
  4081. "license": [
  4082. "Apache-2.0"
  4083. ],
  4084. "authors": [
  4085. {
  4086. "name": "Johannes M. Schmitt",
  4087. "email": "schmittjoh@gmail.com",
  4088. "homepage": "https://github.com/schmittjoh"
  4089. },
  4090. {
  4091. "name": "Graham Campbell",
  4092. "email": "hello@gjcampbell.co.uk",
  4093. "homepage": "https://github.com/GrahamCampbell"
  4094. }
  4095. ],
  4096. "description": "Option Type for PHP",
  4097. "keywords": [
  4098. "language",
  4099. "option",
  4100. "php",
  4101. "type"
  4102. ],
  4103. "support": {
  4104. "issues": "https://github.com/schmittjoh/php-option/issues",
  4105. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  4106. },
  4107. "funding": [
  4108. {
  4109. "url": "https://github.com/GrahamCampbell",
  4110. "type": "github"
  4111. },
  4112. {
  4113. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4114. "type": "tidelift"
  4115. }
  4116. ],
  4117. "time": "2023-02-25T19:38:58+00:00"
  4118. },
  4119. {
  4120. "name": "phpstan/phpdoc-parser",
  4121. "version": "1.20.3",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://github.com/phpstan/phpdoc-parser.git",
  4125. "reference": "6c04009f6cae6eda2f040745b6b846080ef069c2"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/6c04009f6cae6eda2f040745b6b846080ef069c2",
  4130. "reference": "6c04009f6cae6eda2f040745b6b846080ef069c2",
  4131. "shasum": ""
  4132. },
  4133. "require": {
  4134. "php": "^7.2 || ^8.0"
  4135. },
  4136. "require-dev": {
  4137. "php-parallel-lint/php-parallel-lint": "^1.2",
  4138. "phpstan/extension-installer": "^1.0",
  4139. "phpstan/phpstan": "^1.5",
  4140. "phpstan/phpstan-phpunit": "^1.1",
  4141. "phpstan/phpstan-strict-rules": "^1.0",
  4142. "phpunit/phpunit": "^9.5",
  4143. "symfony/process": "^5.2"
  4144. },
  4145. "type": "library",
  4146. "autoload": {
  4147. "psr-4": {
  4148. "PHPStan\\PhpDocParser\\": [
  4149. "src/"
  4150. ]
  4151. }
  4152. },
  4153. "notification-url": "https://packagist.org/downloads/",
  4154. "license": [
  4155. "MIT"
  4156. ],
  4157. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  4158. "support": {
  4159. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  4160. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.20.3"
  4161. },
  4162. "time": "2023-04-25T09:01:03+00:00"
  4163. },
  4164. {
  4165. "name": "pragmarx/google2fa",
  4166. "version": "v8.0.1",
  4167. "source": {
  4168. "type": "git",
  4169. "url": "https://github.com/antonioribeiro/google2fa.git",
  4170. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3"
  4171. },
  4172. "dist": {
  4173. "type": "zip",
  4174. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  4175. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  4176. "shasum": ""
  4177. },
  4178. "require": {
  4179. "paragonie/constant_time_encoding": "^1.0|^2.0",
  4180. "php": "^7.1|^8.0"
  4181. },
  4182. "require-dev": {
  4183. "phpstan/phpstan": "^0.12.18",
  4184. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  4185. },
  4186. "type": "library",
  4187. "autoload": {
  4188. "psr-4": {
  4189. "PragmaRX\\Google2FA\\": "src/"
  4190. }
  4191. },
  4192. "notification-url": "https://packagist.org/downloads/",
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "Antonio Carlos Ribeiro",
  4199. "email": "acr@antoniocarlosribeiro.com",
  4200. "role": "Creator & Designer"
  4201. }
  4202. ],
  4203. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  4204. "keywords": [
  4205. "2fa",
  4206. "Authentication",
  4207. "Two Factor Authentication",
  4208. "google2fa"
  4209. ],
  4210. "support": {
  4211. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  4212. "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.1"
  4213. },
  4214. "time": "2022-06-13T21:57:56+00:00"
  4215. },
  4216. {
  4217. "name": "pragmarx/google2fa-laravel",
  4218. "version": "v2.1.1",
  4219. "source": {
  4220. "type": "git",
  4221. "url": "https://github.com/antonioribeiro/google2fa-laravel.git",
  4222. "reference": "035b799d6ea080d07722012c926c15c9dde66fd7"
  4223. },
  4224. "dist": {
  4225. "type": "zip",
  4226. "url": "https://api.github.com/repos/antonioribeiro/google2fa-laravel/zipball/035b799d6ea080d07722012c926c15c9dde66fd7",
  4227. "reference": "035b799d6ea080d07722012c926c15c9dde66fd7",
  4228. "shasum": ""
  4229. },
  4230. "require": {
  4231. "laravel/framework": "^5.4.36|^6.0|^7.0|^8.0|^9.0|^10.0",
  4232. "php": ">=7.0",
  4233. "pragmarx/google2fa-qrcode": "^1.0|^2.0|^3.0"
  4234. },
  4235. "require-dev": {
  4236. "bacon/bacon-qr-code": "^2.0",
  4237. "orchestra/testbench": "3.4.*|3.5.*|3.6.*|3.7.*|4.*|5.*|6.*|7.*|8.*",
  4238. "phpunit/phpunit": "~5|~6|~7|~8|~9"
  4239. },
  4240. "suggest": {
  4241. "bacon/bacon-qr-code": "Required to generate inline QR Codes.",
  4242. "pragmarx/recovery": "Generate recovery codes."
  4243. },
  4244. "type": "library",
  4245. "extra": {
  4246. "component": "package",
  4247. "frameworks": [
  4248. "Laravel"
  4249. ],
  4250. "branch-alias": {
  4251. "dev-master": "0.2-dev"
  4252. },
  4253. "laravel": {
  4254. "providers": [
  4255. "PragmaRX\\Google2FALaravel\\ServiceProvider"
  4256. ],
  4257. "aliases": {
  4258. "Google2FA": "PragmaRX\\Google2FALaravel\\Facade"
  4259. }
  4260. }
  4261. },
  4262. "autoload": {
  4263. "psr-4": {
  4264. "PragmaRX\\Google2FALaravel\\": "src/",
  4265. "PragmaRX\\Google2FALaravel\\Tests\\": "tests/"
  4266. }
  4267. },
  4268. "notification-url": "https://packagist.org/downloads/",
  4269. "license": [
  4270. "MIT"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "Antonio Carlos Ribeiro",
  4275. "email": "acr@antoniocarlosribeiro.com",
  4276. "role": "Creator & Designer"
  4277. }
  4278. ],
  4279. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  4280. "keywords": [
  4281. "Authentication",
  4282. "Two Factor Authentication",
  4283. "google2fa",
  4284. "laravel"
  4285. ],
  4286. "support": {
  4287. "issues": "https://github.com/antonioribeiro/google2fa-laravel/issues",
  4288. "source": "https://github.com/antonioribeiro/google2fa-laravel/tree/v2.1.1"
  4289. },
  4290. "time": "2023-02-26T09:41:06+00:00"
  4291. },
  4292. {
  4293. "name": "pragmarx/google2fa-qrcode",
  4294. "version": "v3.0.0",
  4295. "source": {
  4296. "type": "git",
  4297. "url": "https://github.com/antonioribeiro/google2fa-qrcode.git",
  4298. "reference": "ce4d8a729b6c93741c607cfb2217acfffb5bf76b"
  4299. },
  4300. "dist": {
  4301. "type": "zip",
  4302. "url": "https://api.github.com/repos/antonioribeiro/google2fa-qrcode/zipball/ce4d8a729b6c93741c607cfb2217acfffb5bf76b",
  4303. "reference": "ce4d8a729b6c93741c607cfb2217acfffb5bf76b",
  4304. "shasum": ""
  4305. },
  4306. "require": {
  4307. "php": ">=7.1",
  4308. "pragmarx/google2fa": ">=4.0"
  4309. },
  4310. "require-dev": {
  4311. "bacon/bacon-qr-code": "^2.0",
  4312. "chillerlan/php-qrcode": "^1.0|^2.0|^3.0|^4.0",
  4313. "khanamiryan/qrcode-detector-decoder": "^1.0",
  4314. "phpunit/phpunit": "~4|~5|~6|~7|~8|~9"
  4315. },
  4316. "suggest": {
  4317. "bacon/bacon-qr-code": "For QR Code generation, requires imagick",
  4318. "chillerlan/php-qrcode": "For QR Code generation"
  4319. },
  4320. "type": "library",
  4321. "extra": {
  4322. "component": "package",
  4323. "branch-alias": {
  4324. "dev-master": "1.0-dev"
  4325. }
  4326. },
  4327. "autoload": {
  4328. "psr-4": {
  4329. "PragmaRX\\Google2FAQRCode\\": "src/",
  4330. "PragmaRX\\Google2FAQRCode\\Tests\\": "tests/"
  4331. }
  4332. },
  4333. "notification-url": "https://packagist.org/downloads/",
  4334. "license": [
  4335. "MIT"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "Antonio Carlos Ribeiro",
  4340. "email": "acr@antoniocarlosribeiro.com",
  4341. "role": "Creator & Designer"
  4342. }
  4343. ],
  4344. "description": "QR Code package for Google2FA",
  4345. "keywords": [
  4346. "2fa",
  4347. "Authentication",
  4348. "Two Factor Authentication",
  4349. "google2fa",
  4350. "qr code",
  4351. "qrcode"
  4352. ],
  4353. "support": {
  4354. "issues": "https://github.com/antonioribeiro/google2fa-qrcode/issues",
  4355. "source": "https://github.com/antonioribeiro/google2fa-qrcode/tree/v3.0.0"
  4356. },
  4357. "time": "2021-08-15T12:53:48+00:00"
  4358. },
  4359. {
  4360. "name": "predis/predis",
  4361. "version": "v2.1.2",
  4362. "source": {
  4363. "type": "git",
  4364. "url": "https://github.com/predis/predis.git",
  4365. "reference": "a77a43913a74f9331f637bb12867eb8e274814e5"
  4366. },
  4367. "dist": {
  4368. "type": "zip",
  4369. "url": "https://api.github.com/repos/predis/predis/zipball/a77a43913a74f9331f637bb12867eb8e274814e5",
  4370. "reference": "a77a43913a74f9331f637bb12867eb8e274814e5",
  4371. "shasum": ""
  4372. },
  4373. "require": {
  4374. "php": "^7.2 || ^8.0"
  4375. },
  4376. "require-dev": {
  4377. "friendsofphp/php-cs-fixer": "^3.3",
  4378. "phpstan/phpstan": "^1.9",
  4379. "phpunit/phpunit": "^8.0 || ~9.4.4"
  4380. },
  4381. "type": "library",
  4382. "autoload": {
  4383. "psr-4": {
  4384. "Predis\\": "src/"
  4385. }
  4386. },
  4387. "notification-url": "https://packagist.org/downloads/",
  4388. "license": [
  4389. "MIT"
  4390. ],
  4391. "authors": [
  4392. {
  4393. "name": "Till Krüss",
  4394. "homepage": "https://till.im",
  4395. "role": "Maintainer"
  4396. }
  4397. ],
  4398. "description": "A flexible and feature-complete Redis client for PHP.",
  4399. "homepage": "http://github.com/predis/predis",
  4400. "keywords": [
  4401. "nosql",
  4402. "predis",
  4403. "redis"
  4404. ],
  4405. "support": {
  4406. "issues": "https://github.com/predis/predis/issues",
  4407. "source": "https://github.com/predis/predis/tree/v2.1.2"
  4408. },
  4409. "funding": [
  4410. {
  4411. "url": "https://github.com/sponsors/tillkruss",
  4412. "type": "github"
  4413. }
  4414. ],
  4415. "time": "2023-03-02T18:32:04+00:00"
  4416. },
  4417. {
  4418. "name": "psr/cache",
  4419. "version": "3.0.0",
  4420. "source": {
  4421. "type": "git",
  4422. "url": "https://github.com/php-fig/cache.git",
  4423. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4424. },
  4425. "dist": {
  4426. "type": "zip",
  4427. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4428. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4429. "shasum": ""
  4430. },
  4431. "require": {
  4432. "php": ">=8.0.0"
  4433. },
  4434. "type": "library",
  4435. "extra": {
  4436. "branch-alias": {
  4437. "dev-master": "1.0.x-dev"
  4438. }
  4439. },
  4440. "autoload": {
  4441. "psr-4": {
  4442. "Psr\\Cache\\": "src/"
  4443. }
  4444. },
  4445. "notification-url": "https://packagist.org/downloads/",
  4446. "license": [
  4447. "MIT"
  4448. ],
  4449. "authors": [
  4450. {
  4451. "name": "PHP-FIG",
  4452. "homepage": "https://www.php-fig.org/"
  4453. }
  4454. ],
  4455. "description": "Common interface for caching libraries",
  4456. "keywords": [
  4457. "cache",
  4458. "psr",
  4459. "psr-6"
  4460. ],
  4461. "support": {
  4462. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4463. },
  4464. "time": "2021-02-03T23:26:27+00:00"
  4465. },
  4466. {
  4467. "name": "psr/container",
  4468. "version": "2.0.2",
  4469. "source": {
  4470. "type": "git",
  4471. "url": "https://github.com/php-fig/container.git",
  4472. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4473. },
  4474. "dist": {
  4475. "type": "zip",
  4476. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4477. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4478. "shasum": ""
  4479. },
  4480. "require": {
  4481. "php": ">=7.4.0"
  4482. },
  4483. "type": "library",
  4484. "extra": {
  4485. "branch-alias": {
  4486. "dev-master": "2.0.x-dev"
  4487. }
  4488. },
  4489. "autoload": {
  4490. "psr-4": {
  4491. "Psr\\Container\\": "src/"
  4492. }
  4493. },
  4494. "notification-url": "https://packagist.org/downloads/",
  4495. "license": [
  4496. "MIT"
  4497. ],
  4498. "authors": [
  4499. {
  4500. "name": "PHP-FIG",
  4501. "homepage": "https://www.php-fig.org/"
  4502. }
  4503. ],
  4504. "description": "Common Container Interface (PHP FIG PSR-11)",
  4505. "homepage": "https://github.com/php-fig/container",
  4506. "keywords": [
  4507. "PSR-11",
  4508. "container",
  4509. "container-interface",
  4510. "container-interop",
  4511. "psr"
  4512. ],
  4513. "support": {
  4514. "issues": "https://github.com/php-fig/container/issues",
  4515. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4516. },
  4517. "time": "2021-11-05T16:47:00+00:00"
  4518. },
  4519. {
  4520. "name": "psr/event-dispatcher",
  4521. "version": "1.0.0",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://github.com/php-fig/event-dispatcher.git",
  4525. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4530. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4531. "shasum": ""
  4532. },
  4533. "require": {
  4534. "php": ">=7.2.0"
  4535. },
  4536. "type": "library",
  4537. "extra": {
  4538. "branch-alias": {
  4539. "dev-master": "1.0.x-dev"
  4540. }
  4541. },
  4542. "autoload": {
  4543. "psr-4": {
  4544. "Psr\\EventDispatcher\\": "src/"
  4545. }
  4546. },
  4547. "notification-url": "https://packagist.org/downloads/",
  4548. "license": [
  4549. "MIT"
  4550. ],
  4551. "authors": [
  4552. {
  4553. "name": "PHP-FIG",
  4554. "homepage": "http://www.php-fig.org/"
  4555. }
  4556. ],
  4557. "description": "Standard interfaces for event handling.",
  4558. "keywords": [
  4559. "events",
  4560. "psr",
  4561. "psr-14"
  4562. ],
  4563. "support": {
  4564. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4565. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4566. },
  4567. "time": "2019-01-08T18:20:26+00:00"
  4568. },
  4569. {
  4570. "name": "psr/http-client",
  4571. "version": "1.0.2",
  4572. "source": {
  4573. "type": "git",
  4574. "url": "https://github.com/php-fig/http-client.git",
  4575. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  4576. },
  4577. "dist": {
  4578. "type": "zip",
  4579. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4580. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4581. "shasum": ""
  4582. },
  4583. "require": {
  4584. "php": "^7.0 || ^8.0",
  4585. "psr/http-message": "^1.0 || ^2.0"
  4586. },
  4587. "type": "library",
  4588. "extra": {
  4589. "branch-alias": {
  4590. "dev-master": "1.0.x-dev"
  4591. }
  4592. },
  4593. "autoload": {
  4594. "psr-4": {
  4595. "Psr\\Http\\Client\\": "src/"
  4596. }
  4597. },
  4598. "notification-url": "https://packagist.org/downloads/",
  4599. "license": [
  4600. "MIT"
  4601. ],
  4602. "authors": [
  4603. {
  4604. "name": "PHP-FIG",
  4605. "homepage": "https://www.php-fig.org/"
  4606. }
  4607. ],
  4608. "description": "Common interface for HTTP clients",
  4609. "homepage": "https://github.com/php-fig/http-client",
  4610. "keywords": [
  4611. "http",
  4612. "http-client",
  4613. "psr",
  4614. "psr-18"
  4615. ],
  4616. "support": {
  4617. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  4618. },
  4619. "time": "2023-04-10T20:12:12+00:00"
  4620. },
  4621. {
  4622. "name": "psr/http-factory",
  4623. "version": "1.0.2",
  4624. "source": {
  4625. "type": "git",
  4626. "url": "https://github.com/php-fig/http-factory.git",
  4627. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4628. },
  4629. "dist": {
  4630. "type": "zip",
  4631. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4632. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4633. "shasum": ""
  4634. },
  4635. "require": {
  4636. "php": ">=7.0.0",
  4637. "psr/http-message": "^1.0 || ^2.0"
  4638. },
  4639. "type": "library",
  4640. "extra": {
  4641. "branch-alias": {
  4642. "dev-master": "1.0.x-dev"
  4643. }
  4644. },
  4645. "autoload": {
  4646. "psr-4": {
  4647. "Psr\\Http\\Message\\": "src/"
  4648. }
  4649. },
  4650. "notification-url": "https://packagist.org/downloads/",
  4651. "license": [
  4652. "MIT"
  4653. ],
  4654. "authors": [
  4655. {
  4656. "name": "PHP-FIG",
  4657. "homepage": "https://www.php-fig.org/"
  4658. }
  4659. ],
  4660. "description": "Common interfaces for PSR-7 HTTP message factories",
  4661. "keywords": [
  4662. "factory",
  4663. "http",
  4664. "message",
  4665. "psr",
  4666. "psr-17",
  4667. "psr-7",
  4668. "request",
  4669. "response"
  4670. ],
  4671. "support": {
  4672. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4673. },
  4674. "time": "2023-04-10T20:10:41+00:00"
  4675. },
  4676. {
  4677. "name": "psr/http-message",
  4678. "version": "2.0",
  4679. "source": {
  4680. "type": "git",
  4681. "url": "https://github.com/php-fig/http-message.git",
  4682. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4683. },
  4684. "dist": {
  4685. "type": "zip",
  4686. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4687. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4688. "shasum": ""
  4689. },
  4690. "require": {
  4691. "php": "^7.2 || ^8.0"
  4692. },
  4693. "type": "library",
  4694. "extra": {
  4695. "branch-alias": {
  4696. "dev-master": "2.0.x-dev"
  4697. }
  4698. },
  4699. "autoload": {
  4700. "psr-4": {
  4701. "Psr\\Http\\Message\\": "src/"
  4702. }
  4703. },
  4704. "notification-url": "https://packagist.org/downloads/",
  4705. "license": [
  4706. "MIT"
  4707. ],
  4708. "authors": [
  4709. {
  4710. "name": "PHP-FIG",
  4711. "homepage": "https://www.php-fig.org/"
  4712. }
  4713. ],
  4714. "description": "Common interface for HTTP messages",
  4715. "homepage": "https://github.com/php-fig/http-message",
  4716. "keywords": [
  4717. "http",
  4718. "http-message",
  4719. "psr",
  4720. "psr-7",
  4721. "request",
  4722. "response"
  4723. ],
  4724. "support": {
  4725. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4726. },
  4727. "time": "2023-04-04T09:54:51+00:00"
  4728. },
  4729. {
  4730. "name": "psr/log",
  4731. "version": "1.1.4",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://github.com/php-fig/log.git",
  4735. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4740. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4741. "shasum": ""
  4742. },
  4743. "require": {
  4744. "php": ">=5.3.0"
  4745. },
  4746. "type": "library",
  4747. "extra": {
  4748. "branch-alias": {
  4749. "dev-master": "1.1.x-dev"
  4750. }
  4751. },
  4752. "autoload": {
  4753. "psr-4": {
  4754. "Psr\\Log\\": "Psr/Log/"
  4755. }
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "MIT"
  4760. ],
  4761. "authors": [
  4762. {
  4763. "name": "PHP-FIG",
  4764. "homepage": "https://www.php-fig.org/"
  4765. }
  4766. ],
  4767. "description": "Common interface for logging libraries",
  4768. "homepage": "https://github.com/php-fig/log",
  4769. "keywords": [
  4770. "log",
  4771. "psr",
  4772. "psr-3"
  4773. ],
  4774. "support": {
  4775. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4776. },
  4777. "time": "2021-05-03T11:20:27+00:00"
  4778. },
  4779. {
  4780. "name": "psr/simple-cache",
  4781. "version": "3.0.0",
  4782. "source": {
  4783. "type": "git",
  4784. "url": "https://github.com/php-fig/simple-cache.git",
  4785. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4786. },
  4787. "dist": {
  4788. "type": "zip",
  4789. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4790. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4791. "shasum": ""
  4792. },
  4793. "require": {
  4794. "php": ">=8.0.0"
  4795. },
  4796. "type": "library",
  4797. "extra": {
  4798. "branch-alias": {
  4799. "dev-master": "3.0.x-dev"
  4800. }
  4801. },
  4802. "autoload": {
  4803. "psr-4": {
  4804. "Psr\\SimpleCache\\": "src/"
  4805. }
  4806. },
  4807. "notification-url": "https://packagist.org/downloads/",
  4808. "license": [
  4809. "MIT"
  4810. ],
  4811. "authors": [
  4812. {
  4813. "name": "PHP-FIG",
  4814. "homepage": "https://www.php-fig.org/"
  4815. }
  4816. ],
  4817. "description": "Common interfaces for simple caching",
  4818. "keywords": [
  4819. "cache",
  4820. "caching",
  4821. "psr",
  4822. "psr-16",
  4823. "simple-cache"
  4824. ],
  4825. "support": {
  4826. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4827. },
  4828. "time": "2021-10-29T13:26:27+00:00"
  4829. },
  4830. {
  4831. "name": "psy/psysh",
  4832. "version": "v0.11.16",
  4833. "source": {
  4834. "type": "git",
  4835. "url": "https://github.com/bobthecow/psysh.git",
  4836. "reference": "151b145906804eea8e5d71fea23bfb470c904bfb"
  4837. },
  4838. "dist": {
  4839. "type": "zip",
  4840. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/151b145906804eea8e5d71fea23bfb470c904bfb",
  4841. "reference": "151b145906804eea8e5d71fea23bfb470c904bfb",
  4842. "shasum": ""
  4843. },
  4844. "require": {
  4845. "ext-json": "*",
  4846. "ext-tokenizer": "*",
  4847. "nikic/php-parser": "^4.0 || ^3.1",
  4848. "php": "^8.0 || ^7.0.8",
  4849. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4850. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4851. },
  4852. "conflict": {
  4853. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4854. },
  4855. "require-dev": {
  4856. "bamarni/composer-bin-plugin": "^1.2"
  4857. },
  4858. "suggest": {
  4859. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4860. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4861. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4862. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4863. },
  4864. "bin": [
  4865. "bin/psysh"
  4866. ],
  4867. "type": "library",
  4868. "extra": {
  4869. "branch-alias": {
  4870. "dev-main": "0.11.x-dev"
  4871. }
  4872. },
  4873. "autoload": {
  4874. "files": [
  4875. "src/functions.php"
  4876. ],
  4877. "psr-4": {
  4878. "Psy\\": "src/"
  4879. }
  4880. },
  4881. "notification-url": "https://packagist.org/downloads/",
  4882. "license": [
  4883. "MIT"
  4884. ],
  4885. "authors": [
  4886. {
  4887. "name": "Justin Hileman",
  4888. "email": "justin@justinhileman.info",
  4889. "homepage": "http://justinhileman.com"
  4890. }
  4891. ],
  4892. "description": "An interactive shell for modern PHP.",
  4893. "homepage": "http://psysh.org",
  4894. "keywords": [
  4895. "REPL",
  4896. "console",
  4897. "interactive",
  4898. "shell"
  4899. ],
  4900. "support": {
  4901. "issues": "https://github.com/bobthecow/psysh/issues",
  4902. "source": "https://github.com/bobthecow/psysh/tree/v0.11.16"
  4903. },
  4904. "time": "2023-04-26T12:53:57+00:00"
  4905. },
  4906. {
  4907. "name": "qirolab/laravel-themer",
  4908. "version": "2.1.0",
  4909. "source": {
  4910. "type": "git",
  4911. "url": "https://github.com/qirolab/laravel-themer.git",
  4912. "reference": "f643b371411e063fb0d42bffb1586df6ec70972b"
  4913. },
  4914. "dist": {
  4915. "type": "zip",
  4916. "url": "https://api.github.com/repos/qirolab/laravel-themer/zipball/f643b371411e063fb0d42bffb1586df6ec70972b",
  4917. "reference": "f643b371411e063fb0d42bffb1586df6ec70972b",
  4918. "shasum": ""
  4919. },
  4920. "require": {
  4921. "facade/ignition-contracts": "^1.0",
  4922. "illuminate/support": "^9.19|^10.0",
  4923. "php": ">=7.1.0"
  4924. },
  4925. "require-dev": {
  4926. "orchestra/testbench": "^7.0|^8.0",
  4927. "phpunit/phpunit": "^8.3|^9.0",
  4928. "vimeo/psalm": "^4.0"
  4929. },
  4930. "type": "library",
  4931. "extra": {
  4932. "laravel": {
  4933. "providers": [
  4934. "Qirolab\\Theme\\ThemeServiceProvider"
  4935. ]
  4936. }
  4937. },
  4938. "autoload": {
  4939. "psr-4": {
  4940. "Qirolab\\Theme\\": "src",
  4941. "Qirolab\\Theme\\Database\\Factories\\": "database/factories"
  4942. }
  4943. },
  4944. "notification-url": "https://packagist.org/downloads/",
  4945. "license": [
  4946. "MIT"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "Harish Kumar",
  4951. "email": "harish@qirolab.com",
  4952. "homepage": "https://qirolab.com",
  4953. "role": "Developer"
  4954. }
  4955. ],
  4956. "description": "A Laravel theme manager, that will help you organize and maintain your themes inside Laravel projects.",
  4957. "homepage": "https://qirolab.com",
  4958. "keywords": [
  4959. "laravel",
  4960. "laravel-theme",
  4961. "qirolab",
  4962. "theme"
  4963. ],
  4964. "support": {
  4965. "issues": "https://github.com/qirolab/laravel-themer/issues",
  4966. "source": "https://github.com/qirolab/laravel-themer/tree/2.1.0"
  4967. },
  4968. "funding": [
  4969. {
  4970. "url": "https://www.buymeacoffee.com/qirolab",
  4971. "type": "other"
  4972. }
  4973. ],
  4974. "time": "2023-02-14T12:31:27+00:00"
  4975. },
  4976. {
  4977. "name": "ralouphie/getallheaders",
  4978. "version": "3.0.3",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://github.com/ralouphie/getallheaders.git",
  4982. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4987. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4988. "shasum": ""
  4989. },
  4990. "require": {
  4991. "php": ">=5.6"
  4992. },
  4993. "require-dev": {
  4994. "php-coveralls/php-coveralls": "^2.1",
  4995. "phpunit/phpunit": "^5 || ^6.5"
  4996. },
  4997. "type": "library",
  4998. "autoload": {
  4999. "files": [
  5000. "src/getallheaders.php"
  5001. ]
  5002. },
  5003. "notification-url": "https://packagist.org/downloads/",
  5004. "license": [
  5005. "MIT"
  5006. ],
  5007. "authors": [
  5008. {
  5009. "name": "Ralph Khattar",
  5010. "email": "ralph.khattar@gmail.com"
  5011. }
  5012. ],
  5013. "description": "A polyfill for getallheaders.",
  5014. "support": {
  5015. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5016. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5017. },
  5018. "time": "2019-03-08T08:55:37+00:00"
  5019. },
  5020. {
  5021. "name": "ramsey/collection",
  5022. "version": "2.0.0",
  5023. "source": {
  5024. "type": "git",
  5025. "url": "https://github.com/ramsey/collection.git",
  5026. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  5027. },
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  5031. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  5032. "shasum": ""
  5033. },
  5034. "require": {
  5035. "php": "^8.1"
  5036. },
  5037. "require-dev": {
  5038. "captainhook/plugin-composer": "^5.3",
  5039. "ergebnis/composer-normalize": "^2.28.3",
  5040. "fakerphp/faker": "^1.21",
  5041. "hamcrest/hamcrest-php": "^2.0",
  5042. "jangregor/phpstan-prophecy": "^1.0",
  5043. "mockery/mockery": "^1.5",
  5044. "php-parallel-lint/php-console-highlighter": "^1.0",
  5045. "php-parallel-lint/php-parallel-lint": "^1.3",
  5046. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  5047. "phpspec/prophecy-phpunit": "^2.0",
  5048. "phpstan/extension-installer": "^1.2",
  5049. "phpstan/phpstan": "^1.9",
  5050. "phpstan/phpstan-mockery": "^1.1",
  5051. "phpstan/phpstan-phpunit": "^1.3",
  5052. "phpunit/phpunit": "^9.5",
  5053. "psalm/plugin-mockery": "^1.1",
  5054. "psalm/plugin-phpunit": "^0.18.4",
  5055. "ramsey/coding-standard": "^2.0.3",
  5056. "ramsey/conventional-commits": "^1.3",
  5057. "vimeo/psalm": "^5.4"
  5058. },
  5059. "type": "library",
  5060. "extra": {
  5061. "captainhook": {
  5062. "force-install": true
  5063. },
  5064. "ramsey/conventional-commits": {
  5065. "configFile": "conventional-commits.json"
  5066. }
  5067. },
  5068. "autoload": {
  5069. "psr-4": {
  5070. "Ramsey\\Collection\\": "src/"
  5071. }
  5072. },
  5073. "notification-url": "https://packagist.org/downloads/",
  5074. "license": [
  5075. "MIT"
  5076. ],
  5077. "authors": [
  5078. {
  5079. "name": "Ben Ramsey",
  5080. "email": "ben@benramsey.com",
  5081. "homepage": "https://benramsey.com"
  5082. }
  5083. ],
  5084. "description": "A PHP library for representing and manipulating collections.",
  5085. "keywords": [
  5086. "array",
  5087. "collection",
  5088. "hash",
  5089. "map",
  5090. "queue",
  5091. "set"
  5092. ],
  5093. "support": {
  5094. "issues": "https://github.com/ramsey/collection/issues",
  5095. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  5096. },
  5097. "funding": [
  5098. {
  5099. "url": "https://github.com/ramsey",
  5100. "type": "github"
  5101. },
  5102. {
  5103. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5104. "type": "tidelift"
  5105. }
  5106. ],
  5107. "time": "2022-12-31T21:50:55+00:00"
  5108. },
  5109. {
  5110. "name": "ramsey/uuid",
  5111. "version": "4.7.4",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://github.com/ramsey/uuid.git",
  5115. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  5120. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  5121. "shasum": ""
  5122. },
  5123. "require": {
  5124. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  5125. "ext-json": "*",
  5126. "php": "^8.0",
  5127. "ramsey/collection": "^1.2 || ^2.0"
  5128. },
  5129. "replace": {
  5130. "rhumsaa/uuid": "self.version"
  5131. },
  5132. "require-dev": {
  5133. "captainhook/captainhook": "^5.10",
  5134. "captainhook/plugin-composer": "^5.3",
  5135. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5136. "doctrine/annotations": "^1.8",
  5137. "ergebnis/composer-normalize": "^2.15",
  5138. "mockery/mockery": "^1.3",
  5139. "paragonie/random-lib": "^2",
  5140. "php-mock/php-mock": "^2.2",
  5141. "php-mock/php-mock-mockery": "^1.3",
  5142. "php-parallel-lint/php-parallel-lint": "^1.1",
  5143. "phpbench/phpbench": "^1.0",
  5144. "phpstan/extension-installer": "^1.1",
  5145. "phpstan/phpstan": "^1.8",
  5146. "phpstan/phpstan-mockery": "^1.1",
  5147. "phpstan/phpstan-phpunit": "^1.1",
  5148. "phpunit/phpunit": "^8.5 || ^9",
  5149. "ramsey/composer-repl": "^1.4",
  5150. "slevomat/coding-standard": "^8.4",
  5151. "squizlabs/php_codesniffer": "^3.5",
  5152. "vimeo/psalm": "^4.9"
  5153. },
  5154. "suggest": {
  5155. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5156. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5157. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5158. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5159. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5160. },
  5161. "type": "library",
  5162. "extra": {
  5163. "captainhook": {
  5164. "force-install": true
  5165. }
  5166. },
  5167. "autoload": {
  5168. "files": [
  5169. "src/functions.php"
  5170. ],
  5171. "psr-4": {
  5172. "Ramsey\\Uuid\\": "src/"
  5173. }
  5174. },
  5175. "notification-url": "https://packagist.org/downloads/",
  5176. "license": [
  5177. "MIT"
  5178. ],
  5179. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5180. "keywords": [
  5181. "guid",
  5182. "identifier",
  5183. "uuid"
  5184. ],
  5185. "support": {
  5186. "issues": "https://github.com/ramsey/uuid/issues",
  5187. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  5188. },
  5189. "funding": [
  5190. {
  5191. "url": "https://github.com/ramsey",
  5192. "type": "github"
  5193. },
  5194. {
  5195. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5196. "type": "tidelift"
  5197. }
  5198. ],
  5199. "time": "2023-04-15T23:01:58+00:00"
  5200. },
  5201. {
  5202. "name": "sabberworm/php-css-parser",
  5203. "version": "8.4.0",
  5204. "source": {
  5205. "type": "git",
  5206. "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
  5207. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30"
  5208. },
  5209. "dist": {
  5210. "type": "zip",
  5211. "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/e41d2140031d533348b2192a83f02d8dd8a71d30",
  5212. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30",
  5213. "shasum": ""
  5214. },
  5215. "require": {
  5216. "ext-iconv": "*",
  5217. "php": ">=5.6.20"
  5218. },
  5219. "require-dev": {
  5220. "codacy/coverage": "^1.4",
  5221. "phpunit/phpunit": "^4.8.36"
  5222. },
  5223. "suggest": {
  5224. "ext-mbstring": "for parsing UTF-8 CSS"
  5225. },
  5226. "type": "library",
  5227. "autoload": {
  5228. "psr-4": {
  5229. "Sabberworm\\CSS\\": "src/"
  5230. }
  5231. },
  5232. "notification-url": "https://packagist.org/downloads/",
  5233. "license": [
  5234. "MIT"
  5235. ],
  5236. "authors": [
  5237. {
  5238. "name": "Raphael Schweikert"
  5239. }
  5240. ],
  5241. "description": "Parser for CSS Files written in PHP",
  5242. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  5243. "keywords": [
  5244. "css",
  5245. "parser",
  5246. "stylesheet"
  5247. ],
  5248. "support": {
  5249. "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
  5250. "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.4.0"
  5251. },
  5252. "time": "2021-12-11T13:40:54+00:00"
  5253. },
  5254. {
  5255. "name": "socialiteproviders/discord",
  5256. "version": "4.1.2",
  5257. "source": {
  5258. "type": "git",
  5259. "url": "https://github.com/SocialiteProviders/Discord.git",
  5260. "reference": "11f6a8ded5b1948723886f2e5413b91139fcce6b"
  5261. },
  5262. "dist": {
  5263. "type": "zip",
  5264. "url": "https://api.github.com/repos/SocialiteProviders/Discord/zipball/11f6a8ded5b1948723886f2e5413b91139fcce6b",
  5265. "reference": "11f6a8ded5b1948723886f2e5413b91139fcce6b",
  5266. "shasum": ""
  5267. },
  5268. "require": {
  5269. "ext-json": "*",
  5270. "php": "^7.4 || ^8.0",
  5271. "socialiteproviders/manager": "~4.0"
  5272. },
  5273. "type": "library",
  5274. "autoload": {
  5275. "psr-4": {
  5276. "SocialiteProviders\\Discord\\": ""
  5277. }
  5278. },
  5279. "notification-url": "https://packagist.org/downloads/",
  5280. "license": [
  5281. "MIT"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "Christopher Eklund",
  5286. "email": "eklundchristopher@gmail.com"
  5287. }
  5288. ],
  5289. "description": "Discord OAuth2 Provider for Laravel Socialite",
  5290. "keywords": [
  5291. "discord",
  5292. "laravel",
  5293. "oauth",
  5294. "provider",
  5295. "socialite"
  5296. ],
  5297. "support": {
  5298. "docs": "https://socialiteproviders.com/discord",
  5299. "issues": "https://github.com/socialiteproviders/providers/issues",
  5300. "source": "https://github.com/socialiteproviders/providers"
  5301. },
  5302. "time": "2023-02-01T08:54:49+00:00"
  5303. },
  5304. {
  5305. "name": "socialiteproviders/manager",
  5306. "version": "v4.3.0",
  5307. "source": {
  5308. "type": "git",
  5309. "url": "https://github.com/SocialiteProviders/Manager.git",
  5310. "reference": "47402cbc5b7ef445317e799bf12fd5a12062206c"
  5311. },
  5312. "dist": {
  5313. "type": "zip",
  5314. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/47402cbc5b7ef445317e799bf12fd5a12062206c",
  5315. "reference": "47402cbc5b7ef445317e799bf12fd5a12062206c",
  5316. "shasum": ""
  5317. },
  5318. "require": {
  5319. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  5320. "laravel/socialite": "~5.0",
  5321. "php": "^7.4 || ^8.0"
  5322. },
  5323. "require-dev": {
  5324. "mockery/mockery": "^1.2",
  5325. "phpunit/phpunit": "^6.0 || ^9.0"
  5326. },
  5327. "type": "library",
  5328. "extra": {
  5329. "laravel": {
  5330. "providers": [
  5331. "SocialiteProviders\\Manager\\ServiceProvider"
  5332. ]
  5333. }
  5334. },
  5335. "autoload": {
  5336. "psr-4": {
  5337. "SocialiteProviders\\Manager\\": "src/"
  5338. }
  5339. },
  5340. "notification-url": "https://packagist.org/downloads/",
  5341. "license": [
  5342. "MIT"
  5343. ],
  5344. "authors": [
  5345. {
  5346. "name": "Andy Wendt",
  5347. "email": "andy@awendt.com"
  5348. },
  5349. {
  5350. "name": "Anton Komarev",
  5351. "email": "a.komarev@cybercog.su"
  5352. },
  5353. {
  5354. "name": "Miguel Piedrafita",
  5355. "email": "soy@miguelpiedrafita.com"
  5356. },
  5357. {
  5358. "name": "atymic",
  5359. "email": "atymicq@gmail.com",
  5360. "homepage": "https://atymic.dev"
  5361. }
  5362. ],
  5363. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5364. "homepage": "https://socialiteproviders.com",
  5365. "keywords": [
  5366. "laravel",
  5367. "manager",
  5368. "oauth",
  5369. "providers",
  5370. "socialite"
  5371. ],
  5372. "support": {
  5373. "issues": "https://github.com/socialiteproviders/manager/issues",
  5374. "source": "https://github.com/socialiteproviders/manager"
  5375. },
  5376. "time": "2023-01-26T23:11:27+00:00"
  5377. },
  5378. {
  5379. "name": "spatie/laravel-activitylog",
  5380. "version": "4.7.3",
  5381. "source": {
  5382. "type": "git",
  5383. "url": "https://github.com/spatie/laravel-activitylog.git",
  5384. "reference": "ec65a478a909b8df1b4f0c3c45de2592ca7639e5"
  5385. },
  5386. "dist": {
  5387. "type": "zip",
  5388. "url": "https://api.github.com/repos/spatie/laravel-activitylog/zipball/ec65a478a909b8df1b4f0c3c45de2592ca7639e5",
  5389. "reference": "ec65a478a909b8df1b4f0c3c45de2592ca7639e5",
  5390. "shasum": ""
  5391. },
  5392. "require": {
  5393. "illuminate/config": "^8.0 || ^9.0 || ^10.0",
  5394. "illuminate/database": "^8.69 || ^9.27 || ^10.0",
  5395. "illuminate/support": "^8.0 || ^9.0 || ^10.0",
  5396. "php": "^8.0",
  5397. "spatie/laravel-package-tools": "^1.6.3"
  5398. },
  5399. "require-dev": {
  5400. "ext-json": "*",
  5401. "orchestra/testbench": "^6.23 || ^7.0 || ^8.0",
  5402. "pestphp/pest": "^1.20"
  5403. },
  5404. "type": "library",
  5405. "extra": {
  5406. "laravel": {
  5407. "providers": [
  5408. "Spatie\\Activitylog\\ActivitylogServiceProvider"
  5409. ]
  5410. }
  5411. },
  5412. "autoload": {
  5413. "files": [
  5414. "src/helpers.php"
  5415. ],
  5416. "psr-4": {
  5417. "Spatie\\Activitylog\\": "src"
  5418. }
  5419. },
  5420. "notification-url": "https://packagist.org/downloads/",
  5421. "license": [
  5422. "MIT"
  5423. ],
  5424. "authors": [
  5425. {
  5426. "name": "Freek Van der Herten",
  5427. "email": "freek@spatie.be",
  5428. "homepage": "https://spatie.be",
  5429. "role": "Developer"
  5430. },
  5431. {
  5432. "name": "Sebastian De Deyne",
  5433. "email": "sebastian@spatie.be",
  5434. "homepage": "https://spatie.be",
  5435. "role": "Developer"
  5436. },
  5437. {
  5438. "name": "Tom Witkowski",
  5439. "email": "dev.gummibeer@gmail.com",
  5440. "homepage": "https://gummibeer.de",
  5441. "role": "Developer"
  5442. }
  5443. ],
  5444. "description": "A very simple activity logger to monitor the users of your website or application",
  5445. "homepage": "https://github.com/spatie/activitylog",
  5446. "keywords": [
  5447. "activity",
  5448. "laravel",
  5449. "log",
  5450. "spatie",
  5451. "user"
  5452. ],
  5453. "support": {
  5454. "issues": "https://github.com/spatie/laravel-activitylog/issues",
  5455. "source": "https://github.com/spatie/laravel-activitylog/tree/4.7.3"
  5456. },
  5457. "funding": [
  5458. {
  5459. "url": "https://spatie.be/open-source/support-us",
  5460. "type": "custom"
  5461. },
  5462. {
  5463. "url": "https://github.com/spatie",
  5464. "type": "github"
  5465. }
  5466. ],
  5467. "time": "2023-01-25T17:04:51+00:00"
  5468. },
  5469. {
  5470. "name": "spatie/laravel-package-tools",
  5471. "version": "1.15.0",
  5472. "source": {
  5473. "type": "git",
  5474. "url": "https://github.com/spatie/laravel-package-tools.git",
  5475. "reference": "efab1844b8826443135201c4443690f032c3d533"
  5476. },
  5477. "dist": {
  5478. "type": "zip",
  5479. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533",
  5480. "reference": "efab1844b8826443135201c4443690f032c3d533",
  5481. "shasum": ""
  5482. },
  5483. "require": {
  5484. "illuminate/contracts": "^9.28|^10.0",
  5485. "php": "^8.0"
  5486. },
  5487. "require-dev": {
  5488. "mockery/mockery": "^1.5",
  5489. "orchestra/testbench": "^7.7|^8.0",
  5490. "pestphp/pest": "^1.22",
  5491. "phpunit/phpunit": "^9.5.24",
  5492. "spatie/pest-plugin-test-time": "^1.1"
  5493. },
  5494. "type": "library",
  5495. "autoload": {
  5496. "psr-4": {
  5497. "Spatie\\LaravelPackageTools\\": "src"
  5498. }
  5499. },
  5500. "notification-url": "https://packagist.org/downloads/",
  5501. "license": [
  5502. "MIT"
  5503. ],
  5504. "authors": [
  5505. {
  5506. "name": "Freek Van der Herten",
  5507. "email": "freek@spatie.be",
  5508. "role": "Developer"
  5509. }
  5510. ],
  5511. "description": "Tools for creating Laravel packages",
  5512. "homepage": "https://github.com/spatie/laravel-package-tools",
  5513. "keywords": [
  5514. "laravel-package-tools",
  5515. "spatie"
  5516. ],
  5517. "support": {
  5518. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  5519. "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0"
  5520. },
  5521. "funding": [
  5522. {
  5523. "url": "https://github.com/spatie",
  5524. "type": "github"
  5525. }
  5526. ],
  5527. "time": "2023-04-27T08:09:01+00:00"
  5528. },
  5529. {
  5530. "name": "spatie/laravel-permission",
  5531. "version": "5.10.1",
  5532. "source": {
  5533. "type": "git",
  5534. "url": "https://github.com/spatie/laravel-permission.git",
  5535. "reference": "d08b3ffc5870cce4a47a39f22174947b33c191ae"
  5536. },
  5537. "dist": {
  5538. "type": "zip",
  5539. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/d08b3ffc5870cce4a47a39f22174947b33c191ae",
  5540. "reference": "d08b3ffc5870cce4a47a39f22174947b33c191ae",
  5541. "shasum": ""
  5542. },
  5543. "require": {
  5544. "illuminate/auth": "^7.0|^8.0|^9.0|^10.0",
  5545. "illuminate/container": "^7.0|^8.0|^9.0|^10.0",
  5546. "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0",
  5547. "illuminate/database": "^7.0|^8.0|^9.0|^10.0",
  5548. "php": "^7.3|^8.0"
  5549. },
  5550. "require-dev": {
  5551. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
  5552. "phpunit/phpunit": "^9.4",
  5553. "predis/predis": "^1.1"
  5554. },
  5555. "type": "library",
  5556. "extra": {
  5557. "branch-alias": {
  5558. "dev-main": "5.x-dev",
  5559. "dev-master": "5.x-dev"
  5560. },
  5561. "laravel": {
  5562. "providers": [
  5563. "Spatie\\Permission\\PermissionServiceProvider"
  5564. ]
  5565. }
  5566. },
  5567. "autoload": {
  5568. "files": [
  5569. "src/helpers.php"
  5570. ],
  5571. "psr-4": {
  5572. "Spatie\\Permission\\": "src"
  5573. }
  5574. },
  5575. "notification-url": "https://packagist.org/downloads/",
  5576. "license": [
  5577. "MIT"
  5578. ],
  5579. "authors": [
  5580. {
  5581. "name": "Freek Van der Herten",
  5582. "email": "freek@spatie.be",
  5583. "homepage": "https://spatie.be",
  5584. "role": "Developer"
  5585. }
  5586. ],
  5587. "description": "Permission handling for Laravel 6.0 and up",
  5588. "homepage": "https://github.com/spatie/laravel-permission",
  5589. "keywords": [
  5590. "acl",
  5591. "laravel",
  5592. "permission",
  5593. "permissions",
  5594. "rbac",
  5595. "roles",
  5596. "security",
  5597. "spatie"
  5598. ],
  5599. "support": {
  5600. "issues": "https://github.com/spatie/laravel-permission/issues",
  5601. "source": "https://github.com/spatie/laravel-permission/tree/5.10.1"
  5602. },
  5603. "funding": [
  5604. {
  5605. "url": "https://github.com/spatie",
  5606. "type": "github"
  5607. }
  5608. ],
  5609. "time": "2023-04-12T17:08:32+00:00"
  5610. },
  5611. {
  5612. "name": "spatie/laravel-query-builder",
  5613. "version": "5.2.0",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://github.com/spatie/laravel-query-builder.git",
  5617. "reference": "7b3911f61dcaa27804b80f30b73a468a9539e850"
  5618. },
  5619. "dist": {
  5620. "type": "zip",
  5621. "url": "https://api.github.com/repos/spatie/laravel-query-builder/zipball/7b3911f61dcaa27804b80f30b73a468a9539e850",
  5622. "reference": "7b3911f61dcaa27804b80f30b73a468a9539e850",
  5623. "shasum": ""
  5624. },
  5625. "require": {
  5626. "illuminate/database": "^9.0|^10.0",
  5627. "illuminate/http": "^9.0|^10.0",
  5628. "illuminate/support": "^9.0|^10.0",
  5629. "php": "^8.0",
  5630. "spatie/laravel-package-tools": "^1.11"
  5631. },
  5632. "require-dev": {
  5633. "ext-json": "*",
  5634. "mockery/mockery": "^1.4",
  5635. "orchestra/testbench": "^7.0|^8.0",
  5636. "pestphp/pest": "^1.20",
  5637. "spatie/laravel-ray": "^1.28"
  5638. },
  5639. "type": "library",
  5640. "extra": {
  5641. "laravel": {
  5642. "providers": [
  5643. "Spatie\\QueryBuilder\\QueryBuilderServiceProvider"
  5644. ]
  5645. }
  5646. },
  5647. "autoload": {
  5648. "psr-4": {
  5649. "Spatie\\QueryBuilder\\": "src",
  5650. "Spatie\\QueryBuilder\\Database\\Factories\\": "database/factories"
  5651. }
  5652. },
  5653. "notification-url": "https://packagist.org/downloads/",
  5654. "license": [
  5655. "MIT"
  5656. ],
  5657. "authors": [
  5658. {
  5659. "name": "Alex Vanderbist",
  5660. "email": "alex@spatie.be",
  5661. "homepage": "https://spatie.be",
  5662. "role": "Developer"
  5663. }
  5664. ],
  5665. "description": "Easily build Eloquent queries from API requests",
  5666. "homepage": "https://github.com/spatie/laravel-query-builder",
  5667. "keywords": [
  5668. "laravel-query-builder",
  5669. "spatie"
  5670. ],
  5671. "support": {
  5672. "issues": "https://github.com/spatie/laravel-query-builder/issues",
  5673. "source": "https://github.com/spatie/laravel-query-builder"
  5674. },
  5675. "funding": [
  5676. {
  5677. "url": "https://spatie.be/open-source/support-us",
  5678. "type": "custom"
  5679. }
  5680. ],
  5681. "time": "2023-02-24T15:48:30+00:00"
  5682. },
  5683. {
  5684. "name": "spatie/laravel-settings",
  5685. "version": "2.8.3",
  5686. "source": {
  5687. "type": "git",
  5688. "url": "https://github.com/spatie/laravel-settings.git",
  5689. "reference": "9193603a3e02d19af9f2fd0d309ac2469b25d680"
  5690. },
  5691. "dist": {
  5692. "type": "zip",
  5693. "url": "https://api.github.com/repos/spatie/laravel-settings/zipball/9193603a3e02d19af9f2fd0d309ac2469b25d680",
  5694. "reference": "9193603a3e02d19af9f2fd0d309ac2469b25d680",
  5695. "shasum": ""
  5696. },
  5697. "require": {
  5698. "ext-json": "*",
  5699. "illuminate/database": "^8.73|^9.0|^10.0",
  5700. "php": "^7.4|^8.0",
  5701. "phpdocumentor/type-resolver": "^1.5",
  5702. "spatie/temporary-directory": "^1.3|^2.0"
  5703. },
  5704. "require-dev": {
  5705. "ext-redis": "*",
  5706. "mockery/mockery": "^1.4",
  5707. "nunomaduro/larastan": "^2.0",
  5708. "orchestra/testbench": "^6.23|^7.0|^8.0",
  5709. "pestphp/pest": "^1.21",
  5710. "pestphp/pest-plugin-laravel": "^1.2",
  5711. "phpstan/extension-installer": "^1.1",
  5712. "phpstan/phpstan-deprecation-rules": "^1.0",
  5713. "phpstan/phpstan-phpunit": "^1.0",
  5714. "phpunit/phpunit": "^9.5",
  5715. "spatie/laravel-data": "^1.0.0|^2.0.0",
  5716. "spatie/pest-plugin-snapshots": "^1.1",
  5717. "spatie/phpunit-snapshot-assertions": "^4.2",
  5718. "spatie/ray": "^1.36"
  5719. },
  5720. "suggest": {
  5721. "spatie/data-transfer-object": "Allows for DTO casting to settings. (deprecated)"
  5722. },
  5723. "type": "library",
  5724. "extra": {
  5725. "laravel": {
  5726. "providers": [
  5727. "Spatie\\LaravelSettings\\LaravelSettingsServiceProvider"
  5728. ]
  5729. }
  5730. },
  5731. "autoload": {
  5732. "psr-4": {
  5733. "Spatie\\LaravelSettings\\": "src"
  5734. }
  5735. },
  5736. "notification-url": "https://packagist.org/downloads/",
  5737. "license": [
  5738. "MIT"
  5739. ],
  5740. "authors": [
  5741. {
  5742. "name": "Ruben Van Assche",
  5743. "email": "ruben@spatie.be",
  5744. "homepage": "https://spatie.be",
  5745. "role": "Developer"
  5746. }
  5747. ],
  5748. "description": "Store your application settings",
  5749. "homepage": "https://github.com/spatie/laravel-settings",
  5750. "keywords": [
  5751. "laravel-settings",
  5752. "spatie"
  5753. ],
  5754. "support": {
  5755. "issues": "https://github.com/spatie/laravel-settings/issues",
  5756. "source": "https://github.com/spatie/laravel-settings/tree/2.8.3"
  5757. },
  5758. "funding": [
  5759. {
  5760. "url": "https://spatie.be/open-source/support-us",
  5761. "type": "custom"
  5762. },
  5763. {
  5764. "url": "https://github.com/spatie",
  5765. "type": "github"
  5766. }
  5767. ],
  5768. "time": "2023-03-30T12:47:39+00:00"
  5769. },
  5770. {
  5771. "name": "spatie/laravel-validation-rules",
  5772. "version": "3.2.2",
  5773. "source": {
  5774. "type": "git",
  5775. "url": "https://github.com/spatie/laravel-validation-rules.git",
  5776. "reference": "3cbef3441cb274cd3c12409586f18c3a44d46d0a"
  5777. },
  5778. "dist": {
  5779. "type": "zip",
  5780. "url": "https://api.github.com/repos/spatie/laravel-validation-rules/zipball/3cbef3441cb274cd3c12409586f18c3a44d46d0a",
  5781. "reference": "3cbef3441cb274cd3c12409586f18c3a44d46d0a",
  5782. "shasum": ""
  5783. },
  5784. "require": {
  5785. "illuminate/support": "^8.0|^9.0|^10.0",
  5786. "php": "^8.0"
  5787. },
  5788. "require-dev": {
  5789. "laravel/pint": "^1.3",
  5790. "league/iso3166": "^3.0",
  5791. "myclabs/php-enum": "^1.6",
  5792. "orchestra/testbench": "^6.23|^7.0|^8.0",
  5793. "phpunit/phpunit": "^9.4",
  5794. "spatie/enum": "^2.2|^3.0"
  5795. },
  5796. "suggest": {
  5797. "league/iso3166": "Needed for the CountryCode rule and Currency rule"
  5798. },
  5799. "type": "library",
  5800. "extra": {
  5801. "laravel": {
  5802. "providers": [
  5803. "Spatie\\ValidationRules\\ValidationRulesServiceProvider"
  5804. ]
  5805. }
  5806. },
  5807. "autoload": {
  5808. "psr-4": {
  5809. "Spatie\\ValidationRules\\": "src",
  5810. "Spatie\\ValidationRules\\Database\\Factories\\": "database/factories"
  5811. }
  5812. },
  5813. "notification-url": "https://packagist.org/downloads/",
  5814. "license": [
  5815. "MIT"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "Freek Van der Herten",
  5820. "email": "freek@spatie.be",
  5821. "homepage": "https://spatie.be",
  5822. "role": "Developer"
  5823. }
  5824. ],
  5825. "description": "A set of useful Laravel validation rules",
  5826. "homepage": "https://github.com/spatie/laravel-validation-rules",
  5827. "keywords": [
  5828. "laravel-validation-rules",
  5829. "spatie"
  5830. ],
  5831. "support": {
  5832. "issues": "https://github.com/spatie/laravel-validation-rules/issues",
  5833. "source": "https://github.com/spatie/laravel-validation-rules/tree/3.2.2"
  5834. },
  5835. "funding": [
  5836. {
  5837. "url": "https://github.com/spatie",
  5838. "type": "github"
  5839. }
  5840. ],
  5841. "time": "2023-01-25T16:22:06+00:00"
  5842. },
  5843. {
  5844. "name": "spatie/temporary-directory",
  5845. "version": "2.1.2",
  5846. "source": {
  5847. "type": "git",
  5848. "url": "https://github.com/spatie/temporary-directory.git",
  5849. "reference": "0c804873f6b4042aa8836839dca683c7d0f71831"
  5850. },
  5851. "dist": {
  5852. "type": "zip",
  5853. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/0c804873f6b4042aa8836839dca683c7d0f71831",
  5854. "reference": "0c804873f6b4042aa8836839dca683c7d0f71831",
  5855. "shasum": ""
  5856. },
  5857. "require": {
  5858. "php": "^8.0"
  5859. },
  5860. "require-dev": {
  5861. "phpunit/phpunit": "^9.5"
  5862. },
  5863. "type": "library",
  5864. "autoload": {
  5865. "psr-4": {
  5866. "Spatie\\TemporaryDirectory\\": "src"
  5867. }
  5868. },
  5869. "notification-url": "https://packagist.org/downloads/",
  5870. "license": [
  5871. "MIT"
  5872. ],
  5873. "authors": [
  5874. {
  5875. "name": "Alex Vanderbist",
  5876. "email": "alex@spatie.be",
  5877. "homepage": "https://spatie.be",
  5878. "role": "Developer"
  5879. }
  5880. ],
  5881. "description": "Easily create, use and destroy temporary directories",
  5882. "homepage": "https://github.com/spatie/temporary-directory",
  5883. "keywords": [
  5884. "php",
  5885. "spatie",
  5886. "temporary-directory"
  5887. ],
  5888. "support": {
  5889. "issues": "https://github.com/spatie/temporary-directory/issues",
  5890. "source": "https://github.com/spatie/temporary-directory/tree/2.1.2"
  5891. },
  5892. "funding": [
  5893. {
  5894. "url": "https://spatie.be/open-source/support-us",
  5895. "type": "custom"
  5896. },
  5897. {
  5898. "url": "https://github.com/spatie",
  5899. "type": "github"
  5900. }
  5901. ],
  5902. "time": "2023-04-28T07:47:42+00:00"
  5903. },
  5904. {
  5905. "name": "stripe/stripe-php",
  5906. "version": "v7.128.0",
  5907. "source": {
  5908. "type": "git",
  5909. "url": "https://github.com/stripe/stripe-php.git",
  5910. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e"
  5911. },
  5912. "dist": {
  5913. "type": "zip",
  5914. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c704949c49b72985c76cc61063aa26fefbd2724e",
  5915. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e",
  5916. "shasum": ""
  5917. },
  5918. "require": {
  5919. "ext-curl": "*",
  5920. "ext-json": "*",
  5921. "ext-mbstring": "*",
  5922. "php": ">=5.6.0"
  5923. },
  5924. "require-dev": {
  5925. "friendsofphp/php-cs-fixer": "3.5.0",
  5926. "phpstan/phpstan": "^1.2",
  5927. "phpunit/phpunit": "^5.7 || ^9.0",
  5928. "squizlabs/php_codesniffer": "^3.3"
  5929. },
  5930. "type": "library",
  5931. "extra": {
  5932. "branch-alias": {
  5933. "dev-master": "2.0-dev"
  5934. }
  5935. },
  5936. "autoload": {
  5937. "psr-4": {
  5938. "Stripe\\": "lib/"
  5939. }
  5940. },
  5941. "notification-url": "https://packagist.org/downloads/",
  5942. "license": [
  5943. "MIT"
  5944. ],
  5945. "authors": [
  5946. {
  5947. "name": "Stripe and contributors",
  5948. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5949. }
  5950. ],
  5951. "description": "Stripe PHP Library",
  5952. "homepage": "https://stripe.com/",
  5953. "keywords": [
  5954. "api",
  5955. "payment processing",
  5956. "stripe"
  5957. ],
  5958. "support": {
  5959. "issues": "https://github.com/stripe/stripe-php/issues",
  5960. "source": "https://github.com/stripe/stripe-php/tree/v7.128.0"
  5961. },
  5962. "time": "2022-05-05T17:18:02+00:00"
  5963. },
  5964. {
  5965. "name": "symfony/console",
  5966. "version": "v6.2.10",
  5967. "source": {
  5968. "type": "git",
  5969. "url": "https://github.com/symfony/console.git",
  5970. "reference": "12288d9f4500f84a4d02254d4aa968b15488476f"
  5971. },
  5972. "dist": {
  5973. "type": "zip",
  5974. "url": "https://api.github.com/repos/symfony/console/zipball/12288d9f4500f84a4d02254d4aa968b15488476f",
  5975. "reference": "12288d9f4500f84a4d02254d4aa968b15488476f",
  5976. "shasum": ""
  5977. },
  5978. "require": {
  5979. "php": ">=8.1",
  5980. "symfony/deprecation-contracts": "^2.1|^3",
  5981. "symfony/polyfill-mbstring": "~1.0",
  5982. "symfony/service-contracts": "^1.1|^2|^3",
  5983. "symfony/string": "^5.4|^6.0"
  5984. },
  5985. "conflict": {
  5986. "symfony/dependency-injection": "<5.4",
  5987. "symfony/dotenv": "<5.4",
  5988. "symfony/event-dispatcher": "<5.4",
  5989. "symfony/lock": "<5.4",
  5990. "symfony/process": "<5.4"
  5991. },
  5992. "provide": {
  5993. "psr/log-implementation": "1.0|2.0|3.0"
  5994. },
  5995. "require-dev": {
  5996. "psr/log": "^1|^2|^3",
  5997. "symfony/config": "^5.4|^6.0",
  5998. "symfony/dependency-injection": "^5.4|^6.0",
  5999. "symfony/event-dispatcher": "^5.4|^6.0",
  6000. "symfony/lock": "^5.4|^6.0",
  6001. "symfony/process": "^5.4|^6.0",
  6002. "symfony/var-dumper": "^5.4|^6.0"
  6003. },
  6004. "suggest": {
  6005. "psr/log": "For using the console logger",
  6006. "symfony/event-dispatcher": "",
  6007. "symfony/lock": "",
  6008. "symfony/process": ""
  6009. },
  6010. "type": "library",
  6011. "autoload": {
  6012. "psr-4": {
  6013. "Symfony\\Component\\Console\\": ""
  6014. },
  6015. "exclude-from-classmap": [
  6016. "/Tests/"
  6017. ]
  6018. },
  6019. "notification-url": "https://packagist.org/downloads/",
  6020. "license": [
  6021. "MIT"
  6022. ],
  6023. "authors": [
  6024. {
  6025. "name": "Fabien Potencier",
  6026. "email": "fabien@symfony.com"
  6027. },
  6028. {
  6029. "name": "Symfony Community",
  6030. "homepage": "https://symfony.com/contributors"
  6031. }
  6032. ],
  6033. "description": "Eases the creation of beautiful and testable command line interfaces",
  6034. "homepage": "https://symfony.com",
  6035. "keywords": [
  6036. "cli",
  6037. "command-line",
  6038. "console",
  6039. "terminal"
  6040. ],
  6041. "support": {
  6042. "source": "https://github.com/symfony/console/tree/v6.2.10"
  6043. },
  6044. "funding": [
  6045. {
  6046. "url": "https://symfony.com/sponsor",
  6047. "type": "custom"
  6048. },
  6049. {
  6050. "url": "https://github.com/fabpot",
  6051. "type": "github"
  6052. },
  6053. {
  6054. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6055. "type": "tidelift"
  6056. }
  6057. ],
  6058. "time": "2023-04-28T13:37:43+00:00"
  6059. },
  6060. {
  6061. "name": "symfony/css-selector",
  6062. "version": "v6.2.7",
  6063. "source": {
  6064. "type": "git",
  6065. "url": "https://github.com/symfony/css-selector.git",
  6066. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0"
  6067. },
  6068. "dist": {
  6069. "type": "zip",
  6070. "url": "https://api.github.com/repos/symfony/css-selector/zipball/aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  6071. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  6072. "shasum": ""
  6073. },
  6074. "require": {
  6075. "php": ">=8.1"
  6076. },
  6077. "type": "library",
  6078. "autoload": {
  6079. "psr-4": {
  6080. "Symfony\\Component\\CssSelector\\": ""
  6081. },
  6082. "exclude-from-classmap": [
  6083. "/Tests/"
  6084. ]
  6085. },
  6086. "notification-url": "https://packagist.org/downloads/",
  6087. "license": [
  6088. "MIT"
  6089. ],
  6090. "authors": [
  6091. {
  6092. "name": "Fabien Potencier",
  6093. "email": "fabien@symfony.com"
  6094. },
  6095. {
  6096. "name": "Jean-François Simon",
  6097. "email": "jeanfrancois.simon@sensiolabs.com"
  6098. },
  6099. {
  6100. "name": "Symfony Community",
  6101. "homepage": "https://symfony.com/contributors"
  6102. }
  6103. ],
  6104. "description": "Converts CSS selectors to XPath expressions",
  6105. "homepage": "https://symfony.com",
  6106. "support": {
  6107. "source": "https://github.com/symfony/css-selector/tree/v6.2.7"
  6108. },
  6109. "funding": [
  6110. {
  6111. "url": "https://symfony.com/sponsor",
  6112. "type": "custom"
  6113. },
  6114. {
  6115. "url": "https://github.com/fabpot",
  6116. "type": "github"
  6117. },
  6118. {
  6119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6120. "type": "tidelift"
  6121. }
  6122. ],
  6123. "time": "2023-02-14T08:44:56+00:00"
  6124. },
  6125. {
  6126. "name": "symfony/deprecation-contracts",
  6127. "version": "v3.2.1",
  6128. "source": {
  6129. "type": "git",
  6130. "url": "https://github.com/symfony/deprecation-contracts.git",
  6131. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  6132. },
  6133. "dist": {
  6134. "type": "zip",
  6135. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  6136. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  6137. "shasum": ""
  6138. },
  6139. "require": {
  6140. "php": ">=8.1"
  6141. },
  6142. "type": "library",
  6143. "extra": {
  6144. "branch-alias": {
  6145. "dev-main": "3.3-dev"
  6146. },
  6147. "thanks": {
  6148. "name": "symfony/contracts",
  6149. "url": "https://github.com/symfony/contracts"
  6150. }
  6151. },
  6152. "autoload": {
  6153. "files": [
  6154. "function.php"
  6155. ]
  6156. },
  6157. "notification-url": "https://packagist.org/downloads/",
  6158. "license": [
  6159. "MIT"
  6160. ],
  6161. "authors": [
  6162. {
  6163. "name": "Nicolas Grekas",
  6164. "email": "p@tchwork.com"
  6165. },
  6166. {
  6167. "name": "Symfony Community",
  6168. "homepage": "https://symfony.com/contributors"
  6169. }
  6170. ],
  6171. "description": "A generic function and convention to trigger deprecation notices",
  6172. "homepage": "https://symfony.com",
  6173. "support": {
  6174. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  6175. },
  6176. "funding": [
  6177. {
  6178. "url": "https://symfony.com/sponsor",
  6179. "type": "custom"
  6180. },
  6181. {
  6182. "url": "https://github.com/fabpot",
  6183. "type": "github"
  6184. },
  6185. {
  6186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6187. "type": "tidelift"
  6188. }
  6189. ],
  6190. "time": "2023-03-01T10:25:55+00:00"
  6191. },
  6192. {
  6193. "name": "symfony/error-handler",
  6194. "version": "v6.2.10",
  6195. "source": {
  6196. "type": "git",
  6197. "url": "https://github.com/symfony/error-handler.git",
  6198. "reference": "8b7e9f124640cb0611624a9383176c3e5f7d8cfb"
  6199. },
  6200. "dist": {
  6201. "type": "zip",
  6202. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8b7e9f124640cb0611624a9383176c3e5f7d8cfb",
  6203. "reference": "8b7e9f124640cb0611624a9383176c3e5f7d8cfb",
  6204. "shasum": ""
  6205. },
  6206. "require": {
  6207. "php": ">=8.1",
  6208. "psr/log": "^1|^2|^3",
  6209. "symfony/var-dumper": "^5.4|^6.0"
  6210. },
  6211. "require-dev": {
  6212. "symfony/deprecation-contracts": "^2.1|^3",
  6213. "symfony/http-kernel": "^5.4|^6.0",
  6214. "symfony/serializer": "^5.4|^6.0"
  6215. },
  6216. "bin": [
  6217. "Resources/bin/patch-type-declarations"
  6218. ],
  6219. "type": "library",
  6220. "autoload": {
  6221. "psr-4": {
  6222. "Symfony\\Component\\ErrorHandler\\": ""
  6223. },
  6224. "exclude-from-classmap": [
  6225. "/Tests/"
  6226. ]
  6227. },
  6228. "notification-url": "https://packagist.org/downloads/",
  6229. "license": [
  6230. "MIT"
  6231. ],
  6232. "authors": [
  6233. {
  6234. "name": "Fabien Potencier",
  6235. "email": "fabien@symfony.com"
  6236. },
  6237. {
  6238. "name": "Symfony Community",
  6239. "homepage": "https://symfony.com/contributors"
  6240. }
  6241. ],
  6242. "description": "Provides tools to manage errors and ease debugging PHP code",
  6243. "homepage": "https://symfony.com",
  6244. "support": {
  6245. "source": "https://github.com/symfony/error-handler/tree/v6.2.10"
  6246. },
  6247. "funding": [
  6248. {
  6249. "url": "https://symfony.com/sponsor",
  6250. "type": "custom"
  6251. },
  6252. {
  6253. "url": "https://github.com/fabpot",
  6254. "type": "github"
  6255. },
  6256. {
  6257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6258. "type": "tidelift"
  6259. }
  6260. ],
  6261. "time": "2023-04-18T13:46:08+00:00"
  6262. },
  6263. {
  6264. "name": "symfony/event-dispatcher",
  6265. "version": "v6.2.8",
  6266. "source": {
  6267. "type": "git",
  6268. "url": "https://github.com/symfony/event-dispatcher.git",
  6269. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
  6270. },
  6271. "dist": {
  6272. "type": "zip",
  6273. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  6274. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  6275. "shasum": ""
  6276. },
  6277. "require": {
  6278. "php": ">=8.1",
  6279. "symfony/event-dispatcher-contracts": "^2|^3"
  6280. },
  6281. "conflict": {
  6282. "symfony/dependency-injection": "<5.4"
  6283. },
  6284. "provide": {
  6285. "psr/event-dispatcher-implementation": "1.0",
  6286. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6287. },
  6288. "require-dev": {
  6289. "psr/log": "^1|^2|^3",
  6290. "symfony/config": "^5.4|^6.0",
  6291. "symfony/dependency-injection": "^5.4|^6.0",
  6292. "symfony/error-handler": "^5.4|^6.0",
  6293. "symfony/expression-language": "^5.4|^6.0",
  6294. "symfony/http-foundation": "^5.4|^6.0",
  6295. "symfony/service-contracts": "^1.1|^2|^3",
  6296. "symfony/stopwatch": "^5.4|^6.0"
  6297. },
  6298. "suggest": {
  6299. "symfony/dependency-injection": "",
  6300. "symfony/http-kernel": ""
  6301. },
  6302. "type": "library",
  6303. "autoload": {
  6304. "psr-4": {
  6305. "Symfony\\Component\\EventDispatcher\\": ""
  6306. },
  6307. "exclude-from-classmap": [
  6308. "/Tests/"
  6309. ]
  6310. },
  6311. "notification-url": "https://packagist.org/downloads/",
  6312. "license": [
  6313. "MIT"
  6314. ],
  6315. "authors": [
  6316. {
  6317. "name": "Fabien Potencier",
  6318. "email": "fabien@symfony.com"
  6319. },
  6320. {
  6321. "name": "Symfony Community",
  6322. "homepage": "https://symfony.com/contributors"
  6323. }
  6324. ],
  6325. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6326. "homepage": "https://symfony.com",
  6327. "support": {
  6328. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
  6329. },
  6330. "funding": [
  6331. {
  6332. "url": "https://symfony.com/sponsor",
  6333. "type": "custom"
  6334. },
  6335. {
  6336. "url": "https://github.com/fabpot",
  6337. "type": "github"
  6338. },
  6339. {
  6340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6341. "type": "tidelift"
  6342. }
  6343. ],
  6344. "time": "2023-03-20T16:06:02+00:00"
  6345. },
  6346. {
  6347. "name": "symfony/event-dispatcher-contracts",
  6348. "version": "v3.2.1",
  6349. "source": {
  6350. "type": "git",
  6351. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6352. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
  6353. },
  6354. "dist": {
  6355. "type": "zip",
  6356. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  6357. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  6358. "shasum": ""
  6359. },
  6360. "require": {
  6361. "php": ">=8.1",
  6362. "psr/event-dispatcher": "^1"
  6363. },
  6364. "suggest": {
  6365. "symfony/event-dispatcher-implementation": ""
  6366. },
  6367. "type": "library",
  6368. "extra": {
  6369. "branch-alias": {
  6370. "dev-main": "3.3-dev"
  6371. },
  6372. "thanks": {
  6373. "name": "symfony/contracts",
  6374. "url": "https://github.com/symfony/contracts"
  6375. }
  6376. },
  6377. "autoload": {
  6378. "psr-4": {
  6379. "Symfony\\Contracts\\EventDispatcher\\": ""
  6380. }
  6381. },
  6382. "notification-url": "https://packagist.org/downloads/",
  6383. "license": [
  6384. "MIT"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "Nicolas Grekas",
  6389. "email": "p@tchwork.com"
  6390. },
  6391. {
  6392. "name": "Symfony Community",
  6393. "homepage": "https://symfony.com/contributors"
  6394. }
  6395. ],
  6396. "description": "Generic abstractions related to dispatching event",
  6397. "homepage": "https://symfony.com",
  6398. "keywords": [
  6399. "abstractions",
  6400. "contracts",
  6401. "decoupling",
  6402. "interfaces",
  6403. "interoperability",
  6404. "standards"
  6405. ],
  6406. "support": {
  6407. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
  6408. },
  6409. "funding": [
  6410. {
  6411. "url": "https://symfony.com/sponsor",
  6412. "type": "custom"
  6413. },
  6414. {
  6415. "url": "https://github.com/fabpot",
  6416. "type": "github"
  6417. },
  6418. {
  6419. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6420. "type": "tidelift"
  6421. }
  6422. ],
  6423. "time": "2023-03-01T10:32:47+00:00"
  6424. },
  6425. {
  6426. "name": "symfony/finder",
  6427. "version": "v6.2.7",
  6428. "source": {
  6429. "type": "git",
  6430. "url": "https://github.com/symfony/finder.git",
  6431. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  6432. },
  6433. "dist": {
  6434. "type": "zip",
  6435. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  6436. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  6437. "shasum": ""
  6438. },
  6439. "require": {
  6440. "php": ">=8.1"
  6441. },
  6442. "require-dev": {
  6443. "symfony/filesystem": "^6.0"
  6444. },
  6445. "type": "library",
  6446. "autoload": {
  6447. "psr-4": {
  6448. "Symfony\\Component\\Finder\\": ""
  6449. },
  6450. "exclude-from-classmap": [
  6451. "/Tests/"
  6452. ]
  6453. },
  6454. "notification-url": "https://packagist.org/downloads/",
  6455. "license": [
  6456. "MIT"
  6457. ],
  6458. "authors": [
  6459. {
  6460. "name": "Fabien Potencier",
  6461. "email": "fabien@symfony.com"
  6462. },
  6463. {
  6464. "name": "Symfony Community",
  6465. "homepage": "https://symfony.com/contributors"
  6466. }
  6467. ],
  6468. "description": "Finds files and directories via an intuitive fluent interface",
  6469. "homepage": "https://symfony.com",
  6470. "support": {
  6471. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  6472. },
  6473. "funding": [
  6474. {
  6475. "url": "https://symfony.com/sponsor",
  6476. "type": "custom"
  6477. },
  6478. {
  6479. "url": "https://github.com/fabpot",
  6480. "type": "github"
  6481. },
  6482. {
  6483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6484. "type": "tidelift"
  6485. }
  6486. ],
  6487. "time": "2023-02-16T09:57:23+00:00"
  6488. },
  6489. {
  6490. "name": "symfony/http-client",
  6491. "version": "v6.2.10",
  6492. "source": {
  6493. "type": "git",
  6494. "url": "https://github.com/symfony/http-client.git",
  6495. "reference": "3f5545a91c8e79dedd1a06c4b04e1682c80c42f9"
  6496. },
  6497. "dist": {
  6498. "type": "zip",
  6499. "url": "https://api.github.com/repos/symfony/http-client/zipball/3f5545a91c8e79dedd1a06c4b04e1682c80c42f9",
  6500. "reference": "3f5545a91c8e79dedd1a06c4b04e1682c80c42f9",
  6501. "shasum": ""
  6502. },
  6503. "require": {
  6504. "php": ">=8.1",
  6505. "psr/log": "^1|^2|^3",
  6506. "symfony/deprecation-contracts": "^2.1|^3",
  6507. "symfony/http-client-contracts": "^3",
  6508. "symfony/service-contracts": "^1.0|^2|^3"
  6509. },
  6510. "provide": {
  6511. "php-http/async-client-implementation": "*",
  6512. "php-http/client-implementation": "*",
  6513. "psr/http-client-implementation": "1.0",
  6514. "symfony/http-client-implementation": "3.0"
  6515. },
  6516. "require-dev": {
  6517. "amphp/amp": "^2.5",
  6518. "amphp/http-client": "^4.2.1",
  6519. "amphp/http-tunnel": "^1.0",
  6520. "amphp/socket": "^1.1",
  6521. "guzzlehttp/promises": "^1.4",
  6522. "nyholm/psr7": "^1.0",
  6523. "php-http/httplug": "^1.0|^2.0",
  6524. "psr/http-client": "^1.0",
  6525. "symfony/dependency-injection": "^5.4|^6.0",
  6526. "symfony/http-kernel": "^5.4|^6.0",
  6527. "symfony/process": "^5.4|^6.0",
  6528. "symfony/stopwatch": "^5.4|^6.0"
  6529. },
  6530. "type": "library",
  6531. "autoload": {
  6532. "psr-4": {
  6533. "Symfony\\Component\\HttpClient\\": ""
  6534. },
  6535. "exclude-from-classmap": [
  6536. "/Tests/"
  6537. ]
  6538. },
  6539. "notification-url": "https://packagist.org/downloads/",
  6540. "license": [
  6541. "MIT"
  6542. ],
  6543. "authors": [
  6544. {
  6545. "name": "Nicolas Grekas",
  6546. "email": "p@tchwork.com"
  6547. },
  6548. {
  6549. "name": "Symfony Community",
  6550. "homepage": "https://symfony.com/contributors"
  6551. }
  6552. ],
  6553. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  6554. "homepage": "https://symfony.com",
  6555. "keywords": [
  6556. "http"
  6557. ],
  6558. "support": {
  6559. "source": "https://github.com/symfony/http-client/tree/v6.2.10"
  6560. },
  6561. "funding": [
  6562. {
  6563. "url": "https://symfony.com/sponsor",
  6564. "type": "custom"
  6565. },
  6566. {
  6567. "url": "https://github.com/fabpot",
  6568. "type": "github"
  6569. },
  6570. {
  6571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6572. "type": "tidelift"
  6573. }
  6574. ],
  6575. "time": "2023-04-20T13:12:48+00:00"
  6576. },
  6577. {
  6578. "name": "symfony/http-client-contracts",
  6579. "version": "v3.2.1",
  6580. "source": {
  6581. "type": "git",
  6582. "url": "https://github.com/symfony/http-client-contracts.git",
  6583. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b"
  6584. },
  6585. "dist": {
  6586. "type": "zip",
  6587. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  6588. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  6589. "shasum": ""
  6590. },
  6591. "require": {
  6592. "php": ">=8.1"
  6593. },
  6594. "suggest": {
  6595. "symfony/http-client-implementation": ""
  6596. },
  6597. "type": "library",
  6598. "extra": {
  6599. "branch-alias": {
  6600. "dev-main": "3.3-dev"
  6601. },
  6602. "thanks": {
  6603. "name": "symfony/contracts",
  6604. "url": "https://github.com/symfony/contracts"
  6605. }
  6606. },
  6607. "autoload": {
  6608. "psr-4": {
  6609. "Symfony\\Contracts\\HttpClient\\": ""
  6610. },
  6611. "exclude-from-classmap": [
  6612. "/Test/"
  6613. ]
  6614. },
  6615. "notification-url": "https://packagist.org/downloads/",
  6616. "license": [
  6617. "MIT"
  6618. ],
  6619. "authors": [
  6620. {
  6621. "name": "Nicolas Grekas",
  6622. "email": "p@tchwork.com"
  6623. },
  6624. {
  6625. "name": "Symfony Community",
  6626. "homepage": "https://symfony.com/contributors"
  6627. }
  6628. ],
  6629. "description": "Generic abstractions related to HTTP clients",
  6630. "homepage": "https://symfony.com",
  6631. "keywords": [
  6632. "abstractions",
  6633. "contracts",
  6634. "decoupling",
  6635. "interfaces",
  6636. "interoperability",
  6637. "standards"
  6638. ],
  6639. "support": {
  6640. "source": "https://github.com/symfony/http-client-contracts/tree/v3.2.1"
  6641. },
  6642. "funding": [
  6643. {
  6644. "url": "https://symfony.com/sponsor",
  6645. "type": "custom"
  6646. },
  6647. {
  6648. "url": "https://github.com/fabpot",
  6649. "type": "github"
  6650. },
  6651. {
  6652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6653. "type": "tidelift"
  6654. }
  6655. ],
  6656. "time": "2023-03-01T10:32:47+00:00"
  6657. },
  6658. {
  6659. "name": "symfony/http-foundation",
  6660. "version": "v6.2.10",
  6661. "source": {
  6662. "type": "git",
  6663. "url": "https://github.com/symfony/http-foundation.git",
  6664. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc"
  6665. },
  6666. "dist": {
  6667. "type": "zip",
  6668. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/49adbb92bcb4e3c2943719d2756271e8b9602acc",
  6669. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc",
  6670. "shasum": ""
  6671. },
  6672. "require": {
  6673. "php": ">=8.1",
  6674. "symfony/deprecation-contracts": "^2.1|^3",
  6675. "symfony/polyfill-mbstring": "~1.1"
  6676. },
  6677. "conflict": {
  6678. "symfony/cache": "<6.2"
  6679. },
  6680. "require-dev": {
  6681. "predis/predis": "~1.0",
  6682. "symfony/cache": "^5.4|^6.0",
  6683. "symfony/dependency-injection": "^5.4|^6.0",
  6684. "symfony/expression-language": "^5.4|^6.0",
  6685. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6686. "symfony/mime": "^5.4|^6.0",
  6687. "symfony/rate-limiter": "^5.2|^6.0"
  6688. },
  6689. "suggest": {
  6690. "symfony/mime": "To use the file extension guesser"
  6691. },
  6692. "type": "library",
  6693. "autoload": {
  6694. "psr-4": {
  6695. "Symfony\\Component\\HttpFoundation\\": ""
  6696. },
  6697. "exclude-from-classmap": [
  6698. "/Tests/"
  6699. ]
  6700. },
  6701. "notification-url": "https://packagist.org/downloads/",
  6702. "license": [
  6703. "MIT"
  6704. ],
  6705. "authors": [
  6706. {
  6707. "name": "Fabien Potencier",
  6708. "email": "fabien@symfony.com"
  6709. },
  6710. {
  6711. "name": "Symfony Community",
  6712. "homepage": "https://symfony.com/contributors"
  6713. }
  6714. ],
  6715. "description": "Defines an object-oriented layer for the HTTP specification",
  6716. "homepage": "https://symfony.com",
  6717. "support": {
  6718. "source": "https://github.com/symfony/http-foundation/tree/v6.2.10"
  6719. },
  6720. "funding": [
  6721. {
  6722. "url": "https://symfony.com/sponsor",
  6723. "type": "custom"
  6724. },
  6725. {
  6726. "url": "https://github.com/fabpot",
  6727. "type": "github"
  6728. },
  6729. {
  6730. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6731. "type": "tidelift"
  6732. }
  6733. ],
  6734. "time": "2023-04-18T13:46:08+00:00"
  6735. },
  6736. {
  6737. "name": "symfony/http-kernel",
  6738. "version": "v6.2.10",
  6739. "source": {
  6740. "type": "git",
  6741. "url": "https://github.com/symfony/http-kernel.git",
  6742. "reference": "81064a65a5496f17d2b6984f6519406f98864215"
  6743. },
  6744. "dist": {
  6745. "type": "zip",
  6746. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/81064a65a5496f17d2b6984f6519406f98864215",
  6747. "reference": "81064a65a5496f17d2b6984f6519406f98864215",
  6748. "shasum": ""
  6749. },
  6750. "require": {
  6751. "php": ">=8.1",
  6752. "psr/log": "^1|^2|^3",
  6753. "symfony/deprecation-contracts": "^2.1|^3",
  6754. "symfony/error-handler": "^6.1",
  6755. "symfony/event-dispatcher": "^5.4|^6.0",
  6756. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6757. "symfony/polyfill-ctype": "^1.8"
  6758. },
  6759. "conflict": {
  6760. "symfony/browser-kit": "<5.4",
  6761. "symfony/cache": "<5.4",
  6762. "symfony/config": "<6.1",
  6763. "symfony/console": "<5.4",
  6764. "symfony/dependency-injection": "<6.2",
  6765. "symfony/doctrine-bridge": "<5.4",
  6766. "symfony/form": "<5.4",
  6767. "symfony/http-client": "<5.4",
  6768. "symfony/mailer": "<5.4",
  6769. "symfony/messenger": "<5.4",
  6770. "symfony/translation": "<5.4",
  6771. "symfony/twig-bridge": "<5.4",
  6772. "symfony/validator": "<5.4",
  6773. "twig/twig": "<2.13"
  6774. },
  6775. "provide": {
  6776. "psr/log-implementation": "1.0|2.0|3.0"
  6777. },
  6778. "require-dev": {
  6779. "psr/cache": "^1.0|^2.0|^3.0",
  6780. "symfony/browser-kit": "^5.4|^6.0",
  6781. "symfony/config": "^6.1",
  6782. "symfony/console": "^5.4|^6.0",
  6783. "symfony/css-selector": "^5.4|^6.0",
  6784. "symfony/dependency-injection": "^6.2",
  6785. "symfony/dom-crawler": "^5.4|^6.0",
  6786. "symfony/expression-language": "^5.4|^6.0",
  6787. "symfony/finder": "^5.4|^6.0",
  6788. "symfony/http-client-contracts": "^1.1|^2|^3",
  6789. "symfony/process": "^5.4|^6.0",
  6790. "symfony/routing": "^5.4|^6.0",
  6791. "symfony/stopwatch": "^5.4|^6.0",
  6792. "symfony/translation": "^5.4|^6.0",
  6793. "symfony/translation-contracts": "^1.1|^2|^3",
  6794. "symfony/uid": "^5.4|^6.0",
  6795. "twig/twig": "^2.13|^3.0.4"
  6796. },
  6797. "suggest": {
  6798. "symfony/browser-kit": "",
  6799. "symfony/config": "",
  6800. "symfony/console": "",
  6801. "symfony/dependency-injection": ""
  6802. },
  6803. "type": "library",
  6804. "autoload": {
  6805. "psr-4": {
  6806. "Symfony\\Component\\HttpKernel\\": ""
  6807. },
  6808. "exclude-from-classmap": [
  6809. "/Tests/"
  6810. ]
  6811. },
  6812. "notification-url": "https://packagist.org/downloads/",
  6813. "license": [
  6814. "MIT"
  6815. ],
  6816. "authors": [
  6817. {
  6818. "name": "Fabien Potencier",
  6819. "email": "fabien@symfony.com"
  6820. },
  6821. {
  6822. "name": "Symfony Community",
  6823. "homepage": "https://symfony.com/contributors"
  6824. }
  6825. ],
  6826. "description": "Provides a structured process for converting a Request into a Response",
  6827. "homepage": "https://symfony.com",
  6828. "support": {
  6829. "source": "https://github.com/symfony/http-kernel/tree/v6.2.10"
  6830. },
  6831. "funding": [
  6832. {
  6833. "url": "https://symfony.com/sponsor",
  6834. "type": "custom"
  6835. },
  6836. {
  6837. "url": "https://github.com/fabpot",
  6838. "type": "github"
  6839. },
  6840. {
  6841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6842. "type": "tidelift"
  6843. }
  6844. ],
  6845. "time": "2023-04-28T13:50:28+00:00"
  6846. },
  6847. {
  6848. "name": "symfony/intl",
  6849. "version": "v6.2.10",
  6850. "source": {
  6851. "type": "git",
  6852. "url": "https://github.com/symfony/intl.git",
  6853. "reference": "860c99e53149d22df1900d3aefdaeb17adb7669d"
  6854. },
  6855. "dist": {
  6856. "type": "zip",
  6857. "url": "https://api.github.com/repos/symfony/intl/zipball/860c99e53149d22df1900d3aefdaeb17adb7669d",
  6858. "reference": "860c99e53149d22df1900d3aefdaeb17adb7669d",
  6859. "shasum": ""
  6860. },
  6861. "require": {
  6862. "php": ">=8.1"
  6863. },
  6864. "require-dev": {
  6865. "symfony/filesystem": "^5.4|^6.0",
  6866. "symfony/finder": "^5.4|^6.0"
  6867. },
  6868. "type": "library",
  6869. "autoload": {
  6870. "psr-4": {
  6871. "Symfony\\Component\\Intl\\": ""
  6872. },
  6873. "exclude-from-classmap": [
  6874. "/Tests/"
  6875. ]
  6876. },
  6877. "notification-url": "https://packagist.org/downloads/",
  6878. "license": [
  6879. "MIT"
  6880. ],
  6881. "authors": [
  6882. {
  6883. "name": "Bernhard Schussek",
  6884. "email": "bschussek@gmail.com"
  6885. },
  6886. {
  6887. "name": "Eriksen Costa",
  6888. "email": "eriksen.costa@infranology.com.br"
  6889. },
  6890. {
  6891. "name": "Igor Wiedler",
  6892. "email": "igor@wiedler.ch"
  6893. },
  6894. {
  6895. "name": "Symfony Community",
  6896. "homepage": "https://symfony.com/contributors"
  6897. }
  6898. ],
  6899. "description": "Provides access to the localization data of the ICU library",
  6900. "homepage": "https://symfony.com",
  6901. "keywords": [
  6902. "i18n",
  6903. "icu",
  6904. "internationalization",
  6905. "intl",
  6906. "l10n",
  6907. "localization"
  6908. ],
  6909. "support": {
  6910. "source": "https://github.com/symfony/intl/tree/v6.2.10"
  6911. },
  6912. "funding": [
  6913. {
  6914. "url": "https://symfony.com/sponsor",
  6915. "type": "custom"
  6916. },
  6917. {
  6918. "url": "https://github.com/fabpot",
  6919. "type": "github"
  6920. },
  6921. {
  6922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6923. "type": "tidelift"
  6924. }
  6925. ],
  6926. "time": "2023-04-14T16:23:31+00:00"
  6927. },
  6928. {
  6929. "name": "symfony/mailer",
  6930. "version": "v6.2.8",
  6931. "source": {
  6932. "type": "git",
  6933. "url": "https://github.com/symfony/mailer.git",
  6934. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17"
  6935. },
  6936. "dist": {
  6937. "type": "zip",
  6938. "url": "https://api.github.com/repos/symfony/mailer/zipball/bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  6939. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  6940. "shasum": ""
  6941. },
  6942. "require": {
  6943. "egulias/email-validator": "^2.1.10|^3|^4",
  6944. "php": ">=8.1",
  6945. "psr/event-dispatcher": "^1",
  6946. "psr/log": "^1|^2|^3",
  6947. "symfony/event-dispatcher": "^5.4|^6.0",
  6948. "symfony/mime": "^6.2",
  6949. "symfony/service-contracts": "^1.1|^2|^3"
  6950. },
  6951. "conflict": {
  6952. "symfony/http-kernel": "<5.4",
  6953. "symfony/messenger": "<6.2",
  6954. "symfony/mime": "<6.2",
  6955. "symfony/twig-bridge": "<6.2.1"
  6956. },
  6957. "require-dev": {
  6958. "symfony/console": "^5.4|^6.0",
  6959. "symfony/http-client": "^5.4|^6.0",
  6960. "symfony/messenger": "^6.2",
  6961. "symfony/twig-bridge": "^6.2"
  6962. },
  6963. "type": "library",
  6964. "autoload": {
  6965. "psr-4": {
  6966. "Symfony\\Component\\Mailer\\": ""
  6967. },
  6968. "exclude-from-classmap": [
  6969. "/Tests/"
  6970. ]
  6971. },
  6972. "notification-url": "https://packagist.org/downloads/",
  6973. "license": [
  6974. "MIT"
  6975. ],
  6976. "authors": [
  6977. {
  6978. "name": "Fabien Potencier",
  6979. "email": "fabien@symfony.com"
  6980. },
  6981. {
  6982. "name": "Symfony Community",
  6983. "homepage": "https://symfony.com/contributors"
  6984. }
  6985. ],
  6986. "description": "Helps sending emails",
  6987. "homepage": "https://symfony.com",
  6988. "support": {
  6989. "source": "https://github.com/symfony/mailer/tree/v6.2.8"
  6990. },
  6991. "funding": [
  6992. {
  6993. "url": "https://symfony.com/sponsor",
  6994. "type": "custom"
  6995. },
  6996. {
  6997. "url": "https://github.com/fabpot",
  6998. "type": "github"
  6999. },
  7000. {
  7001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7002. "type": "tidelift"
  7003. }
  7004. ],
  7005. "time": "2023-03-14T15:00:05+00:00"
  7006. },
  7007. {
  7008. "name": "symfony/mailgun-mailer",
  7009. "version": "v6.2.10",
  7010. "source": {
  7011. "type": "git",
  7012. "url": "https://github.com/symfony/mailgun-mailer.git",
  7013. "reference": "2c9d47b11cc154d2db3f571030cd965d128de1a8"
  7014. },
  7015. "dist": {
  7016. "type": "zip",
  7017. "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/2c9d47b11cc154d2db3f571030cd965d128de1a8",
  7018. "reference": "2c9d47b11cc154d2db3f571030cd965d128de1a8",
  7019. "shasum": ""
  7020. },
  7021. "require": {
  7022. "php": ">=8.1",
  7023. "symfony/mailer": "^5.4.21|^6.2.7"
  7024. },
  7025. "require-dev": {
  7026. "symfony/http-client": "^5.4|^6.0"
  7027. },
  7028. "type": "symfony-mailer-bridge",
  7029. "autoload": {
  7030. "psr-4": {
  7031. "Symfony\\Component\\Mailer\\Bridge\\Mailgun\\": ""
  7032. },
  7033. "exclude-from-classmap": [
  7034. "/Tests/"
  7035. ]
  7036. },
  7037. "notification-url": "https://packagist.org/downloads/",
  7038. "license": [
  7039. "MIT"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "Fabien Potencier",
  7044. "email": "fabien@symfony.com"
  7045. },
  7046. {
  7047. "name": "Symfony Community",
  7048. "homepage": "https://symfony.com/contributors"
  7049. }
  7050. ],
  7051. "description": "Symfony Mailgun Mailer Bridge",
  7052. "homepage": "https://symfony.com",
  7053. "support": {
  7054. "source": "https://github.com/symfony/mailgun-mailer/tree/v6.2.10"
  7055. },
  7056. "funding": [
  7057. {
  7058. "url": "https://symfony.com/sponsor",
  7059. "type": "custom"
  7060. },
  7061. {
  7062. "url": "https://github.com/fabpot",
  7063. "type": "github"
  7064. },
  7065. {
  7066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7067. "type": "tidelift"
  7068. }
  7069. ],
  7070. "time": "2023-04-14T16:23:31+00:00"
  7071. },
  7072. {
  7073. "name": "symfony/mime",
  7074. "version": "v6.2.10",
  7075. "source": {
  7076. "type": "git",
  7077. "url": "https://github.com/symfony/mime.git",
  7078. "reference": "b6c137fc53a9f7c4c951cd3f362b3734c7a97723"
  7079. },
  7080. "dist": {
  7081. "type": "zip",
  7082. "url": "https://api.github.com/repos/symfony/mime/zipball/b6c137fc53a9f7c4c951cd3f362b3734c7a97723",
  7083. "reference": "b6c137fc53a9f7c4c951cd3f362b3734c7a97723",
  7084. "shasum": ""
  7085. },
  7086. "require": {
  7087. "php": ">=8.1",
  7088. "symfony/polyfill-intl-idn": "^1.10",
  7089. "symfony/polyfill-mbstring": "^1.0"
  7090. },
  7091. "conflict": {
  7092. "egulias/email-validator": "~3.0.0",
  7093. "phpdocumentor/reflection-docblock": "<3.2.2",
  7094. "phpdocumentor/type-resolver": "<1.4.0",
  7095. "symfony/mailer": "<5.4",
  7096. "symfony/serializer": "<6.2"
  7097. },
  7098. "require-dev": {
  7099. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7100. "league/html-to-markdown": "^5.0",
  7101. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7102. "symfony/dependency-injection": "^5.4|^6.0",
  7103. "symfony/property-access": "^5.4|^6.0",
  7104. "symfony/property-info": "^5.4|^6.0",
  7105. "symfony/serializer": "^6.2"
  7106. },
  7107. "type": "library",
  7108. "autoload": {
  7109. "psr-4": {
  7110. "Symfony\\Component\\Mime\\": ""
  7111. },
  7112. "exclude-from-classmap": [
  7113. "/Tests/"
  7114. ]
  7115. },
  7116. "notification-url": "https://packagist.org/downloads/",
  7117. "license": [
  7118. "MIT"
  7119. ],
  7120. "authors": [
  7121. {
  7122. "name": "Fabien Potencier",
  7123. "email": "fabien@symfony.com"
  7124. },
  7125. {
  7126. "name": "Symfony Community",
  7127. "homepage": "https://symfony.com/contributors"
  7128. }
  7129. ],
  7130. "description": "Allows manipulating MIME messages",
  7131. "homepage": "https://symfony.com",
  7132. "keywords": [
  7133. "mime",
  7134. "mime-type"
  7135. ],
  7136. "support": {
  7137. "source": "https://github.com/symfony/mime/tree/v6.2.10"
  7138. },
  7139. "funding": [
  7140. {
  7141. "url": "https://symfony.com/sponsor",
  7142. "type": "custom"
  7143. },
  7144. {
  7145. "url": "https://github.com/fabpot",
  7146. "type": "github"
  7147. },
  7148. {
  7149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7150. "type": "tidelift"
  7151. }
  7152. ],
  7153. "time": "2023-04-19T09:54:16+00:00"
  7154. },
  7155. {
  7156. "name": "symfony/polyfill-ctype",
  7157. "version": "v1.27.0",
  7158. "source": {
  7159. "type": "git",
  7160. "url": "https://github.com/symfony/polyfill-ctype.git",
  7161. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  7162. },
  7163. "dist": {
  7164. "type": "zip",
  7165. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  7166. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  7167. "shasum": ""
  7168. },
  7169. "require": {
  7170. "php": ">=7.1"
  7171. },
  7172. "provide": {
  7173. "ext-ctype": "*"
  7174. },
  7175. "suggest": {
  7176. "ext-ctype": "For best performance"
  7177. },
  7178. "type": "library",
  7179. "extra": {
  7180. "branch-alias": {
  7181. "dev-main": "1.27-dev"
  7182. },
  7183. "thanks": {
  7184. "name": "symfony/polyfill",
  7185. "url": "https://github.com/symfony/polyfill"
  7186. }
  7187. },
  7188. "autoload": {
  7189. "files": [
  7190. "bootstrap.php"
  7191. ],
  7192. "psr-4": {
  7193. "Symfony\\Polyfill\\Ctype\\": ""
  7194. }
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "MIT"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Gert de Pagter",
  7203. "email": "BackEndTea@gmail.com"
  7204. },
  7205. {
  7206. "name": "Symfony Community",
  7207. "homepage": "https://symfony.com/contributors"
  7208. }
  7209. ],
  7210. "description": "Symfony polyfill for ctype functions",
  7211. "homepage": "https://symfony.com",
  7212. "keywords": [
  7213. "compatibility",
  7214. "ctype",
  7215. "polyfill",
  7216. "portable"
  7217. ],
  7218. "support": {
  7219. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  7220. },
  7221. "funding": [
  7222. {
  7223. "url": "https://symfony.com/sponsor",
  7224. "type": "custom"
  7225. },
  7226. {
  7227. "url": "https://github.com/fabpot",
  7228. "type": "github"
  7229. },
  7230. {
  7231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7232. "type": "tidelift"
  7233. }
  7234. ],
  7235. "time": "2022-11-03T14:55:06+00:00"
  7236. },
  7237. {
  7238. "name": "symfony/polyfill-intl-grapheme",
  7239. "version": "v1.27.0",
  7240. "source": {
  7241. "type": "git",
  7242. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7243. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  7244. },
  7245. "dist": {
  7246. "type": "zip",
  7247. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  7248. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  7249. "shasum": ""
  7250. },
  7251. "require": {
  7252. "php": ">=7.1"
  7253. },
  7254. "suggest": {
  7255. "ext-intl": "For best performance"
  7256. },
  7257. "type": "library",
  7258. "extra": {
  7259. "branch-alias": {
  7260. "dev-main": "1.27-dev"
  7261. },
  7262. "thanks": {
  7263. "name": "symfony/polyfill",
  7264. "url": "https://github.com/symfony/polyfill"
  7265. }
  7266. },
  7267. "autoload": {
  7268. "files": [
  7269. "bootstrap.php"
  7270. ],
  7271. "psr-4": {
  7272. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7273. }
  7274. },
  7275. "notification-url": "https://packagist.org/downloads/",
  7276. "license": [
  7277. "MIT"
  7278. ],
  7279. "authors": [
  7280. {
  7281. "name": "Nicolas Grekas",
  7282. "email": "p@tchwork.com"
  7283. },
  7284. {
  7285. "name": "Symfony Community",
  7286. "homepage": "https://symfony.com/contributors"
  7287. }
  7288. ],
  7289. "description": "Symfony polyfill for intl's grapheme_* functions",
  7290. "homepage": "https://symfony.com",
  7291. "keywords": [
  7292. "compatibility",
  7293. "grapheme",
  7294. "intl",
  7295. "polyfill",
  7296. "portable",
  7297. "shim"
  7298. ],
  7299. "support": {
  7300. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  7301. },
  7302. "funding": [
  7303. {
  7304. "url": "https://symfony.com/sponsor",
  7305. "type": "custom"
  7306. },
  7307. {
  7308. "url": "https://github.com/fabpot",
  7309. "type": "github"
  7310. },
  7311. {
  7312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7313. "type": "tidelift"
  7314. }
  7315. ],
  7316. "time": "2022-11-03T14:55:06+00:00"
  7317. },
  7318. {
  7319. "name": "symfony/polyfill-intl-idn",
  7320. "version": "v1.27.0",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7324. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  7329. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  7330. "shasum": ""
  7331. },
  7332. "require": {
  7333. "php": ">=7.1",
  7334. "symfony/polyfill-intl-normalizer": "^1.10",
  7335. "symfony/polyfill-php72": "^1.10"
  7336. },
  7337. "suggest": {
  7338. "ext-intl": "For best performance"
  7339. },
  7340. "type": "library",
  7341. "extra": {
  7342. "branch-alias": {
  7343. "dev-main": "1.27-dev"
  7344. },
  7345. "thanks": {
  7346. "name": "symfony/polyfill",
  7347. "url": "https://github.com/symfony/polyfill"
  7348. }
  7349. },
  7350. "autoload": {
  7351. "files": [
  7352. "bootstrap.php"
  7353. ],
  7354. "psr-4": {
  7355. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7356. }
  7357. },
  7358. "notification-url": "https://packagist.org/downloads/",
  7359. "license": [
  7360. "MIT"
  7361. ],
  7362. "authors": [
  7363. {
  7364. "name": "Laurent Bassin",
  7365. "email": "laurent@bassin.info"
  7366. },
  7367. {
  7368. "name": "Trevor Rowbotham",
  7369. "email": "trevor.rowbotham@pm.me"
  7370. },
  7371. {
  7372. "name": "Symfony Community",
  7373. "homepage": "https://symfony.com/contributors"
  7374. }
  7375. ],
  7376. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7377. "homepage": "https://symfony.com",
  7378. "keywords": [
  7379. "compatibility",
  7380. "idn",
  7381. "intl",
  7382. "polyfill",
  7383. "portable",
  7384. "shim"
  7385. ],
  7386. "support": {
  7387. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  7388. },
  7389. "funding": [
  7390. {
  7391. "url": "https://symfony.com/sponsor",
  7392. "type": "custom"
  7393. },
  7394. {
  7395. "url": "https://github.com/fabpot",
  7396. "type": "github"
  7397. },
  7398. {
  7399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7400. "type": "tidelift"
  7401. }
  7402. ],
  7403. "time": "2022-11-03T14:55:06+00:00"
  7404. },
  7405. {
  7406. "name": "symfony/polyfill-intl-normalizer",
  7407. "version": "v1.27.0",
  7408. "source": {
  7409. "type": "git",
  7410. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7411. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  7412. },
  7413. "dist": {
  7414. "type": "zip",
  7415. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  7416. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  7417. "shasum": ""
  7418. },
  7419. "require": {
  7420. "php": ">=7.1"
  7421. },
  7422. "suggest": {
  7423. "ext-intl": "For best performance"
  7424. },
  7425. "type": "library",
  7426. "extra": {
  7427. "branch-alias": {
  7428. "dev-main": "1.27-dev"
  7429. },
  7430. "thanks": {
  7431. "name": "symfony/polyfill",
  7432. "url": "https://github.com/symfony/polyfill"
  7433. }
  7434. },
  7435. "autoload": {
  7436. "files": [
  7437. "bootstrap.php"
  7438. ],
  7439. "psr-4": {
  7440. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7441. },
  7442. "classmap": [
  7443. "Resources/stubs"
  7444. ]
  7445. },
  7446. "notification-url": "https://packagist.org/downloads/",
  7447. "license": [
  7448. "MIT"
  7449. ],
  7450. "authors": [
  7451. {
  7452. "name": "Nicolas Grekas",
  7453. "email": "p@tchwork.com"
  7454. },
  7455. {
  7456. "name": "Symfony Community",
  7457. "homepage": "https://symfony.com/contributors"
  7458. }
  7459. ],
  7460. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7461. "homepage": "https://symfony.com",
  7462. "keywords": [
  7463. "compatibility",
  7464. "intl",
  7465. "normalizer",
  7466. "polyfill",
  7467. "portable",
  7468. "shim"
  7469. ],
  7470. "support": {
  7471. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  7472. },
  7473. "funding": [
  7474. {
  7475. "url": "https://symfony.com/sponsor",
  7476. "type": "custom"
  7477. },
  7478. {
  7479. "url": "https://github.com/fabpot",
  7480. "type": "github"
  7481. },
  7482. {
  7483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7484. "type": "tidelift"
  7485. }
  7486. ],
  7487. "time": "2022-11-03T14:55:06+00:00"
  7488. },
  7489. {
  7490. "name": "symfony/polyfill-mbstring",
  7491. "version": "v1.27.0",
  7492. "source": {
  7493. "type": "git",
  7494. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7495. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  7496. },
  7497. "dist": {
  7498. "type": "zip",
  7499. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  7500. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  7501. "shasum": ""
  7502. },
  7503. "require": {
  7504. "php": ">=7.1"
  7505. },
  7506. "provide": {
  7507. "ext-mbstring": "*"
  7508. },
  7509. "suggest": {
  7510. "ext-mbstring": "For best performance"
  7511. },
  7512. "type": "library",
  7513. "extra": {
  7514. "branch-alias": {
  7515. "dev-main": "1.27-dev"
  7516. },
  7517. "thanks": {
  7518. "name": "symfony/polyfill",
  7519. "url": "https://github.com/symfony/polyfill"
  7520. }
  7521. },
  7522. "autoload": {
  7523. "files": [
  7524. "bootstrap.php"
  7525. ],
  7526. "psr-4": {
  7527. "Symfony\\Polyfill\\Mbstring\\": ""
  7528. }
  7529. },
  7530. "notification-url": "https://packagist.org/downloads/",
  7531. "license": [
  7532. "MIT"
  7533. ],
  7534. "authors": [
  7535. {
  7536. "name": "Nicolas Grekas",
  7537. "email": "p@tchwork.com"
  7538. },
  7539. {
  7540. "name": "Symfony Community",
  7541. "homepage": "https://symfony.com/contributors"
  7542. }
  7543. ],
  7544. "description": "Symfony polyfill for the Mbstring extension",
  7545. "homepage": "https://symfony.com",
  7546. "keywords": [
  7547. "compatibility",
  7548. "mbstring",
  7549. "polyfill",
  7550. "portable",
  7551. "shim"
  7552. ],
  7553. "support": {
  7554. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  7555. },
  7556. "funding": [
  7557. {
  7558. "url": "https://symfony.com/sponsor",
  7559. "type": "custom"
  7560. },
  7561. {
  7562. "url": "https://github.com/fabpot",
  7563. "type": "github"
  7564. },
  7565. {
  7566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7567. "type": "tidelift"
  7568. }
  7569. ],
  7570. "time": "2022-11-03T14:55:06+00:00"
  7571. },
  7572. {
  7573. "name": "symfony/polyfill-php72",
  7574. "version": "v1.27.0",
  7575. "source": {
  7576. "type": "git",
  7577. "url": "https://github.com/symfony/polyfill-php72.git",
  7578. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  7579. },
  7580. "dist": {
  7581. "type": "zip",
  7582. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  7583. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  7584. "shasum": ""
  7585. },
  7586. "require": {
  7587. "php": ">=7.1"
  7588. },
  7589. "type": "library",
  7590. "extra": {
  7591. "branch-alias": {
  7592. "dev-main": "1.27-dev"
  7593. },
  7594. "thanks": {
  7595. "name": "symfony/polyfill",
  7596. "url": "https://github.com/symfony/polyfill"
  7597. }
  7598. },
  7599. "autoload": {
  7600. "files": [
  7601. "bootstrap.php"
  7602. ],
  7603. "psr-4": {
  7604. "Symfony\\Polyfill\\Php72\\": ""
  7605. }
  7606. },
  7607. "notification-url": "https://packagist.org/downloads/",
  7608. "license": [
  7609. "MIT"
  7610. ],
  7611. "authors": [
  7612. {
  7613. "name": "Nicolas Grekas",
  7614. "email": "p@tchwork.com"
  7615. },
  7616. {
  7617. "name": "Symfony Community",
  7618. "homepage": "https://symfony.com/contributors"
  7619. }
  7620. ],
  7621. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7622. "homepage": "https://symfony.com",
  7623. "keywords": [
  7624. "compatibility",
  7625. "polyfill",
  7626. "portable",
  7627. "shim"
  7628. ],
  7629. "support": {
  7630. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  7631. },
  7632. "funding": [
  7633. {
  7634. "url": "https://symfony.com/sponsor",
  7635. "type": "custom"
  7636. },
  7637. {
  7638. "url": "https://github.com/fabpot",
  7639. "type": "github"
  7640. },
  7641. {
  7642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7643. "type": "tidelift"
  7644. }
  7645. ],
  7646. "time": "2022-11-03T14:55:06+00:00"
  7647. },
  7648. {
  7649. "name": "symfony/polyfill-php80",
  7650. "version": "v1.27.0",
  7651. "source": {
  7652. "type": "git",
  7653. "url": "https://github.com/symfony/polyfill-php80.git",
  7654. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  7655. },
  7656. "dist": {
  7657. "type": "zip",
  7658. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  7659. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  7660. "shasum": ""
  7661. },
  7662. "require": {
  7663. "php": ">=7.1"
  7664. },
  7665. "type": "library",
  7666. "extra": {
  7667. "branch-alias": {
  7668. "dev-main": "1.27-dev"
  7669. },
  7670. "thanks": {
  7671. "name": "symfony/polyfill",
  7672. "url": "https://github.com/symfony/polyfill"
  7673. }
  7674. },
  7675. "autoload": {
  7676. "files": [
  7677. "bootstrap.php"
  7678. ],
  7679. "psr-4": {
  7680. "Symfony\\Polyfill\\Php80\\": ""
  7681. },
  7682. "classmap": [
  7683. "Resources/stubs"
  7684. ]
  7685. },
  7686. "notification-url": "https://packagist.org/downloads/",
  7687. "license": [
  7688. "MIT"
  7689. ],
  7690. "authors": [
  7691. {
  7692. "name": "Ion Bazan",
  7693. "email": "ion.bazan@gmail.com"
  7694. },
  7695. {
  7696. "name": "Nicolas Grekas",
  7697. "email": "p@tchwork.com"
  7698. },
  7699. {
  7700. "name": "Symfony Community",
  7701. "homepage": "https://symfony.com/contributors"
  7702. }
  7703. ],
  7704. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7705. "homepage": "https://symfony.com",
  7706. "keywords": [
  7707. "compatibility",
  7708. "polyfill",
  7709. "portable",
  7710. "shim"
  7711. ],
  7712. "support": {
  7713. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  7714. },
  7715. "funding": [
  7716. {
  7717. "url": "https://symfony.com/sponsor",
  7718. "type": "custom"
  7719. },
  7720. {
  7721. "url": "https://github.com/fabpot",
  7722. "type": "github"
  7723. },
  7724. {
  7725. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7726. "type": "tidelift"
  7727. }
  7728. ],
  7729. "time": "2022-11-03T14:55:06+00:00"
  7730. },
  7731. {
  7732. "name": "symfony/polyfill-uuid",
  7733. "version": "v1.27.0",
  7734. "source": {
  7735. "type": "git",
  7736. "url": "https://github.com/symfony/polyfill-uuid.git",
  7737. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  7738. },
  7739. "dist": {
  7740. "type": "zip",
  7741. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7742. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7743. "shasum": ""
  7744. },
  7745. "require": {
  7746. "php": ">=7.1"
  7747. },
  7748. "provide": {
  7749. "ext-uuid": "*"
  7750. },
  7751. "suggest": {
  7752. "ext-uuid": "For best performance"
  7753. },
  7754. "type": "library",
  7755. "extra": {
  7756. "branch-alias": {
  7757. "dev-main": "1.27-dev"
  7758. },
  7759. "thanks": {
  7760. "name": "symfony/polyfill",
  7761. "url": "https://github.com/symfony/polyfill"
  7762. }
  7763. },
  7764. "autoload": {
  7765. "files": [
  7766. "bootstrap.php"
  7767. ],
  7768. "psr-4": {
  7769. "Symfony\\Polyfill\\Uuid\\": ""
  7770. }
  7771. },
  7772. "notification-url": "https://packagist.org/downloads/",
  7773. "license": [
  7774. "MIT"
  7775. ],
  7776. "authors": [
  7777. {
  7778. "name": "Grégoire Pineau",
  7779. "email": "lyrixx@lyrixx.info"
  7780. },
  7781. {
  7782. "name": "Symfony Community",
  7783. "homepage": "https://symfony.com/contributors"
  7784. }
  7785. ],
  7786. "description": "Symfony polyfill for uuid functions",
  7787. "homepage": "https://symfony.com",
  7788. "keywords": [
  7789. "compatibility",
  7790. "polyfill",
  7791. "portable",
  7792. "uuid"
  7793. ],
  7794. "support": {
  7795. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  7796. },
  7797. "funding": [
  7798. {
  7799. "url": "https://symfony.com/sponsor",
  7800. "type": "custom"
  7801. },
  7802. {
  7803. "url": "https://github.com/fabpot",
  7804. "type": "github"
  7805. },
  7806. {
  7807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7808. "type": "tidelift"
  7809. }
  7810. ],
  7811. "time": "2022-11-03T14:55:06+00:00"
  7812. },
  7813. {
  7814. "name": "symfony/process",
  7815. "version": "v6.2.10",
  7816. "source": {
  7817. "type": "git",
  7818. "url": "https://github.com/symfony/process.git",
  7819. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e"
  7820. },
  7821. "dist": {
  7822. "type": "zip",
  7823. "url": "https://api.github.com/repos/symfony/process/zipball/b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  7824. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  7825. "shasum": ""
  7826. },
  7827. "require": {
  7828. "php": ">=8.1"
  7829. },
  7830. "type": "library",
  7831. "autoload": {
  7832. "psr-4": {
  7833. "Symfony\\Component\\Process\\": ""
  7834. },
  7835. "exclude-from-classmap": [
  7836. "/Tests/"
  7837. ]
  7838. },
  7839. "notification-url": "https://packagist.org/downloads/",
  7840. "license": [
  7841. "MIT"
  7842. ],
  7843. "authors": [
  7844. {
  7845. "name": "Fabien Potencier",
  7846. "email": "fabien@symfony.com"
  7847. },
  7848. {
  7849. "name": "Symfony Community",
  7850. "homepage": "https://symfony.com/contributors"
  7851. }
  7852. ],
  7853. "description": "Executes commands in sub-processes",
  7854. "homepage": "https://symfony.com",
  7855. "support": {
  7856. "source": "https://github.com/symfony/process/tree/v6.2.10"
  7857. },
  7858. "funding": [
  7859. {
  7860. "url": "https://symfony.com/sponsor",
  7861. "type": "custom"
  7862. },
  7863. {
  7864. "url": "https://github.com/fabpot",
  7865. "type": "github"
  7866. },
  7867. {
  7868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7869. "type": "tidelift"
  7870. }
  7871. ],
  7872. "time": "2023-04-18T13:56:57+00:00"
  7873. },
  7874. {
  7875. "name": "symfony/routing",
  7876. "version": "v6.2.8",
  7877. "source": {
  7878. "type": "git",
  7879. "url": "https://github.com/symfony/routing.git",
  7880. "reference": "69062e2823f03b82265d73a966999660f0e1e404"
  7881. },
  7882. "dist": {
  7883. "type": "zip",
  7884. "url": "https://api.github.com/repos/symfony/routing/zipball/69062e2823f03b82265d73a966999660f0e1e404",
  7885. "reference": "69062e2823f03b82265d73a966999660f0e1e404",
  7886. "shasum": ""
  7887. },
  7888. "require": {
  7889. "php": ">=8.1"
  7890. },
  7891. "conflict": {
  7892. "doctrine/annotations": "<1.12",
  7893. "symfony/config": "<6.2",
  7894. "symfony/dependency-injection": "<5.4",
  7895. "symfony/yaml": "<5.4"
  7896. },
  7897. "require-dev": {
  7898. "doctrine/annotations": "^1.12|^2",
  7899. "psr/log": "^1|^2|^3",
  7900. "symfony/config": "^6.2",
  7901. "symfony/dependency-injection": "^5.4|^6.0",
  7902. "symfony/expression-language": "^5.4|^6.0",
  7903. "symfony/http-foundation": "^5.4|^6.0",
  7904. "symfony/yaml": "^5.4|^6.0"
  7905. },
  7906. "suggest": {
  7907. "symfony/config": "For using the all-in-one router or any loader",
  7908. "symfony/expression-language": "For using expression matching",
  7909. "symfony/http-foundation": "For using a Symfony Request object",
  7910. "symfony/yaml": "For using the YAML loader"
  7911. },
  7912. "type": "library",
  7913. "autoload": {
  7914. "psr-4": {
  7915. "Symfony\\Component\\Routing\\": ""
  7916. },
  7917. "exclude-from-classmap": [
  7918. "/Tests/"
  7919. ]
  7920. },
  7921. "notification-url": "https://packagist.org/downloads/",
  7922. "license": [
  7923. "MIT"
  7924. ],
  7925. "authors": [
  7926. {
  7927. "name": "Fabien Potencier",
  7928. "email": "fabien@symfony.com"
  7929. },
  7930. {
  7931. "name": "Symfony Community",
  7932. "homepage": "https://symfony.com/contributors"
  7933. }
  7934. ],
  7935. "description": "Maps an HTTP request to a set of configuration variables",
  7936. "homepage": "https://symfony.com",
  7937. "keywords": [
  7938. "router",
  7939. "routing",
  7940. "uri",
  7941. "url"
  7942. ],
  7943. "support": {
  7944. "source": "https://github.com/symfony/routing/tree/v6.2.8"
  7945. },
  7946. "funding": [
  7947. {
  7948. "url": "https://symfony.com/sponsor",
  7949. "type": "custom"
  7950. },
  7951. {
  7952. "url": "https://github.com/fabpot",
  7953. "type": "github"
  7954. },
  7955. {
  7956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7957. "type": "tidelift"
  7958. }
  7959. ],
  7960. "time": "2023-03-14T15:00:05+00:00"
  7961. },
  7962. {
  7963. "name": "symfony/service-contracts",
  7964. "version": "v3.2.1",
  7965. "source": {
  7966. "type": "git",
  7967. "url": "https://github.com/symfony/service-contracts.git",
  7968. "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
  7969. },
  7970. "dist": {
  7971. "type": "zip",
  7972. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
  7973. "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
  7974. "shasum": ""
  7975. },
  7976. "require": {
  7977. "php": ">=8.1",
  7978. "psr/container": "^2.0"
  7979. },
  7980. "conflict": {
  7981. "ext-psr": "<1.1|>=2"
  7982. },
  7983. "suggest": {
  7984. "symfony/service-implementation": ""
  7985. },
  7986. "type": "library",
  7987. "extra": {
  7988. "branch-alias": {
  7989. "dev-main": "3.3-dev"
  7990. },
  7991. "thanks": {
  7992. "name": "symfony/contracts",
  7993. "url": "https://github.com/symfony/contracts"
  7994. }
  7995. },
  7996. "autoload": {
  7997. "psr-4": {
  7998. "Symfony\\Contracts\\Service\\": ""
  7999. },
  8000. "exclude-from-classmap": [
  8001. "/Test/"
  8002. ]
  8003. },
  8004. "notification-url": "https://packagist.org/downloads/",
  8005. "license": [
  8006. "MIT"
  8007. ],
  8008. "authors": [
  8009. {
  8010. "name": "Nicolas Grekas",
  8011. "email": "p@tchwork.com"
  8012. },
  8013. {
  8014. "name": "Symfony Community",
  8015. "homepage": "https://symfony.com/contributors"
  8016. }
  8017. ],
  8018. "description": "Generic abstractions related to writing services",
  8019. "homepage": "https://symfony.com",
  8020. "keywords": [
  8021. "abstractions",
  8022. "contracts",
  8023. "decoupling",
  8024. "interfaces",
  8025. "interoperability",
  8026. "standards"
  8027. ],
  8028. "support": {
  8029. "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
  8030. },
  8031. "funding": [
  8032. {
  8033. "url": "https://symfony.com/sponsor",
  8034. "type": "custom"
  8035. },
  8036. {
  8037. "url": "https://github.com/fabpot",
  8038. "type": "github"
  8039. },
  8040. {
  8041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8042. "type": "tidelift"
  8043. }
  8044. ],
  8045. "time": "2023-03-01T10:32:47+00:00"
  8046. },
  8047. {
  8048. "name": "symfony/string",
  8049. "version": "v6.2.8",
  8050. "source": {
  8051. "type": "git",
  8052. "url": "https://github.com/symfony/string.git",
  8053. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef"
  8054. },
  8055. "dist": {
  8056. "type": "zip",
  8057. "url": "https://api.github.com/repos/symfony/string/zipball/193e83bbd6617d6b2151c37fff10fa7168ebddef",
  8058. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef",
  8059. "shasum": ""
  8060. },
  8061. "require": {
  8062. "php": ">=8.1",
  8063. "symfony/polyfill-ctype": "~1.8",
  8064. "symfony/polyfill-intl-grapheme": "~1.0",
  8065. "symfony/polyfill-intl-normalizer": "~1.0",
  8066. "symfony/polyfill-mbstring": "~1.0"
  8067. },
  8068. "conflict": {
  8069. "symfony/translation-contracts": "<2.0"
  8070. },
  8071. "require-dev": {
  8072. "symfony/error-handler": "^5.4|^6.0",
  8073. "symfony/http-client": "^5.4|^6.0",
  8074. "symfony/intl": "^6.2",
  8075. "symfony/translation-contracts": "^2.0|^3.0",
  8076. "symfony/var-exporter": "^5.4|^6.0"
  8077. },
  8078. "type": "library",
  8079. "autoload": {
  8080. "files": [
  8081. "Resources/functions.php"
  8082. ],
  8083. "psr-4": {
  8084. "Symfony\\Component\\String\\": ""
  8085. },
  8086. "exclude-from-classmap": [
  8087. "/Tests/"
  8088. ]
  8089. },
  8090. "notification-url": "https://packagist.org/downloads/",
  8091. "license": [
  8092. "MIT"
  8093. ],
  8094. "authors": [
  8095. {
  8096. "name": "Nicolas Grekas",
  8097. "email": "p@tchwork.com"
  8098. },
  8099. {
  8100. "name": "Symfony Community",
  8101. "homepage": "https://symfony.com/contributors"
  8102. }
  8103. ],
  8104. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8105. "homepage": "https://symfony.com",
  8106. "keywords": [
  8107. "grapheme",
  8108. "i18n",
  8109. "string",
  8110. "unicode",
  8111. "utf-8",
  8112. "utf8"
  8113. ],
  8114. "support": {
  8115. "source": "https://github.com/symfony/string/tree/v6.2.8"
  8116. },
  8117. "funding": [
  8118. {
  8119. "url": "https://symfony.com/sponsor",
  8120. "type": "custom"
  8121. },
  8122. {
  8123. "url": "https://github.com/fabpot",
  8124. "type": "github"
  8125. },
  8126. {
  8127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8128. "type": "tidelift"
  8129. }
  8130. ],
  8131. "time": "2023-03-20T16:06:02+00:00"
  8132. },
  8133. {
  8134. "name": "symfony/translation",
  8135. "version": "v6.2.8",
  8136. "source": {
  8137. "type": "git",
  8138. "url": "https://github.com/symfony/translation.git",
  8139. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5"
  8140. },
  8141. "dist": {
  8142. "type": "zip",
  8143. "url": "https://api.github.com/repos/symfony/translation/zipball/817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  8144. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  8145. "shasum": ""
  8146. },
  8147. "require": {
  8148. "php": ">=8.1",
  8149. "symfony/polyfill-mbstring": "~1.0",
  8150. "symfony/translation-contracts": "^2.3|^3.0"
  8151. },
  8152. "conflict": {
  8153. "symfony/config": "<5.4",
  8154. "symfony/console": "<5.4",
  8155. "symfony/dependency-injection": "<5.4",
  8156. "symfony/http-kernel": "<5.4",
  8157. "symfony/twig-bundle": "<5.4",
  8158. "symfony/yaml": "<5.4"
  8159. },
  8160. "provide": {
  8161. "symfony/translation-implementation": "2.3|3.0"
  8162. },
  8163. "require-dev": {
  8164. "nikic/php-parser": "^4.13",
  8165. "psr/log": "^1|^2|^3",
  8166. "symfony/config": "^5.4|^6.0",
  8167. "symfony/console": "^5.4|^6.0",
  8168. "symfony/dependency-injection": "^5.4|^6.0",
  8169. "symfony/finder": "^5.4|^6.0",
  8170. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  8171. "symfony/http-kernel": "^5.4|^6.0",
  8172. "symfony/intl": "^5.4|^6.0",
  8173. "symfony/polyfill-intl-icu": "^1.21",
  8174. "symfony/routing": "^5.4|^6.0",
  8175. "symfony/service-contracts": "^1.1.2|^2|^3",
  8176. "symfony/yaml": "^5.4|^6.0"
  8177. },
  8178. "suggest": {
  8179. "nikic/php-parser": "To use PhpAstExtractor",
  8180. "psr/log-implementation": "To use logging capability in translator",
  8181. "symfony/config": "",
  8182. "symfony/yaml": ""
  8183. },
  8184. "type": "library",
  8185. "autoload": {
  8186. "files": [
  8187. "Resources/functions.php"
  8188. ],
  8189. "psr-4": {
  8190. "Symfony\\Component\\Translation\\": ""
  8191. },
  8192. "exclude-from-classmap": [
  8193. "/Tests/"
  8194. ]
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "MIT"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "Fabien Potencier",
  8203. "email": "fabien@symfony.com"
  8204. },
  8205. {
  8206. "name": "Symfony Community",
  8207. "homepage": "https://symfony.com/contributors"
  8208. }
  8209. ],
  8210. "description": "Provides tools to internationalize your application",
  8211. "homepage": "https://symfony.com",
  8212. "support": {
  8213. "source": "https://github.com/symfony/translation/tree/v6.2.8"
  8214. },
  8215. "funding": [
  8216. {
  8217. "url": "https://symfony.com/sponsor",
  8218. "type": "custom"
  8219. },
  8220. {
  8221. "url": "https://github.com/fabpot",
  8222. "type": "github"
  8223. },
  8224. {
  8225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8226. "type": "tidelift"
  8227. }
  8228. ],
  8229. "time": "2023-03-31T09:14:44+00:00"
  8230. },
  8231. {
  8232. "name": "symfony/translation-contracts",
  8233. "version": "v3.2.1",
  8234. "source": {
  8235. "type": "git",
  8236. "url": "https://github.com/symfony/translation-contracts.git",
  8237. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
  8238. },
  8239. "dist": {
  8240. "type": "zip",
  8241. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
  8242. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
  8243. "shasum": ""
  8244. },
  8245. "require": {
  8246. "php": ">=8.1"
  8247. },
  8248. "suggest": {
  8249. "symfony/translation-implementation": ""
  8250. },
  8251. "type": "library",
  8252. "extra": {
  8253. "branch-alias": {
  8254. "dev-main": "3.3-dev"
  8255. },
  8256. "thanks": {
  8257. "name": "symfony/contracts",
  8258. "url": "https://github.com/symfony/contracts"
  8259. }
  8260. },
  8261. "autoload": {
  8262. "psr-4": {
  8263. "Symfony\\Contracts\\Translation\\": ""
  8264. },
  8265. "exclude-from-classmap": [
  8266. "/Test/"
  8267. ]
  8268. },
  8269. "notification-url": "https://packagist.org/downloads/",
  8270. "license": [
  8271. "MIT"
  8272. ],
  8273. "authors": [
  8274. {
  8275. "name": "Nicolas Grekas",
  8276. "email": "p@tchwork.com"
  8277. },
  8278. {
  8279. "name": "Symfony Community",
  8280. "homepage": "https://symfony.com/contributors"
  8281. }
  8282. ],
  8283. "description": "Generic abstractions related to translation",
  8284. "homepage": "https://symfony.com",
  8285. "keywords": [
  8286. "abstractions",
  8287. "contracts",
  8288. "decoupling",
  8289. "interfaces",
  8290. "interoperability",
  8291. "standards"
  8292. ],
  8293. "support": {
  8294. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
  8295. },
  8296. "funding": [
  8297. {
  8298. "url": "https://symfony.com/sponsor",
  8299. "type": "custom"
  8300. },
  8301. {
  8302. "url": "https://github.com/fabpot",
  8303. "type": "github"
  8304. },
  8305. {
  8306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8307. "type": "tidelift"
  8308. }
  8309. ],
  8310. "time": "2023-03-01T10:32:47+00:00"
  8311. },
  8312. {
  8313. "name": "symfony/uid",
  8314. "version": "v6.2.7",
  8315. "source": {
  8316. "type": "git",
  8317. "url": "https://github.com/symfony/uid.git",
  8318. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0"
  8319. },
  8320. "dist": {
  8321. "type": "zip",
  8322. "url": "https://api.github.com/repos/symfony/uid/zipball/d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  8323. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  8324. "shasum": ""
  8325. },
  8326. "require": {
  8327. "php": ">=8.1",
  8328. "symfony/polyfill-uuid": "^1.15"
  8329. },
  8330. "require-dev": {
  8331. "symfony/console": "^5.4|^6.0"
  8332. },
  8333. "type": "library",
  8334. "autoload": {
  8335. "psr-4": {
  8336. "Symfony\\Component\\Uid\\": ""
  8337. },
  8338. "exclude-from-classmap": [
  8339. "/Tests/"
  8340. ]
  8341. },
  8342. "notification-url": "https://packagist.org/downloads/",
  8343. "license": [
  8344. "MIT"
  8345. ],
  8346. "authors": [
  8347. {
  8348. "name": "Grégoire Pineau",
  8349. "email": "lyrixx@lyrixx.info"
  8350. },
  8351. {
  8352. "name": "Nicolas Grekas",
  8353. "email": "p@tchwork.com"
  8354. },
  8355. {
  8356. "name": "Symfony Community",
  8357. "homepage": "https://symfony.com/contributors"
  8358. }
  8359. ],
  8360. "description": "Provides an object-oriented API to generate and represent UIDs",
  8361. "homepage": "https://symfony.com",
  8362. "keywords": [
  8363. "UID",
  8364. "ulid",
  8365. "uuid"
  8366. ],
  8367. "support": {
  8368. "source": "https://github.com/symfony/uid/tree/v6.2.7"
  8369. },
  8370. "funding": [
  8371. {
  8372. "url": "https://symfony.com/sponsor",
  8373. "type": "custom"
  8374. },
  8375. {
  8376. "url": "https://github.com/fabpot",
  8377. "type": "github"
  8378. },
  8379. {
  8380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8381. "type": "tidelift"
  8382. }
  8383. ],
  8384. "time": "2023-02-14T08:44:56+00:00"
  8385. },
  8386. {
  8387. "name": "symfony/var-dumper",
  8388. "version": "v6.2.10",
  8389. "source": {
  8390. "type": "git",
  8391. "url": "https://github.com/symfony/var-dumper.git",
  8392. "reference": "41a750a23412ca76fdbbf5096943b4134272c1ab"
  8393. },
  8394. "dist": {
  8395. "type": "zip",
  8396. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/41a750a23412ca76fdbbf5096943b4134272c1ab",
  8397. "reference": "41a750a23412ca76fdbbf5096943b4134272c1ab",
  8398. "shasum": ""
  8399. },
  8400. "require": {
  8401. "php": ">=8.1",
  8402. "symfony/polyfill-mbstring": "~1.0"
  8403. },
  8404. "conflict": {
  8405. "phpunit/phpunit": "<5.4.3",
  8406. "symfony/console": "<5.4"
  8407. },
  8408. "require-dev": {
  8409. "ext-iconv": "*",
  8410. "symfony/console": "^5.4|^6.0",
  8411. "symfony/process": "^5.4|^6.0",
  8412. "symfony/uid": "^5.4|^6.0",
  8413. "twig/twig": "^2.13|^3.0.4"
  8414. },
  8415. "suggest": {
  8416. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8417. "ext-intl": "To show region name in time zone dump",
  8418. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8419. },
  8420. "bin": [
  8421. "Resources/bin/var-dump-server"
  8422. ],
  8423. "type": "library",
  8424. "autoload": {
  8425. "files": [
  8426. "Resources/functions/dump.php"
  8427. ],
  8428. "psr-4": {
  8429. "Symfony\\Component\\VarDumper\\": ""
  8430. },
  8431. "exclude-from-classmap": [
  8432. "/Tests/"
  8433. ]
  8434. },
  8435. "notification-url": "https://packagist.org/downloads/",
  8436. "license": [
  8437. "MIT"
  8438. ],
  8439. "authors": [
  8440. {
  8441. "name": "Nicolas Grekas",
  8442. "email": "p@tchwork.com"
  8443. },
  8444. {
  8445. "name": "Symfony Community",
  8446. "homepage": "https://symfony.com/contributors"
  8447. }
  8448. ],
  8449. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8450. "homepage": "https://symfony.com",
  8451. "keywords": [
  8452. "debug",
  8453. "dump"
  8454. ],
  8455. "support": {
  8456. "source": "https://github.com/symfony/var-dumper/tree/v6.2.10"
  8457. },
  8458. "funding": [
  8459. {
  8460. "url": "https://symfony.com/sponsor",
  8461. "type": "custom"
  8462. },
  8463. {
  8464. "url": "https://github.com/fabpot",
  8465. "type": "github"
  8466. },
  8467. {
  8468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8469. "type": "tidelift"
  8470. }
  8471. ],
  8472. "time": "2023-04-18T13:46:08+00:00"
  8473. },
  8474. {
  8475. "name": "tijsverkoyen/css-to-inline-styles",
  8476. "version": "2.2.6",
  8477. "source": {
  8478. "type": "git",
  8479. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8480. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  8481. },
  8482. "dist": {
  8483. "type": "zip",
  8484. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8485. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8486. "shasum": ""
  8487. },
  8488. "require": {
  8489. "ext-dom": "*",
  8490. "ext-libxml": "*",
  8491. "php": "^5.5 || ^7.0 || ^8.0",
  8492. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8493. },
  8494. "require-dev": {
  8495. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8496. },
  8497. "type": "library",
  8498. "extra": {
  8499. "branch-alias": {
  8500. "dev-master": "2.2.x-dev"
  8501. }
  8502. },
  8503. "autoload": {
  8504. "psr-4": {
  8505. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8506. }
  8507. },
  8508. "notification-url": "https://packagist.org/downloads/",
  8509. "license": [
  8510. "BSD-3-Clause"
  8511. ],
  8512. "authors": [
  8513. {
  8514. "name": "Tijs Verkoyen",
  8515. "email": "css_to_inline_styles@verkoyen.eu",
  8516. "role": "Developer"
  8517. }
  8518. ],
  8519. "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.",
  8520. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8521. "support": {
  8522. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8523. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  8524. },
  8525. "time": "2023-01-03T09:29:04+00:00"
  8526. },
  8527. {
  8528. "name": "vlucas/phpdotenv",
  8529. "version": "v5.5.0",
  8530. "source": {
  8531. "type": "git",
  8532. "url": "https://github.com/vlucas/phpdotenv.git",
  8533. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  8534. },
  8535. "dist": {
  8536. "type": "zip",
  8537. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8538. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8539. "shasum": ""
  8540. },
  8541. "require": {
  8542. "ext-pcre": "*",
  8543. "graham-campbell/result-type": "^1.0.2",
  8544. "php": "^7.1.3 || ^8.0",
  8545. "phpoption/phpoption": "^1.8",
  8546. "symfony/polyfill-ctype": "^1.23",
  8547. "symfony/polyfill-mbstring": "^1.23.1",
  8548. "symfony/polyfill-php80": "^1.23.1"
  8549. },
  8550. "require-dev": {
  8551. "bamarni/composer-bin-plugin": "^1.4.1",
  8552. "ext-filter": "*",
  8553. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  8554. },
  8555. "suggest": {
  8556. "ext-filter": "Required to use the boolean validator."
  8557. },
  8558. "type": "library",
  8559. "extra": {
  8560. "bamarni-bin": {
  8561. "bin-links": true,
  8562. "forward-command": true
  8563. },
  8564. "branch-alias": {
  8565. "dev-master": "5.5-dev"
  8566. }
  8567. },
  8568. "autoload": {
  8569. "psr-4": {
  8570. "Dotenv\\": "src/"
  8571. }
  8572. },
  8573. "notification-url": "https://packagist.org/downloads/",
  8574. "license": [
  8575. "BSD-3-Clause"
  8576. ],
  8577. "authors": [
  8578. {
  8579. "name": "Graham Campbell",
  8580. "email": "hello@gjcampbell.co.uk",
  8581. "homepage": "https://github.com/GrahamCampbell"
  8582. },
  8583. {
  8584. "name": "Vance Lucas",
  8585. "email": "vance@vancelucas.com",
  8586. "homepage": "https://github.com/vlucas"
  8587. }
  8588. ],
  8589. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8590. "keywords": [
  8591. "dotenv",
  8592. "env",
  8593. "environment"
  8594. ],
  8595. "support": {
  8596. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8597. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8598. },
  8599. "funding": [
  8600. {
  8601. "url": "https://github.com/GrahamCampbell",
  8602. "type": "github"
  8603. },
  8604. {
  8605. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8606. "type": "tidelift"
  8607. }
  8608. ],
  8609. "time": "2022-10-16T01:01:54+00:00"
  8610. },
  8611. {
  8612. "name": "voku/portable-ascii",
  8613. "version": "2.0.1",
  8614. "source": {
  8615. "type": "git",
  8616. "url": "https://github.com/voku/portable-ascii.git",
  8617. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  8618. },
  8619. "dist": {
  8620. "type": "zip",
  8621. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  8622. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  8623. "shasum": ""
  8624. },
  8625. "require": {
  8626. "php": ">=7.0.0"
  8627. },
  8628. "require-dev": {
  8629. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8630. },
  8631. "suggest": {
  8632. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8633. },
  8634. "type": "library",
  8635. "autoload": {
  8636. "psr-4": {
  8637. "voku\\": "src/voku/"
  8638. }
  8639. },
  8640. "notification-url": "https://packagist.org/downloads/",
  8641. "license": [
  8642. "MIT"
  8643. ],
  8644. "authors": [
  8645. {
  8646. "name": "Lars Moelleken",
  8647. "homepage": "http://www.moelleken.org/"
  8648. }
  8649. ],
  8650. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8651. "homepage": "https://github.com/voku/portable-ascii",
  8652. "keywords": [
  8653. "ascii",
  8654. "clean",
  8655. "php"
  8656. ],
  8657. "support": {
  8658. "issues": "https://github.com/voku/portable-ascii/issues",
  8659. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  8660. },
  8661. "funding": [
  8662. {
  8663. "url": "https://www.paypal.me/moelleken",
  8664. "type": "custom"
  8665. },
  8666. {
  8667. "url": "https://github.com/voku",
  8668. "type": "github"
  8669. },
  8670. {
  8671. "url": "https://opencollective.com/portable-ascii",
  8672. "type": "open_collective"
  8673. },
  8674. {
  8675. "url": "https://www.patreon.com/voku",
  8676. "type": "patreon"
  8677. },
  8678. {
  8679. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8680. "type": "tidelift"
  8681. }
  8682. ],
  8683. "time": "2022-03-08T17:03:00+00:00"
  8684. },
  8685. {
  8686. "name": "webmozart/assert",
  8687. "version": "1.11.0",
  8688. "source": {
  8689. "type": "git",
  8690. "url": "https://github.com/webmozarts/assert.git",
  8691. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8692. },
  8693. "dist": {
  8694. "type": "zip",
  8695. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8696. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8697. "shasum": ""
  8698. },
  8699. "require": {
  8700. "ext-ctype": "*",
  8701. "php": "^7.2 || ^8.0"
  8702. },
  8703. "conflict": {
  8704. "phpstan/phpstan": "<0.12.20",
  8705. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8706. },
  8707. "require-dev": {
  8708. "phpunit/phpunit": "^8.5.13"
  8709. },
  8710. "type": "library",
  8711. "extra": {
  8712. "branch-alias": {
  8713. "dev-master": "1.10-dev"
  8714. }
  8715. },
  8716. "autoload": {
  8717. "psr-4": {
  8718. "Webmozart\\Assert\\": "src/"
  8719. }
  8720. },
  8721. "notification-url": "https://packagist.org/downloads/",
  8722. "license": [
  8723. "MIT"
  8724. ],
  8725. "authors": [
  8726. {
  8727. "name": "Bernhard Schussek",
  8728. "email": "bschussek@gmail.com"
  8729. }
  8730. ],
  8731. "description": "Assertions to validate method input/output with nice error messages.",
  8732. "keywords": [
  8733. "assert",
  8734. "check",
  8735. "validate"
  8736. ],
  8737. "support": {
  8738. "issues": "https://github.com/webmozarts/assert/issues",
  8739. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8740. },
  8741. "time": "2022-06-03T18:03:27+00:00"
  8742. },
  8743. {
  8744. "name": "yajra/laravel-datatables-oracle",
  8745. "version": "v9.21.2",
  8746. "source": {
  8747. "type": "git",
  8748. "url": "https://github.com/yajra/laravel-datatables.git",
  8749. "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a"
  8750. },
  8751. "dist": {
  8752. "type": "zip",
  8753. "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/a7fd01f06282923e9c63fa27fe6b391e21dc321a",
  8754. "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a",
  8755. "shasum": ""
  8756. },
  8757. "require": {
  8758. "illuminate/database": "5.8.*|^6|^7|^8|^9",
  8759. "illuminate/filesystem": "5.8.*|^6|^7|^8|^9",
  8760. "illuminate/http": "5.8.*|^6|^7|^8|^9",
  8761. "illuminate/support": "5.8.*|^6|^7|^8|^9",
  8762. "illuminate/view": "5.8.*|^6|^7|^8|^9",
  8763. "php": "^7.1.3|^8"
  8764. },
  8765. "require-dev": {
  8766. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0|^7.0"
  8767. },
  8768. "suggest": {
  8769. "yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTables.",
  8770. "yajra/laravel-datatables-editor": "Plugin to use DataTables Editor (requires a license).",
  8771. "yajra/laravel-datatables-fractal": "Plugin for server-side response using Fractal.",
  8772. "yajra/laravel-datatables-html": "Plugin for server-side HTML builder of dataTables."
  8773. },
  8774. "type": "library",
  8775. "extra": {
  8776. "branch-alias": {
  8777. "dev-master": "9.0-dev"
  8778. },
  8779. "laravel": {
  8780. "providers": [
  8781. "Yajra\\DataTables\\DataTablesServiceProvider"
  8782. ],
  8783. "aliases": {
  8784. "DataTables": "Yajra\\DataTables\\Facades\\DataTables"
  8785. }
  8786. }
  8787. },
  8788. "autoload": {
  8789. "files": [
  8790. "src/helper.php"
  8791. ],
  8792. "psr-4": {
  8793. "Yajra\\DataTables\\": "src/"
  8794. }
  8795. },
  8796. "notification-url": "https://packagist.org/downloads/",
  8797. "license": [
  8798. "MIT"
  8799. ],
  8800. "authors": [
  8801. {
  8802. "name": "Arjay Angeles",
  8803. "email": "aqangeles@gmail.com"
  8804. }
  8805. ],
  8806. "description": "jQuery DataTables API for Laravel 5|6|7|8|9",
  8807. "keywords": [
  8808. "datatables",
  8809. "jquery",
  8810. "laravel"
  8811. ],
  8812. "support": {
  8813. "issues": "https://github.com/yajra/laravel-datatables/issues",
  8814. "source": "https://github.com/yajra/laravel-datatables/tree/v9.21.2"
  8815. },
  8816. "funding": [
  8817. {
  8818. "url": "https://www.paypal.me/yajra",
  8819. "type": "custom"
  8820. },
  8821. {
  8822. "url": "https://www.patreon.com/yajra",
  8823. "type": "patreon"
  8824. }
  8825. ],
  8826. "time": "2022-07-12T04:48:03+00:00"
  8827. }
  8828. ],
  8829. "packages-dev": [
  8830. {
  8831. "name": "barryvdh/laravel-debugbar",
  8832. "version": "v3.8.1",
  8833. "source": {
  8834. "type": "git",
  8835. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8836. "reference": "aff3235fecb4104203b1e62c32239c56530eee32"
  8837. },
  8838. "dist": {
  8839. "type": "zip",
  8840. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/aff3235fecb4104203b1e62c32239c56530eee32",
  8841. "reference": "aff3235fecb4104203b1e62c32239c56530eee32",
  8842. "shasum": ""
  8843. },
  8844. "require": {
  8845. "illuminate/routing": "^9|^10",
  8846. "illuminate/session": "^9|^10",
  8847. "illuminate/support": "^9|^10",
  8848. "maximebf/debugbar": "^1.18.2",
  8849. "php": "^8.0",
  8850. "symfony/finder": "^6"
  8851. },
  8852. "require-dev": {
  8853. "mockery/mockery": "^1.3.3",
  8854. "orchestra/testbench-dusk": "^5|^6|^7|^8",
  8855. "phpunit/phpunit": "^8.5.30|^9.0",
  8856. "squizlabs/php_codesniffer": "^3.5"
  8857. },
  8858. "type": "library",
  8859. "extra": {
  8860. "branch-alias": {
  8861. "dev-master": "3.8-dev"
  8862. },
  8863. "laravel": {
  8864. "providers": [
  8865. "Barryvdh\\Debugbar\\ServiceProvider"
  8866. ],
  8867. "aliases": {
  8868. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  8869. }
  8870. }
  8871. },
  8872. "autoload": {
  8873. "files": [
  8874. "src/helpers.php"
  8875. ],
  8876. "psr-4": {
  8877. "Barryvdh\\Debugbar\\": "src/"
  8878. }
  8879. },
  8880. "notification-url": "https://packagist.org/downloads/",
  8881. "license": [
  8882. "MIT"
  8883. ],
  8884. "authors": [
  8885. {
  8886. "name": "Barry vd. Heuvel",
  8887. "email": "barryvdh@gmail.com"
  8888. }
  8889. ],
  8890. "description": "PHP Debugbar integration for Laravel",
  8891. "keywords": [
  8892. "debug",
  8893. "debugbar",
  8894. "laravel",
  8895. "profiler",
  8896. "webprofiler"
  8897. ],
  8898. "support": {
  8899. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8900. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.8.1"
  8901. },
  8902. "funding": [
  8903. {
  8904. "url": "https://fruitcake.nl",
  8905. "type": "custom"
  8906. },
  8907. {
  8908. "url": "https://github.com/barryvdh",
  8909. "type": "github"
  8910. }
  8911. ],
  8912. "time": "2023-02-21T14:21:02+00:00"
  8913. },
  8914. {
  8915. "name": "doctrine/instantiator",
  8916. "version": "2.0.0",
  8917. "source": {
  8918. "type": "git",
  8919. "url": "https://github.com/doctrine/instantiator.git",
  8920. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  8921. },
  8922. "dist": {
  8923. "type": "zip",
  8924. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8925. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8926. "shasum": ""
  8927. },
  8928. "require": {
  8929. "php": "^8.1"
  8930. },
  8931. "require-dev": {
  8932. "doctrine/coding-standard": "^11",
  8933. "ext-pdo": "*",
  8934. "ext-phar": "*",
  8935. "phpbench/phpbench": "^1.2",
  8936. "phpstan/phpstan": "^1.9.4",
  8937. "phpstan/phpstan-phpunit": "^1.3",
  8938. "phpunit/phpunit": "^9.5.27",
  8939. "vimeo/psalm": "^5.4"
  8940. },
  8941. "type": "library",
  8942. "autoload": {
  8943. "psr-4": {
  8944. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8945. }
  8946. },
  8947. "notification-url": "https://packagist.org/downloads/",
  8948. "license": [
  8949. "MIT"
  8950. ],
  8951. "authors": [
  8952. {
  8953. "name": "Marco Pivetta",
  8954. "email": "ocramius@gmail.com",
  8955. "homepage": "https://ocramius.github.io/"
  8956. }
  8957. ],
  8958. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8959. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8960. "keywords": [
  8961. "constructor",
  8962. "instantiate"
  8963. ],
  8964. "support": {
  8965. "issues": "https://github.com/doctrine/instantiator/issues",
  8966. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  8967. },
  8968. "funding": [
  8969. {
  8970. "url": "https://www.doctrine-project.org/sponsorship.html",
  8971. "type": "custom"
  8972. },
  8973. {
  8974. "url": "https://www.patreon.com/phpdoctrine",
  8975. "type": "patreon"
  8976. },
  8977. {
  8978. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8979. "type": "tidelift"
  8980. }
  8981. ],
  8982. "time": "2022-12-30T00:23:10+00:00"
  8983. },
  8984. {
  8985. "name": "fakerphp/faker",
  8986. "version": "v1.21.0",
  8987. "source": {
  8988. "type": "git",
  8989. "url": "https://github.com/FakerPHP/Faker.git",
  8990. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  8991. },
  8992. "dist": {
  8993. "type": "zip",
  8994. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  8995. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  8996. "shasum": ""
  8997. },
  8998. "require": {
  8999. "php": "^7.4 || ^8.0",
  9000. "psr/container": "^1.0 || ^2.0",
  9001. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9002. },
  9003. "conflict": {
  9004. "fzaninotto/faker": "*"
  9005. },
  9006. "require-dev": {
  9007. "bamarni/composer-bin-plugin": "^1.4.1",
  9008. "doctrine/persistence": "^1.3 || ^2.0",
  9009. "ext-intl": "*",
  9010. "phpunit/phpunit": "^9.5.26",
  9011. "symfony/phpunit-bridge": "^5.4.16"
  9012. },
  9013. "suggest": {
  9014. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9015. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9016. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9017. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9018. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9019. },
  9020. "type": "library",
  9021. "extra": {
  9022. "branch-alias": {
  9023. "dev-main": "v1.21-dev"
  9024. }
  9025. },
  9026. "autoload": {
  9027. "psr-4": {
  9028. "Faker\\": "src/Faker/"
  9029. }
  9030. },
  9031. "notification-url": "https://packagist.org/downloads/",
  9032. "license": [
  9033. "MIT"
  9034. ],
  9035. "authors": [
  9036. {
  9037. "name": "François Zaninotto"
  9038. }
  9039. ],
  9040. "description": "Faker is a PHP library that generates fake data for you.",
  9041. "keywords": [
  9042. "data",
  9043. "faker",
  9044. "fixtures"
  9045. ],
  9046. "support": {
  9047. "issues": "https://github.com/FakerPHP/Faker/issues",
  9048. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  9049. },
  9050. "time": "2022-12-13T13:54:32+00:00"
  9051. },
  9052. {
  9053. "name": "filp/whoops",
  9054. "version": "2.15.2",
  9055. "source": {
  9056. "type": "git",
  9057. "url": "https://github.com/filp/whoops.git",
  9058. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  9059. },
  9060. "dist": {
  9061. "type": "zip",
  9062. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  9063. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  9064. "shasum": ""
  9065. },
  9066. "require": {
  9067. "php": "^5.5.9 || ^7.0 || ^8.0",
  9068. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9069. },
  9070. "require-dev": {
  9071. "mockery/mockery": "^0.9 || ^1.0",
  9072. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9073. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9074. },
  9075. "suggest": {
  9076. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9077. "whoops/soap": "Formats errors as SOAP responses"
  9078. },
  9079. "type": "library",
  9080. "extra": {
  9081. "branch-alias": {
  9082. "dev-master": "2.7-dev"
  9083. }
  9084. },
  9085. "autoload": {
  9086. "psr-4": {
  9087. "Whoops\\": "src/Whoops/"
  9088. }
  9089. },
  9090. "notification-url": "https://packagist.org/downloads/",
  9091. "license": [
  9092. "MIT"
  9093. ],
  9094. "authors": [
  9095. {
  9096. "name": "Filipe Dobreira",
  9097. "homepage": "https://github.com/filp",
  9098. "role": "Developer"
  9099. }
  9100. ],
  9101. "description": "php error handling for cool kids",
  9102. "homepage": "https://filp.github.io/whoops/",
  9103. "keywords": [
  9104. "error",
  9105. "exception",
  9106. "handling",
  9107. "library",
  9108. "throwable",
  9109. "whoops"
  9110. ],
  9111. "support": {
  9112. "issues": "https://github.com/filp/whoops/issues",
  9113. "source": "https://github.com/filp/whoops/tree/2.15.2"
  9114. },
  9115. "funding": [
  9116. {
  9117. "url": "https://github.com/denis-sokolov",
  9118. "type": "github"
  9119. }
  9120. ],
  9121. "time": "2023-04-12T12:00:00+00:00"
  9122. },
  9123. {
  9124. "name": "hamcrest/hamcrest-php",
  9125. "version": "v2.0.1",
  9126. "source": {
  9127. "type": "git",
  9128. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9129. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9130. },
  9131. "dist": {
  9132. "type": "zip",
  9133. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9134. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9135. "shasum": ""
  9136. },
  9137. "require": {
  9138. "php": "^5.3|^7.0|^8.0"
  9139. },
  9140. "replace": {
  9141. "cordoval/hamcrest-php": "*",
  9142. "davedevelopment/hamcrest-php": "*",
  9143. "kodova/hamcrest-php": "*"
  9144. },
  9145. "require-dev": {
  9146. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9147. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9148. },
  9149. "type": "library",
  9150. "extra": {
  9151. "branch-alias": {
  9152. "dev-master": "2.1-dev"
  9153. }
  9154. },
  9155. "autoload": {
  9156. "classmap": [
  9157. "hamcrest"
  9158. ]
  9159. },
  9160. "notification-url": "https://packagist.org/downloads/",
  9161. "license": [
  9162. "BSD-3-Clause"
  9163. ],
  9164. "description": "This is the PHP port of Hamcrest Matchers",
  9165. "keywords": [
  9166. "test"
  9167. ],
  9168. "support": {
  9169. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9170. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9171. },
  9172. "time": "2020-07-09T08:09:16+00:00"
  9173. },
  9174. {
  9175. "name": "laravel/sail",
  9176. "version": "v1.21.5",
  9177. "source": {
  9178. "type": "git",
  9179. "url": "https://github.com/laravel/sail.git",
  9180. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d"
  9181. },
  9182. "dist": {
  9183. "type": "zip",
  9184. "url": "https://api.github.com/repos/laravel/sail/zipball/27af207bb1c53faddcba34c7528b3e969f6a646d",
  9185. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d",
  9186. "shasum": ""
  9187. },
  9188. "require": {
  9189. "illuminate/console": "^8.0|^9.0|^10.0",
  9190. "illuminate/contracts": "^8.0|^9.0|^10.0",
  9191. "illuminate/support": "^8.0|^9.0|^10.0",
  9192. "php": "^7.3|^8.0",
  9193. "symfony/yaml": "^6.0"
  9194. },
  9195. "require-dev": {
  9196. "orchestra/testbench": "^6.0|^7.0|^8.0",
  9197. "phpstan/phpstan": "^1.10"
  9198. },
  9199. "bin": [
  9200. "bin/sail"
  9201. ],
  9202. "type": "library",
  9203. "extra": {
  9204. "branch-alias": {
  9205. "dev-master": "1.x-dev"
  9206. },
  9207. "laravel": {
  9208. "providers": [
  9209. "Laravel\\Sail\\SailServiceProvider"
  9210. ]
  9211. }
  9212. },
  9213. "autoload": {
  9214. "psr-4": {
  9215. "Laravel\\Sail\\": "src/"
  9216. }
  9217. },
  9218. "notification-url": "https://packagist.org/downloads/",
  9219. "license": [
  9220. "MIT"
  9221. ],
  9222. "authors": [
  9223. {
  9224. "name": "Taylor Otwell",
  9225. "email": "taylor@laravel.com"
  9226. }
  9227. ],
  9228. "description": "Docker files for running a basic Laravel application.",
  9229. "keywords": [
  9230. "docker",
  9231. "laravel"
  9232. ],
  9233. "support": {
  9234. "issues": "https://github.com/laravel/sail/issues",
  9235. "source": "https://github.com/laravel/sail"
  9236. },
  9237. "time": "2023-04-24T13:29:38+00:00"
  9238. },
  9239. {
  9240. "name": "maximebf/debugbar",
  9241. "version": "v1.18.2",
  9242. "source": {
  9243. "type": "git",
  9244. "url": "https://github.com/maximebf/php-debugbar.git",
  9245. "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274"
  9246. },
  9247. "dist": {
  9248. "type": "zip",
  9249. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/17dcf3f6ed112bb85a37cf13538fd8de49f5c274",
  9250. "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274",
  9251. "shasum": ""
  9252. },
  9253. "require": {
  9254. "php": "^7.1|^8",
  9255. "psr/log": "^1|^2|^3",
  9256. "symfony/var-dumper": "^4|^5|^6"
  9257. },
  9258. "require-dev": {
  9259. "phpunit/phpunit": ">=7.5.20 <10.0",
  9260. "twig/twig": "^1.38|^2.7|^3.0"
  9261. },
  9262. "suggest": {
  9263. "kriswallsmith/assetic": "The best way to manage assets",
  9264. "monolog/monolog": "Log using Monolog",
  9265. "predis/predis": "Redis storage"
  9266. },
  9267. "type": "library",
  9268. "extra": {
  9269. "branch-alias": {
  9270. "dev-master": "1.18-dev"
  9271. }
  9272. },
  9273. "autoload": {
  9274. "psr-4": {
  9275. "DebugBar\\": "src/DebugBar/"
  9276. }
  9277. },
  9278. "notification-url": "https://packagist.org/downloads/",
  9279. "license": [
  9280. "MIT"
  9281. ],
  9282. "authors": [
  9283. {
  9284. "name": "Maxime Bouroumeau-Fuseau",
  9285. "email": "maxime.bouroumeau@gmail.com",
  9286. "homepage": "http://maximebf.com"
  9287. },
  9288. {
  9289. "name": "Barry vd. Heuvel",
  9290. "email": "barryvdh@gmail.com"
  9291. }
  9292. ],
  9293. "description": "Debug bar in the browser for php application",
  9294. "homepage": "https://github.com/maximebf/php-debugbar",
  9295. "keywords": [
  9296. "debug",
  9297. "debugbar"
  9298. ],
  9299. "support": {
  9300. "issues": "https://github.com/maximebf/php-debugbar/issues",
  9301. "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.2"
  9302. },
  9303. "time": "2023-02-04T15:27:00+00:00"
  9304. },
  9305. {
  9306. "name": "mockery/mockery",
  9307. "version": "1.5.1",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/mockery/mockery.git",
  9311. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  9316. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  9317. "shasum": ""
  9318. },
  9319. "require": {
  9320. "hamcrest/hamcrest-php": "^2.0.1",
  9321. "lib-pcre": ">=7.0",
  9322. "php": "^7.3 || ^8.0"
  9323. },
  9324. "conflict": {
  9325. "phpunit/phpunit": "<8.0"
  9326. },
  9327. "require-dev": {
  9328. "phpunit/phpunit": "^8.5 || ^9.3"
  9329. },
  9330. "type": "library",
  9331. "extra": {
  9332. "branch-alias": {
  9333. "dev-master": "1.4.x-dev"
  9334. }
  9335. },
  9336. "autoload": {
  9337. "psr-0": {
  9338. "Mockery": "library/"
  9339. }
  9340. },
  9341. "notification-url": "https://packagist.org/downloads/",
  9342. "license": [
  9343. "BSD-3-Clause"
  9344. ],
  9345. "authors": [
  9346. {
  9347. "name": "Pádraic Brady",
  9348. "email": "padraic.brady@gmail.com",
  9349. "homepage": "http://blog.astrumfutura.com"
  9350. },
  9351. {
  9352. "name": "Dave Marshall",
  9353. "email": "dave.marshall@atstsolutions.co.uk",
  9354. "homepage": "http://davedevelopment.co.uk"
  9355. }
  9356. ],
  9357. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9358. "homepage": "https://github.com/mockery/mockery",
  9359. "keywords": [
  9360. "BDD",
  9361. "TDD",
  9362. "library",
  9363. "mock",
  9364. "mock objects",
  9365. "mockery",
  9366. "stub",
  9367. "test",
  9368. "test double",
  9369. "testing"
  9370. ],
  9371. "support": {
  9372. "issues": "https://github.com/mockery/mockery/issues",
  9373. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  9374. },
  9375. "time": "2022-09-07T15:32:08+00:00"
  9376. },
  9377. {
  9378. "name": "myclabs/deep-copy",
  9379. "version": "1.11.1",
  9380. "source": {
  9381. "type": "git",
  9382. "url": "https://github.com/myclabs/DeepCopy.git",
  9383. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9384. },
  9385. "dist": {
  9386. "type": "zip",
  9387. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9388. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9389. "shasum": ""
  9390. },
  9391. "require": {
  9392. "php": "^7.1 || ^8.0"
  9393. },
  9394. "conflict": {
  9395. "doctrine/collections": "<1.6.8",
  9396. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9397. },
  9398. "require-dev": {
  9399. "doctrine/collections": "^1.6.8",
  9400. "doctrine/common": "^2.13.3 || ^3.2.2",
  9401. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9402. },
  9403. "type": "library",
  9404. "autoload": {
  9405. "files": [
  9406. "src/DeepCopy/deep_copy.php"
  9407. ],
  9408. "psr-4": {
  9409. "DeepCopy\\": "src/DeepCopy/"
  9410. }
  9411. },
  9412. "notification-url": "https://packagist.org/downloads/",
  9413. "license": [
  9414. "MIT"
  9415. ],
  9416. "description": "Create deep copies (clones) of your objects",
  9417. "keywords": [
  9418. "clone",
  9419. "copy",
  9420. "duplicate",
  9421. "object",
  9422. "object graph"
  9423. ],
  9424. "support": {
  9425. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9426. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9427. },
  9428. "funding": [
  9429. {
  9430. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9431. "type": "tidelift"
  9432. }
  9433. ],
  9434. "time": "2023-03-08T13:26:56+00:00"
  9435. },
  9436. {
  9437. "name": "nunomaduro/collision",
  9438. "version": "v6.4.0",
  9439. "source": {
  9440. "type": "git",
  9441. "url": "https://github.com/nunomaduro/collision.git",
  9442. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  9443. },
  9444. "dist": {
  9445. "type": "zip",
  9446. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  9447. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  9448. "shasum": ""
  9449. },
  9450. "require": {
  9451. "filp/whoops": "^2.14.5",
  9452. "php": "^8.0.0",
  9453. "symfony/console": "^6.0.2"
  9454. },
  9455. "require-dev": {
  9456. "brianium/paratest": "^6.4.1",
  9457. "laravel/framework": "^9.26.1",
  9458. "laravel/pint": "^1.1.1",
  9459. "nunomaduro/larastan": "^1.0.3",
  9460. "nunomaduro/mock-final-classes": "^1.1.0",
  9461. "orchestra/testbench": "^7.7",
  9462. "phpunit/phpunit": "^9.5.23",
  9463. "spatie/ignition": "^1.4.1"
  9464. },
  9465. "type": "library",
  9466. "extra": {
  9467. "branch-alias": {
  9468. "dev-develop": "6.x-dev"
  9469. },
  9470. "laravel": {
  9471. "providers": [
  9472. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9473. ]
  9474. }
  9475. },
  9476. "autoload": {
  9477. "psr-4": {
  9478. "NunoMaduro\\Collision\\": "src/"
  9479. }
  9480. },
  9481. "notification-url": "https://packagist.org/downloads/",
  9482. "license": [
  9483. "MIT"
  9484. ],
  9485. "authors": [
  9486. {
  9487. "name": "Nuno Maduro",
  9488. "email": "enunomaduro@gmail.com"
  9489. }
  9490. ],
  9491. "description": "Cli error handling for console/command-line PHP applications.",
  9492. "keywords": [
  9493. "artisan",
  9494. "cli",
  9495. "command-line",
  9496. "console",
  9497. "error",
  9498. "handling",
  9499. "laravel",
  9500. "laravel-zero",
  9501. "php",
  9502. "symfony"
  9503. ],
  9504. "support": {
  9505. "issues": "https://github.com/nunomaduro/collision/issues",
  9506. "source": "https://github.com/nunomaduro/collision"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9511. "type": "custom"
  9512. },
  9513. {
  9514. "url": "https://github.com/nunomaduro",
  9515. "type": "github"
  9516. },
  9517. {
  9518. "url": "https://www.patreon.com/nunomaduro",
  9519. "type": "patreon"
  9520. }
  9521. ],
  9522. "time": "2023-01-03T12:54:54+00:00"
  9523. },
  9524. {
  9525. "name": "phar-io/manifest",
  9526. "version": "2.0.3",
  9527. "source": {
  9528. "type": "git",
  9529. "url": "https://github.com/phar-io/manifest.git",
  9530. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9531. },
  9532. "dist": {
  9533. "type": "zip",
  9534. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9535. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9536. "shasum": ""
  9537. },
  9538. "require": {
  9539. "ext-dom": "*",
  9540. "ext-phar": "*",
  9541. "ext-xmlwriter": "*",
  9542. "phar-io/version": "^3.0.1",
  9543. "php": "^7.2 || ^8.0"
  9544. },
  9545. "type": "library",
  9546. "extra": {
  9547. "branch-alias": {
  9548. "dev-master": "2.0.x-dev"
  9549. }
  9550. },
  9551. "autoload": {
  9552. "classmap": [
  9553. "src/"
  9554. ]
  9555. },
  9556. "notification-url": "https://packagist.org/downloads/",
  9557. "license": [
  9558. "BSD-3-Clause"
  9559. ],
  9560. "authors": [
  9561. {
  9562. "name": "Arne Blankerts",
  9563. "email": "arne@blankerts.de",
  9564. "role": "Developer"
  9565. },
  9566. {
  9567. "name": "Sebastian Heuer",
  9568. "email": "sebastian@phpeople.de",
  9569. "role": "Developer"
  9570. },
  9571. {
  9572. "name": "Sebastian Bergmann",
  9573. "email": "sebastian@phpunit.de",
  9574. "role": "Developer"
  9575. }
  9576. ],
  9577. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9578. "support": {
  9579. "issues": "https://github.com/phar-io/manifest/issues",
  9580. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9581. },
  9582. "time": "2021-07-20T11:28:43+00:00"
  9583. },
  9584. {
  9585. "name": "phar-io/version",
  9586. "version": "3.2.1",
  9587. "source": {
  9588. "type": "git",
  9589. "url": "https://github.com/phar-io/version.git",
  9590. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9591. },
  9592. "dist": {
  9593. "type": "zip",
  9594. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9595. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9596. "shasum": ""
  9597. },
  9598. "require": {
  9599. "php": "^7.2 || ^8.0"
  9600. },
  9601. "type": "library",
  9602. "autoload": {
  9603. "classmap": [
  9604. "src/"
  9605. ]
  9606. },
  9607. "notification-url": "https://packagist.org/downloads/",
  9608. "license": [
  9609. "BSD-3-Clause"
  9610. ],
  9611. "authors": [
  9612. {
  9613. "name": "Arne Blankerts",
  9614. "email": "arne@blankerts.de",
  9615. "role": "Developer"
  9616. },
  9617. {
  9618. "name": "Sebastian Heuer",
  9619. "email": "sebastian@phpeople.de",
  9620. "role": "Developer"
  9621. },
  9622. {
  9623. "name": "Sebastian Bergmann",
  9624. "email": "sebastian@phpunit.de",
  9625. "role": "Developer"
  9626. }
  9627. ],
  9628. "description": "Library for handling version information and constraints",
  9629. "support": {
  9630. "issues": "https://github.com/phar-io/version/issues",
  9631. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9632. },
  9633. "time": "2022-02-21T01:04:05+00:00"
  9634. },
  9635. {
  9636. "name": "phpunit/php-code-coverage",
  9637. "version": "9.2.26",
  9638. "source": {
  9639. "type": "git",
  9640. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9641. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  9642. },
  9643. "dist": {
  9644. "type": "zip",
  9645. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9646. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9647. "shasum": ""
  9648. },
  9649. "require": {
  9650. "ext-dom": "*",
  9651. "ext-libxml": "*",
  9652. "ext-xmlwriter": "*",
  9653. "nikic/php-parser": "^4.15",
  9654. "php": ">=7.3",
  9655. "phpunit/php-file-iterator": "^3.0.3",
  9656. "phpunit/php-text-template": "^2.0.2",
  9657. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9658. "sebastian/complexity": "^2.0",
  9659. "sebastian/environment": "^5.1.2",
  9660. "sebastian/lines-of-code": "^1.0.3",
  9661. "sebastian/version": "^3.0.1",
  9662. "theseer/tokenizer": "^1.2.0"
  9663. },
  9664. "require-dev": {
  9665. "phpunit/phpunit": "^9.3"
  9666. },
  9667. "suggest": {
  9668. "ext-pcov": "PHP extension that provides line coverage",
  9669. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9670. },
  9671. "type": "library",
  9672. "extra": {
  9673. "branch-alias": {
  9674. "dev-master": "9.2-dev"
  9675. }
  9676. },
  9677. "autoload": {
  9678. "classmap": [
  9679. "src/"
  9680. ]
  9681. },
  9682. "notification-url": "https://packagist.org/downloads/",
  9683. "license": [
  9684. "BSD-3-Clause"
  9685. ],
  9686. "authors": [
  9687. {
  9688. "name": "Sebastian Bergmann",
  9689. "email": "sebastian@phpunit.de",
  9690. "role": "lead"
  9691. }
  9692. ],
  9693. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9694. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9695. "keywords": [
  9696. "coverage",
  9697. "testing",
  9698. "xunit"
  9699. ],
  9700. "support": {
  9701. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9702. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  9703. },
  9704. "funding": [
  9705. {
  9706. "url": "https://github.com/sebastianbergmann",
  9707. "type": "github"
  9708. }
  9709. ],
  9710. "time": "2023-03-06T12:58:08+00:00"
  9711. },
  9712. {
  9713. "name": "phpunit/php-file-iterator",
  9714. "version": "3.0.6",
  9715. "source": {
  9716. "type": "git",
  9717. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9718. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9719. },
  9720. "dist": {
  9721. "type": "zip",
  9722. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9723. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9724. "shasum": ""
  9725. },
  9726. "require": {
  9727. "php": ">=7.3"
  9728. },
  9729. "require-dev": {
  9730. "phpunit/phpunit": "^9.3"
  9731. },
  9732. "type": "library",
  9733. "extra": {
  9734. "branch-alias": {
  9735. "dev-master": "3.0-dev"
  9736. }
  9737. },
  9738. "autoload": {
  9739. "classmap": [
  9740. "src/"
  9741. ]
  9742. },
  9743. "notification-url": "https://packagist.org/downloads/",
  9744. "license": [
  9745. "BSD-3-Clause"
  9746. ],
  9747. "authors": [
  9748. {
  9749. "name": "Sebastian Bergmann",
  9750. "email": "sebastian@phpunit.de",
  9751. "role": "lead"
  9752. }
  9753. ],
  9754. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9755. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9756. "keywords": [
  9757. "filesystem",
  9758. "iterator"
  9759. ],
  9760. "support": {
  9761. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9762. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9763. },
  9764. "funding": [
  9765. {
  9766. "url": "https://github.com/sebastianbergmann",
  9767. "type": "github"
  9768. }
  9769. ],
  9770. "time": "2021-12-02T12:48:52+00:00"
  9771. },
  9772. {
  9773. "name": "phpunit/php-invoker",
  9774. "version": "3.1.1",
  9775. "source": {
  9776. "type": "git",
  9777. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9778. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9779. },
  9780. "dist": {
  9781. "type": "zip",
  9782. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9783. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9784. "shasum": ""
  9785. },
  9786. "require": {
  9787. "php": ">=7.3"
  9788. },
  9789. "require-dev": {
  9790. "ext-pcntl": "*",
  9791. "phpunit/phpunit": "^9.3"
  9792. },
  9793. "suggest": {
  9794. "ext-pcntl": "*"
  9795. },
  9796. "type": "library",
  9797. "extra": {
  9798. "branch-alias": {
  9799. "dev-master": "3.1-dev"
  9800. }
  9801. },
  9802. "autoload": {
  9803. "classmap": [
  9804. "src/"
  9805. ]
  9806. },
  9807. "notification-url": "https://packagist.org/downloads/",
  9808. "license": [
  9809. "BSD-3-Clause"
  9810. ],
  9811. "authors": [
  9812. {
  9813. "name": "Sebastian Bergmann",
  9814. "email": "sebastian@phpunit.de",
  9815. "role": "lead"
  9816. }
  9817. ],
  9818. "description": "Invoke callables with a timeout",
  9819. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9820. "keywords": [
  9821. "process"
  9822. ],
  9823. "support": {
  9824. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9825. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9826. },
  9827. "funding": [
  9828. {
  9829. "url": "https://github.com/sebastianbergmann",
  9830. "type": "github"
  9831. }
  9832. ],
  9833. "time": "2020-09-28T05:58:55+00:00"
  9834. },
  9835. {
  9836. "name": "phpunit/php-text-template",
  9837. "version": "2.0.4",
  9838. "source": {
  9839. "type": "git",
  9840. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9841. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9842. },
  9843. "dist": {
  9844. "type": "zip",
  9845. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9846. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9847. "shasum": ""
  9848. },
  9849. "require": {
  9850. "php": ">=7.3"
  9851. },
  9852. "require-dev": {
  9853. "phpunit/phpunit": "^9.3"
  9854. },
  9855. "type": "library",
  9856. "extra": {
  9857. "branch-alias": {
  9858. "dev-master": "2.0-dev"
  9859. }
  9860. },
  9861. "autoload": {
  9862. "classmap": [
  9863. "src/"
  9864. ]
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "BSD-3-Clause"
  9869. ],
  9870. "authors": [
  9871. {
  9872. "name": "Sebastian Bergmann",
  9873. "email": "sebastian@phpunit.de",
  9874. "role": "lead"
  9875. }
  9876. ],
  9877. "description": "Simple template engine.",
  9878. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9879. "keywords": [
  9880. "template"
  9881. ],
  9882. "support": {
  9883. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9884. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9885. },
  9886. "funding": [
  9887. {
  9888. "url": "https://github.com/sebastianbergmann",
  9889. "type": "github"
  9890. }
  9891. ],
  9892. "time": "2020-10-26T05:33:50+00:00"
  9893. },
  9894. {
  9895. "name": "phpunit/php-timer",
  9896. "version": "5.0.3",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9900. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9905. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "php": ">=7.3"
  9910. },
  9911. "require-dev": {
  9912. "phpunit/phpunit": "^9.3"
  9913. },
  9914. "type": "library",
  9915. "extra": {
  9916. "branch-alias": {
  9917. "dev-master": "5.0-dev"
  9918. }
  9919. },
  9920. "autoload": {
  9921. "classmap": [
  9922. "src/"
  9923. ]
  9924. },
  9925. "notification-url": "https://packagist.org/downloads/",
  9926. "license": [
  9927. "BSD-3-Clause"
  9928. ],
  9929. "authors": [
  9930. {
  9931. "name": "Sebastian Bergmann",
  9932. "email": "sebastian@phpunit.de",
  9933. "role": "lead"
  9934. }
  9935. ],
  9936. "description": "Utility class for timing",
  9937. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9938. "keywords": [
  9939. "timer"
  9940. ],
  9941. "support": {
  9942. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9943. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9944. },
  9945. "funding": [
  9946. {
  9947. "url": "https://github.com/sebastianbergmann",
  9948. "type": "github"
  9949. }
  9950. ],
  9951. "time": "2020-10-26T13:16:10+00:00"
  9952. },
  9953. {
  9954. "name": "phpunit/phpunit",
  9955. "version": "9.6.7",
  9956. "source": {
  9957. "type": "git",
  9958. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9959. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2"
  9960. },
  9961. "dist": {
  9962. "type": "zip",
  9963. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  9964. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  9965. "shasum": ""
  9966. },
  9967. "require": {
  9968. "doctrine/instantiator": "^1.3.1 || ^2",
  9969. "ext-dom": "*",
  9970. "ext-json": "*",
  9971. "ext-libxml": "*",
  9972. "ext-mbstring": "*",
  9973. "ext-xml": "*",
  9974. "ext-xmlwriter": "*",
  9975. "myclabs/deep-copy": "^1.10.1",
  9976. "phar-io/manifest": "^2.0.3",
  9977. "phar-io/version": "^3.0.2",
  9978. "php": ">=7.3",
  9979. "phpunit/php-code-coverage": "^9.2.13",
  9980. "phpunit/php-file-iterator": "^3.0.5",
  9981. "phpunit/php-invoker": "^3.1.1",
  9982. "phpunit/php-text-template": "^2.0.3",
  9983. "phpunit/php-timer": "^5.0.2",
  9984. "sebastian/cli-parser": "^1.0.1",
  9985. "sebastian/code-unit": "^1.0.6",
  9986. "sebastian/comparator": "^4.0.8",
  9987. "sebastian/diff": "^4.0.3",
  9988. "sebastian/environment": "^5.1.3",
  9989. "sebastian/exporter": "^4.0.5",
  9990. "sebastian/global-state": "^5.0.1",
  9991. "sebastian/object-enumerator": "^4.0.3",
  9992. "sebastian/resource-operations": "^3.0.3",
  9993. "sebastian/type": "^3.2",
  9994. "sebastian/version": "^3.0.2"
  9995. },
  9996. "suggest": {
  9997. "ext-soap": "To be able to generate mocks based on WSDL files",
  9998. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9999. },
  10000. "bin": [
  10001. "phpunit"
  10002. ],
  10003. "type": "library",
  10004. "extra": {
  10005. "branch-alias": {
  10006. "dev-master": "9.6-dev"
  10007. }
  10008. },
  10009. "autoload": {
  10010. "files": [
  10011. "src/Framework/Assert/Functions.php"
  10012. ],
  10013. "classmap": [
  10014. "src/"
  10015. ]
  10016. },
  10017. "notification-url": "https://packagist.org/downloads/",
  10018. "license": [
  10019. "BSD-3-Clause"
  10020. ],
  10021. "authors": [
  10022. {
  10023. "name": "Sebastian Bergmann",
  10024. "email": "sebastian@phpunit.de",
  10025. "role": "lead"
  10026. }
  10027. ],
  10028. "description": "The PHP Unit Testing framework.",
  10029. "homepage": "https://phpunit.de/",
  10030. "keywords": [
  10031. "phpunit",
  10032. "testing",
  10033. "xunit"
  10034. ],
  10035. "support": {
  10036. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10037. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10038. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.7"
  10039. },
  10040. "funding": [
  10041. {
  10042. "url": "https://phpunit.de/sponsors.html",
  10043. "type": "custom"
  10044. },
  10045. {
  10046. "url": "https://github.com/sebastianbergmann",
  10047. "type": "github"
  10048. },
  10049. {
  10050. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10051. "type": "tidelift"
  10052. }
  10053. ],
  10054. "time": "2023-04-14T08:58:40+00:00"
  10055. },
  10056. {
  10057. "name": "sebastian/cli-parser",
  10058. "version": "1.0.1",
  10059. "source": {
  10060. "type": "git",
  10061. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10062. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10063. },
  10064. "dist": {
  10065. "type": "zip",
  10066. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10067. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10068. "shasum": ""
  10069. },
  10070. "require": {
  10071. "php": ">=7.3"
  10072. },
  10073. "require-dev": {
  10074. "phpunit/phpunit": "^9.3"
  10075. },
  10076. "type": "library",
  10077. "extra": {
  10078. "branch-alias": {
  10079. "dev-master": "1.0-dev"
  10080. }
  10081. },
  10082. "autoload": {
  10083. "classmap": [
  10084. "src/"
  10085. ]
  10086. },
  10087. "notification-url": "https://packagist.org/downloads/",
  10088. "license": [
  10089. "BSD-3-Clause"
  10090. ],
  10091. "authors": [
  10092. {
  10093. "name": "Sebastian Bergmann",
  10094. "email": "sebastian@phpunit.de",
  10095. "role": "lead"
  10096. }
  10097. ],
  10098. "description": "Library for parsing CLI options",
  10099. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10100. "support": {
  10101. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10102. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10103. },
  10104. "funding": [
  10105. {
  10106. "url": "https://github.com/sebastianbergmann",
  10107. "type": "github"
  10108. }
  10109. ],
  10110. "time": "2020-09-28T06:08:49+00:00"
  10111. },
  10112. {
  10113. "name": "sebastian/code-unit",
  10114. "version": "1.0.8",
  10115. "source": {
  10116. "type": "git",
  10117. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10118. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10119. },
  10120. "dist": {
  10121. "type": "zip",
  10122. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10123. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10124. "shasum": ""
  10125. },
  10126. "require": {
  10127. "php": ">=7.3"
  10128. },
  10129. "require-dev": {
  10130. "phpunit/phpunit": "^9.3"
  10131. },
  10132. "type": "library",
  10133. "extra": {
  10134. "branch-alias": {
  10135. "dev-master": "1.0-dev"
  10136. }
  10137. },
  10138. "autoload": {
  10139. "classmap": [
  10140. "src/"
  10141. ]
  10142. },
  10143. "notification-url": "https://packagist.org/downloads/",
  10144. "license": [
  10145. "BSD-3-Clause"
  10146. ],
  10147. "authors": [
  10148. {
  10149. "name": "Sebastian Bergmann",
  10150. "email": "sebastian@phpunit.de",
  10151. "role": "lead"
  10152. }
  10153. ],
  10154. "description": "Collection of value objects that represent the PHP code units",
  10155. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10156. "support": {
  10157. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10158. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10159. },
  10160. "funding": [
  10161. {
  10162. "url": "https://github.com/sebastianbergmann",
  10163. "type": "github"
  10164. }
  10165. ],
  10166. "time": "2020-10-26T13:08:54+00:00"
  10167. },
  10168. {
  10169. "name": "sebastian/code-unit-reverse-lookup",
  10170. "version": "2.0.3",
  10171. "source": {
  10172. "type": "git",
  10173. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10174. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10175. },
  10176. "dist": {
  10177. "type": "zip",
  10178. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10179. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10180. "shasum": ""
  10181. },
  10182. "require": {
  10183. "php": ">=7.3"
  10184. },
  10185. "require-dev": {
  10186. "phpunit/phpunit": "^9.3"
  10187. },
  10188. "type": "library",
  10189. "extra": {
  10190. "branch-alias": {
  10191. "dev-master": "2.0-dev"
  10192. }
  10193. },
  10194. "autoload": {
  10195. "classmap": [
  10196. "src/"
  10197. ]
  10198. },
  10199. "notification-url": "https://packagist.org/downloads/",
  10200. "license": [
  10201. "BSD-3-Clause"
  10202. ],
  10203. "authors": [
  10204. {
  10205. "name": "Sebastian Bergmann",
  10206. "email": "sebastian@phpunit.de"
  10207. }
  10208. ],
  10209. "description": "Looks up which function or method a line of code belongs to",
  10210. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10211. "support": {
  10212. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10213. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10214. },
  10215. "funding": [
  10216. {
  10217. "url": "https://github.com/sebastianbergmann",
  10218. "type": "github"
  10219. }
  10220. ],
  10221. "time": "2020-09-28T05:30:19+00:00"
  10222. },
  10223. {
  10224. "name": "sebastian/comparator",
  10225. "version": "4.0.8",
  10226. "source": {
  10227. "type": "git",
  10228. "url": "https://github.com/sebastianbergmann/comparator.git",
  10229. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10230. },
  10231. "dist": {
  10232. "type": "zip",
  10233. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10234. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10235. "shasum": ""
  10236. },
  10237. "require": {
  10238. "php": ">=7.3",
  10239. "sebastian/diff": "^4.0",
  10240. "sebastian/exporter": "^4.0"
  10241. },
  10242. "require-dev": {
  10243. "phpunit/phpunit": "^9.3"
  10244. },
  10245. "type": "library",
  10246. "extra": {
  10247. "branch-alias": {
  10248. "dev-master": "4.0-dev"
  10249. }
  10250. },
  10251. "autoload": {
  10252. "classmap": [
  10253. "src/"
  10254. ]
  10255. },
  10256. "notification-url": "https://packagist.org/downloads/",
  10257. "license": [
  10258. "BSD-3-Clause"
  10259. ],
  10260. "authors": [
  10261. {
  10262. "name": "Sebastian Bergmann",
  10263. "email": "sebastian@phpunit.de"
  10264. },
  10265. {
  10266. "name": "Jeff Welch",
  10267. "email": "whatthejeff@gmail.com"
  10268. },
  10269. {
  10270. "name": "Volker Dusch",
  10271. "email": "github@wallbash.com"
  10272. },
  10273. {
  10274. "name": "Bernhard Schussek",
  10275. "email": "bschussek@2bepublished.at"
  10276. }
  10277. ],
  10278. "description": "Provides the functionality to compare PHP values for equality",
  10279. "homepage": "https://github.com/sebastianbergmann/comparator",
  10280. "keywords": [
  10281. "comparator",
  10282. "compare",
  10283. "equality"
  10284. ],
  10285. "support": {
  10286. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10287. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10288. },
  10289. "funding": [
  10290. {
  10291. "url": "https://github.com/sebastianbergmann",
  10292. "type": "github"
  10293. }
  10294. ],
  10295. "time": "2022-09-14T12:41:17+00:00"
  10296. },
  10297. {
  10298. "name": "sebastian/complexity",
  10299. "version": "2.0.2",
  10300. "source": {
  10301. "type": "git",
  10302. "url": "https://github.com/sebastianbergmann/complexity.git",
  10303. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10304. },
  10305. "dist": {
  10306. "type": "zip",
  10307. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10308. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10309. "shasum": ""
  10310. },
  10311. "require": {
  10312. "nikic/php-parser": "^4.7",
  10313. "php": ">=7.3"
  10314. },
  10315. "require-dev": {
  10316. "phpunit/phpunit": "^9.3"
  10317. },
  10318. "type": "library",
  10319. "extra": {
  10320. "branch-alias": {
  10321. "dev-master": "2.0-dev"
  10322. }
  10323. },
  10324. "autoload": {
  10325. "classmap": [
  10326. "src/"
  10327. ]
  10328. },
  10329. "notification-url": "https://packagist.org/downloads/",
  10330. "license": [
  10331. "BSD-3-Clause"
  10332. ],
  10333. "authors": [
  10334. {
  10335. "name": "Sebastian Bergmann",
  10336. "email": "sebastian@phpunit.de",
  10337. "role": "lead"
  10338. }
  10339. ],
  10340. "description": "Library for calculating the complexity of PHP code units",
  10341. "homepage": "https://github.com/sebastianbergmann/complexity",
  10342. "support": {
  10343. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10344. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10345. },
  10346. "funding": [
  10347. {
  10348. "url": "https://github.com/sebastianbergmann",
  10349. "type": "github"
  10350. }
  10351. ],
  10352. "time": "2020-10-26T15:52:27+00:00"
  10353. },
  10354. {
  10355. "name": "sebastian/diff",
  10356. "version": "4.0.4",
  10357. "source": {
  10358. "type": "git",
  10359. "url": "https://github.com/sebastianbergmann/diff.git",
  10360. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10361. },
  10362. "dist": {
  10363. "type": "zip",
  10364. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10365. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10366. "shasum": ""
  10367. },
  10368. "require": {
  10369. "php": ">=7.3"
  10370. },
  10371. "require-dev": {
  10372. "phpunit/phpunit": "^9.3",
  10373. "symfony/process": "^4.2 || ^5"
  10374. },
  10375. "type": "library",
  10376. "extra": {
  10377. "branch-alias": {
  10378. "dev-master": "4.0-dev"
  10379. }
  10380. },
  10381. "autoload": {
  10382. "classmap": [
  10383. "src/"
  10384. ]
  10385. },
  10386. "notification-url": "https://packagist.org/downloads/",
  10387. "license": [
  10388. "BSD-3-Clause"
  10389. ],
  10390. "authors": [
  10391. {
  10392. "name": "Sebastian Bergmann",
  10393. "email": "sebastian@phpunit.de"
  10394. },
  10395. {
  10396. "name": "Kore Nordmann",
  10397. "email": "mail@kore-nordmann.de"
  10398. }
  10399. ],
  10400. "description": "Diff implementation",
  10401. "homepage": "https://github.com/sebastianbergmann/diff",
  10402. "keywords": [
  10403. "diff",
  10404. "udiff",
  10405. "unidiff",
  10406. "unified diff"
  10407. ],
  10408. "support": {
  10409. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10410. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10411. },
  10412. "funding": [
  10413. {
  10414. "url": "https://github.com/sebastianbergmann",
  10415. "type": "github"
  10416. }
  10417. ],
  10418. "time": "2020-10-26T13:10:38+00:00"
  10419. },
  10420. {
  10421. "name": "sebastian/environment",
  10422. "version": "5.1.5",
  10423. "source": {
  10424. "type": "git",
  10425. "url": "https://github.com/sebastianbergmann/environment.git",
  10426. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10427. },
  10428. "dist": {
  10429. "type": "zip",
  10430. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10431. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10432. "shasum": ""
  10433. },
  10434. "require": {
  10435. "php": ">=7.3"
  10436. },
  10437. "require-dev": {
  10438. "phpunit/phpunit": "^9.3"
  10439. },
  10440. "suggest": {
  10441. "ext-posix": "*"
  10442. },
  10443. "type": "library",
  10444. "extra": {
  10445. "branch-alias": {
  10446. "dev-master": "5.1-dev"
  10447. }
  10448. },
  10449. "autoload": {
  10450. "classmap": [
  10451. "src/"
  10452. ]
  10453. },
  10454. "notification-url": "https://packagist.org/downloads/",
  10455. "license": [
  10456. "BSD-3-Clause"
  10457. ],
  10458. "authors": [
  10459. {
  10460. "name": "Sebastian Bergmann",
  10461. "email": "sebastian@phpunit.de"
  10462. }
  10463. ],
  10464. "description": "Provides functionality to handle HHVM/PHP environments",
  10465. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10466. "keywords": [
  10467. "Xdebug",
  10468. "environment",
  10469. "hhvm"
  10470. ],
  10471. "support": {
  10472. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10473. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10474. },
  10475. "funding": [
  10476. {
  10477. "url": "https://github.com/sebastianbergmann",
  10478. "type": "github"
  10479. }
  10480. ],
  10481. "time": "2023-02-03T06:03:51+00:00"
  10482. },
  10483. {
  10484. "name": "sebastian/exporter",
  10485. "version": "4.0.5",
  10486. "source": {
  10487. "type": "git",
  10488. "url": "https://github.com/sebastianbergmann/exporter.git",
  10489. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10490. },
  10491. "dist": {
  10492. "type": "zip",
  10493. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10494. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10495. "shasum": ""
  10496. },
  10497. "require": {
  10498. "php": ">=7.3",
  10499. "sebastian/recursion-context": "^4.0"
  10500. },
  10501. "require-dev": {
  10502. "ext-mbstring": "*",
  10503. "phpunit/phpunit": "^9.3"
  10504. },
  10505. "type": "library",
  10506. "extra": {
  10507. "branch-alias": {
  10508. "dev-master": "4.0-dev"
  10509. }
  10510. },
  10511. "autoload": {
  10512. "classmap": [
  10513. "src/"
  10514. ]
  10515. },
  10516. "notification-url": "https://packagist.org/downloads/",
  10517. "license": [
  10518. "BSD-3-Clause"
  10519. ],
  10520. "authors": [
  10521. {
  10522. "name": "Sebastian Bergmann",
  10523. "email": "sebastian@phpunit.de"
  10524. },
  10525. {
  10526. "name": "Jeff Welch",
  10527. "email": "whatthejeff@gmail.com"
  10528. },
  10529. {
  10530. "name": "Volker Dusch",
  10531. "email": "github@wallbash.com"
  10532. },
  10533. {
  10534. "name": "Adam Harvey",
  10535. "email": "aharvey@php.net"
  10536. },
  10537. {
  10538. "name": "Bernhard Schussek",
  10539. "email": "bschussek@gmail.com"
  10540. }
  10541. ],
  10542. "description": "Provides the functionality to export PHP variables for visualization",
  10543. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10544. "keywords": [
  10545. "export",
  10546. "exporter"
  10547. ],
  10548. "support": {
  10549. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10550. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10551. },
  10552. "funding": [
  10553. {
  10554. "url": "https://github.com/sebastianbergmann",
  10555. "type": "github"
  10556. }
  10557. ],
  10558. "time": "2022-09-14T06:03:37+00:00"
  10559. },
  10560. {
  10561. "name": "sebastian/global-state",
  10562. "version": "5.0.5",
  10563. "source": {
  10564. "type": "git",
  10565. "url": "https://github.com/sebastianbergmann/global-state.git",
  10566. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  10567. },
  10568. "dist": {
  10569. "type": "zip",
  10570. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10571. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10572. "shasum": ""
  10573. },
  10574. "require": {
  10575. "php": ">=7.3",
  10576. "sebastian/object-reflector": "^2.0",
  10577. "sebastian/recursion-context": "^4.0"
  10578. },
  10579. "require-dev": {
  10580. "ext-dom": "*",
  10581. "phpunit/phpunit": "^9.3"
  10582. },
  10583. "suggest": {
  10584. "ext-uopz": "*"
  10585. },
  10586. "type": "library",
  10587. "extra": {
  10588. "branch-alias": {
  10589. "dev-master": "5.0-dev"
  10590. }
  10591. },
  10592. "autoload": {
  10593. "classmap": [
  10594. "src/"
  10595. ]
  10596. },
  10597. "notification-url": "https://packagist.org/downloads/",
  10598. "license": [
  10599. "BSD-3-Clause"
  10600. ],
  10601. "authors": [
  10602. {
  10603. "name": "Sebastian Bergmann",
  10604. "email": "sebastian@phpunit.de"
  10605. }
  10606. ],
  10607. "description": "Snapshotting of global state",
  10608. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10609. "keywords": [
  10610. "global state"
  10611. ],
  10612. "support": {
  10613. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10614. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  10615. },
  10616. "funding": [
  10617. {
  10618. "url": "https://github.com/sebastianbergmann",
  10619. "type": "github"
  10620. }
  10621. ],
  10622. "time": "2022-02-14T08:28:10+00:00"
  10623. },
  10624. {
  10625. "name": "sebastian/lines-of-code",
  10626. "version": "1.0.3",
  10627. "source": {
  10628. "type": "git",
  10629. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10630. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10631. },
  10632. "dist": {
  10633. "type": "zip",
  10634. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10635. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10636. "shasum": ""
  10637. },
  10638. "require": {
  10639. "nikic/php-parser": "^4.6",
  10640. "php": ">=7.3"
  10641. },
  10642. "require-dev": {
  10643. "phpunit/phpunit": "^9.3"
  10644. },
  10645. "type": "library",
  10646. "extra": {
  10647. "branch-alias": {
  10648. "dev-master": "1.0-dev"
  10649. }
  10650. },
  10651. "autoload": {
  10652. "classmap": [
  10653. "src/"
  10654. ]
  10655. },
  10656. "notification-url": "https://packagist.org/downloads/",
  10657. "license": [
  10658. "BSD-3-Clause"
  10659. ],
  10660. "authors": [
  10661. {
  10662. "name": "Sebastian Bergmann",
  10663. "email": "sebastian@phpunit.de",
  10664. "role": "lead"
  10665. }
  10666. ],
  10667. "description": "Library for counting the lines of code in PHP source code",
  10668. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10669. "support": {
  10670. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10671. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10672. },
  10673. "funding": [
  10674. {
  10675. "url": "https://github.com/sebastianbergmann",
  10676. "type": "github"
  10677. }
  10678. ],
  10679. "time": "2020-11-28T06:42:11+00:00"
  10680. },
  10681. {
  10682. "name": "sebastian/object-enumerator",
  10683. "version": "4.0.4",
  10684. "source": {
  10685. "type": "git",
  10686. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10687. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10688. },
  10689. "dist": {
  10690. "type": "zip",
  10691. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10692. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10693. "shasum": ""
  10694. },
  10695. "require": {
  10696. "php": ">=7.3",
  10697. "sebastian/object-reflector": "^2.0",
  10698. "sebastian/recursion-context": "^4.0"
  10699. },
  10700. "require-dev": {
  10701. "phpunit/phpunit": "^9.3"
  10702. },
  10703. "type": "library",
  10704. "extra": {
  10705. "branch-alias": {
  10706. "dev-master": "4.0-dev"
  10707. }
  10708. },
  10709. "autoload": {
  10710. "classmap": [
  10711. "src/"
  10712. ]
  10713. },
  10714. "notification-url": "https://packagist.org/downloads/",
  10715. "license": [
  10716. "BSD-3-Clause"
  10717. ],
  10718. "authors": [
  10719. {
  10720. "name": "Sebastian Bergmann",
  10721. "email": "sebastian@phpunit.de"
  10722. }
  10723. ],
  10724. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10725. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10726. "support": {
  10727. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10728. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10729. },
  10730. "funding": [
  10731. {
  10732. "url": "https://github.com/sebastianbergmann",
  10733. "type": "github"
  10734. }
  10735. ],
  10736. "time": "2020-10-26T13:12:34+00:00"
  10737. },
  10738. {
  10739. "name": "sebastian/object-reflector",
  10740. "version": "2.0.4",
  10741. "source": {
  10742. "type": "git",
  10743. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10744. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10745. },
  10746. "dist": {
  10747. "type": "zip",
  10748. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10749. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10750. "shasum": ""
  10751. },
  10752. "require": {
  10753. "php": ">=7.3"
  10754. },
  10755. "require-dev": {
  10756. "phpunit/phpunit": "^9.3"
  10757. },
  10758. "type": "library",
  10759. "extra": {
  10760. "branch-alias": {
  10761. "dev-master": "2.0-dev"
  10762. }
  10763. },
  10764. "autoload": {
  10765. "classmap": [
  10766. "src/"
  10767. ]
  10768. },
  10769. "notification-url": "https://packagist.org/downloads/",
  10770. "license": [
  10771. "BSD-3-Clause"
  10772. ],
  10773. "authors": [
  10774. {
  10775. "name": "Sebastian Bergmann",
  10776. "email": "sebastian@phpunit.de"
  10777. }
  10778. ],
  10779. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10780. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10781. "support": {
  10782. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10783. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10784. },
  10785. "funding": [
  10786. {
  10787. "url": "https://github.com/sebastianbergmann",
  10788. "type": "github"
  10789. }
  10790. ],
  10791. "time": "2020-10-26T13:14:26+00:00"
  10792. },
  10793. {
  10794. "name": "sebastian/recursion-context",
  10795. "version": "4.0.5",
  10796. "source": {
  10797. "type": "git",
  10798. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10799. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10800. },
  10801. "dist": {
  10802. "type": "zip",
  10803. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10804. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10805. "shasum": ""
  10806. },
  10807. "require": {
  10808. "php": ">=7.3"
  10809. },
  10810. "require-dev": {
  10811. "phpunit/phpunit": "^9.3"
  10812. },
  10813. "type": "library",
  10814. "extra": {
  10815. "branch-alias": {
  10816. "dev-master": "4.0-dev"
  10817. }
  10818. },
  10819. "autoload": {
  10820. "classmap": [
  10821. "src/"
  10822. ]
  10823. },
  10824. "notification-url": "https://packagist.org/downloads/",
  10825. "license": [
  10826. "BSD-3-Clause"
  10827. ],
  10828. "authors": [
  10829. {
  10830. "name": "Sebastian Bergmann",
  10831. "email": "sebastian@phpunit.de"
  10832. },
  10833. {
  10834. "name": "Jeff Welch",
  10835. "email": "whatthejeff@gmail.com"
  10836. },
  10837. {
  10838. "name": "Adam Harvey",
  10839. "email": "aharvey@php.net"
  10840. }
  10841. ],
  10842. "description": "Provides functionality to recursively process PHP variables",
  10843. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10844. "support": {
  10845. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10846. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10847. },
  10848. "funding": [
  10849. {
  10850. "url": "https://github.com/sebastianbergmann",
  10851. "type": "github"
  10852. }
  10853. ],
  10854. "time": "2023-02-03T06:07:39+00:00"
  10855. },
  10856. {
  10857. "name": "sebastian/resource-operations",
  10858. "version": "3.0.3",
  10859. "source": {
  10860. "type": "git",
  10861. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10862. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10863. },
  10864. "dist": {
  10865. "type": "zip",
  10866. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10867. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10868. "shasum": ""
  10869. },
  10870. "require": {
  10871. "php": ">=7.3"
  10872. },
  10873. "require-dev": {
  10874. "phpunit/phpunit": "^9.0"
  10875. },
  10876. "type": "library",
  10877. "extra": {
  10878. "branch-alias": {
  10879. "dev-master": "3.0-dev"
  10880. }
  10881. },
  10882. "autoload": {
  10883. "classmap": [
  10884. "src/"
  10885. ]
  10886. },
  10887. "notification-url": "https://packagist.org/downloads/",
  10888. "license": [
  10889. "BSD-3-Clause"
  10890. ],
  10891. "authors": [
  10892. {
  10893. "name": "Sebastian Bergmann",
  10894. "email": "sebastian@phpunit.de"
  10895. }
  10896. ],
  10897. "description": "Provides a list of PHP built-in functions that operate on resources",
  10898. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10899. "support": {
  10900. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10901. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10902. },
  10903. "funding": [
  10904. {
  10905. "url": "https://github.com/sebastianbergmann",
  10906. "type": "github"
  10907. }
  10908. ],
  10909. "time": "2020-09-28T06:45:17+00:00"
  10910. },
  10911. {
  10912. "name": "sebastian/type",
  10913. "version": "3.2.1",
  10914. "source": {
  10915. "type": "git",
  10916. "url": "https://github.com/sebastianbergmann/type.git",
  10917. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10918. },
  10919. "dist": {
  10920. "type": "zip",
  10921. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10922. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10923. "shasum": ""
  10924. },
  10925. "require": {
  10926. "php": ">=7.3"
  10927. },
  10928. "require-dev": {
  10929. "phpunit/phpunit": "^9.5"
  10930. },
  10931. "type": "library",
  10932. "extra": {
  10933. "branch-alias": {
  10934. "dev-master": "3.2-dev"
  10935. }
  10936. },
  10937. "autoload": {
  10938. "classmap": [
  10939. "src/"
  10940. ]
  10941. },
  10942. "notification-url": "https://packagist.org/downloads/",
  10943. "license": [
  10944. "BSD-3-Clause"
  10945. ],
  10946. "authors": [
  10947. {
  10948. "name": "Sebastian Bergmann",
  10949. "email": "sebastian@phpunit.de",
  10950. "role": "lead"
  10951. }
  10952. ],
  10953. "description": "Collection of value objects that represent the types of the PHP type system",
  10954. "homepage": "https://github.com/sebastianbergmann/type",
  10955. "support": {
  10956. "issues": "https://github.com/sebastianbergmann/type/issues",
  10957. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10958. },
  10959. "funding": [
  10960. {
  10961. "url": "https://github.com/sebastianbergmann",
  10962. "type": "github"
  10963. }
  10964. ],
  10965. "time": "2023-02-03T06:13:03+00:00"
  10966. },
  10967. {
  10968. "name": "sebastian/version",
  10969. "version": "3.0.2",
  10970. "source": {
  10971. "type": "git",
  10972. "url": "https://github.com/sebastianbergmann/version.git",
  10973. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10974. },
  10975. "dist": {
  10976. "type": "zip",
  10977. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10978. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10979. "shasum": ""
  10980. },
  10981. "require": {
  10982. "php": ">=7.3"
  10983. },
  10984. "type": "library",
  10985. "extra": {
  10986. "branch-alias": {
  10987. "dev-master": "3.0-dev"
  10988. }
  10989. },
  10990. "autoload": {
  10991. "classmap": [
  10992. "src/"
  10993. ]
  10994. },
  10995. "notification-url": "https://packagist.org/downloads/",
  10996. "license": [
  10997. "BSD-3-Clause"
  10998. ],
  10999. "authors": [
  11000. {
  11001. "name": "Sebastian Bergmann",
  11002. "email": "sebastian@phpunit.de",
  11003. "role": "lead"
  11004. }
  11005. ],
  11006. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11007. "homepage": "https://github.com/sebastianbergmann/version",
  11008. "support": {
  11009. "issues": "https://github.com/sebastianbergmann/version/issues",
  11010. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11011. },
  11012. "funding": [
  11013. {
  11014. "url": "https://github.com/sebastianbergmann",
  11015. "type": "github"
  11016. }
  11017. ],
  11018. "time": "2020-09-28T06:39:44+00:00"
  11019. },
  11020. {
  11021. "name": "spatie/backtrace",
  11022. "version": "1.4.0",
  11023. "source": {
  11024. "type": "git",
  11025. "url": "https://github.com/spatie/backtrace.git",
  11026. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c"
  11027. },
  11028. "dist": {
  11029. "type": "zip",
  11030. "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c",
  11031. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c",
  11032. "shasum": ""
  11033. },
  11034. "require": {
  11035. "php": "^7.3|^8.0"
  11036. },
  11037. "require-dev": {
  11038. "ext-json": "*",
  11039. "phpunit/phpunit": "^9.3",
  11040. "spatie/phpunit-snapshot-assertions": "^4.2",
  11041. "symfony/var-dumper": "^5.1"
  11042. },
  11043. "type": "library",
  11044. "autoload": {
  11045. "psr-4": {
  11046. "Spatie\\Backtrace\\": "src"
  11047. }
  11048. },
  11049. "notification-url": "https://packagist.org/downloads/",
  11050. "license": [
  11051. "MIT"
  11052. ],
  11053. "authors": [
  11054. {
  11055. "name": "Freek Van de Herten",
  11056. "email": "freek@spatie.be",
  11057. "homepage": "https://spatie.be",
  11058. "role": "Developer"
  11059. }
  11060. ],
  11061. "description": "A better backtrace",
  11062. "homepage": "https://github.com/spatie/backtrace",
  11063. "keywords": [
  11064. "Backtrace",
  11065. "spatie"
  11066. ],
  11067. "support": {
  11068. "source": "https://github.com/spatie/backtrace/tree/1.4.0"
  11069. },
  11070. "funding": [
  11071. {
  11072. "url": "https://github.com/sponsors/spatie",
  11073. "type": "github"
  11074. },
  11075. {
  11076. "url": "https://spatie.be/open-source/support-us",
  11077. "type": "other"
  11078. }
  11079. ],
  11080. "time": "2023-03-04T08:57:24+00:00"
  11081. },
  11082. {
  11083. "name": "spatie/flare-client-php",
  11084. "version": "1.3.6",
  11085. "source": {
  11086. "type": "git",
  11087. "url": "https://github.com/spatie/flare-client-php.git",
  11088. "reference": "530ac81255af79f114344286e4275f8869c671e2"
  11089. },
  11090. "dist": {
  11091. "type": "zip",
  11092. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/530ac81255af79f114344286e4275f8869c671e2",
  11093. "reference": "530ac81255af79f114344286e4275f8869c671e2",
  11094. "shasum": ""
  11095. },
  11096. "require": {
  11097. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  11098. "php": "^8.0",
  11099. "spatie/backtrace": "^1.2",
  11100. "symfony/http-foundation": "^5.0|^6.0",
  11101. "symfony/mime": "^5.2|^6.0",
  11102. "symfony/process": "^5.2|^6.0",
  11103. "symfony/var-dumper": "^5.2|^6.0"
  11104. },
  11105. "require-dev": {
  11106. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  11107. "pestphp/pest": "^1.20",
  11108. "phpstan/extension-installer": "^1.1",
  11109. "phpstan/phpstan-deprecation-rules": "^1.0",
  11110. "phpstan/phpstan-phpunit": "^1.0",
  11111. "spatie/phpunit-snapshot-assertions": "^4.0"
  11112. },
  11113. "type": "library",
  11114. "extra": {
  11115. "branch-alias": {
  11116. "dev-main": "1.1.x-dev"
  11117. }
  11118. },
  11119. "autoload": {
  11120. "files": [
  11121. "src/helpers.php"
  11122. ],
  11123. "psr-4": {
  11124. "Spatie\\FlareClient\\": "src"
  11125. }
  11126. },
  11127. "notification-url": "https://packagist.org/downloads/",
  11128. "license": [
  11129. "MIT"
  11130. ],
  11131. "description": "Send PHP errors to Flare",
  11132. "homepage": "https://github.com/spatie/flare-client-php",
  11133. "keywords": [
  11134. "exception",
  11135. "flare",
  11136. "reporting",
  11137. "spatie"
  11138. ],
  11139. "support": {
  11140. "issues": "https://github.com/spatie/flare-client-php/issues",
  11141. "source": "https://github.com/spatie/flare-client-php/tree/1.3.6"
  11142. },
  11143. "funding": [
  11144. {
  11145. "url": "https://github.com/spatie",
  11146. "type": "github"
  11147. }
  11148. ],
  11149. "time": "2023-04-12T07:57:12+00:00"
  11150. },
  11151. {
  11152. "name": "spatie/ignition",
  11153. "version": "1.6.0",
  11154. "source": {
  11155. "type": "git",
  11156. "url": "https://github.com/spatie/ignition.git",
  11157. "reference": "fbcfcabc44e506e40c4d72fd4ddf465e272a600e"
  11158. },
  11159. "dist": {
  11160. "type": "zip",
  11161. "url": "https://api.github.com/repos/spatie/ignition/zipball/fbcfcabc44e506e40c4d72fd4ddf465e272a600e",
  11162. "reference": "fbcfcabc44e506e40c4d72fd4ddf465e272a600e",
  11163. "shasum": ""
  11164. },
  11165. "require": {
  11166. "ext-json": "*",
  11167. "ext-mbstring": "*",
  11168. "php": "^8.0",
  11169. "spatie/backtrace": "^1.4",
  11170. "spatie/flare-client-php": "^1.1",
  11171. "symfony/console": "^5.4|^6.0",
  11172. "symfony/var-dumper": "^5.4|^6.0"
  11173. },
  11174. "require-dev": {
  11175. "illuminate/cache": "^9.52",
  11176. "mockery/mockery": "^1.4",
  11177. "pestphp/pest": "^1.20",
  11178. "phpstan/extension-installer": "^1.1",
  11179. "phpstan/phpstan-deprecation-rules": "^1.0",
  11180. "phpstan/phpstan-phpunit": "^1.0",
  11181. "psr/simple-cache-implementation": "*",
  11182. "symfony/cache": "^6.2",
  11183. "symfony/process": "^5.4|^6.0",
  11184. "vlucas/phpdotenv": "^5.5"
  11185. },
  11186. "suggest": {
  11187. "openai-php/client": "Require get solutions from OpenAI",
  11188. "simple-cache-implementation": "To cache solutions from OpenAI"
  11189. },
  11190. "type": "library",
  11191. "extra": {
  11192. "branch-alias": {
  11193. "dev-main": "1.5.x-dev"
  11194. }
  11195. },
  11196. "autoload": {
  11197. "psr-4": {
  11198. "Spatie\\Ignition\\": "src"
  11199. }
  11200. },
  11201. "notification-url": "https://packagist.org/downloads/",
  11202. "license": [
  11203. "MIT"
  11204. ],
  11205. "authors": [
  11206. {
  11207. "name": "Spatie",
  11208. "email": "info@spatie.be",
  11209. "role": "Developer"
  11210. }
  11211. ],
  11212. "description": "A beautiful error page for PHP applications.",
  11213. "homepage": "https://flareapp.io/ignition",
  11214. "keywords": [
  11215. "error",
  11216. "flare",
  11217. "laravel",
  11218. "page"
  11219. ],
  11220. "support": {
  11221. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11222. "forum": "https://twitter.com/flareappio",
  11223. "issues": "https://github.com/spatie/ignition/issues",
  11224. "source": "https://github.com/spatie/ignition"
  11225. },
  11226. "funding": [
  11227. {
  11228. "url": "https://github.com/spatie",
  11229. "type": "github"
  11230. }
  11231. ],
  11232. "time": "2023-04-27T08:40:07+00:00"
  11233. },
  11234. {
  11235. "name": "spatie/laravel-ignition",
  11236. "version": "1.6.4",
  11237. "source": {
  11238. "type": "git",
  11239. "url": "https://github.com/spatie/laravel-ignition.git",
  11240. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  11241. },
  11242. "dist": {
  11243. "type": "zip",
  11244. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  11245. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  11246. "shasum": ""
  11247. },
  11248. "require": {
  11249. "ext-curl": "*",
  11250. "ext-json": "*",
  11251. "ext-mbstring": "*",
  11252. "illuminate/support": "^8.77|^9.27",
  11253. "monolog/monolog": "^2.3",
  11254. "php": "^8.0",
  11255. "spatie/flare-client-php": "^1.0.1",
  11256. "spatie/ignition": "^1.4.1",
  11257. "symfony/console": "^5.0|^6.0",
  11258. "symfony/var-dumper": "^5.0|^6.0"
  11259. },
  11260. "require-dev": {
  11261. "filp/whoops": "^2.14",
  11262. "livewire/livewire": "^2.8|dev-develop",
  11263. "mockery/mockery": "^1.4",
  11264. "nunomaduro/larastan": "^1.0",
  11265. "orchestra/testbench": "^6.23|^7.0",
  11266. "pestphp/pest": "^1.20",
  11267. "phpstan/extension-installer": "^1.1",
  11268. "phpstan/phpstan-deprecation-rules": "^1.0",
  11269. "phpstan/phpstan-phpunit": "^1.0",
  11270. "spatie/laravel-ray": "^1.27"
  11271. },
  11272. "type": "library",
  11273. "extra": {
  11274. "laravel": {
  11275. "providers": [
  11276. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  11277. ],
  11278. "aliases": {
  11279. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  11280. }
  11281. }
  11282. },
  11283. "autoload": {
  11284. "files": [
  11285. "src/helpers.php"
  11286. ],
  11287. "psr-4": {
  11288. "Spatie\\LaravelIgnition\\": "src"
  11289. }
  11290. },
  11291. "notification-url": "https://packagist.org/downloads/",
  11292. "license": [
  11293. "MIT"
  11294. ],
  11295. "authors": [
  11296. {
  11297. "name": "Spatie",
  11298. "email": "info@spatie.be",
  11299. "role": "Developer"
  11300. }
  11301. ],
  11302. "description": "A beautiful error page for Laravel applications.",
  11303. "homepage": "https://flareapp.io/ignition",
  11304. "keywords": [
  11305. "error",
  11306. "flare",
  11307. "laravel",
  11308. "page"
  11309. ],
  11310. "support": {
  11311. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11312. "forum": "https://twitter.com/flareappio",
  11313. "issues": "https://github.com/spatie/laravel-ignition/issues",
  11314. "source": "https://github.com/spatie/laravel-ignition"
  11315. },
  11316. "funding": [
  11317. {
  11318. "url": "https://github.com/spatie",
  11319. "type": "github"
  11320. }
  11321. ],
  11322. "time": "2023-01-03T19:28:04+00:00"
  11323. },
  11324. {
  11325. "name": "symfony/yaml",
  11326. "version": "v6.2.10",
  11327. "source": {
  11328. "type": "git",
  11329. "url": "https://github.com/symfony/yaml.git",
  11330. "reference": "61916f3861b1e9705b18cfde723921a71dd1559d"
  11331. },
  11332. "dist": {
  11333. "type": "zip",
  11334. "url": "https://api.github.com/repos/symfony/yaml/zipball/61916f3861b1e9705b18cfde723921a71dd1559d",
  11335. "reference": "61916f3861b1e9705b18cfde723921a71dd1559d",
  11336. "shasum": ""
  11337. },
  11338. "require": {
  11339. "php": ">=8.1",
  11340. "symfony/polyfill-ctype": "^1.8"
  11341. },
  11342. "conflict": {
  11343. "symfony/console": "<5.4"
  11344. },
  11345. "require-dev": {
  11346. "symfony/console": "^5.4|^6.0"
  11347. },
  11348. "suggest": {
  11349. "symfony/console": "For validating YAML files using the lint command"
  11350. },
  11351. "bin": [
  11352. "Resources/bin/yaml-lint"
  11353. ],
  11354. "type": "library",
  11355. "autoload": {
  11356. "psr-4": {
  11357. "Symfony\\Component\\Yaml\\": ""
  11358. },
  11359. "exclude-from-classmap": [
  11360. "/Tests/"
  11361. ]
  11362. },
  11363. "notification-url": "https://packagist.org/downloads/",
  11364. "license": [
  11365. "MIT"
  11366. ],
  11367. "authors": [
  11368. {
  11369. "name": "Fabien Potencier",
  11370. "email": "fabien@symfony.com"
  11371. },
  11372. {
  11373. "name": "Symfony Community",
  11374. "homepage": "https://symfony.com/contributors"
  11375. }
  11376. ],
  11377. "description": "Loads and dumps YAML files",
  11378. "homepage": "https://symfony.com",
  11379. "support": {
  11380. "source": "https://github.com/symfony/yaml/tree/v6.2.10"
  11381. },
  11382. "funding": [
  11383. {
  11384. "url": "https://symfony.com/sponsor",
  11385. "type": "custom"
  11386. },
  11387. {
  11388. "url": "https://github.com/fabpot",
  11389. "type": "github"
  11390. },
  11391. {
  11392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11393. "type": "tidelift"
  11394. }
  11395. ],
  11396. "time": "2023-04-28T13:25:36+00:00"
  11397. },
  11398. {
  11399. "name": "theseer/tokenizer",
  11400. "version": "1.2.1",
  11401. "source": {
  11402. "type": "git",
  11403. "url": "https://github.com/theseer/tokenizer.git",
  11404. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11405. },
  11406. "dist": {
  11407. "type": "zip",
  11408. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11409. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11410. "shasum": ""
  11411. },
  11412. "require": {
  11413. "ext-dom": "*",
  11414. "ext-tokenizer": "*",
  11415. "ext-xmlwriter": "*",
  11416. "php": "^7.2 || ^8.0"
  11417. },
  11418. "type": "library",
  11419. "autoload": {
  11420. "classmap": [
  11421. "src/"
  11422. ]
  11423. },
  11424. "notification-url": "https://packagist.org/downloads/",
  11425. "license": [
  11426. "BSD-3-Clause"
  11427. ],
  11428. "authors": [
  11429. {
  11430. "name": "Arne Blankerts",
  11431. "email": "arne@blankerts.de",
  11432. "role": "Developer"
  11433. }
  11434. ],
  11435. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11436. "support": {
  11437. "issues": "https://github.com/theseer/tokenizer/issues",
  11438. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11439. },
  11440. "funding": [
  11441. {
  11442. "url": "https://github.com/theseer",
  11443. "type": "github"
  11444. }
  11445. ],
  11446. "time": "2021-07-28T10:34:58+00:00"
  11447. }
  11448. ],
  11449. "aliases": [],
  11450. "minimum-stability": "dev",
  11451. "stability-flags": [],
  11452. "prefer-stable": true,
  11453. "prefer-lowest": false,
  11454. "platform": {
  11455. "php": "^8.1",
  11456. "ext-intl": "*"
  11457. },
  11458. "platform-dev": [],
  11459. "platform-overrides": {
  11460. "php": "8.1"
  11461. },
  11462. "plugin-api-version": "2.3.0"
  11463. }