composer.lock 344 KB

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