composer.lock 237 KB

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