composer.lock 312 KB

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