composer.lock 334 KB

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