composer.lock 520 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393
  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": "8c9023e0f1144b60785374d3f0371370",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.3.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "69098eca243998b53eed7a48d82dedd28b447cd5"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/69098eca243998b53eed7a48d82dedd28b447cd5",
  20. "reference": "69098eca243998b53eed7a48d82dedd28b447cd5",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^5.3.2 || ^7.0 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phpstan/phpstan": "^0.12.55",
  30. "psr/log": "^1.0",
  31. "symfony/phpunit-bridge": "^4.2 || ^5",
  32. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-main": "1.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Composer\\CaBundle\\": "src"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Jordi Boggiano",
  52. "email": "j.boggiano@seld.be",
  53. "homepage": "http://seld.be"
  54. }
  55. ],
  56. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  57. "keywords": [
  58. "cabundle",
  59. "cacert",
  60. "certificate",
  61. "ssl",
  62. "tls"
  63. ],
  64. "support": {
  65. "irc": "irc://irc.freenode.org/composer",
  66. "issues": "https://github.com/composer/ca-bundle/issues",
  67. "source": "https://github.com/composer/ca-bundle/tree/1.3.4"
  68. },
  69. "funding": [
  70. {
  71. "url": "https://packagist.com",
  72. "type": "custom"
  73. },
  74. {
  75. "url": "https://github.com/composer",
  76. "type": "github"
  77. },
  78. {
  79. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  80. "type": "tidelift"
  81. }
  82. ],
  83. "time": "2022-10-12T12:08:29+00:00"
  84. },
  85. {
  86. "name": "composer/package-versions-deprecated",
  87. "version": "1.11.99.5",
  88. "source": {
  89. "type": "git",
  90. "url": "https://github.com/composer/package-versions-deprecated.git",
  91. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  92. },
  93. "dist": {
  94. "type": "zip",
  95. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  96. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  97. "shasum": ""
  98. },
  99. "require": {
  100. "composer-plugin-api": "^1.1.0 || ^2.0",
  101. "php": "^7 || ^8"
  102. },
  103. "replace": {
  104. "ocramius/package-versions": "1.11.99"
  105. },
  106. "require-dev": {
  107. "composer/composer": "^1.9.3 || ^2.0@dev",
  108. "ext-zip": "^1.13",
  109. "phpunit/phpunit": "^6.5 || ^7"
  110. },
  111. "type": "composer-plugin",
  112. "extra": {
  113. "class": "PackageVersions\\Installer",
  114. "branch-alias": {
  115. "dev-master": "1.x-dev"
  116. }
  117. },
  118. "autoload": {
  119. "psr-4": {
  120. "PackageVersions\\": "src/PackageVersions"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "authors": [
  128. {
  129. "name": "Marco Pivetta",
  130. "email": "ocramius@gmail.com"
  131. },
  132. {
  133. "name": "Jordi Boggiano",
  134. "email": "j.boggiano@seld.be"
  135. }
  136. ],
  137. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  138. "support": {
  139. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  140. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  141. },
  142. "funding": [
  143. {
  144. "url": "https://packagist.com",
  145. "type": "custom"
  146. },
  147. {
  148. "url": "https://github.com/composer",
  149. "type": "github"
  150. },
  151. {
  152. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  153. "type": "tidelift"
  154. }
  155. ],
  156. "time": "2022-01-17T14:14:24+00:00"
  157. },
  158. {
  159. "name": "defuse/php-encryption",
  160. "version": "v2.3.1",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/defuse/php-encryption.git",
  164. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/77880488b9954b7884c25555c2a0ea9e7053f9d2",
  169. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "ext-openssl": "*",
  174. "paragonie/random_compat": ">= 2",
  175. "php": ">=5.6.0"
  176. },
  177. "require-dev": {
  178. "phpunit/phpunit": "^4|^5|^6|^7|^8|^9"
  179. },
  180. "bin": [
  181. "bin/generate-defuse-key"
  182. ],
  183. "type": "library",
  184. "autoload": {
  185. "psr-4": {
  186. "Defuse\\Crypto\\": "src"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Taylor Hornby",
  196. "email": "taylor@defuse.ca",
  197. "homepage": "https://defuse.ca/"
  198. },
  199. {
  200. "name": "Scott Arciszewski",
  201. "email": "info@paragonie.com",
  202. "homepage": "https://paragonie.com"
  203. }
  204. ],
  205. "description": "Secure PHP Encryption Library",
  206. "keywords": [
  207. "aes",
  208. "authenticated encryption",
  209. "cipher",
  210. "crypto",
  211. "cryptography",
  212. "encrypt",
  213. "encryption",
  214. "openssl",
  215. "security",
  216. "symmetric key cryptography"
  217. ],
  218. "support": {
  219. "issues": "https://github.com/defuse/php-encryption/issues",
  220. "source": "https://github.com/defuse/php-encryption/tree/v2.3.1"
  221. },
  222. "time": "2021-04-09T23:57:26+00:00"
  223. },
  224. {
  225. "name": "doctrine/annotations",
  226. "version": "1.13.3",
  227. "source": {
  228. "type": "git",
  229. "url": "https://github.com/doctrine/annotations.git",
  230. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  231. },
  232. "dist": {
  233. "type": "zip",
  234. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  235. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  236. "shasum": ""
  237. },
  238. "require": {
  239. "doctrine/lexer": "1.*",
  240. "ext-tokenizer": "*",
  241. "php": "^7.1 || ^8.0",
  242. "psr/cache": "^1 || ^2 || ^3"
  243. },
  244. "require-dev": {
  245. "doctrine/cache": "^1.11 || ^2.0",
  246. "doctrine/coding-standard": "^6.0 || ^8.1",
  247. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  248. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  249. "symfony/cache": "^4.4 || ^5.2",
  250. "vimeo/psalm": "^4.10"
  251. },
  252. "type": "library",
  253. "autoload": {
  254. "psr-4": {
  255. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  256. }
  257. },
  258. "notification-url": "https://packagist.org/downloads/",
  259. "license": [
  260. "MIT"
  261. ],
  262. "authors": [
  263. {
  264. "name": "Guilherme Blanco",
  265. "email": "guilhermeblanco@gmail.com"
  266. },
  267. {
  268. "name": "Roman Borschel",
  269. "email": "roman@code-factory.org"
  270. },
  271. {
  272. "name": "Benjamin Eberlei",
  273. "email": "kontakt@beberlei.de"
  274. },
  275. {
  276. "name": "Jonathan Wage",
  277. "email": "jonwage@gmail.com"
  278. },
  279. {
  280. "name": "Johannes Schmitt",
  281. "email": "schmittjoh@gmail.com"
  282. }
  283. ],
  284. "description": "Docblock Annotations Parser",
  285. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  286. "keywords": [
  287. "annotations",
  288. "docblock",
  289. "parser"
  290. ],
  291. "support": {
  292. "issues": "https://github.com/doctrine/annotations/issues",
  293. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  294. },
  295. "time": "2022-07-02T10:48:51+00:00"
  296. },
  297. {
  298. "name": "doctrine/cache",
  299. "version": "2.2.0",
  300. "source": {
  301. "type": "git",
  302. "url": "https://github.com/doctrine/cache.git",
  303. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  304. },
  305. "dist": {
  306. "type": "zip",
  307. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  308. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  309. "shasum": ""
  310. },
  311. "require": {
  312. "php": "~7.1 || ^8.0"
  313. },
  314. "conflict": {
  315. "doctrine/common": ">2.2,<2.4"
  316. },
  317. "require-dev": {
  318. "cache/integration-tests": "dev-master",
  319. "doctrine/coding-standard": "^9",
  320. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  321. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  322. "symfony/cache": "^4.4 || ^5.4 || ^6",
  323. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  324. },
  325. "type": "library",
  326. "autoload": {
  327. "psr-4": {
  328. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  329. }
  330. },
  331. "notification-url": "https://packagist.org/downloads/",
  332. "license": [
  333. "MIT"
  334. ],
  335. "authors": [
  336. {
  337. "name": "Guilherme Blanco",
  338. "email": "guilhermeblanco@gmail.com"
  339. },
  340. {
  341. "name": "Roman Borschel",
  342. "email": "roman@code-factory.org"
  343. },
  344. {
  345. "name": "Benjamin Eberlei",
  346. "email": "kontakt@beberlei.de"
  347. },
  348. {
  349. "name": "Jonathan Wage",
  350. "email": "jonwage@gmail.com"
  351. },
  352. {
  353. "name": "Johannes Schmitt",
  354. "email": "schmittjoh@gmail.com"
  355. }
  356. ],
  357. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  358. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  359. "keywords": [
  360. "abstraction",
  361. "apcu",
  362. "cache",
  363. "caching",
  364. "couchdb",
  365. "memcached",
  366. "php",
  367. "redis",
  368. "xcache"
  369. ],
  370. "support": {
  371. "issues": "https://github.com/doctrine/cache/issues",
  372. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  373. },
  374. "funding": [
  375. {
  376. "url": "https://www.doctrine-project.org/sponsorship.html",
  377. "type": "custom"
  378. },
  379. {
  380. "url": "https://www.patreon.com/phpdoctrine",
  381. "type": "patreon"
  382. },
  383. {
  384. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  385. "type": "tidelift"
  386. }
  387. ],
  388. "time": "2022-05-20T20:07:39+00:00"
  389. },
  390. {
  391. "name": "doctrine/collections",
  392. "version": "1.8.0",
  393. "source": {
  394. "type": "git",
  395. "url": "https://github.com/doctrine/collections.git",
  396. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
  397. },
  398. "dist": {
  399. "type": "zip",
  400. "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  401. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  402. "shasum": ""
  403. },
  404. "require": {
  405. "doctrine/deprecations": "^0.5.3 || ^1",
  406. "php": "^7.1.3 || ^8.0"
  407. },
  408. "require-dev": {
  409. "doctrine/coding-standard": "^9.0 || ^10.0",
  410. "phpstan/phpstan": "^1.4.8",
  411. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  412. "vimeo/psalm": "^4.22"
  413. },
  414. "type": "library",
  415. "autoload": {
  416. "psr-4": {
  417. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  418. }
  419. },
  420. "notification-url": "https://packagist.org/downloads/",
  421. "license": [
  422. "MIT"
  423. ],
  424. "authors": [
  425. {
  426. "name": "Guilherme Blanco",
  427. "email": "guilhermeblanco@gmail.com"
  428. },
  429. {
  430. "name": "Roman Borschel",
  431. "email": "roman@code-factory.org"
  432. },
  433. {
  434. "name": "Benjamin Eberlei",
  435. "email": "kontakt@beberlei.de"
  436. },
  437. {
  438. "name": "Jonathan Wage",
  439. "email": "jonwage@gmail.com"
  440. },
  441. {
  442. "name": "Johannes Schmitt",
  443. "email": "schmittjoh@gmail.com"
  444. }
  445. ],
  446. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  447. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  448. "keywords": [
  449. "array",
  450. "collections",
  451. "iterators",
  452. "php"
  453. ],
  454. "support": {
  455. "issues": "https://github.com/doctrine/collections/issues",
  456. "source": "https://github.com/doctrine/collections/tree/1.8.0"
  457. },
  458. "time": "2022-09-01T20:12:10+00:00"
  459. },
  460. {
  461. "name": "doctrine/common",
  462. "version": "3.4.3",
  463. "source": {
  464. "type": "git",
  465. "url": "https://github.com/doctrine/common.git",
  466. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  467. },
  468. "dist": {
  469. "type": "zip",
  470. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  471. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  472. "shasum": ""
  473. },
  474. "require": {
  475. "doctrine/persistence": "^2.0 || ^3.0",
  476. "php": "^7.1 || ^8.0"
  477. },
  478. "require-dev": {
  479. "doctrine/coding-standard": "^9.0 || ^10.0",
  480. "doctrine/collections": "^1",
  481. "phpstan/phpstan": "^1.4.1",
  482. "phpstan/phpstan-phpunit": "^1",
  483. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  484. "squizlabs/php_codesniffer": "^3.0",
  485. "symfony/phpunit-bridge": "^6.1",
  486. "vimeo/psalm": "^4.4"
  487. },
  488. "type": "library",
  489. "autoload": {
  490. "psr-4": {
  491. "Doctrine\\Common\\": "src"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Guilherme Blanco",
  501. "email": "guilhermeblanco@gmail.com"
  502. },
  503. {
  504. "name": "Roman Borschel",
  505. "email": "roman@code-factory.org"
  506. },
  507. {
  508. "name": "Benjamin Eberlei",
  509. "email": "kontakt@beberlei.de"
  510. },
  511. {
  512. "name": "Jonathan Wage",
  513. "email": "jonwage@gmail.com"
  514. },
  515. {
  516. "name": "Johannes Schmitt",
  517. "email": "schmittjoh@gmail.com"
  518. },
  519. {
  520. "name": "Marco Pivetta",
  521. "email": "ocramius@gmail.com"
  522. }
  523. ],
  524. "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.",
  525. "homepage": "https://www.doctrine-project.org/projects/common.html",
  526. "keywords": [
  527. "common",
  528. "doctrine",
  529. "php"
  530. ],
  531. "support": {
  532. "issues": "https://github.com/doctrine/common/issues",
  533. "source": "https://github.com/doctrine/common/tree/3.4.3"
  534. },
  535. "funding": [
  536. {
  537. "url": "https://www.doctrine-project.org/sponsorship.html",
  538. "type": "custom"
  539. },
  540. {
  541. "url": "https://www.patreon.com/phpdoctrine",
  542. "type": "patreon"
  543. },
  544. {
  545. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  546. "type": "tidelift"
  547. }
  548. ],
  549. "time": "2022-10-09T11:47:59+00:00"
  550. },
  551. {
  552. "name": "doctrine/dbal",
  553. "version": "3.5.1",
  554. "source": {
  555. "type": "git",
  556. "url": "https://github.com/doctrine/dbal.git",
  557. "reference": "f38ee8aaca2d58ee88653cb34a6a3880c23f38a5"
  558. },
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://api.github.com/repos/doctrine/dbal/zipball/f38ee8aaca2d58ee88653cb34a6a3880c23f38a5",
  562. "reference": "f38ee8aaca2d58ee88653cb34a6a3880c23f38a5",
  563. "shasum": ""
  564. },
  565. "require": {
  566. "composer-runtime-api": "^2",
  567. "doctrine/cache": "^1.11|^2.0",
  568. "doctrine/deprecations": "^0.5.3|^1",
  569. "doctrine/event-manager": "^1|^2",
  570. "php": "^7.4 || ^8.0",
  571. "psr/cache": "^1|^2|^3",
  572. "psr/log": "^1|^2|^3"
  573. },
  574. "require-dev": {
  575. "doctrine/coding-standard": "10.0.0",
  576. "jetbrains/phpstorm-stubs": "2022.2",
  577. "phpstan/phpstan": "1.8.10",
  578. "phpstan/phpstan-strict-rules": "^1.4",
  579. "phpunit/phpunit": "9.5.25",
  580. "psalm/plugin-phpunit": "0.17.0",
  581. "squizlabs/php_codesniffer": "3.7.1",
  582. "symfony/cache": "^5.4|^6.0",
  583. "symfony/console": "^4.4|^5.4|^6.0",
  584. "vimeo/psalm": "4.29.0"
  585. },
  586. "suggest": {
  587. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  588. },
  589. "bin": [
  590. "bin/doctrine-dbal"
  591. ],
  592. "type": "library",
  593. "autoload": {
  594. "psr-4": {
  595. "Doctrine\\DBAL\\": "src"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Guilherme Blanco",
  605. "email": "guilhermeblanco@gmail.com"
  606. },
  607. {
  608. "name": "Roman Borschel",
  609. "email": "roman@code-factory.org"
  610. },
  611. {
  612. "name": "Benjamin Eberlei",
  613. "email": "kontakt@beberlei.de"
  614. },
  615. {
  616. "name": "Jonathan Wage",
  617. "email": "jonwage@gmail.com"
  618. }
  619. ],
  620. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  621. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  622. "keywords": [
  623. "abstraction",
  624. "database",
  625. "db2",
  626. "dbal",
  627. "mariadb",
  628. "mssql",
  629. "mysql",
  630. "oci8",
  631. "oracle",
  632. "pdo",
  633. "pgsql",
  634. "postgresql",
  635. "queryobject",
  636. "sasql",
  637. "sql",
  638. "sqlite",
  639. "sqlserver",
  640. "sqlsrv"
  641. ],
  642. "support": {
  643. "issues": "https://github.com/doctrine/dbal/issues",
  644. "source": "https://github.com/doctrine/dbal/tree/3.5.1"
  645. },
  646. "funding": [
  647. {
  648. "url": "https://www.doctrine-project.org/sponsorship.html",
  649. "type": "custom"
  650. },
  651. {
  652. "url": "https://www.patreon.com/phpdoctrine",
  653. "type": "patreon"
  654. },
  655. {
  656. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  657. "type": "tidelift"
  658. }
  659. ],
  660. "time": "2022-10-24T07:26:18+00:00"
  661. },
  662. {
  663. "name": "doctrine/deprecations",
  664. "version": "v1.0.0",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/doctrine/deprecations.git",
  668. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  673. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "php": "^7.1|^8.0"
  678. },
  679. "require-dev": {
  680. "doctrine/coding-standard": "^9",
  681. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  682. "psr/log": "^1|^2|^3"
  683. },
  684. "suggest": {
  685. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  686. },
  687. "type": "library",
  688. "autoload": {
  689. "psr-4": {
  690. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  691. }
  692. },
  693. "notification-url": "https://packagist.org/downloads/",
  694. "license": [
  695. "MIT"
  696. ],
  697. "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.",
  698. "homepage": "https://www.doctrine-project.org/",
  699. "support": {
  700. "issues": "https://github.com/doctrine/deprecations/issues",
  701. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  702. },
  703. "time": "2022-05-02T15:47:09+00:00"
  704. },
  705. {
  706. "name": "doctrine/doctrine-bundle",
  707. "version": "2.7.0",
  708. "source": {
  709. "type": "git",
  710. "url": "https://github.com/doctrine/DoctrineBundle.git",
  711. "reference": "d2088fc50494e4e7441fecca54732245a613eeb6"
  712. },
  713. "dist": {
  714. "type": "zip",
  715. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/d2088fc50494e4e7441fecca54732245a613eeb6",
  716. "reference": "d2088fc50494e4e7441fecca54732245a613eeb6",
  717. "shasum": ""
  718. },
  719. "require": {
  720. "doctrine/annotations": "^1",
  721. "doctrine/cache": "^1.11 || ^2.0",
  722. "doctrine/dbal": "^2.13.1|^3.3.2",
  723. "doctrine/persistence": "^2.2|^3",
  724. "doctrine/sql-formatter": "^1.0.1",
  725. "php": "^7.1 || ^8.0",
  726. "symfony/cache": "^4.3.3|^5.0|^6.0",
  727. "symfony/config": "^4.4.3|^5.0|^6.0",
  728. "symfony/console": "^3.4.30|^4.3.3|^5.0|^6.0",
  729. "symfony/dependency-injection": "^4.4.18|^5.0|^6.0",
  730. "symfony/deprecation-contracts": "^2.1|^3",
  731. "symfony/doctrine-bridge": "^4.4.22|^5.2.7|^6.0",
  732. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  733. "symfony/service-contracts": "^1.1.1|^2.0|^3"
  734. },
  735. "conflict": {
  736. "doctrine/orm": "<2.10|>=3.0",
  737. "twig/twig": "<1.34|>=2.0,<2.4"
  738. },
  739. "require-dev": {
  740. "doctrine/coding-standard": "^9.0",
  741. "doctrine/orm": "^2.11 || ^3.0",
  742. "friendsofphp/proxy-manager-lts": "^1.0",
  743. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.0",
  744. "psalm/plugin-phpunit": "^0.16.1",
  745. "psalm/plugin-symfony": "^3",
  746. "psr/log": "^1.1.4|^2.0|^3.0",
  747. "symfony/phpunit-bridge": "^5.2|^6.0",
  748. "symfony/property-info": "^4.3.3|^5.0|^6.0",
  749. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0|^6.0",
  750. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  751. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0|^6.0",
  752. "symfony/validator": "^3.4.30|^4.3.3|^5.0|^6.0",
  753. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  754. "symfony/yaml": "^3.4.30|^4.3.3|^5.0|^6.0",
  755. "twig/twig": "^1.34|^2.12|^3.0",
  756. "vimeo/psalm": "^4.7"
  757. },
  758. "suggest": {
  759. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  760. "ext-pdo": "*",
  761. "symfony/web-profiler-bundle": "To use the data collector."
  762. },
  763. "type": "symfony-bundle",
  764. "autoload": {
  765. "psr-4": {
  766. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  767. }
  768. },
  769. "notification-url": "https://packagist.org/downloads/",
  770. "license": [
  771. "MIT"
  772. ],
  773. "authors": [
  774. {
  775. "name": "Fabien Potencier",
  776. "email": "fabien@symfony.com"
  777. },
  778. {
  779. "name": "Benjamin Eberlei",
  780. "email": "kontakt@beberlei.de"
  781. },
  782. {
  783. "name": "Symfony Community",
  784. "homepage": "https://symfony.com/contributors"
  785. },
  786. {
  787. "name": "Doctrine Project",
  788. "homepage": "https://www.doctrine-project.org/"
  789. }
  790. ],
  791. "description": "Symfony DoctrineBundle",
  792. "homepage": "https://www.doctrine-project.org",
  793. "keywords": [
  794. "database",
  795. "dbal",
  796. "orm",
  797. "persistence"
  798. ],
  799. "support": {
  800. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  801. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.7.0"
  802. },
  803. "funding": [
  804. {
  805. "url": "https://www.doctrine-project.org/sponsorship.html",
  806. "type": "custom"
  807. },
  808. {
  809. "url": "https://www.patreon.com/phpdoctrine",
  810. "type": "patreon"
  811. },
  812. {
  813. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  814. "type": "tidelift"
  815. }
  816. ],
  817. "time": "2022-06-10T10:55:26+00:00"
  818. },
  819. {
  820. "name": "doctrine/doctrine-migrations-bundle",
  821. "version": "3.2.2",
  822. "source": {
  823. "type": "git",
  824. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  825. "reference": "3393f411ba25ade21969c33f2053220044854d01"
  826. },
  827. "dist": {
  828. "type": "zip",
  829. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/3393f411ba25ade21969c33f2053220044854d01",
  830. "reference": "3393f411ba25ade21969c33f2053220044854d01",
  831. "shasum": ""
  832. },
  833. "require": {
  834. "doctrine/doctrine-bundle": "~1.0|~2.0",
  835. "doctrine/migrations": "^3.2",
  836. "php": "^7.2|^8.0",
  837. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  838. },
  839. "require-dev": {
  840. "doctrine/coding-standard": "^8.0",
  841. "doctrine/orm": "^2.6",
  842. "doctrine/persistence": "^1.3||^2.0",
  843. "phpstan/phpstan": "^0.12",
  844. "phpstan/phpstan-deprecation-rules": "^0.12",
  845. "phpstan/phpstan-phpunit": "^0.12",
  846. "phpstan/phpstan-strict-rules": "^0.12",
  847. "phpunit/phpunit": "^8.0|^9.0",
  848. "vimeo/psalm": "^4.11"
  849. },
  850. "type": "symfony-bundle",
  851. "autoload": {
  852. "psr-4": {
  853. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  854. },
  855. "exclude-from-classmap": [
  856. "/Tests/"
  857. ]
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Fabien Potencier",
  866. "email": "fabien@symfony.com"
  867. },
  868. {
  869. "name": "Doctrine Project",
  870. "homepage": "https://www.doctrine-project.org"
  871. },
  872. {
  873. "name": "Symfony Community",
  874. "homepage": "https://symfony.com/contributors"
  875. }
  876. ],
  877. "description": "Symfony DoctrineMigrationsBundle",
  878. "homepage": "https://www.doctrine-project.org",
  879. "keywords": [
  880. "dbal",
  881. "migrations",
  882. "schema"
  883. ],
  884. "support": {
  885. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  886. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.2"
  887. },
  888. "funding": [
  889. {
  890. "url": "https://www.doctrine-project.org/sponsorship.html",
  891. "type": "custom"
  892. },
  893. {
  894. "url": "https://www.patreon.com/phpdoctrine",
  895. "type": "patreon"
  896. },
  897. {
  898. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  899. "type": "tidelift"
  900. }
  901. ],
  902. "time": "2022-02-01T18:08:07+00:00"
  903. },
  904. {
  905. "name": "doctrine/event-manager",
  906. "version": "1.2.0",
  907. "source": {
  908. "type": "git",
  909. "url": "https://github.com/doctrine/event-manager.git",
  910. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
  911. },
  912. "dist": {
  913. "type": "zip",
  914. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
  915. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
  916. "shasum": ""
  917. },
  918. "require": {
  919. "doctrine/deprecations": "^0.5.3 || ^1",
  920. "php": "^7.1 || ^8.0"
  921. },
  922. "conflict": {
  923. "doctrine/common": "<2.9"
  924. },
  925. "require-dev": {
  926. "doctrine/coding-standard": "^9 || ^10",
  927. "phpstan/phpstan": "~1.4.10 || ^1.8.8",
  928. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  929. "vimeo/psalm": "^4.24"
  930. },
  931. "type": "library",
  932. "autoload": {
  933. "psr-4": {
  934. "Doctrine\\Common\\": "src"
  935. }
  936. },
  937. "notification-url": "https://packagist.org/downloads/",
  938. "license": [
  939. "MIT"
  940. ],
  941. "authors": [
  942. {
  943. "name": "Guilherme Blanco",
  944. "email": "guilhermeblanco@gmail.com"
  945. },
  946. {
  947. "name": "Roman Borschel",
  948. "email": "roman@code-factory.org"
  949. },
  950. {
  951. "name": "Benjamin Eberlei",
  952. "email": "kontakt@beberlei.de"
  953. },
  954. {
  955. "name": "Jonathan Wage",
  956. "email": "jonwage@gmail.com"
  957. },
  958. {
  959. "name": "Johannes Schmitt",
  960. "email": "schmittjoh@gmail.com"
  961. },
  962. {
  963. "name": "Marco Pivetta",
  964. "email": "ocramius@gmail.com"
  965. }
  966. ],
  967. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  968. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  969. "keywords": [
  970. "event",
  971. "event dispatcher",
  972. "event manager",
  973. "event system",
  974. "events"
  975. ],
  976. "support": {
  977. "issues": "https://github.com/doctrine/event-manager/issues",
  978. "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
  979. },
  980. "funding": [
  981. {
  982. "url": "https://www.doctrine-project.org/sponsorship.html",
  983. "type": "custom"
  984. },
  985. {
  986. "url": "https://www.patreon.com/phpdoctrine",
  987. "type": "patreon"
  988. },
  989. {
  990. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  991. "type": "tidelift"
  992. }
  993. ],
  994. "time": "2022-10-12T20:51:15+00:00"
  995. },
  996. {
  997. "name": "doctrine/inflector",
  998. "version": "2.0.6",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/doctrine/inflector.git",
  1002. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  1007. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "php": "^7.2 || ^8.0"
  1012. },
  1013. "require-dev": {
  1014. "doctrine/coding-standard": "^10",
  1015. "phpstan/phpstan": "^1.8",
  1016. "phpstan/phpstan-phpunit": "^1.1",
  1017. "phpstan/phpstan-strict-rules": "^1.3",
  1018. "phpunit/phpunit": "^8.5 || ^9.5",
  1019. "vimeo/psalm": "^4.25"
  1020. },
  1021. "type": "library",
  1022. "autoload": {
  1023. "psr-4": {
  1024. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1025. }
  1026. },
  1027. "notification-url": "https://packagist.org/downloads/",
  1028. "license": [
  1029. "MIT"
  1030. ],
  1031. "authors": [
  1032. {
  1033. "name": "Guilherme Blanco",
  1034. "email": "guilhermeblanco@gmail.com"
  1035. },
  1036. {
  1037. "name": "Roman Borschel",
  1038. "email": "roman@code-factory.org"
  1039. },
  1040. {
  1041. "name": "Benjamin Eberlei",
  1042. "email": "kontakt@beberlei.de"
  1043. },
  1044. {
  1045. "name": "Jonathan Wage",
  1046. "email": "jonwage@gmail.com"
  1047. },
  1048. {
  1049. "name": "Johannes Schmitt",
  1050. "email": "schmittjoh@gmail.com"
  1051. }
  1052. ],
  1053. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1054. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1055. "keywords": [
  1056. "inflection",
  1057. "inflector",
  1058. "lowercase",
  1059. "manipulation",
  1060. "php",
  1061. "plural",
  1062. "singular",
  1063. "strings",
  1064. "uppercase",
  1065. "words"
  1066. ],
  1067. "support": {
  1068. "issues": "https://github.com/doctrine/inflector/issues",
  1069. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  1070. },
  1071. "funding": [
  1072. {
  1073. "url": "https://www.doctrine-project.org/sponsorship.html",
  1074. "type": "custom"
  1075. },
  1076. {
  1077. "url": "https://www.patreon.com/phpdoctrine",
  1078. "type": "patreon"
  1079. },
  1080. {
  1081. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1082. "type": "tidelift"
  1083. }
  1084. ],
  1085. "time": "2022-10-20T09:10:12+00:00"
  1086. },
  1087. {
  1088. "name": "doctrine/instantiator",
  1089. "version": "1.4.1",
  1090. "source": {
  1091. "type": "git",
  1092. "url": "https://github.com/doctrine/instantiator.git",
  1093. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  1094. },
  1095. "dist": {
  1096. "type": "zip",
  1097. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  1098. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  1099. "shasum": ""
  1100. },
  1101. "require": {
  1102. "php": "^7.1 || ^8.0"
  1103. },
  1104. "require-dev": {
  1105. "doctrine/coding-standard": "^9",
  1106. "ext-pdo": "*",
  1107. "ext-phar": "*",
  1108. "phpbench/phpbench": "^0.16 || ^1",
  1109. "phpstan/phpstan": "^1.4",
  1110. "phpstan/phpstan-phpunit": "^1",
  1111. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1112. "vimeo/psalm": "^4.22"
  1113. },
  1114. "type": "library",
  1115. "autoload": {
  1116. "psr-4": {
  1117. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1118. }
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "MIT"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Marco Pivetta",
  1127. "email": "ocramius@gmail.com",
  1128. "homepage": "https://ocramius.github.io/"
  1129. }
  1130. ],
  1131. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1132. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1133. "keywords": [
  1134. "constructor",
  1135. "instantiate"
  1136. ],
  1137. "support": {
  1138. "issues": "https://github.com/doctrine/instantiator/issues",
  1139. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  1140. },
  1141. "funding": [
  1142. {
  1143. "url": "https://www.doctrine-project.org/sponsorship.html",
  1144. "type": "custom"
  1145. },
  1146. {
  1147. "url": "https://www.patreon.com/phpdoctrine",
  1148. "type": "patreon"
  1149. },
  1150. {
  1151. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1152. "type": "tidelift"
  1153. }
  1154. ],
  1155. "time": "2022-03-03T08:28:38+00:00"
  1156. },
  1157. {
  1158. "name": "doctrine/lexer",
  1159. "version": "1.2.3",
  1160. "source": {
  1161. "type": "git",
  1162. "url": "https://github.com/doctrine/lexer.git",
  1163. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1164. },
  1165. "dist": {
  1166. "type": "zip",
  1167. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1168. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1169. "shasum": ""
  1170. },
  1171. "require": {
  1172. "php": "^7.1 || ^8.0"
  1173. },
  1174. "require-dev": {
  1175. "doctrine/coding-standard": "^9.0",
  1176. "phpstan/phpstan": "^1.3",
  1177. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1178. "vimeo/psalm": "^4.11"
  1179. },
  1180. "type": "library",
  1181. "autoload": {
  1182. "psr-4": {
  1183. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1184. }
  1185. },
  1186. "notification-url": "https://packagist.org/downloads/",
  1187. "license": [
  1188. "MIT"
  1189. ],
  1190. "authors": [
  1191. {
  1192. "name": "Guilherme Blanco",
  1193. "email": "guilhermeblanco@gmail.com"
  1194. },
  1195. {
  1196. "name": "Roman Borschel",
  1197. "email": "roman@code-factory.org"
  1198. },
  1199. {
  1200. "name": "Johannes Schmitt",
  1201. "email": "schmittjoh@gmail.com"
  1202. }
  1203. ],
  1204. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1205. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1206. "keywords": [
  1207. "annotations",
  1208. "docblock",
  1209. "lexer",
  1210. "parser",
  1211. "php"
  1212. ],
  1213. "support": {
  1214. "issues": "https://github.com/doctrine/lexer/issues",
  1215. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1216. },
  1217. "funding": [
  1218. {
  1219. "url": "https://www.doctrine-project.org/sponsorship.html",
  1220. "type": "custom"
  1221. },
  1222. {
  1223. "url": "https://www.patreon.com/phpdoctrine",
  1224. "type": "patreon"
  1225. },
  1226. {
  1227. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1228. "type": "tidelift"
  1229. }
  1230. ],
  1231. "time": "2022-02-28T11:07:21+00:00"
  1232. },
  1233. {
  1234. "name": "doctrine/migrations",
  1235. "version": "3.5.2",
  1236. "source": {
  1237. "type": "git",
  1238. "url": "https://github.com/doctrine/migrations.git",
  1239. "reference": "61c6ef3a10b7df43c3b6388a184754f26e58700a"
  1240. },
  1241. "dist": {
  1242. "type": "zip",
  1243. "url": "https://api.github.com/repos/doctrine/migrations/zipball/61c6ef3a10b7df43c3b6388a184754f26e58700a",
  1244. "reference": "61c6ef3a10b7df43c3b6388a184754f26e58700a",
  1245. "shasum": ""
  1246. },
  1247. "require": {
  1248. "composer-runtime-api": "^2",
  1249. "doctrine/dbal": "^3.3",
  1250. "doctrine/deprecations": "^0.5.3 || ^1",
  1251. "doctrine/event-manager": "^1.0",
  1252. "friendsofphp/proxy-manager-lts": "^1.0",
  1253. "php": "^7.4 || ^8.0",
  1254. "psr/log": "^1.1.3 || ^2 || ^3",
  1255. "symfony/console": "^4.4.16 || ^5.4 || ^6.0",
  1256. "symfony/stopwatch": "^4.4 || ^5.4 || ^6.0"
  1257. },
  1258. "conflict": {
  1259. "doctrine/orm": "<2.12"
  1260. },
  1261. "require-dev": {
  1262. "doctrine/coding-standard": "^9",
  1263. "doctrine/orm": "^2.12",
  1264. "doctrine/persistence": "^2 || ^3",
  1265. "doctrine/sql-formatter": "^1.0",
  1266. "ergebnis/composer-normalize": "^2.9",
  1267. "ext-pdo_sqlite": "*",
  1268. "phpstan/phpstan": "^1.5",
  1269. "phpstan/phpstan-deprecation-rules": "^1",
  1270. "phpstan/phpstan-phpunit": "^1.1",
  1271. "phpstan/phpstan-strict-rules": "^1.1",
  1272. "phpstan/phpstan-symfony": "^1.1",
  1273. "phpunit/phpunit": "^9.5",
  1274. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1275. "symfony/process": "^4.4 || ^5.4 || ^6.0",
  1276. "symfony/yaml": "^4.4 || ^5.4 || ^6.0"
  1277. },
  1278. "suggest": {
  1279. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1280. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1281. },
  1282. "bin": [
  1283. "bin/doctrine-migrations"
  1284. ],
  1285. "type": "library",
  1286. "extra": {
  1287. "composer-normalize": {
  1288. "indent-size": 4,
  1289. "indent-style": "space"
  1290. }
  1291. },
  1292. "autoload": {
  1293. "psr-4": {
  1294. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1295. }
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "MIT"
  1300. ],
  1301. "authors": [
  1302. {
  1303. "name": "Benjamin Eberlei",
  1304. "email": "kontakt@beberlei.de"
  1305. },
  1306. {
  1307. "name": "Jonathan Wage",
  1308. "email": "jonwage@gmail.com"
  1309. },
  1310. {
  1311. "name": "Michael Simonson",
  1312. "email": "contact@mikesimonson.com"
  1313. }
  1314. ],
  1315. "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.",
  1316. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1317. "keywords": [
  1318. "database",
  1319. "dbal",
  1320. "migrations"
  1321. ],
  1322. "support": {
  1323. "issues": "https://github.com/doctrine/migrations/issues",
  1324. "source": "https://github.com/doctrine/migrations/tree/3.5.2"
  1325. },
  1326. "funding": [
  1327. {
  1328. "url": "https://www.doctrine-project.org/sponsorship.html",
  1329. "type": "custom"
  1330. },
  1331. {
  1332. "url": "https://www.patreon.com/phpdoctrine",
  1333. "type": "patreon"
  1334. },
  1335. {
  1336. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1337. "type": "tidelift"
  1338. }
  1339. ],
  1340. "time": "2022-08-04T14:29:49+00:00"
  1341. },
  1342. {
  1343. "name": "doctrine/orm",
  1344. "version": "2.13.3",
  1345. "source": {
  1346. "type": "git",
  1347. "url": "https://github.com/doctrine/orm.git",
  1348. "reference": "e750360bd52b080c4cbaaee1b48b80f7dc873b36"
  1349. },
  1350. "dist": {
  1351. "type": "zip",
  1352. "url": "https://api.github.com/repos/doctrine/orm/zipball/e750360bd52b080c4cbaaee1b48b80f7dc873b36",
  1353. "reference": "e750360bd52b080c4cbaaee1b48b80f7dc873b36",
  1354. "shasum": ""
  1355. },
  1356. "require": {
  1357. "composer-runtime-api": "^2",
  1358. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1359. "doctrine/collections": "^1.5",
  1360. "doctrine/common": "^3.0.3",
  1361. "doctrine/dbal": "^2.13.1 || ^3.2",
  1362. "doctrine/deprecations": "^0.5.3 || ^1",
  1363. "doctrine/event-manager": "^1.1",
  1364. "doctrine/inflector": "^1.4 || ^2.0",
  1365. "doctrine/instantiator": "^1.3",
  1366. "doctrine/lexer": "^1.2.3",
  1367. "doctrine/persistence": "^2.4 || ^3",
  1368. "ext-ctype": "*",
  1369. "php": "^7.1 || ^8.0",
  1370. "psr/cache": "^1 || ^2 || ^3",
  1371. "symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0",
  1372. "symfony/polyfill-php72": "^1.23",
  1373. "symfony/polyfill-php80": "^1.16"
  1374. },
  1375. "conflict": {
  1376. "doctrine/annotations": "<1.13 || >= 2.0"
  1377. },
  1378. "require-dev": {
  1379. "doctrine/annotations": "^1.13",
  1380. "doctrine/coding-standard": "^9.0.2 || ^10.0",
  1381. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1382. "phpstan/phpstan": "~1.4.10 || 1.8.5",
  1383. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1384. "psr/log": "^1 || ^2 || ^3",
  1385. "squizlabs/php_codesniffer": "3.7.1",
  1386. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1387. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1388. "vimeo/psalm": "4.27.0"
  1389. },
  1390. "suggest": {
  1391. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1392. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1393. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1394. },
  1395. "bin": [
  1396. "bin/doctrine"
  1397. ],
  1398. "type": "library",
  1399. "autoload": {
  1400. "psr-4": {
  1401. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1402. }
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "MIT"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Guilherme Blanco",
  1411. "email": "guilhermeblanco@gmail.com"
  1412. },
  1413. {
  1414. "name": "Roman Borschel",
  1415. "email": "roman@code-factory.org"
  1416. },
  1417. {
  1418. "name": "Benjamin Eberlei",
  1419. "email": "kontakt@beberlei.de"
  1420. },
  1421. {
  1422. "name": "Jonathan Wage",
  1423. "email": "jonwage@gmail.com"
  1424. },
  1425. {
  1426. "name": "Marco Pivetta",
  1427. "email": "ocramius@gmail.com"
  1428. }
  1429. ],
  1430. "description": "Object-Relational-Mapper for PHP",
  1431. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1432. "keywords": [
  1433. "database",
  1434. "orm"
  1435. ],
  1436. "support": {
  1437. "issues": "https://github.com/doctrine/orm/issues",
  1438. "source": "https://github.com/doctrine/orm/tree/2.13.3"
  1439. },
  1440. "time": "2022-10-07T06:37:17+00:00"
  1441. },
  1442. {
  1443. "name": "doctrine/persistence",
  1444. "version": "3.0.4",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/doctrine/persistence.git",
  1448. "reference": "05612da375f8a3931161f435f91d6704926e6ec5"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/doctrine/persistence/zipball/05612da375f8a3931161f435f91d6704926e6ec5",
  1453. "reference": "05612da375f8a3931161f435f91d6704926e6ec5",
  1454. "shasum": ""
  1455. },
  1456. "require": {
  1457. "doctrine/event-manager": "^1 || ^2",
  1458. "php": "^7.2 || ^8.0",
  1459. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1460. },
  1461. "conflict": {
  1462. "doctrine/annotations": "<1.7 || >=2.0",
  1463. "doctrine/common": "<2.10"
  1464. },
  1465. "require-dev": {
  1466. "composer/package-versions-deprecated": "^1.11",
  1467. "doctrine/annotations": "^1.7",
  1468. "doctrine/coding-standard": "^10",
  1469. "doctrine/common": "^3.0",
  1470. "phpstan/phpstan": "1.8.8",
  1471. "phpstan/phpstan-phpunit": "^1",
  1472. "phpstan/phpstan-strict-rules": "^1.1",
  1473. "phpunit/phpunit": "^8.5 || ^9.5",
  1474. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1475. "vimeo/psalm": "4.29.0"
  1476. },
  1477. "type": "library",
  1478. "autoload": {
  1479. "psr-4": {
  1480. "Doctrine\\Persistence\\": "src/Persistence"
  1481. }
  1482. },
  1483. "notification-url": "https://packagist.org/downloads/",
  1484. "license": [
  1485. "MIT"
  1486. ],
  1487. "authors": [
  1488. {
  1489. "name": "Guilherme Blanco",
  1490. "email": "guilhermeblanco@gmail.com"
  1491. },
  1492. {
  1493. "name": "Roman Borschel",
  1494. "email": "roman@code-factory.org"
  1495. },
  1496. {
  1497. "name": "Benjamin Eberlei",
  1498. "email": "kontakt@beberlei.de"
  1499. },
  1500. {
  1501. "name": "Jonathan Wage",
  1502. "email": "jonwage@gmail.com"
  1503. },
  1504. {
  1505. "name": "Johannes Schmitt",
  1506. "email": "schmittjoh@gmail.com"
  1507. },
  1508. {
  1509. "name": "Marco Pivetta",
  1510. "email": "ocramius@gmail.com"
  1511. }
  1512. ],
  1513. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1514. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1515. "keywords": [
  1516. "mapper",
  1517. "object",
  1518. "odm",
  1519. "orm",
  1520. "persistence"
  1521. ],
  1522. "support": {
  1523. "issues": "https://github.com/doctrine/persistence/issues",
  1524. "source": "https://github.com/doctrine/persistence/tree/3.0.4"
  1525. },
  1526. "funding": [
  1527. {
  1528. "url": "https://www.doctrine-project.org/sponsorship.html",
  1529. "type": "custom"
  1530. },
  1531. {
  1532. "url": "https://www.patreon.com/phpdoctrine",
  1533. "type": "patreon"
  1534. },
  1535. {
  1536. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1537. "type": "tidelift"
  1538. }
  1539. ],
  1540. "time": "2022-10-13T07:34:14+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/sql-formatter",
  1544. "version": "1.1.3",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/sql-formatter.git",
  1548. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1553. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": "^7.1 || ^8.0"
  1558. },
  1559. "require-dev": {
  1560. "bamarni/composer-bin-plugin": "^1.4"
  1561. },
  1562. "bin": [
  1563. "bin/sql-formatter"
  1564. ],
  1565. "type": "library",
  1566. "autoload": {
  1567. "psr-4": {
  1568. "Doctrine\\SqlFormatter\\": "src"
  1569. }
  1570. },
  1571. "notification-url": "https://packagist.org/downloads/",
  1572. "license": [
  1573. "MIT"
  1574. ],
  1575. "authors": [
  1576. {
  1577. "name": "Jeremy Dorn",
  1578. "email": "jeremy@jeremydorn.com",
  1579. "homepage": "https://jeremydorn.com/"
  1580. }
  1581. ],
  1582. "description": "a PHP SQL highlighting library",
  1583. "homepage": "https://github.com/doctrine/sql-formatter/",
  1584. "keywords": [
  1585. "highlight",
  1586. "sql"
  1587. ],
  1588. "support": {
  1589. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1590. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1591. },
  1592. "time": "2022-05-23T21:33:49+00:00"
  1593. },
  1594. {
  1595. "name": "egulias/email-validator",
  1596. "version": "3.2.1",
  1597. "source": {
  1598. "type": "git",
  1599. "url": "https://github.com/egulias/EmailValidator.git",
  1600. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715"
  1601. },
  1602. "dist": {
  1603. "type": "zip",
  1604. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1605. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1606. "shasum": ""
  1607. },
  1608. "require": {
  1609. "doctrine/lexer": "^1.2",
  1610. "php": ">=7.2",
  1611. "symfony/polyfill-intl-idn": "^1.15"
  1612. },
  1613. "require-dev": {
  1614. "php-coveralls/php-coveralls": "^2.2",
  1615. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1616. "vimeo/psalm": "^4"
  1617. },
  1618. "suggest": {
  1619. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1620. },
  1621. "type": "library",
  1622. "extra": {
  1623. "branch-alias": {
  1624. "dev-master": "3.0.x-dev"
  1625. }
  1626. },
  1627. "autoload": {
  1628. "psr-4": {
  1629. "Egulias\\EmailValidator\\": "src"
  1630. }
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "MIT"
  1635. ],
  1636. "authors": [
  1637. {
  1638. "name": "Eduardo Gulias Davis"
  1639. }
  1640. ],
  1641. "description": "A library for validating emails against several RFCs",
  1642. "homepage": "https://github.com/egulias/EmailValidator",
  1643. "keywords": [
  1644. "email",
  1645. "emailvalidation",
  1646. "emailvalidator",
  1647. "validation",
  1648. "validator"
  1649. ],
  1650. "support": {
  1651. "issues": "https://github.com/egulias/EmailValidator/issues",
  1652. "source": "https://github.com/egulias/EmailValidator/tree/3.2.1"
  1653. },
  1654. "funding": [
  1655. {
  1656. "url": "https://github.com/egulias",
  1657. "type": "github"
  1658. }
  1659. ],
  1660. "time": "2022-06-18T20:57:19+00:00"
  1661. },
  1662. {
  1663. "name": "embed/embed",
  1664. "version": "v4.4.6",
  1665. "source": {
  1666. "type": "git",
  1667. "url": "https://github.com/oscarotero/Embed.git",
  1668. "reference": "9cb2dff5c82201bbf653b7396d533d1914ff4517"
  1669. },
  1670. "dist": {
  1671. "type": "zip",
  1672. "url": "https://api.github.com/repos/oscarotero/Embed/zipball/9cb2dff5c82201bbf653b7396d533d1914ff4517",
  1673. "reference": "9cb2dff5c82201bbf653b7396d533d1914ff4517",
  1674. "shasum": ""
  1675. },
  1676. "require": {
  1677. "composer/ca-bundle": "^1.0",
  1678. "ext-curl": "*",
  1679. "ext-dom": "*",
  1680. "ext-json": "*",
  1681. "ext-mbstring": "*",
  1682. "ml/json-ld": "^1.1",
  1683. "oscarotero/html-parser": "^0.1.4",
  1684. "php": "^7.4|^8",
  1685. "psr/http-client": "^1.0",
  1686. "psr/http-factory": "^1.0",
  1687. "psr/http-message": "^1.0"
  1688. },
  1689. "require-dev": {
  1690. "brick/varexporter": "^0.3.1",
  1691. "friendsofphp/php-cs-fixer": "^2.0",
  1692. "nyholm/psr7": "^1.2",
  1693. "oscarotero/php-cs-fixer-config": "^1.0",
  1694. "phpunit/phpunit": "^9.0",
  1695. "symfony/css-selector": "^5.0"
  1696. },
  1697. "suggest": {
  1698. "symfony/css-selector": "If you want to get elements using css selectors"
  1699. },
  1700. "type": "library",
  1701. "autoload": {
  1702. "files": [
  1703. "src/functions.php"
  1704. ],
  1705. "psr-4": {
  1706. "Embed\\": "src"
  1707. }
  1708. },
  1709. "notification-url": "https://packagist.org/downloads/",
  1710. "license": [
  1711. "MIT"
  1712. ],
  1713. "authors": [
  1714. {
  1715. "name": "Oscar Otero",
  1716. "email": "oom@oscarotero.com",
  1717. "homepage": "http://oscarotero.com",
  1718. "role": "Developer"
  1719. }
  1720. ],
  1721. "description": "PHP library to retrieve page info using oembed, opengraph, etc",
  1722. "homepage": "https://github.com/oscarotero/Embed",
  1723. "keywords": [
  1724. "embed",
  1725. "embedly",
  1726. "oembed",
  1727. "opengraph",
  1728. "twitter cards"
  1729. ],
  1730. "support": {
  1731. "email": "oom@oscarotero.com",
  1732. "issues": "https://github.com/oscarotero/Embed/issues",
  1733. "source": "https://github.com/oscarotero/Embed/tree/v4.4.6"
  1734. },
  1735. "funding": [
  1736. {
  1737. "url": "https://paypal.me/oscarotero",
  1738. "type": "custom"
  1739. },
  1740. {
  1741. "url": "https://github.com/oscarotero",
  1742. "type": "github"
  1743. },
  1744. {
  1745. "url": "https://www.patreon.com/misteroom",
  1746. "type": "patreon"
  1747. }
  1748. ],
  1749. "time": "2022-10-02T15:13:01+00:00"
  1750. },
  1751. {
  1752. "name": "erusev/parsedown",
  1753. "version": "1.7.4",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/erusev/parsedown.git",
  1757. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1762. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "ext-mbstring": "*",
  1767. "php": ">=5.3.0"
  1768. },
  1769. "require-dev": {
  1770. "phpunit/phpunit": "^4.8.35"
  1771. },
  1772. "type": "library",
  1773. "autoload": {
  1774. "psr-0": {
  1775. "Parsedown": ""
  1776. }
  1777. },
  1778. "notification-url": "https://packagist.org/downloads/",
  1779. "license": [
  1780. "MIT"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "Emanuil Rusev",
  1785. "email": "hello@erusev.com",
  1786. "homepage": "http://erusev.com"
  1787. }
  1788. ],
  1789. "description": "Parser for Markdown.",
  1790. "homepage": "http://parsedown.org",
  1791. "keywords": [
  1792. "markdown",
  1793. "parser"
  1794. ],
  1795. "support": {
  1796. "issues": "https://github.com/erusev/parsedown/issues",
  1797. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  1798. },
  1799. "time": "2019-12-30T22:54:17+00:00"
  1800. },
  1801. {
  1802. "name": "evenement/evenement",
  1803. "version": "v3.0.1",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/igorw/evenement.git",
  1807. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  1812. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  1813. "shasum": ""
  1814. },
  1815. "require": {
  1816. "php": ">=7.0"
  1817. },
  1818. "require-dev": {
  1819. "phpunit/phpunit": "^6.0"
  1820. },
  1821. "type": "library",
  1822. "autoload": {
  1823. "psr-0": {
  1824. "Evenement": "src"
  1825. }
  1826. },
  1827. "notification-url": "https://packagist.org/downloads/",
  1828. "license": [
  1829. "MIT"
  1830. ],
  1831. "authors": [
  1832. {
  1833. "name": "Igor Wiedler",
  1834. "email": "igor@wiedler.ch"
  1835. }
  1836. ],
  1837. "description": "Événement is a very simple event dispatching library for PHP",
  1838. "keywords": [
  1839. "event-dispatcher",
  1840. "event-emitter"
  1841. ],
  1842. "support": {
  1843. "issues": "https://github.com/igorw/evenement/issues",
  1844. "source": "https://github.com/igorw/evenement/tree/master"
  1845. },
  1846. "time": "2017-07-23T21:35:13+00:00"
  1847. },
  1848. {
  1849. "name": "friendsofphp/proxy-manager-lts",
  1850. "version": "v1.0.13",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1854. "reference": "88354616f4cf4f6620910fd035e282173ba453e8"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/88354616f4cf4f6620910fd035e282173ba453e8",
  1859. "reference": "88354616f4cf4f6620910fd035e282173ba453e8",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "laminas/laminas-code": "~3.4.1|^4.0",
  1864. "php": ">=7.1",
  1865. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1866. },
  1867. "conflict": {
  1868. "laminas/laminas-stdlib": "<3.2.1",
  1869. "zendframework/zend-stdlib": "<3.2.1"
  1870. },
  1871. "replace": {
  1872. "ocramius/proxy-manager": "^2.1"
  1873. },
  1874. "require-dev": {
  1875. "ext-phar": "*",
  1876. "symfony/phpunit-bridge": "^5.4|^6.0"
  1877. },
  1878. "type": "library",
  1879. "extra": {
  1880. "thanks": {
  1881. "name": "ocramius/proxy-manager",
  1882. "url": "https://github.com/Ocramius/ProxyManager"
  1883. }
  1884. },
  1885. "autoload": {
  1886. "psr-4": {
  1887. "ProxyManager\\": "src/ProxyManager"
  1888. }
  1889. },
  1890. "notification-url": "https://packagist.org/downloads/",
  1891. "license": [
  1892. "MIT"
  1893. ],
  1894. "authors": [
  1895. {
  1896. "name": "Marco Pivetta",
  1897. "email": "ocramius@gmail.com",
  1898. "homepage": "https://ocramius.github.io/"
  1899. },
  1900. {
  1901. "name": "Nicolas Grekas",
  1902. "email": "p@tchwork.com"
  1903. }
  1904. ],
  1905. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1906. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1907. "keywords": [
  1908. "aop",
  1909. "lazy loading",
  1910. "proxy",
  1911. "proxy pattern",
  1912. "service proxies"
  1913. ],
  1914. "support": {
  1915. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1916. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.13"
  1917. },
  1918. "funding": [
  1919. {
  1920. "url": "https://github.com/Ocramius",
  1921. "type": "github"
  1922. },
  1923. {
  1924. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1925. "type": "tidelift"
  1926. }
  1927. ],
  1928. "time": "2022-10-17T19:48:16+00:00"
  1929. },
  1930. {
  1931. "name": "giggsey/libphonenumber-for-php",
  1932. "version": "8.12.57",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1936. "reference": "033a7285fd1102c13c4415e300734b7ce7ca0ae0"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/033a7285fd1102c13c4415e300734b7ce7ca0ae0",
  1941. "reference": "033a7285fd1102c13c4415e300734b7ce7ca0ae0",
  1942. "shasum": ""
  1943. },
  1944. "require": {
  1945. "giggsey/locale": "^1.7|^2.0",
  1946. "php": ">=5.3.2",
  1947. "symfony/polyfill-mbstring": "^1.17"
  1948. },
  1949. "require-dev": {
  1950. "pear/pear-core-minimal": "^1.9",
  1951. "pear/pear_exception": "^1.0",
  1952. "pear/versioncontrol_git": "^0.5",
  1953. "phing/phing": "^2.7",
  1954. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1955. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  1956. "symfony/phpunit-bridge": "^4.2 || ^5"
  1957. },
  1958. "type": "library",
  1959. "extra": {
  1960. "branch-alias": {
  1961. "dev-master": "8.x-dev"
  1962. }
  1963. },
  1964. "autoload": {
  1965. "psr-4": {
  1966. "libphonenumber\\": "src/"
  1967. },
  1968. "exclude-from-classmap": [
  1969. "/src/data/",
  1970. "/src/carrier/data/",
  1971. "/src/geocoding/data/",
  1972. "/src/timezone/data/"
  1973. ]
  1974. },
  1975. "notification-url": "https://packagist.org/downloads/",
  1976. "license": [
  1977. "Apache-2.0"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "Joshua Gigg",
  1982. "email": "giggsey@gmail.com",
  1983. "homepage": "https://giggsey.com/"
  1984. }
  1985. ],
  1986. "description": "PHP Port of Google's libphonenumber",
  1987. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  1988. "keywords": [
  1989. "geocoding",
  1990. "geolocation",
  1991. "libphonenumber",
  1992. "mobile",
  1993. "phonenumber",
  1994. "validation"
  1995. ],
  1996. "support": {
  1997. "irc": "irc://irc.appliedirc.com/lobby",
  1998. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  1999. "source": "https://github.com/giggsey/libphonenumber-for-php"
  2000. },
  2001. "time": "2022-10-14T07:52:28+00:00"
  2002. },
  2003. {
  2004. "name": "giggsey/locale",
  2005. "version": "2.3",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://github.com/giggsey/Locale.git",
  2009. "reference": "5f035523740be40d40ac768a123c9bcc1ae12f56"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://api.github.com/repos/giggsey/Locale/zipball/5f035523740be40d40ac768a123c9bcc1ae12f56",
  2014. "reference": "5f035523740be40d40ac768a123c9bcc1ae12f56",
  2015. "shasum": ""
  2016. },
  2017. "require": {
  2018. "php": ">=7.2"
  2019. },
  2020. "require-dev": {
  2021. "ext-json": "*",
  2022. "pear/pear-core-minimal": "^1.9",
  2023. "pear/pear_exception": "^1.0",
  2024. "pear/versioncontrol_git": "^0.5",
  2025. "phing/phing": "^2.7",
  2026. "php-coveralls/php-coveralls": "^2.0",
  2027. "phpunit/phpunit": "^8.5|^9.5",
  2028. "symfony/console": "^5.0|^6.0",
  2029. "symfony/filesystem": "^5.0|^6.0",
  2030. "symfony/finder": "^5.0|^6.0",
  2031. "symfony/process": "^5.0|^6.0"
  2032. },
  2033. "type": "library",
  2034. "autoload": {
  2035. "psr-4": {
  2036. "Giggsey\\Locale\\": "src/"
  2037. }
  2038. },
  2039. "notification-url": "https://packagist.org/downloads/",
  2040. "license": [
  2041. "MIT"
  2042. ],
  2043. "authors": [
  2044. {
  2045. "name": "Joshua Gigg",
  2046. "email": "giggsey@gmail.com",
  2047. "homepage": "https://giggsey.com/"
  2048. }
  2049. ],
  2050. "description": "Locale functions required by libphonenumber-for-php",
  2051. "support": {
  2052. "issues": "https://github.com/giggsey/Locale/issues",
  2053. "source": "https://github.com/giggsey/Locale/tree/2.3"
  2054. },
  2055. "time": "2022-10-19T20:03:30+00:00"
  2056. },
  2057. {
  2058. "name": "guzzlehttp/guzzle",
  2059. "version": "7.5.0",
  2060. "source": {
  2061. "type": "git",
  2062. "url": "https://github.com/guzzle/guzzle.git",
  2063. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  2064. },
  2065. "dist": {
  2066. "type": "zip",
  2067. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  2068. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  2069. "shasum": ""
  2070. },
  2071. "require": {
  2072. "ext-json": "*",
  2073. "guzzlehttp/promises": "^1.5",
  2074. "guzzlehttp/psr7": "^1.9 || ^2.4",
  2075. "php": "^7.2.5 || ^8.0",
  2076. "psr/http-client": "^1.0",
  2077. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2078. },
  2079. "provide": {
  2080. "psr/http-client-implementation": "1.0"
  2081. },
  2082. "require-dev": {
  2083. "bamarni/composer-bin-plugin": "^1.8.1",
  2084. "ext-curl": "*",
  2085. "php-http/client-integration-tests": "^3.0",
  2086. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  2087. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2088. },
  2089. "suggest": {
  2090. "ext-curl": "Required for CURL handler support",
  2091. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2092. "psr/log": "Required for using the Log middleware"
  2093. },
  2094. "type": "library",
  2095. "extra": {
  2096. "bamarni-bin": {
  2097. "bin-links": true,
  2098. "forward-command": false
  2099. },
  2100. "branch-alias": {
  2101. "dev-master": "7.5-dev"
  2102. }
  2103. },
  2104. "autoload": {
  2105. "files": [
  2106. "src/functions_include.php"
  2107. ],
  2108. "psr-4": {
  2109. "GuzzleHttp\\": "src/"
  2110. }
  2111. },
  2112. "notification-url": "https://packagist.org/downloads/",
  2113. "license": [
  2114. "MIT"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "Graham Campbell",
  2119. "email": "hello@gjcampbell.co.uk",
  2120. "homepage": "https://github.com/GrahamCampbell"
  2121. },
  2122. {
  2123. "name": "Michael Dowling",
  2124. "email": "mtdowling@gmail.com",
  2125. "homepage": "https://github.com/mtdowling"
  2126. },
  2127. {
  2128. "name": "Jeremy Lindblom",
  2129. "email": "jeremeamia@gmail.com",
  2130. "homepage": "https://github.com/jeremeamia"
  2131. },
  2132. {
  2133. "name": "George Mponos",
  2134. "email": "gmponos@gmail.com",
  2135. "homepage": "https://github.com/gmponos"
  2136. },
  2137. {
  2138. "name": "Tobias Nyholm",
  2139. "email": "tobias.nyholm@gmail.com",
  2140. "homepage": "https://github.com/Nyholm"
  2141. },
  2142. {
  2143. "name": "Márk Sági-Kazár",
  2144. "email": "mark.sagikazar@gmail.com",
  2145. "homepage": "https://github.com/sagikazarmark"
  2146. },
  2147. {
  2148. "name": "Tobias Schultze",
  2149. "email": "webmaster@tubo-world.de",
  2150. "homepage": "https://github.com/Tobion"
  2151. }
  2152. ],
  2153. "description": "Guzzle is a PHP HTTP client library",
  2154. "keywords": [
  2155. "client",
  2156. "curl",
  2157. "framework",
  2158. "http",
  2159. "http client",
  2160. "psr-18",
  2161. "psr-7",
  2162. "rest",
  2163. "web service"
  2164. ],
  2165. "support": {
  2166. "issues": "https://github.com/guzzle/guzzle/issues",
  2167. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  2168. },
  2169. "funding": [
  2170. {
  2171. "url": "https://github.com/GrahamCampbell",
  2172. "type": "github"
  2173. },
  2174. {
  2175. "url": "https://github.com/Nyholm",
  2176. "type": "github"
  2177. },
  2178. {
  2179. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2180. "type": "tidelift"
  2181. }
  2182. ],
  2183. "time": "2022-08-28T15:39:27+00:00"
  2184. },
  2185. {
  2186. "name": "guzzlehttp/promises",
  2187. "version": "1.5.2",
  2188. "source": {
  2189. "type": "git",
  2190. "url": "https://github.com/guzzle/promises.git",
  2191. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  2192. },
  2193. "dist": {
  2194. "type": "zip",
  2195. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  2196. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  2197. "shasum": ""
  2198. },
  2199. "require": {
  2200. "php": ">=5.5"
  2201. },
  2202. "require-dev": {
  2203. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2204. },
  2205. "type": "library",
  2206. "extra": {
  2207. "branch-alias": {
  2208. "dev-master": "1.5-dev"
  2209. }
  2210. },
  2211. "autoload": {
  2212. "files": [
  2213. "src/functions_include.php"
  2214. ],
  2215. "psr-4": {
  2216. "GuzzleHttp\\Promise\\": "src/"
  2217. }
  2218. },
  2219. "notification-url": "https://packagist.org/downloads/",
  2220. "license": [
  2221. "MIT"
  2222. ],
  2223. "authors": [
  2224. {
  2225. "name": "Graham Campbell",
  2226. "email": "hello@gjcampbell.co.uk",
  2227. "homepage": "https://github.com/GrahamCampbell"
  2228. },
  2229. {
  2230. "name": "Michael Dowling",
  2231. "email": "mtdowling@gmail.com",
  2232. "homepage": "https://github.com/mtdowling"
  2233. },
  2234. {
  2235. "name": "Tobias Nyholm",
  2236. "email": "tobias.nyholm@gmail.com",
  2237. "homepage": "https://github.com/Nyholm"
  2238. },
  2239. {
  2240. "name": "Tobias Schultze",
  2241. "email": "webmaster@tubo-world.de",
  2242. "homepage": "https://github.com/Tobion"
  2243. }
  2244. ],
  2245. "description": "Guzzle promises library",
  2246. "keywords": [
  2247. "promise"
  2248. ],
  2249. "support": {
  2250. "issues": "https://github.com/guzzle/promises/issues",
  2251. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  2252. },
  2253. "funding": [
  2254. {
  2255. "url": "https://github.com/GrahamCampbell",
  2256. "type": "github"
  2257. },
  2258. {
  2259. "url": "https://github.com/Nyholm",
  2260. "type": "github"
  2261. },
  2262. {
  2263. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2264. "type": "tidelift"
  2265. }
  2266. ],
  2267. "time": "2022-08-28T14:55:35+00:00"
  2268. },
  2269. {
  2270. "name": "guzzlehttp/psr7",
  2271. "version": "2.4.3",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://github.com/guzzle/psr7.git",
  2275. "reference": "67c26b443f348a51926030c83481b85718457d3d"
  2276. },
  2277. "dist": {
  2278. "type": "zip",
  2279. "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
  2280. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  2281. "shasum": ""
  2282. },
  2283. "require": {
  2284. "php": "^7.2.5 || ^8.0",
  2285. "psr/http-factory": "^1.0",
  2286. "psr/http-message": "^1.0",
  2287. "ralouphie/getallheaders": "^3.0"
  2288. },
  2289. "provide": {
  2290. "psr/http-factory-implementation": "1.0",
  2291. "psr/http-message-implementation": "1.0"
  2292. },
  2293. "require-dev": {
  2294. "bamarni/composer-bin-plugin": "^1.8.1",
  2295. "http-interop/http-factory-tests": "^0.9",
  2296. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  2297. },
  2298. "suggest": {
  2299. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2300. },
  2301. "type": "library",
  2302. "extra": {
  2303. "bamarni-bin": {
  2304. "bin-links": true,
  2305. "forward-command": false
  2306. },
  2307. "branch-alias": {
  2308. "dev-master": "2.4-dev"
  2309. }
  2310. },
  2311. "autoload": {
  2312. "psr-4": {
  2313. "GuzzleHttp\\Psr7\\": "src/"
  2314. }
  2315. },
  2316. "notification-url": "https://packagist.org/downloads/",
  2317. "license": [
  2318. "MIT"
  2319. ],
  2320. "authors": [
  2321. {
  2322. "name": "Graham Campbell",
  2323. "email": "hello@gjcampbell.co.uk",
  2324. "homepage": "https://github.com/GrahamCampbell"
  2325. },
  2326. {
  2327. "name": "Michael Dowling",
  2328. "email": "mtdowling@gmail.com",
  2329. "homepage": "https://github.com/mtdowling"
  2330. },
  2331. {
  2332. "name": "George Mponos",
  2333. "email": "gmponos@gmail.com",
  2334. "homepage": "https://github.com/gmponos"
  2335. },
  2336. {
  2337. "name": "Tobias Nyholm",
  2338. "email": "tobias.nyholm@gmail.com",
  2339. "homepage": "https://github.com/Nyholm"
  2340. },
  2341. {
  2342. "name": "Márk Sági-Kazár",
  2343. "email": "mark.sagikazar@gmail.com",
  2344. "homepage": "https://github.com/sagikazarmark"
  2345. },
  2346. {
  2347. "name": "Tobias Schultze",
  2348. "email": "webmaster@tubo-world.de",
  2349. "homepage": "https://github.com/Tobion"
  2350. },
  2351. {
  2352. "name": "Márk Sági-Kazár",
  2353. "email": "mark.sagikazar@gmail.com",
  2354. "homepage": "https://sagikazarmark.hu"
  2355. }
  2356. ],
  2357. "description": "PSR-7 message implementation that also provides common utility methods",
  2358. "keywords": [
  2359. "http",
  2360. "message",
  2361. "psr-7",
  2362. "request",
  2363. "response",
  2364. "stream",
  2365. "uri",
  2366. "url"
  2367. ],
  2368. "support": {
  2369. "issues": "https://github.com/guzzle/psr7/issues",
  2370. "source": "https://github.com/guzzle/psr7/tree/2.4.3"
  2371. },
  2372. "funding": [
  2373. {
  2374. "url": "https://github.com/GrahamCampbell",
  2375. "type": "github"
  2376. },
  2377. {
  2378. "url": "https://github.com/Nyholm",
  2379. "type": "github"
  2380. },
  2381. {
  2382. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2383. "type": "tidelift"
  2384. }
  2385. ],
  2386. "time": "2022-10-26T14:07:24+00:00"
  2387. },
  2388. {
  2389. "name": "jcupitt/vips",
  2390. "version": "v1.0.9",
  2391. "source": {
  2392. "type": "git",
  2393. "url": "https://github.com/libvips/php-vips.git",
  2394. "reference": "5015e7fb823e68ff914cd421b1a2e2674c9a1424"
  2395. },
  2396. "dist": {
  2397. "type": "zip",
  2398. "url": "https://api.github.com/repos/libvips/php-vips/zipball/5015e7fb823e68ff914cd421b1a2e2674c9a1424",
  2399. "reference": "5015e7fb823e68ff914cd421b1a2e2674c9a1424",
  2400. "shasum": ""
  2401. },
  2402. "require": {
  2403. "ext-vips": ">=0.1.2",
  2404. "php": ">=7.1",
  2405. "psr/log": "^1.1.3"
  2406. },
  2407. "require-dev": {
  2408. "php-parallel-lint/php-parallel-lint": "^1.2",
  2409. "phpdocumentor/phpdocumentor": "3.0.0",
  2410. "phpunit/phpunit": "^9.3",
  2411. "squizlabs/php_codesniffer": "^3.5"
  2412. },
  2413. "type": "library",
  2414. "extra": {
  2415. "branch-alias": {
  2416. "dev-master": "1.0.x-dev"
  2417. }
  2418. },
  2419. "autoload": {
  2420. "psr-4": {
  2421. "Jcupitt\\Vips\\": "src"
  2422. }
  2423. },
  2424. "notification-url": "https://packagist.org/downloads/",
  2425. "license": [
  2426. "MIT"
  2427. ],
  2428. "authors": [
  2429. {
  2430. "name": "John Cupitt",
  2431. "email": "jcupitt@gmail.com",
  2432. "homepage": "https://github.com/jcupitt",
  2433. "role": "Developer"
  2434. }
  2435. ],
  2436. "description": "A high-level interface to the libvips image processing library.",
  2437. "homepage": "https://github.com/libvips/php-vips",
  2438. "keywords": [
  2439. "image",
  2440. "libvips",
  2441. "processing"
  2442. ],
  2443. "support": {
  2444. "issues": "https://github.com/libvips/php-vips/issues",
  2445. "source": "https://github.com/libvips/php-vips/tree/v1.0.9"
  2446. },
  2447. "time": "2021-11-20T12:28:59+00:00"
  2448. },
  2449. {
  2450. "name": "knplabs/knp-time-bundle",
  2451. "version": "v1.20.0",
  2452. "source": {
  2453. "type": "git",
  2454. "url": "https://github.com/KnpLabs/KnpTimeBundle.git",
  2455. "reference": "81ffad54d91f62528466267fd4a2fb8a5a0335f4"
  2456. },
  2457. "dist": {
  2458. "type": "zip",
  2459. "url": "https://api.github.com/repos/KnpLabs/KnpTimeBundle/zipball/81ffad54d91f62528466267fd4a2fb8a5a0335f4",
  2460. "reference": "81ffad54d91f62528466267fd4a2fb8a5a0335f4",
  2461. "shasum": ""
  2462. },
  2463. "require": {
  2464. "php": ">=7.2.5",
  2465. "symfony/config": "^5.4|^6.0",
  2466. "symfony/dependency-injection": "^5.4|^6.0",
  2467. "symfony/templating": "^5.4|^6.0",
  2468. "symfony/translation": "^5.4|^6.0"
  2469. },
  2470. "conflict": {
  2471. "phpunit/phpunit": "<8.0"
  2472. },
  2473. "require-dev": {
  2474. "symfony/framework-bundle": "^5.4|^6.0",
  2475. "symfony/phpunit-bridge": "^5.4|^6.0",
  2476. "symfony/twig-bundle": "^5.4|^6.0"
  2477. },
  2478. "suggest": {
  2479. "symfony/twig-bundle": "to use the Twig `time_diff()` function or `|ago` filter"
  2480. },
  2481. "type": "symfony-bundle",
  2482. "extra": {
  2483. "branch-alias": {
  2484. "dev-master": "1.1.x-dev"
  2485. }
  2486. },
  2487. "autoload": {
  2488. "psr-4": {
  2489. "Knp\\Bundle\\TimeBundle\\": "src/"
  2490. }
  2491. },
  2492. "notification-url": "https://packagist.org/downloads/",
  2493. "license": [
  2494. "MIT"
  2495. ],
  2496. "authors": [
  2497. {
  2498. "name": "KnpLabs Team",
  2499. "homepage": "http://knplabs.com"
  2500. },
  2501. {
  2502. "name": "Symfony Community",
  2503. "homepage": "http://github.com/KnpLabs/KnpTimeBundle/contributors"
  2504. }
  2505. ],
  2506. "description": "Making your dates look sensible and descriptive",
  2507. "homepage": "http://github.com/KnpLabs/KnpTimeBundle",
  2508. "keywords": [
  2509. "bundle",
  2510. "date",
  2511. "descriptive time",
  2512. "knp",
  2513. "knplabs",
  2514. "time"
  2515. ],
  2516. "support": {
  2517. "issues": "https://github.com/KnpLabs/KnpTimeBundle/issues",
  2518. "source": "https://github.com/KnpLabs/KnpTimeBundle/tree/v1.20.0"
  2519. },
  2520. "time": "2022-10-11T15:32:58+00:00"
  2521. },
  2522. {
  2523. "name": "laminas/laminas-code",
  2524. "version": "4.7.0",
  2525. "source": {
  2526. "type": "git",
  2527. "url": "https://github.com/laminas/laminas-code.git",
  2528. "reference": "0337d9265bc2e6376babad8c511500821620cb30"
  2529. },
  2530. "dist": {
  2531. "type": "zip",
  2532. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/0337d9265bc2e6376babad8c511500821620cb30",
  2533. "reference": "0337d9265bc2e6376babad8c511500821620cb30",
  2534. "shasum": ""
  2535. },
  2536. "require": {
  2537. "php": ">=7.4, <8.2"
  2538. },
  2539. "require-dev": {
  2540. "doctrine/annotations": "^1.13.2",
  2541. "ext-phar": "*",
  2542. "laminas/laminas-coding-standard": "^2.3.0",
  2543. "laminas/laminas-stdlib": "^3.6.1",
  2544. "phpunit/phpunit": "^9.5.10",
  2545. "psalm/plugin-phpunit": "^0.17.0",
  2546. "vimeo/psalm": "^4.13.1"
  2547. },
  2548. "suggest": {
  2549. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  2550. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  2551. },
  2552. "type": "library",
  2553. "autoload": {
  2554. "files": [
  2555. "polyfill/ReflectionEnumPolyfill.php"
  2556. ],
  2557. "psr-4": {
  2558. "Laminas\\Code\\": "src/"
  2559. }
  2560. },
  2561. "notification-url": "https://packagist.org/downloads/",
  2562. "license": [
  2563. "BSD-3-Clause"
  2564. ],
  2565. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  2566. "homepage": "https://laminas.dev",
  2567. "keywords": [
  2568. "code",
  2569. "laminas",
  2570. "laminasframework"
  2571. ],
  2572. "support": {
  2573. "chat": "https://laminas.dev/chat",
  2574. "docs": "https://docs.laminas.dev/laminas-code/",
  2575. "forum": "https://discourse.laminas.dev",
  2576. "issues": "https://github.com/laminas/laminas-code/issues",
  2577. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  2578. "source": "https://github.com/laminas/laminas-code"
  2579. },
  2580. "funding": [
  2581. {
  2582. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2583. "type": "community_bridge"
  2584. }
  2585. ],
  2586. "time": "2022-09-13T10:33:30+00:00"
  2587. },
  2588. {
  2589. "name": "landrok/activitypub",
  2590. "version": "0.5.7",
  2591. "source": {
  2592. "type": "git",
  2593. "url": "https://github.com/landrok/activitypub.git",
  2594. "reference": "509dd3d"
  2595. },
  2596. "require": {
  2597. "guzzlehttp/guzzle": ">=6.3",
  2598. "monolog/monolog": "^1.12|^2.0",
  2599. "php": "^7.2|^8.0",
  2600. "phpseclib/phpseclib": "^3.0.7",
  2601. "psr/cache": "*",
  2602. "symfony/cache": ">=4.0",
  2603. "symfony/http-foundation": ">=3.4"
  2604. },
  2605. "type": "library",
  2606. "autoload": {
  2607. "psr-4": {
  2608. "ActivityPhp\\": "src/ActivityPhp/"
  2609. }
  2610. }
  2611. },
  2612. {
  2613. "name": "lcobucci/clock",
  2614. "version": "2.2.0",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/lcobucci/clock.git",
  2618. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/lcobucci/clock/zipball/fb533e093fd61321bfcbac08b131ce805fe183d3",
  2623. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3",
  2624. "shasum": ""
  2625. },
  2626. "require": {
  2627. "php": "^8.0",
  2628. "stella-maris/clock": "^0.1.4"
  2629. },
  2630. "require-dev": {
  2631. "infection/infection": "^0.26",
  2632. "lcobucci/coding-standard": "^8.0",
  2633. "phpstan/extension-installer": "^1.1",
  2634. "phpstan/phpstan": "^0.12",
  2635. "phpstan/phpstan-deprecation-rules": "^0.12",
  2636. "phpstan/phpstan-phpunit": "^0.12",
  2637. "phpstan/phpstan-strict-rules": "^0.12",
  2638. "phpunit/phpunit": "^9.5"
  2639. },
  2640. "type": "library",
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Lcobucci\\Clock\\": "src"
  2644. }
  2645. },
  2646. "notification-url": "https://packagist.org/downloads/",
  2647. "license": [
  2648. "MIT"
  2649. ],
  2650. "authors": [
  2651. {
  2652. "name": "Luís Cobucci",
  2653. "email": "lcobucci@gmail.com"
  2654. }
  2655. ],
  2656. "description": "Yet another clock abstraction",
  2657. "support": {
  2658. "issues": "https://github.com/lcobucci/clock/issues",
  2659. "source": "https://github.com/lcobucci/clock/tree/2.2.0"
  2660. },
  2661. "funding": [
  2662. {
  2663. "url": "https://github.com/lcobucci",
  2664. "type": "github"
  2665. },
  2666. {
  2667. "url": "https://www.patreon.com/lcobucci",
  2668. "type": "patreon"
  2669. }
  2670. ],
  2671. "time": "2022-04-19T19:34:17+00:00"
  2672. },
  2673. {
  2674. "name": "lcobucci/jwt",
  2675. "version": "4.2.1",
  2676. "source": {
  2677. "type": "git",
  2678. "url": "https://github.com/lcobucci/jwt.git",
  2679. "reference": "72ac6d807ee51a70ad376ee03a2387e8646e10f3"
  2680. },
  2681. "dist": {
  2682. "type": "zip",
  2683. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/72ac6d807ee51a70ad376ee03a2387e8646e10f3",
  2684. "reference": "72ac6d807ee51a70ad376ee03a2387e8646e10f3",
  2685. "shasum": ""
  2686. },
  2687. "require": {
  2688. "ext-hash": "*",
  2689. "ext-json": "*",
  2690. "ext-mbstring": "*",
  2691. "ext-openssl": "*",
  2692. "ext-sodium": "*",
  2693. "lcobucci/clock": "^2.0",
  2694. "php": "^7.4 || ^8.0"
  2695. },
  2696. "require-dev": {
  2697. "infection/infection": "^0.21",
  2698. "lcobucci/coding-standard": "^6.0",
  2699. "mikey179/vfsstream": "^1.6.7",
  2700. "phpbench/phpbench": "^1.2",
  2701. "phpstan/extension-installer": "^1.0",
  2702. "phpstan/phpstan": "^1.4",
  2703. "phpstan/phpstan-deprecation-rules": "^1.0",
  2704. "phpstan/phpstan-phpunit": "^1.0",
  2705. "phpstan/phpstan-strict-rules": "^1.0",
  2706. "phpunit/php-invoker": "^3.1",
  2707. "phpunit/phpunit": "^9.5"
  2708. },
  2709. "type": "library",
  2710. "autoload": {
  2711. "psr-4": {
  2712. "Lcobucci\\JWT\\": "src"
  2713. }
  2714. },
  2715. "notification-url": "https://packagist.org/downloads/",
  2716. "license": [
  2717. "BSD-3-Clause"
  2718. ],
  2719. "authors": [
  2720. {
  2721. "name": "Luís Cobucci",
  2722. "email": "lcobucci@gmail.com",
  2723. "role": "Developer"
  2724. }
  2725. ],
  2726. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2727. "keywords": [
  2728. "JWS",
  2729. "jwt"
  2730. ],
  2731. "support": {
  2732. "issues": "https://github.com/lcobucci/jwt/issues",
  2733. "source": "https://github.com/lcobucci/jwt/tree/4.2.1"
  2734. },
  2735. "funding": [
  2736. {
  2737. "url": "https://github.com/lcobucci",
  2738. "type": "github"
  2739. },
  2740. {
  2741. "url": "https://www.patreon.com/lcobucci",
  2742. "type": "patreon"
  2743. }
  2744. ],
  2745. "time": "2022-08-19T23:14:07+00:00"
  2746. },
  2747. {
  2748. "name": "league/event",
  2749. "version": "2.2.0",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://github.com/thephpleague/event.git",
  2753. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  2758. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  2759. "shasum": ""
  2760. },
  2761. "require": {
  2762. "php": ">=5.4.0"
  2763. },
  2764. "require-dev": {
  2765. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  2766. "phpspec/phpspec": "^2.2"
  2767. },
  2768. "type": "library",
  2769. "extra": {
  2770. "branch-alias": {
  2771. "dev-master": "2.2-dev"
  2772. }
  2773. },
  2774. "autoload": {
  2775. "psr-4": {
  2776. "League\\Event\\": "src/"
  2777. }
  2778. },
  2779. "notification-url": "https://packagist.org/downloads/",
  2780. "license": [
  2781. "MIT"
  2782. ],
  2783. "authors": [
  2784. {
  2785. "name": "Frank de Jonge",
  2786. "email": "info@frenky.net"
  2787. }
  2788. ],
  2789. "description": "Event package",
  2790. "keywords": [
  2791. "emitter",
  2792. "event",
  2793. "listener"
  2794. ],
  2795. "support": {
  2796. "issues": "https://github.com/thephpleague/event/issues",
  2797. "source": "https://github.com/thephpleague/event/tree/master"
  2798. },
  2799. "time": "2018-11-26T11:52:41+00:00"
  2800. },
  2801. {
  2802. "name": "league/oauth2-server",
  2803. "version": "8.3.5",
  2804. "source": {
  2805. "type": "git",
  2806. "url": "https://github.com/thephpleague/oauth2-server.git",
  2807. "reference": "7aeb7c42b463b1a6fe4d084d3145e2fa22436876"
  2808. },
  2809. "dist": {
  2810. "type": "zip",
  2811. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/7aeb7c42b463b1a6fe4d084d3145e2fa22436876",
  2812. "reference": "7aeb7c42b463b1a6fe4d084d3145e2fa22436876",
  2813. "shasum": ""
  2814. },
  2815. "require": {
  2816. "defuse/php-encryption": "^2.2.1",
  2817. "ext-json": "*",
  2818. "ext-openssl": "*",
  2819. "lcobucci/jwt": "^3.4.6 || ^4.0.4",
  2820. "league/event": "^2.2",
  2821. "league/uri": "^6.4",
  2822. "php": "^7.2 || ^8.0",
  2823. "psr/http-message": "^1.0.1"
  2824. },
  2825. "replace": {
  2826. "league/oauth2server": "*",
  2827. "lncd/oauth2": "*"
  2828. },
  2829. "require-dev": {
  2830. "laminas/laminas-diactoros": "^2.4.1",
  2831. "phpstan/phpstan": "^0.12.57",
  2832. "phpstan/phpstan-phpunit": "^0.12.16",
  2833. "phpunit/phpunit": "^8.5.13",
  2834. "roave/security-advisories": "dev-master"
  2835. },
  2836. "type": "library",
  2837. "autoload": {
  2838. "psr-4": {
  2839. "League\\OAuth2\\Server\\": "src/"
  2840. }
  2841. },
  2842. "notification-url": "https://packagist.org/downloads/",
  2843. "license": [
  2844. "MIT"
  2845. ],
  2846. "authors": [
  2847. {
  2848. "name": "Alex Bilbie",
  2849. "email": "hello@alexbilbie.com",
  2850. "homepage": "http://www.alexbilbie.com",
  2851. "role": "Developer"
  2852. },
  2853. {
  2854. "name": "Andy Millington",
  2855. "email": "andrew@noexceptions.io",
  2856. "homepage": "https://www.noexceptions.io",
  2857. "role": "Developer"
  2858. }
  2859. ],
  2860. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  2861. "homepage": "https://oauth2.thephpleague.com/",
  2862. "keywords": [
  2863. "Authentication",
  2864. "api",
  2865. "auth",
  2866. "authorisation",
  2867. "authorization",
  2868. "oauth",
  2869. "oauth 2",
  2870. "oauth 2.0",
  2871. "oauth2",
  2872. "protect",
  2873. "resource",
  2874. "secure",
  2875. "server"
  2876. ],
  2877. "support": {
  2878. "issues": "https://github.com/thephpleague/oauth2-server/issues",
  2879. "source": "https://github.com/thephpleague/oauth2-server/tree/8.3.5"
  2880. },
  2881. "funding": [
  2882. {
  2883. "url": "https://github.com/sephster",
  2884. "type": "github"
  2885. }
  2886. ],
  2887. "time": "2022-05-03T21:21:28+00:00"
  2888. },
  2889. {
  2890. "name": "league/uri",
  2891. "version": "6.8.0",
  2892. "source": {
  2893. "type": "git",
  2894. "url": "https://github.com/thephpleague/uri.git",
  2895. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39"
  2896. },
  2897. "dist": {
  2898. "type": "zip",
  2899. "url": "https://api.github.com/repos/thephpleague/uri/zipball/a700b4656e4c54371b799ac61e300ab25a2d1d39",
  2900. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39",
  2901. "shasum": ""
  2902. },
  2903. "require": {
  2904. "ext-json": "*",
  2905. "league/uri-interfaces": "^2.3",
  2906. "php": "^8.1",
  2907. "psr/http-message": "^1.0.1"
  2908. },
  2909. "conflict": {
  2910. "league/uri-schemes": "^1.0"
  2911. },
  2912. "require-dev": {
  2913. "friendsofphp/php-cs-fixer": "^v3.9.5",
  2914. "nyholm/psr7": "^1.5.1",
  2915. "php-http/psr7-integration-tests": "^1.1.1",
  2916. "phpbench/phpbench": "^1.2.6",
  2917. "phpstan/phpstan": "^1.8.5",
  2918. "phpstan/phpstan-deprecation-rules": "^1.0",
  2919. "phpstan/phpstan-phpunit": "^1.1.1",
  2920. "phpstan/phpstan-strict-rules": "^1.4.3",
  2921. "phpunit/phpunit": "^9.5.24",
  2922. "psr/http-factory": "^1.0.1"
  2923. },
  2924. "suggest": {
  2925. "ext-fileinfo": "Needed to create Data URI from a filepath",
  2926. "ext-intl": "Needed to improve host validation",
  2927. "league/uri-components": "Needed to easily manipulate URI objects",
  2928. "psr/http-factory": "Needed to use the URI factory"
  2929. },
  2930. "type": "library",
  2931. "extra": {
  2932. "branch-alias": {
  2933. "dev-master": "6.x-dev"
  2934. }
  2935. },
  2936. "autoload": {
  2937. "psr-4": {
  2938. "League\\Uri\\": "src"
  2939. }
  2940. },
  2941. "notification-url": "https://packagist.org/downloads/",
  2942. "license": [
  2943. "MIT"
  2944. ],
  2945. "authors": [
  2946. {
  2947. "name": "Ignace Nyamagana Butera",
  2948. "email": "nyamsprod@gmail.com",
  2949. "homepage": "https://nyamsprod.com"
  2950. }
  2951. ],
  2952. "description": "URI manipulation library",
  2953. "homepage": "https://uri.thephpleague.com",
  2954. "keywords": [
  2955. "data-uri",
  2956. "file-uri",
  2957. "ftp",
  2958. "hostname",
  2959. "http",
  2960. "https",
  2961. "middleware",
  2962. "parse_str",
  2963. "parse_url",
  2964. "psr-7",
  2965. "query-string",
  2966. "querystring",
  2967. "rfc3986",
  2968. "rfc3987",
  2969. "rfc6570",
  2970. "uri",
  2971. "uri-template",
  2972. "url",
  2973. "ws"
  2974. ],
  2975. "support": {
  2976. "docs": "https://uri.thephpleague.com",
  2977. "forum": "https://thephpleague.slack.com",
  2978. "issues": "https://github.com/thephpleague/uri/issues",
  2979. "source": "https://github.com/thephpleague/uri/tree/6.8.0"
  2980. },
  2981. "funding": [
  2982. {
  2983. "url": "https://github.com/sponsors/nyamsprod",
  2984. "type": "github"
  2985. }
  2986. ],
  2987. "time": "2022-09-13T19:58:47+00:00"
  2988. },
  2989. {
  2990. "name": "league/uri-interfaces",
  2991. "version": "2.3.0",
  2992. "source": {
  2993. "type": "git",
  2994. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2995. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383"
  2996. },
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  3000. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  3001. "shasum": ""
  3002. },
  3003. "require": {
  3004. "ext-json": "*",
  3005. "php": "^7.2 || ^8.0"
  3006. },
  3007. "require-dev": {
  3008. "friendsofphp/php-cs-fixer": "^2.19",
  3009. "phpstan/phpstan": "^0.12.90",
  3010. "phpstan/phpstan-phpunit": "^0.12.19",
  3011. "phpstan/phpstan-strict-rules": "^0.12.9",
  3012. "phpunit/phpunit": "^8.5.15 || ^9.5"
  3013. },
  3014. "suggest": {
  3015. "ext-intl": "to use the IDNA feature",
  3016. "symfony/intl": "to use the IDNA feature via Symfony Polyfill"
  3017. },
  3018. "type": "library",
  3019. "extra": {
  3020. "branch-alias": {
  3021. "dev-master": "2.x-dev"
  3022. }
  3023. },
  3024. "autoload": {
  3025. "psr-4": {
  3026. "League\\Uri\\": "src/"
  3027. }
  3028. },
  3029. "notification-url": "https://packagist.org/downloads/",
  3030. "license": [
  3031. "MIT"
  3032. ],
  3033. "authors": [
  3034. {
  3035. "name": "Ignace Nyamagana Butera",
  3036. "email": "nyamsprod@gmail.com",
  3037. "homepage": "https://nyamsprod.com"
  3038. }
  3039. ],
  3040. "description": "Common interface for URI representation",
  3041. "homepage": "http://github.com/thephpleague/uri-interfaces",
  3042. "keywords": [
  3043. "rfc3986",
  3044. "rfc3987",
  3045. "uri",
  3046. "url"
  3047. ],
  3048. "support": {
  3049. "issues": "https://github.com/thephpleague/uri-interfaces/issues",
  3050. "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0"
  3051. },
  3052. "funding": [
  3053. {
  3054. "url": "https://github.com/sponsors/nyamsprod",
  3055. "type": "github"
  3056. }
  3057. ],
  3058. "time": "2021-06-28T04:27:21+00:00"
  3059. },
  3060. {
  3061. "name": "league/uri-parser",
  3062. "version": "1.4.1",
  3063. "source": {
  3064. "type": "git",
  3065. "url": "https://github.com/thephpleague/uri-parser.git",
  3066. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
  3067. },
  3068. "dist": {
  3069. "type": "zip",
  3070. "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
  3071. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
  3072. "shasum": ""
  3073. },
  3074. "require": {
  3075. "php": ">=7.0.0"
  3076. },
  3077. "require-dev": {
  3078. "friendsofphp/php-cs-fixer": "^2.0",
  3079. "phpstan/phpstan": "^0.9.2",
  3080. "phpstan/phpstan-phpunit": "^0.9.4",
  3081. "phpstan/phpstan-strict-rules": "^0.9.0",
  3082. "phpunit/phpunit": "^6.0"
  3083. },
  3084. "suggest": {
  3085. "ext-intl": "Allow parsing RFC3987 compliant hosts",
  3086. "league/uri-schemes": "Allow validating and normalizing URI parsing results"
  3087. },
  3088. "type": "library",
  3089. "extra": {
  3090. "branch-alias": {
  3091. "dev-master": "1.x-dev"
  3092. }
  3093. },
  3094. "autoload": {
  3095. "files": [
  3096. "src/functions_include.php"
  3097. ],
  3098. "psr-4": {
  3099. "League\\Uri\\": "src"
  3100. }
  3101. },
  3102. "notification-url": "https://packagist.org/downloads/",
  3103. "license": [
  3104. "MIT"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "Ignace Nyamagana Butera",
  3109. "email": "nyamsprod@gmail.com",
  3110. "homepage": "https://nyamsprod.com"
  3111. }
  3112. ],
  3113. "description": "userland URI parser RFC 3986 compliant",
  3114. "homepage": "https://github.com/thephpleague/uri-parser",
  3115. "keywords": [
  3116. "parse_url",
  3117. "parser",
  3118. "rfc3986",
  3119. "rfc3987",
  3120. "uri",
  3121. "url"
  3122. ],
  3123. "support": {
  3124. "issues": "https://github.com/thephpleague/uri-parser/issues",
  3125. "source": "https://github.com/thephpleague/uri-parser/tree/master"
  3126. },
  3127. "time": "2018-11-22T07:55:51+00:00"
  3128. },
  3129. {
  3130. "name": "lstrojny/functional-php",
  3131. "version": "1.17.0",
  3132. "source": {
  3133. "type": "git",
  3134. "url": "https://github.com/lstrojny/functional-php.git",
  3135. "reference": "e459d5cb307bc6e10e9e992c4e96bb71a0262506"
  3136. },
  3137. "dist": {
  3138. "type": "zip",
  3139. "url": "https://api.github.com/repos/lstrojny/functional-php/zipball/e459d5cb307bc6e10e9e992c4e96bb71a0262506",
  3140. "reference": "e459d5cb307bc6e10e9e992c4e96bb71a0262506",
  3141. "shasum": ""
  3142. },
  3143. "require": {
  3144. "php": "^7.1|~8"
  3145. },
  3146. "require-dev": {
  3147. "friendsofphp/php-cs-fixer": "^2.17",
  3148. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.5",
  3149. "squizlabs/php_codesniffer": "~3.0"
  3150. },
  3151. "type": "library",
  3152. "autoload": {
  3153. "files": [
  3154. "src/Functional/Ary.php",
  3155. "src/Functional/Average.php",
  3156. "src/Functional/ButLast.php",
  3157. "src/Functional/Capture.php",
  3158. "src/Functional/ConstFunction.php",
  3159. "src/Functional/CompareOn.php",
  3160. "src/Functional/CompareObjectHashOn.php",
  3161. "src/Functional/Compose.php",
  3162. "src/Functional/Concat.php",
  3163. "src/Functional/Contains.php",
  3164. "src/Functional/Converge.php",
  3165. "src/Functional/Curry.php",
  3166. "src/Functional/CurryN.php",
  3167. "src/Functional/Difference.php",
  3168. "src/Functional/DropFirst.php",
  3169. "src/Functional/DropLast.php",
  3170. "src/Functional/Each.php",
  3171. "src/Functional/Equal.php",
  3172. "src/Functional/ErrorToException.php",
  3173. "src/Functional/Every.php",
  3174. "src/Functional/False.php",
  3175. "src/Functional/Falsy.php",
  3176. "src/Functional/Filter.php",
  3177. "src/Functional/First.php",
  3178. "src/Functional/FirstIndexOf.php",
  3179. "src/Functional/FlatMap.php",
  3180. "src/Functional/Flatten.php",
  3181. "src/Functional/Flip.php",
  3182. "src/Functional/GreaterThan.php",
  3183. "src/Functional/GreaterThanOrEqual.php",
  3184. "src/Functional/Group.php",
  3185. "src/Functional/Head.php",
  3186. "src/Functional/Id.php",
  3187. "src/Functional/IfElse.php",
  3188. "src/Functional/Identical.php",
  3189. "src/Functional/IndexesOf.php",
  3190. "src/Functional/Intersperse.php",
  3191. "src/Functional/Invoke.php",
  3192. "src/Functional/InvokeFirst.php",
  3193. "src/Functional/InvokeIf.php",
  3194. "src/Functional/InvokeLast.php",
  3195. "src/Functional/Invoker.php",
  3196. "src/Functional/Last.php",
  3197. "src/Functional/LastIndexOf.php",
  3198. "src/Functional/LessThan.php",
  3199. "src/Functional/LessThanOrEqual.php",
  3200. "src/Functional/LexicographicCompare.php",
  3201. "src/Functional/Map.php",
  3202. "src/Functional/Matching.php",
  3203. "src/Functional/Maximum.php",
  3204. "src/Functional/Memoize.php",
  3205. "src/Functional/Minimum.php",
  3206. "src/Functional/None.php",
  3207. "src/Functional/Noop.php",
  3208. "src/Functional/Not.php",
  3209. "src/Functional/OmitKeys.php",
  3210. "src/Functional/PartialAny.php",
  3211. "src/Functional/PartialLeft.php",
  3212. "src/Functional/PartialMethod.php",
  3213. "src/Functional/PartialRight.php",
  3214. "src/Functional/Partition.php",
  3215. "src/Functional/Pick.php",
  3216. "src/Functional/Pluck.php",
  3217. "src/Functional/Poll.php",
  3218. "src/Functional/Product.php",
  3219. "src/Functional/Ratio.php",
  3220. "src/Functional/ReduceLeft.php",
  3221. "src/Functional/ReduceRight.php",
  3222. "src/Functional/Reindex.php",
  3223. "src/Functional/Reject.php",
  3224. "src/Functional/Repeat.php",
  3225. "src/Functional/Retry.php",
  3226. "src/Functional/Select.php",
  3227. "src/Functional/SelectKeys.php",
  3228. "src/Functional/SequenceConstant.php",
  3229. "src/Functional/SequenceExponential.php",
  3230. "src/Functional/SequenceLinear.php",
  3231. "src/Functional/Some.php",
  3232. "src/Functional/Sort.php",
  3233. "src/Functional/Sum.php",
  3234. "src/Functional/SuppressError.php",
  3235. "src/Functional/Tap.php",
  3236. "src/Functional/Tail.php",
  3237. "src/Functional/TailRecursion.php",
  3238. "src/Functional/TakeLeft.php",
  3239. "src/Functional/TakeRight.php",
  3240. "src/Functional/True.php",
  3241. "src/Functional/Truthy.php",
  3242. "src/Functional/Unique.php",
  3243. "src/Functional/ValueToKey.php",
  3244. "src/Functional/With.php",
  3245. "src/Functional/Zip.php",
  3246. "src/Functional/ZipAll.php"
  3247. ],
  3248. "psr-4": {
  3249. "Functional\\": "src/Functional"
  3250. }
  3251. },
  3252. "notification-url": "https://packagist.org/downloads/",
  3253. "license": [
  3254. "MIT"
  3255. ],
  3256. "authors": [
  3257. {
  3258. "name": "Lars Strojny",
  3259. "email": "lstrojny@php.net",
  3260. "homepage": "https://usrportage.de"
  3261. },
  3262. {
  3263. "name": "Max Beutel",
  3264. "email": "nash12@gmail.com"
  3265. }
  3266. ],
  3267. "description": "Functional primitives for PHP",
  3268. "keywords": [
  3269. "functional"
  3270. ],
  3271. "support": {
  3272. "issues": "https://github.com/lstrojny/functional-php/issues",
  3273. "source": "https://github.com/lstrojny/functional-php/tree/1.17.0"
  3274. },
  3275. "funding": [
  3276. {
  3277. "url": "https://github.com/lstrojny",
  3278. "type": "github"
  3279. }
  3280. ],
  3281. "time": "2021-03-07T00:25:34+00:00"
  3282. },
  3283. {
  3284. "name": "masterminds/html5",
  3285. "version": "2.7.6",
  3286. "source": {
  3287. "type": "git",
  3288. "url": "https://github.com/Masterminds/html5-php.git",
  3289. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  3290. },
  3291. "dist": {
  3292. "type": "zip",
  3293. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  3294. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  3295. "shasum": ""
  3296. },
  3297. "require": {
  3298. "ext-ctype": "*",
  3299. "ext-dom": "*",
  3300. "ext-libxml": "*",
  3301. "php": ">=5.3.0"
  3302. },
  3303. "require-dev": {
  3304. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  3305. },
  3306. "type": "library",
  3307. "extra": {
  3308. "branch-alias": {
  3309. "dev-master": "2.7-dev"
  3310. }
  3311. },
  3312. "autoload": {
  3313. "psr-4": {
  3314. "Masterminds\\": "src"
  3315. }
  3316. },
  3317. "notification-url": "https://packagist.org/downloads/",
  3318. "license": [
  3319. "MIT"
  3320. ],
  3321. "authors": [
  3322. {
  3323. "name": "Matt Butcher",
  3324. "email": "technosophos@gmail.com"
  3325. },
  3326. {
  3327. "name": "Matt Farina",
  3328. "email": "matt@mattfarina.com"
  3329. },
  3330. {
  3331. "name": "Asmir Mustafic",
  3332. "email": "goetas@gmail.com"
  3333. }
  3334. ],
  3335. "description": "An HTML5 parser and serializer.",
  3336. "homepage": "http://masterminds.github.io/html5-php",
  3337. "keywords": [
  3338. "HTML5",
  3339. "dom",
  3340. "html",
  3341. "parser",
  3342. "querypath",
  3343. "serializer",
  3344. "xml"
  3345. ],
  3346. "support": {
  3347. "issues": "https://github.com/Masterminds/html5-php/issues",
  3348. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  3349. },
  3350. "time": "2022-08-18T16:18:26+00:00"
  3351. },
  3352. {
  3353. "name": "mf2/mf2",
  3354. "version": "0.4.6",
  3355. "source": {
  3356. "type": "git",
  3357. "url": "https://github.com/microformats/php-mf2.git",
  3358. "reference": "00b70ee7eb7f5b0585b1bd467f6c9cbd75055d23"
  3359. },
  3360. "dist": {
  3361. "type": "zip",
  3362. "url": "https://api.github.com/repos/microformats/php-mf2/zipball/00b70ee7eb7f5b0585b1bd467f6c9cbd75055d23",
  3363. "reference": "00b70ee7eb7f5b0585b1bd467f6c9cbd75055d23",
  3364. "shasum": ""
  3365. },
  3366. "require": {
  3367. "php": ">=5.4.0"
  3368. },
  3369. "require-dev": {
  3370. "mf2/tests": "@dev",
  3371. "phpdocumentor/phpdocumentor": "v2.8.4",
  3372. "phpunit/phpunit": "4.8.*"
  3373. },
  3374. "suggest": {
  3375. "barnabywalters/mf-cleaner": "To more easily handle the canonical data php-mf2 gives you",
  3376. "masterminds/html5": "Alternative HTML parser for PHP, for better HTML5 support."
  3377. },
  3378. "bin": [
  3379. "bin/fetch-mf2",
  3380. "bin/parse-mf2"
  3381. ],
  3382. "type": "library",
  3383. "autoload": {
  3384. "files": [
  3385. "Mf2/Parser.php"
  3386. ]
  3387. },
  3388. "notification-url": "https://packagist.org/downloads/",
  3389. "license": [
  3390. "CC0-1.0"
  3391. ],
  3392. "authors": [
  3393. {
  3394. "name": "Barnaby Walters",
  3395. "homepage": "http://waterpigs.co.uk"
  3396. }
  3397. ],
  3398. "description": "A pure, generic microformats2 parser — makes HTML as easy to consume as a JSON API",
  3399. "keywords": [
  3400. "html",
  3401. "microformats",
  3402. "microformats 2",
  3403. "parser",
  3404. "semantic"
  3405. ],
  3406. "support": {
  3407. "issues": "https://github.com/microformats/php-mf2/issues",
  3408. "source": "https://github.com/microformats/php-mf2/tree/master"
  3409. },
  3410. "time": "2018-08-24T14:47:04+00:00"
  3411. },
  3412. {
  3413. "name": "ml/iri",
  3414. "version": "1.1.4",
  3415. "target-dir": "ML/IRI",
  3416. "source": {
  3417. "type": "git",
  3418. "url": "https://github.com/lanthaler/IRI.git",
  3419. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341"
  3420. },
  3421. "dist": {
  3422. "type": "zip",
  3423. "url": "https://api.github.com/repos/lanthaler/IRI/zipball/cbd44fa913e00ea624241b38cefaa99da8d71341",
  3424. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341",
  3425. "shasum": ""
  3426. },
  3427. "require": {
  3428. "lib-pcre": ">=4.0",
  3429. "php": ">=5.3.0"
  3430. },
  3431. "type": "library",
  3432. "autoload": {
  3433. "psr-0": {
  3434. "ML\\IRI": ""
  3435. }
  3436. },
  3437. "notification-url": "https://packagist.org/downloads/",
  3438. "license": [
  3439. "MIT"
  3440. ],
  3441. "authors": [
  3442. {
  3443. "name": "Markus Lanthaler",
  3444. "email": "mail@markus-lanthaler.com",
  3445. "homepage": "http://www.markus-lanthaler.com",
  3446. "role": "Developer"
  3447. }
  3448. ],
  3449. "description": "IRI handling for PHP",
  3450. "homepage": "http://www.markus-lanthaler.com",
  3451. "keywords": [
  3452. "URN",
  3453. "iri",
  3454. "uri",
  3455. "url"
  3456. ],
  3457. "support": {
  3458. "issues": "https://github.com/lanthaler/IRI/issues",
  3459. "source": "https://github.com/lanthaler/IRI/tree/master"
  3460. },
  3461. "time": "2014-01-21T13:43:39+00:00"
  3462. },
  3463. {
  3464. "name": "ml/json-ld",
  3465. "version": "1.2.1",
  3466. "source": {
  3467. "type": "git",
  3468. "url": "https://github.com/lanthaler/JsonLD.git",
  3469. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8"
  3470. },
  3471. "dist": {
  3472. "type": "zip",
  3473. "url": "https://api.github.com/repos/lanthaler/JsonLD/zipball/537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  3474. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  3475. "shasum": ""
  3476. },
  3477. "require": {
  3478. "ext-json": "*",
  3479. "ml/iri": "^1.1.1",
  3480. "php": ">=5.3.0"
  3481. },
  3482. "require-dev": {
  3483. "json-ld/tests": "1.0",
  3484. "phpunit/phpunit": "^4"
  3485. },
  3486. "type": "library",
  3487. "autoload": {
  3488. "psr-4": {
  3489. "ML\\JsonLD\\": ""
  3490. }
  3491. },
  3492. "notification-url": "https://packagist.org/downloads/",
  3493. "license": [
  3494. "MIT"
  3495. ],
  3496. "authors": [
  3497. {
  3498. "name": "Markus Lanthaler",
  3499. "email": "mail@markus-lanthaler.com",
  3500. "homepage": "http://www.markus-lanthaler.com",
  3501. "role": "Developer"
  3502. }
  3503. ],
  3504. "description": "JSON-LD Processor for PHP",
  3505. "homepage": "http://www.markus-lanthaler.com",
  3506. "keywords": [
  3507. "JSON-LD",
  3508. "jsonld"
  3509. ],
  3510. "support": {
  3511. "issues": "https://github.com/lanthaler/JsonLD/issues",
  3512. "source": "https://github.com/lanthaler/JsonLD/tree/1.2.1"
  3513. },
  3514. "time": "2022-09-29T08:45:17+00:00"
  3515. },
  3516. {
  3517. "name": "monolog/monolog",
  3518. "version": "2.8.0",
  3519. "source": {
  3520. "type": "git",
  3521. "url": "https://github.com/Seldaek/monolog.git",
  3522. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  3523. },
  3524. "dist": {
  3525. "type": "zip",
  3526. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  3527. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  3528. "shasum": ""
  3529. },
  3530. "require": {
  3531. "php": ">=7.2",
  3532. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3533. },
  3534. "provide": {
  3535. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3536. },
  3537. "require-dev": {
  3538. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3539. "doctrine/couchdb": "~1.0@dev",
  3540. "elasticsearch/elasticsearch": "^7 || ^8",
  3541. "ext-json": "*",
  3542. "graylog2/gelf-php": "^1.4.2",
  3543. "guzzlehttp/guzzle": "^7.4",
  3544. "guzzlehttp/psr7": "^2.2",
  3545. "mongodb/mongodb": "^1.8",
  3546. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3547. "phpspec/prophecy": "^1.15",
  3548. "phpstan/phpstan": "^0.12.91",
  3549. "phpunit/phpunit": "^8.5.14",
  3550. "predis/predis": "^1.1 || ^2.0",
  3551. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3552. "ruflin/elastica": "^7",
  3553. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3554. "symfony/mailer": "^5.4 || ^6",
  3555. "symfony/mime": "^5.4 || ^6"
  3556. },
  3557. "suggest": {
  3558. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3559. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3560. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3561. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3562. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3563. "ext-mbstring": "Allow to work properly with unicode symbols",
  3564. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3565. "ext-openssl": "Required to send log messages using SSL",
  3566. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3567. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3568. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3569. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3570. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3571. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3572. },
  3573. "type": "library",
  3574. "extra": {
  3575. "branch-alias": {
  3576. "dev-main": "2.x-dev"
  3577. }
  3578. },
  3579. "autoload": {
  3580. "psr-4": {
  3581. "Monolog\\": "src/Monolog"
  3582. }
  3583. },
  3584. "notification-url": "https://packagist.org/downloads/",
  3585. "license": [
  3586. "MIT"
  3587. ],
  3588. "authors": [
  3589. {
  3590. "name": "Jordi Boggiano",
  3591. "email": "j.boggiano@seld.be",
  3592. "homepage": "https://seld.be"
  3593. }
  3594. ],
  3595. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3596. "homepage": "https://github.com/Seldaek/monolog",
  3597. "keywords": [
  3598. "log",
  3599. "logging",
  3600. "psr-3"
  3601. ],
  3602. "support": {
  3603. "issues": "https://github.com/Seldaek/monolog/issues",
  3604. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  3605. },
  3606. "funding": [
  3607. {
  3608. "url": "https://github.com/Seldaek",
  3609. "type": "github"
  3610. },
  3611. {
  3612. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3613. "type": "tidelift"
  3614. }
  3615. ],
  3616. "time": "2022-07-24T11:55:47+00:00"
  3617. },
  3618. {
  3619. "name": "nikic/php-parser",
  3620. "version": "v4.15.1",
  3621. "source": {
  3622. "type": "git",
  3623. "url": "https://github.com/nikic/PHP-Parser.git",
  3624. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900"
  3625. },
  3626. "dist": {
  3627. "type": "zip",
  3628. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  3629. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  3630. "shasum": ""
  3631. },
  3632. "require": {
  3633. "ext-tokenizer": "*",
  3634. "php": ">=7.0"
  3635. },
  3636. "require-dev": {
  3637. "ircmaxell/php-yacc": "^0.0.7",
  3638. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3639. },
  3640. "bin": [
  3641. "bin/php-parse"
  3642. ],
  3643. "type": "library",
  3644. "extra": {
  3645. "branch-alias": {
  3646. "dev-master": "4.9-dev"
  3647. }
  3648. },
  3649. "autoload": {
  3650. "psr-4": {
  3651. "PhpParser\\": "lib/PhpParser"
  3652. }
  3653. },
  3654. "notification-url": "https://packagist.org/downloads/",
  3655. "license": [
  3656. "BSD-3-Clause"
  3657. ],
  3658. "authors": [
  3659. {
  3660. "name": "Nikita Popov"
  3661. }
  3662. ],
  3663. "description": "A PHP parser written in PHP",
  3664. "keywords": [
  3665. "parser",
  3666. "php"
  3667. ],
  3668. "support": {
  3669. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3670. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1"
  3671. },
  3672. "time": "2022-09-04T07:30:47+00:00"
  3673. },
  3674. {
  3675. "name": "nyholm/psr7",
  3676. "version": "1.5.1",
  3677. "source": {
  3678. "type": "git",
  3679. "url": "https://github.com/Nyholm/psr7.git",
  3680. "reference": "f734364e38a876a23be4d906a2a089e1315be18a"
  3681. },
  3682. "dist": {
  3683. "type": "zip",
  3684. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/f734364e38a876a23be4d906a2a089e1315be18a",
  3685. "reference": "f734364e38a876a23be4d906a2a089e1315be18a",
  3686. "shasum": ""
  3687. },
  3688. "require": {
  3689. "php": ">=7.1",
  3690. "php-http/message-factory": "^1.0",
  3691. "psr/http-factory": "^1.0",
  3692. "psr/http-message": "^1.0"
  3693. },
  3694. "provide": {
  3695. "psr/http-factory-implementation": "1.0",
  3696. "psr/http-message-implementation": "1.0"
  3697. },
  3698. "require-dev": {
  3699. "http-interop/http-factory-tests": "^0.9",
  3700. "php-http/psr7-integration-tests": "^1.0",
  3701. "phpunit/phpunit": "^7.5 || 8.5 || 9.4",
  3702. "symfony/error-handler": "^4.4"
  3703. },
  3704. "type": "library",
  3705. "extra": {
  3706. "branch-alias": {
  3707. "dev-master": "1.4-dev"
  3708. }
  3709. },
  3710. "autoload": {
  3711. "psr-4": {
  3712. "Nyholm\\Psr7\\": "src/"
  3713. }
  3714. },
  3715. "notification-url": "https://packagist.org/downloads/",
  3716. "license": [
  3717. "MIT"
  3718. ],
  3719. "authors": [
  3720. {
  3721. "name": "Tobias Nyholm",
  3722. "email": "tobias.nyholm@gmail.com"
  3723. },
  3724. {
  3725. "name": "Martijn van der Ven",
  3726. "email": "martijn@vanderven.se"
  3727. }
  3728. ],
  3729. "description": "A fast PHP7 implementation of PSR-7",
  3730. "homepage": "https://tnyholm.se",
  3731. "keywords": [
  3732. "psr-17",
  3733. "psr-7"
  3734. ],
  3735. "support": {
  3736. "issues": "https://github.com/Nyholm/psr7/issues",
  3737. "source": "https://github.com/Nyholm/psr7/tree/1.5.1"
  3738. },
  3739. "funding": [
  3740. {
  3741. "url": "https://github.com/Zegnat",
  3742. "type": "github"
  3743. },
  3744. {
  3745. "url": "https://github.com/nyholm",
  3746. "type": "github"
  3747. }
  3748. ],
  3749. "time": "2022-06-22T07:13:36+00:00"
  3750. },
  3751. {
  3752. "name": "odolbeau/phone-number-bundle",
  3753. "version": "v3.8.0",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/odolbeau/phone-number-bundle.git",
  3757. "reference": "40e330c21d24903fac53aca5acb4b2ebce7a38a3"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/odolbeau/phone-number-bundle/zipball/40e330c21d24903fac53aca5acb4b2ebce7a38a3",
  3762. "reference": "40e330c21d24903fac53aca5acb4b2ebce7a38a3",
  3763. "shasum": ""
  3764. },
  3765. "require": {
  3766. "giggsey/libphonenumber-for-php": "^8.0",
  3767. "php": ">=7.4",
  3768. "symfony/framework-bundle": "^4.4|^5.3|^6.0",
  3769. "symfony/intl": "^4.4|^5.3|^6.0"
  3770. },
  3771. "conflict": {
  3772. "symfony/serializer": "6.0.0"
  3773. },
  3774. "replace": {
  3775. "misd/phone-number-bundle": "self.version"
  3776. },
  3777. "require-dev": {
  3778. "doctrine/doctrine-bundle": "^1.12|^2.0",
  3779. "phpspec/prophecy-phpunit": "^2.0",
  3780. "phpunit/phpunit": "^9.5",
  3781. "symfony/form": "^4.4|^5.3|^6.0",
  3782. "symfony/property-access": "^4.4|^5.3|^6.0",
  3783. "symfony/serializer": "^4.4|^5.3|^6.0.1",
  3784. "symfony/twig-bundle": "^4.4|^5.3|^6.0",
  3785. "symfony/validator": "^4.4|^5.3|^6.0"
  3786. },
  3787. "suggest": {
  3788. "doctrine/doctrine-bundle": "Add a DBAL mapping type",
  3789. "symfony/form": "Add a data transformer",
  3790. "symfony/property-access": "Choose a path in the validation constraint",
  3791. "symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
  3792. "symfony/twig-bundle": "Format phone numbers in Twig templates",
  3793. "symfony/validator": "Add a validation constraint"
  3794. },
  3795. "type": "symfony-bundle",
  3796. "extra": {
  3797. "branch-alias": {
  3798. "dev-master": "3.6.x-dev"
  3799. }
  3800. },
  3801. "autoload": {
  3802. "psr-4": {
  3803. "Misd\\PhoneNumberBundle\\": "src/"
  3804. }
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "MIT"
  3809. ],
  3810. "description": "Integrates libphonenumber into your Symfony application",
  3811. "homepage": "https://github.com/odolbeau/phone-number-bundle",
  3812. "keywords": [
  3813. "bundle",
  3814. "libphonenumber",
  3815. "phone-number",
  3816. "phonenumber",
  3817. "telephone number"
  3818. ],
  3819. "support": {
  3820. "issues": "https://github.com/odolbeau/phone-number-bundle/issues",
  3821. "source": "https://github.com/odolbeau/phone-number-bundle/tree/v3.8.0"
  3822. },
  3823. "time": "2022-10-24T08:51:32+00:00"
  3824. },
  3825. {
  3826. "name": "oro/doctrine-extensions",
  3827. "version": "2.0.2",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://github.com/oroinc/doctrine-extensions.git",
  3831. "reference": "478101fdb37e7a3bd4efad78b6e36fc49c26055f"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://api.github.com/repos/oroinc/doctrine-extensions/zipball/478101fdb37e7a3bd4efad78b6e36fc49c26055f",
  3836. "reference": "478101fdb37e7a3bd4efad78b6e36fc49c26055f",
  3837. "shasum": ""
  3838. },
  3839. "require": {
  3840. "doctrine/orm": ">=2.6",
  3841. "php": ">=7.3"
  3842. },
  3843. "require-dev": {
  3844. "doctrine/data-fixtures": "^1.3",
  3845. "phpunit/phpunit": "9.*",
  3846. "squizlabs/php_codesniffer": "3.5.*",
  3847. "symfony/yaml": "5.*"
  3848. },
  3849. "type": "library",
  3850. "autoload": {
  3851. "psr-4": {
  3852. "Oro\\ORM\\": "src/Oro/ORM",
  3853. "Oro\\DBAL\\": "src/Oro/DBAL"
  3854. }
  3855. },
  3856. "notification-url": "https://packagist.org/downloads/",
  3857. "license": [
  3858. "MIT"
  3859. ],
  3860. "authors": [
  3861. {
  3862. "name": "Oro, Inc",
  3863. "homepage": "https://oroinc.com/"
  3864. }
  3865. ],
  3866. "description": "Doctrine Extensions for MySQL and PostgreSQL.",
  3867. "homepage": "https://github.com/oroinc/doctrine-extensions/",
  3868. "keywords": [
  3869. "database",
  3870. "doctrine",
  3871. "dql",
  3872. "function",
  3873. "mysql",
  3874. "postgresql",
  3875. "type"
  3876. ],
  3877. "support": {
  3878. "issues": "https://github.com/oroinc/doctrine-extensions/issues",
  3879. "source": "https://github.com/oroinc/doctrine-extensions/tree/2.0.2"
  3880. },
  3881. "time": "2022-05-10T14:09:20+00:00"
  3882. },
  3883. {
  3884. "name": "oscarotero/html-parser",
  3885. "version": "v0.1.6",
  3886. "source": {
  3887. "type": "git",
  3888. "url": "https://github.com/oscarotero/html-parser.git",
  3889. "reference": "b61e92f634d0dc184339d24630a6968d3ac64ded"
  3890. },
  3891. "dist": {
  3892. "type": "zip",
  3893. "url": "https://api.github.com/repos/oscarotero/html-parser/zipball/b61e92f634d0dc184339d24630a6968d3ac64ded",
  3894. "reference": "b61e92f634d0dc184339d24630a6968d3ac64ded",
  3895. "shasum": ""
  3896. },
  3897. "require": {
  3898. "php": "^7.2 || ^8"
  3899. },
  3900. "require-dev": {
  3901. "friendsofphp/php-cs-fixer": "^2.11",
  3902. "phpunit/phpunit": "^8.0"
  3903. },
  3904. "type": "library",
  3905. "autoload": {
  3906. "psr-4": {
  3907. "HtmlParser\\": "src"
  3908. }
  3909. },
  3910. "notification-url": "https://packagist.org/downloads/",
  3911. "license": [
  3912. "MIT"
  3913. ],
  3914. "authors": [
  3915. {
  3916. "name": "Oscar Otero",
  3917. "email": "oom@oscarotero.com",
  3918. "homepage": "http://oscarotero.com",
  3919. "role": "Developer"
  3920. }
  3921. ],
  3922. "description": "Parse html strings to DOMDocument",
  3923. "homepage": "https://github.com/oscarotero/html-parser",
  3924. "keywords": [
  3925. "dom",
  3926. "html",
  3927. "parser"
  3928. ],
  3929. "support": {
  3930. "email": "oom@oscarotero.com",
  3931. "issues": "https://github.com/oscarotero/html-parser/issues",
  3932. "source": "https://github.com/oscarotero/html-parser/tree/v0.1.6"
  3933. },
  3934. "time": "2020-11-19T17:43:46+00:00"
  3935. },
  3936. {
  3937. "name": "paragonie/constant_time_encoding",
  3938. "version": "v2.6.3",
  3939. "source": {
  3940. "type": "git",
  3941. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3942. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  3943. },
  3944. "dist": {
  3945. "type": "zip",
  3946. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  3947. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  3948. "shasum": ""
  3949. },
  3950. "require": {
  3951. "php": "^7|^8"
  3952. },
  3953. "require-dev": {
  3954. "phpunit/phpunit": "^6|^7|^8|^9",
  3955. "vimeo/psalm": "^1|^2|^3|^4"
  3956. },
  3957. "type": "library",
  3958. "autoload": {
  3959. "psr-4": {
  3960. "ParagonIE\\ConstantTime\\": "src/"
  3961. }
  3962. },
  3963. "notification-url": "https://packagist.org/downloads/",
  3964. "license": [
  3965. "MIT"
  3966. ],
  3967. "authors": [
  3968. {
  3969. "name": "Paragon Initiative Enterprises",
  3970. "email": "security@paragonie.com",
  3971. "homepage": "https://paragonie.com",
  3972. "role": "Maintainer"
  3973. },
  3974. {
  3975. "name": "Steve 'Sc00bz' Thomas",
  3976. "email": "steve@tobtu.com",
  3977. "homepage": "https://www.tobtu.com",
  3978. "role": "Original Developer"
  3979. }
  3980. ],
  3981. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3982. "keywords": [
  3983. "base16",
  3984. "base32",
  3985. "base32_decode",
  3986. "base32_encode",
  3987. "base64",
  3988. "base64_decode",
  3989. "base64_encode",
  3990. "bin2hex",
  3991. "encoding",
  3992. "hex",
  3993. "hex2bin",
  3994. "rfc4648"
  3995. ],
  3996. "support": {
  3997. "email": "info@paragonie.com",
  3998. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3999. "source": "https://github.com/paragonie/constant_time_encoding"
  4000. },
  4001. "time": "2022-06-14T06:56:20+00:00"
  4002. },
  4003. {
  4004. "name": "pear/xml_xrd",
  4005. "version": "0.3.1",
  4006. "source": {
  4007. "type": "git",
  4008. "url": "https://github.com/someonewithpc/XML_XRD.git",
  4009. "reference": "master"
  4010. },
  4011. "type": "library",
  4012. "autoload": {
  4013. "psr-0": {
  4014. "": "src/"
  4015. }
  4016. },
  4017. "include-path": [
  4018. "src/"
  4019. ]
  4020. },
  4021. {
  4022. "name": "php-ds/php-ds",
  4023. "version": "v1.4.1",
  4024. "source": {
  4025. "type": "git",
  4026. "url": "https://github.com/php-ds/polyfill.git",
  4027. "reference": "43d2df301a9e2017f67b8c11d94a5222f9c00fd1"
  4028. },
  4029. "dist": {
  4030. "type": "zip",
  4031. "url": "https://api.github.com/repos/php-ds/polyfill/zipball/43d2df301a9e2017f67b8c11d94a5222f9c00fd1",
  4032. "reference": "43d2df301a9e2017f67b8c11d94a5222f9c00fd1",
  4033. "shasum": ""
  4034. },
  4035. "require": {
  4036. "ext-json": "*",
  4037. "php": ">=7.0"
  4038. },
  4039. "provide": {
  4040. "ext-ds": "1.3.0"
  4041. },
  4042. "require-dev": {
  4043. "php-ds/tests": "^1.3"
  4044. },
  4045. "suggest": {
  4046. "ext-ds": "to improve performance and reduce memory usage"
  4047. },
  4048. "type": "library",
  4049. "autoload": {
  4050. "psr-4": {
  4051. "Ds\\": "src"
  4052. }
  4053. },
  4054. "notification-url": "https://packagist.org/downloads/",
  4055. "license": [
  4056. "MIT"
  4057. ],
  4058. "authors": [
  4059. {
  4060. "name": "Rudi Theunissen",
  4061. "email": "rudolf.theunissen@gmail.com"
  4062. }
  4063. ],
  4064. "keywords": [
  4065. "data structures",
  4066. "ds",
  4067. "php",
  4068. "polyfill"
  4069. ],
  4070. "support": {
  4071. "issues": "https://github.com/php-ds/polyfill/issues",
  4072. "source": "https://github.com/php-ds/polyfill/tree/v1.4.1"
  4073. },
  4074. "time": "2022-03-09T20:39:30+00:00"
  4075. },
  4076. {
  4077. "name": "php-ffmpeg/php-ffmpeg",
  4078. "version": "v1.0.1",
  4079. "source": {
  4080. "type": "git",
  4081. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  4082. "reference": "bda300b69acecf791d2934cd5ed43a8ba24febf6"
  4083. },
  4084. "dist": {
  4085. "type": "zip",
  4086. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/bda300b69acecf791d2934cd5ed43a8ba24febf6",
  4087. "reference": "bda300b69acecf791d2934cd5ed43a8ba24febf6",
  4088. "shasum": ""
  4089. },
  4090. "require": {
  4091. "evenement/evenement": "^3.0",
  4092. "php": "^8.0 || ^8.1",
  4093. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4094. "spatie/temporary-directory": "^2.0",
  4095. "symfony/cache": "^5.4 || ^6.0",
  4096. "symfony/process": "^5.4 || ^6.0"
  4097. },
  4098. "require-dev": {
  4099. "mockery/mockery": "^1.5",
  4100. "phpunit/phpunit": "^9.5.10"
  4101. },
  4102. "suggest": {
  4103. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  4104. },
  4105. "type": "library",
  4106. "autoload": {
  4107. "psr-4": {
  4108. "FFMpeg\\": "src/FFMpeg",
  4109. "Alchemy\\BinaryDriver\\": "src/Alchemy/BinaryDriver"
  4110. }
  4111. },
  4112. "notification-url": "https://packagist.org/downloads/",
  4113. "license": [
  4114. "MIT"
  4115. ],
  4116. "authors": [
  4117. {
  4118. "name": "Romain Neutron",
  4119. "email": "imprec@gmail.com",
  4120. "homepage": "http://www.lickmychip.com/"
  4121. },
  4122. {
  4123. "name": "Phraseanet Team",
  4124. "email": "info@alchemy.fr",
  4125. "homepage": "http://www.phraseanet.com/"
  4126. },
  4127. {
  4128. "name": "Patrik Karisch",
  4129. "email": "patrik@karisch.guru",
  4130. "homepage": "http://www.karisch.guru"
  4131. },
  4132. {
  4133. "name": "Romain Biard",
  4134. "email": "romain.biard@gmail.com",
  4135. "homepage": "https://www.strime.io/"
  4136. },
  4137. {
  4138. "name": "Jens Hausdorf",
  4139. "email": "hello@jens-hausdorf.de",
  4140. "homepage": "https://jens-hausdorf.de"
  4141. },
  4142. {
  4143. "name": "Pascal Baljet",
  4144. "email": "pascal@protone.media",
  4145. "homepage": "https://protone.media"
  4146. }
  4147. ],
  4148. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  4149. "keywords": [
  4150. "audio",
  4151. "audio processing",
  4152. "avconv",
  4153. "avprobe",
  4154. "ffmpeg",
  4155. "ffprobe",
  4156. "video",
  4157. "video processing"
  4158. ],
  4159. "support": {
  4160. "issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues",
  4161. "source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v1.0.1"
  4162. },
  4163. "time": "2022-02-22T15:54:06+00:00"
  4164. },
  4165. {
  4166. "name": "php-http/message-factory",
  4167. "version": "v1.0.2",
  4168. "source": {
  4169. "type": "git",
  4170. "url": "https://github.com/php-http/message-factory.git",
  4171. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  4172. },
  4173. "dist": {
  4174. "type": "zip",
  4175. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  4176. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  4177. "shasum": ""
  4178. },
  4179. "require": {
  4180. "php": ">=5.4",
  4181. "psr/http-message": "^1.0"
  4182. },
  4183. "type": "library",
  4184. "extra": {
  4185. "branch-alias": {
  4186. "dev-master": "1.0-dev"
  4187. }
  4188. },
  4189. "autoload": {
  4190. "psr-4": {
  4191. "Http\\Message\\": "src/"
  4192. }
  4193. },
  4194. "notification-url": "https://packagist.org/downloads/",
  4195. "license": [
  4196. "MIT"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Márk Sági-Kazár",
  4201. "email": "mark.sagikazar@gmail.com"
  4202. }
  4203. ],
  4204. "description": "Factory interfaces for PSR-7 HTTP Message",
  4205. "homepage": "http://php-http.org",
  4206. "keywords": [
  4207. "factory",
  4208. "http",
  4209. "message",
  4210. "stream",
  4211. "uri"
  4212. ],
  4213. "support": {
  4214. "issues": "https://github.com/php-http/message-factory/issues",
  4215. "source": "https://github.com/php-http/message-factory/tree/master"
  4216. },
  4217. "time": "2015-12-19T14:08:53+00:00"
  4218. },
  4219. {
  4220. "name": "phpdocumentor/reflection-common",
  4221. "version": "2.2.0",
  4222. "source": {
  4223. "type": "git",
  4224. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4225. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  4226. },
  4227. "dist": {
  4228. "type": "zip",
  4229. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4230. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4231. "shasum": ""
  4232. },
  4233. "require": {
  4234. "php": "^7.2 || ^8.0"
  4235. },
  4236. "type": "library",
  4237. "extra": {
  4238. "branch-alias": {
  4239. "dev-2.x": "2.x-dev"
  4240. }
  4241. },
  4242. "autoload": {
  4243. "psr-4": {
  4244. "phpDocumentor\\Reflection\\": "src/"
  4245. }
  4246. },
  4247. "notification-url": "https://packagist.org/downloads/",
  4248. "license": [
  4249. "MIT"
  4250. ],
  4251. "authors": [
  4252. {
  4253. "name": "Jaap van Otterdijk",
  4254. "email": "opensource@ijaap.nl"
  4255. }
  4256. ],
  4257. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4258. "homepage": "http://www.phpdoc.org",
  4259. "keywords": [
  4260. "FQSEN",
  4261. "phpDocumentor",
  4262. "phpdoc",
  4263. "reflection",
  4264. "static analysis"
  4265. ],
  4266. "support": {
  4267. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  4268. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  4269. },
  4270. "time": "2020-06-27T09:03:43+00:00"
  4271. },
  4272. {
  4273. "name": "phpdocumentor/reflection-docblock",
  4274. "version": "5.3.0",
  4275. "source": {
  4276. "type": "git",
  4277. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4278. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  4279. },
  4280. "dist": {
  4281. "type": "zip",
  4282. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  4283. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  4284. "shasum": ""
  4285. },
  4286. "require": {
  4287. "ext-filter": "*",
  4288. "php": "^7.2 || ^8.0",
  4289. "phpdocumentor/reflection-common": "^2.2",
  4290. "phpdocumentor/type-resolver": "^1.3",
  4291. "webmozart/assert": "^1.9.1"
  4292. },
  4293. "require-dev": {
  4294. "mockery/mockery": "~1.3.2",
  4295. "psalm/phar": "^4.8"
  4296. },
  4297. "type": "library",
  4298. "extra": {
  4299. "branch-alias": {
  4300. "dev-master": "5.x-dev"
  4301. }
  4302. },
  4303. "autoload": {
  4304. "psr-4": {
  4305. "phpDocumentor\\Reflection\\": "src"
  4306. }
  4307. },
  4308. "notification-url": "https://packagist.org/downloads/",
  4309. "license": [
  4310. "MIT"
  4311. ],
  4312. "authors": [
  4313. {
  4314. "name": "Mike van Riel",
  4315. "email": "me@mikevanriel.com"
  4316. },
  4317. {
  4318. "name": "Jaap van Otterdijk",
  4319. "email": "account@ijaap.nl"
  4320. }
  4321. ],
  4322. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4323. "support": {
  4324. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  4325. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  4326. },
  4327. "time": "2021-10-19T17:43:47+00:00"
  4328. },
  4329. {
  4330. "name": "phpdocumentor/type-resolver",
  4331. "version": "1.6.2",
  4332. "source": {
  4333. "type": "git",
  4334. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4335. "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d"
  4336. },
  4337. "dist": {
  4338. "type": "zip",
  4339. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
  4340. "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
  4341. "shasum": ""
  4342. },
  4343. "require": {
  4344. "php": "^7.4 || ^8.0",
  4345. "phpdocumentor/reflection-common": "^2.0"
  4346. },
  4347. "require-dev": {
  4348. "ext-tokenizer": "*",
  4349. "phpstan/extension-installer": "^1.1",
  4350. "phpstan/phpstan": "^1.8",
  4351. "phpstan/phpstan-phpunit": "^1.1",
  4352. "phpunit/phpunit": "^9.5",
  4353. "rector/rector": "^0.13.9",
  4354. "vimeo/psalm": "^4.25"
  4355. },
  4356. "type": "library",
  4357. "extra": {
  4358. "branch-alias": {
  4359. "dev-1.x": "1.x-dev"
  4360. }
  4361. },
  4362. "autoload": {
  4363. "psr-4": {
  4364. "phpDocumentor\\Reflection\\": "src"
  4365. }
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "Mike van Riel",
  4374. "email": "me@mikevanriel.com"
  4375. }
  4376. ],
  4377. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4378. "support": {
  4379. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  4380. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.2"
  4381. },
  4382. "time": "2022-10-14T12:47:21+00:00"
  4383. },
  4384. {
  4385. "name": "phpseclib/phpseclib",
  4386. "version": "3.0.17",
  4387. "source": {
  4388. "type": "git",
  4389. "url": "https://github.com/phpseclib/phpseclib.git",
  4390. "reference": "dbc2307d5c69aeb22db136c52e91130d7f2ca761"
  4391. },
  4392. "dist": {
  4393. "type": "zip",
  4394. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/dbc2307d5c69aeb22db136c52e91130d7f2ca761",
  4395. "reference": "dbc2307d5c69aeb22db136c52e91130d7f2ca761",
  4396. "shasum": ""
  4397. },
  4398. "require": {
  4399. "paragonie/constant_time_encoding": "^1|^2",
  4400. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  4401. "php": ">=5.6.1"
  4402. },
  4403. "require-dev": {
  4404. "phpunit/phpunit": "*"
  4405. },
  4406. "suggest": {
  4407. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  4408. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  4409. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  4410. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  4411. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  4412. },
  4413. "type": "library",
  4414. "autoload": {
  4415. "files": [
  4416. "phpseclib/bootstrap.php"
  4417. ],
  4418. "psr-4": {
  4419. "phpseclib3\\": "phpseclib/"
  4420. }
  4421. },
  4422. "notification-url": "https://packagist.org/downloads/",
  4423. "license": [
  4424. "MIT"
  4425. ],
  4426. "authors": [
  4427. {
  4428. "name": "Jim Wigginton",
  4429. "email": "terrafrost@php.net",
  4430. "role": "Lead Developer"
  4431. },
  4432. {
  4433. "name": "Patrick Monnerat",
  4434. "email": "pm@datasphere.ch",
  4435. "role": "Developer"
  4436. },
  4437. {
  4438. "name": "Andreas Fischer",
  4439. "email": "bantu@phpbb.com",
  4440. "role": "Developer"
  4441. },
  4442. {
  4443. "name": "Hans-Jürgen Petrich",
  4444. "email": "petrich@tronic-media.com",
  4445. "role": "Developer"
  4446. },
  4447. {
  4448. "name": "Graham Campbell",
  4449. "email": "graham@alt-three.com",
  4450. "role": "Developer"
  4451. }
  4452. ],
  4453. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  4454. "homepage": "http://phpseclib.sourceforge.net",
  4455. "keywords": [
  4456. "BigInteger",
  4457. "aes",
  4458. "asn.1",
  4459. "asn1",
  4460. "blowfish",
  4461. "crypto",
  4462. "cryptography",
  4463. "encryption",
  4464. "rsa",
  4465. "security",
  4466. "sftp",
  4467. "signature",
  4468. "signing",
  4469. "ssh",
  4470. "twofish",
  4471. "x.509",
  4472. "x509"
  4473. ],
  4474. "support": {
  4475. "issues": "https://github.com/phpseclib/phpseclib/issues",
  4476. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.17"
  4477. },
  4478. "funding": [
  4479. {
  4480. "url": "https://github.com/terrafrost",
  4481. "type": "github"
  4482. },
  4483. {
  4484. "url": "https://www.patreon.com/phpseclib",
  4485. "type": "patreon"
  4486. },
  4487. {
  4488. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  4489. "type": "tidelift"
  4490. }
  4491. ],
  4492. "time": "2022-10-24T10:51:50+00:00"
  4493. },
  4494. {
  4495. "name": "psr/cache",
  4496. "version": "3.0.0",
  4497. "source": {
  4498. "type": "git",
  4499. "url": "https://github.com/php-fig/cache.git",
  4500. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4501. },
  4502. "dist": {
  4503. "type": "zip",
  4504. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4505. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4506. "shasum": ""
  4507. },
  4508. "require": {
  4509. "php": ">=8.0.0"
  4510. },
  4511. "type": "library",
  4512. "extra": {
  4513. "branch-alias": {
  4514. "dev-master": "1.0.x-dev"
  4515. }
  4516. },
  4517. "autoload": {
  4518. "psr-4": {
  4519. "Psr\\Cache\\": "src/"
  4520. }
  4521. },
  4522. "notification-url": "https://packagist.org/downloads/",
  4523. "license": [
  4524. "MIT"
  4525. ],
  4526. "authors": [
  4527. {
  4528. "name": "PHP-FIG",
  4529. "homepage": "https://www.php-fig.org/"
  4530. }
  4531. ],
  4532. "description": "Common interface for caching libraries",
  4533. "keywords": [
  4534. "cache",
  4535. "psr",
  4536. "psr-6"
  4537. ],
  4538. "support": {
  4539. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4540. },
  4541. "time": "2021-02-03T23:26:27+00:00"
  4542. },
  4543. {
  4544. "name": "psr/container",
  4545. "version": "2.0.2",
  4546. "source": {
  4547. "type": "git",
  4548. "url": "https://github.com/php-fig/container.git",
  4549. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4550. },
  4551. "dist": {
  4552. "type": "zip",
  4553. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4554. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4555. "shasum": ""
  4556. },
  4557. "require": {
  4558. "php": ">=7.4.0"
  4559. },
  4560. "type": "library",
  4561. "extra": {
  4562. "branch-alias": {
  4563. "dev-master": "2.0.x-dev"
  4564. }
  4565. },
  4566. "autoload": {
  4567. "psr-4": {
  4568. "Psr\\Container\\": "src/"
  4569. }
  4570. },
  4571. "notification-url": "https://packagist.org/downloads/",
  4572. "license": [
  4573. "MIT"
  4574. ],
  4575. "authors": [
  4576. {
  4577. "name": "PHP-FIG",
  4578. "homepage": "https://www.php-fig.org/"
  4579. }
  4580. ],
  4581. "description": "Common Container Interface (PHP FIG PSR-11)",
  4582. "homepage": "https://github.com/php-fig/container",
  4583. "keywords": [
  4584. "PSR-11",
  4585. "container",
  4586. "container-interface",
  4587. "container-interop",
  4588. "psr"
  4589. ],
  4590. "support": {
  4591. "issues": "https://github.com/php-fig/container/issues",
  4592. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4593. },
  4594. "time": "2021-11-05T16:47:00+00:00"
  4595. },
  4596. {
  4597. "name": "psr/event-dispatcher",
  4598. "version": "1.0.0",
  4599. "source": {
  4600. "type": "git",
  4601. "url": "https://github.com/php-fig/event-dispatcher.git",
  4602. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4603. },
  4604. "dist": {
  4605. "type": "zip",
  4606. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4607. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4608. "shasum": ""
  4609. },
  4610. "require": {
  4611. "php": ">=7.2.0"
  4612. },
  4613. "type": "library",
  4614. "extra": {
  4615. "branch-alias": {
  4616. "dev-master": "1.0.x-dev"
  4617. }
  4618. },
  4619. "autoload": {
  4620. "psr-4": {
  4621. "Psr\\EventDispatcher\\": "src/"
  4622. }
  4623. },
  4624. "notification-url": "https://packagist.org/downloads/",
  4625. "license": [
  4626. "MIT"
  4627. ],
  4628. "authors": [
  4629. {
  4630. "name": "PHP-FIG",
  4631. "homepage": "http://www.php-fig.org/"
  4632. }
  4633. ],
  4634. "description": "Standard interfaces for event handling.",
  4635. "keywords": [
  4636. "events",
  4637. "psr",
  4638. "psr-14"
  4639. ],
  4640. "support": {
  4641. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4642. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4643. },
  4644. "time": "2019-01-08T18:20:26+00:00"
  4645. },
  4646. {
  4647. "name": "psr/http-client",
  4648. "version": "1.0.1",
  4649. "source": {
  4650. "type": "git",
  4651. "url": "https://github.com/php-fig/http-client.git",
  4652. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4653. },
  4654. "dist": {
  4655. "type": "zip",
  4656. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4657. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4658. "shasum": ""
  4659. },
  4660. "require": {
  4661. "php": "^7.0 || ^8.0",
  4662. "psr/http-message": "^1.0"
  4663. },
  4664. "type": "library",
  4665. "extra": {
  4666. "branch-alias": {
  4667. "dev-master": "1.0.x-dev"
  4668. }
  4669. },
  4670. "autoload": {
  4671. "psr-4": {
  4672. "Psr\\Http\\Client\\": "src/"
  4673. }
  4674. },
  4675. "notification-url": "https://packagist.org/downloads/",
  4676. "license": [
  4677. "MIT"
  4678. ],
  4679. "authors": [
  4680. {
  4681. "name": "PHP-FIG",
  4682. "homepage": "http://www.php-fig.org/"
  4683. }
  4684. ],
  4685. "description": "Common interface for HTTP clients",
  4686. "homepage": "https://github.com/php-fig/http-client",
  4687. "keywords": [
  4688. "http",
  4689. "http-client",
  4690. "psr",
  4691. "psr-18"
  4692. ],
  4693. "support": {
  4694. "source": "https://github.com/php-fig/http-client/tree/master"
  4695. },
  4696. "time": "2020-06-29T06:28:15+00:00"
  4697. },
  4698. {
  4699. "name": "psr/http-factory",
  4700. "version": "1.0.1",
  4701. "source": {
  4702. "type": "git",
  4703. "url": "https://github.com/php-fig/http-factory.git",
  4704. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4705. },
  4706. "dist": {
  4707. "type": "zip",
  4708. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4709. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4710. "shasum": ""
  4711. },
  4712. "require": {
  4713. "php": ">=7.0.0",
  4714. "psr/http-message": "^1.0"
  4715. },
  4716. "type": "library",
  4717. "extra": {
  4718. "branch-alias": {
  4719. "dev-master": "1.0.x-dev"
  4720. }
  4721. },
  4722. "autoload": {
  4723. "psr-4": {
  4724. "Psr\\Http\\Message\\": "src/"
  4725. }
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "MIT"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "PHP-FIG",
  4734. "homepage": "http://www.php-fig.org/"
  4735. }
  4736. ],
  4737. "description": "Common interfaces for PSR-7 HTTP message factories",
  4738. "keywords": [
  4739. "factory",
  4740. "http",
  4741. "message",
  4742. "psr",
  4743. "psr-17",
  4744. "psr-7",
  4745. "request",
  4746. "response"
  4747. ],
  4748. "support": {
  4749. "source": "https://github.com/php-fig/http-factory/tree/master"
  4750. },
  4751. "time": "2019-04-30T12:38:16+00:00"
  4752. },
  4753. {
  4754. "name": "psr/http-message",
  4755. "version": "1.0.1",
  4756. "source": {
  4757. "type": "git",
  4758. "url": "https://github.com/php-fig/http-message.git",
  4759. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4760. },
  4761. "dist": {
  4762. "type": "zip",
  4763. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4764. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4765. "shasum": ""
  4766. },
  4767. "require": {
  4768. "php": ">=5.3.0"
  4769. },
  4770. "type": "library",
  4771. "extra": {
  4772. "branch-alias": {
  4773. "dev-master": "1.0.x-dev"
  4774. }
  4775. },
  4776. "autoload": {
  4777. "psr-4": {
  4778. "Psr\\Http\\Message\\": "src/"
  4779. }
  4780. },
  4781. "notification-url": "https://packagist.org/downloads/",
  4782. "license": [
  4783. "MIT"
  4784. ],
  4785. "authors": [
  4786. {
  4787. "name": "PHP-FIG",
  4788. "homepage": "http://www.php-fig.org/"
  4789. }
  4790. ],
  4791. "description": "Common interface for HTTP messages",
  4792. "homepage": "https://github.com/php-fig/http-message",
  4793. "keywords": [
  4794. "http",
  4795. "http-message",
  4796. "psr",
  4797. "psr-7",
  4798. "request",
  4799. "response"
  4800. ],
  4801. "support": {
  4802. "source": "https://github.com/php-fig/http-message/tree/master"
  4803. },
  4804. "time": "2016-08-06T14:39:51+00:00"
  4805. },
  4806. {
  4807. "name": "psr/link",
  4808. "version": "2.0.1",
  4809. "source": {
  4810. "type": "git",
  4811. "url": "https://github.com/php-fig/link.git",
  4812. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  4813. },
  4814. "dist": {
  4815. "type": "zip",
  4816. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  4817. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  4818. "shasum": ""
  4819. },
  4820. "require": {
  4821. "php": ">=8.0.0"
  4822. },
  4823. "suggest": {
  4824. "fig/link-util": "Provides some useful PSR-13 utilities"
  4825. },
  4826. "type": "library",
  4827. "extra": {
  4828. "branch-alias": {
  4829. "dev-master": "2.0.x-dev"
  4830. }
  4831. },
  4832. "autoload": {
  4833. "psr-4": {
  4834. "Psr\\Link\\": "src/"
  4835. }
  4836. },
  4837. "notification-url": "https://packagist.org/downloads/",
  4838. "license": [
  4839. "MIT"
  4840. ],
  4841. "authors": [
  4842. {
  4843. "name": "PHP-FIG",
  4844. "homepage": "http://www.php-fig.org/"
  4845. }
  4846. ],
  4847. "description": "Common interfaces for HTTP links",
  4848. "homepage": "https://github.com/php-fig/link",
  4849. "keywords": [
  4850. "http",
  4851. "http-link",
  4852. "link",
  4853. "psr",
  4854. "psr-13",
  4855. "rest"
  4856. ],
  4857. "support": {
  4858. "source": "https://github.com/php-fig/link/tree/2.0.1"
  4859. },
  4860. "time": "2021-03-11T23:00:27+00:00"
  4861. },
  4862. {
  4863. "name": "psr/log",
  4864. "version": "1.1.4",
  4865. "source": {
  4866. "type": "git",
  4867. "url": "https://github.com/php-fig/log.git",
  4868. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4869. },
  4870. "dist": {
  4871. "type": "zip",
  4872. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4873. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4874. "shasum": ""
  4875. },
  4876. "require": {
  4877. "php": ">=5.3.0"
  4878. },
  4879. "type": "library",
  4880. "extra": {
  4881. "branch-alias": {
  4882. "dev-master": "1.1.x-dev"
  4883. }
  4884. },
  4885. "autoload": {
  4886. "psr-4": {
  4887. "Psr\\Log\\": "Psr/Log/"
  4888. }
  4889. },
  4890. "notification-url": "https://packagist.org/downloads/",
  4891. "license": [
  4892. "MIT"
  4893. ],
  4894. "authors": [
  4895. {
  4896. "name": "PHP-FIG",
  4897. "homepage": "https://www.php-fig.org/"
  4898. }
  4899. ],
  4900. "description": "Common interface for logging libraries",
  4901. "homepage": "https://github.com/php-fig/log",
  4902. "keywords": [
  4903. "log",
  4904. "psr",
  4905. "psr-3"
  4906. ],
  4907. "support": {
  4908. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4909. },
  4910. "time": "2021-05-03T11:20:27+00:00"
  4911. },
  4912. {
  4913. "name": "psy/psysh",
  4914. "version": "v0.11.8",
  4915. "source": {
  4916. "type": "git",
  4917. "url": "https://github.com/bobthecow/psysh.git",
  4918. "reference": "f455acf3645262ae389b10e9beba0c358aa6994e"
  4919. },
  4920. "dist": {
  4921. "type": "zip",
  4922. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/f455acf3645262ae389b10e9beba0c358aa6994e",
  4923. "reference": "f455acf3645262ae389b10e9beba0c358aa6994e",
  4924. "shasum": ""
  4925. },
  4926. "require": {
  4927. "ext-json": "*",
  4928. "ext-tokenizer": "*",
  4929. "nikic/php-parser": "^4.0 || ^3.1",
  4930. "php": "^8.0 || ^7.0.8",
  4931. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4932. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4933. },
  4934. "conflict": {
  4935. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4936. },
  4937. "require-dev": {
  4938. "bamarni/composer-bin-plugin": "^1.2"
  4939. },
  4940. "suggest": {
  4941. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4942. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4943. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4944. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4945. },
  4946. "bin": [
  4947. "bin/psysh"
  4948. ],
  4949. "type": "library",
  4950. "extra": {
  4951. "branch-alias": {
  4952. "dev-main": "0.11.x-dev"
  4953. }
  4954. },
  4955. "autoload": {
  4956. "files": [
  4957. "src/functions.php"
  4958. ],
  4959. "psr-4": {
  4960. "Psy\\": "src/"
  4961. }
  4962. },
  4963. "notification-url": "https://packagist.org/downloads/",
  4964. "license": [
  4965. "MIT"
  4966. ],
  4967. "authors": [
  4968. {
  4969. "name": "Justin Hileman",
  4970. "email": "justin@justinhileman.info",
  4971. "homepage": "http://justinhileman.com"
  4972. }
  4973. ],
  4974. "description": "An interactive shell for modern PHP.",
  4975. "homepage": "http://psysh.org",
  4976. "keywords": [
  4977. "REPL",
  4978. "console",
  4979. "interactive",
  4980. "shell"
  4981. ],
  4982. "support": {
  4983. "issues": "https://github.com/bobthecow/psysh/issues",
  4984. "source": "https://github.com/bobthecow/psysh/tree/v0.11.8"
  4985. },
  4986. "time": "2022-07-28T14:25:11+00:00"
  4987. },
  4988. {
  4989. "name": "ralouphie/getallheaders",
  4990. "version": "3.0.3",
  4991. "source": {
  4992. "type": "git",
  4993. "url": "https://github.com/ralouphie/getallheaders.git",
  4994. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4995. },
  4996. "dist": {
  4997. "type": "zip",
  4998. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4999. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5000. "shasum": ""
  5001. },
  5002. "require": {
  5003. "php": ">=5.6"
  5004. },
  5005. "require-dev": {
  5006. "php-coveralls/php-coveralls": "^2.1",
  5007. "phpunit/phpunit": "^5 || ^6.5"
  5008. },
  5009. "type": "library",
  5010. "autoload": {
  5011. "files": [
  5012. "src/getallheaders.php"
  5013. ]
  5014. },
  5015. "notification-url": "https://packagist.org/downloads/",
  5016. "license": [
  5017. "MIT"
  5018. ],
  5019. "authors": [
  5020. {
  5021. "name": "Ralph Khattar",
  5022. "email": "ralph.khattar@gmail.com"
  5023. }
  5024. ],
  5025. "description": "A polyfill for getallheaders.",
  5026. "support": {
  5027. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5028. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5029. },
  5030. "time": "2019-03-08T08:55:37+00:00"
  5031. },
  5032. {
  5033. "name": "sensio/framework-extra-bundle",
  5034. "version": "v6.2.8",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  5038. "reference": "bb962f8aed09e60b0942545f6e4842ffeee4aafd"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/bb962f8aed09e60b0942545f6e4842ffeee4aafd",
  5043. "reference": "bb962f8aed09e60b0942545f6e4842ffeee4aafd",
  5044. "shasum": ""
  5045. },
  5046. "require": {
  5047. "doctrine/annotations": "^1.0",
  5048. "php": ">=7.2.5",
  5049. "symfony/config": "^4.4|^5.0|^6.0",
  5050. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5051. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  5052. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  5053. },
  5054. "conflict": {
  5055. "doctrine/doctrine-cache-bundle": "<1.3.1",
  5056. "doctrine/persistence": "<1.3"
  5057. },
  5058. "require-dev": {
  5059. "doctrine/dbal": "^2.10|^3.0",
  5060. "doctrine/doctrine-bundle": "^1.11|^2.0",
  5061. "doctrine/orm": "^2.5",
  5062. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  5063. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  5064. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5065. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5066. "symfony/finder": "^4.4|^5.0|^6.0",
  5067. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  5068. "symfony/monolog-bundle": "^3.2",
  5069. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  5070. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  5071. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  5072. "symfony/yaml": "^4.4|^5.0|^6.0",
  5073. "twig/twig": "^1.34|^2.4|^3.0"
  5074. },
  5075. "type": "symfony-bundle",
  5076. "extra": {
  5077. "branch-alias": {
  5078. "dev-master": "6.1.x-dev"
  5079. }
  5080. },
  5081. "autoload": {
  5082. "psr-4": {
  5083. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  5084. },
  5085. "exclude-from-classmap": [
  5086. "/tests/"
  5087. ]
  5088. },
  5089. "notification-url": "https://packagist.org/downloads/",
  5090. "license": [
  5091. "MIT"
  5092. ],
  5093. "authors": [
  5094. {
  5095. "name": "Fabien Potencier",
  5096. "email": "fabien@symfony.com"
  5097. }
  5098. ],
  5099. "description": "This bundle provides a way to configure your controllers with annotations",
  5100. "keywords": [
  5101. "annotations",
  5102. "controllers"
  5103. ],
  5104. "support": {
  5105. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  5106. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.8"
  5107. },
  5108. "time": "2022-09-05T16:44:56+00:00"
  5109. },
  5110. {
  5111. "name": "someonewithpc/memcached-polyfill",
  5112. "version": "1.0.1",
  5113. "source": {
  5114. "type": "git",
  5115. "url": "https://github.com/someonewithpc/memcached-polyfill.git",
  5116. "reference": "326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4"
  5117. },
  5118. "dist": {
  5119. "type": "zip",
  5120. "url": "https://api.github.com/repos/someonewithpc/memcached-polyfill/zipball/326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4",
  5121. "reference": "326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4",
  5122. "shasum": ""
  5123. },
  5124. "type": "library",
  5125. "autoload": {
  5126. "psr-4": {
  5127. "": "src"
  5128. }
  5129. },
  5130. "notification-url": "https://packagist.org/downloads/",
  5131. "license": [
  5132. "GPL-3.0-or-later"
  5133. ],
  5134. "authors": [
  5135. {
  5136. "name": "Hugo Sales",
  5137. "email": "hugo@fc.up.pt"
  5138. }
  5139. ],
  5140. "description": "No-implementation memcached extension polyfill",
  5141. "keywords": [
  5142. "memcached",
  5143. "polyfill",
  5144. "symfony"
  5145. ],
  5146. "support": {
  5147. "issues": "https://github.com/someonewithpc/memcached-polyfill/issues",
  5148. "source": "https://github.com/someonewithpc/memcached-polyfill/tree/1.0.1"
  5149. },
  5150. "time": "2020-07-17T22:30:37+00:00"
  5151. },
  5152. {
  5153. "name": "someonewithpc/redis-polyfill",
  5154. "version": "dev-master",
  5155. "source": {
  5156. "type": "git",
  5157. "url": "https://github.com/someonewithpc/php-redis-polyfill.git",
  5158. "reference": "6f10fea3b62718ad3c500dcbcd8f5254894376c0"
  5159. },
  5160. "dist": {
  5161. "type": "zip",
  5162. "url": "https://api.github.com/repos/someonewithpc/php-redis-polyfill/zipball/6f10fea3b62718ad3c500dcbcd8f5254894376c0",
  5163. "reference": "6f10fea3b62718ad3c500dcbcd8f5254894376c0",
  5164. "shasum": ""
  5165. },
  5166. "default-branch": true,
  5167. "type": "library",
  5168. "autoload": {
  5169. "psr-4": {
  5170. "": "src"
  5171. }
  5172. },
  5173. "notification-url": "https://packagist.org/downloads/",
  5174. "license": [
  5175. "GPL-3.0-or-later"
  5176. ],
  5177. "authors": [
  5178. {
  5179. "name": "Hugo Sales",
  5180. "email": "hugo@fc.up.pt"
  5181. }
  5182. ],
  5183. "description": "No-implementation redis extension polyfill",
  5184. "keywords": [
  5185. "polyfill",
  5186. "redis"
  5187. ],
  5188. "support": {
  5189. "issues": "https://github.com/someonewithpc/php-redis-polyfill/issues",
  5190. "source": "https://github.com/someonewithpc/php-redis-polyfill/tree/1.1"
  5191. },
  5192. "time": "2021-04-01T19:09:10+00:00"
  5193. },
  5194. {
  5195. "name": "spatie/temporary-directory",
  5196. "version": "2.1.1",
  5197. "source": {
  5198. "type": "git",
  5199. "url": "https://github.com/spatie/temporary-directory.git",
  5200. "reference": "e2818d871783d520b319c2d38dc37c10ecdcde20"
  5201. },
  5202. "dist": {
  5203. "type": "zip",
  5204. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/e2818d871783d520b319c2d38dc37c10ecdcde20",
  5205. "reference": "e2818d871783d520b319c2d38dc37c10ecdcde20",
  5206. "shasum": ""
  5207. },
  5208. "require": {
  5209. "php": "^8.0"
  5210. },
  5211. "require-dev": {
  5212. "phpunit/phpunit": "^9.5"
  5213. },
  5214. "type": "library",
  5215. "autoload": {
  5216. "psr-4": {
  5217. "Spatie\\TemporaryDirectory\\": "src"
  5218. }
  5219. },
  5220. "notification-url": "https://packagist.org/downloads/",
  5221. "license": [
  5222. "MIT"
  5223. ],
  5224. "authors": [
  5225. {
  5226. "name": "Alex Vanderbist",
  5227. "email": "alex@spatie.be",
  5228. "homepage": "https://spatie.be",
  5229. "role": "Developer"
  5230. }
  5231. ],
  5232. "description": "Easily create, use and destroy temporary directories",
  5233. "homepage": "https://github.com/spatie/temporary-directory",
  5234. "keywords": [
  5235. "php",
  5236. "spatie",
  5237. "temporary-directory"
  5238. ],
  5239. "support": {
  5240. "issues": "https://github.com/spatie/temporary-directory/issues",
  5241. "source": "https://github.com/spatie/temporary-directory/tree/2.1.1"
  5242. },
  5243. "funding": [
  5244. {
  5245. "url": "https://spatie.be/open-source/support-us",
  5246. "type": "custom"
  5247. },
  5248. {
  5249. "url": "https://github.com/spatie",
  5250. "type": "github"
  5251. }
  5252. ],
  5253. "time": "2022-08-23T07:15:15+00:00"
  5254. },
  5255. {
  5256. "name": "stella-maris/clock",
  5257. "version": "0.1.6",
  5258. "source": {
  5259. "type": "git",
  5260. "url": "https://github.com/stella-maris-solutions/clock.git",
  5261. "reference": "a94228dac03c9a8411198ce8c8dacbbe99c930c3"
  5262. },
  5263. "dist": {
  5264. "type": "zip",
  5265. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/a94228dac03c9a8411198ce8c8dacbbe99c930c3",
  5266. "reference": "a94228dac03c9a8411198ce8c8dacbbe99c930c3",
  5267. "shasum": ""
  5268. },
  5269. "require": {
  5270. "php": "^7.0|^8.0"
  5271. },
  5272. "type": "library",
  5273. "autoload": {
  5274. "psr-4": {
  5275. "StellaMaris\\Clock\\": "src"
  5276. }
  5277. },
  5278. "notification-url": "https://packagist.org/downloads/",
  5279. "license": [
  5280. "MIT"
  5281. ],
  5282. "authors": [
  5283. {
  5284. "name": "Andreas Heigl",
  5285. "role": "Maintainer"
  5286. }
  5287. ],
  5288. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  5289. "homepage": "https://gitlab.com/stella-maris/clock",
  5290. "keywords": [
  5291. "clock",
  5292. "datetime",
  5293. "point in time",
  5294. "psr20"
  5295. ],
  5296. "support": {
  5297. "issues": "https://github.com/stella-maris-solutions/clock/issues",
  5298. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.6"
  5299. },
  5300. "time": "2022-09-27T15:03:11+00:00"
  5301. },
  5302. {
  5303. "name": "symfony/asset",
  5304. "version": "v6.1.5",
  5305. "source": {
  5306. "type": "git",
  5307. "url": "https://github.com/symfony/asset.git",
  5308. "reference": "6065b5edc36442cb1ba98dc40f7c7f6b9e154729"
  5309. },
  5310. "dist": {
  5311. "type": "zip",
  5312. "url": "https://api.github.com/repos/symfony/asset/zipball/6065b5edc36442cb1ba98dc40f7c7f6b9e154729",
  5313. "reference": "6065b5edc36442cb1ba98dc40f7c7f6b9e154729",
  5314. "shasum": ""
  5315. },
  5316. "require": {
  5317. "php": ">=8.1"
  5318. },
  5319. "conflict": {
  5320. "symfony/http-foundation": "<5.4"
  5321. },
  5322. "require-dev": {
  5323. "symfony/http-client": "^5.4|^6.0",
  5324. "symfony/http-foundation": "^5.4|^6.0",
  5325. "symfony/http-kernel": "^5.4|^6.0"
  5326. },
  5327. "suggest": {
  5328. "symfony/http-foundation": ""
  5329. },
  5330. "type": "library",
  5331. "autoload": {
  5332. "psr-4": {
  5333. "Symfony\\Component\\Asset\\": ""
  5334. },
  5335. "exclude-from-classmap": [
  5336. "/Tests/"
  5337. ]
  5338. },
  5339. "notification-url": "https://packagist.org/downloads/",
  5340. "license": [
  5341. "MIT"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "Fabien Potencier",
  5346. "email": "fabien@symfony.com"
  5347. },
  5348. {
  5349. "name": "Symfony Community",
  5350. "homepage": "https://symfony.com/contributors"
  5351. }
  5352. ],
  5353. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  5354. "homepage": "https://symfony.com",
  5355. "support": {
  5356. "source": "https://github.com/symfony/asset/tree/v6.1.5"
  5357. },
  5358. "funding": [
  5359. {
  5360. "url": "https://symfony.com/sponsor",
  5361. "type": "custom"
  5362. },
  5363. {
  5364. "url": "https://github.com/fabpot",
  5365. "type": "github"
  5366. },
  5367. {
  5368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5369. "type": "tidelift"
  5370. }
  5371. ],
  5372. "time": "2022-08-31T08:17:45+00:00"
  5373. },
  5374. {
  5375. "name": "symfony/cache",
  5376. "version": "v6.1.5",
  5377. "source": {
  5378. "type": "git",
  5379. "url": "https://github.com/symfony/cache.git",
  5380. "reference": "9ae74e40fde37aba127ad5db65c5193f41f86f95"
  5381. },
  5382. "dist": {
  5383. "type": "zip",
  5384. "url": "https://api.github.com/repos/symfony/cache/zipball/9ae74e40fde37aba127ad5db65c5193f41f86f95",
  5385. "reference": "9ae74e40fde37aba127ad5db65c5193f41f86f95",
  5386. "shasum": ""
  5387. },
  5388. "require": {
  5389. "php": ">=8.1",
  5390. "psr/cache": "^2.0|^3.0",
  5391. "psr/log": "^1.1|^2|^3",
  5392. "symfony/cache-contracts": "^1.1.7|^2|^3",
  5393. "symfony/service-contracts": "^1.1|^2|^3",
  5394. "symfony/var-exporter": "^5.4|^6.0"
  5395. },
  5396. "conflict": {
  5397. "doctrine/dbal": "<2.13.1",
  5398. "symfony/dependency-injection": "<5.4",
  5399. "symfony/http-kernel": "<5.4",
  5400. "symfony/var-dumper": "<5.4"
  5401. },
  5402. "provide": {
  5403. "psr/cache-implementation": "2.0|3.0",
  5404. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5405. "symfony/cache-implementation": "1.1|2.0|3.0"
  5406. },
  5407. "require-dev": {
  5408. "cache/integration-tests": "dev-master",
  5409. "doctrine/dbal": "^2.13.1|^3.0",
  5410. "predis/predis": "^1.1",
  5411. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5412. "symfony/config": "^5.4|^6.0",
  5413. "symfony/dependency-injection": "^5.4|^6.0",
  5414. "symfony/filesystem": "^5.4|^6.0",
  5415. "symfony/http-kernel": "^5.4|^6.0",
  5416. "symfony/messenger": "^5.4|^6.0",
  5417. "symfony/var-dumper": "^5.4|^6.0"
  5418. },
  5419. "type": "library",
  5420. "autoload": {
  5421. "psr-4": {
  5422. "Symfony\\Component\\Cache\\": ""
  5423. },
  5424. "classmap": [
  5425. "Traits/ValueWrapper.php"
  5426. ],
  5427. "exclude-from-classmap": [
  5428. "/Tests/"
  5429. ]
  5430. },
  5431. "notification-url": "https://packagist.org/downloads/",
  5432. "license": [
  5433. "MIT"
  5434. ],
  5435. "authors": [
  5436. {
  5437. "name": "Nicolas Grekas",
  5438. "email": "p@tchwork.com"
  5439. },
  5440. {
  5441. "name": "Symfony Community",
  5442. "homepage": "https://symfony.com/contributors"
  5443. }
  5444. ],
  5445. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5446. "homepage": "https://symfony.com",
  5447. "keywords": [
  5448. "caching",
  5449. "psr6"
  5450. ],
  5451. "support": {
  5452. "source": "https://github.com/symfony/cache/tree/v6.1.5"
  5453. },
  5454. "funding": [
  5455. {
  5456. "url": "https://symfony.com/sponsor",
  5457. "type": "custom"
  5458. },
  5459. {
  5460. "url": "https://github.com/fabpot",
  5461. "type": "github"
  5462. },
  5463. {
  5464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5465. "type": "tidelift"
  5466. }
  5467. ],
  5468. "time": "2022-09-08T09:34:40+00:00"
  5469. },
  5470. {
  5471. "name": "symfony/cache-contracts",
  5472. "version": "v3.1.1",
  5473. "source": {
  5474. "type": "git",
  5475. "url": "https://github.com/symfony/cache-contracts.git",
  5476. "reference": "2eab7fa459af6d75c6463e63e633b667a9b761d3"
  5477. },
  5478. "dist": {
  5479. "type": "zip",
  5480. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/2eab7fa459af6d75c6463e63e633b667a9b761d3",
  5481. "reference": "2eab7fa459af6d75c6463e63e633b667a9b761d3",
  5482. "shasum": ""
  5483. },
  5484. "require": {
  5485. "php": ">=8.1",
  5486. "psr/cache": "^3.0"
  5487. },
  5488. "suggest": {
  5489. "symfony/cache-implementation": ""
  5490. },
  5491. "type": "library",
  5492. "extra": {
  5493. "branch-alias": {
  5494. "dev-main": "3.1-dev"
  5495. },
  5496. "thanks": {
  5497. "name": "symfony/contracts",
  5498. "url": "https://github.com/symfony/contracts"
  5499. }
  5500. },
  5501. "autoload": {
  5502. "psr-4": {
  5503. "Symfony\\Contracts\\Cache\\": ""
  5504. }
  5505. },
  5506. "notification-url": "https://packagist.org/downloads/",
  5507. "license": [
  5508. "MIT"
  5509. ],
  5510. "authors": [
  5511. {
  5512. "name": "Nicolas Grekas",
  5513. "email": "p@tchwork.com"
  5514. },
  5515. {
  5516. "name": "Symfony Community",
  5517. "homepage": "https://symfony.com/contributors"
  5518. }
  5519. ],
  5520. "description": "Generic abstractions related to caching",
  5521. "homepage": "https://symfony.com",
  5522. "keywords": [
  5523. "abstractions",
  5524. "contracts",
  5525. "decoupling",
  5526. "interfaces",
  5527. "interoperability",
  5528. "standards"
  5529. ],
  5530. "support": {
  5531. "source": "https://github.com/symfony/cache-contracts/tree/v3.1.1"
  5532. },
  5533. "funding": [
  5534. {
  5535. "url": "https://symfony.com/sponsor",
  5536. "type": "custom"
  5537. },
  5538. {
  5539. "url": "https://github.com/fabpot",
  5540. "type": "github"
  5541. },
  5542. {
  5543. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5544. "type": "tidelift"
  5545. }
  5546. ],
  5547. "time": "2022-02-25T11:15:52+00:00"
  5548. },
  5549. {
  5550. "name": "symfony/config",
  5551. "version": "v6.1.3",
  5552. "source": {
  5553. "type": "git",
  5554. "url": "https://github.com/symfony/config.git",
  5555. "reference": "a0645dc585d378b73c01115dd7ab9348f7d40c85"
  5556. },
  5557. "dist": {
  5558. "type": "zip",
  5559. "url": "https://api.github.com/repos/symfony/config/zipball/a0645dc585d378b73c01115dd7ab9348f7d40c85",
  5560. "reference": "a0645dc585d378b73c01115dd7ab9348f7d40c85",
  5561. "shasum": ""
  5562. },
  5563. "require": {
  5564. "php": ">=8.1",
  5565. "symfony/deprecation-contracts": "^2.1|^3",
  5566. "symfony/filesystem": "^5.4|^6.0",
  5567. "symfony/polyfill-ctype": "~1.8"
  5568. },
  5569. "conflict": {
  5570. "symfony/finder": "<5.4"
  5571. },
  5572. "require-dev": {
  5573. "symfony/event-dispatcher": "^5.4|^6.0",
  5574. "symfony/finder": "^5.4|^6.0",
  5575. "symfony/messenger": "^5.4|^6.0",
  5576. "symfony/service-contracts": "^1.1|^2|^3",
  5577. "symfony/yaml": "^5.4|^6.0"
  5578. },
  5579. "suggest": {
  5580. "symfony/yaml": "To use the yaml reference dumper"
  5581. },
  5582. "type": "library",
  5583. "autoload": {
  5584. "psr-4": {
  5585. "Symfony\\Component\\Config\\": ""
  5586. },
  5587. "exclude-from-classmap": [
  5588. "/Tests/"
  5589. ]
  5590. },
  5591. "notification-url": "https://packagist.org/downloads/",
  5592. "license": [
  5593. "MIT"
  5594. ],
  5595. "authors": [
  5596. {
  5597. "name": "Fabien Potencier",
  5598. "email": "fabien@symfony.com"
  5599. },
  5600. {
  5601. "name": "Symfony Community",
  5602. "homepage": "https://symfony.com/contributors"
  5603. }
  5604. ],
  5605. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  5606. "homepage": "https://symfony.com",
  5607. "support": {
  5608. "source": "https://github.com/symfony/config/tree/v6.1.3"
  5609. },
  5610. "funding": [
  5611. {
  5612. "url": "https://symfony.com/sponsor",
  5613. "type": "custom"
  5614. },
  5615. {
  5616. "url": "https://github.com/fabpot",
  5617. "type": "github"
  5618. },
  5619. {
  5620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5621. "type": "tidelift"
  5622. }
  5623. ],
  5624. "time": "2022-07-20T15:00:40+00:00"
  5625. },
  5626. {
  5627. "name": "symfony/console",
  5628. "version": "v6.1.6",
  5629. "source": {
  5630. "type": "git",
  5631. "url": "https://github.com/symfony/console.git",
  5632. "reference": "7fa3b9cf17363468795e539231a5c91b02b608fc"
  5633. },
  5634. "dist": {
  5635. "type": "zip",
  5636. "url": "https://api.github.com/repos/symfony/console/zipball/7fa3b9cf17363468795e539231a5c91b02b608fc",
  5637. "reference": "7fa3b9cf17363468795e539231a5c91b02b608fc",
  5638. "shasum": ""
  5639. },
  5640. "require": {
  5641. "php": ">=8.1",
  5642. "symfony/deprecation-contracts": "^2.1|^3",
  5643. "symfony/polyfill-mbstring": "~1.0",
  5644. "symfony/service-contracts": "^1.1|^2|^3",
  5645. "symfony/string": "^5.4|^6.0"
  5646. },
  5647. "conflict": {
  5648. "symfony/dependency-injection": "<5.4",
  5649. "symfony/dotenv": "<5.4",
  5650. "symfony/event-dispatcher": "<5.4",
  5651. "symfony/lock": "<5.4",
  5652. "symfony/process": "<5.4"
  5653. },
  5654. "provide": {
  5655. "psr/log-implementation": "1.0|2.0|3.0"
  5656. },
  5657. "require-dev": {
  5658. "psr/log": "^1|^2|^3",
  5659. "symfony/config": "^5.4|^6.0",
  5660. "symfony/dependency-injection": "^5.4|^6.0",
  5661. "symfony/event-dispatcher": "^5.4|^6.0",
  5662. "symfony/lock": "^5.4|^6.0",
  5663. "symfony/process": "^5.4|^6.0",
  5664. "symfony/var-dumper": "^5.4|^6.0"
  5665. },
  5666. "suggest": {
  5667. "psr/log": "For using the console logger",
  5668. "symfony/event-dispatcher": "",
  5669. "symfony/lock": "",
  5670. "symfony/process": ""
  5671. },
  5672. "type": "library",
  5673. "autoload": {
  5674. "psr-4": {
  5675. "Symfony\\Component\\Console\\": ""
  5676. },
  5677. "exclude-from-classmap": [
  5678. "/Tests/"
  5679. ]
  5680. },
  5681. "notification-url": "https://packagist.org/downloads/",
  5682. "license": [
  5683. "MIT"
  5684. ],
  5685. "authors": [
  5686. {
  5687. "name": "Fabien Potencier",
  5688. "email": "fabien@symfony.com"
  5689. },
  5690. {
  5691. "name": "Symfony Community",
  5692. "homepage": "https://symfony.com/contributors"
  5693. }
  5694. ],
  5695. "description": "Eases the creation of beautiful and testable command line interfaces",
  5696. "homepage": "https://symfony.com",
  5697. "keywords": [
  5698. "cli",
  5699. "command line",
  5700. "console",
  5701. "terminal"
  5702. ],
  5703. "support": {
  5704. "source": "https://github.com/symfony/console/tree/v6.1.6"
  5705. },
  5706. "funding": [
  5707. {
  5708. "url": "https://symfony.com/sponsor",
  5709. "type": "custom"
  5710. },
  5711. {
  5712. "url": "https://github.com/fabpot",
  5713. "type": "github"
  5714. },
  5715. {
  5716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5717. "type": "tidelift"
  5718. }
  5719. ],
  5720. "time": "2022-10-07T08:04:03+00:00"
  5721. },
  5722. {
  5723. "name": "symfony/dependency-injection",
  5724. "version": "v6.1.5",
  5725. "source": {
  5726. "type": "git",
  5727. "url": "https://github.com/symfony/dependency-injection.git",
  5728. "reference": "b9c797c9d56afc290d4265854bafd01b4e379240"
  5729. },
  5730. "dist": {
  5731. "type": "zip",
  5732. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/b9c797c9d56afc290d4265854bafd01b4e379240",
  5733. "reference": "b9c797c9d56afc290d4265854bafd01b4e379240",
  5734. "shasum": ""
  5735. },
  5736. "require": {
  5737. "php": ">=8.1",
  5738. "psr/container": "^1.1|^2.0",
  5739. "symfony/deprecation-contracts": "^2.1|^3",
  5740. "symfony/service-contracts": "^1.1.6|^2.0|^3.0"
  5741. },
  5742. "conflict": {
  5743. "ext-psr": "<1.1|>=2",
  5744. "symfony/config": "<6.1",
  5745. "symfony/finder": "<5.4",
  5746. "symfony/proxy-manager-bridge": "<5.4",
  5747. "symfony/yaml": "<5.4"
  5748. },
  5749. "provide": {
  5750. "psr/container-implementation": "1.1|2.0",
  5751. "symfony/service-implementation": "1.1|2.0|3.0"
  5752. },
  5753. "require-dev": {
  5754. "symfony/config": "^6.1",
  5755. "symfony/expression-language": "^5.4|^6.0",
  5756. "symfony/yaml": "^5.4|^6.0"
  5757. },
  5758. "suggest": {
  5759. "symfony/config": "",
  5760. "symfony/expression-language": "For using expressions in service container configuration",
  5761. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  5762. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  5763. "symfony/yaml": ""
  5764. },
  5765. "type": "library",
  5766. "autoload": {
  5767. "psr-4": {
  5768. "Symfony\\Component\\DependencyInjection\\": ""
  5769. },
  5770. "exclude-from-classmap": [
  5771. "/Tests/"
  5772. ]
  5773. },
  5774. "notification-url": "https://packagist.org/downloads/",
  5775. "license": [
  5776. "MIT"
  5777. ],
  5778. "authors": [
  5779. {
  5780. "name": "Fabien Potencier",
  5781. "email": "fabien@symfony.com"
  5782. },
  5783. {
  5784. "name": "Symfony Community",
  5785. "homepage": "https://symfony.com/contributors"
  5786. }
  5787. ],
  5788. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  5789. "homepage": "https://symfony.com",
  5790. "support": {
  5791. "source": "https://github.com/symfony/dependency-injection/tree/v6.1.5"
  5792. },
  5793. "funding": [
  5794. {
  5795. "url": "https://symfony.com/sponsor",
  5796. "type": "custom"
  5797. },
  5798. {
  5799. "url": "https://github.com/fabpot",
  5800. "type": "github"
  5801. },
  5802. {
  5803. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5804. "type": "tidelift"
  5805. }
  5806. ],
  5807. "time": "2022-09-28T16:00:52+00:00"
  5808. },
  5809. {
  5810. "name": "symfony/deprecation-contracts",
  5811. "version": "v3.1.1",
  5812. "source": {
  5813. "type": "git",
  5814. "url": "https://github.com/symfony/deprecation-contracts.git",
  5815. "reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918"
  5816. },
  5817. "dist": {
  5818. "type": "zip",
  5819. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918",
  5820. "reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918",
  5821. "shasum": ""
  5822. },
  5823. "require": {
  5824. "php": ">=8.1"
  5825. },
  5826. "type": "library",
  5827. "extra": {
  5828. "branch-alias": {
  5829. "dev-main": "3.1-dev"
  5830. },
  5831. "thanks": {
  5832. "name": "symfony/contracts",
  5833. "url": "https://github.com/symfony/contracts"
  5834. }
  5835. },
  5836. "autoload": {
  5837. "files": [
  5838. "function.php"
  5839. ]
  5840. },
  5841. "notification-url": "https://packagist.org/downloads/",
  5842. "license": [
  5843. "MIT"
  5844. ],
  5845. "authors": [
  5846. {
  5847. "name": "Nicolas Grekas",
  5848. "email": "p@tchwork.com"
  5849. },
  5850. {
  5851. "name": "Symfony Community",
  5852. "homepage": "https://symfony.com/contributors"
  5853. }
  5854. ],
  5855. "description": "A generic function and convention to trigger deprecation notices",
  5856. "homepage": "https://symfony.com",
  5857. "support": {
  5858. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.1.1"
  5859. },
  5860. "funding": [
  5861. {
  5862. "url": "https://symfony.com/sponsor",
  5863. "type": "custom"
  5864. },
  5865. {
  5866. "url": "https://github.com/fabpot",
  5867. "type": "github"
  5868. },
  5869. {
  5870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5871. "type": "tidelift"
  5872. }
  5873. ],
  5874. "time": "2022-02-25T11:15:52+00:00"
  5875. },
  5876. {
  5877. "name": "symfony/doctrine-bridge",
  5878. "version": "v6.1.6",
  5879. "source": {
  5880. "type": "git",
  5881. "url": "https://github.com/symfony/doctrine-bridge.git",
  5882. "reference": "5db7ac51c40d03d576b2696a6b55975e53a3dfd5"
  5883. },
  5884. "dist": {
  5885. "type": "zip",
  5886. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/5db7ac51c40d03d576b2696a6b55975e53a3dfd5",
  5887. "reference": "5db7ac51c40d03d576b2696a6b55975e53a3dfd5",
  5888. "shasum": ""
  5889. },
  5890. "require": {
  5891. "doctrine/event-manager": "~1.0",
  5892. "doctrine/persistence": "^2|^3",
  5893. "php": ">=8.1",
  5894. "symfony/deprecation-contracts": "^2.1|^3",
  5895. "symfony/polyfill-ctype": "~1.8",
  5896. "symfony/polyfill-mbstring": "~1.0",
  5897. "symfony/service-contracts": "^1.1|^2|^3"
  5898. },
  5899. "conflict": {
  5900. "doctrine/dbal": "<2.13.1",
  5901. "doctrine/lexer": "<1.1",
  5902. "doctrine/orm": "<2.7.4",
  5903. "phpunit/phpunit": "<5.4.3",
  5904. "symfony/cache": "<5.4",
  5905. "symfony/dependency-injection": "<5.4",
  5906. "symfony/form": "<5.4",
  5907. "symfony/http-kernel": "<5.4",
  5908. "symfony/messenger": "<5.4",
  5909. "symfony/property-info": "<5.4",
  5910. "symfony/security-bundle": "<5.4",
  5911. "symfony/security-core": "<6.0",
  5912. "symfony/validator": "<5.4"
  5913. },
  5914. "require-dev": {
  5915. "doctrine/annotations": "^1.10.4",
  5916. "doctrine/collections": "~1.0",
  5917. "doctrine/data-fixtures": "^1.1",
  5918. "doctrine/dbal": "^2.13.1|^3.0",
  5919. "doctrine/orm": "^2.7.4",
  5920. "psr/log": "^1|^2|^3",
  5921. "symfony/cache": "^5.4|^6.0",
  5922. "symfony/config": "^5.4|^6.0",
  5923. "symfony/dependency-injection": "^5.4|^6.0",
  5924. "symfony/doctrine-messenger": "^5.4|^6.0",
  5925. "symfony/expression-language": "^5.4|^6.0",
  5926. "symfony/form": "^5.4.9|^6.0.9",
  5927. "symfony/http-kernel": "^5.4|^6.0",
  5928. "symfony/messenger": "^5.4|^6.0",
  5929. "symfony/property-access": "^5.4|^6.0",
  5930. "symfony/property-info": "^5.4|^6.0",
  5931. "symfony/proxy-manager-bridge": "^5.4|^6.0",
  5932. "symfony/security-core": "^6.0",
  5933. "symfony/stopwatch": "^5.4|^6.0",
  5934. "symfony/translation": "^5.4|^6.0",
  5935. "symfony/uid": "^5.4|^6.0",
  5936. "symfony/validator": "^5.4|^6.0",
  5937. "symfony/var-dumper": "^5.4|^6.0"
  5938. },
  5939. "suggest": {
  5940. "doctrine/data-fixtures": "",
  5941. "doctrine/dbal": "",
  5942. "doctrine/orm": "",
  5943. "symfony/form": "",
  5944. "symfony/property-info": "",
  5945. "symfony/validator": ""
  5946. },
  5947. "type": "symfony-bridge",
  5948. "autoload": {
  5949. "psr-4": {
  5950. "Symfony\\Bridge\\Doctrine\\": ""
  5951. },
  5952. "exclude-from-classmap": [
  5953. "/Tests/"
  5954. ]
  5955. },
  5956. "notification-url": "https://packagist.org/downloads/",
  5957. "license": [
  5958. "MIT"
  5959. ],
  5960. "authors": [
  5961. {
  5962. "name": "Fabien Potencier",
  5963. "email": "fabien@symfony.com"
  5964. },
  5965. {
  5966. "name": "Symfony Community",
  5967. "homepage": "https://symfony.com/contributors"
  5968. }
  5969. ],
  5970. "description": "Provides integration for Doctrine with various Symfony components",
  5971. "homepage": "https://symfony.com",
  5972. "support": {
  5973. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.1.6"
  5974. },
  5975. "funding": [
  5976. {
  5977. "url": "https://symfony.com/sponsor",
  5978. "type": "custom"
  5979. },
  5980. {
  5981. "url": "https://github.com/fabpot",
  5982. "type": "github"
  5983. },
  5984. {
  5985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5986. "type": "tidelift"
  5987. }
  5988. ],
  5989. "time": "2022-10-10T09:34:31+00:00"
  5990. },
  5991. {
  5992. "name": "symfony/doctrine-messenger",
  5993. "version": "v6.1.4",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/symfony/doctrine-messenger.git",
  5997. "reference": "b7587ed78b788a65958592ec5dccd226a0f6fd8e"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/b7587ed78b788a65958592ec5dccd226a0f6fd8e",
  6002. "reference": "b7587ed78b788a65958592ec5dccd226a0f6fd8e",
  6003. "shasum": ""
  6004. },
  6005. "require": {
  6006. "doctrine/dbal": "^2.13|^3.0",
  6007. "php": ">=8.1",
  6008. "symfony/messenger": "^5.4|^6.0",
  6009. "symfony/service-contracts": "^1.1|^2|^3"
  6010. },
  6011. "conflict": {
  6012. "doctrine/persistence": "<1.3"
  6013. },
  6014. "require-dev": {
  6015. "doctrine/persistence": "^1.3|^2|^3",
  6016. "symfony/property-access": "^5.4|^6.0",
  6017. "symfony/serializer": "^5.4|^6.0"
  6018. },
  6019. "type": "symfony-messenger-bridge",
  6020. "autoload": {
  6021. "psr-4": {
  6022. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  6023. },
  6024. "exclude-from-classmap": [
  6025. "/Tests/"
  6026. ]
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "MIT"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "Fabien Potencier",
  6035. "email": "fabien@symfony.com"
  6036. },
  6037. {
  6038. "name": "Symfony Community",
  6039. "homepage": "https://symfony.com/contributors"
  6040. }
  6041. ],
  6042. "description": "Symfony Doctrine Messenger Bridge",
  6043. "homepage": "https://symfony.com",
  6044. "support": {
  6045. "source": "https://github.com/symfony/doctrine-messenger/tree/v6.1.4"
  6046. },
  6047. "funding": [
  6048. {
  6049. "url": "https://symfony.com/sponsor",
  6050. "type": "custom"
  6051. },
  6052. {
  6053. "url": "https://github.com/fabpot",
  6054. "type": "github"
  6055. },
  6056. {
  6057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6058. "type": "tidelift"
  6059. }
  6060. ],
  6061. "time": "2022-08-12T13:09:07+00:00"
  6062. },
  6063. {
  6064. "name": "symfony/dom-crawler",
  6065. "version": "v6.1.4",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/symfony/dom-crawler.git",
  6069. "reference": "8cb4c6e6c8d30c26f70529ed5e50d79a09576c0c"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8cb4c6e6c8d30c26f70529ed5e50d79a09576c0c",
  6074. "reference": "8cb4c6e6c8d30c26f70529ed5e50d79a09576c0c",
  6075. "shasum": ""
  6076. },
  6077. "require": {
  6078. "masterminds/html5": "^2.6",
  6079. "php": ">=8.1",
  6080. "symfony/polyfill-ctype": "~1.8",
  6081. "symfony/polyfill-mbstring": "~1.0"
  6082. },
  6083. "require-dev": {
  6084. "symfony/css-selector": "^5.4|^6.0"
  6085. },
  6086. "suggest": {
  6087. "symfony/css-selector": ""
  6088. },
  6089. "type": "library",
  6090. "autoload": {
  6091. "psr-4": {
  6092. "Symfony\\Component\\DomCrawler\\": ""
  6093. },
  6094. "exclude-from-classmap": [
  6095. "/Tests/"
  6096. ]
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "MIT"
  6101. ],
  6102. "authors": [
  6103. {
  6104. "name": "Fabien Potencier",
  6105. "email": "fabien@symfony.com"
  6106. },
  6107. {
  6108. "name": "Symfony Community",
  6109. "homepage": "https://symfony.com/contributors"
  6110. }
  6111. ],
  6112. "description": "Eases DOM navigation for HTML and XML documents",
  6113. "homepage": "https://symfony.com",
  6114. "support": {
  6115. "source": "https://github.com/symfony/dom-crawler/tree/v6.1.4"
  6116. },
  6117. "funding": [
  6118. {
  6119. "url": "https://symfony.com/sponsor",
  6120. "type": "custom"
  6121. },
  6122. {
  6123. "url": "https://github.com/fabpot",
  6124. "type": "github"
  6125. },
  6126. {
  6127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6128. "type": "tidelift"
  6129. }
  6130. ],
  6131. "time": "2022-08-04T19:19:00+00:00"
  6132. },
  6133. {
  6134. "name": "symfony/dotenv",
  6135. "version": "v6.1.0",
  6136. "source": {
  6137. "type": "git",
  6138. "url": "https://github.com/symfony/dotenv.git",
  6139. "reference": "568c11bcedf419e7e61f663912c3547b54de51df"
  6140. },
  6141. "dist": {
  6142. "type": "zip",
  6143. "url": "https://api.github.com/repos/symfony/dotenv/zipball/568c11bcedf419e7e61f663912c3547b54de51df",
  6144. "reference": "568c11bcedf419e7e61f663912c3547b54de51df",
  6145. "shasum": ""
  6146. },
  6147. "require": {
  6148. "php": ">=8.1"
  6149. },
  6150. "conflict": {
  6151. "symfony/console": "<5.4"
  6152. },
  6153. "require-dev": {
  6154. "symfony/console": "^5.4|^6.0",
  6155. "symfony/process": "^5.4|^6.0"
  6156. },
  6157. "type": "library",
  6158. "autoload": {
  6159. "psr-4": {
  6160. "Symfony\\Component\\Dotenv\\": ""
  6161. },
  6162. "exclude-from-classmap": [
  6163. "/Tests/"
  6164. ]
  6165. },
  6166. "notification-url": "https://packagist.org/downloads/",
  6167. "license": [
  6168. "MIT"
  6169. ],
  6170. "authors": [
  6171. {
  6172. "name": "Fabien Potencier",
  6173. "email": "fabien@symfony.com"
  6174. },
  6175. {
  6176. "name": "Symfony Community",
  6177. "homepage": "https://symfony.com/contributors"
  6178. }
  6179. ],
  6180. "description": "Registers environment variables from a .env file",
  6181. "homepage": "https://symfony.com",
  6182. "keywords": [
  6183. "dotenv",
  6184. "env",
  6185. "environment"
  6186. ],
  6187. "support": {
  6188. "source": "https://github.com/symfony/dotenv/tree/v6.1.0"
  6189. },
  6190. "funding": [
  6191. {
  6192. "url": "https://symfony.com/sponsor",
  6193. "type": "custom"
  6194. },
  6195. {
  6196. "url": "https://github.com/fabpot",
  6197. "type": "github"
  6198. },
  6199. {
  6200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6201. "type": "tidelift"
  6202. }
  6203. ],
  6204. "time": "2022-04-01T07:15:35+00:00"
  6205. },
  6206. {
  6207. "name": "symfony/error-handler",
  6208. "version": "v6.1.6",
  6209. "source": {
  6210. "type": "git",
  6211. "url": "https://github.com/symfony/error-handler.git",
  6212. "reference": "49f718e41f1b6f0fd5730895ca5b1c37defd828d"
  6213. },
  6214. "dist": {
  6215. "type": "zip",
  6216. "url": "https://api.github.com/repos/symfony/error-handler/zipball/49f718e41f1b6f0fd5730895ca5b1c37defd828d",
  6217. "reference": "49f718e41f1b6f0fd5730895ca5b1c37defd828d",
  6218. "shasum": ""
  6219. },
  6220. "require": {
  6221. "php": ">=8.1",
  6222. "psr/log": "^1|^2|^3",
  6223. "symfony/var-dumper": "^5.4|^6.0"
  6224. },
  6225. "require-dev": {
  6226. "symfony/deprecation-contracts": "^2.1|^3",
  6227. "symfony/http-kernel": "^5.4|^6.0",
  6228. "symfony/serializer": "^5.4|^6.0"
  6229. },
  6230. "bin": [
  6231. "Resources/bin/patch-type-declarations"
  6232. ],
  6233. "type": "library",
  6234. "autoload": {
  6235. "psr-4": {
  6236. "Symfony\\Component\\ErrorHandler\\": ""
  6237. },
  6238. "exclude-from-classmap": [
  6239. "/Tests/"
  6240. ]
  6241. },
  6242. "notification-url": "https://packagist.org/downloads/",
  6243. "license": [
  6244. "MIT"
  6245. ],
  6246. "authors": [
  6247. {
  6248. "name": "Fabien Potencier",
  6249. "email": "fabien@symfony.com"
  6250. },
  6251. {
  6252. "name": "Symfony Community",
  6253. "homepage": "https://symfony.com/contributors"
  6254. }
  6255. ],
  6256. "description": "Provides tools to manage errors and ease debugging PHP code",
  6257. "homepage": "https://symfony.com",
  6258. "support": {
  6259. "source": "https://github.com/symfony/error-handler/tree/v6.1.6"
  6260. },
  6261. "funding": [
  6262. {
  6263. "url": "https://symfony.com/sponsor",
  6264. "type": "custom"
  6265. },
  6266. {
  6267. "url": "https://github.com/fabpot",
  6268. "type": "github"
  6269. },
  6270. {
  6271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6272. "type": "tidelift"
  6273. }
  6274. ],
  6275. "time": "2022-10-07T08:04:03+00:00"
  6276. },
  6277. {
  6278. "name": "symfony/event-dispatcher",
  6279. "version": "v6.1.0",
  6280. "source": {
  6281. "type": "git",
  6282. "url": "https://github.com/symfony/event-dispatcher.git",
  6283. "reference": "a0449a7ad7daa0f7c0acd508259f80544ab5a347"
  6284. },
  6285. "dist": {
  6286. "type": "zip",
  6287. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a0449a7ad7daa0f7c0acd508259f80544ab5a347",
  6288. "reference": "a0449a7ad7daa0f7c0acd508259f80544ab5a347",
  6289. "shasum": ""
  6290. },
  6291. "require": {
  6292. "php": ">=8.1",
  6293. "symfony/event-dispatcher-contracts": "^2|^3"
  6294. },
  6295. "conflict": {
  6296. "symfony/dependency-injection": "<5.4"
  6297. },
  6298. "provide": {
  6299. "psr/event-dispatcher-implementation": "1.0",
  6300. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6301. },
  6302. "require-dev": {
  6303. "psr/log": "^1|^2|^3",
  6304. "symfony/config": "^5.4|^6.0",
  6305. "symfony/dependency-injection": "^5.4|^6.0",
  6306. "symfony/error-handler": "^5.4|^6.0",
  6307. "symfony/expression-language": "^5.4|^6.0",
  6308. "symfony/http-foundation": "^5.4|^6.0",
  6309. "symfony/service-contracts": "^1.1|^2|^3",
  6310. "symfony/stopwatch": "^5.4|^6.0"
  6311. },
  6312. "suggest": {
  6313. "symfony/dependency-injection": "",
  6314. "symfony/http-kernel": ""
  6315. },
  6316. "type": "library",
  6317. "autoload": {
  6318. "psr-4": {
  6319. "Symfony\\Component\\EventDispatcher\\": ""
  6320. },
  6321. "exclude-from-classmap": [
  6322. "/Tests/"
  6323. ]
  6324. },
  6325. "notification-url": "https://packagist.org/downloads/",
  6326. "license": [
  6327. "MIT"
  6328. ],
  6329. "authors": [
  6330. {
  6331. "name": "Fabien Potencier",
  6332. "email": "fabien@symfony.com"
  6333. },
  6334. {
  6335. "name": "Symfony Community",
  6336. "homepage": "https://symfony.com/contributors"
  6337. }
  6338. ],
  6339. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6340. "homepage": "https://symfony.com",
  6341. "support": {
  6342. "source": "https://github.com/symfony/event-dispatcher/tree/v6.1.0"
  6343. },
  6344. "funding": [
  6345. {
  6346. "url": "https://symfony.com/sponsor",
  6347. "type": "custom"
  6348. },
  6349. {
  6350. "url": "https://github.com/fabpot",
  6351. "type": "github"
  6352. },
  6353. {
  6354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6355. "type": "tidelift"
  6356. }
  6357. ],
  6358. "time": "2022-05-05T16:51:07+00:00"
  6359. },
  6360. {
  6361. "name": "symfony/event-dispatcher-contracts",
  6362. "version": "v3.1.1",
  6363. "source": {
  6364. "type": "git",
  6365. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6366. "reference": "02ff5eea2f453731cfbc6bc215e456b781480448"
  6367. },
  6368. "dist": {
  6369. "type": "zip",
  6370. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/02ff5eea2f453731cfbc6bc215e456b781480448",
  6371. "reference": "02ff5eea2f453731cfbc6bc215e456b781480448",
  6372. "shasum": ""
  6373. },
  6374. "require": {
  6375. "php": ">=8.1",
  6376. "psr/event-dispatcher": "^1"
  6377. },
  6378. "suggest": {
  6379. "symfony/event-dispatcher-implementation": ""
  6380. },
  6381. "type": "library",
  6382. "extra": {
  6383. "branch-alias": {
  6384. "dev-main": "3.1-dev"
  6385. },
  6386. "thanks": {
  6387. "name": "symfony/contracts",
  6388. "url": "https://github.com/symfony/contracts"
  6389. }
  6390. },
  6391. "autoload": {
  6392. "psr-4": {
  6393. "Symfony\\Contracts\\EventDispatcher\\": ""
  6394. }
  6395. },
  6396. "notification-url": "https://packagist.org/downloads/",
  6397. "license": [
  6398. "MIT"
  6399. ],
  6400. "authors": [
  6401. {
  6402. "name": "Nicolas Grekas",
  6403. "email": "p@tchwork.com"
  6404. },
  6405. {
  6406. "name": "Symfony Community",
  6407. "homepage": "https://symfony.com/contributors"
  6408. }
  6409. ],
  6410. "description": "Generic abstractions related to dispatching event",
  6411. "homepage": "https://symfony.com",
  6412. "keywords": [
  6413. "abstractions",
  6414. "contracts",
  6415. "decoupling",
  6416. "interfaces",
  6417. "interoperability",
  6418. "standards"
  6419. ],
  6420. "support": {
  6421. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.1.1"
  6422. },
  6423. "funding": [
  6424. {
  6425. "url": "https://symfony.com/sponsor",
  6426. "type": "custom"
  6427. },
  6428. {
  6429. "url": "https://github.com/fabpot",
  6430. "type": "github"
  6431. },
  6432. {
  6433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6434. "type": "tidelift"
  6435. }
  6436. ],
  6437. "time": "2022-02-25T11:15:52+00:00"
  6438. },
  6439. {
  6440. "name": "symfony/expression-language",
  6441. "version": "v6.1.6",
  6442. "source": {
  6443. "type": "git",
  6444. "url": "https://github.com/symfony/expression-language.git",
  6445. "reference": "d1538560c075007d3dfd1f8e3a05e43a5ff13fd6"
  6446. },
  6447. "dist": {
  6448. "type": "zip",
  6449. "url": "https://api.github.com/repos/symfony/expression-language/zipball/d1538560c075007d3dfd1f8e3a05e43a5ff13fd6",
  6450. "reference": "d1538560c075007d3dfd1f8e3a05e43a5ff13fd6",
  6451. "shasum": ""
  6452. },
  6453. "require": {
  6454. "php": ">=8.1",
  6455. "symfony/cache": "^5.4|^6.0",
  6456. "symfony/service-contracts": "^1.1|^2|^3"
  6457. },
  6458. "type": "library",
  6459. "autoload": {
  6460. "psr-4": {
  6461. "Symfony\\Component\\ExpressionLanguage\\": ""
  6462. },
  6463. "exclude-from-classmap": [
  6464. "/Tests/"
  6465. ]
  6466. },
  6467. "notification-url": "https://packagist.org/downloads/",
  6468. "license": [
  6469. "MIT"
  6470. ],
  6471. "authors": [
  6472. {
  6473. "name": "Fabien Potencier",
  6474. "email": "fabien@symfony.com"
  6475. },
  6476. {
  6477. "name": "Symfony Community",
  6478. "homepage": "https://symfony.com/contributors"
  6479. }
  6480. ],
  6481. "description": "Provides an engine that can compile and evaluate expressions",
  6482. "homepage": "https://symfony.com",
  6483. "support": {
  6484. "source": "https://github.com/symfony/expression-language/tree/v6.1.6"
  6485. },
  6486. "funding": [
  6487. {
  6488. "url": "https://symfony.com/sponsor",
  6489. "type": "custom"
  6490. },
  6491. {
  6492. "url": "https://github.com/fabpot",
  6493. "type": "github"
  6494. },
  6495. {
  6496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6497. "type": "tidelift"
  6498. }
  6499. ],
  6500. "time": "2022-10-07T08:04:03+00:00"
  6501. },
  6502. {
  6503. "name": "symfony/filesystem",
  6504. "version": "v6.1.5",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/symfony/filesystem.git",
  6508. "reference": "4d216a2beef096edf040a070117c39ca2abce307"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d216a2beef096edf040a070117c39ca2abce307",
  6513. "reference": "4d216a2beef096edf040a070117c39ca2abce307",
  6514. "shasum": ""
  6515. },
  6516. "require": {
  6517. "php": ">=8.1",
  6518. "symfony/polyfill-ctype": "~1.8",
  6519. "symfony/polyfill-mbstring": "~1.8"
  6520. },
  6521. "type": "library",
  6522. "autoload": {
  6523. "psr-4": {
  6524. "Symfony\\Component\\Filesystem\\": ""
  6525. },
  6526. "exclude-from-classmap": [
  6527. "/Tests/"
  6528. ]
  6529. },
  6530. "notification-url": "https://packagist.org/downloads/",
  6531. "license": [
  6532. "MIT"
  6533. ],
  6534. "authors": [
  6535. {
  6536. "name": "Fabien Potencier",
  6537. "email": "fabien@symfony.com"
  6538. },
  6539. {
  6540. "name": "Symfony Community",
  6541. "homepage": "https://symfony.com/contributors"
  6542. }
  6543. ],
  6544. "description": "Provides basic utilities for the filesystem",
  6545. "homepage": "https://symfony.com",
  6546. "support": {
  6547. "source": "https://github.com/symfony/filesystem/tree/v6.1.5"
  6548. },
  6549. "funding": [
  6550. {
  6551. "url": "https://symfony.com/sponsor",
  6552. "type": "custom"
  6553. },
  6554. {
  6555. "url": "https://github.com/fabpot",
  6556. "type": "github"
  6557. },
  6558. {
  6559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6560. "type": "tidelift"
  6561. }
  6562. ],
  6563. "time": "2022-09-21T20:29:40+00:00"
  6564. },
  6565. {
  6566. "name": "symfony/finder",
  6567. "version": "v6.1.3",
  6568. "source": {
  6569. "type": "git",
  6570. "url": "https://github.com/symfony/finder.git",
  6571. "reference": "39696bff2c2970b3779a5cac7bf9f0b88fc2b709"
  6572. },
  6573. "dist": {
  6574. "type": "zip",
  6575. "url": "https://api.github.com/repos/symfony/finder/zipball/39696bff2c2970b3779a5cac7bf9f0b88fc2b709",
  6576. "reference": "39696bff2c2970b3779a5cac7bf9f0b88fc2b709",
  6577. "shasum": ""
  6578. },
  6579. "require": {
  6580. "php": ">=8.1"
  6581. },
  6582. "require-dev": {
  6583. "symfony/filesystem": "^6.0"
  6584. },
  6585. "type": "library",
  6586. "autoload": {
  6587. "psr-4": {
  6588. "Symfony\\Component\\Finder\\": ""
  6589. },
  6590. "exclude-from-classmap": [
  6591. "/Tests/"
  6592. ]
  6593. },
  6594. "notification-url": "https://packagist.org/downloads/",
  6595. "license": [
  6596. "MIT"
  6597. ],
  6598. "authors": [
  6599. {
  6600. "name": "Fabien Potencier",
  6601. "email": "fabien@symfony.com"
  6602. },
  6603. {
  6604. "name": "Symfony Community",
  6605. "homepage": "https://symfony.com/contributors"
  6606. }
  6607. ],
  6608. "description": "Finds files and directories via an intuitive fluent interface",
  6609. "homepage": "https://symfony.com",
  6610. "support": {
  6611. "source": "https://github.com/symfony/finder/tree/v6.1.3"
  6612. },
  6613. "funding": [
  6614. {
  6615. "url": "https://symfony.com/sponsor",
  6616. "type": "custom"
  6617. },
  6618. {
  6619. "url": "https://github.com/fabpot",
  6620. "type": "github"
  6621. },
  6622. {
  6623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6624. "type": "tidelift"
  6625. }
  6626. ],
  6627. "time": "2022-07-29T07:42:06+00:00"
  6628. },
  6629. {
  6630. "name": "symfony/flex",
  6631. "version": "v1.19.3",
  6632. "source": {
  6633. "type": "git",
  6634. "url": "https://github.com/symfony/flex.git",
  6635. "reference": "ab0453b16029e131c112df1a76e59eb2a47e1f67"
  6636. },
  6637. "dist": {
  6638. "type": "zip",
  6639. "url": "https://api.github.com/repos/symfony/flex/zipball/ab0453b16029e131c112df1a76e59eb2a47e1f67",
  6640. "reference": "ab0453b16029e131c112df1a76e59eb2a47e1f67",
  6641. "shasum": ""
  6642. },
  6643. "require": {
  6644. "composer-plugin-api": "^1.0|^2.0",
  6645. "php": ">=7.1"
  6646. },
  6647. "require-dev": {
  6648. "composer/composer": "^1.0.2|^2.0",
  6649. "symfony/dotenv": "^4.4|^5.0|^6.0",
  6650. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6651. "symfony/phpunit-bridge": "^4.4.12|^5.0|^6.0",
  6652. "symfony/process": "^4.4|^5.0|^6.0"
  6653. },
  6654. "type": "composer-plugin",
  6655. "extra": {
  6656. "class": "Symfony\\Flex\\Flex"
  6657. },
  6658. "autoload": {
  6659. "psr-4": {
  6660. "Symfony\\Flex\\": "src"
  6661. }
  6662. },
  6663. "notification-url": "https://packagist.org/downloads/",
  6664. "license": [
  6665. "MIT"
  6666. ],
  6667. "authors": [
  6668. {
  6669. "name": "Fabien Potencier",
  6670. "email": "fabien.potencier@gmail.com"
  6671. }
  6672. ],
  6673. "description": "Composer plugin for Symfony",
  6674. "support": {
  6675. "issues": "https://github.com/symfony/flex/issues",
  6676. "source": "https://github.com/symfony/flex/tree/v1.19.3"
  6677. },
  6678. "funding": [
  6679. {
  6680. "url": "https://symfony.com/sponsor",
  6681. "type": "custom"
  6682. },
  6683. {
  6684. "url": "https://github.com/fabpot",
  6685. "type": "github"
  6686. },
  6687. {
  6688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6689. "type": "tidelift"
  6690. }
  6691. ],
  6692. "time": "2022-08-07T09:39:08+00:00"
  6693. },
  6694. {
  6695. "name": "symfony/form",
  6696. "version": "v6.1.5",
  6697. "source": {
  6698. "type": "git",
  6699. "url": "https://github.com/symfony/form.git",
  6700. "reference": "176a358d54c70ec70708c7cbb4e8ac93cc138e6c"
  6701. },
  6702. "dist": {
  6703. "type": "zip",
  6704. "url": "https://api.github.com/repos/symfony/form/zipball/176a358d54c70ec70708c7cbb4e8ac93cc138e6c",
  6705. "reference": "176a358d54c70ec70708c7cbb4e8ac93cc138e6c",
  6706. "shasum": ""
  6707. },
  6708. "require": {
  6709. "php": ">=8.1",
  6710. "symfony/deprecation-contracts": "^2.1|^3",
  6711. "symfony/event-dispatcher": "^5.4|^6.0",
  6712. "symfony/options-resolver": "^5.4|^6.0",
  6713. "symfony/polyfill-ctype": "~1.8",
  6714. "symfony/polyfill-intl-icu": "^1.21",
  6715. "symfony/polyfill-mbstring": "~1.0",
  6716. "symfony/property-access": "^5.4|^6.0",
  6717. "symfony/service-contracts": "^1.1|^2|^3"
  6718. },
  6719. "conflict": {
  6720. "phpunit/phpunit": "<5.4.3",
  6721. "symfony/console": "<5.4",
  6722. "symfony/dependency-injection": "<5.4",
  6723. "symfony/doctrine-bridge": "<5.4",
  6724. "symfony/error-handler": "<5.4",
  6725. "symfony/framework-bundle": "<5.4",
  6726. "symfony/http-kernel": "<5.4",
  6727. "symfony/translation": "<5.4",
  6728. "symfony/translation-contracts": "<1.1.7",
  6729. "symfony/twig-bridge": "<5.4"
  6730. },
  6731. "require-dev": {
  6732. "doctrine/collections": "~1.0",
  6733. "symfony/config": "^5.4|^6.0",
  6734. "symfony/console": "^5.4|^6.0",
  6735. "symfony/dependency-injection": "^5.4|^6.0",
  6736. "symfony/expression-language": "^5.4|^6.0",
  6737. "symfony/html-sanitizer": "^6.1",
  6738. "symfony/http-foundation": "^5.4|^6.0",
  6739. "symfony/http-kernel": "^5.4|^6.0",
  6740. "symfony/intl": "^5.4|^6.0",
  6741. "symfony/security-csrf": "^5.4|^6.0",
  6742. "symfony/translation": "^5.4|^6.0",
  6743. "symfony/uid": "^5.4|^6.0",
  6744. "symfony/validator": "^5.4|^6.0",
  6745. "symfony/var-dumper": "^5.4|^6.0"
  6746. },
  6747. "suggest": {
  6748. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  6749. "symfony/twig-bridge": "For templating with Twig.",
  6750. "symfony/validator": "For form validation."
  6751. },
  6752. "type": "library",
  6753. "autoload": {
  6754. "psr-4": {
  6755. "Symfony\\Component\\Form\\": ""
  6756. },
  6757. "exclude-from-classmap": [
  6758. "/Tests/"
  6759. ]
  6760. },
  6761. "notification-url": "https://packagist.org/downloads/",
  6762. "license": [
  6763. "MIT"
  6764. ],
  6765. "authors": [
  6766. {
  6767. "name": "Fabien Potencier",
  6768. "email": "fabien@symfony.com"
  6769. },
  6770. {
  6771. "name": "Symfony Community",
  6772. "homepage": "https://symfony.com/contributors"
  6773. }
  6774. ],
  6775. "description": "Allows to easily create, process and reuse HTML forms",
  6776. "homepage": "https://symfony.com",
  6777. "support": {
  6778. "source": "https://github.com/symfony/form/tree/v6.1.5"
  6779. },
  6780. "funding": [
  6781. {
  6782. "url": "https://symfony.com/sponsor",
  6783. "type": "custom"
  6784. },
  6785. {
  6786. "url": "https://github.com/fabpot",
  6787. "type": "github"
  6788. },
  6789. {
  6790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6791. "type": "tidelift"
  6792. }
  6793. ],
  6794. "time": "2022-09-09T09:34:27+00:00"
  6795. },
  6796. {
  6797. "name": "symfony/framework-bundle",
  6798. "version": "v6.1.6",
  6799. "source": {
  6800. "type": "git",
  6801. "url": "https://github.com/symfony/framework-bundle.git",
  6802. "reference": "b79e5866a8293de00c8436836c2038ec31916ee7"
  6803. },
  6804. "dist": {
  6805. "type": "zip",
  6806. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/b79e5866a8293de00c8436836c2038ec31916ee7",
  6807. "reference": "b79e5866a8293de00c8436836c2038ec31916ee7",
  6808. "shasum": ""
  6809. },
  6810. "require": {
  6811. "composer-runtime-api": ">=2.1",
  6812. "ext-xml": "*",
  6813. "php": ">=8.1",
  6814. "symfony/cache": "^5.4|^6.0",
  6815. "symfony/config": "^6.1",
  6816. "symfony/dependency-injection": "^6.1",
  6817. "symfony/deprecation-contracts": "^2.1|^3",
  6818. "symfony/error-handler": "^6.1",
  6819. "symfony/event-dispatcher": "^5.4|^6.0",
  6820. "symfony/filesystem": "^5.4|^6.0",
  6821. "symfony/finder": "^5.4|^6.0",
  6822. "symfony/http-foundation": "^5.4|^6.0",
  6823. "symfony/http-kernel": "^6.1",
  6824. "symfony/polyfill-mbstring": "~1.0",
  6825. "symfony/routing": "^5.4|^6.0"
  6826. },
  6827. "conflict": {
  6828. "doctrine/annotations": "<1.13.1",
  6829. "doctrine/persistence": "<1.3",
  6830. "phpdocumentor/reflection-docblock": "<3.2.2",
  6831. "phpdocumentor/type-resolver": "<1.4.0",
  6832. "phpunit/phpunit": "<5.4.3",
  6833. "symfony/asset": "<5.4",
  6834. "symfony/console": "<5.4",
  6835. "symfony/dom-crawler": "<5.4",
  6836. "symfony/dotenv": "<5.4",
  6837. "symfony/form": "<5.4",
  6838. "symfony/http-client": "<5.4",
  6839. "symfony/lock": "<5.4",
  6840. "symfony/mailer": "<5.4",
  6841. "symfony/messenger": "<5.4",
  6842. "symfony/mime": "<5.4",
  6843. "symfony/property-access": "<5.4",
  6844. "symfony/property-info": "<5.4",
  6845. "symfony/security-core": "<5.4",
  6846. "symfony/security-csrf": "<5.4",
  6847. "symfony/serializer": "<6.1",
  6848. "symfony/stopwatch": "<5.4",
  6849. "symfony/translation": "<5.4",
  6850. "symfony/twig-bridge": "<5.4",
  6851. "symfony/twig-bundle": "<5.4",
  6852. "symfony/validator": "<5.4",
  6853. "symfony/web-profiler-bundle": "<5.4",
  6854. "symfony/workflow": "<5.4"
  6855. },
  6856. "require-dev": {
  6857. "doctrine/annotations": "^1.13.1",
  6858. "doctrine/persistence": "^1.3|^2|^3",
  6859. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6860. "symfony/asset": "^5.4|^6.0",
  6861. "symfony/browser-kit": "^5.4|^6.0",
  6862. "symfony/console": "^5.4.9|^6.0.9",
  6863. "symfony/css-selector": "^5.4|^6.0",
  6864. "symfony/dom-crawler": "^5.4|^6.0",
  6865. "symfony/dotenv": "^5.4|^6.0",
  6866. "symfony/expression-language": "^5.4|^6.0",
  6867. "symfony/form": "^5.4|^6.0",
  6868. "symfony/html-sanitizer": "^6.1",
  6869. "symfony/http-client": "^5.4|^6.0",
  6870. "symfony/lock": "^5.4|^6.0",
  6871. "symfony/mailer": "^5.4|^6.0",
  6872. "symfony/messenger": "^5.4|^6.0",
  6873. "symfony/mime": "^5.4|^6.0",
  6874. "symfony/notifier": "^5.4|^6.0",
  6875. "symfony/polyfill-intl-icu": "~1.0",
  6876. "symfony/process": "^5.4|^6.0",
  6877. "symfony/property-info": "^5.4|^6.0",
  6878. "symfony/rate-limiter": "^5.4|^6.0",
  6879. "symfony/security-bundle": "^5.4|^6.0",
  6880. "symfony/semaphore": "^5.4|^6.0",
  6881. "symfony/serializer": "^6.1",
  6882. "symfony/stopwatch": "^5.4|^6.0",
  6883. "symfony/string": "^5.4|^6.0",
  6884. "symfony/translation": "^5.4|^6.0",
  6885. "symfony/twig-bundle": "^5.4|^6.0",
  6886. "symfony/uid": "^5.4|^6.0",
  6887. "symfony/validator": "^5.4|^6.0",
  6888. "symfony/web-link": "^5.4|^6.0",
  6889. "symfony/workflow": "^5.4|^6.0",
  6890. "symfony/yaml": "^5.4|^6.0",
  6891. "twig/twig": "^2.10|^3.0"
  6892. },
  6893. "suggest": {
  6894. "ext-apcu": "For best performance of the system caches",
  6895. "symfony/console": "For using the console commands",
  6896. "symfony/form": "For using forms",
  6897. "symfony/property-info": "For using the property_info service",
  6898. "symfony/serializer": "For using the serializer service",
  6899. "symfony/validator": "For using validation",
  6900. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  6901. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  6902. },
  6903. "type": "symfony-bundle",
  6904. "autoload": {
  6905. "psr-4": {
  6906. "Symfony\\Bundle\\FrameworkBundle\\": ""
  6907. },
  6908. "exclude-from-classmap": [
  6909. "/Tests/"
  6910. ]
  6911. },
  6912. "notification-url": "https://packagist.org/downloads/",
  6913. "license": [
  6914. "MIT"
  6915. ],
  6916. "authors": [
  6917. {
  6918. "name": "Fabien Potencier",
  6919. "email": "fabien@symfony.com"
  6920. },
  6921. {
  6922. "name": "Symfony Community",
  6923. "homepage": "https://symfony.com/contributors"
  6924. }
  6925. ],
  6926. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  6927. "homepage": "https://symfony.com",
  6928. "support": {
  6929. "source": "https://github.com/symfony/framework-bundle/tree/v6.1.6"
  6930. },
  6931. "funding": [
  6932. {
  6933. "url": "https://symfony.com/sponsor",
  6934. "type": "custom"
  6935. },
  6936. {
  6937. "url": "https://github.com/fabpot",
  6938. "type": "github"
  6939. },
  6940. {
  6941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6942. "type": "tidelift"
  6943. }
  6944. ],
  6945. "time": "2022-10-07T08:04:03+00:00"
  6946. },
  6947. {
  6948. "name": "symfony/http-client",
  6949. "version": "v6.1.6",
  6950. "source": {
  6951. "type": "git",
  6952. "url": "https://github.com/symfony/http-client.git",
  6953. "reference": "c8c887f4813370550147afd27d9eb8a8523e53b2"
  6954. },
  6955. "dist": {
  6956. "type": "zip",
  6957. "url": "https://api.github.com/repos/symfony/http-client/zipball/c8c887f4813370550147afd27d9eb8a8523e53b2",
  6958. "reference": "c8c887f4813370550147afd27d9eb8a8523e53b2",
  6959. "shasum": ""
  6960. },
  6961. "require": {
  6962. "php": ">=8.1",
  6963. "psr/log": "^1|^2|^3",
  6964. "symfony/http-client-contracts": "^3",
  6965. "symfony/service-contracts": "^1.0|^2|^3"
  6966. },
  6967. "provide": {
  6968. "php-http/async-client-implementation": "*",
  6969. "php-http/client-implementation": "*",
  6970. "psr/http-client-implementation": "1.0",
  6971. "symfony/http-client-implementation": "3.0"
  6972. },
  6973. "require-dev": {
  6974. "amphp/amp": "^2.5",
  6975. "amphp/http-client": "^4.2.1",
  6976. "amphp/http-tunnel": "^1.0",
  6977. "amphp/socket": "^1.1",
  6978. "guzzlehttp/promises": "^1.4",
  6979. "nyholm/psr7": "^1.0",
  6980. "php-http/httplug": "^1.0|^2.0",
  6981. "psr/http-client": "^1.0",
  6982. "symfony/dependency-injection": "^5.4|^6.0",
  6983. "symfony/http-kernel": "^5.4|^6.0",
  6984. "symfony/process": "^5.4|^6.0",
  6985. "symfony/stopwatch": "^5.4|^6.0"
  6986. },
  6987. "type": "library",
  6988. "autoload": {
  6989. "psr-4": {
  6990. "Symfony\\Component\\HttpClient\\": ""
  6991. },
  6992. "exclude-from-classmap": [
  6993. "/Tests/"
  6994. ]
  6995. },
  6996. "notification-url": "https://packagist.org/downloads/",
  6997. "license": [
  6998. "MIT"
  6999. ],
  7000. "authors": [
  7001. {
  7002. "name": "Nicolas Grekas",
  7003. "email": "p@tchwork.com"
  7004. },
  7005. {
  7006. "name": "Symfony Community",
  7007. "homepage": "https://symfony.com/contributors"
  7008. }
  7009. ],
  7010. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  7011. "homepage": "https://symfony.com",
  7012. "support": {
  7013. "source": "https://github.com/symfony/http-client/tree/v6.1.6"
  7014. },
  7015. "funding": [
  7016. {
  7017. "url": "https://symfony.com/sponsor",
  7018. "type": "custom"
  7019. },
  7020. {
  7021. "url": "https://github.com/fabpot",
  7022. "type": "github"
  7023. },
  7024. {
  7025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7026. "type": "tidelift"
  7027. }
  7028. ],
  7029. "time": "2022-10-12T05:10:31+00:00"
  7030. },
  7031. {
  7032. "name": "symfony/http-client-contracts",
  7033. "version": "v3.1.1",
  7034. "source": {
  7035. "type": "git",
  7036. "url": "https://github.com/symfony/http-client-contracts.git",
  7037. "reference": "fd038f08c623ab5d22b26e9ba35afe8c79071800"
  7038. },
  7039. "dist": {
  7040. "type": "zip",
  7041. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/fd038f08c623ab5d22b26e9ba35afe8c79071800",
  7042. "reference": "fd038f08c623ab5d22b26e9ba35afe8c79071800",
  7043. "shasum": ""
  7044. },
  7045. "require": {
  7046. "php": ">=8.1"
  7047. },
  7048. "suggest": {
  7049. "symfony/http-client-implementation": ""
  7050. },
  7051. "type": "library",
  7052. "extra": {
  7053. "branch-alias": {
  7054. "dev-main": "3.1-dev"
  7055. },
  7056. "thanks": {
  7057. "name": "symfony/contracts",
  7058. "url": "https://github.com/symfony/contracts"
  7059. }
  7060. },
  7061. "autoload": {
  7062. "psr-4": {
  7063. "Symfony\\Contracts\\HttpClient\\": ""
  7064. },
  7065. "exclude-from-classmap": [
  7066. "/Test/"
  7067. ]
  7068. },
  7069. "notification-url": "https://packagist.org/downloads/",
  7070. "license": [
  7071. "MIT"
  7072. ],
  7073. "authors": [
  7074. {
  7075. "name": "Nicolas Grekas",
  7076. "email": "p@tchwork.com"
  7077. },
  7078. {
  7079. "name": "Symfony Community",
  7080. "homepage": "https://symfony.com/contributors"
  7081. }
  7082. ],
  7083. "description": "Generic abstractions related to HTTP clients",
  7084. "homepage": "https://symfony.com",
  7085. "keywords": [
  7086. "abstractions",
  7087. "contracts",
  7088. "decoupling",
  7089. "interfaces",
  7090. "interoperability",
  7091. "standards"
  7092. ],
  7093. "support": {
  7094. "source": "https://github.com/symfony/http-client-contracts/tree/v3.1.1"
  7095. },
  7096. "funding": [
  7097. {
  7098. "url": "https://symfony.com/sponsor",
  7099. "type": "custom"
  7100. },
  7101. {
  7102. "url": "https://github.com/fabpot",
  7103. "type": "github"
  7104. },
  7105. {
  7106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7107. "type": "tidelift"
  7108. }
  7109. ],
  7110. "time": "2022-04-22T07:30:54+00:00"
  7111. },
  7112. {
  7113. "name": "symfony/http-foundation",
  7114. "version": "v6.1.6",
  7115. "source": {
  7116. "type": "git",
  7117. "url": "https://github.com/symfony/http-foundation.git",
  7118. "reference": "3ae8e9c57155fc48930493a629da293b32efbde0"
  7119. },
  7120. "dist": {
  7121. "type": "zip",
  7122. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3ae8e9c57155fc48930493a629da293b32efbde0",
  7123. "reference": "3ae8e9c57155fc48930493a629da293b32efbde0",
  7124. "shasum": ""
  7125. },
  7126. "require": {
  7127. "php": ">=8.1",
  7128. "symfony/deprecation-contracts": "^2.1|^3",
  7129. "symfony/polyfill-mbstring": "~1.1"
  7130. },
  7131. "require-dev": {
  7132. "predis/predis": "~1.0",
  7133. "symfony/cache": "^5.4|^6.0",
  7134. "symfony/dependency-injection": "^5.4|^6.0",
  7135. "symfony/expression-language": "^5.4|^6.0",
  7136. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  7137. "symfony/mime": "^5.4|^6.0",
  7138. "symfony/rate-limiter": "^5.2|^6.0"
  7139. },
  7140. "suggest": {
  7141. "symfony/mime": "To use the file extension guesser"
  7142. },
  7143. "type": "library",
  7144. "autoload": {
  7145. "psr-4": {
  7146. "Symfony\\Component\\HttpFoundation\\": ""
  7147. },
  7148. "exclude-from-classmap": [
  7149. "/Tests/"
  7150. ]
  7151. },
  7152. "notification-url": "https://packagist.org/downloads/",
  7153. "license": [
  7154. "MIT"
  7155. ],
  7156. "authors": [
  7157. {
  7158. "name": "Fabien Potencier",
  7159. "email": "fabien@symfony.com"
  7160. },
  7161. {
  7162. "name": "Symfony Community",
  7163. "homepage": "https://symfony.com/contributors"
  7164. }
  7165. ],
  7166. "description": "Defines an object-oriented layer for the HTTP specification",
  7167. "homepage": "https://symfony.com",
  7168. "support": {
  7169. "source": "https://github.com/symfony/http-foundation/tree/v6.1.6"
  7170. },
  7171. "funding": [
  7172. {
  7173. "url": "https://symfony.com/sponsor",
  7174. "type": "custom"
  7175. },
  7176. {
  7177. "url": "https://github.com/fabpot",
  7178. "type": "github"
  7179. },
  7180. {
  7181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7182. "type": "tidelift"
  7183. }
  7184. ],
  7185. "time": "2022-10-02T08:30:52+00:00"
  7186. },
  7187. {
  7188. "name": "symfony/http-kernel",
  7189. "version": "v6.1.6",
  7190. "source": {
  7191. "type": "git",
  7192. "url": "https://github.com/symfony/http-kernel.git",
  7193. "reference": "102f99bf81799e93f61b9a73b2f38b309c587a94"
  7194. },
  7195. "dist": {
  7196. "type": "zip",
  7197. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/102f99bf81799e93f61b9a73b2f38b309c587a94",
  7198. "reference": "102f99bf81799e93f61b9a73b2f38b309c587a94",
  7199. "shasum": ""
  7200. },
  7201. "require": {
  7202. "php": ">=8.1",
  7203. "psr/log": "^1|^2|^3",
  7204. "symfony/error-handler": "^6.1",
  7205. "symfony/event-dispatcher": "^5.4|^6.0",
  7206. "symfony/http-foundation": "^5.4|^6.0",
  7207. "symfony/polyfill-ctype": "^1.8"
  7208. },
  7209. "conflict": {
  7210. "symfony/browser-kit": "<5.4",
  7211. "symfony/cache": "<5.4",
  7212. "symfony/config": "<6.1",
  7213. "symfony/console": "<5.4",
  7214. "symfony/dependency-injection": "<6.1",
  7215. "symfony/doctrine-bridge": "<5.4",
  7216. "symfony/form": "<5.4",
  7217. "symfony/http-client": "<5.4",
  7218. "symfony/mailer": "<5.4",
  7219. "symfony/messenger": "<5.4",
  7220. "symfony/translation": "<5.4",
  7221. "symfony/twig-bridge": "<5.4",
  7222. "symfony/validator": "<5.4",
  7223. "twig/twig": "<2.13"
  7224. },
  7225. "provide": {
  7226. "psr/log-implementation": "1.0|2.0|3.0"
  7227. },
  7228. "require-dev": {
  7229. "psr/cache": "^1.0|^2.0|^3.0",
  7230. "symfony/browser-kit": "^5.4|^6.0",
  7231. "symfony/config": "^6.1",
  7232. "symfony/console": "^5.4|^6.0",
  7233. "symfony/css-selector": "^5.4|^6.0",
  7234. "symfony/dependency-injection": "^6.1",
  7235. "symfony/dom-crawler": "^5.4|^6.0",
  7236. "symfony/expression-language": "^5.4|^6.0",
  7237. "symfony/finder": "^5.4|^6.0",
  7238. "symfony/http-client-contracts": "^1.1|^2|^3",
  7239. "symfony/process": "^5.4|^6.0",
  7240. "symfony/routing": "^5.4|^6.0",
  7241. "symfony/stopwatch": "^5.4|^6.0",
  7242. "symfony/translation": "^5.4|^6.0",
  7243. "symfony/translation-contracts": "^1.1|^2|^3",
  7244. "symfony/uid": "^5.4|^6.0",
  7245. "twig/twig": "^2.13|^3.0.4"
  7246. },
  7247. "suggest": {
  7248. "symfony/browser-kit": "",
  7249. "symfony/config": "",
  7250. "symfony/console": "",
  7251. "symfony/dependency-injection": ""
  7252. },
  7253. "type": "library",
  7254. "autoload": {
  7255. "psr-4": {
  7256. "Symfony\\Component\\HttpKernel\\": ""
  7257. },
  7258. "exclude-from-classmap": [
  7259. "/Tests/"
  7260. ]
  7261. },
  7262. "notification-url": "https://packagist.org/downloads/",
  7263. "license": [
  7264. "MIT"
  7265. ],
  7266. "authors": [
  7267. {
  7268. "name": "Fabien Potencier",
  7269. "email": "fabien@symfony.com"
  7270. },
  7271. {
  7272. "name": "Symfony Community",
  7273. "homepage": "https://symfony.com/contributors"
  7274. }
  7275. ],
  7276. "description": "Provides a structured process for converting a Request into a Response",
  7277. "homepage": "https://symfony.com",
  7278. "support": {
  7279. "source": "https://github.com/symfony/http-kernel/tree/v6.1.6"
  7280. },
  7281. "funding": [
  7282. {
  7283. "url": "https://symfony.com/sponsor",
  7284. "type": "custom"
  7285. },
  7286. {
  7287. "url": "https://github.com/fabpot",
  7288. "type": "github"
  7289. },
  7290. {
  7291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7292. "type": "tidelift"
  7293. }
  7294. ],
  7295. "time": "2022-10-12T07:48:47+00:00"
  7296. },
  7297. {
  7298. "name": "symfony/intl",
  7299. "version": "v6.1.6",
  7300. "source": {
  7301. "type": "git",
  7302. "url": "https://github.com/symfony/intl.git",
  7303. "reference": "9ab546d9054b34feb2cb728349f6b8e8f18d4c43"
  7304. },
  7305. "dist": {
  7306. "type": "zip",
  7307. "url": "https://api.github.com/repos/symfony/intl/zipball/9ab546d9054b34feb2cb728349f6b8e8f18d4c43",
  7308. "reference": "9ab546d9054b34feb2cb728349f6b8e8f18d4c43",
  7309. "shasum": ""
  7310. },
  7311. "require": {
  7312. "php": ">=8.1"
  7313. },
  7314. "require-dev": {
  7315. "symfony/filesystem": "^5.4|^6.0"
  7316. },
  7317. "type": "library",
  7318. "autoload": {
  7319. "psr-4": {
  7320. "Symfony\\Component\\Intl\\": ""
  7321. },
  7322. "exclude-from-classmap": [
  7323. "/Tests/"
  7324. ]
  7325. },
  7326. "notification-url": "https://packagist.org/downloads/",
  7327. "license": [
  7328. "MIT"
  7329. ],
  7330. "authors": [
  7331. {
  7332. "name": "Bernhard Schussek",
  7333. "email": "bschussek@gmail.com"
  7334. },
  7335. {
  7336. "name": "Eriksen Costa",
  7337. "email": "eriksen.costa@infranology.com.br"
  7338. },
  7339. {
  7340. "name": "Igor Wiedler",
  7341. "email": "igor@wiedler.ch"
  7342. },
  7343. {
  7344. "name": "Symfony Community",
  7345. "homepage": "https://symfony.com/contributors"
  7346. }
  7347. ],
  7348. "description": "Provides a PHP replacement layer for the C intl extension that includes additional data from the ICU library",
  7349. "homepage": "https://symfony.com",
  7350. "keywords": [
  7351. "i18n",
  7352. "icu",
  7353. "internationalization",
  7354. "intl",
  7355. "l10n",
  7356. "localization"
  7357. ],
  7358. "support": {
  7359. "source": "https://github.com/symfony/intl/tree/v6.1.6"
  7360. },
  7361. "funding": [
  7362. {
  7363. "url": "https://symfony.com/sponsor",
  7364. "type": "custom"
  7365. },
  7366. {
  7367. "url": "https://github.com/fabpot",
  7368. "type": "github"
  7369. },
  7370. {
  7371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7372. "type": "tidelift"
  7373. }
  7374. ],
  7375. "time": "2022-10-07T08:04:03+00:00"
  7376. },
  7377. {
  7378. "name": "symfony/mailer",
  7379. "version": "v6.1.5",
  7380. "source": {
  7381. "type": "git",
  7382. "url": "https://github.com/symfony/mailer.git",
  7383. "reference": "e1b32deb9efc48def0c76b876860ad36f2123e89"
  7384. },
  7385. "dist": {
  7386. "type": "zip",
  7387. "url": "https://api.github.com/repos/symfony/mailer/zipball/e1b32deb9efc48def0c76b876860ad36f2123e89",
  7388. "reference": "e1b32deb9efc48def0c76b876860ad36f2123e89",
  7389. "shasum": ""
  7390. },
  7391. "require": {
  7392. "egulias/email-validator": "^2.1.10|^3",
  7393. "php": ">=8.1",
  7394. "psr/event-dispatcher": "^1",
  7395. "psr/log": "^1|^2|^3",
  7396. "symfony/event-dispatcher": "^5.4|^6.0",
  7397. "symfony/mime": "^5.4|^6.0",
  7398. "symfony/service-contracts": "^1.1|^2|^3"
  7399. },
  7400. "conflict": {
  7401. "symfony/http-kernel": "<5.4"
  7402. },
  7403. "require-dev": {
  7404. "symfony/http-client-contracts": "^1.1|^2|^3",
  7405. "symfony/messenger": "^5.4|^6.0"
  7406. },
  7407. "type": "library",
  7408. "autoload": {
  7409. "psr-4": {
  7410. "Symfony\\Component\\Mailer\\": ""
  7411. },
  7412. "exclude-from-classmap": [
  7413. "/Tests/"
  7414. ]
  7415. },
  7416. "notification-url": "https://packagist.org/downloads/",
  7417. "license": [
  7418. "MIT"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "Fabien Potencier",
  7423. "email": "fabien@symfony.com"
  7424. },
  7425. {
  7426. "name": "Symfony Community",
  7427. "homepage": "https://symfony.com/contributors"
  7428. }
  7429. ],
  7430. "description": "Helps sending emails",
  7431. "homepage": "https://symfony.com",
  7432. "support": {
  7433. "source": "https://github.com/symfony/mailer/tree/v6.1.5"
  7434. },
  7435. "funding": [
  7436. {
  7437. "url": "https://symfony.com/sponsor",
  7438. "type": "custom"
  7439. },
  7440. {
  7441. "url": "https://github.com/fabpot",
  7442. "type": "github"
  7443. },
  7444. {
  7445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7446. "type": "tidelift"
  7447. }
  7448. ],
  7449. "time": "2022-08-29T06:58:39+00:00"
  7450. },
  7451. {
  7452. "name": "symfony/messenger",
  7453. "version": "v6.1.6",
  7454. "source": {
  7455. "type": "git",
  7456. "url": "https://github.com/symfony/messenger.git",
  7457. "reference": "3d7fbc507ad31e71a96e8e65342243e2dbe22fa1"
  7458. },
  7459. "dist": {
  7460. "type": "zip",
  7461. "url": "https://api.github.com/repos/symfony/messenger/zipball/3d7fbc507ad31e71a96e8e65342243e2dbe22fa1",
  7462. "reference": "3d7fbc507ad31e71a96e8e65342243e2dbe22fa1",
  7463. "shasum": ""
  7464. },
  7465. "require": {
  7466. "php": ">=8.1",
  7467. "psr/log": "^1|^2|^3"
  7468. },
  7469. "conflict": {
  7470. "symfony/event-dispatcher": "<5.4",
  7471. "symfony/event-dispatcher-contracts": "<2",
  7472. "symfony/framework-bundle": "<5.4",
  7473. "symfony/http-kernel": "<5.4",
  7474. "symfony/serializer": "<5.4"
  7475. },
  7476. "require-dev": {
  7477. "psr/cache": "^1.0|^2.0|^3.0",
  7478. "symfony/console": "^5.4|^6.0",
  7479. "symfony/dependency-injection": "^5.4|^6.0",
  7480. "symfony/event-dispatcher": "^5.4|^6.0",
  7481. "symfony/http-kernel": "^5.4|^6.0",
  7482. "symfony/process": "^5.4|^6.0",
  7483. "symfony/property-access": "^5.4|^6.0",
  7484. "symfony/routing": "^5.4|^6.0",
  7485. "symfony/serializer": "^5.4|^6.0",
  7486. "symfony/service-contracts": "^1.1|^2|^3",
  7487. "symfony/stopwatch": "^5.4|^6.0",
  7488. "symfony/validator": "^5.4|^6.0"
  7489. },
  7490. "suggest": {
  7491. "enqueue/messenger-adapter": "For using the php-enqueue library as a transport."
  7492. },
  7493. "type": "library",
  7494. "autoload": {
  7495. "psr-4": {
  7496. "Symfony\\Component\\Messenger\\": ""
  7497. },
  7498. "exclude-from-classmap": [
  7499. "/Tests/"
  7500. ]
  7501. },
  7502. "notification-url": "https://packagist.org/downloads/",
  7503. "license": [
  7504. "MIT"
  7505. ],
  7506. "authors": [
  7507. {
  7508. "name": "Samuel Roze",
  7509. "email": "samuel.roze@gmail.com"
  7510. },
  7511. {
  7512. "name": "Symfony Community",
  7513. "homepage": "https://symfony.com/contributors"
  7514. }
  7515. ],
  7516. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  7517. "homepage": "https://symfony.com",
  7518. "support": {
  7519. "source": "https://github.com/symfony/messenger/tree/v6.1.6"
  7520. },
  7521. "funding": [
  7522. {
  7523. "url": "https://symfony.com/sponsor",
  7524. "type": "custom"
  7525. },
  7526. {
  7527. "url": "https://github.com/fabpot",
  7528. "type": "github"
  7529. },
  7530. {
  7531. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7532. "type": "tidelift"
  7533. }
  7534. ],
  7535. "time": "2022-10-10T09:34:31+00:00"
  7536. },
  7537. {
  7538. "name": "symfony/mime",
  7539. "version": "v6.1.6",
  7540. "source": {
  7541. "type": "git",
  7542. "url": "https://github.com/symfony/mime.git",
  7543. "reference": "5ae192b9a39730435cfec025a499f79d05ac68a3"
  7544. },
  7545. "dist": {
  7546. "type": "zip",
  7547. "url": "https://api.github.com/repos/symfony/mime/zipball/5ae192b9a39730435cfec025a499f79d05ac68a3",
  7548. "reference": "5ae192b9a39730435cfec025a499f79d05ac68a3",
  7549. "shasum": ""
  7550. },
  7551. "require": {
  7552. "php": ">=8.1",
  7553. "symfony/polyfill-intl-idn": "^1.10",
  7554. "symfony/polyfill-mbstring": "^1.0"
  7555. },
  7556. "conflict": {
  7557. "egulias/email-validator": "~3.0.0",
  7558. "phpdocumentor/reflection-docblock": "<3.2.2",
  7559. "phpdocumentor/type-resolver": "<1.4.0",
  7560. "symfony/mailer": "<5.4",
  7561. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  7562. },
  7563. "require-dev": {
  7564. "egulias/email-validator": "^2.1.10|^3.1",
  7565. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7566. "symfony/dependency-injection": "^5.4|^6.0",
  7567. "symfony/property-access": "^5.4|^6.0",
  7568. "symfony/property-info": "^5.4|^6.0",
  7569. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  7570. },
  7571. "type": "library",
  7572. "autoload": {
  7573. "psr-4": {
  7574. "Symfony\\Component\\Mime\\": ""
  7575. },
  7576. "exclude-from-classmap": [
  7577. "/Tests/"
  7578. ]
  7579. },
  7580. "notification-url": "https://packagist.org/downloads/",
  7581. "license": [
  7582. "MIT"
  7583. ],
  7584. "authors": [
  7585. {
  7586. "name": "Fabien Potencier",
  7587. "email": "fabien@symfony.com"
  7588. },
  7589. {
  7590. "name": "Symfony Community",
  7591. "homepage": "https://symfony.com/contributors"
  7592. }
  7593. ],
  7594. "description": "Allows manipulating MIME messages",
  7595. "homepage": "https://symfony.com",
  7596. "keywords": [
  7597. "mime",
  7598. "mime-type"
  7599. ],
  7600. "support": {
  7601. "source": "https://github.com/symfony/mime/tree/v6.1.6"
  7602. },
  7603. "funding": [
  7604. {
  7605. "url": "https://symfony.com/sponsor",
  7606. "type": "custom"
  7607. },
  7608. {
  7609. "url": "https://github.com/fabpot",
  7610. "type": "github"
  7611. },
  7612. {
  7613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7614. "type": "tidelift"
  7615. }
  7616. ],
  7617. "time": "2022-10-07T08:04:03+00:00"
  7618. },
  7619. {
  7620. "name": "symfony/monolog-bridge",
  7621. "version": "v6.1.2",
  7622. "source": {
  7623. "type": "git",
  7624. "url": "https://github.com/symfony/monolog-bridge.git",
  7625. "reference": "1efd6a42b1dc80e03bd74d4a2fdc85e728dc2627"
  7626. },
  7627. "dist": {
  7628. "type": "zip",
  7629. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/1efd6a42b1dc80e03bd74d4a2fdc85e728dc2627",
  7630. "reference": "1efd6a42b1dc80e03bd74d4a2fdc85e728dc2627",
  7631. "shasum": ""
  7632. },
  7633. "require": {
  7634. "monolog/monolog": "^1.25.1|^2|^3",
  7635. "php": ">=8.1",
  7636. "symfony/http-kernel": "^5.4|^6.0",
  7637. "symfony/service-contracts": "^1.1|^2|^3"
  7638. },
  7639. "conflict": {
  7640. "symfony/console": "<5.4",
  7641. "symfony/http-foundation": "<5.4",
  7642. "symfony/security-core": "<6.0"
  7643. },
  7644. "require-dev": {
  7645. "symfony/console": "^5.4|^6.0",
  7646. "symfony/http-client": "^5.4|^6.0",
  7647. "symfony/mailer": "^5.4|^6.0",
  7648. "symfony/messenger": "^5.4|^6.0",
  7649. "symfony/mime": "^5.4|^6.0",
  7650. "symfony/security-core": "^6.0",
  7651. "symfony/var-dumper": "^5.4|^6.0"
  7652. },
  7653. "suggest": {
  7654. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  7655. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  7656. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  7657. },
  7658. "type": "symfony-bridge",
  7659. "autoload": {
  7660. "psr-4": {
  7661. "Symfony\\Bridge\\Monolog\\": ""
  7662. },
  7663. "exclude-from-classmap": [
  7664. "/Tests/"
  7665. ]
  7666. },
  7667. "notification-url": "https://packagist.org/downloads/",
  7668. "license": [
  7669. "MIT"
  7670. ],
  7671. "authors": [
  7672. {
  7673. "name": "Fabien Potencier",
  7674. "email": "fabien@symfony.com"
  7675. },
  7676. {
  7677. "name": "Symfony Community",
  7678. "homepage": "https://symfony.com/contributors"
  7679. }
  7680. ],
  7681. "description": "Provides integration for Monolog with various Symfony components",
  7682. "homepage": "https://symfony.com",
  7683. "support": {
  7684. "source": "https://github.com/symfony/monolog-bridge/tree/v6.1.2"
  7685. },
  7686. "funding": [
  7687. {
  7688. "url": "https://symfony.com/sponsor",
  7689. "type": "custom"
  7690. },
  7691. {
  7692. "url": "https://github.com/fabpot",
  7693. "type": "github"
  7694. },
  7695. {
  7696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7697. "type": "tidelift"
  7698. }
  7699. ],
  7700. "time": "2022-06-21T08:28:57+00:00"
  7701. },
  7702. {
  7703. "name": "symfony/monolog-bundle",
  7704. "version": "v3.8.0",
  7705. "source": {
  7706. "type": "git",
  7707. "url": "https://github.com/symfony/monolog-bundle.git",
  7708. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  7709. },
  7710. "dist": {
  7711. "type": "zip",
  7712. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  7713. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  7714. "shasum": ""
  7715. },
  7716. "require": {
  7717. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  7718. "php": ">=7.1.3",
  7719. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  7720. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7721. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  7722. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  7723. },
  7724. "require-dev": {
  7725. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  7726. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  7727. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  7728. },
  7729. "type": "symfony-bundle",
  7730. "extra": {
  7731. "branch-alias": {
  7732. "dev-master": "3.x-dev"
  7733. }
  7734. },
  7735. "autoload": {
  7736. "psr-4": {
  7737. "Symfony\\Bundle\\MonologBundle\\": ""
  7738. },
  7739. "exclude-from-classmap": [
  7740. "/Tests/"
  7741. ]
  7742. },
  7743. "notification-url": "https://packagist.org/downloads/",
  7744. "license": [
  7745. "MIT"
  7746. ],
  7747. "authors": [
  7748. {
  7749. "name": "Fabien Potencier",
  7750. "email": "fabien@symfony.com"
  7751. },
  7752. {
  7753. "name": "Symfony Community",
  7754. "homepage": "https://symfony.com/contributors"
  7755. }
  7756. ],
  7757. "description": "Symfony MonologBundle",
  7758. "homepage": "https://symfony.com",
  7759. "keywords": [
  7760. "log",
  7761. "logging"
  7762. ],
  7763. "support": {
  7764. "issues": "https://github.com/symfony/monolog-bundle/issues",
  7765. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  7766. },
  7767. "funding": [
  7768. {
  7769. "url": "https://symfony.com/sponsor",
  7770. "type": "custom"
  7771. },
  7772. {
  7773. "url": "https://github.com/fabpot",
  7774. "type": "github"
  7775. },
  7776. {
  7777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7778. "type": "tidelift"
  7779. }
  7780. ],
  7781. "time": "2022-05-10T14:24:36+00:00"
  7782. },
  7783. {
  7784. "name": "symfony/notifier",
  7785. "version": "v6.1.0",
  7786. "source": {
  7787. "type": "git",
  7788. "url": "https://github.com/symfony/notifier.git",
  7789. "reference": "34be8d35e4e71057cc10078dc28c7210673cb3de"
  7790. },
  7791. "dist": {
  7792. "type": "zip",
  7793. "url": "https://api.github.com/repos/symfony/notifier/zipball/34be8d35e4e71057cc10078dc28c7210673cb3de",
  7794. "reference": "34be8d35e4e71057cc10078dc28c7210673cb3de",
  7795. "shasum": ""
  7796. },
  7797. "require": {
  7798. "php": ">=8.1",
  7799. "psr/log": "^1|^2|^3"
  7800. },
  7801. "conflict": {
  7802. "symfony/event-dispatcher": "<5.4",
  7803. "symfony/http-kernel": "<5.4"
  7804. },
  7805. "require-dev": {
  7806. "symfony/event-dispatcher-contracts": "^2|^3",
  7807. "symfony/http-client-contracts": "^2|^3",
  7808. "symfony/http-foundation": "^5.4|^6.0",
  7809. "symfony/messenger": "^5.4|^6.0"
  7810. },
  7811. "type": "library",
  7812. "autoload": {
  7813. "psr-4": {
  7814. "Symfony\\Component\\Notifier\\": ""
  7815. },
  7816. "exclude-from-classmap": [
  7817. "/Tests/"
  7818. ]
  7819. },
  7820. "notification-url": "https://packagist.org/downloads/",
  7821. "license": [
  7822. "MIT"
  7823. ],
  7824. "authors": [
  7825. {
  7826. "name": "Fabien Potencier",
  7827. "email": "fabien@symfony.com"
  7828. },
  7829. {
  7830. "name": "Symfony Community",
  7831. "homepage": "https://symfony.com/contributors"
  7832. }
  7833. ],
  7834. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  7835. "homepage": "https://symfony.com",
  7836. "keywords": [
  7837. "notification",
  7838. "notifier"
  7839. ],
  7840. "support": {
  7841. "source": "https://github.com/symfony/notifier/tree/v6.1.0"
  7842. },
  7843. "funding": [
  7844. {
  7845. "url": "https://symfony.com/sponsor",
  7846. "type": "custom"
  7847. },
  7848. {
  7849. "url": "https://github.com/fabpot",
  7850. "type": "github"
  7851. },
  7852. {
  7853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7854. "type": "tidelift"
  7855. }
  7856. ],
  7857. "time": "2022-05-11T12:12:29+00:00"
  7858. },
  7859. {
  7860. "name": "symfony/options-resolver",
  7861. "version": "v6.1.0",
  7862. "source": {
  7863. "type": "git",
  7864. "url": "https://github.com/symfony/options-resolver.git",
  7865. "reference": "a3016f5442e28386ded73c43a32a5b68586dd1c4"
  7866. },
  7867. "dist": {
  7868. "type": "zip",
  7869. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a3016f5442e28386ded73c43a32a5b68586dd1c4",
  7870. "reference": "a3016f5442e28386ded73c43a32a5b68586dd1c4",
  7871. "shasum": ""
  7872. },
  7873. "require": {
  7874. "php": ">=8.1",
  7875. "symfony/deprecation-contracts": "^2.1|^3"
  7876. },
  7877. "type": "library",
  7878. "autoload": {
  7879. "psr-4": {
  7880. "Symfony\\Component\\OptionsResolver\\": ""
  7881. },
  7882. "exclude-from-classmap": [
  7883. "/Tests/"
  7884. ]
  7885. },
  7886. "notification-url": "https://packagist.org/downloads/",
  7887. "license": [
  7888. "MIT"
  7889. ],
  7890. "authors": [
  7891. {
  7892. "name": "Fabien Potencier",
  7893. "email": "fabien@symfony.com"
  7894. },
  7895. {
  7896. "name": "Symfony Community",
  7897. "homepage": "https://symfony.com/contributors"
  7898. }
  7899. ],
  7900. "description": "Provides an improved replacement for the array_replace PHP function",
  7901. "homepage": "https://symfony.com",
  7902. "keywords": [
  7903. "config",
  7904. "configuration",
  7905. "options"
  7906. ],
  7907. "support": {
  7908. "source": "https://github.com/symfony/options-resolver/tree/v6.1.0"
  7909. },
  7910. "funding": [
  7911. {
  7912. "url": "https://symfony.com/sponsor",
  7913. "type": "custom"
  7914. },
  7915. {
  7916. "url": "https://github.com/fabpot",
  7917. "type": "github"
  7918. },
  7919. {
  7920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7921. "type": "tidelift"
  7922. }
  7923. ],
  7924. "time": "2022-02-25T11:15:52+00:00"
  7925. },
  7926. {
  7927. "name": "symfony/password-hasher",
  7928. "version": "v6.1.3",
  7929. "source": {
  7930. "type": "git",
  7931. "url": "https://github.com/symfony/password-hasher.git",
  7932. "reference": "264894821636b77bb8282db6ec33b8b07b7a0678"
  7933. },
  7934. "dist": {
  7935. "type": "zip",
  7936. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/264894821636b77bb8282db6ec33b8b07b7a0678",
  7937. "reference": "264894821636b77bb8282db6ec33b8b07b7a0678",
  7938. "shasum": ""
  7939. },
  7940. "require": {
  7941. "php": ">=8.1"
  7942. },
  7943. "conflict": {
  7944. "symfony/security-core": "<5.4"
  7945. },
  7946. "require-dev": {
  7947. "symfony/console": "^5.4|^6.0",
  7948. "symfony/security-core": "^5.4|^6.0"
  7949. },
  7950. "type": "library",
  7951. "autoload": {
  7952. "psr-4": {
  7953. "Symfony\\Component\\PasswordHasher\\": ""
  7954. },
  7955. "exclude-from-classmap": [
  7956. "/Tests/"
  7957. ]
  7958. },
  7959. "notification-url": "https://packagist.org/downloads/",
  7960. "license": [
  7961. "MIT"
  7962. ],
  7963. "authors": [
  7964. {
  7965. "name": "Robin Chalas",
  7966. "email": "robin.chalas@gmail.com"
  7967. },
  7968. {
  7969. "name": "Symfony Community",
  7970. "homepage": "https://symfony.com/contributors"
  7971. }
  7972. ],
  7973. "description": "Provides password hashing utilities",
  7974. "homepage": "https://symfony.com",
  7975. "keywords": [
  7976. "hashing",
  7977. "password"
  7978. ],
  7979. "support": {
  7980. "source": "https://github.com/symfony/password-hasher/tree/v6.1.3"
  7981. },
  7982. "funding": [
  7983. {
  7984. "url": "https://symfony.com/sponsor",
  7985. "type": "custom"
  7986. },
  7987. {
  7988. "url": "https://github.com/fabpot",
  7989. "type": "github"
  7990. },
  7991. {
  7992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7993. "type": "tidelift"
  7994. }
  7995. ],
  7996. "time": "2022-07-20T14:45:06+00:00"
  7997. },
  7998. {
  7999. "name": "symfony/polyfill-intl-grapheme",
  8000. "version": "v1.26.0",
  8001. "source": {
  8002. "type": "git",
  8003. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8004. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  8005. },
  8006. "dist": {
  8007. "type": "zip",
  8008. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  8009. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  8010. "shasum": ""
  8011. },
  8012. "require": {
  8013. "php": ">=7.1"
  8014. },
  8015. "suggest": {
  8016. "ext-intl": "For best performance"
  8017. },
  8018. "type": "library",
  8019. "extra": {
  8020. "branch-alias": {
  8021. "dev-main": "1.26-dev"
  8022. },
  8023. "thanks": {
  8024. "name": "symfony/polyfill",
  8025. "url": "https://github.com/symfony/polyfill"
  8026. }
  8027. },
  8028. "autoload": {
  8029. "files": [
  8030. "bootstrap.php"
  8031. ],
  8032. "psr-4": {
  8033. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8034. }
  8035. },
  8036. "notification-url": "https://packagist.org/downloads/",
  8037. "license": [
  8038. "MIT"
  8039. ],
  8040. "authors": [
  8041. {
  8042. "name": "Nicolas Grekas",
  8043. "email": "p@tchwork.com"
  8044. },
  8045. {
  8046. "name": "Symfony Community",
  8047. "homepage": "https://symfony.com/contributors"
  8048. }
  8049. ],
  8050. "description": "Symfony polyfill for intl's grapheme_* functions",
  8051. "homepage": "https://symfony.com",
  8052. "keywords": [
  8053. "compatibility",
  8054. "grapheme",
  8055. "intl",
  8056. "polyfill",
  8057. "portable",
  8058. "shim"
  8059. ],
  8060. "support": {
  8061. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  8062. },
  8063. "funding": [
  8064. {
  8065. "url": "https://symfony.com/sponsor",
  8066. "type": "custom"
  8067. },
  8068. {
  8069. "url": "https://github.com/fabpot",
  8070. "type": "github"
  8071. },
  8072. {
  8073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8074. "type": "tidelift"
  8075. }
  8076. ],
  8077. "time": "2022-05-24T11:49:31+00:00"
  8078. },
  8079. {
  8080. "name": "symfony/polyfill-intl-icu",
  8081. "version": "v1.26.0",
  8082. "source": {
  8083. "type": "git",
  8084. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  8085. "reference": "e407643d610e5f2c8a4b14189150f68934bf5e48"
  8086. },
  8087. "dist": {
  8088. "type": "zip",
  8089. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e407643d610e5f2c8a4b14189150f68934bf5e48",
  8090. "reference": "e407643d610e5f2c8a4b14189150f68934bf5e48",
  8091. "shasum": ""
  8092. },
  8093. "require": {
  8094. "php": ">=7.1"
  8095. },
  8096. "suggest": {
  8097. "ext-intl": "For best performance and support of other locales than \"en\""
  8098. },
  8099. "type": "library",
  8100. "extra": {
  8101. "branch-alias": {
  8102. "dev-main": "1.26-dev"
  8103. },
  8104. "thanks": {
  8105. "name": "symfony/polyfill",
  8106. "url": "https://github.com/symfony/polyfill"
  8107. }
  8108. },
  8109. "autoload": {
  8110. "files": [
  8111. "bootstrap.php"
  8112. ],
  8113. "psr-4": {
  8114. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  8115. },
  8116. "classmap": [
  8117. "Resources/stubs"
  8118. ],
  8119. "exclude-from-classmap": [
  8120. "/Tests/"
  8121. ]
  8122. },
  8123. "notification-url": "https://packagist.org/downloads/",
  8124. "license": [
  8125. "MIT"
  8126. ],
  8127. "authors": [
  8128. {
  8129. "name": "Nicolas Grekas",
  8130. "email": "p@tchwork.com"
  8131. },
  8132. {
  8133. "name": "Symfony Community",
  8134. "homepage": "https://symfony.com/contributors"
  8135. }
  8136. ],
  8137. "description": "Symfony polyfill for intl's ICU-related data and classes",
  8138. "homepage": "https://symfony.com",
  8139. "keywords": [
  8140. "compatibility",
  8141. "icu",
  8142. "intl",
  8143. "polyfill",
  8144. "portable",
  8145. "shim"
  8146. ],
  8147. "support": {
  8148. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.26.0"
  8149. },
  8150. "funding": [
  8151. {
  8152. "url": "https://symfony.com/sponsor",
  8153. "type": "custom"
  8154. },
  8155. {
  8156. "url": "https://github.com/fabpot",
  8157. "type": "github"
  8158. },
  8159. {
  8160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8161. "type": "tidelift"
  8162. }
  8163. ],
  8164. "time": "2022-05-24T11:49:31+00:00"
  8165. },
  8166. {
  8167. "name": "symfony/polyfill-intl-idn",
  8168. "version": "v1.26.0",
  8169. "source": {
  8170. "type": "git",
  8171. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8172. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  8173. },
  8174. "dist": {
  8175. "type": "zip",
  8176. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8177. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8178. "shasum": ""
  8179. },
  8180. "require": {
  8181. "php": ">=7.1",
  8182. "symfony/polyfill-intl-normalizer": "^1.10",
  8183. "symfony/polyfill-php72": "^1.10"
  8184. },
  8185. "suggest": {
  8186. "ext-intl": "For best performance"
  8187. },
  8188. "type": "library",
  8189. "extra": {
  8190. "branch-alias": {
  8191. "dev-main": "1.26-dev"
  8192. },
  8193. "thanks": {
  8194. "name": "symfony/polyfill",
  8195. "url": "https://github.com/symfony/polyfill"
  8196. }
  8197. },
  8198. "autoload": {
  8199. "files": [
  8200. "bootstrap.php"
  8201. ],
  8202. "psr-4": {
  8203. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8204. }
  8205. },
  8206. "notification-url": "https://packagist.org/downloads/",
  8207. "license": [
  8208. "MIT"
  8209. ],
  8210. "authors": [
  8211. {
  8212. "name": "Laurent Bassin",
  8213. "email": "laurent@bassin.info"
  8214. },
  8215. {
  8216. "name": "Trevor Rowbotham",
  8217. "email": "trevor.rowbotham@pm.me"
  8218. },
  8219. {
  8220. "name": "Symfony Community",
  8221. "homepage": "https://symfony.com/contributors"
  8222. }
  8223. ],
  8224. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8225. "homepage": "https://symfony.com",
  8226. "keywords": [
  8227. "compatibility",
  8228. "idn",
  8229. "intl",
  8230. "polyfill",
  8231. "portable",
  8232. "shim"
  8233. ],
  8234. "support": {
  8235. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  8236. },
  8237. "funding": [
  8238. {
  8239. "url": "https://symfony.com/sponsor",
  8240. "type": "custom"
  8241. },
  8242. {
  8243. "url": "https://github.com/fabpot",
  8244. "type": "github"
  8245. },
  8246. {
  8247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8248. "type": "tidelift"
  8249. }
  8250. ],
  8251. "time": "2022-05-24T11:49:31+00:00"
  8252. },
  8253. {
  8254. "name": "symfony/polyfill-intl-normalizer",
  8255. "version": "v1.26.0",
  8256. "source": {
  8257. "type": "git",
  8258. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8259. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  8260. },
  8261. "dist": {
  8262. "type": "zip",
  8263. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  8264. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  8265. "shasum": ""
  8266. },
  8267. "require": {
  8268. "php": ">=7.1"
  8269. },
  8270. "suggest": {
  8271. "ext-intl": "For best performance"
  8272. },
  8273. "type": "library",
  8274. "extra": {
  8275. "branch-alias": {
  8276. "dev-main": "1.26-dev"
  8277. },
  8278. "thanks": {
  8279. "name": "symfony/polyfill",
  8280. "url": "https://github.com/symfony/polyfill"
  8281. }
  8282. },
  8283. "autoload": {
  8284. "files": [
  8285. "bootstrap.php"
  8286. ],
  8287. "psr-4": {
  8288. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8289. },
  8290. "classmap": [
  8291. "Resources/stubs"
  8292. ]
  8293. },
  8294. "notification-url": "https://packagist.org/downloads/",
  8295. "license": [
  8296. "MIT"
  8297. ],
  8298. "authors": [
  8299. {
  8300. "name": "Nicolas Grekas",
  8301. "email": "p@tchwork.com"
  8302. },
  8303. {
  8304. "name": "Symfony Community",
  8305. "homepage": "https://symfony.com/contributors"
  8306. }
  8307. ],
  8308. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8309. "homepage": "https://symfony.com",
  8310. "keywords": [
  8311. "compatibility",
  8312. "intl",
  8313. "normalizer",
  8314. "polyfill",
  8315. "portable",
  8316. "shim"
  8317. ],
  8318. "support": {
  8319. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  8320. },
  8321. "funding": [
  8322. {
  8323. "url": "https://symfony.com/sponsor",
  8324. "type": "custom"
  8325. },
  8326. {
  8327. "url": "https://github.com/fabpot",
  8328. "type": "github"
  8329. },
  8330. {
  8331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8332. "type": "tidelift"
  8333. }
  8334. ],
  8335. "time": "2022-05-24T11:49:31+00:00"
  8336. },
  8337. {
  8338. "name": "symfony/polyfill-mbstring",
  8339. "version": "v1.26.0",
  8340. "source": {
  8341. "type": "git",
  8342. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8343. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  8344. },
  8345. "dist": {
  8346. "type": "zip",
  8347. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8348. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8349. "shasum": ""
  8350. },
  8351. "require": {
  8352. "php": ">=7.1"
  8353. },
  8354. "provide": {
  8355. "ext-mbstring": "*"
  8356. },
  8357. "suggest": {
  8358. "ext-mbstring": "For best performance"
  8359. },
  8360. "type": "library",
  8361. "extra": {
  8362. "branch-alias": {
  8363. "dev-main": "1.26-dev"
  8364. },
  8365. "thanks": {
  8366. "name": "symfony/polyfill",
  8367. "url": "https://github.com/symfony/polyfill"
  8368. }
  8369. },
  8370. "autoload": {
  8371. "files": [
  8372. "bootstrap.php"
  8373. ],
  8374. "psr-4": {
  8375. "Symfony\\Polyfill\\Mbstring\\": ""
  8376. }
  8377. },
  8378. "notification-url": "https://packagist.org/downloads/",
  8379. "license": [
  8380. "MIT"
  8381. ],
  8382. "authors": [
  8383. {
  8384. "name": "Nicolas Grekas",
  8385. "email": "p@tchwork.com"
  8386. },
  8387. {
  8388. "name": "Symfony Community",
  8389. "homepage": "https://symfony.com/contributors"
  8390. }
  8391. ],
  8392. "description": "Symfony polyfill for the Mbstring extension",
  8393. "homepage": "https://symfony.com",
  8394. "keywords": [
  8395. "compatibility",
  8396. "mbstring",
  8397. "polyfill",
  8398. "portable",
  8399. "shim"
  8400. ],
  8401. "support": {
  8402. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  8403. },
  8404. "funding": [
  8405. {
  8406. "url": "https://symfony.com/sponsor",
  8407. "type": "custom"
  8408. },
  8409. {
  8410. "url": "https://github.com/fabpot",
  8411. "type": "github"
  8412. },
  8413. {
  8414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8415. "type": "tidelift"
  8416. }
  8417. ],
  8418. "time": "2022-05-24T11:49:31+00:00"
  8419. },
  8420. {
  8421. "name": "symfony/polyfill-php80",
  8422. "version": "v1.26.0",
  8423. "source": {
  8424. "type": "git",
  8425. "url": "https://github.com/symfony/polyfill-php80.git",
  8426. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  8427. },
  8428. "dist": {
  8429. "type": "zip",
  8430. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8431. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8432. "shasum": ""
  8433. },
  8434. "require": {
  8435. "php": ">=7.1"
  8436. },
  8437. "type": "library",
  8438. "extra": {
  8439. "branch-alias": {
  8440. "dev-main": "1.26-dev"
  8441. },
  8442. "thanks": {
  8443. "name": "symfony/polyfill",
  8444. "url": "https://github.com/symfony/polyfill"
  8445. }
  8446. },
  8447. "autoload": {
  8448. "files": [
  8449. "bootstrap.php"
  8450. ],
  8451. "psr-4": {
  8452. "Symfony\\Polyfill\\Php80\\": ""
  8453. },
  8454. "classmap": [
  8455. "Resources/stubs"
  8456. ]
  8457. },
  8458. "notification-url": "https://packagist.org/downloads/",
  8459. "license": [
  8460. "MIT"
  8461. ],
  8462. "authors": [
  8463. {
  8464. "name": "Ion Bazan",
  8465. "email": "ion.bazan@gmail.com"
  8466. },
  8467. {
  8468. "name": "Nicolas Grekas",
  8469. "email": "p@tchwork.com"
  8470. },
  8471. {
  8472. "name": "Symfony Community",
  8473. "homepage": "https://symfony.com/contributors"
  8474. }
  8475. ],
  8476. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8477. "homepage": "https://symfony.com",
  8478. "keywords": [
  8479. "compatibility",
  8480. "polyfill",
  8481. "portable",
  8482. "shim"
  8483. ],
  8484. "support": {
  8485. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  8486. },
  8487. "funding": [
  8488. {
  8489. "url": "https://symfony.com/sponsor",
  8490. "type": "custom"
  8491. },
  8492. {
  8493. "url": "https://github.com/fabpot",
  8494. "type": "github"
  8495. },
  8496. {
  8497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8498. "type": "tidelift"
  8499. }
  8500. ],
  8501. "time": "2022-05-10T07:21:04+00:00"
  8502. },
  8503. {
  8504. "name": "symfony/process",
  8505. "version": "v6.1.3",
  8506. "source": {
  8507. "type": "git",
  8508. "url": "https://github.com/symfony/process.git",
  8509. "reference": "a6506e99cfad7059b1ab5cab395854a0a0c21292"
  8510. },
  8511. "dist": {
  8512. "type": "zip",
  8513. "url": "https://api.github.com/repos/symfony/process/zipball/a6506e99cfad7059b1ab5cab395854a0a0c21292",
  8514. "reference": "a6506e99cfad7059b1ab5cab395854a0a0c21292",
  8515. "shasum": ""
  8516. },
  8517. "require": {
  8518. "php": ">=8.1"
  8519. },
  8520. "type": "library",
  8521. "autoload": {
  8522. "psr-4": {
  8523. "Symfony\\Component\\Process\\": ""
  8524. },
  8525. "exclude-from-classmap": [
  8526. "/Tests/"
  8527. ]
  8528. },
  8529. "notification-url": "https://packagist.org/downloads/",
  8530. "license": [
  8531. "MIT"
  8532. ],
  8533. "authors": [
  8534. {
  8535. "name": "Fabien Potencier",
  8536. "email": "fabien@symfony.com"
  8537. },
  8538. {
  8539. "name": "Symfony Community",
  8540. "homepage": "https://symfony.com/contributors"
  8541. }
  8542. ],
  8543. "description": "Executes commands in sub-processes",
  8544. "homepage": "https://symfony.com",
  8545. "support": {
  8546. "source": "https://github.com/symfony/process/tree/v6.1.3"
  8547. },
  8548. "funding": [
  8549. {
  8550. "url": "https://symfony.com/sponsor",
  8551. "type": "custom"
  8552. },
  8553. {
  8554. "url": "https://github.com/fabpot",
  8555. "type": "github"
  8556. },
  8557. {
  8558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8559. "type": "tidelift"
  8560. }
  8561. ],
  8562. "time": "2022-06-27T17:24:16+00:00"
  8563. },
  8564. {
  8565. "name": "symfony/property-access",
  8566. "version": "v6.1.3",
  8567. "source": {
  8568. "type": "git",
  8569. "url": "https://github.com/symfony/property-access.git",
  8570. "reference": "25108ee9b62d6ef0815007d9c7cf6a7ba40bb7c5"
  8571. },
  8572. "dist": {
  8573. "type": "zip",
  8574. "url": "https://api.github.com/repos/symfony/property-access/zipball/25108ee9b62d6ef0815007d9c7cf6a7ba40bb7c5",
  8575. "reference": "25108ee9b62d6ef0815007d9c7cf6a7ba40bb7c5",
  8576. "shasum": ""
  8577. },
  8578. "require": {
  8579. "php": ">=8.1",
  8580. "symfony/property-info": "^5.4|^6.0"
  8581. },
  8582. "require-dev": {
  8583. "symfony/cache": "^5.4|^6.0"
  8584. },
  8585. "suggest": {
  8586. "psr/cache-implementation": "To cache access methods."
  8587. },
  8588. "type": "library",
  8589. "autoload": {
  8590. "psr-4": {
  8591. "Symfony\\Component\\PropertyAccess\\": ""
  8592. },
  8593. "exclude-from-classmap": [
  8594. "/Tests/"
  8595. ]
  8596. },
  8597. "notification-url": "https://packagist.org/downloads/",
  8598. "license": [
  8599. "MIT"
  8600. ],
  8601. "authors": [
  8602. {
  8603. "name": "Fabien Potencier",
  8604. "email": "fabien@symfony.com"
  8605. },
  8606. {
  8607. "name": "Symfony Community",
  8608. "homepage": "https://symfony.com/contributors"
  8609. }
  8610. ],
  8611. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  8612. "homepage": "https://symfony.com",
  8613. "keywords": [
  8614. "access",
  8615. "array",
  8616. "extraction",
  8617. "index",
  8618. "injection",
  8619. "object",
  8620. "property",
  8621. "property path",
  8622. "reflection"
  8623. ],
  8624. "support": {
  8625. "source": "https://github.com/symfony/property-access/tree/v6.1.3"
  8626. },
  8627. "funding": [
  8628. {
  8629. "url": "https://symfony.com/sponsor",
  8630. "type": "custom"
  8631. },
  8632. {
  8633. "url": "https://github.com/fabpot",
  8634. "type": "github"
  8635. },
  8636. {
  8637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8638. "type": "tidelift"
  8639. }
  8640. ],
  8641. "time": "2022-06-27T17:24:16+00:00"
  8642. },
  8643. {
  8644. "name": "symfony/property-info",
  8645. "version": "v6.1.6",
  8646. "source": {
  8647. "type": "git",
  8648. "url": "https://github.com/symfony/property-info.git",
  8649. "reference": "f28d0db9d2687f81d68d0dc6b2e42817647f5d64"
  8650. },
  8651. "dist": {
  8652. "type": "zip",
  8653. "url": "https://api.github.com/repos/symfony/property-info/zipball/f28d0db9d2687f81d68d0dc6b2e42817647f5d64",
  8654. "reference": "f28d0db9d2687f81d68d0dc6b2e42817647f5d64",
  8655. "shasum": ""
  8656. },
  8657. "require": {
  8658. "php": ">=8.1",
  8659. "symfony/string": "^5.4|^6.0"
  8660. },
  8661. "conflict": {
  8662. "phpdocumentor/reflection-docblock": "<5.2",
  8663. "phpdocumentor/type-resolver": "<1.5.1",
  8664. "symfony/dependency-injection": "<5.4"
  8665. },
  8666. "require-dev": {
  8667. "doctrine/annotations": "^1.10.4",
  8668. "phpdocumentor/reflection-docblock": "^5.2",
  8669. "phpstan/phpdoc-parser": "^1.0",
  8670. "symfony/cache": "^5.4|^6.0",
  8671. "symfony/dependency-injection": "^5.4|^6.0",
  8672. "symfony/serializer": "^5.4|^6.0"
  8673. },
  8674. "suggest": {
  8675. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  8676. "psr/cache-implementation": "To cache results",
  8677. "symfony/doctrine-bridge": "To use Doctrine metadata",
  8678. "symfony/serializer": "To use Serializer metadata"
  8679. },
  8680. "type": "library",
  8681. "autoload": {
  8682. "psr-4": {
  8683. "Symfony\\Component\\PropertyInfo\\": ""
  8684. },
  8685. "exclude-from-classmap": [
  8686. "/Tests/"
  8687. ]
  8688. },
  8689. "notification-url": "https://packagist.org/downloads/",
  8690. "license": [
  8691. "MIT"
  8692. ],
  8693. "authors": [
  8694. {
  8695. "name": "Kévin Dunglas",
  8696. "email": "dunglas@gmail.com"
  8697. },
  8698. {
  8699. "name": "Symfony Community",
  8700. "homepage": "https://symfony.com/contributors"
  8701. }
  8702. ],
  8703. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  8704. "homepage": "https://symfony.com",
  8705. "keywords": [
  8706. "doctrine",
  8707. "phpdoc",
  8708. "property",
  8709. "symfony",
  8710. "type",
  8711. "validator"
  8712. ],
  8713. "support": {
  8714. "source": "https://github.com/symfony/property-info/tree/v6.1.6"
  8715. },
  8716. "funding": [
  8717. {
  8718. "url": "https://symfony.com/sponsor",
  8719. "type": "custom"
  8720. },
  8721. {
  8722. "url": "https://github.com/fabpot",
  8723. "type": "github"
  8724. },
  8725. {
  8726. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8727. "type": "tidelift"
  8728. }
  8729. ],
  8730. "time": "2022-10-07T08:04:03+00:00"
  8731. },
  8732. {
  8733. "name": "symfony/proxy-manager-bridge",
  8734. "version": "v6.1.0",
  8735. "source": {
  8736. "type": "git",
  8737. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  8738. "reference": "bcb3e7a28ee373bd64ecd2a2289a64c5860716af"
  8739. },
  8740. "dist": {
  8741. "type": "zip",
  8742. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/bcb3e7a28ee373bd64ecd2a2289a64c5860716af",
  8743. "reference": "bcb3e7a28ee373bd64ecd2a2289a64c5860716af",
  8744. "shasum": ""
  8745. },
  8746. "require": {
  8747. "friendsofphp/proxy-manager-lts": "^1.0.2",
  8748. "php": ">=8.1",
  8749. "symfony/dependency-injection": "^5.4|^6.0"
  8750. },
  8751. "require-dev": {
  8752. "symfony/config": "^5.4|^6.0"
  8753. },
  8754. "type": "symfony-bridge",
  8755. "autoload": {
  8756. "psr-4": {
  8757. "Symfony\\Bridge\\ProxyManager\\": ""
  8758. },
  8759. "exclude-from-classmap": [
  8760. "/Tests/"
  8761. ]
  8762. },
  8763. "notification-url": "https://packagist.org/downloads/",
  8764. "license": [
  8765. "MIT"
  8766. ],
  8767. "authors": [
  8768. {
  8769. "name": "Fabien Potencier",
  8770. "email": "fabien@symfony.com"
  8771. },
  8772. {
  8773. "name": "Symfony Community",
  8774. "homepage": "https://symfony.com/contributors"
  8775. }
  8776. ],
  8777. "description": "Provides integration for ProxyManager with various Symfony components",
  8778. "homepage": "https://symfony.com",
  8779. "support": {
  8780. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.1.0"
  8781. },
  8782. "funding": [
  8783. {
  8784. "url": "https://symfony.com/sponsor",
  8785. "type": "custom"
  8786. },
  8787. {
  8788. "url": "https://github.com/fabpot",
  8789. "type": "github"
  8790. },
  8791. {
  8792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8793. "type": "tidelift"
  8794. }
  8795. ],
  8796. "time": "2022-03-02T13:21:45+00:00"
  8797. },
  8798. {
  8799. "name": "symfony/psr-http-message-bridge",
  8800. "version": "v2.1.3",
  8801. "source": {
  8802. "type": "git",
  8803. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8804. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840"
  8805. },
  8806. "dist": {
  8807. "type": "zip",
  8808. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  8809. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  8810. "shasum": ""
  8811. },
  8812. "require": {
  8813. "php": ">=7.1",
  8814. "psr/http-message": "^1.0",
  8815. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  8816. },
  8817. "require-dev": {
  8818. "nyholm/psr7": "^1.1",
  8819. "psr/log": "^1.1 || ^2 || ^3",
  8820. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  8821. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  8822. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  8823. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  8824. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  8825. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  8826. },
  8827. "suggest": {
  8828. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8829. },
  8830. "type": "symfony-bridge",
  8831. "extra": {
  8832. "branch-alias": {
  8833. "dev-main": "2.1-dev"
  8834. }
  8835. },
  8836. "autoload": {
  8837. "psr-4": {
  8838. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8839. },
  8840. "exclude-from-classmap": [
  8841. "/Tests/"
  8842. ]
  8843. },
  8844. "notification-url": "https://packagist.org/downloads/",
  8845. "license": [
  8846. "MIT"
  8847. ],
  8848. "authors": [
  8849. {
  8850. "name": "Fabien Potencier",
  8851. "email": "fabien@symfony.com"
  8852. },
  8853. {
  8854. "name": "Symfony Community",
  8855. "homepage": "http://symfony.com/contributors"
  8856. }
  8857. ],
  8858. "description": "PSR HTTP message bridge",
  8859. "homepage": "http://symfony.com",
  8860. "keywords": [
  8861. "http",
  8862. "http-message",
  8863. "psr-17",
  8864. "psr-7"
  8865. ],
  8866. "support": {
  8867. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  8868. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.3"
  8869. },
  8870. "funding": [
  8871. {
  8872. "url": "https://symfony.com/sponsor",
  8873. "type": "custom"
  8874. },
  8875. {
  8876. "url": "https://github.com/fabpot",
  8877. "type": "github"
  8878. },
  8879. {
  8880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8881. "type": "tidelift"
  8882. }
  8883. ],
  8884. "time": "2022-09-05T10:34:54+00:00"
  8885. },
  8886. {
  8887. "name": "symfony/routing",
  8888. "version": "v6.1.5",
  8889. "source": {
  8890. "type": "git",
  8891. "url": "https://github.com/symfony/routing.git",
  8892. "reference": "f8c1ebb43d0f39e5ecd12a732ba1952a3dd8455c"
  8893. },
  8894. "dist": {
  8895. "type": "zip",
  8896. "url": "https://api.github.com/repos/symfony/routing/zipball/f8c1ebb43d0f39e5ecd12a732ba1952a3dd8455c",
  8897. "reference": "f8c1ebb43d0f39e5ecd12a732ba1952a3dd8455c",
  8898. "shasum": ""
  8899. },
  8900. "require": {
  8901. "php": ">=8.1"
  8902. },
  8903. "conflict": {
  8904. "doctrine/annotations": "<1.12",
  8905. "symfony/config": "<5.4",
  8906. "symfony/dependency-injection": "<5.4",
  8907. "symfony/yaml": "<5.4"
  8908. },
  8909. "require-dev": {
  8910. "doctrine/annotations": "^1.12",
  8911. "psr/log": "^1|^2|^3",
  8912. "symfony/config": "^5.4|^6.0",
  8913. "symfony/dependency-injection": "^5.4|^6.0",
  8914. "symfony/expression-language": "^5.4|^6.0",
  8915. "symfony/http-foundation": "^5.4|^6.0",
  8916. "symfony/yaml": "^5.4|^6.0"
  8917. },
  8918. "suggest": {
  8919. "symfony/config": "For using the all-in-one router or any loader",
  8920. "symfony/expression-language": "For using expression matching",
  8921. "symfony/http-foundation": "For using a Symfony Request object",
  8922. "symfony/yaml": "For using the YAML loader"
  8923. },
  8924. "type": "library",
  8925. "autoload": {
  8926. "psr-4": {
  8927. "Symfony\\Component\\Routing\\": ""
  8928. },
  8929. "exclude-from-classmap": [
  8930. "/Tests/"
  8931. ]
  8932. },
  8933. "notification-url": "https://packagist.org/downloads/",
  8934. "license": [
  8935. "MIT"
  8936. ],
  8937. "authors": [
  8938. {
  8939. "name": "Fabien Potencier",
  8940. "email": "fabien@symfony.com"
  8941. },
  8942. {
  8943. "name": "Symfony Community",
  8944. "homepage": "https://symfony.com/contributors"
  8945. }
  8946. ],
  8947. "description": "Maps an HTTP request to a set of configuration variables",
  8948. "homepage": "https://symfony.com",
  8949. "keywords": [
  8950. "router",
  8951. "routing",
  8952. "uri",
  8953. "url"
  8954. ],
  8955. "support": {
  8956. "source": "https://github.com/symfony/routing/tree/v6.1.5"
  8957. },
  8958. "funding": [
  8959. {
  8960. "url": "https://symfony.com/sponsor",
  8961. "type": "custom"
  8962. },
  8963. {
  8964. "url": "https://github.com/fabpot",
  8965. "type": "github"
  8966. },
  8967. {
  8968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8969. "type": "tidelift"
  8970. }
  8971. ],
  8972. "time": "2022-09-09T09:26:14+00:00"
  8973. },
  8974. {
  8975. "name": "symfony/security-bundle",
  8976. "version": "v6.1.3",
  8977. "source": {
  8978. "type": "git",
  8979. "url": "https://github.com/symfony/security-bundle.git",
  8980. "reference": "1410129e36e5d0cf4bde73f4ed5d9e18acff06b3"
  8981. },
  8982. "dist": {
  8983. "type": "zip",
  8984. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/1410129e36e5d0cf4bde73f4ed5d9e18acff06b3",
  8985. "reference": "1410129e36e5d0cf4bde73f4ed5d9e18acff06b3",
  8986. "shasum": ""
  8987. },
  8988. "require": {
  8989. "composer-runtime-api": ">=2.1",
  8990. "ext-xml": "*",
  8991. "php": ">=8.1",
  8992. "symfony/config": "^5.4|^6.0",
  8993. "symfony/dependency-injection": "^5.4|^6.0",
  8994. "symfony/event-dispatcher": "^5.4|^6.0",
  8995. "symfony/http-foundation": "^5.4|^6.0",
  8996. "symfony/http-kernel": "^5.4|^6.0",
  8997. "symfony/password-hasher": "^5.4|^6.0",
  8998. "symfony/security-core": "^5.4|^6.0",
  8999. "symfony/security-csrf": "^5.4|^6.0",
  9000. "symfony/security-http": "^5.4|^6.0"
  9001. },
  9002. "conflict": {
  9003. "symfony/browser-kit": "<5.4",
  9004. "symfony/console": "<5.4",
  9005. "symfony/framework-bundle": "<5.4",
  9006. "symfony/ldap": "<5.4",
  9007. "symfony/twig-bundle": "<5.4"
  9008. },
  9009. "require-dev": {
  9010. "doctrine/annotations": "^1.10.4",
  9011. "symfony/asset": "^5.4|^6.0",
  9012. "symfony/browser-kit": "^5.4|^6.0",
  9013. "symfony/console": "^5.4|^6.0",
  9014. "symfony/css-selector": "^5.4|^6.0",
  9015. "symfony/dom-crawler": "^5.4|^6.0",
  9016. "symfony/expression-language": "^5.4|^6.0",
  9017. "symfony/form": "^5.4|^6.0",
  9018. "symfony/framework-bundle": "^5.4|^6.0",
  9019. "symfony/ldap": "^5.4|^6.0",
  9020. "symfony/process": "^5.4|^6.0",
  9021. "symfony/rate-limiter": "^5.4|^6.0",
  9022. "symfony/serializer": "^5.4|^6.0",
  9023. "symfony/translation": "^5.4|^6.0",
  9024. "symfony/twig-bridge": "^5.4|^6.0",
  9025. "symfony/twig-bundle": "^5.4|^6.0",
  9026. "symfony/validator": "^5.4|^6.0",
  9027. "symfony/yaml": "^5.4|^6.0",
  9028. "twig/twig": "^2.13|^3.0.4"
  9029. },
  9030. "type": "symfony-bundle",
  9031. "autoload": {
  9032. "psr-4": {
  9033. "Symfony\\Bundle\\SecurityBundle\\": ""
  9034. },
  9035. "exclude-from-classmap": [
  9036. "/Tests/"
  9037. ]
  9038. },
  9039. "notification-url": "https://packagist.org/downloads/",
  9040. "license": [
  9041. "MIT"
  9042. ],
  9043. "authors": [
  9044. {
  9045. "name": "Fabien Potencier",
  9046. "email": "fabien@symfony.com"
  9047. },
  9048. {
  9049. "name": "Symfony Community",
  9050. "homepage": "https://symfony.com/contributors"
  9051. }
  9052. ],
  9053. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  9054. "homepage": "https://symfony.com",
  9055. "support": {
  9056. "source": "https://github.com/symfony/security-bundle/tree/v6.1.3"
  9057. },
  9058. "funding": [
  9059. {
  9060. "url": "https://symfony.com/sponsor",
  9061. "type": "custom"
  9062. },
  9063. {
  9064. "url": "https://github.com/fabpot",
  9065. "type": "github"
  9066. },
  9067. {
  9068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9069. "type": "tidelift"
  9070. }
  9071. ],
  9072. "time": "2022-07-20T13:46:29+00:00"
  9073. },
  9074. {
  9075. "name": "symfony/security-core",
  9076. "version": "v6.1.6",
  9077. "source": {
  9078. "type": "git",
  9079. "url": "https://github.com/symfony/security-core.git",
  9080. "reference": "e42fb611d1a36e6e1e34f8cd715cea108a39cad5"
  9081. },
  9082. "dist": {
  9083. "type": "zip",
  9084. "url": "https://api.github.com/repos/symfony/security-core/zipball/e42fb611d1a36e6e1e34f8cd715cea108a39cad5",
  9085. "reference": "e42fb611d1a36e6e1e34f8cd715cea108a39cad5",
  9086. "shasum": ""
  9087. },
  9088. "require": {
  9089. "php": ">=8.1",
  9090. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  9091. "symfony/password-hasher": "^5.4|^6.0",
  9092. "symfony/service-contracts": "^1.1.6|^2|^3"
  9093. },
  9094. "conflict": {
  9095. "symfony/event-dispatcher": "<5.4",
  9096. "symfony/http-foundation": "<5.4",
  9097. "symfony/ldap": "<5.4",
  9098. "symfony/security-guard": "<5.4",
  9099. "symfony/validator": "<5.4"
  9100. },
  9101. "require-dev": {
  9102. "psr/cache": "^1.0|^2.0|^3.0",
  9103. "psr/container": "^1.1|^2.0",
  9104. "psr/log": "^1|^2|^3",
  9105. "symfony/cache": "^5.4|^6.0",
  9106. "symfony/event-dispatcher": "^5.4|^6.0",
  9107. "symfony/expression-language": "^5.4|^6.0",
  9108. "symfony/http-foundation": "^5.4|^6.0",
  9109. "symfony/ldap": "^5.4|^6.0",
  9110. "symfony/translation": "^5.4|^6.0",
  9111. "symfony/validator": "^5.4|^6.0"
  9112. },
  9113. "suggest": {
  9114. "psr/container-implementation": "To instantiate the Security class",
  9115. "symfony/event-dispatcher": "",
  9116. "symfony/expression-language": "For using the expression voter",
  9117. "symfony/http-foundation": "",
  9118. "symfony/ldap": "For using LDAP integration",
  9119. "symfony/validator": "For using the user password constraint"
  9120. },
  9121. "type": "library",
  9122. "autoload": {
  9123. "psr-4": {
  9124. "Symfony\\Component\\Security\\Core\\": ""
  9125. },
  9126. "exclude-from-classmap": [
  9127. "/Tests/"
  9128. ]
  9129. },
  9130. "notification-url": "https://packagist.org/downloads/",
  9131. "license": [
  9132. "MIT"
  9133. ],
  9134. "authors": [
  9135. {
  9136. "name": "Fabien Potencier",
  9137. "email": "fabien@symfony.com"
  9138. },
  9139. {
  9140. "name": "Symfony Community",
  9141. "homepage": "https://symfony.com/contributors"
  9142. }
  9143. ],
  9144. "description": "Symfony Security Component - Core Library",
  9145. "homepage": "https://symfony.com",
  9146. "support": {
  9147. "source": "https://github.com/symfony/security-core/tree/v6.1.6"
  9148. },
  9149. "funding": [
  9150. {
  9151. "url": "https://symfony.com/sponsor",
  9152. "type": "custom"
  9153. },
  9154. {
  9155. "url": "https://github.com/fabpot",
  9156. "type": "github"
  9157. },
  9158. {
  9159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9160. "type": "tidelift"
  9161. }
  9162. ],
  9163. "time": "2022-10-02T08:30:52+00:00"
  9164. },
  9165. {
  9166. "name": "symfony/security-csrf",
  9167. "version": "v6.1.0",
  9168. "source": {
  9169. "type": "git",
  9170. "url": "https://github.com/symfony/security-csrf.git",
  9171. "reference": "b44d74295a5651298de8c2760ba50bef3b97f34b"
  9172. },
  9173. "dist": {
  9174. "type": "zip",
  9175. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/b44d74295a5651298de8c2760ba50bef3b97f34b",
  9176. "reference": "b44d74295a5651298de8c2760ba50bef3b97f34b",
  9177. "shasum": ""
  9178. },
  9179. "require": {
  9180. "php": ">=8.1",
  9181. "symfony/security-core": "^5.4|^6.0"
  9182. },
  9183. "conflict": {
  9184. "symfony/http-foundation": "<5.4"
  9185. },
  9186. "require-dev": {
  9187. "symfony/http-foundation": "^5.4|^6.0"
  9188. },
  9189. "suggest": {
  9190. "symfony/http-foundation": "For using the class SessionTokenStorage."
  9191. },
  9192. "type": "library",
  9193. "autoload": {
  9194. "psr-4": {
  9195. "Symfony\\Component\\Security\\Csrf\\": ""
  9196. },
  9197. "exclude-from-classmap": [
  9198. "/Tests/"
  9199. ]
  9200. },
  9201. "notification-url": "https://packagist.org/downloads/",
  9202. "license": [
  9203. "MIT"
  9204. ],
  9205. "authors": [
  9206. {
  9207. "name": "Fabien Potencier",
  9208. "email": "fabien@symfony.com"
  9209. },
  9210. {
  9211. "name": "Symfony Community",
  9212. "homepage": "https://symfony.com/contributors"
  9213. }
  9214. ],
  9215. "description": "Symfony Security Component - CSRF Library",
  9216. "homepage": "https://symfony.com",
  9217. "support": {
  9218. "source": "https://github.com/symfony/security-csrf/tree/v6.1.0"
  9219. },
  9220. "funding": [
  9221. {
  9222. "url": "https://symfony.com/sponsor",
  9223. "type": "custom"
  9224. },
  9225. {
  9226. "url": "https://github.com/fabpot",
  9227. "type": "github"
  9228. },
  9229. {
  9230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9231. "type": "tidelift"
  9232. }
  9233. ],
  9234. "time": "2022-05-14T12:53:54+00:00"
  9235. },
  9236. {
  9237. "name": "symfony/security-http",
  9238. "version": "v6.1.6",
  9239. "source": {
  9240. "type": "git",
  9241. "url": "https://github.com/symfony/security-http.git",
  9242. "reference": "789492510f7127035da8bb5dbb4fb745970e2348"
  9243. },
  9244. "dist": {
  9245. "type": "zip",
  9246. "url": "https://api.github.com/repos/symfony/security-http/zipball/789492510f7127035da8bb5dbb4fb745970e2348",
  9247. "reference": "789492510f7127035da8bb5dbb4fb745970e2348",
  9248. "shasum": ""
  9249. },
  9250. "require": {
  9251. "php": ">=8.1",
  9252. "symfony/http-foundation": "^5.4|^6.0",
  9253. "symfony/http-kernel": "^6.1",
  9254. "symfony/polyfill-mbstring": "~1.0",
  9255. "symfony/property-access": "^5.4|^6.0",
  9256. "symfony/security-core": "^5.4.7|^6.0"
  9257. },
  9258. "conflict": {
  9259. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  9260. "symfony/security-bundle": "<5.4",
  9261. "symfony/security-csrf": "<5.4"
  9262. },
  9263. "require-dev": {
  9264. "psr/log": "^1|^2|^3",
  9265. "symfony/cache": "^5.4|^6.0",
  9266. "symfony/rate-limiter": "^5.4|^6.0",
  9267. "symfony/routing": "^5.4|^6.0",
  9268. "symfony/security-csrf": "^5.4|^6.0",
  9269. "symfony/translation": "^5.4|^6.0"
  9270. },
  9271. "suggest": {
  9272. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  9273. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  9274. },
  9275. "type": "library",
  9276. "autoload": {
  9277. "psr-4": {
  9278. "Symfony\\Component\\Security\\Http\\": ""
  9279. },
  9280. "exclude-from-classmap": [
  9281. "/Tests/"
  9282. ]
  9283. },
  9284. "notification-url": "https://packagist.org/downloads/",
  9285. "license": [
  9286. "MIT"
  9287. ],
  9288. "authors": [
  9289. {
  9290. "name": "Fabien Potencier",
  9291. "email": "fabien@symfony.com"
  9292. },
  9293. {
  9294. "name": "Symfony Community",
  9295. "homepage": "https://symfony.com/contributors"
  9296. }
  9297. ],
  9298. "description": "Symfony Security Component - HTTP Integration",
  9299. "homepage": "https://symfony.com",
  9300. "support": {
  9301. "source": "https://github.com/symfony/security-http/tree/v6.1.6"
  9302. },
  9303. "funding": [
  9304. {
  9305. "url": "https://symfony.com/sponsor",
  9306. "type": "custom"
  9307. },
  9308. {
  9309. "url": "https://github.com/fabpot",
  9310. "type": "github"
  9311. },
  9312. {
  9313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9314. "type": "tidelift"
  9315. }
  9316. ],
  9317. "time": "2022-10-01T16:55:12+00:00"
  9318. },
  9319. {
  9320. "name": "symfony/serializer",
  9321. "version": "v6.1.6",
  9322. "source": {
  9323. "type": "git",
  9324. "url": "https://github.com/symfony/serializer.git",
  9325. "reference": "76af774da9daf606d6400f1445b69d23efa3b238"
  9326. },
  9327. "dist": {
  9328. "type": "zip",
  9329. "url": "https://api.github.com/repos/symfony/serializer/zipball/76af774da9daf606d6400f1445b69d23efa3b238",
  9330. "reference": "76af774da9daf606d6400f1445b69d23efa3b238",
  9331. "shasum": ""
  9332. },
  9333. "require": {
  9334. "php": ">=8.1",
  9335. "symfony/polyfill-ctype": "~1.8"
  9336. },
  9337. "conflict": {
  9338. "doctrine/annotations": "<1.12",
  9339. "phpdocumentor/reflection-docblock": "<3.2.2",
  9340. "phpdocumentor/type-resolver": "<1.4.0",
  9341. "symfony/dependency-injection": "<5.4",
  9342. "symfony/property-access": "<5.4",
  9343. "symfony/property-info": "<5.4",
  9344. "symfony/uid": "<5.4",
  9345. "symfony/yaml": "<5.4"
  9346. },
  9347. "require-dev": {
  9348. "doctrine/annotations": "^1.12",
  9349. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9350. "symfony/cache": "^5.4|^6.0",
  9351. "symfony/config": "^5.4|^6.0",
  9352. "symfony/dependency-injection": "^5.4|^6.0",
  9353. "symfony/error-handler": "^5.4|^6.0",
  9354. "symfony/filesystem": "^5.4|^6.0",
  9355. "symfony/form": "^5.4|^6.0",
  9356. "symfony/http-foundation": "^5.4|^6.0",
  9357. "symfony/http-kernel": "^5.4|^6.0",
  9358. "symfony/mime": "^5.4|^6.0",
  9359. "symfony/property-access": "^5.4|^6.0",
  9360. "symfony/property-info": "^5.4|^6.0",
  9361. "symfony/uid": "^5.4|^6.0",
  9362. "symfony/validator": "^5.4|^6.0",
  9363. "symfony/var-dumper": "^5.4|^6.0",
  9364. "symfony/var-exporter": "^5.4|^6.0",
  9365. "symfony/yaml": "^5.4|^6.0"
  9366. },
  9367. "suggest": {
  9368. "psr/cache-implementation": "For using the metadata cache.",
  9369. "symfony/config": "For using the XML mapping loader.",
  9370. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  9371. "symfony/property-access": "For using the ObjectNormalizer.",
  9372. "symfony/property-info": "To deserialize relations.",
  9373. "symfony/var-exporter": "For using the metadata compiler.",
  9374. "symfony/yaml": "For using the default YAML mapping loader."
  9375. },
  9376. "type": "library",
  9377. "autoload": {
  9378. "psr-4": {
  9379. "Symfony\\Component\\Serializer\\": ""
  9380. },
  9381. "exclude-from-classmap": [
  9382. "/Tests/"
  9383. ]
  9384. },
  9385. "notification-url": "https://packagist.org/downloads/",
  9386. "license": [
  9387. "MIT"
  9388. ],
  9389. "authors": [
  9390. {
  9391. "name": "Fabien Potencier",
  9392. "email": "fabien@symfony.com"
  9393. },
  9394. {
  9395. "name": "Symfony Community",
  9396. "homepage": "https://symfony.com/contributors"
  9397. }
  9398. ],
  9399. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9400. "homepage": "https://symfony.com",
  9401. "support": {
  9402. "source": "https://github.com/symfony/serializer/tree/v6.1.6"
  9403. },
  9404. "funding": [
  9405. {
  9406. "url": "https://symfony.com/sponsor",
  9407. "type": "custom"
  9408. },
  9409. {
  9410. "url": "https://github.com/fabpot",
  9411. "type": "github"
  9412. },
  9413. {
  9414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9415. "type": "tidelift"
  9416. }
  9417. ],
  9418. "time": "2022-10-12T05:10:31+00:00"
  9419. },
  9420. {
  9421. "name": "symfony/service-contracts",
  9422. "version": "v3.1.1",
  9423. "source": {
  9424. "type": "git",
  9425. "url": "https://github.com/symfony/service-contracts.git",
  9426. "reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239"
  9427. },
  9428. "dist": {
  9429. "type": "zip",
  9430. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/925e713fe8fcacf6bc05e936edd8dd5441a21239",
  9431. "reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239",
  9432. "shasum": ""
  9433. },
  9434. "require": {
  9435. "php": ">=8.1",
  9436. "psr/container": "^2.0"
  9437. },
  9438. "conflict": {
  9439. "ext-psr": "<1.1|>=2"
  9440. },
  9441. "suggest": {
  9442. "symfony/service-implementation": ""
  9443. },
  9444. "type": "library",
  9445. "extra": {
  9446. "branch-alias": {
  9447. "dev-main": "3.1-dev"
  9448. },
  9449. "thanks": {
  9450. "name": "symfony/contracts",
  9451. "url": "https://github.com/symfony/contracts"
  9452. }
  9453. },
  9454. "autoload": {
  9455. "psr-4": {
  9456. "Symfony\\Contracts\\Service\\": ""
  9457. },
  9458. "exclude-from-classmap": [
  9459. "/Test/"
  9460. ]
  9461. },
  9462. "notification-url": "https://packagist.org/downloads/",
  9463. "license": [
  9464. "MIT"
  9465. ],
  9466. "authors": [
  9467. {
  9468. "name": "Nicolas Grekas",
  9469. "email": "p@tchwork.com"
  9470. },
  9471. {
  9472. "name": "Symfony Community",
  9473. "homepage": "https://symfony.com/contributors"
  9474. }
  9475. ],
  9476. "description": "Generic abstractions related to writing services",
  9477. "homepage": "https://symfony.com",
  9478. "keywords": [
  9479. "abstractions",
  9480. "contracts",
  9481. "decoupling",
  9482. "interfaces",
  9483. "interoperability",
  9484. "standards"
  9485. ],
  9486. "support": {
  9487. "source": "https://github.com/symfony/service-contracts/tree/v3.1.1"
  9488. },
  9489. "funding": [
  9490. {
  9491. "url": "https://symfony.com/sponsor",
  9492. "type": "custom"
  9493. },
  9494. {
  9495. "url": "https://github.com/fabpot",
  9496. "type": "github"
  9497. },
  9498. {
  9499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9500. "type": "tidelift"
  9501. }
  9502. ],
  9503. "time": "2022-05-30T19:18:58+00:00"
  9504. },
  9505. {
  9506. "name": "symfony/stopwatch",
  9507. "version": "v6.1.5",
  9508. "source": {
  9509. "type": "git",
  9510. "url": "https://github.com/symfony/stopwatch.git",
  9511. "reference": "266636bb8f3fbdccc302491df7b3a1b9a8c238a7"
  9512. },
  9513. "dist": {
  9514. "type": "zip",
  9515. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/266636bb8f3fbdccc302491df7b3a1b9a8c238a7",
  9516. "reference": "266636bb8f3fbdccc302491df7b3a1b9a8c238a7",
  9517. "shasum": ""
  9518. },
  9519. "require": {
  9520. "php": ">=8.1",
  9521. "symfony/service-contracts": "^1|^2|^3"
  9522. },
  9523. "type": "library",
  9524. "autoload": {
  9525. "psr-4": {
  9526. "Symfony\\Component\\Stopwatch\\": ""
  9527. },
  9528. "exclude-from-classmap": [
  9529. "/Tests/"
  9530. ]
  9531. },
  9532. "notification-url": "https://packagist.org/downloads/",
  9533. "license": [
  9534. "MIT"
  9535. ],
  9536. "authors": [
  9537. {
  9538. "name": "Fabien Potencier",
  9539. "email": "fabien@symfony.com"
  9540. },
  9541. {
  9542. "name": "Symfony Community",
  9543. "homepage": "https://symfony.com/contributors"
  9544. }
  9545. ],
  9546. "description": "Provides a way to profile code",
  9547. "homepage": "https://symfony.com",
  9548. "support": {
  9549. "source": "https://github.com/symfony/stopwatch/tree/v6.1.5"
  9550. },
  9551. "funding": [
  9552. {
  9553. "url": "https://symfony.com/sponsor",
  9554. "type": "custom"
  9555. },
  9556. {
  9557. "url": "https://github.com/fabpot",
  9558. "type": "github"
  9559. },
  9560. {
  9561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9562. "type": "tidelift"
  9563. }
  9564. ],
  9565. "time": "2022-09-28T16:00:52+00:00"
  9566. },
  9567. {
  9568. "name": "symfony/string",
  9569. "version": "v6.1.6",
  9570. "source": {
  9571. "type": "git",
  9572. "url": "https://github.com/symfony/string.git",
  9573. "reference": "7e7e0ff180d4c5a6636eaad57b65092014b61864"
  9574. },
  9575. "dist": {
  9576. "type": "zip",
  9577. "url": "https://api.github.com/repos/symfony/string/zipball/7e7e0ff180d4c5a6636eaad57b65092014b61864",
  9578. "reference": "7e7e0ff180d4c5a6636eaad57b65092014b61864",
  9579. "shasum": ""
  9580. },
  9581. "require": {
  9582. "php": ">=8.1",
  9583. "symfony/polyfill-ctype": "~1.8",
  9584. "symfony/polyfill-intl-grapheme": "~1.0",
  9585. "symfony/polyfill-intl-normalizer": "~1.0",
  9586. "symfony/polyfill-mbstring": "~1.0"
  9587. },
  9588. "conflict": {
  9589. "symfony/translation-contracts": "<2.0"
  9590. },
  9591. "require-dev": {
  9592. "symfony/error-handler": "^5.4|^6.0",
  9593. "symfony/http-client": "^5.4|^6.0",
  9594. "symfony/translation-contracts": "^2.0|^3.0",
  9595. "symfony/var-exporter": "^5.4|^6.0"
  9596. },
  9597. "type": "library",
  9598. "autoload": {
  9599. "files": [
  9600. "Resources/functions.php"
  9601. ],
  9602. "psr-4": {
  9603. "Symfony\\Component\\String\\": ""
  9604. },
  9605. "exclude-from-classmap": [
  9606. "/Tests/"
  9607. ]
  9608. },
  9609. "notification-url": "https://packagist.org/downloads/",
  9610. "license": [
  9611. "MIT"
  9612. ],
  9613. "authors": [
  9614. {
  9615. "name": "Nicolas Grekas",
  9616. "email": "p@tchwork.com"
  9617. },
  9618. {
  9619. "name": "Symfony Community",
  9620. "homepage": "https://symfony.com/contributors"
  9621. }
  9622. ],
  9623. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9624. "homepage": "https://symfony.com",
  9625. "keywords": [
  9626. "grapheme",
  9627. "i18n",
  9628. "string",
  9629. "unicode",
  9630. "utf-8",
  9631. "utf8"
  9632. ],
  9633. "support": {
  9634. "source": "https://github.com/symfony/string/tree/v6.1.6"
  9635. },
  9636. "funding": [
  9637. {
  9638. "url": "https://symfony.com/sponsor",
  9639. "type": "custom"
  9640. },
  9641. {
  9642. "url": "https://github.com/fabpot",
  9643. "type": "github"
  9644. },
  9645. {
  9646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9647. "type": "tidelift"
  9648. }
  9649. ],
  9650. "time": "2022-10-10T09:34:31+00:00"
  9651. },
  9652. {
  9653. "name": "symfony/templating",
  9654. "version": "v6.1.3",
  9655. "source": {
  9656. "type": "git",
  9657. "url": "https://github.com/symfony/templating.git",
  9658. "reference": "6d8e5d7cc2d7759aab512e7c7ac3d0bad1c7d3eb"
  9659. },
  9660. "dist": {
  9661. "type": "zip",
  9662. "url": "https://api.github.com/repos/symfony/templating/zipball/6d8e5d7cc2d7759aab512e7c7ac3d0bad1c7d3eb",
  9663. "reference": "6d8e5d7cc2d7759aab512e7c7ac3d0bad1c7d3eb",
  9664. "shasum": ""
  9665. },
  9666. "require": {
  9667. "php": ">=8.1",
  9668. "symfony/polyfill-ctype": "~1.8"
  9669. },
  9670. "require-dev": {
  9671. "psr/log": "^1|^2|^3"
  9672. },
  9673. "suggest": {
  9674. "psr/log-implementation": "For using debug logging in loaders"
  9675. },
  9676. "type": "library",
  9677. "autoload": {
  9678. "psr-4": {
  9679. "Symfony\\Component\\Templating\\": ""
  9680. },
  9681. "exclude-from-classmap": [
  9682. "/Tests/"
  9683. ]
  9684. },
  9685. "notification-url": "https://packagist.org/downloads/",
  9686. "license": [
  9687. "MIT"
  9688. ],
  9689. "authors": [
  9690. {
  9691. "name": "Fabien Potencier",
  9692. "email": "fabien@symfony.com"
  9693. },
  9694. {
  9695. "name": "Symfony Community",
  9696. "homepage": "https://symfony.com/contributors"
  9697. }
  9698. ],
  9699. "description": "Provides all the tools needed to build any kind of template system",
  9700. "homepage": "https://symfony.com",
  9701. "support": {
  9702. "source": "https://github.com/symfony/templating/tree/v6.1.3"
  9703. },
  9704. "funding": [
  9705. {
  9706. "url": "https://symfony.com/sponsor",
  9707. "type": "custom"
  9708. },
  9709. {
  9710. "url": "https://github.com/fabpot",
  9711. "type": "github"
  9712. },
  9713. {
  9714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9715. "type": "tidelift"
  9716. }
  9717. ],
  9718. "time": "2022-06-27T17:24:16+00:00"
  9719. },
  9720. {
  9721. "name": "symfony/translation",
  9722. "version": "v6.1.6",
  9723. "source": {
  9724. "type": "git",
  9725. "url": "https://github.com/symfony/translation.git",
  9726. "reference": "e6cd330e5a072518f88d65148f3f165541807494"
  9727. },
  9728. "dist": {
  9729. "type": "zip",
  9730. "url": "https://api.github.com/repos/symfony/translation/zipball/e6cd330e5a072518f88d65148f3f165541807494",
  9731. "reference": "e6cd330e5a072518f88d65148f3f165541807494",
  9732. "shasum": ""
  9733. },
  9734. "require": {
  9735. "php": ">=8.1",
  9736. "symfony/polyfill-mbstring": "~1.0",
  9737. "symfony/translation-contracts": "^2.3|^3.0"
  9738. },
  9739. "conflict": {
  9740. "symfony/config": "<5.4",
  9741. "symfony/console": "<5.4",
  9742. "symfony/dependency-injection": "<5.4",
  9743. "symfony/http-kernel": "<5.4",
  9744. "symfony/twig-bundle": "<5.4",
  9745. "symfony/yaml": "<5.4"
  9746. },
  9747. "provide": {
  9748. "symfony/translation-implementation": "2.3|3.0"
  9749. },
  9750. "require-dev": {
  9751. "psr/log": "^1|^2|^3",
  9752. "symfony/config": "^5.4|^6.0",
  9753. "symfony/console": "^5.4|^6.0",
  9754. "symfony/dependency-injection": "^5.4|^6.0",
  9755. "symfony/finder": "^5.4|^6.0",
  9756. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  9757. "symfony/http-kernel": "^5.4|^6.0",
  9758. "symfony/intl": "^5.4|^6.0",
  9759. "symfony/polyfill-intl-icu": "^1.21",
  9760. "symfony/routing": "^5.4|^6.0",
  9761. "symfony/service-contracts": "^1.1.2|^2|^3",
  9762. "symfony/yaml": "^5.4|^6.0"
  9763. },
  9764. "suggest": {
  9765. "psr/log-implementation": "To use logging capability in translator",
  9766. "symfony/config": "",
  9767. "symfony/yaml": ""
  9768. },
  9769. "type": "library",
  9770. "autoload": {
  9771. "files": [
  9772. "Resources/functions.php"
  9773. ],
  9774. "psr-4": {
  9775. "Symfony\\Component\\Translation\\": ""
  9776. },
  9777. "exclude-from-classmap": [
  9778. "/Tests/"
  9779. ]
  9780. },
  9781. "notification-url": "https://packagist.org/downloads/",
  9782. "license": [
  9783. "MIT"
  9784. ],
  9785. "authors": [
  9786. {
  9787. "name": "Fabien Potencier",
  9788. "email": "fabien@symfony.com"
  9789. },
  9790. {
  9791. "name": "Symfony Community",
  9792. "homepage": "https://symfony.com/contributors"
  9793. }
  9794. ],
  9795. "description": "Provides tools to internationalize your application",
  9796. "homepage": "https://symfony.com",
  9797. "support": {
  9798. "source": "https://github.com/symfony/translation/tree/v6.1.6"
  9799. },
  9800. "funding": [
  9801. {
  9802. "url": "https://symfony.com/sponsor",
  9803. "type": "custom"
  9804. },
  9805. {
  9806. "url": "https://github.com/fabpot",
  9807. "type": "github"
  9808. },
  9809. {
  9810. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9811. "type": "tidelift"
  9812. }
  9813. ],
  9814. "time": "2022-10-07T08:04:03+00:00"
  9815. },
  9816. {
  9817. "name": "symfony/translation-contracts",
  9818. "version": "v3.1.1",
  9819. "source": {
  9820. "type": "git",
  9821. "url": "https://github.com/symfony/translation-contracts.git",
  9822. "reference": "606be0f48e05116baef052f7f3abdb345c8e02cc"
  9823. },
  9824. "dist": {
  9825. "type": "zip",
  9826. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/606be0f48e05116baef052f7f3abdb345c8e02cc",
  9827. "reference": "606be0f48e05116baef052f7f3abdb345c8e02cc",
  9828. "shasum": ""
  9829. },
  9830. "require": {
  9831. "php": ">=8.1"
  9832. },
  9833. "suggest": {
  9834. "symfony/translation-implementation": ""
  9835. },
  9836. "type": "library",
  9837. "extra": {
  9838. "branch-alias": {
  9839. "dev-main": "3.1-dev"
  9840. },
  9841. "thanks": {
  9842. "name": "symfony/contracts",
  9843. "url": "https://github.com/symfony/contracts"
  9844. }
  9845. },
  9846. "autoload": {
  9847. "psr-4": {
  9848. "Symfony\\Contracts\\Translation\\": ""
  9849. },
  9850. "exclude-from-classmap": [
  9851. "/Test/"
  9852. ]
  9853. },
  9854. "notification-url": "https://packagist.org/downloads/",
  9855. "license": [
  9856. "MIT"
  9857. ],
  9858. "authors": [
  9859. {
  9860. "name": "Nicolas Grekas",
  9861. "email": "p@tchwork.com"
  9862. },
  9863. {
  9864. "name": "Symfony Community",
  9865. "homepage": "https://symfony.com/contributors"
  9866. }
  9867. ],
  9868. "description": "Generic abstractions related to translation",
  9869. "homepage": "https://symfony.com",
  9870. "keywords": [
  9871. "abstractions",
  9872. "contracts",
  9873. "decoupling",
  9874. "interfaces",
  9875. "interoperability",
  9876. "standards"
  9877. ],
  9878. "support": {
  9879. "source": "https://github.com/symfony/translation-contracts/tree/v3.1.1"
  9880. },
  9881. "funding": [
  9882. {
  9883. "url": "https://symfony.com/sponsor",
  9884. "type": "custom"
  9885. },
  9886. {
  9887. "url": "https://github.com/fabpot",
  9888. "type": "github"
  9889. },
  9890. {
  9891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9892. "type": "tidelift"
  9893. }
  9894. ],
  9895. "time": "2022-06-27T17:24:16+00:00"
  9896. },
  9897. {
  9898. "name": "symfony/twig-bridge",
  9899. "version": "v6.1.6",
  9900. "source": {
  9901. "type": "git",
  9902. "url": "https://github.com/symfony/twig-bridge.git",
  9903. "reference": "368e9bac2dbaed85d943745b521077f8101b599d"
  9904. },
  9905. "dist": {
  9906. "type": "zip",
  9907. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/368e9bac2dbaed85d943745b521077f8101b599d",
  9908. "reference": "368e9bac2dbaed85d943745b521077f8101b599d",
  9909. "shasum": ""
  9910. },
  9911. "require": {
  9912. "php": ">=8.1",
  9913. "symfony/translation-contracts": "^1.1|^2|^3",
  9914. "twig/twig": "^2.13|^3.0.4"
  9915. },
  9916. "conflict": {
  9917. "phpdocumentor/reflection-docblock": "<3.2.2",
  9918. "phpdocumentor/type-resolver": "<1.4.0",
  9919. "symfony/console": "<5.4",
  9920. "symfony/form": "<6.1",
  9921. "symfony/http-foundation": "<5.4",
  9922. "symfony/http-kernel": "<5.4",
  9923. "symfony/translation": "<5.4",
  9924. "symfony/workflow": "<5.4"
  9925. },
  9926. "require-dev": {
  9927. "doctrine/annotations": "^1.12",
  9928. "egulias/email-validator": "^2.1.10|^3",
  9929. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  9930. "symfony/asset": "^5.4|^6.0",
  9931. "symfony/console": "^5.4|^6.0",
  9932. "symfony/dependency-injection": "^5.4|^6.0",
  9933. "symfony/expression-language": "^5.4|^6.0",
  9934. "symfony/finder": "^5.4|^6.0",
  9935. "symfony/form": "^6.1",
  9936. "symfony/html-sanitizer": "^6.1",
  9937. "symfony/http-foundation": "^5.4|^6.0",
  9938. "symfony/http-kernel": "^5.4|^6.0",
  9939. "symfony/intl": "^5.4|^6.0",
  9940. "symfony/mime": "^5.4|^6.0",
  9941. "symfony/polyfill-intl-icu": "~1.0",
  9942. "symfony/property-info": "^5.4|^6.0",
  9943. "symfony/routing": "^5.4|^6.0",
  9944. "symfony/security-acl": "^2.8|^3.0",
  9945. "symfony/security-core": "^5.4|^6.0",
  9946. "symfony/security-csrf": "^5.4|^6.0",
  9947. "symfony/security-http": "^5.4|^6.0",
  9948. "symfony/serializer": "^5.4|^6.0",
  9949. "symfony/stopwatch": "^5.4|^6.0",
  9950. "symfony/translation": "^5.4|^6.0",
  9951. "symfony/web-link": "^5.4|^6.0",
  9952. "symfony/workflow": "^5.4|^6.0",
  9953. "symfony/yaml": "^5.4|^6.0",
  9954. "twig/cssinliner-extra": "^2.12|^3",
  9955. "twig/inky-extra": "^2.12|^3",
  9956. "twig/markdown-extra": "^2.12|^3"
  9957. },
  9958. "suggest": {
  9959. "symfony/asset": "For using the AssetExtension",
  9960. "symfony/expression-language": "For using the ExpressionExtension",
  9961. "symfony/finder": "",
  9962. "symfony/form": "For using the FormExtension",
  9963. "symfony/html-sanitizer": "For using the HtmlSanitizerExtension",
  9964. "symfony/http-kernel": "For using the HttpKernelExtension",
  9965. "symfony/routing": "For using the RoutingExtension",
  9966. "symfony/security-core": "For using the SecurityExtension",
  9967. "symfony/security-csrf": "For using the CsrfExtension",
  9968. "symfony/security-http": "For using the LogoutUrlExtension",
  9969. "symfony/stopwatch": "For using the StopwatchExtension",
  9970. "symfony/translation": "For using the TranslationExtension",
  9971. "symfony/var-dumper": "For using the DumpExtension",
  9972. "symfony/web-link": "For using the WebLinkExtension",
  9973. "symfony/yaml": "For using the YamlExtension"
  9974. },
  9975. "type": "symfony-bridge",
  9976. "autoload": {
  9977. "psr-4": {
  9978. "Symfony\\Bridge\\Twig\\": ""
  9979. },
  9980. "exclude-from-classmap": [
  9981. "/Tests/"
  9982. ]
  9983. },
  9984. "notification-url": "https://packagist.org/downloads/",
  9985. "license": [
  9986. "MIT"
  9987. ],
  9988. "authors": [
  9989. {
  9990. "name": "Fabien Potencier",
  9991. "email": "fabien@symfony.com"
  9992. },
  9993. {
  9994. "name": "Symfony Community",
  9995. "homepage": "https://symfony.com/contributors"
  9996. }
  9997. ],
  9998. "description": "Provides integration for Twig with various Symfony components",
  9999. "homepage": "https://symfony.com",
  10000. "support": {
  10001. "source": "https://github.com/symfony/twig-bridge/tree/v6.1.6"
  10002. },
  10003. "funding": [
  10004. {
  10005. "url": "https://symfony.com/sponsor",
  10006. "type": "custom"
  10007. },
  10008. {
  10009. "url": "https://github.com/fabpot",
  10010. "type": "github"
  10011. },
  10012. {
  10013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10014. "type": "tidelift"
  10015. }
  10016. ],
  10017. "time": "2022-10-12T05:10:31+00:00"
  10018. },
  10019. {
  10020. "name": "symfony/twig-bundle",
  10021. "version": "v6.1.1",
  10022. "source": {
  10023. "type": "git",
  10024. "url": "https://github.com/symfony/twig-bundle.git",
  10025. "reference": "a2abab10068525a7f5a879e40e411d369d688545"
  10026. },
  10027. "dist": {
  10028. "type": "zip",
  10029. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/a2abab10068525a7f5a879e40e411d369d688545",
  10030. "reference": "a2abab10068525a7f5a879e40e411d369d688545",
  10031. "shasum": ""
  10032. },
  10033. "require": {
  10034. "composer-runtime-api": ">=2.1",
  10035. "php": ">=8.1",
  10036. "symfony/config": "^5.4|^6.0",
  10037. "symfony/dependency-injection": "^5.4|^6.0",
  10038. "symfony/http-foundation": "^5.4|^6.0",
  10039. "symfony/http-kernel": "^5.4|^6.0",
  10040. "symfony/polyfill-ctype": "~1.8",
  10041. "symfony/twig-bridge": "^5.4|^6.0",
  10042. "twig/twig": "^2.13|^3.0.4"
  10043. },
  10044. "conflict": {
  10045. "symfony/framework-bundle": "<5.4",
  10046. "symfony/translation": "<5.4"
  10047. },
  10048. "require-dev": {
  10049. "doctrine/annotations": "^1.10.4",
  10050. "symfony/asset": "^5.4|^6.0",
  10051. "symfony/expression-language": "^5.4|^6.0",
  10052. "symfony/finder": "^5.4|^6.0",
  10053. "symfony/form": "^5.4|^6.0",
  10054. "symfony/framework-bundle": "^5.4|^6.0",
  10055. "symfony/routing": "^5.4|^6.0",
  10056. "symfony/stopwatch": "^5.4|^6.0",
  10057. "symfony/translation": "^5.4|^6.0",
  10058. "symfony/web-link": "^5.4|^6.0",
  10059. "symfony/yaml": "^5.4|^6.0"
  10060. },
  10061. "type": "symfony-bundle",
  10062. "autoload": {
  10063. "psr-4": {
  10064. "Symfony\\Bundle\\TwigBundle\\": ""
  10065. },
  10066. "exclude-from-classmap": [
  10067. "/Tests/"
  10068. ]
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "MIT"
  10073. ],
  10074. "authors": [
  10075. {
  10076. "name": "Fabien Potencier",
  10077. "email": "fabien@symfony.com"
  10078. },
  10079. {
  10080. "name": "Symfony Community",
  10081. "homepage": "https://symfony.com/contributors"
  10082. }
  10083. ],
  10084. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  10085. "homepage": "https://symfony.com",
  10086. "support": {
  10087. "source": "https://github.com/symfony/twig-bundle/tree/v6.1.1"
  10088. },
  10089. "funding": [
  10090. {
  10091. "url": "https://symfony.com/sponsor",
  10092. "type": "custom"
  10093. },
  10094. {
  10095. "url": "https://github.com/fabpot",
  10096. "type": "github"
  10097. },
  10098. {
  10099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10100. "type": "tidelift"
  10101. }
  10102. ],
  10103. "time": "2022-05-27T16:55:36+00:00"
  10104. },
  10105. {
  10106. "name": "symfony/validator",
  10107. "version": "v6.1.6",
  10108. "source": {
  10109. "type": "git",
  10110. "url": "https://github.com/symfony/validator.git",
  10111. "reference": "e5589882403e1e19774d7c5ffb65d9c6466d216c"
  10112. },
  10113. "dist": {
  10114. "type": "zip",
  10115. "url": "https://api.github.com/repos/symfony/validator/zipball/e5589882403e1e19774d7c5ffb65d9c6466d216c",
  10116. "reference": "e5589882403e1e19774d7c5ffb65d9c6466d216c",
  10117. "shasum": ""
  10118. },
  10119. "require": {
  10120. "php": ">=8.1",
  10121. "symfony/deprecation-contracts": "^2.1|^3",
  10122. "symfony/polyfill-ctype": "~1.8",
  10123. "symfony/polyfill-mbstring": "~1.0",
  10124. "symfony/translation-contracts": "^1.1|^2|^3"
  10125. },
  10126. "conflict": {
  10127. "doctrine/annotations": "<1.13",
  10128. "doctrine/lexer": "<1.1",
  10129. "phpunit/phpunit": "<5.4.3",
  10130. "symfony/dependency-injection": "<5.4",
  10131. "symfony/expression-language": "<5.4",
  10132. "symfony/http-kernel": "<5.4",
  10133. "symfony/intl": "<5.4",
  10134. "symfony/property-info": "<5.4",
  10135. "symfony/translation": "<5.4",
  10136. "symfony/yaml": "<5.4"
  10137. },
  10138. "require-dev": {
  10139. "doctrine/annotations": "^1.13",
  10140. "egulias/email-validator": "^2.1.10|^3",
  10141. "symfony/cache": "^5.4|^6.0",
  10142. "symfony/config": "^5.4|^6.0",
  10143. "symfony/console": "^5.4|^6.0",
  10144. "symfony/dependency-injection": "^5.4|^6.0",
  10145. "symfony/expression-language": "^5.4|^6.0",
  10146. "symfony/finder": "^5.4|^6.0",
  10147. "symfony/http-client": "^5.4|^6.0",
  10148. "symfony/http-foundation": "^5.4|^6.0",
  10149. "symfony/http-kernel": "^5.4|^6.0",
  10150. "symfony/intl": "^5.4|^6.0",
  10151. "symfony/mime": "^5.4|^6.0",
  10152. "symfony/property-access": "^5.4|^6.0",
  10153. "symfony/property-info": "^5.4|^6.0",
  10154. "symfony/translation": "^5.4|^6.0",
  10155. "symfony/yaml": "^5.4|^6.0"
  10156. },
  10157. "suggest": {
  10158. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10159. "psr/cache-implementation": "For using the mapping cache.",
  10160. "symfony/config": "",
  10161. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  10162. "symfony/http-foundation": "",
  10163. "symfony/intl": "",
  10164. "symfony/property-access": "For accessing properties within comparison constraints",
  10165. "symfony/property-info": "To automatically add NotNull and Type constraints",
  10166. "symfony/translation": "For translating validation errors.",
  10167. "symfony/yaml": ""
  10168. },
  10169. "type": "library",
  10170. "autoload": {
  10171. "psr-4": {
  10172. "Symfony\\Component\\Validator\\": ""
  10173. },
  10174. "exclude-from-classmap": [
  10175. "/Tests/"
  10176. ]
  10177. },
  10178. "notification-url": "https://packagist.org/downloads/",
  10179. "license": [
  10180. "MIT"
  10181. ],
  10182. "authors": [
  10183. {
  10184. "name": "Fabien Potencier",
  10185. "email": "fabien@symfony.com"
  10186. },
  10187. {
  10188. "name": "Symfony Community",
  10189. "homepage": "https://symfony.com/contributors"
  10190. }
  10191. ],
  10192. "description": "Provides tools to validate values",
  10193. "homepage": "https://symfony.com",
  10194. "support": {
  10195. "source": "https://github.com/symfony/validator/tree/v6.1.6"
  10196. },
  10197. "funding": [
  10198. {
  10199. "url": "https://symfony.com/sponsor",
  10200. "type": "custom"
  10201. },
  10202. {
  10203. "url": "https://github.com/fabpot",
  10204. "type": "github"
  10205. },
  10206. {
  10207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10208. "type": "tidelift"
  10209. }
  10210. ],
  10211. "time": "2022-10-02T08:30:52+00:00"
  10212. },
  10213. {
  10214. "name": "symfony/var-dumper",
  10215. "version": "v6.1.6",
  10216. "source": {
  10217. "type": "git",
  10218. "url": "https://github.com/symfony/var-dumper.git",
  10219. "reference": "0f0adde127f24548e23cbde83bcaeadc491c551f"
  10220. },
  10221. "dist": {
  10222. "type": "zip",
  10223. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0f0adde127f24548e23cbde83bcaeadc491c551f",
  10224. "reference": "0f0adde127f24548e23cbde83bcaeadc491c551f",
  10225. "shasum": ""
  10226. },
  10227. "require": {
  10228. "php": ">=8.1",
  10229. "symfony/polyfill-mbstring": "~1.0"
  10230. },
  10231. "conflict": {
  10232. "phpunit/phpunit": "<5.4.3",
  10233. "symfony/console": "<5.4"
  10234. },
  10235. "require-dev": {
  10236. "ext-iconv": "*",
  10237. "symfony/console": "^5.4|^6.0",
  10238. "symfony/process": "^5.4|^6.0",
  10239. "symfony/uid": "^5.4|^6.0",
  10240. "twig/twig": "^2.13|^3.0.4"
  10241. },
  10242. "suggest": {
  10243. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10244. "ext-intl": "To show region name in time zone dump",
  10245. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10246. },
  10247. "bin": [
  10248. "Resources/bin/var-dump-server"
  10249. ],
  10250. "type": "library",
  10251. "autoload": {
  10252. "files": [
  10253. "Resources/functions/dump.php"
  10254. ],
  10255. "psr-4": {
  10256. "Symfony\\Component\\VarDumper\\": ""
  10257. },
  10258. "exclude-from-classmap": [
  10259. "/Tests/"
  10260. ]
  10261. },
  10262. "notification-url": "https://packagist.org/downloads/",
  10263. "license": [
  10264. "MIT"
  10265. ],
  10266. "authors": [
  10267. {
  10268. "name": "Nicolas Grekas",
  10269. "email": "p@tchwork.com"
  10270. },
  10271. {
  10272. "name": "Symfony Community",
  10273. "homepage": "https://symfony.com/contributors"
  10274. }
  10275. ],
  10276. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10277. "homepage": "https://symfony.com",
  10278. "keywords": [
  10279. "debug",
  10280. "dump"
  10281. ],
  10282. "support": {
  10283. "source": "https://github.com/symfony/var-dumper/tree/v6.1.6"
  10284. },
  10285. "funding": [
  10286. {
  10287. "url": "https://symfony.com/sponsor",
  10288. "type": "custom"
  10289. },
  10290. {
  10291. "url": "https://github.com/fabpot",
  10292. "type": "github"
  10293. },
  10294. {
  10295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10296. "type": "tidelift"
  10297. }
  10298. ],
  10299. "time": "2022-10-07T08:04:03+00:00"
  10300. },
  10301. {
  10302. "name": "symfony/var-exporter",
  10303. "version": "v6.1.3",
  10304. "source": {
  10305. "type": "git",
  10306. "url": "https://github.com/symfony/var-exporter.git",
  10307. "reference": "b49350f45cebbba6e5286485264b912f2bcfc9ef"
  10308. },
  10309. "dist": {
  10310. "type": "zip",
  10311. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b49350f45cebbba6e5286485264b912f2bcfc9ef",
  10312. "reference": "b49350f45cebbba6e5286485264b912f2bcfc9ef",
  10313. "shasum": ""
  10314. },
  10315. "require": {
  10316. "php": ">=8.1"
  10317. },
  10318. "require-dev": {
  10319. "symfony/var-dumper": "^5.4|^6.0"
  10320. },
  10321. "type": "library",
  10322. "autoload": {
  10323. "psr-4": {
  10324. "Symfony\\Component\\VarExporter\\": ""
  10325. },
  10326. "exclude-from-classmap": [
  10327. "/Tests/"
  10328. ]
  10329. },
  10330. "notification-url": "https://packagist.org/downloads/",
  10331. "license": [
  10332. "MIT"
  10333. ],
  10334. "authors": [
  10335. {
  10336. "name": "Nicolas Grekas",
  10337. "email": "p@tchwork.com"
  10338. },
  10339. {
  10340. "name": "Symfony Community",
  10341. "homepage": "https://symfony.com/contributors"
  10342. }
  10343. ],
  10344. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  10345. "homepage": "https://symfony.com",
  10346. "keywords": [
  10347. "clone",
  10348. "construct",
  10349. "export",
  10350. "hydrate",
  10351. "instantiate",
  10352. "serialize"
  10353. ],
  10354. "support": {
  10355. "source": "https://github.com/symfony/var-exporter/tree/v6.1.3"
  10356. },
  10357. "funding": [
  10358. {
  10359. "url": "https://symfony.com/sponsor",
  10360. "type": "custom"
  10361. },
  10362. {
  10363. "url": "https://github.com/fabpot",
  10364. "type": "github"
  10365. },
  10366. {
  10367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10368. "type": "tidelift"
  10369. }
  10370. ],
  10371. "time": "2022-07-04T16:01:56+00:00"
  10372. },
  10373. {
  10374. "name": "symfony/web-link",
  10375. "version": "v6.1.0",
  10376. "source": {
  10377. "type": "git",
  10378. "url": "https://github.com/symfony/web-link.git",
  10379. "reference": "d6ef738f97b60d859652d92f10bf8645bca28cd6"
  10380. },
  10381. "dist": {
  10382. "type": "zip",
  10383. "url": "https://api.github.com/repos/symfony/web-link/zipball/d6ef738f97b60d859652d92f10bf8645bca28cd6",
  10384. "reference": "d6ef738f97b60d859652d92f10bf8645bca28cd6",
  10385. "shasum": ""
  10386. },
  10387. "require": {
  10388. "php": ">=8.1",
  10389. "psr/link": "^1.1|^2.0"
  10390. },
  10391. "conflict": {
  10392. "symfony/http-kernel": "<5.4"
  10393. },
  10394. "provide": {
  10395. "psr/link-implementation": "1.0|2.0"
  10396. },
  10397. "require-dev": {
  10398. "symfony/http-kernel": "^5.4|^6.0"
  10399. },
  10400. "suggest": {
  10401. "symfony/http-kernel": ""
  10402. },
  10403. "type": "library",
  10404. "autoload": {
  10405. "psr-4": {
  10406. "Symfony\\Component\\WebLink\\": ""
  10407. },
  10408. "exclude-from-classmap": [
  10409. "/Tests/"
  10410. ]
  10411. },
  10412. "notification-url": "https://packagist.org/downloads/",
  10413. "license": [
  10414. "MIT"
  10415. ],
  10416. "authors": [
  10417. {
  10418. "name": "Kévin Dunglas",
  10419. "email": "dunglas@gmail.com"
  10420. },
  10421. {
  10422. "name": "Symfony Community",
  10423. "homepage": "https://symfony.com/contributors"
  10424. }
  10425. ],
  10426. "description": "Manages links between resources",
  10427. "homepage": "https://symfony.com",
  10428. "keywords": [
  10429. "dns-prefetch",
  10430. "http",
  10431. "http2",
  10432. "link",
  10433. "performance",
  10434. "prefetch",
  10435. "preload",
  10436. "prerender",
  10437. "psr13",
  10438. "push"
  10439. ],
  10440. "support": {
  10441. "source": "https://github.com/symfony/web-link/tree/v6.1.0"
  10442. },
  10443. "funding": [
  10444. {
  10445. "url": "https://symfony.com/sponsor",
  10446. "type": "custom"
  10447. },
  10448. {
  10449. "url": "https://github.com/fabpot",
  10450. "type": "github"
  10451. },
  10452. {
  10453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10454. "type": "tidelift"
  10455. }
  10456. ],
  10457. "time": "2022-02-25T11:15:52+00:00"
  10458. },
  10459. {
  10460. "name": "symfony/yaml",
  10461. "version": "v6.1.6",
  10462. "source": {
  10463. "type": "git",
  10464. "url": "https://github.com/symfony/yaml.git",
  10465. "reference": "66c6b0cf52b00f74614a2cf7ae7db08ea1095931"
  10466. },
  10467. "dist": {
  10468. "type": "zip",
  10469. "url": "https://api.github.com/repos/symfony/yaml/zipball/66c6b0cf52b00f74614a2cf7ae7db08ea1095931",
  10470. "reference": "66c6b0cf52b00f74614a2cf7ae7db08ea1095931",
  10471. "shasum": ""
  10472. },
  10473. "require": {
  10474. "php": ">=8.1",
  10475. "symfony/polyfill-ctype": "^1.8"
  10476. },
  10477. "conflict": {
  10478. "symfony/console": "<5.4"
  10479. },
  10480. "require-dev": {
  10481. "symfony/console": "^5.4|^6.0"
  10482. },
  10483. "suggest": {
  10484. "symfony/console": "For validating YAML files using the lint command"
  10485. },
  10486. "bin": [
  10487. "Resources/bin/yaml-lint"
  10488. ],
  10489. "type": "library",
  10490. "autoload": {
  10491. "psr-4": {
  10492. "Symfony\\Component\\Yaml\\": ""
  10493. },
  10494. "exclude-from-classmap": [
  10495. "/Tests/"
  10496. ]
  10497. },
  10498. "notification-url": "https://packagist.org/downloads/",
  10499. "license": [
  10500. "MIT"
  10501. ],
  10502. "authors": [
  10503. {
  10504. "name": "Fabien Potencier",
  10505. "email": "fabien@symfony.com"
  10506. },
  10507. {
  10508. "name": "Symfony Community",
  10509. "homepage": "https://symfony.com/contributors"
  10510. }
  10511. ],
  10512. "description": "Loads and dumps YAML files",
  10513. "homepage": "https://symfony.com",
  10514. "support": {
  10515. "source": "https://github.com/symfony/yaml/tree/v6.1.6"
  10516. },
  10517. "funding": [
  10518. {
  10519. "url": "https://symfony.com/sponsor",
  10520. "type": "custom"
  10521. },
  10522. {
  10523. "url": "https://github.com/fabpot",
  10524. "type": "github"
  10525. },
  10526. {
  10527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10528. "type": "tidelift"
  10529. }
  10530. ],
  10531. "time": "2022-10-07T08:04:03+00:00"
  10532. },
  10533. {
  10534. "name": "symfonycasts/reset-password-bundle",
  10535. "version": "v1.14.1",
  10536. "source": {
  10537. "type": "git",
  10538. "url": "https://github.com/SymfonyCasts/reset-password-bundle.git",
  10539. "reference": "d906b72cff9a0683075041776a9c5e874df1918b"
  10540. },
  10541. "dist": {
  10542. "type": "zip",
  10543. "url": "https://api.github.com/repos/SymfonyCasts/reset-password-bundle/zipball/d906b72cff9a0683075041776a9c5e874df1918b",
  10544. "reference": "d906b72cff9a0683075041776a9c5e874df1918b",
  10545. "shasum": ""
  10546. },
  10547. "require": {
  10548. "php": ">=7.2.5",
  10549. "symfony/config": "^4.4 | ^5.0 | ^6.0",
  10550. "symfony/dependency-injection": "^4.4 | ^5.0 | ^6.0",
  10551. "symfony/deprecation-contracts": "^2.2 | ^3.0",
  10552. "symfony/http-kernel": "^4.4 | ^5.0 | ^6.0"
  10553. },
  10554. "conflict": {
  10555. "doctrine/orm": "<2.7",
  10556. "symfony/framework-bundle": "<4.4",
  10557. "symfony/http-foundation": "<4.4"
  10558. },
  10559. "require-dev": {
  10560. "doctrine/doctrine-bundle": "^2.0.3",
  10561. "doctrine/orm": "^2.7",
  10562. "symfony/framework-bundle": "^4.4 | ^5.0 | ^6.0",
  10563. "symfony/phpunit-bridge": "^5.0 | ^6.0",
  10564. "vimeo/psalm": "^4.3"
  10565. },
  10566. "type": "symfony-bundle",
  10567. "autoload": {
  10568. "psr-4": {
  10569. "SymfonyCasts\\Bundle\\ResetPassword\\": "src/"
  10570. }
  10571. },
  10572. "notification-url": "https://packagist.org/downloads/",
  10573. "license": [
  10574. "MIT"
  10575. ],
  10576. "description": "Symfony bundle that adds password reset functionality.",
  10577. "support": {
  10578. "issues": "https://github.com/SymfonyCasts/reset-password-bundle/issues",
  10579. "source": "https://github.com/SymfonyCasts/reset-password-bundle/tree/v1.14.1"
  10580. },
  10581. "time": "2022-08-03T17:23:36+00:00"
  10582. },
  10583. {
  10584. "name": "symfonycasts/verify-email-bundle",
  10585. "version": "v1.12.0",
  10586. "source": {
  10587. "type": "git",
  10588. "url": "https://github.com/SymfonyCasts/verify-email-bundle.git",
  10589. "reference": "c60349bf5a6f5e9a40bd88ec7d19b9ffd7f6af12"
  10590. },
  10591. "dist": {
  10592. "type": "zip",
  10593. "url": "https://api.github.com/repos/SymfonyCasts/verify-email-bundle/zipball/c60349bf5a6f5e9a40bd88ec7d19b9ffd7f6af12",
  10594. "reference": "c60349bf5a6f5e9a40bd88ec7d19b9ffd7f6af12",
  10595. "shasum": ""
  10596. },
  10597. "require": {
  10598. "ext-json": "*",
  10599. "php": ">=7.2.5",
  10600. "symfony/config": "^5.4 | ^6.0",
  10601. "symfony/dependency-injection": "^5.4 | ^6.0",
  10602. "symfony/deprecation-contracts": "^2.2 | ^3.0",
  10603. "symfony/http-kernel": "^5.4 | ^6.0",
  10604. "symfony/routing": "^5.4 | ^6.0"
  10605. },
  10606. "require-dev": {
  10607. "doctrine/orm": "^2.7",
  10608. "doctrine/persistence": "^2.0",
  10609. "symfony/framework-bundle": "^5.4 | ^6.0",
  10610. "symfony/phpunit-bridge": "^5.4 | ^6.0",
  10611. "vimeo/psalm": "^4.3"
  10612. },
  10613. "type": "symfony-bundle",
  10614. "autoload": {
  10615. "psr-4": {
  10616. "SymfonyCasts\\Bundle\\VerifyEmail\\": "src/"
  10617. }
  10618. },
  10619. "notification-url": "https://packagist.org/downloads/",
  10620. "license": [
  10621. "MIT"
  10622. ],
  10623. "description": "Simple, stylish Email Verification for Symfony",
  10624. "support": {
  10625. "issues": "https://github.com/SymfonyCasts/verify-email-bundle/issues",
  10626. "source": "https://github.com/SymfonyCasts/verify-email-bundle/tree/v1.12.0"
  10627. },
  10628. "time": "2022-10-04T08:35:54+00:00"
  10629. },
  10630. {
  10631. "name": "tgalopin/html-sanitizer",
  10632. "version": "1.5.0",
  10633. "source": {
  10634. "type": "git",
  10635. "url": "https://github.com/tgalopin/html-sanitizer.git",
  10636. "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913"
  10637. },
  10638. "dist": {
  10639. "type": "zip",
  10640. "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913",
  10641. "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913",
  10642. "shasum": ""
  10643. },
  10644. "require": {
  10645. "ext-dom": "*",
  10646. "league/uri-parser": "^1.4.1",
  10647. "masterminds/html5": "^2.4",
  10648. "php": ">=7.1",
  10649. "psr/log": "^1.0|^2.0|^3.0"
  10650. },
  10651. "require-dev": {
  10652. "phpunit/phpunit": "^7.4",
  10653. "symfony/var-dumper": "^4.1"
  10654. },
  10655. "type": "library",
  10656. "autoload": {
  10657. "psr-4": {
  10658. "HtmlSanitizer\\": "src"
  10659. }
  10660. },
  10661. "notification-url": "https://packagist.org/downloads/",
  10662. "license": [
  10663. "MIT"
  10664. ],
  10665. "authors": [
  10666. {
  10667. "name": "Titouan Galopin",
  10668. "email": "galopintitouan@gmail.com"
  10669. }
  10670. ],
  10671. "description": "Sanitize untrustworthy HTML user input",
  10672. "support": {
  10673. "issues": "https://github.com/tgalopin/html-sanitizer/issues",
  10674. "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0"
  10675. },
  10676. "abandoned": "symfony/html-sanitizer",
  10677. "time": "2021-09-14T08:27:50+00:00"
  10678. },
  10679. {
  10680. "name": "tgalopin/html-sanitizer-bundle",
  10681. "version": "1.4.0",
  10682. "source": {
  10683. "type": "git",
  10684. "url": "https://github.com/tgalopin/html-sanitizer-bundle.git",
  10685. "reference": "d5a59d214c6e8eeebd67c103288e3659027144a7"
  10686. },
  10687. "dist": {
  10688. "type": "zip",
  10689. "url": "https://api.github.com/repos/tgalopin/html-sanitizer-bundle/zipball/d5a59d214c6e8eeebd67c103288e3659027144a7",
  10690. "reference": "d5a59d214c6e8eeebd67c103288e3659027144a7",
  10691. "shasum": ""
  10692. },
  10693. "require": {
  10694. "php": ">=7.1",
  10695. "symfony/framework-bundle": "^3.4|^4.0|^5.0|^6.0",
  10696. "tgalopin/html-sanitizer": "^1.1"
  10697. },
  10698. "require-dev": {
  10699. "phpunit/phpunit": "^7.4",
  10700. "symfony/form": "^4.1|^5.0|^6.0",
  10701. "symfony/twig-bundle": "^4.1|^5.0|^6.0",
  10702. "symfony/var-dumper": "^4.1|^5.0|^6.0"
  10703. },
  10704. "type": "symfony-bundle",
  10705. "autoload": {
  10706. "psr-4": {
  10707. "HtmlSanitizer\\Bundle\\": "src"
  10708. }
  10709. },
  10710. "notification-url": "https://packagist.org/downloads/",
  10711. "license": [
  10712. "MIT"
  10713. ],
  10714. "authors": [
  10715. {
  10716. "name": "Titouan Galopin",
  10717. "email": "galopintitouan@gmail.com"
  10718. }
  10719. ],
  10720. "description": "Symfony Bundle for https://github.com/tgalopin/html-sanitizer",
  10721. "support": {
  10722. "issues": "https://github.com/tgalopin/html-sanitizer-bundle/issues",
  10723. "source": "https://github.com/tgalopin/html-sanitizer-bundle/tree/1.4.0"
  10724. },
  10725. "abandoned": "symfony/html-sanitizer",
  10726. "time": "2021-11-25T21:37:14+00:00"
  10727. },
  10728. {
  10729. "name": "theofidry/psysh-bundle",
  10730. "version": "4.5.0",
  10731. "source": {
  10732. "type": "git",
  10733. "url": "https://github.com/theofidry/PsyshBundle.git",
  10734. "reference": "cc487815fba1ed57481b493f48c9a5d943ec469e"
  10735. },
  10736. "dist": {
  10737. "type": "zip",
  10738. "url": "https://api.github.com/repos/theofidry/PsyshBundle/zipball/cc487815fba1ed57481b493f48c9a5d943ec469e",
  10739. "reference": "cc487815fba1ed57481b493f48c9a5d943ec469e",
  10740. "shasum": ""
  10741. },
  10742. "require": {
  10743. "php": ">=8.0",
  10744. "psy/psysh": "^0.11",
  10745. "symfony/error-handler": "^5.4|^6.0",
  10746. "symfony/expression-language": "^5.4|^6.0",
  10747. "symfony/framework-bundle": "^5.4|^6.0"
  10748. },
  10749. "require-dev": {
  10750. "phpunit/phpunit": "^9.5",
  10751. "symfony/symfony": "^5.4|^6.0"
  10752. },
  10753. "type": "symfony-bundle",
  10754. "autoload": {
  10755. "files": [
  10756. "src/psysh.php"
  10757. ],
  10758. "psr-4": {
  10759. "Fidry\\PsyshBundle\\": "src"
  10760. }
  10761. },
  10762. "notification-url": "https://packagist.org/downloads/",
  10763. "license": [
  10764. "MIT"
  10765. ],
  10766. "authors": [
  10767. {
  10768. "name": "Adrian Palmer",
  10769. "email": "navitronic@gmail.com"
  10770. },
  10771. {
  10772. "name": "Théo FIDRY",
  10773. "email": "theo.fidry@gmail.com",
  10774. "homepage": "https://github.com/theofidry"
  10775. }
  10776. ],
  10777. "description": "A port of the PHP REPL PsySH for Symfony.",
  10778. "keywords": [
  10779. "REPL",
  10780. "console",
  10781. "interactive",
  10782. "psysh",
  10783. "shell",
  10784. "symfony"
  10785. ],
  10786. "support": {
  10787. "issues": "https://github.com/theofidry/PsyshBundle/issues",
  10788. "source": "https://github.com/theofidry/PsyshBundle/tree/4.5.0"
  10789. },
  10790. "funding": [
  10791. {
  10792. "url": "https://github.com/theofidry",
  10793. "type": "github"
  10794. }
  10795. ],
  10796. "time": "2021-12-29T22:21:17+00:00"
  10797. },
  10798. {
  10799. "name": "twig/extra-bundle",
  10800. "version": "v3.4.0",
  10801. "source": {
  10802. "type": "git",
  10803. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  10804. "reference": "2e58256b0e9fe52f30149347c0547e4633304765"
  10805. },
  10806. "dist": {
  10807. "type": "zip",
  10808. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/2e58256b0e9fe52f30149347c0547e4633304765",
  10809. "reference": "2e58256b0e9fe52f30149347c0547e4633304765",
  10810. "shasum": ""
  10811. },
  10812. "require": {
  10813. "php": ">=7.2.5",
  10814. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  10815. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  10816. "twig/twig": "^2.7|^3.0"
  10817. },
  10818. "require-dev": {
  10819. "league/commonmark": "^1.0|^2.0",
  10820. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  10821. "twig/cache-extra": "^3.0",
  10822. "twig/cssinliner-extra": "^2.12|^3.0",
  10823. "twig/html-extra": "^2.12|^3.0",
  10824. "twig/inky-extra": "^2.12|^3.0",
  10825. "twig/intl-extra": "^2.12|^3.0",
  10826. "twig/markdown-extra": "^2.12|^3.0",
  10827. "twig/string-extra": "^2.12|^3.0"
  10828. },
  10829. "type": "symfony-bundle",
  10830. "extra": {
  10831. "branch-alias": {
  10832. "dev-master": "3.2-dev"
  10833. }
  10834. },
  10835. "autoload": {
  10836. "psr-4": {
  10837. "Twig\\Extra\\TwigExtraBundle\\": ""
  10838. },
  10839. "exclude-from-classmap": [
  10840. "/Tests/"
  10841. ]
  10842. },
  10843. "notification-url": "https://packagist.org/downloads/",
  10844. "license": [
  10845. "MIT"
  10846. ],
  10847. "authors": [
  10848. {
  10849. "name": "Fabien Potencier",
  10850. "email": "fabien@symfony.com",
  10851. "homepage": "http://fabien.potencier.org",
  10852. "role": "Lead Developer"
  10853. }
  10854. ],
  10855. "description": "A Symfony bundle for extra Twig extensions",
  10856. "homepage": "https://twig.symfony.com",
  10857. "keywords": [
  10858. "bundle",
  10859. "extra",
  10860. "twig"
  10861. ],
  10862. "support": {
  10863. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.4.0"
  10864. },
  10865. "funding": [
  10866. {
  10867. "url": "https://github.com/fabpot",
  10868. "type": "github"
  10869. },
  10870. {
  10871. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10872. "type": "tidelift"
  10873. }
  10874. ],
  10875. "time": "2022-01-04T13:58:53+00:00"
  10876. },
  10877. {
  10878. "name": "twig/markdown-extra",
  10879. "version": "v3.4.0",
  10880. "source": {
  10881. "type": "git",
  10882. "url": "https://github.com/twigphp/markdown-extra.git",
  10883. "reference": "25ed505b6ffd3b00f922ca682489dfbaf44eb1f7"
  10884. },
  10885. "dist": {
  10886. "type": "zip",
  10887. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/25ed505b6ffd3b00f922ca682489dfbaf44eb1f7",
  10888. "reference": "25ed505b6ffd3b00f922ca682489dfbaf44eb1f7",
  10889. "shasum": ""
  10890. },
  10891. "require": {
  10892. "php": ">=7.1.3",
  10893. "twig/twig": "^2.7|^3.0"
  10894. },
  10895. "require-dev": {
  10896. "erusev/parsedown": "^1.7",
  10897. "league/commonmark": "^1.0|^2.0",
  10898. "league/html-to-markdown": "^4.8|^5.0",
  10899. "michelf/php-markdown": "^1.8",
  10900. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  10901. },
  10902. "type": "library",
  10903. "extra": {
  10904. "branch-alias": {
  10905. "dev-master": "3.2-dev"
  10906. }
  10907. },
  10908. "autoload": {
  10909. "psr-4": {
  10910. "Twig\\Extra\\Markdown\\": ""
  10911. },
  10912. "exclude-from-classmap": [
  10913. "/Tests/"
  10914. ]
  10915. },
  10916. "notification-url": "https://packagist.org/downloads/",
  10917. "license": [
  10918. "MIT"
  10919. ],
  10920. "authors": [
  10921. {
  10922. "name": "Fabien Potencier",
  10923. "email": "fabien@symfony.com",
  10924. "homepage": "http://fabien.potencier.org",
  10925. "role": "Lead Developer"
  10926. }
  10927. ],
  10928. "description": "A Twig extension for Markdown",
  10929. "homepage": "https://twig.symfony.com",
  10930. "keywords": [
  10931. "html",
  10932. "markdown",
  10933. "twig"
  10934. ],
  10935. "support": {
  10936. "source": "https://github.com/twigphp/markdown-extra/tree/v3.4.0"
  10937. },
  10938. "funding": [
  10939. {
  10940. "url": "https://github.com/fabpot",
  10941. "type": "github"
  10942. },
  10943. {
  10944. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10945. "type": "tidelift"
  10946. }
  10947. ],
  10948. "time": "2022-01-29T15:34:05+00:00"
  10949. },
  10950. {
  10951. "name": "twig/twig",
  10952. "version": "v3.4.3",
  10953. "source": {
  10954. "type": "git",
  10955. "url": "https://github.com/twigphp/Twig.git",
  10956. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58"
  10957. },
  10958. "dist": {
  10959. "type": "zip",
  10960. "url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58",
  10961. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58",
  10962. "shasum": ""
  10963. },
  10964. "require": {
  10965. "php": ">=7.2.5",
  10966. "symfony/polyfill-ctype": "^1.8",
  10967. "symfony/polyfill-mbstring": "^1.3"
  10968. },
  10969. "require-dev": {
  10970. "psr/container": "^1.0",
  10971. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  10972. },
  10973. "type": "library",
  10974. "extra": {
  10975. "branch-alias": {
  10976. "dev-master": "3.4-dev"
  10977. }
  10978. },
  10979. "autoload": {
  10980. "psr-4": {
  10981. "Twig\\": "src/"
  10982. }
  10983. },
  10984. "notification-url": "https://packagist.org/downloads/",
  10985. "license": [
  10986. "BSD-3-Clause"
  10987. ],
  10988. "authors": [
  10989. {
  10990. "name": "Fabien Potencier",
  10991. "email": "fabien@symfony.com",
  10992. "homepage": "http://fabien.potencier.org",
  10993. "role": "Lead Developer"
  10994. },
  10995. {
  10996. "name": "Twig Team",
  10997. "role": "Contributors"
  10998. },
  10999. {
  11000. "name": "Armin Ronacher",
  11001. "email": "armin.ronacher@active-4.com",
  11002. "role": "Project Founder"
  11003. }
  11004. ],
  11005. "description": "Twig, the flexible, fast, and secure template language for PHP",
  11006. "homepage": "https://twig.symfony.com",
  11007. "keywords": [
  11008. "templating"
  11009. ],
  11010. "support": {
  11011. "issues": "https://github.com/twigphp/Twig/issues",
  11012. "source": "https://github.com/twigphp/Twig/tree/v3.4.3"
  11013. },
  11014. "funding": [
  11015. {
  11016. "url": "https://github.com/fabpot",
  11017. "type": "github"
  11018. },
  11019. {
  11020. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  11021. "type": "tidelift"
  11022. }
  11023. ],
  11024. "time": "2022-09-28T08:42:51+00:00"
  11025. },
  11026. {
  11027. "name": "voku/portable-ascii",
  11028. "version": "1.5.6",
  11029. "source": {
  11030. "type": "git",
  11031. "url": "https://github.com/voku/portable-ascii.git",
  11032. "reference": "80953678b19901e5165c56752d087fc11526017c"
  11033. },
  11034. "dist": {
  11035. "type": "zip",
  11036. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  11037. "reference": "80953678b19901e5165c56752d087fc11526017c",
  11038. "shasum": ""
  11039. },
  11040. "require": {
  11041. "php": ">=7.0.0"
  11042. },
  11043. "require-dev": {
  11044. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  11045. },
  11046. "suggest": {
  11047. "ext-intl": "Use Intl for transliterator_transliterate() support"
  11048. },
  11049. "type": "library",
  11050. "autoload": {
  11051. "psr-4": {
  11052. "voku\\": "src/voku/"
  11053. }
  11054. },
  11055. "notification-url": "https://packagist.org/downloads/",
  11056. "license": [
  11057. "MIT"
  11058. ],
  11059. "authors": [
  11060. {
  11061. "name": "Lars Moelleken",
  11062. "homepage": "http://www.moelleken.org/"
  11063. }
  11064. ],
  11065. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  11066. "homepage": "https://github.com/voku/portable-ascii",
  11067. "keywords": [
  11068. "ascii",
  11069. "clean",
  11070. "php"
  11071. ],
  11072. "support": {
  11073. "issues": "https://github.com/voku/portable-ascii/issues",
  11074. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  11075. },
  11076. "funding": [
  11077. {
  11078. "url": "https://www.paypal.me/moelleken",
  11079. "type": "custom"
  11080. },
  11081. {
  11082. "url": "https://github.com/voku",
  11083. "type": "github"
  11084. },
  11085. {
  11086. "url": "https://opencollective.com/portable-ascii",
  11087. "type": "open_collective"
  11088. },
  11089. {
  11090. "url": "https://www.patreon.com/voku",
  11091. "type": "patreon"
  11092. },
  11093. {
  11094. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  11095. "type": "tidelift"
  11096. }
  11097. ],
  11098. "time": "2020-11-12T00:07:28+00:00"
  11099. },
  11100. {
  11101. "name": "voku/portable-utf8",
  11102. "version": "5.4.51",
  11103. "source": {
  11104. "type": "git",
  11105. "url": "https://github.com/voku/portable-utf8.git",
  11106. "reference": "578f5266725dc9880483d24ad0cfb39f8ce170f7"
  11107. },
  11108. "dist": {
  11109. "type": "zip",
  11110. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/578f5266725dc9880483d24ad0cfb39f8ce170f7",
  11111. "reference": "578f5266725dc9880483d24ad0cfb39f8ce170f7",
  11112. "shasum": ""
  11113. },
  11114. "require": {
  11115. "php": ">=7.0.0",
  11116. "symfony/polyfill-iconv": "~1.0",
  11117. "symfony/polyfill-intl-grapheme": "~1.0",
  11118. "symfony/polyfill-intl-normalizer": "~1.0",
  11119. "symfony/polyfill-mbstring": "~1.0",
  11120. "symfony/polyfill-php72": "~1.0",
  11121. "voku/portable-ascii": "~1.5.6"
  11122. },
  11123. "require-dev": {
  11124. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  11125. },
  11126. "suggest": {
  11127. "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection",
  11128. "ext-fileinfo": "Use Fileinfo for better binary file detection",
  11129. "ext-iconv": "Use iconv for best performance",
  11130. "ext-intl": "Use Intl for best performance",
  11131. "ext-json": "Use JSON for string detection",
  11132. "ext-mbstring": "Use Mbstring for best performance"
  11133. },
  11134. "type": "library",
  11135. "autoload": {
  11136. "files": [
  11137. "bootstrap.php"
  11138. ],
  11139. "psr-4": {
  11140. "voku\\": "src/voku/"
  11141. }
  11142. },
  11143. "notification-url": "https://packagist.org/downloads/",
  11144. "license": [
  11145. "(Apache-2.0 or GPL-2.0)"
  11146. ],
  11147. "authors": [
  11148. {
  11149. "name": "Nicolas Grekas",
  11150. "email": "p@tchwork.com"
  11151. },
  11152. {
  11153. "name": "Hamid Sarfraz",
  11154. "homepage": "http://pageconfig.com/"
  11155. },
  11156. {
  11157. "name": "Lars Moelleken",
  11158. "homepage": "http://www.moelleken.org/"
  11159. }
  11160. ],
  11161. "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.",
  11162. "homepage": "https://github.com/voku/portable-utf8",
  11163. "keywords": [
  11164. "UTF",
  11165. "clean",
  11166. "php",
  11167. "unicode",
  11168. "utf-8",
  11169. "utf8"
  11170. ],
  11171. "support": {
  11172. "issues": "https://github.com/voku/portable-utf8/issues",
  11173. "source": "https://github.com/voku/portable-utf8/tree/5.4.51"
  11174. },
  11175. "funding": [
  11176. {
  11177. "url": "https://www.paypal.me/moelleken",
  11178. "type": "custom"
  11179. },
  11180. {
  11181. "url": "https://github.com/voku",
  11182. "type": "github"
  11183. },
  11184. {
  11185. "url": "https://opencollective.com/portable-utf8",
  11186. "type": "open_collective"
  11187. },
  11188. {
  11189. "url": "https://www.patreon.com/voku",
  11190. "type": "patreon"
  11191. },
  11192. {
  11193. "url": "https://tidelift.com/funding/github/packagist/voku/portable-utf8",
  11194. "type": "tidelift"
  11195. }
  11196. ],
  11197. "time": "2020-12-02T01:58:49+00:00"
  11198. },
  11199. {
  11200. "name": "wamania/php-stemmer",
  11201. "version": "v3.0.0",
  11202. "source": {
  11203. "type": "git",
  11204. "url": "https://github.com/wamania/php-stemmer.git",
  11205. "reference": "eab7b93465eb3d5da372806c8e1b01da5766aea5"
  11206. },
  11207. "dist": {
  11208. "type": "zip",
  11209. "url": "https://api.github.com/repos/wamania/php-stemmer/zipball/eab7b93465eb3d5da372806c8e1b01da5766aea5",
  11210. "reference": "eab7b93465eb3d5da372806c8e1b01da5766aea5",
  11211. "shasum": ""
  11212. },
  11213. "require": {
  11214. "php": ">=7.3",
  11215. "voku/portable-utf8": "^5.4"
  11216. },
  11217. "require-dev": {
  11218. "phpunit/phpunit": "^9.0"
  11219. },
  11220. "type": "library",
  11221. "autoload": {
  11222. "psr-4": {
  11223. "Wamania\\Snowball\\": "src/"
  11224. }
  11225. },
  11226. "notification-url": "https://packagist.org/downloads/",
  11227. "license": [
  11228. "MIT"
  11229. ],
  11230. "authors": [
  11231. {
  11232. "name": "Wamania",
  11233. "homepage": "http://wamania.com"
  11234. }
  11235. ],
  11236. "description": "Native PHP Stemmer",
  11237. "keywords": [
  11238. "php",
  11239. "porter",
  11240. "stemmer"
  11241. ],
  11242. "support": {
  11243. "issues": "https://github.com/wamania/php-stemmer/issues",
  11244. "source": "https://github.com/wamania/php-stemmer/tree/v3.0.0"
  11245. },
  11246. "time": "2021-08-17T18:16:34+00:00"
  11247. },
  11248. {
  11249. "name": "webmozart/assert",
  11250. "version": "1.11.0",
  11251. "source": {
  11252. "type": "git",
  11253. "url": "https://github.com/webmozarts/assert.git",
  11254. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  11255. },
  11256. "dist": {
  11257. "type": "zip",
  11258. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  11259. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  11260. "shasum": ""
  11261. },
  11262. "require": {
  11263. "ext-ctype": "*",
  11264. "php": "^7.2 || ^8.0"
  11265. },
  11266. "conflict": {
  11267. "phpstan/phpstan": "<0.12.20",
  11268. "vimeo/psalm": "<4.6.1 || 4.6.2"
  11269. },
  11270. "require-dev": {
  11271. "phpunit/phpunit": "^8.5.13"
  11272. },
  11273. "type": "library",
  11274. "extra": {
  11275. "branch-alias": {
  11276. "dev-master": "1.10-dev"
  11277. }
  11278. },
  11279. "autoload": {
  11280. "psr-4": {
  11281. "Webmozart\\Assert\\": "src/"
  11282. }
  11283. },
  11284. "notification-url": "https://packagist.org/downloads/",
  11285. "license": [
  11286. "MIT"
  11287. ],
  11288. "authors": [
  11289. {
  11290. "name": "Bernhard Schussek",
  11291. "email": "bschussek@gmail.com"
  11292. }
  11293. ],
  11294. "description": "Assertions to validate method input/output with nice error messages.",
  11295. "keywords": [
  11296. "assert",
  11297. "check",
  11298. "validate"
  11299. ],
  11300. "support": {
  11301. "issues": "https://github.com/webmozarts/assert/issues",
  11302. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  11303. },
  11304. "time": "2022-06-03T18:03:27+00:00"
  11305. },
  11306. {
  11307. "name": "wikimedia/composer-merge-plugin",
  11308. "version": "v2.0.1",
  11309. "source": {
  11310. "type": "git",
  11311. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  11312. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912"
  11313. },
  11314. "dist": {
  11315. "type": "zip",
  11316. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  11317. "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912",
  11318. "shasum": ""
  11319. },
  11320. "require": {
  11321. "composer-plugin-api": "^1.1||^2.0",
  11322. "php": ">=7.2.0"
  11323. },
  11324. "require-dev": {
  11325. "composer/composer": "^1.1||^2.0",
  11326. "php-parallel-lint/php-parallel-lint": "~1.1.0",
  11327. "phpunit/phpunit": "^8.5||^9.0",
  11328. "squizlabs/php_codesniffer": "~3.5.4"
  11329. },
  11330. "type": "composer-plugin",
  11331. "extra": {
  11332. "branch-alias": {
  11333. "dev-master": "2.x-dev"
  11334. },
  11335. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  11336. },
  11337. "autoload": {
  11338. "psr-4": {
  11339. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  11340. }
  11341. },
  11342. "notification-url": "https://packagist.org/downloads/",
  11343. "license": [
  11344. "MIT"
  11345. ],
  11346. "authors": [
  11347. {
  11348. "name": "Bryan Davis",
  11349. "email": "bd808@wikimedia.org"
  11350. }
  11351. ],
  11352. "description": "Composer plugin to merge multiple composer.json files",
  11353. "support": {
  11354. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  11355. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.0.1"
  11356. },
  11357. "time": "2021-02-24T05:28:06+00:00"
  11358. },
  11359. {
  11360. "name": "xemlock/php-latex",
  11361. "version": "dev-master",
  11362. "source": {
  11363. "type": "git",
  11364. "url": "https://github.com/xemlock/php-latex.git",
  11365. "reference": "d60bf4c919426d4fa6978aa1f63208d64df5cc73"
  11366. },
  11367. "dist": {
  11368. "type": "zip",
  11369. "url": "https://api.github.com/repos/xemlock/php-latex/zipball/d60bf4c919426d4fa6978aa1f63208d64df5cc73",
  11370. "reference": "d60bf4c919426d4fa6978aa1f63208d64df5cc73",
  11371. "shasum": ""
  11372. },
  11373. "require": {
  11374. "ext-dom": "*",
  11375. "ext-mbstring": "*",
  11376. "php": ">=5.3.0"
  11377. },
  11378. "require-dev": {
  11379. "phpunit/phpunit": ">=5.7"
  11380. },
  11381. "default-branch": true,
  11382. "type": "library",
  11383. "autoload": {
  11384. "psr-0": {
  11385. "PhpLatex_": "library"
  11386. }
  11387. },
  11388. "notification-url": "https://packagist.org/downloads/",
  11389. "license": [
  11390. "MIT"
  11391. ],
  11392. "authors": [
  11393. {
  11394. "name": "xemlock",
  11395. "email": "xemlock@gmail.com"
  11396. }
  11397. ],
  11398. "description": "LaTeX parser and renderer",
  11399. "support": {
  11400. "issues": "https://github.com/xemlock/php-latex/issues",
  11401. "source": "https://github.com/xemlock/php-latex/tree/master"
  11402. },
  11403. "time": "2022-05-03T22:31:34+00:00"
  11404. }
  11405. ],
  11406. "packages-dev": [
  11407. {
  11408. "name": "brianium/paratest",
  11409. "version": "v6.6.4",
  11410. "source": {
  11411. "type": "git",
  11412. "url": "https://github.com/paratestphp/paratest.git",
  11413. "reference": "4ce800dc32fd0292a4f05c00f347142dce1ecdda"
  11414. },
  11415. "dist": {
  11416. "type": "zip",
  11417. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/4ce800dc32fd0292a4f05c00f347142dce1ecdda",
  11418. "reference": "4ce800dc32fd0292a4f05c00f347142dce1ecdda",
  11419. "shasum": ""
  11420. },
  11421. "require": {
  11422. "ext-dom": "*",
  11423. "ext-pcre": "*",
  11424. "ext-reflection": "*",
  11425. "ext-simplexml": "*",
  11426. "jean85/pretty-package-versions": "^2.0.5",
  11427. "php": "^7.3 || ^8.0",
  11428. "phpunit/php-code-coverage": "^9.2.17",
  11429. "phpunit/php-file-iterator": "^3.0.6",
  11430. "phpunit/php-timer": "^5.0.3",
  11431. "phpunit/phpunit": "^9.5.24",
  11432. "sebastian/environment": "^5.1.4",
  11433. "symfony/console": "^5.4.12 || ^6.1.4",
  11434. "symfony/process": "^5.4.11 || ^6.1.3"
  11435. },
  11436. "require-dev": {
  11437. "doctrine/coding-standard": "^10.0.0",
  11438. "ext-pcov": "*",
  11439. "ext-posix": "*",
  11440. "infection/infection": "^0.26.14",
  11441. "malukenho/mcbumpface": "^1.1.5",
  11442. "squizlabs/php_codesniffer": "^3.7.1",
  11443. "symfony/filesystem": "^5.4.12 || ^6.1.4",
  11444. "vimeo/psalm": "^4.27.0"
  11445. },
  11446. "bin": [
  11447. "bin/paratest",
  11448. "bin/paratest.bat",
  11449. "bin/paratest_for_phpstorm"
  11450. ],
  11451. "type": "library",
  11452. "autoload": {
  11453. "psr-4": {
  11454. "ParaTest\\": [
  11455. "src/"
  11456. ]
  11457. }
  11458. },
  11459. "notification-url": "https://packagist.org/downloads/",
  11460. "license": [
  11461. "MIT"
  11462. ],
  11463. "authors": [
  11464. {
  11465. "name": "Brian Scaturro",
  11466. "email": "scaturrob@gmail.com",
  11467. "role": "Developer"
  11468. },
  11469. {
  11470. "name": "Filippo Tessarotto",
  11471. "email": "zoeslam@gmail.com",
  11472. "role": "Developer"
  11473. }
  11474. ],
  11475. "description": "Parallel testing for PHP",
  11476. "homepage": "https://github.com/paratestphp/paratest",
  11477. "keywords": [
  11478. "concurrent",
  11479. "parallel",
  11480. "phpunit",
  11481. "testing"
  11482. ],
  11483. "support": {
  11484. "issues": "https://github.com/paratestphp/paratest/issues",
  11485. "source": "https://github.com/paratestphp/paratest/tree/v6.6.4"
  11486. },
  11487. "funding": [
  11488. {
  11489. "url": "https://github.com/sponsors/Slamdunk",
  11490. "type": "github"
  11491. },
  11492. {
  11493. "url": "https://paypal.me/filippotessarotto",
  11494. "type": "paypal"
  11495. }
  11496. ],
  11497. "time": "2022-09-13T10:47:01+00:00"
  11498. },
  11499. {
  11500. "name": "composer/pcre",
  11501. "version": "3.0.0",
  11502. "source": {
  11503. "type": "git",
  11504. "url": "https://github.com/composer/pcre.git",
  11505. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd"
  11506. },
  11507. "dist": {
  11508. "type": "zip",
  11509. "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  11510. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  11511. "shasum": ""
  11512. },
  11513. "require": {
  11514. "php": "^7.4 || ^8.0"
  11515. },
  11516. "require-dev": {
  11517. "phpstan/phpstan": "^1.3",
  11518. "phpstan/phpstan-strict-rules": "^1.1",
  11519. "symfony/phpunit-bridge": "^5"
  11520. },
  11521. "type": "library",
  11522. "extra": {
  11523. "branch-alias": {
  11524. "dev-main": "3.x-dev"
  11525. }
  11526. },
  11527. "autoload": {
  11528. "psr-4": {
  11529. "Composer\\Pcre\\": "src"
  11530. }
  11531. },
  11532. "notification-url": "https://packagist.org/downloads/",
  11533. "license": [
  11534. "MIT"
  11535. ],
  11536. "authors": [
  11537. {
  11538. "name": "Jordi Boggiano",
  11539. "email": "j.boggiano@seld.be",
  11540. "homepage": "http://seld.be"
  11541. }
  11542. ],
  11543. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  11544. "keywords": [
  11545. "PCRE",
  11546. "preg",
  11547. "regex",
  11548. "regular expression"
  11549. ],
  11550. "support": {
  11551. "issues": "https://github.com/composer/pcre/issues",
  11552. "source": "https://github.com/composer/pcre/tree/3.0.0"
  11553. },
  11554. "funding": [
  11555. {
  11556. "url": "https://packagist.com",
  11557. "type": "custom"
  11558. },
  11559. {
  11560. "url": "https://github.com/composer",
  11561. "type": "github"
  11562. },
  11563. {
  11564. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  11565. "type": "tidelift"
  11566. }
  11567. ],
  11568. "time": "2022-02-25T20:21:48+00:00"
  11569. },
  11570. {
  11571. "name": "composer/semver",
  11572. "version": "3.3.2",
  11573. "source": {
  11574. "type": "git",
  11575. "url": "https://github.com/composer/semver.git",
  11576. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  11577. },
  11578. "dist": {
  11579. "type": "zip",
  11580. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  11581. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  11582. "shasum": ""
  11583. },
  11584. "require": {
  11585. "php": "^5.3.2 || ^7.0 || ^8.0"
  11586. },
  11587. "require-dev": {
  11588. "phpstan/phpstan": "^1.4",
  11589. "symfony/phpunit-bridge": "^4.2 || ^5"
  11590. },
  11591. "type": "library",
  11592. "extra": {
  11593. "branch-alias": {
  11594. "dev-main": "3.x-dev"
  11595. }
  11596. },
  11597. "autoload": {
  11598. "psr-4": {
  11599. "Composer\\Semver\\": "src"
  11600. }
  11601. },
  11602. "notification-url": "https://packagist.org/downloads/",
  11603. "license": [
  11604. "MIT"
  11605. ],
  11606. "authors": [
  11607. {
  11608. "name": "Nils Adermann",
  11609. "email": "naderman@naderman.de",
  11610. "homepage": "http://www.naderman.de"
  11611. },
  11612. {
  11613. "name": "Jordi Boggiano",
  11614. "email": "j.boggiano@seld.be",
  11615. "homepage": "http://seld.be"
  11616. },
  11617. {
  11618. "name": "Rob Bast",
  11619. "email": "rob.bast@gmail.com",
  11620. "homepage": "http://robbast.nl"
  11621. }
  11622. ],
  11623. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  11624. "keywords": [
  11625. "semantic",
  11626. "semver",
  11627. "validation",
  11628. "versioning"
  11629. ],
  11630. "support": {
  11631. "irc": "irc://irc.freenode.org/composer",
  11632. "issues": "https://github.com/composer/semver/issues",
  11633. "source": "https://github.com/composer/semver/tree/3.3.2"
  11634. },
  11635. "funding": [
  11636. {
  11637. "url": "https://packagist.com",
  11638. "type": "custom"
  11639. },
  11640. {
  11641. "url": "https://github.com/composer",
  11642. "type": "github"
  11643. },
  11644. {
  11645. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  11646. "type": "tidelift"
  11647. }
  11648. ],
  11649. "time": "2022-04-01T19:23:25+00:00"
  11650. },
  11651. {
  11652. "name": "composer/xdebug-handler",
  11653. "version": "3.0.3",
  11654. "source": {
  11655. "type": "git",
  11656. "url": "https://github.com/composer/xdebug-handler.git",
  11657. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  11658. },
  11659. "dist": {
  11660. "type": "zip",
  11661. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  11662. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  11663. "shasum": ""
  11664. },
  11665. "require": {
  11666. "composer/pcre": "^1 || ^2 || ^3",
  11667. "php": "^7.2.5 || ^8.0",
  11668. "psr/log": "^1 || ^2 || ^3"
  11669. },
  11670. "require-dev": {
  11671. "phpstan/phpstan": "^1.0",
  11672. "phpstan/phpstan-strict-rules": "^1.1",
  11673. "symfony/phpunit-bridge": "^6.0"
  11674. },
  11675. "type": "library",
  11676. "autoload": {
  11677. "psr-4": {
  11678. "Composer\\XdebugHandler\\": "src"
  11679. }
  11680. },
  11681. "notification-url": "https://packagist.org/downloads/",
  11682. "license": [
  11683. "MIT"
  11684. ],
  11685. "authors": [
  11686. {
  11687. "name": "John Stevenson",
  11688. "email": "john-stevenson@blueyonder.co.uk"
  11689. }
  11690. ],
  11691. "description": "Restarts a process without Xdebug.",
  11692. "keywords": [
  11693. "Xdebug",
  11694. "performance"
  11695. ],
  11696. "support": {
  11697. "irc": "irc://irc.freenode.org/composer",
  11698. "issues": "https://github.com/composer/xdebug-handler/issues",
  11699. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  11700. },
  11701. "funding": [
  11702. {
  11703. "url": "https://packagist.com",
  11704. "type": "custom"
  11705. },
  11706. {
  11707. "url": "https://github.com/composer",
  11708. "type": "github"
  11709. },
  11710. {
  11711. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  11712. "type": "tidelift"
  11713. }
  11714. ],
  11715. "time": "2022-02-25T21:32:43+00:00"
  11716. },
  11717. {
  11718. "name": "doctrine/data-fixtures",
  11719. "version": "1.5.3",
  11720. "source": {
  11721. "type": "git",
  11722. "url": "https://github.com/doctrine/data-fixtures.git",
  11723. "reference": "ba37bfb776de763c5bf04a36d074cd5f5a083c42"
  11724. },
  11725. "dist": {
  11726. "type": "zip",
  11727. "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/ba37bfb776de763c5bf04a36d074cd5f5a083c42",
  11728. "reference": "ba37bfb776de763c5bf04a36d074cd5f5a083c42",
  11729. "shasum": ""
  11730. },
  11731. "require": {
  11732. "doctrine/common": "^2.13|^3.0",
  11733. "doctrine/persistence": "^1.3.3|^2.0|^3.0",
  11734. "php": "^7.2 || ^8.0"
  11735. },
  11736. "conflict": {
  11737. "doctrine/dbal": "<2.13",
  11738. "doctrine/phpcr-odm": "<1.3.0"
  11739. },
  11740. "require-dev": {
  11741. "doctrine/coding-standard": "^9.0",
  11742. "doctrine/dbal": "^2.13 || ^3.0",
  11743. "doctrine/mongodb-odm": "^1.3.0 || ^2.0.0",
  11744. "doctrine/orm": "^2.7.0",
  11745. "ext-sqlite3": "*",
  11746. "jangregor/phpstan-prophecy": "^1",
  11747. "phpstan/phpstan": "^1.5",
  11748. "phpunit/phpunit": "^8.5 || ^9.5",
  11749. "symfony/cache": "^5.0 || ^6.0",
  11750. "vimeo/psalm": "^4.10"
  11751. },
  11752. "suggest": {
  11753. "alcaeus/mongo-php-adapter": "For using MongoDB ODM 1.3 with PHP 7 (deprecated)",
  11754. "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures",
  11755. "doctrine/orm": "For loading ORM fixtures",
  11756. "doctrine/phpcr-odm": "For loading PHPCR ODM fixtures"
  11757. },
  11758. "type": "library",
  11759. "autoload": {
  11760. "psr-4": {
  11761. "Doctrine\\Common\\DataFixtures\\": "lib/Doctrine/Common/DataFixtures"
  11762. }
  11763. },
  11764. "notification-url": "https://packagist.org/downloads/",
  11765. "license": [
  11766. "MIT"
  11767. ],
  11768. "authors": [
  11769. {
  11770. "name": "Jonathan Wage",
  11771. "email": "jonwage@gmail.com"
  11772. }
  11773. ],
  11774. "description": "Data Fixtures for all Doctrine Object Managers",
  11775. "homepage": "https://www.doctrine-project.org",
  11776. "keywords": [
  11777. "database"
  11778. ],
  11779. "support": {
  11780. "issues": "https://github.com/doctrine/data-fixtures/issues",
  11781. "source": "https://github.com/doctrine/data-fixtures/tree/1.5.3"
  11782. },
  11783. "funding": [
  11784. {
  11785. "url": "https://www.doctrine-project.org/sponsorship.html",
  11786. "type": "custom"
  11787. },
  11788. {
  11789. "url": "https://www.patreon.com/phpdoctrine",
  11790. "type": "patreon"
  11791. },
  11792. {
  11793. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdata-fixtures",
  11794. "type": "tidelift"
  11795. }
  11796. ],
  11797. "time": "2022-04-19T10:01:44+00:00"
  11798. },
  11799. {
  11800. "name": "doctrine/doctrine-fixtures-bundle",
  11801. "version": "3.4.2",
  11802. "source": {
  11803. "type": "git",
  11804. "url": "https://github.com/doctrine/DoctrineFixturesBundle.git",
  11805. "reference": "601988c5b46dbd20a0f886f967210aba378a6fd5"
  11806. },
  11807. "dist": {
  11808. "type": "zip",
  11809. "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/601988c5b46dbd20a0f886f967210aba378a6fd5",
  11810. "reference": "601988c5b46dbd20a0f886f967210aba378a6fd5",
  11811. "shasum": ""
  11812. },
  11813. "require": {
  11814. "doctrine/data-fixtures": "^1.3",
  11815. "doctrine/doctrine-bundle": "^1.11|^2.0",
  11816. "doctrine/orm": "^2.6.0",
  11817. "doctrine/persistence": "^1.3.7|^2.0|^3.0",
  11818. "php": "^7.1 || ^8.0",
  11819. "symfony/config": "^3.4|^4.3|^5.0|^6.0",
  11820. "symfony/console": "^3.4|^4.3|^5.0|^6.0",
  11821. "symfony/dependency-injection": "^3.4.47|^4.3|^5.0|^6.0",
  11822. "symfony/doctrine-bridge": "^3.4|^4.1|^5.0|^6.0",
  11823. "symfony/http-kernel": "^3.4|^4.3|^5.0|^6.0"
  11824. },
  11825. "require-dev": {
  11826. "doctrine/coding-standard": "^9",
  11827. "phpstan/phpstan": "^1.4.10",
  11828. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  11829. "symfony/phpunit-bridge": "^6.0.8",
  11830. "vimeo/psalm": "^4.22"
  11831. },
  11832. "type": "symfony-bundle",
  11833. "autoload": {
  11834. "psr-4": {
  11835. "Doctrine\\Bundle\\FixturesBundle\\": ""
  11836. }
  11837. },
  11838. "notification-url": "https://packagist.org/downloads/",
  11839. "license": [
  11840. "MIT"
  11841. ],
  11842. "authors": [
  11843. {
  11844. "name": "Fabien Potencier",
  11845. "email": "fabien@symfony.com"
  11846. },
  11847. {
  11848. "name": "Doctrine Project",
  11849. "homepage": "https://www.doctrine-project.org"
  11850. },
  11851. {
  11852. "name": "Symfony Community",
  11853. "homepage": "https://symfony.com/contributors"
  11854. }
  11855. ],
  11856. "description": "Symfony DoctrineFixturesBundle",
  11857. "homepage": "https://www.doctrine-project.org",
  11858. "keywords": [
  11859. "Fixture",
  11860. "persistence"
  11861. ],
  11862. "support": {
  11863. "issues": "https://github.com/doctrine/DoctrineFixturesBundle/issues",
  11864. "source": "https://github.com/doctrine/DoctrineFixturesBundle/tree/3.4.2"
  11865. },
  11866. "funding": [
  11867. {
  11868. "url": "https://www.doctrine-project.org/sponsorship.html",
  11869. "type": "custom"
  11870. },
  11871. {
  11872. "url": "https://www.patreon.com/phpdoctrine",
  11873. "type": "patreon"
  11874. },
  11875. {
  11876. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-fixtures-bundle",
  11877. "type": "tidelift"
  11878. }
  11879. ],
  11880. "time": "2022-04-28T17:58:29+00:00"
  11881. },
  11882. {
  11883. "name": "friendsofphp/php-cs-fixer",
  11884. "version": "v3.12.0",
  11885. "source": {
  11886. "type": "git",
  11887. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  11888. "reference": "eae11d945e2885d86e1c080eec1bb30a2aa27998"
  11889. },
  11890. "dist": {
  11891. "type": "zip",
  11892. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/eae11d945e2885d86e1c080eec1bb30a2aa27998",
  11893. "reference": "eae11d945e2885d86e1c080eec1bb30a2aa27998",
  11894. "shasum": ""
  11895. },
  11896. "require": {
  11897. "composer/semver": "^3.2",
  11898. "composer/xdebug-handler": "^3.0.3",
  11899. "doctrine/annotations": "^1.13",
  11900. "ext-json": "*",
  11901. "ext-tokenizer": "*",
  11902. "php": "^7.4 || ^8.0",
  11903. "sebastian/diff": "^4.0",
  11904. "symfony/console": "^5.4 || ^6.0",
  11905. "symfony/event-dispatcher": "^5.4 || ^6.0",
  11906. "symfony/filesystem": "^5.4 || ^6.0",
  11907. "symfony/finder": "^5.4 || ^6.0",
  11908. "symfony/options-resolver": "^5.4 || ^6.0",
  11909. "symfony/polyfill-mbstring": "^1.23",
  11910. "symfony/polyfill-php80": "^1.25",
  11911. "symfony/polyfill-php81": "^1.25",
  11912. "symfony/process": "^5.4 || ^6.0",
  11913. "symfony/stopwatch": "^5.4 || ^6.0"
  11914. },
  11915. "require-dev": {
  11916. "justinrainbow/json-schema": "^5.2",
  11917. "keradus/cli-executor": "^1.5",
  11918. "mikey179/vfsstream": "^1.6.10",
  11919. "php-coveralls/php-coveralls": "^2.5.2",
  11920. "php-cs-fixer/accessible-object": "^1.1",
  11921. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  11922. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  11923. "phpspec/prophecy": "^1.15",
  11924. "phpspec/prophecy-phpunit": "^2.0",
  11925. "phpunit/phpunit": "^9.5",
  11926. "phpunitgoodpractices/polyfill": "^1.6",
  11927. "phpunitgoodpractices/traits": "^1.9.2",
  11928. "symfony/phpunit-bridge": "^6.0",
  11929. "symfony/yaml": "^5.4 || ^6.0"
  11930. },
  11931. "suggest": {
  11932. "ext-dom": "For handling output formats in XML",
  11933. "ext-mbstring": "For handling non-UTF8 characters."
  11934. },
  11935. "bin": [
  11936. "php-cs-fixer"
  11937. ],
  11938. "type": "application",
  11939. "autoload": {
  11940. "psr-4": {
  11941. "PhpCsFixer\\": "src/"
  11942. }
  11943. },
  11944. "notification-url": "https://packagist.org/downloads/",
  11945. "license": [
  11946. "MIT"
  11947. ],
  11948. "authors": [
  11949. {
  11950. "name": "Fabien Potencier",
  11951. "email": "fabien@symfony.com"
  11952. },
  11953. {
  11954. "name": "Dariusz Rumiński",
  11955. "email": "dariusz.ruminski@gmail.com"
  11956. }
  11957. ],
  11958. "description": "A tool to automatically fix PHP code style",
  11959. "support": {
  11960. "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues",
  11961. "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v3.12.0"
  11962. },
  11963. "funding": [
  11964. {
  11965. "url": "https://github.com/keradus",
  11966. "type": "github"
  11967. }
  11968. ],
  11969. "time": "2022-10-12T14:20:51+00:00"
  11970. },
  11971. {
  11972. "name": "jchook/phpunit-assert-throws",
  11973. "version": "v1.0.3",
  11974. "source": {
  11975. "type": "git",
  11976. "url": "https://github.com/jchook/phpunit-assert-throws.git",
  11977. "reference": "5082114dcaa87aafa21da02b5d0b32e9d3e991a7"
  11978. },
  11979. "dist": {
  11980. "type": "zip",
  11981. "url": "https://api.github.com/repos/jchook/phpunit-assert-throws/zipball/5082114dcaa87aafa21da02b5d0b32e9d3e991a7",
  11982. "reference": "5082114dcaa87aafa21da02b5d0b32e9d3e991a7",
  11983. "shasum": ""
  11984. },
  11985. "require": {
  11986. "phpunit/phpunit": ">=7.0.0"
  11987. },
  11988. "type": "library",
  11989. "autoload": {
  11990. "psr-4": {
  11991. "Jchook\\AssertThrows\\": "src/"
  11992. }
  11993. },
  11994. "notification-url": "https://packagist.org/downloads/",
  11995. "license": [
  11996. "MIT"
  11997. ],
  11998. "authors": [
  11999. {
  12000. "name": "Wes Roberts",
  12001. "email": "u36g@a.zinc.email"
  12002. },
  12003. {
  12004. "name": "Librarian",
  12005. "email": "librarians.studios@gmail.com"
  12006. }
  12007. ],
  12008. "description": "Exception assertions for PHPUnit",
  12009. "support": {
  12010. "issues": "https://github.com/jchook/phpunit-assert-throws/issues",
  12011. "source": "https://github.com/jchook/phpunit-assert-throws/tree/v1.0.3"
  12012. },
  12013. "time": "2019-04-13T22:17:20+00:00"
  12014. },
  12015. {
  12016. "name": "jean85/pretty-package-versions",
  12017. "version": "2.0.5",
  12018. "source": {
  12019. "type": "git",
  12020. "url": "https://github.com/Jean85/pretty-package-versions.git",
  12021. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af"
  12022. },
  12023. "dist": {
  12024. "type": "zip",
  12025. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  12026. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  12027. "shasum": ""
  12028. },
  12029. "require": {
  12030. "composer-runtime-api": "^2.0.0",
  12031. "php": "^7.1|^8.0"
  12032. },
  12033. "require-dev": {
  12034. "friendsofphp/php-cs-fixer": "^2.17",
  12035. "jean85/composer-provided-replaced-stub-package": "^1.0",
  12036. "phpstan/phpstan": "^0.12.66",
  12037. "phpunit/phpunit": "^7.5|^8.5|^9.4",
  12038. "vimeo/psalm": "^4.3"
  12039. },
  12040. "type": "library",
  12041. "extra": {
  12042. "branch-alias": {
  12043. "dev-master": "1.x-dev"
  12044. }
  12045. },
  12046. "autoload": {
  12047. "psr-4": {
  12048. "Jean85\\": "src/"
  12049. }
  12050. },
  12051. "notification-url": "https://packagist.org/downloads/",
  12052. "license": [
  12053. "MIT"
  12054. ],
  12055. "authors": [
  12056. {
  12057. "name": "Alessandro Lai",
  12058. "email": "alessandro.lai85@gmail.com"
  12059. }
  12060. ],
  12061. "description": "A library to get pretty versions strings of installed dependencies",
  12062. "keywords": [
  12063. "composer",
  12064. "package",
  12065. "release",
  12066. "versions"
  12067. ],
  12068. "support": {
  12069. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  12070. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5"
  12071. },
  12072. "time": "2021-10-08T21:21:46+00:00"
  12073. },
  12074. {
  12075. "name": "myclabs/deep-copy",
  12076. "version": "1.11.0",
  12077. "source": {
  12078. "type": "git",
  12079. "url": "https://github.com/myclabs/DeepCopy.git",
  12080. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  12081. },
  12082. "dist": {
  12083. "type": "zip",
  12084. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  12085. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  12086. "shasum": ""
  12087. },
  12088. "require": {
  12089. "php": "^7.1 || ^8.0"
  12090. },
  12091. "conflict": {
  12092. "doctrine/collections": "<1.6.8",
  12093. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  12094. },
  12095. "require-dev": {
  12096. "doctrine/collections": "^1.6.8",
  12097. "doctrine/common": "^2.13.3 || ^3.2.2",
  12098. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  12099. },
  12100. "type": "library",
  12101. "autoload": {
  12102. "files": [
  12103. "src/DeepCopy/deep_copy.php"
  12104. ],
  12105. "psr-4": {
  12106. "DeepCopy\\": "src/DeepCopy/"
  12107. }
  12108. },
  12109. "notification-url": "https://packagist.org/downloads/",
  12110. "license": [
  12111. "MIT"
  12112. ],
  12113. "description": "Create deep copies (clones) of your objects",
  12114. "keywords": [
  12115. "clone",
  12116. "copy",
  12117. "duplicate",
  12118. "object",
  12119. "object graph"
  12120. ],
  12121. "support": {
  12122. "issues": "https://github.com/myclabs/DeepCopy/issues",
  12123. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  12124. },
  12125. "funding": [
  12126. {
  12127. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  12128. "type": "tidelift"
  12129. }
  12130. ],
  12131. "time": "2022-03-03T13:19:32+00:00"
  12132. },
  12133. {
  12134. "name": "niels-de-blaauw/php-doc-check",
  12135. "version": "0.2.2",
  12136. "source": {
  12137. "type": "git",
  12138. "url": "https://github.com/someonewithpc/php-doc-check.git",
  12139. "reference": "master"
  12140. },
  12141. "bin": [
  12142. "bin/php-doc-check"
  12143. ],
  12144. "type": "library",
  12145. "autoload": {
  12146. "psr-4": {
  12147. "NdB\\PhpDocCheck\\": "src"
  12148. }
  12149. }
  12150. },
  12151. {
  12152. "name": "phar-io/manifest",
  12153. "version": "2.0.3",
  12154. "source": {
  12155. "type": "git",
  12156. "url": "https://github.com/phar-io/manifest.git",
  12157. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  12158. },
  12159. "dist": {
  12160. "type": "zip",
  12161. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  12162. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  12163. "shasum": ""
  12164. },
  12165. "require": {
  12166. "ext-dom": "*",
  12167. "ext-phar": "*",
  12168. "ext-xmlwriter": "*",
  12169. "phar-io/version": "^3.0.1",
  12170. "php": "^7.2 || ^8.0"
  12171. },
  12172. "type": "library",
  12173. "extra": {
  12174. "branch-alias": {
  12175. "dev-master": "2.0.x-dev"
  12176. }
  12177. },
  12178. "autoload": {
  12179. "classmap": [
  12180. "src/"
  12181. ]
  12182. },
  12183. "notification-url": "https://packagist.org/downloads/",
  12184. "license": [
  12185. "BSD-3-Clause"
  12186. ],
  12187. "authors": [
  12188. {
  12189. "name": "Arne Blankerts",
  12190. "email": "arne@blankerts.de",
  12191. "role": "Developer"
  12192. },
  12193. {
  12194. "name": "Sebastian Heuer",
  12195. "email": "sebastian@phpeople.de",
  12196. "role": "Developer"
  12197. },
  12198. {
  12199. "name": "Sebastian Bergmann",
  12200. "email": "sebastian@phpunit.de",
  12201. "role": "Developer"
  12202. }
  12203. ],
  12204. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  12205. "support": {
  12206. "issues": "https://github.com/phar-io/manifest/issues",
  12207. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  12208. },
  12209. "time": "2021-07-20T11:28:43+00:00"
  12210. },
  12211. {
  12212. "name": "phar-io/version",
  12213. "version": "3.2.1",
  12214. "source": {
  12215. "type": "git",
  12216. "url": "https://github.com/phar-io/version.git",
  12217. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  12218. },
  12219. "dist": {
  12220. "type": "zip",
  12221. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  12222. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  12223. "shasum": ""
  12224. },
  12225. "require": {
  12226. "php": "^7.2 || ^8.0"
  12227. },
  12228. "type": "library",
  12229. "autoload": {
  12230. "classmap": [
  12231. "src/"
  12232. ]
  12233. },
  12234. "notification-url": "https://packagist.org/downloads/",
  12235. "license": [
  12236. "BSD-3-Clause"
  12237. ],
  12238. "authors": [
  12239. {
  12240. "name": "Arne Blankerts",
  12241. "email": "arne@blankerts.de",
  12242. "role": "Developer"
  12243. },
  12244. {
  12245. "name": "Sebastian Heuer",
  12246. "email": "sebastian@phpeople.de",
  12247. "role": "Developer"
  12248. },
  12249. {
  12250. "name": "Sebastian Bergmann",
  12251. "email": "sebastian@phpunit.de",
  12252. "role": "Developer"
  12253. }
  12254. ],
  12255. "description": "Library for handling version information and constraints",
  12256. "support": {
  12257. "issues": "https://github.com/phar-io/version/issues",
  12258. "source": "https://github.com/phar-io/version/tree/3.2.1"
  12259. },
  12260. "time": "2022-02-21T01:04:05+00:00"
  12261. },
  12262. {
  12263. "name": "phpstan/phpstan",
  12264. "version": "1.9.x-dev",
  12265. "source": {
  12266. "type": "git",
  12267. "url": "https://github.com/phpstan/phpstan.git",
  12268. "reference": "2913a6d103fd5fbca812c4a99e3bc870c3ca8117"
  12269. },
  12270. "dist": {
  12271. "type": "zip",
  12272. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/2913a6d103fd5fbca812c4a99e3bc870c3ca8117",
  12273. "reference": "2913a6d103fd5fbca812c4a99e3bc870c3ca8117",
  12274. "shasum": ""
  12275. },
  12276. "require": {
  12277. "php": "^7.2|^8.0"
  12278. },
  12279. "conflict": {
  12280. "phpstan/phpstan-shim": "*"
  12281. },
  12282. "default-branch": true,
  12283. "bin": [
  12284. "phpstan",
  12285. "phpstan.phar"
  12286. ],
  12287. "type": "library",
  12288. "autoload": {
  12289. "files": [
  12290. "bootstrap.php"
  12291. ]
  12292. },
  12293. "notification-url": "https://packagist.org/downloads/",
  12294. "license": [
  12295. "MIT"
  12296. ],
  12297. "description": "PHPStan - PHP Static Analysis Tool",
  12298. "keywords": [
  12299. "dev",
  12300. "static analysis"
  12301. ],
  12302. "support": {
  12303. "issues": "https://github.com/phpstan/phpstan/issues",
  12304. "source": "https://github.com/phpstan/phpstan/tree/1.9.x"
  12305. },
  12306. "funding": [
  12307. {
  12308. "url": "https://github.com/ondrejmirtes",
  12309. "type": "github"
  12310. },
  12311. {
  12312. "url": "https://github.com/phpstan",
  12313. "type": "github"
  12314. },
  12315. {
  12316. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  12317. "type": "tidelift"
  12318. }
  12319. ],
  12320. "time": "2022-10-27T03:18:22+00:00"
  12321. },
  12322. {
  12323. "name": "phpunit/php-code-coverage",
  12324. "version": "9.2.18",
  12325. "source": {
  12326. "type": "git",
  12327. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  12328. "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a"
  12329. },
  12330. "dist": {
  12331. "type": "zip",
  12332. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/12fddc491826940cf9b7e88ad9664cf51f0f6d0a",
  12333. "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a",
  12334. "shasum": ""
  12335. },
  12336. "require": {
  12337. "ext-dom": "*",
  12338. "ext-libxml": "*",
  12339. "ext-xmlwriter": "*",
  12340. "nikic/php-parser": "^4.14",
  12341. "php": ">=7.3",
  12342. "phpunit/php-file-iterator": "^3.0.3",
  12343. "phpunit/php-text-template": "^2.0.2",
  12344. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  12345. "sebastian/complexity": "^2.0",
  12346. "sebastian/environment": "^5.1.2",
  12347. "sebastian/lines-of-code": "^1.0.3",
  12348. "sebastian/version": "^3.0.1",
  12349. "theseer/tokenizer": "^1.2.0"
  12350. },
  12351. "require-dev": {
  12352. "phpunit/phpunit": "^9.3"
  12353. },
  12354. "suggest": {
  12355. "ext-pcov": "*",
  12356. "ext-xdebug": "*"
  12357. },
  12358. "type": "library",
  12359. "extra": {
  12360. "branch-alias": {
  12361. "dev-master": "9.2-dev"
  12362. }
  12363. },
  12364. "autoload": {
  12365. "classmap": [
  12366. "src/"
  12367. ]
  12368. },
  12369. "notification-url": "https://packagist.org/downloads/",
  12370. "license": [
  12371. "BSD-3-Clause"
  12372. ],
  12373. "authors": [
  12374. {
  12375. "name": "Sebastian Bergmann",
  12376. "email": "sebastian@phpunit.de",
  12377. "role": "lead"
  12378. }
  12379. ],
  12380. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  12381. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  12382. "keywords": [
  12383. "coverage",
  12384. "testing",
  12385. "xunit"
  12386. ],
  12387. "support": {
  12388. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  12389. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.18"
  12390. },
  12391. "funding": [
  12392. {
  12393. "url": "https://github.com/sebastianbergmann",
  12394. "type": "github"
  12395. }
  12396. ],
  12397. "time": "2022-10-27T13:35:33+00:00"
  12398. },
  12399. {
  12400. "name": "phpunit/php-file-iterator",
  12401. "version": "3.0.6",
  12402. "source": {
  12403. "type": "git",
  12404. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  12405. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  12406. },
  12407. "dist": {
  12408. "type": "zip",
  12409. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  12410. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  12411. "shasum": ""
  12412. },
  12413. "require": {
  12414. "php": ">=7.3"
  12415. },
  12416. "require-dev": {
  12417. "phpunit/phpunit": "^9.3"
  12418. },
  12419. "type": "library",
  12420. "extra": {
  12421. "branch-alias": {
  12422. "dev-master": "3.0-dev"
  12423. }
  12424. },
  12425. "autoload": {
  12426. "classmap": [
  12427. "src/"
  12428. ]
  12429. },
  12430. "notification-url": "https://packagist.org/downloads/",
  12431. "license": [
  12432. "BSD-3-Clause"
  12433. ],
  12434. "authors": [
  12435. {
  12436. "name": "Sebastian Bergmann",
  12437. "email": "sebastian@phpunit.de",
  12438. "role": "lead"
  12439. }
  12440. ],
  12441. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  12442. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  12443. "keywords": [
  12444. "filesystem",
  12445. "iterator"
  12446. ],
  12447. "support": {
  12448. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  12449. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  12450. },
  12451. "funding": [
  12452. {
  12453. "url": "https://github.com/sebastianbergmann",
  12454. "type": "github"
  12455. }
  12456. ],
  12457. "time": "2021-12-02T12:48:52+00:00"
  12458. },
  12459. {
  12460. "name": "phpunit/php-invoker",
  12461. "version": "3.1.1",
  12462. "source": {
  12463. "type": "git",
  12464. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  12465. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  12466. },
  12467. "dist": {
  12468. "type": "zip",
  12469. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  12470. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  12471. "shasum": ""
  12472. },
  12473. "require": {
  12474. "php": ">=7.3"
  12475. },
  12476. "require-dev": {
  12477. "ext-pcntl": "*",
  12478. "phpunit/phpunit": "^9.3"
  12479. },
  12480. "suggest": {
  12481. "ext-pcntl": "*"
  12482. },
  12483. "type": "library",
  12484. "extra": {
  12485. "branch-alias": {
  12486. "dev-master": "3.1-dev"
  12487. }
  12488. },
  12489. "autoload": {
  12490. "classmap": [
  12491. "src/"
  12492. ]
  12493. },
  12494. "notification-url": "https://packagist.org/downloads/",
  12495. "license": [
  12496. "BSD-3-Clause"
  12497. ],
  12498. "authors": [
  12499. {
  12500. "name": "Sebastian Bergmann",
  12501. "email": "sebastian@phpunit.de",
  12502. "role": "lead"
  12503. }
  12504. ],
  12505. "description": "Invoke callables with a timeout",
  12506. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  12507. "keywords": [
  12508. "process"
  12509. ],
  12510. "support": {
  12511. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  12512. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  12513. },
  12514. "funding": [
  12515. {
  12516. "url": "https://github.com/sebastianbergmann",
  12517. "type": "github"
  12518. }
  12519. ],
  12520. "time": "2020-09-28T05:58:55+00:00"
  12521. },
  12522. {
  12523. "name": "phpunit/php-text-template",
  12524. "version": "2.0.4",
  12525. "source": {
  12526. "type": "git",
  12527. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  12528. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  12529. },
  12530. "dist": {
  12531. "type": "zip",
  12532. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  12533. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  12534. "shasum": ""
  12535. },
  12536. "require": {
  12537. "php": ">=7.3"
  12538. },
  12539. "require-dev": {
  12540. "phpunit/phpunit": "^9.3"
  12541. },
  12542. "type": "library",
  12543. "extra": {
  12544. "branch-alias": {
  12545. "dev-master": "2.0-dev"
  12546. }
  12547. },
  12548. "autoload": {
  12549. "classmap": [
  12550. "src/"
  12551. ]
  12552. },
  12553. "notification-url": "https://packagist.org/downloads/",
  12554. "license": [
  12555. "BSD-3-Clause"
  12556. ],
  12557. "authors": [
  12558. {
  12559. "name": "Sebastian Bergmann",
  12560. "email": "sebastian@phpunit.de",
  12561. "role": "lead"
  12562. }
  12563. ],
  12564. "description": "Simple template engine.",
  12565. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  12566. "keywords": [
  12567. "template"
  12568. ],
  12569. "support": {
  12570. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  12571. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  12572. },
  12573. "funding": [
  12574. {
  12575. "url": "https://github.com/sebastianbergmann",
  12576. "type": "github"
  12577. }
  12578. ],
  12579. "time": "2020-10-26T05:33:50+00:00"
  12580. },
  12581. {
  12582. "name": "phpunit/php-timer",
  12583. "version": "5.0.3",
  12584. "source": {
  12585. "type": "git",
  12586. "url": "https://github.com/sebastianbergmann/php-timer.git",
  12587. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  12588. },
  12589. "dist": {
  12590. "type": "zip",
  12591. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  12592. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  12593. "shasum": ""
  12594. },
  12595. "require": {
  12596. "php": ">=7.3"
  12597. },
  12598. "require-dev": {
  12599. "phpunit/phpunit": "^9.3"
  12600. },
  12601. "type": "library",
  12602. "extra": {
  12603. "branch-alias": {
  12604. "dev-master": "5.0-dev"
  12605. }
  12606. },
  12607. "autoload": {
  12608. "classmap": [
  12609. "src/"
  12610. ]
  12611. },
  12612. "notification-url": "https://packagist.org/downloads/",
  12613. "license": [
  12614. "BSD-3-Clause"
  12615. ],
  12616. "authors": [
  12617. {
  12618. "name": "Sebastian Bergmann",
  12619. "email": "sebastian@phpunit.de",
  12620. "role": "lead"
  12621. }
  12622. ],
  12623. "description": "Utility class for timing",
  12624. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  12625. "keywords": [
  12626. "timer"
  12627. ],
  12628. "support": {
  12629. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  12630. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  12631. },
  12632. "funding": [
  12633. {
  12634. "url": "https://github.com/sebastianbergmann",
  12635. "type": "github"
  12636. }
  12637. ],
  12638. "time": "2020-10-26T13:16:10+00:00"
  12639. },
  12640. {
  12641. "name": "phpunit/phpunit",
  12642. "version": "9.5.25",
  12643. "source": {
  12644. "type": "git",
  12645. "url": "https://github.com/sebastianbergmann/phpunit.git",
  12646. "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d"
  12647. },
  12648. "dist": {
  12649. "type": "zip",
  12650. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
  12651. "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
  12652. "shasum": ""
  12653. },
  12654. "require": {
  12655. "doctrine/instantiator": "^1.3.1",
  12656. "ext-dom": "*",
  12657. "ext-json": "*",
  12658. "ext-libxml": "*",
  12659. "ext-mbstring": "*",
  12660. "ext-xml": "*",
  12661. "ext-xmlwriter": "*",
  12662. "myclabs/deep-copy": "^1.10.1",
  12663. "phar-io/manifest": "^2.0.3",
  12664. "phar-io/version": "^3.0.2",
  12665. "php": ">=7.3",
  12666. "phpunit/php-code-coverage": "^9.2.13",
  12667. "phpunit/php-file-iterator": "^3.0.5",
  12668. "phpunit/php-invoker": "^3.1.1",
  12669. "phpunit/php-text-template": "^2.0.3",
  12670. "phpunit/php-timer": "^5.0.2",
  12671. "sebastian/cli-parser": "^1.0.1",
  12672. "sebastian/code-unit": "^1.0.6",
  12673. "sebastian/comparator": "^4.0.8",
  12674. "sebastian/diff": "^4.0.3",
  12675. "sebastian/environment": "^5.1.3",
  12676. "sebastian/exporter": "^4.0.5",
  12677. "sebastian/global-state": "^5.0.1",
  12678. "sebastian/object-enumerator": "^4.0.3",
  12679. "sebastian/resource-operations": "^3.0.3",
  12680. "sebastian/type": "^3.2",
  12681. "sebastian/version": "^3.0.2"
  12682. },
  12683. "suggest": {
  12684. "ext-soap": "*",
  12685. "ext-xdebug": "*"
  12686. },
  12687. "bin": [
  12688. "phpunit"
  12689. ],
  12690. "type": "library",
  12691. "extra": {
  12692. "branch-alias": {
  12693. "dev-master": "9.5-dev"
  12694. }
  12695. },
  12696. "autoload": {
  12697. "files": [
  12698. "src/Framework/Assert/Functions.php"
  12699. ],
  12700. "classmap": [
  12701. "src/"
  12702. ]
  12703. },
  12704. "notification-url": "https://packagist.org/downloads/",
  12705. "license": [
  12706. "BSD-3-Clause"
  12707. ],
  12708. "authors": [
  12709. {
  12710. "name": "Sebastian Bergmann",
  12711. "email": "sebastian@phpunit.de",
  12712. "role": "lead"
  12713. }
  12714. ],
  12715. "description": "The PHP Unit Testing framework.",
  12716. "homepage": "https://phpunit.de/",
  12717. "keywords": [
  12718. "phpunit",
  12719. "testing",
  12720. "xunit"
  12721. ],
  12722. "support": {
  12723. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  12724. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.25"
  12725. },
  12726. "funding": [
  12727. {
  12728. "url": "https://phpunit.de/sponsors.html",
  12729. "type": "custom"
  12730. },
  12731. {
  12732. "url": "https://github.com/sebastianbergmann",
  12733. "type": "github"
  12734. },
  12735. {
  12736. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  12737. "type": "tidelift"
  12738. }
  12739. ],
  12740. "time": "2022-09-25T03:44:45+00:00"
  12741. },
  12742. {
  12743. "name": "sebastian/cli-parser",
  12744. "version": "1.0.1",
  12745. "source": {
  12746. "type": "git",
  12747. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  12748. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  12749. },
  12750. "dist": {
  12751. "type": "zip",
  12752. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  12753. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  12754. "shasum": ""
  12755. },
  12756. "require": {
  12757. "php": ">=7.3"
  12758. },
  12759. "require-dev": {
  12760. "phpunit/phpunit": "^9.3"
  12761. },
  12762. "type": "library",
  12763. "extra": {
  12764. "branch-alias": {
  12765. "dev-master": "1.0-dev"
  12766. }
  12767. },
  12768. "autoload": {
  12769. "classmap": [
  12770. "src/"
  12771. ]
  12772. },
  12773. "notification-url": "https://packagist.org/downloads/",
  12774. "license": [
  12775. "BSD-3-Clause"
  12776. ],
  12777. "authors": [
  12778. {
  12779. "name": "Sebastian Bergmann",
  12780. "email": "sebastian@phpunit.de",
  12781. "role": "lead"
  12782. }
  12783. ],
  12784. "description": "Library for parsing CLI options",
  12785. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  12786. "support": {
  12787. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  12788. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  12789. },
  12790. "funding": [
  12791. {
  12792. "url": "https://github.com/sebastianbergmann",
  12793. "type": "github"
  12794. }
  12795. ],
  12796. "time": "2020-09-28T06:08:49+00:00"
  12797. },
  12798. {
  12799. "name": "sebastian/code-unit",
  12800. "version": "1.0.8",
  12801. "source": {
  12802. "type": "git",
  12803. "url": "https://github.com/sebastianbergmann/code-unit.git",
  12804. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  12805. },
  12806. "dist": {
  12807. "type": "zip",
  12808. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  12809. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  12810. "shasum": ""
  12811. },
  12812. "require": {
  12813. "php": ">=7.3"
  12814. },
  12815. "require-dev": {
  12816. "phpunit/phpunit": "^9.3"
  12817. },
  12818. "type": "library",
  12819. "extra": {
  12820. "branch-alias": {
  12821. "dev-master": "1.0-dev"
  12822. }
  12823. },
  12824. "autoload": {
  12825. "classmap": [
  12826. "src/"
  12827. ]
  12828. },
  12829. "notification-url": "https://packagist.org/downloads/",
  12830. "license": [
  12831. "BSD-3-Clause"
  12832. ],
  12833. "authors": [
  12834. {
  12835. "name": "Sebastian Bergmann",
  12836. "email": "sebastian@phpunit.de",
  12837. "role": "lead"
  12838. }
  12839. ],
  12840. "description": "Collection of value objects that represent the PHP code units",
  12841. "homepage": "https://github.com/sebastianbergmann/code-unit",
  12842. "support": {
  12843. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  12844. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  12845. },
  12846. "funding": [
  12847. {
  12848. "url": "https://github.com/sebastianbergmann",
  12849. "type": "github"
  12850. }
  12851. ],
  12852. "time": "2020-10-26T13:08:54+00:00"
  12853. },
  12854. {
  12855. "name": "sebastian/code-unit-reverse-lookup",
  12856. "version": "2.0.3",
  12857. "source": {
  12858. "type": "git",
  12859. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12860. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  12861. },
  12862. "dist": {
  12863. "type": "zip",
  12864. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12865. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12866. "shasum": ""
  12867. },
  12868. "require": {
  12869. "php": ">=7.3"
  12870. },
  12871. "require-dev": {
  12872. "phpunit/phpunit": "^9.3"
  12873. },
  12874. "type": "library",
  12875. "extra": {
  12876. "branch-alias": {
  12877. "dev-master": "2.0-dev"
  12878. }
  12879. },
  12880. "autoload": {
  12881. "classmap": [
  12882. "src/"
  12883. ]
  12884. },
  12885. "notification-url": "https://packagist.org/downloads/",
  12886. "license": [
  12887. "BSD-3-Clause"
  12888. ],
  12889. "authors": [
  12890. {
  12891. "name": "Sebastian Bergmann",
  12892. "email": "sebastian@phpunit.de"
  12893. }
  12894. ],
  12895. "description": "Looks up which function or method a line of code belongs to",
  12896. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12897. "support": {
  12898. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  12899. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  12900. },
  12901. "funding": [
  12902. {
  12903. "url": "https://github.com/sebastianbergmann",
  12904. "type": "github"
  12905. }
  12906. ],
  12907. "time": "2020-09-28T05:30:19+00:00"
  12908. },
  12909. {
  12910. "name": "sebastian/comparator",
  12911. "version": "4.0.8",
  12912. "source": {
  12913. "type": "git",
  12914. "url": "https://github.com/sebastianbergmann/comparator.git",
  12915. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  12916. },
  12917. "dist": {
  12918. "type": "zip",
  12919. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  12920. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  12921. "shasum": ""
  12922. },
  12923. "require": {
  12924. "php": ">=7.3",
  12925. "sebastian/diff": "^4.0",
  12926. "sebastian/exporter": "^4.0"
  12927. },
  12928. "require-dev": {
  12929. "phpunit/phpunit": "^9.3"
  12930. },
  12931. "type": "library",
  12932. "extra": {
  12933. "branch-alias": {
  12934. "dev-master": "4.0-dev"
  12935. }
  12936. },
  12937. "autoload": {
  12938. "classmap": [
  12939. "src/"
  12940. ]
  12941. },
  12942. "notification-url": "https://packagist.org/downloads/",
  12943. "license": [
  12944. "BSD-3-Clause"
  12945. ],
  12946. "authors": [
  12947. {
  12948. "name": "Sebastian Bergmann",
  12949. "email": "sebastian@phpunit.de"
  12950. },
  12951. {
  12952. "name": "Jeff Welch",
  12953. "email": "whatthejeff@gmail.com"
  12954. },
  12955. {
  12956. "name": "Volker Dusch",
  12957. "email": "github@wallbash.com"
  12958. },
  12959. {
  12960. "name": "Bernhard Schussek",
  12961. "email": "bschussek@2bepublished.at"
  12962. }
  12963. ],
  12964. "description": "Provides the functionality to compare PHP values for equality",
  12965. "homepage": "https://github.com/sebastianbergmann/comparator",
  12966. "keywords": [
  12967. "comparator",
  12968. "compare",
  12969. "equality"
  12970. ],
  12971. "support": {
  12972. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12973. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  12974. },
  12975. "funding": [
  12976. {
  12977. "url": "https://github.com/sebastianbergmann",
  12978. "type": "github"
  12979. }
  12980. ],
  12981. "time": "2022-09-14T12:41:17+00:00"
  12982. },
  12983. {
  12984. "name": "sebastian/complexity",
  12985. "version": "2.0.2",
  12986. "source": {
  12987. "type": "git",
  12988. "url": "https://github.com/sebastianbergmann/complexity.git",
  12989. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  12990. },
  12991. "dist": {
  12992. "type": "zip",
  12993. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  12994. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  12995. "shasum": ""
  12996. },
  12997. "require": {
  12998. "nikic/php-parser": "^4.7",
  12999. "php": ">=7.3"
  13000. },
  13001. "require-dev": {
  13002. "phpunit/phpunit": "^9.3"
  13003. },
  13004. "type": "library",
  13005. "extra": {
  13006. "branch-alias": {
  13007. "dev-master": "2.0-dev"
  13008. }
  13009. },
  13010. "autoload": {
  13011. "classmap": [
  13012. "src/"
  13013. ]
  13014. },
  13015. "notification-url": "https://packagist.org/downloads/",
  13016. "license": [
  13017. "BSD-3-Clause"
  13018. ],
  13019. "authors": [
  13020. {
  13021. "name": "Sebastian Bergmann",
  13022. "email": "sebastian@phpunit.de",
  13023. "role": "lead"
  13024. }
  13025. ],
  13026. "description": "Library for calculating the complexity of PHP code units",
  13027. "homepage": "https://github.com/sebastianbergmann/complexity",
  13028. "support": {
  13029. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  13030. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  13031. },
  13032. "funding": [
  13033. {
  13034. "url": "https://github.com/sebastianbergmann",
  13035. "type": "github"
  13036. }
  13037. ],
  13038. "time": "2020-10-26T15:52:27+00:00"
  13039. },
  13040. {
  13041. "name": "sebastian/diff",
  13042. "version": "4.0.4",
  13043. "source": {
  13044. "type": "git",
  13045. "url": "https://github.com/sebastianbergmann/diff.git",
  13046. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  13047. },
  13048. "dist": {
  13049. "type": "zip",
  13050. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  13051. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  13052. "shasum": ""
  13053. },
  13054. "require": {
  13055. "php": ">=7.3"
  13056. },
  13057. "require-dev": {
  13058. "phpunit/phpunit": "^9.3",
  13059. "symfony/process": "^4.2 || ^5"
  13060. },
  13061. "type": "library",
  13062. "extra": {
  13063. "branch-alias": {
  13064. "dev-master": "4.0-dev"
  13065. }
  13066. },
  13067. "autoload": {
  13068. "classmap": [
  13069. "src/"
  13070. ]
  13071. },
  13072. "notification-url": "https://packagist.org/downloads/",
  13073. "license": [
  13074. "BSD-3-Clause"
  13075. ],
  13076. "authors": [
  13077. {
  13078. "name": "Sebastian Bergmann",
  13079. "email": "sebastian@phpunit.de"
  13080. },
  13081. {
  13082. "name": "Kore Nordmann",
  13083. "email": "mail@kore-nordmann.de"
  13084. }
  13085. ],
  13086. "description": "Diff implementation",
  13087. "homepage": "https://github.com/sebastianbergmann/diff",
  13088. "keywords": [
  13089. "diff",
  13090. "udiff",
  13091. "unidiff",
  13092. "unified diff"
  13093. ],
  13094. "support": {
  13095. "issues": "https://github.com/sebastianbergmann/diff/issues",
  13096. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  13097. },
  13098. "funding": [
  13099. {
  13100. "url": "https://github.com/sebastianbergmann",
  13101. "type": "github"
  13102. }
  13103. ],
  13104. "time": "2020-10-26T13:10:38+00:00"
  13105. },
  13106. {
  13107. "name": "sebastian/environment",
  13108. "version": "5.1.4",
  13109. "source": {
  13110. "type": "git",
  13111. "url": "https://github.com/sebastianbergmann/environment.git",
  13112. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  13113. },
  13114. "dist": {
  13115. "type": "zip",
  13116. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  13117. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  13118. "shasum": ""
  13119. },
  13120. "require": {
  13121. "php": ">=7.3"
  13122. },
  13123. "require-dev": {
  13124. "phpunit/phpunit": "^9.3"
  13125. },
  13126. "suggest": {
  13127. "ext-posix": "*"
  13128. },
  13129. "type": "library",
  13130. "extra": {
  13131. "branch-alias": {
  13132. "dev-master": "5.1-dev"
  13133. }
  13134. },
  13135. "autoload": {
  13136. "classmap": [
  13137. "src/"
  13138. ]
  13139. },
  13140. "notification-url": "https://packagist.org/downloads/",
  13141. "license": [
  13142. "BSD-3-Clause"
  13143. ],
  13144. "authors": [
  13145. {
  13146. "name": "Sebastian Bergmann",
  13147. "email": "sebastian@phpunit.de"
  13148. }
  13149. ],
  13150. "description": "Provides functionality to handle HHVM/PHP environments",
  13151. "homepage": "http://www.github.com/sebastianbergmann/environment",
  13152. "keywords": [
  13153. "Xdebug",
  13154. "environment",
  13155. "hhvm"
  13156. ],
  13157. "support": {
  13158. "issues": "https://github.com/sebastianbergmann/environment/issues",
  13159. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  13160. },
  13161. "funding": [
  13162. {
  13163. "url": "https://github.com/sebastianbergmann",
  13164. "type": "github"
  13165. }
  13166. ],
  13167. "time": "2022-04-03T09:37:03+00:00"
  13168. },
  13169. {
  13170. "name": "sebastian/exporter",
  13171. "version": "4.0.5",
  13172. "source": {
  13173. "type": "git",
  13174. "url": "https://github.com/sebastianbergmann/exporter.git",
  13175. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  13176. },
  13177. "dist": {
  13178. "type": "zip",
  13179. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  13180. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  13181. "shasum": ""
  13182. },
  13183. "require": {
  13184. "php": ">=7.3",
  13185. "sebastian/recursion-context": "^4.0"
  13186. },
  13187. "require-dev": {
  13188. "ext-mbstring": "*",
  13189. "phpunit/phpunit": "^9.3"
  13190. },
  13191. "type": "library",
  13192. "extra": {
  13193. "branch-alias": {
  13194. "dev-master": "4.0-dev"
  13195. }
  13196. },
  13197. "autoload": {
  13198. "classmap": [
  13199. "src/"
  13200. ]
  13201. },
  13202. "notification-url": "https://packagist.org/downloads/",
  13203. "license": [
  13204. "BSD-3-Clause"
  13205. ],
  13206. "authors": [
  13207. {
  13208. "name": "Sebastian Bergmann",
  13209. "email": "sebastian@phpunit.de"
  13210. },
  13211. {
  13212. "name": "Jeff Welch",
  13213. "email": "whatthejeff@gmail.com"
  13214. },
  13215. {
  13216. "name": "Volker Dusch",
  13217. "email": "github@wallbash.com"
  13218. },
  13219. {
  13220. "name": "Adam Harvey",
  13221. "email": "aharvey@php.net"
  13222. },
  13223. {
  13224. "name": "Bernhard Schussek",
  13225. "email": "bschussek@gmail.com"
  13226. }
  13227. ],
  13228. "description": "Provides the functionality to export PHP variables for visualization",
  13229. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  13230. "keywords": [
  13231. "export",
  13232. "exporter"
  13233. ],
  13234. "support": {
  13235. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  13236. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  13237. },
  13238. "funding": [
  13239. {
  13240. "url": "https://github.com/sebastianbergmann",
  13241. "type": "github"
  13242. }
  13243. ],
  13244. "time": "2022-09-14T06:03:37+00:00"
  13245. },
  13246. {
  13247. "name": "sebastian/global-state",
  13248. "version": "5.0.5",
  13249. "source": {
  13250. "type": "git",
  13251. "url": "https://github.com/sebastianbergmann/global-state.git",
  13252. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  13253. },
  13254. "dist": {
  13255. "type": "zip",
  13256. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  13257. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  13258. "shasum": ""
  13259. },
  13260. "require": {
  13261. "php": ">=7.3",
  13262. "sebastian/object-reflector": "^2.0",
  13263. "sebastian/recursion-context": "^4.0"
  13264. },
  13265. "require-dev": {
  13266. "ext-dom": "*",
  13267. "phpunit/phpunit": "^9.3"
  13268. },
  13269. "suggest": {
  13270. "ext-uopz": "*"
  13271. },
  13272. "type": "library",
  13273. "extra": {
  13274. "branch-alias": {
  13275. "dev-master": "5.0-dev"
  13276. }
  13277. },
  13278. "autoload": {
  13279. "classmap": [
  13280. "src/"
  13281. ]
  13282. },
  13283. "notification-url": "https://packagist.org/downloads/",
  13284. "license": [
  13285. "BSD-3-Clause"
  13286. ],
  13287. "authors": [
  13288. {
  13289. "name": "Sebastian Bergmann",
  13290. "email": "sebastian@phpunit.de"
  13291. }
  13292. ],
  13293. "description": "Snapshotting of global state",
  13294. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  13295. "keywords": [
  13296. "global state"
  13297. ],
  13298. "support": {
  13299. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  13300. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  13301. },
  13302. "funding": [
  13303. {
  13304. "url": "https://github.com/sebastianbergmann",
  13305. "type": "github"
  13306. }
  13307. ],
  13308. "time": "2022-02-14T08:28:10+00:00"
  13309. },
  13310. {
  13311. "name": "sebastian/lines-of-code",
  13312. "version": "1.0.3",
  13313. "source": {
  13314. "type": "git",
  13315. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  13316. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  13317. },
  13318. "dist": {
  13319. "type": "zip",
  13320. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  13321. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  13322. "shasum": ""
  13323. },
  13324. "require": {
  13325. "nikic/php-parser": "^4.6",
  13326. "php": ">=7.3"
  13327. },
  13328. "require-dev": {
  13329. "phpunit/phpunit": "^9.3"
  13330. },
  13331. "type": "library",
  13332. "extra": {
  13333. "branch-alias": {
  13334. "dev-master": "1.0-dev"
  13335. }
  13336. },
  13337. "autoload": {
  13338. "classmap": [
  13339. "src/"
  13340. ]
  13341. },
  13342. "notification-url": "https://packagist.org/downloads/",
  13343. "license": [
  13344. "BSD-3-Clause"
  13345. ],
  13346. "authors": [
  13347. {
  13348. "name": "Sebastian Bergmann",
  13349. "email": "sebastian@phpunit.de",
  13350. "role": "lead"
  13351. }
  13352. ],
  13353. "description": "Library for counting the lines of code in PHP source code",
  13354. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  13355. "support": {
  13356. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  13357. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  13358. },
  13359. "funding": [
  13360. {
  13361. "url": "https://github.com/sebastianbergmann",
  13362. "type": "github"
  13363. }
  13364. ],
  13365. "time": "2020-11-28T06:42:11+00:00"
  13366. },
  13367. {
  13368. "name": "sebastian/object-enumerator",
  13369. "version": "4.0.4",
  13370. "source": {
  13371. "type": "git",
  13372. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  13373. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  13374. },
  13375. "dist": {
  13376. "type": "zip",
  13377. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  13378. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  13379. "shasum": ""
  13380. },
  13381. "require": {
  13382. "php": ">=7.3",
  13383. "sebastian/object-reflector": "^2.0",
  13384. "sebastian/recursion-context": "^4.0"
  13385. },
  13386. "require-dev": {
  13387. "phpunit/phpunit": "^9.3"
  13388. },
  13389. "type": "library",
  13390. "extra": {
  13391. "branch-alias": {
  13392. "dev-master": "4.0-dev"
  13393. }
  13394. },
  13395. "autoload": {
  13396. "classmap": [
  13397. "src/"
  13398. ]
  13399. },
  13400. "notification-url": "https://packagist.org/downloads/",
  13401. "license": [
  13402. "BSD-3-Clause"
  13403. ],
  13404. "authors": [
  13405. {
  13406. "name": "Sebastian Bergmann",
  13407. "email": "sebastian@phpunit.de"
  13408. }
  13409. ],
  13410. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  13411. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  13412. "support": {
  13413. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  13414. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  13415. },
  13416. "funding": [
  13417. {
  13418. "url": "https://github.com/sebastianbergmann",
  13419. "type": "github"
  13420. }
  13421. ],
  13422. "time": "2020-10-26T13:12:34+00:00"
  13423. },
  13424. {
  13425. "name": "sebastian/object-reflector",
  13426. "version": "2.0.4",
  13427. "source": {
  13428. "type": "git",
  13429. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  13430. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  13431. },
  13432. "dist": {
  13433. "type": "zip",
  13434. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  13435. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  13436. "shasum": ""
  13437. },
  13438. "require": {
  13439. "php": ">=7.3"
  13440. },
  13441. "require-dev": {
  13442. "phpunit/phpunit": "^9.3"
  13443. },
  13444. "type": "library",
  13445. "extra": {
  13446. "branch-alias": {
  13447. "dev-master": "2.0-dev"
  13448. }
  13449. },
  13450. "autoload": {
  13451. "classmap": [
  13452. "src/"
  13453. ]
  13454. },
  13455. "notification-url": "https://packagist.org/downloads/",
  13456. "license": [
  13457. "BSD-3-Clause"
  13458. ],
  13459. "authors": [
  13460. {
  13461. "name": "Sebastian Bergmann",
  13462. "email": "sebastian@phpunit.de"
  13463. }
  13464. ],
  13465. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  13466. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  13467. "support": {
  13468. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  13469. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  13470. },
  13471. "funding": [
  13472. {
  13473. "url": "https://github.com/sebastianbergmann",
  13474. "type": "github"
  13475. }
  13476. ],
  13477. "time": "2020-10-26T13:14:26+00:00"
  13478. },
  13479. {
  13480. "name": "sebastian/recursion-context",
  13481. "version": "4.0.4",
  13482. "source": {
  13483. "type": "git",
  13484. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  13485. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  13486. },
  13487. "dist": {
  13488. "type": "zip",
  13489. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  13490. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  13491. "shasum": ""
  13492. },
  13493. "require": {
  13494. "php": ">=7.3"
  13495. },
  13496. "require-dev": {
  13497. "phpunit/phpunit": "^9.3"
  13498. },
  13499. "type": "library",
  13500. "extra": {
  13501. "branch-alias": {
  13502. "dev-master": "4.0-dev"
  13503. }
  13504. },
  13505. "autoload": {
  13506. "classmap": [
  13507. "src/"
  13508. ]
  13509. },
  13510. "notification-url": "https://packagist.org/downloads/",
  13511. "license": [
  13512. "BSD-3-Clause"
  13513. ],
  13514. "authors": [
  13515. {
  13516. "name": "Sebastian Bergmann",
  13517. "email": "sebastian@phpunit.de"
  13518. },
  13519. {
  13520. "name": "Jeff Welch",
  13521. "email": "whatthejeff@gmail.com"
  13522. },
  13523. {
  13524. "name": "Adam Harvey",
  13525. "email": "aharvey@php.net"
  13526. }
  13527. ],
  13528. "description": "Provides functionality to recursively process PHP variables",
  13529. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  13530. "support": {
  13531. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  13532. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  13533. },
  13534. "funding": [
  13535. {
  13536. "url": "https://github.com/sebastianbergmann",
  13537. "type": "github"
  13538. }
  13539. ],
  13540. "time": "2020-10-26T13:17:30+00:00"
  13541. },
  13542. {
  13543. "name": "sebastian/resource-operations",
  13544. "version": "3.0.3",
  13545. "source": {
  13546. "type": "git",
  13547. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  13548. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  13549. },
  13550. "dist": {
  13551. "type": "zip",
  13552. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  13553. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  13554. "shasum": ""
  13555. },
  13556. "require": {
  13557. "php": ">=7.3"
  13558. },
  13559. "require-dev": {
  13560. "phpunit/phpunit": "^9.0"
  13561. },
  13562. "type": "library",
  13563. "extra": {
  13564. "branch-alias": {
  13565. "dev-master": "3.0-dev"
  13566. }
  13567. },
  13568. "autoload": {
  13569. "classmap": [
  13570. "src/"
  13571. ]
  13572. },
  13573. "notification-url": "https://packagist.org/downloads/",
  13574. "license": [
  13575. "BSD-3-Clause"
  13576. ],
  13577. "authors": [
  13578. {
  13579. "name": "Sebastian Bergmann",
  13580. "email": "sebastian@phpunit.de"
  13581. }
  13582. ],
  13583. "description": "Provides a list of PHP built-in functions that operate on resources",
  13584. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  13585. "support": {
  13586. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  13587. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  13588. },
  13589. "funding": [
  13590. {
  13591. "url": "https://github.com/sebastianbergmann",
  13592. "type": "github"
  13593. }
  13594. ],
  13595. "time": "2020-09-28T06:45:17+00:00"
  13596. },
  13597. {
  13598. "name": "sebastian/type",
  13599. "version": "3.2.0",
  13600. "source": {
  13601. "type": "git",
  13602. "url": "https://github.com/sebastianbergmann/type.git",
  13603. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  13604. },
  13605. "dist": {
  13606. "type": "zip",
  13607. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  13608. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  13609. "shasum": ""
  13610. },
  13611. "require": {
  13612. "php": ">=7.3"
  13613. },
  13614. "require-dev": {
  13615. "phpunit/phpunit": "^9.5"
  13616. },
  13617. "type": "library",
  13618. "extra": {
  13619. "branch-alias": {
  13620. "dev-master": "3.2-dev"
  13621. }
  13622. },
  13623. "autoload": {
  13624. "classmap": [
  13625. "src/"
  13626. ]
  13627. },
  13628. "notification-url": "https://packagist.org/downloads/",
  13629. "license": [
  13630. "BSD-3-Clause"
  13631. ],
  13632. "authors": [
  13633. {
  13634. "name": "Sebastian Bergmann",
  13635. "email": "sebastian@phpunit.de",
  13636. "role": "lead"
  13637. }
  13638. ],
  13639. "description": "Collection of value objects that represent the types of the PHP type system",
  13640. "homepage": "https://github.com/sebastianbergmann/type",
  13641. "support": {
  13642. "issues": "https://github.com/sebastianbergmann/type/issues",
  13643. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  13644. },
  13645. "funding": [
  13646. {
  13647. "url": "https://github.com/sebastianbergmann",
  13648. "type": "github"
  13649. }
  13650. ],
  13651. "time": "2022-09-12T14:47:03+00:00"
  13652. },
  13653. {
  13654. "name": "sebastian/version",
  13655. "version": "3.0.2",
  13656. "source": {
  13657. "type": "git",
  13658. "url": "https://github.com/sebastianbergmann/version.git",
  13659. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  13660. },
  13661. "dist": {
  13662. "type": "zip",
  13663. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  13664. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  13665. "shasum": ""
  13666. },
  13667. "require": {
  13668. "php": ">=7.3"
  13669. },
  13670. "type": "library",
  13671. "extra": {
  13672. "branch-alias": {
  13673. "dev-master": "3.0-dev"
  13674. }
  13675. },
  13676. "autoload": {
  13677. "classmap": [
  13678. "src/"
  13679. ]
  13680. },
  13681. "notification-url": "https://packagist.org/downloads/",
  13682. "license": [
  13683. "BSD-3-Clause"
  13684. ],
  13685. "authors": [
  13686. {
  13687. "name": "Sebastian Bergmann",
  13688. "email": "sebastian@phpunit.de",
  13689. "role": "lead"
  13690. }
  13691. ],
  13692. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  13693. "homepage": "https://github.com/sebastianbergmann/version",
  13694. "support": {
  13695. "issues": "https://github.com/sebastianbergmann/version/issues",
  13696. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  13697. },
  13698. "funding": [
  13699. {
  13700. "url": "https://github.com/sebastianbergmann",
  13701. "type": "github"
  13702. }
  13703. ],
  13704. "time": "2020-09-28T06:39:44+00:00"
  13705. },
  13706. {
  13707. "name": "symfony/browser-kit",
  13708. "version": "v6.1.3",
  13709. "source": {
  13710. "type": "git",
  13711. "url": "https://github.com/symfony/browser-kit.git",
  13712. "reference": "2e3b6a4406c2af963c634d7bd0457402b67dcc56"
  13713. },
  13714. "dist": {
  13715. "type": "zip",
  13716. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2e3b6a4406c2af963c634d7bd0457402b67dcc56",
  13717. "reference": "2e3b6a4406c2af963c634d7bd0457402b67dcc56",
  13718. "shasum": ""
  13719. },
  13720. "require": {
  13721. "php": ">=8.1",
  13722. "symfony/dom-crawler": "^5.4|^6.0"
  13723. },
  13724. "require-dev": {
  13725. "symfony/css-selector": "^5.4|^6.0",
  13726. "symfony/http-client": "^5.4|^6.0",
  13727. "symfony/mime": "^5.4|^6.0",
  13728. "symfony/process": "^5.4|^6.0"
  13729. },
  13730. "suggest": {
  13731. "symfony/process": ""
  13732. },
  13733. "type": "library",
  13734. "autoload": {
  13735. "psr-4": {
  13736. "Symfony\\Component\\BrowserKit\\": ""
  13737. },
  13738. "exclude-from-classmap": [
  13739. "/Tests/"
  13740. ]
  13741. },
  13742. "notification-url": "https://packagist.org/downloads/",
  13743. "license": [
  13744. "MIT"
  13745. ],
  13746. "authors": [
  13747. {
  13748. "name": "Fabien Potencier",
  13749. "email": "fabien@symfony.com"
  13750. },
  13751. {
  13752. "name": "Symfony Community",
  13753. "homepage": "https://symfony.com/contributors"
  13754. }
  13755. ],
  13756. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  13757. "homepage": "https://symfony.com",
  13758. "support": {
  13759. "source": "https://github.com/symfony/browser-kit/tree/v6.1.3"
  13760. },
  13761. "funding": [
  13762. {
  13763. "url": "https://symfony.com/sponsor",
  13764. "type": "custom"
  13765. },
  13766. {
  13767. "url": "https://github.com/fabpot",
  13768. "type": "github"
  13769. },
  13770. {
  13771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13772. "type": "tidelift"
  13773. }
  13774. ],
  13775. "time": "2022-07-27T15:50:51+00:00"
  13776. },
  13777. {
  13778. "name": "symfony/css-selector",
  13779. "version": "v6.1.3",
  13780. "source": {
  13781. "type": "git",
  13782. "url": "https://github.com/symfony/css-selector.git",
  13783. "reference": "0dd5e36b80e1de97f8f74ed7023ac2b837a36443"
  13784. },
  13785. "dist": {
  13786. "type": "zip",
  13787. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0dd5e36b80e1de97f8f74ed7023ac2b837a36443",
  13788. "reference": "0dd5e36b80e1de97f8f74ed7023ac2b837a36443",
  13789. "shasum": ""
  13790. },
  13791. "require": {
  13792. "php": ">=8.1"
  13793. },
  13794. "type": "library",
  13795. "autoload": {
  13796. "psr-4": {
  13797. "Symfony\\Component\\CssSelector\\": ""
  13798. },
  13799. "exclude-from-classmap": [
  13800. "/Tests/"
  13801. ]
  13802. },
  13803. "notification-url": "https://packagist.org/downloads/",
  13804. "license": [
  13805. "MIT"
  13806. ],
  13807. "authors": [
  13808. {
  13809. "name": "Fabien Potencier",
  13810. "email": "fabien@symfony.com"
  13811. },
  13812. {
  13813. "name": "Jean-François Simon",
  13814. "email": "jeanfrancois.simon@sensiolabs.com"
  13815. },
  13816. {
  13817. "name": "Symfony Community",
  13818. "homepage": "https://symfony.com/contributors"
  13819. }
  13820. ],
  13821. "description": "Converts CSS selectors to XPath expressions",
  13822. "homepage": "https://symfony.com",
  13823. "support": {
  13824. "source": "https://github.com/symfony/css-selector/tree/v6.1.3"
  13825. },
  13826. "funding": [
  13827. {
  13828. "url": "https://symfony.com/sponsor",
  13829. "type": "custom"
  13830. },
  13831. {
  13832. "url": "https://github.com/fabpot",
  13833. "type": "github"
  13834. },
  13835. {
  13836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13837. "type": "tidelift"
  13838. }
  13839. ],
  13840. "time": "2022-06-27T17:24:16+00:00"
  13841. },
  13842. {
  13843. "name": "symfony/debug-bundle",
  13844. "version": "v6.1.3",
  13845. "source": {
  13846. "type": "git",
  13847. "url": "https://github.com/symfony/debug-bundle.git",
  13848. "reference": "4084f86639bf0270d6dd2225fc8d7c317780dd6b"
  13849. },
  13850. "dist": {
  13851. "type": "zip",
  13852. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/4084f86639bf0270d6dd2225fc8d7c317780dd6b",
  13853. "reference": "4084f86639bf0270d6dd2225fc8d7c317780dd6b",
  13854. "shasum": ""
  13855. },
  13856. "require": {
  13857. "ext-xml": "*",
  13858. "php": ">=8.1",
  13859. "symfony/dependency-injection": "^5.4|^6.0",
  13860. "symfony/http-kernel": "^5.4|^6.0",
  13861. "symfony/twig-bridge": "^5.4|^6.0",
  13862. "symfony/var-dumper": "^5.4|^6.0"
  13863. },
  13864. "conflict": {
  13865. "symfony/config": "<5.4",
  13866. "symfony/dependency-injection": "<5.4"
  13867. },
  13868. "require-dev": {
  13869. "symfony/config": "^5.4|^6.0",
  13870. "symfony/web-profiler-bundle": "^5.4|^6.0"
  13871. },
  13872. "suggest": {
  13873. "symfony/config": "For service container configuration",
  13874. "symfony/dependency-injection": "For using as a service from the container"
  13875. },
  13876. "type": "symfony-bundle",
  13877. "autoload": {
  13878. "psr-4": {
  13879. "Symfony\\Bundle\\DebugBundle\\": ""
  13880. },
  13881. "exclude-from-classmap": [
  13882. "/Tests/"
  13883. ]
  13884. },
  13885. "notification-url": "https://packagist.org/downloads/",
  13886. "license": [
  13887. "MIT"
  13888. ],
  13889. "authors": [
  13890. {
  13891. "name": "Fabien Potencier",
  13892. "email": "fabien@symfony.com"
  13893. },
  13894. {
  13895. "name": "Symfony Community",
  13896. "homepage": "https://symfony.com/contributors"
  13897. }
  13898. ],
  13899. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  13900. "homepage": "https://symfony.com",
  13901. "support": {
  13902. "source": "https://github.com/symfony/debug-bundle/tree/v6.1.3"
  13903. },
  13904. "funding": [
  13905. {
  13906. "url": "https://symfony.com/sponsor",
  13907. "type": "custom"
  13908. },
  13909. {
  13910. "url": "https://github.com/fabpot",
  13911. "type": "github"
  13912. },
  13913. {
  13914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13915. "type": "tidelift"
  13916. }
  13917. ],
  13918. "time": "2022-07-20T13:46:29+00:00"
  13919. },
  13920. {
  13921. "name": "symfony/maker-bundle",
  13922. "version": "v1.47.0",
  13923. "source": {
  13924. "type": "git",
  13925. "url": "https://github.com/symfony/maker-bundle.git",
  13926. "reference": "e607f129d29a6c1e9a9e1ef3d229d653311d58f3"
  13927. },
  13928. "dist": {
  13929. "type": "zip",
  13930. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/e607f129d29a6c1e9a9e1ef3d229d653311d58f3",
  13931. "reference": "e607f129d29a6c1e9a9e1ef3d229d653311d58f3",
  13932. "shasum": ""
  13933. },
  13934. "require": {
  13935. "doctrine/inflector": "^2.0",
  13936. "nikic/php-parser": "^4.11",
  13937. "php": ">=8.0",
  13938. "symfony/config": "^5.4.7|^6.0",
  13939. "symfony/console": "^5.4.7|^6.0",
  13940. "symfony/dependency-injection": "^5.4.7|^6.0",
  13941. "symfony/deprecation-contracts": "^2.2|^3",
  13942. "symfony/filesystem": "^5.4.7|^6.0",
  13943. "symfony/finder": "^5.4.3|^6.0",
  13944. "symfony/framework-bundle": "^5.4.7|^6.0",
  13945. "symfony/http-kernel": "^5.4.7|^6.0"
  13946. },
  13947. "conflict": {
  13948. "doctrine/doctrine-bundle": "<2.4",
  13949. "doctrine/orm": "<2.10",
  13950. "symfony/doctrine-bridge": "<5.4"
  13951. },
  13952. "require-dev": {
  13953. "composer/semver": "^3.0",
  13954. "doctrine/doctrine-bundle": "^2.4",
  13955. "doctrine/orm": "^2.10.0",
  13956. "symfony/http-client": "^5.4.7|^6.0",
  13957. "symfony/phpunit-bridge": "^5.4.7|^6.0",
  13958. "symfony/polyfill-php80": "^1.16.0",
  13959. "symfony/process": "^5.4.7|^6.0",
  13960. "symfony/security-core": "^5.4.7|^6.0",
  13961. "symfony/yaml": "^5.4.3|^6.0",
  13962. "twig/twig": "^2.0|^3.0"
  13963. },
  13964. "type": "symfony-bundle",
  13965. "extra": {
  13966. "branch-alias": {
  13967. "dev-main": "1.0-dev"
  13968. }
  13969. },
  13970. "autoload": {
  13971. "psr-4": {
  13972. "Symfony\\Bundle\\MakerBundle\\": "src/"
  13973. }
  13974. },
  13975. "notification-url": "https://packagist.org/downloads/",
  13976. "license": [
  13977. "MIT"
  13978. ],
  13979. "authors": [
  13980. {
  13981. "name": "Symfony Community",
  13982. "homepage": "https://symfony.com/contributors"
  13983. }
  13984. ],
  13985. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  13986. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  13987. "keywords": [
  13988. "code generator",
  13989. "generator",
  13990. "scaffold",
  13991. "scaffolding"
  13992. ],
  13993. "support": {
  13994. "issues": "https://github.com/symfony/maker-bundle/issues",
  13995. "source": "https://github.com/symfony/maker-bundle/tree/v1.47.0"
  13996. },
  13997. "funding": [
  13998. {
  13999. "url": "https://symfony.com/sponsor",
  14000. "type": "custom"
  14001. },
  14002. {
  14003. "url": "https://github.com/fabpot",
  14004. "type": "github"
  14005. },
  14006. {
  14007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14008. "type": "tidelift"
  14009. }
  14010. ],
  14011. "time": "2022-10-04T15:05:10+00:00"
  14012. },
  14013. {
  14014. "name": "symfony/phpunit-bridge",
  14015. "version": "v6.1.6",
  14016. "source": {
  14017. "type": "git",
  14018. "url": "https://github.com/symfony/phpunit-bridge.git",
  14019. "reference": "07cf788ac9ae83b59d46599bb5098c3add88c68b"
  14020. },
  14021. "dist": {
  14022. "type": "zip",
  14023. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/07cf788ac9ae83b59d46599bb5098c3add88c68b",
  14024. "reference": "07cf788ac9ae83b59d46599bb5098c3add88c68b",
  14025. "shasum": ""
  14026. },
  14027. "require": {
  14028. "php": ">=7.1.3"
  14029. },
  14030. "conflict": {
  14031. "phpunit/phpunit": "<7.5|9.1.2"
  14032. },
  14033. "require-dev": {
  14034. "symfony/deprecation-contracts": "^2.1|^3.0",
  14035. "symfony/error-handler": "^5.4|^6.0"
  14036. },
  14037. "suggest": {
  14038. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  14039. },
  14040. "bin": [
  14041. "bin/simple-phpunit"
  14042. ],
  14043. "type": "symfony-bridge",
  14044. "extra": {
  14045. "thanks": {
  14046. "name": "phpunit/phpunit",
  14047. "url": "https://github.com/sebastianbergmann/phpunit"
  14048. }
  14049. },
  14050. "autoload": {
  14051. "files": [
  14052. "bootstrap.php"
  14053. ],
  14054. "psr-4": {
  14055. "Symfony\\Bridge\\PhpUnit\\": ""
  14056. },
  14057. "exclude-from-classmap": [
  14058. "/Tests/"
  14059. ]
  14060. },
  14061. "notification-url": "https://packagist.org/downloads/",
  14062. "license": [
  14063. "MIT"
  14064. ],
  14065. "authors": [
  14066. {
  14067. "name": "Nicolas Grekas",
  14068. "email": "p@tchwork.com"
  14069. },
  14070. {
  14071. "name": "Symfony Community",
  14072. "homepage": "https://symfony.com/contributors"
  14073. }
  14074. ],
  14075. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  14076. "homepage": "https://symfony.com",
  14077. "support": {
  14078. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.1.6"
  14079. },
  14080. "funding": [
  14081. {
  14082. "url": "https://symfony.com/sponsor",
  14083. "type": "custom"
  14084. },
  14085. {
  14086. "url": "https://github.com/fabpot",
  14087. "type": "github"
  14088. },
  14089. {
  14090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14091. "type": "tidelift"
  14092. }
  14093. ],
  14094. "time": "2022-10-07T08:04:03+00:00"
  14095. },
  14096. {
  14097. "name": "symfony/polyfill-php81",
  14098. "version": "v1.26.0",
  14099. "source": {
  14100. "type": "git",
  14101. "url": "https://github.com/symfony/polyfill-php81.git",
  14102. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  14103. },
  14104. "dist": {
  14105. "type": "zip",
  14106. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  14107. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  14108. "shasum": ""
  14109. },
  14110. "require": {
  14111. "php": ">=7.1"
  14112. },
  14113. "type": "library",
  14114. "extra": {
  14115. "branch-alias": {
  14116. "dev-main": "1.26-dev"
  14117. },
  14118. "thanks": {
  14119. "name": "symfony/polyfill",
  14120. "url": "https://github.com/symfony/polyfill"
  14121. }
  14122. },
  14123. "autoload": {
  14124. "files": [
  14125. "bootstrap.php"
  14126. ],
  14127. "psr-4": {
  14128. "Symfony\\Polyfill\\Php81\\": ""
  14129. },
  14130. "classmap": [
  14131. "Resources/stubs"
  14132. ]
  14133. },
  14134. "notification-url": "https://packagist.org/downloads/",
  14135. "license": [
  14136. "MIT"
  14137. ],
  14138. "authors": [
  14139. {
  14140. "name": "Nicolas Grekas",
  14141. "email": "p@tchwork.com"
  14142. },
  14143. {
  14144. "name": "Symfony Community",
  14145. "homepage": "https://symfony.com/contributors"
  14146. }
  14147. ],
  14148. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  14149. "homepage": "https://symfony.com",
  14150. "keywords": [
  14151. "compatibility",
  14152. "polyfill",
  14153. "portable",
  14154. "shim"
  14155. ],
  14156. "support": {
  14157. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  14158. },
  14159. "funding": [
  14160. {
  14161. "url": "https://symfony.com/sponsor",
  14162. "type": "custom"
  14163. },
  14164. {
  14165. "url": "https://github.com/fabpot",
  14166. "type": "github"
  14167. },
  14168. {
  14169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14170. "type": "tidelift"
  14171. }
  14172. ],
  14173. "time": "2022-05-24T11:49:31+00:00"
  14174. },
  14175. {
  14176. "name": "symfony/web-profiler-bundle",
  14177. "version": "v6.1.6",
  14178. "source": {
  14179. "type": "git",
  14180. "url": "https://github.com/symfony/web-profiler-bundle.git",
  14181. "reference": "45d05cd8e967fd06bb1f66f748ed308c00674d32"
  14182. },
  14183. "dist": {
  14184. "type": "zip",
  14185. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/45d05cd8e967fd06bb1f66f748ed308c00674d32",
  14186. "reference": "45d05cd8e967fd06bb1f66f748ed308c00674d32",
  14187. "shasum": ""
  14188. },
  14189. "require": {
  14190. "php": ">=8.1",
  14191. "symfony/config": "^5.4|^6.0",
  14192. "symfony/framework-bundle": "^5.4|^6.0",
  14193. "symfony/http-kernel": "^6.1",
  14194. "symfony/routing": "^5.4|^6.0",
  14195. "symfony/twig-bundle": "^5.4|^6.0",
  14196. "twig/twig": "^2.13|^3.0.4"
  14197. },
  14198. "conflict": {
  14199. "symfony/form": "<5.4",
  14200. "symfony/mailer": "<5.4",
  14201. "symfony/messenger": "<5.4"
  14202. },
  14203. "require-dev": {
  14204. "symfony/browser-kit": "^5.4|^6.0",
  14205. "symfony/console": "^5.4|^6.0",
  14206. "symfony/css-selector": "^5.4|^6.0",
  14207. "symfony/stopwatch": "^5.4|^6.0"
  14208. },
  14209. "type": "symfony-bundle",
  14210. "autoload": {
  14211. "psr-4": {
  14212. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  14213. },
  14214. "exclude-from-classmap": [
  14215. "/Tests/"
  14216. ]
  14217. },
  14218. "notification-url": "https://packagist.org/downloads/",
  14219. "license": [
  14220. "MIT"
  14221. ],
  14222. "authors": [
  14223. {
  14224. "name": "Fabien Potencier",
  14225. "email": "fabien@symfony.com"
  14226. },
  14227. {
  14228. "name": "Symfony Community",
  14229. "homepage": "https://symfony.com/contributors"
  14230. }
  14231. ],
  14232. "description": "Provides a development tool that gives detailed information about the execution of any request",
  14233. "homepage": "https://symfony.com",
  14234. "support": {
  14235. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.1.6"
  14236. },
  14237. "funding": [
  14238. {
  14239. "url": "https://symfony.com/sponsor",
  14240. "type": "custom"
  14241. },
  14242. {
  14243. "url": "https://github.com/fabpot",
  14244. "type": "github"
  14245. },
  14246. {
  14247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  14248. "type": "tidelift"
  14249. }
  14250. ],
  14251. "time": "2022-10-02T08:30:52+00:00"
  14252. },
  14253. {
  14254. "name": "theseer/tokenizer",
  14255. "version": "1.2.1",
  14256. "source": {
  14257. "type": "git",
  14258. "url": "https://github.com/theseer/tokenizer.git",
  14259. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  14260. },
  14261. "dist": {
  14262. "type": "zip",
  14263. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  14264. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  14265. "shasum": ""
  14266. },
  14267. "require": {
  14268. "ext-dom": "*",
  14269. "ext-tokenizer": "*",
  14270. "ext-xmlwriter": "*",
  14271. "php": "^7.2 || ^8.0"
  14272. },
  14273. "type": "library",
  14274. "autoload": {
  14275. "classmap": [
  14276. "src/"
  14277. ]
  14278. },
  14279. "notification-url": "https://packagist.org/downloads/",
  14280. "license": [
  14281. "BSD-3-Clause"
  14282. ],
  14283. "authors": [
  14284. {
  14285. "name": "Arne Blankerts",
  14286. "email": "arne@blankerts.de",
  14287. "role": "Developer"
  14288. }
  14289. ],
  14290. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  14291. "support": {
  14292. "issues": "https://github.com/theseer/tokenizer/issues",
  14293. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  14294. },
  14295. "funding": [
  14296. {
  14297. "url": "https://github.com/theseer",
  14298. "type": "github"
  14299. }
  14300. ],
  14301. "time": "2021-07-28T10:34:58+00:00"
  14302. },
  14303. {
  14304. "name": "ulrichsg/getopt-php",
  14305. "version": "4.0.0",
  14306. "source": {
  14307. "type": "git",
  14308. "url": "https://github.com/someonewithpc/getopt-php.git",
  14309. "reference": "master"
  14310. },
  14311. "type": "library",
  14312. "autoload": {
  14313. "psr-4": {
  14314. "GetOpt\\": "src"
  14315. }
  14316. }
  14317. },
  14318. {
  14319. "name": "wp-cli/php-cli-tools",
  14320. "version": "v0.11.15",
  14321. "source": {
  14322. "type": "git",
  14323. "url": "https://github.com/wp-cli/php-cli-tools.git",
  14324. "reference": "b6edd35988892ea1451392eb7a26d9dbe98c836d"
  14325. },
  14326. "dist": {
  14327. "type": "zip",
  14328. "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/b6edd35988892ea1451392eb7a26d9dbe98c836d",
  14329. "reference": "b6edd35988892ea1451392eb7a26d9dbe98c836d",
  14330. "shasum": ""
  14331. },
  14332. "require": {
  14333. "php": ">= 5.3.0"
  14334. },
  14335. "type": "library",
  14336. "autoload": {
  14337. "files": [
  14338. "lib/cli/cli.php"
  14339. ],
  14340. "psr-0": {
  14341. "cli": "lib/"
  14342. }
  14343. },
  14344. "notification-url": "https://packagist.org/downloads/",
  14345. "license": [
  14346. "MIT"
  14347. ],
  14348. "authors": [
  14349. {
  14350. "name": "Daniel Bachhuber",
  14351. "email": "daniel@handbuilt.co",
  14352. "role": "Maintainer"
  14353. },
  14354. {
  14355. "name": "James Logsdon",
  14356. "email": "jlogsdon@php.net",
  14357. "role": "Developer"
  14358. }
  14359. ],
  14360. "description": "Console utilities for PHP",
  14361. "homepage": "http://github.com/wp-cli/php-cli-tools",
  14362. "keywords": [
  14363. "cli",
  14364. "console"
  14365. ],
  14366. "support": {
  14367. "issues": "https://github.com/wp-cli/php-cli-tools/issues",
  14368. "source": "https://github.com/wp-cli/php-cli-tools/tree/v0.11.15"
  14369. },
  14370. "time": "2022-08-15T10:15:55+00:00"
  14371. }
  14372. ],
  14373. "aliases": [],
  14374. "minimum-stability": "stable",
  14375. "stability-flags": {
  14376. "someonewithpc/redis-polyfill": 20,
  14377. "phpstan/phpstan": 20,
  14378. "xemlock/php-latex": 20
  14379. },
  14380. "prefer-stable": false,
  14381. "prefer-lowest": false,
  14382. "platform": {
  14383. "php": "^8.1",
  14384. "ext-ctype": "*",
  14385. "ext-curl": "*",
  14386. "ext-iconv": "*",
  14387. "ext-openssl": "*",
  14388. "ext-vips": "*"
  14389. },
  14390. "platform-dev": [],
  14391. "plugin-api-version": "2.1.0"
  14392. }