composer.lock 382 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577
  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": "cc7f1e0988ee9e528e57044730cb6eec",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  20. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.3|^8.0",
  31. "symfony/http-foundation": "^5.3|^6|^7",
  32. "symfony/http-kernel": "^5.3|^6|^7"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.2-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  68. },
  69. "time": "2025-03-13T08:50:04+00:00"
  70. },
  71. {
  72. "name": "brick/math",
  73. "version": "0.11.0",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/brick/math.git",
  77. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  82. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "php": "^8.0"
  93. },
  94. "require-dev": {
  95. "php-coveralls/php-coveralls": "^2.2",
  96. "phpunit/phpunit": "^9.0",
  97. "vimeo/psalm": "5.0.0"
  98. },
  99. "type": "library",
  100. "autoload": {
  101. "psr-4": {
  102. "Brick\\Math\\": "src/"
  103. }
  104. },
  105. "notification-url": "https://packagist.org/downloads/",
  106. "license": [
  107. "MIT"
  108. ],
  109. "description": "Arbitrary-precision arithmetic library",
  110. "keywords": [
  111. "Arbitrary-precision",
  112. "BigInteger",
  113. "BigRational",
  114. "arithmetic",
  115. "bigdecimal",
  116. "bignum",
  117. "brick",
  118. "math"
  119. ],
  120. "support": {
  121. "issues": "https://github.com/brick/math/issues",
  122. "source": "https://github.com/brick/math/tree/0.11.0"
  123. },
  124. "funding": [
  125. {
  126. "url": "https://github.com/BenMorel",
  127. "type": "github"
  128. }
  129. ],
  130. "time": "2023-01-15T23:15:59+00:00"
  131. },
  132. {
  133. "name": "carbonphp/carbon-doctrine-types",
  134. "version": "2.1.0",
  135. "source": {
  136. "type": "git",
  137. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  138. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  139. },
  140. "dist": {
  141. "type": "zip",
  142. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  143. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  144. "shasum": "",
  145. "mirrors": [
  146. {
  147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  148. "preferred": true
  149. }
  150. ]
  151. },
  152. "require": {
  153. "php": "^7.4 || ^8.0"
  154. },
  155. "conflict": {
  156. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  157. },
  158. "require-dev": {
  159. "doctrine/dbal": "^3.7.0",
  160. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  161. "phpunit/phpunit": "^10.3"
  162. },
  163. "type": "library",
  164. "autoload": {
  165. "psr-4": {
  166. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  167. }
  168. },
  169. "notification-url": "https://packagist.org/downloads/",
  170. "license": [
  171. "MIT"
  172. ],
  173. "authors": [
  174. {
  175. "name": "KyleKatarn",
  176. "email": "kylekatarnls@gmail.com"
  177. }
  178. ],
  179. "description": "Types to use Carbon in Doctrine",
  180. "keywords": [
  181. "carbon",
  182. "date",
  183. "datetime",
  184. "doctrine",
  185. "time"
  186. ],
  187. "support": {
  188. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  189. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  190. },
  191. "funding": [
  192. {
  193. "url": "https://github.com/kylekatarnls",
  194. "type": "github"
  195. },
  196. {
  197. "url": "https://opencollective.com/Carbon",
  198. "type": "open_collective"
  199. },
  200. {
  201. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  202. "type": "tidelift"
  203. }
  204. ],
  205. "time": "2023-12-11T17:09:12+00:00"
  206. },
  207. {
  208. "name": "cboden/ratchet",
  209. "version": "v0.4.4",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/ratchetphp/Ratchet.git",
  213. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  218. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  219. "shasum": "",
  220. "mirrors": [
  221. {
  222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  223. "preferred": true
  224. }
  225. ]
  226. },
  227. "require": {
  228. "guzzlehttp/psr7": "^1.7|^2.0",
  229. "php": ">=5.4.2",
  230. "ratchet/rfc6455": "^0.3.1",
  231. "react/event-loop": ">=0.4",
  232. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  233. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  234. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  235. },
  236. "require-dev": {
  237. "phpunit/phpunit": "~4.8"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "Ratchet\\": "src/Ratchet"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Chris Boden",
  252. "email": "cboden@gmail.com",
  253. "role": "Developer"
  254. },
  255. {
  256. "name": "Matt Bonneau",
  257. "role": "Developer"
  258. }
  259. ],
  260. "description": "PHP WebSocket library",
  261. "homepage": "http://socketo.me",
  262. "keywords": [
  263. "Ratchet",
  264. "WebSockets",
  265. "server",
  266. "sockets",
  267. "websocket"
  268. ],
  269. "support": {
  270. "chat": "https://gitter.im/reactphp/reactphp",
  271. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  272. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  273. },
  274. "time": "2021-12-14T00:20:41+00:00"
  275. },
  276. {
  277. "name": "composer/pcre",
  278. "version": "3.3.2",
  279. "source": {
  280. "type": "git",
  281. "url": "https://github.com/composer/pcre.git",
  282. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  283. },
  284. "dist": {
  285. "type": "zip",
  286. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  287. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  288. "shasum": "",
  289. "mirrors": [
  290. {
  291. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  292. "preferred": true
  293. }
  294. ]
  295. },
  296. "require": {
  297. "php": "^7.4 || ^8.0"
  298. },
  299. "conflict": {
  300. "phpstan/phpstan": "<1.11.10"
  301. },
  302. "require-dev": {
  303. "phpstan/phpstan": "^1.12 || ^2",
  304. "phpstan/phpstan-strict-rules": "^1 || ^2",
  305. "phpunit/phpunit": "^8 || ^9"
  306. },
  307. "type": "library",
  308. "extra": {
  309. "branch-alias": {
  310. "dev-main": "3.x-dev"
  311. },
  312. "phpstan": {
  313. "includes": [
  314. "extension.neon"
  315. ]
  316. }
  317. },
  318. "autoload": {
  319. "psr-4": {
  320. "Composer\\Pcre\\": "src"
  321. }
  322. },
  323. "notification-url": "https://packagist.org/downloads/",
  324. "license": [
  325. "MIT"
  326. ],
  327. "authors": [
  328. {
  329. "name": "Jordi Boggiano",
  330. "email": "j.boggiano@seld.be",
  331. "homepage": "http://seld.be"
  332. }
  333. ],
  334. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  335. "keywords": [
  336. "PCRE",
  337. "preg",
  338. "regex",
  339. "regular expression"
  340. ],
  341. "support": {
  342. "issues": "https://github.com/composer/pcre/issues",
  343. "source": "https://github.com/composer/pcre/tree/3.3.2"
  344. },
  345. "funding": [
  346. {
  347. "url": "https://packagist.com",
  348. "type": "custom"
  349. },
  350. {
  351. "url": "https://github.com/composer",
  352. "type": "github"
  353. },
  354. {
  355. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  356. "type": "tidelift"
  357. }
  358. ],
  359. "time": "2024-11-12T16:29:46+00:00"
  360. },
  361. {
  362. "name": "composer/semver",
  363. "version": "3.4.3",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/composer/semver.git",
  367. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  372. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  373. "shasum": "",
  374. "mirrors": [
  375. {
  376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  377. "preferred": true
  378. }
  379. ]
  380. },
  381. "require": {
  382. "php": "^5.3.2 || ^7.0 || ^8.0"
  383. },
  384. "require-dev": {
  385. "phpstan/phpstan": "^1.11",
  386. "symfony/phpunit-bridge": "^3 || ^7"
  387. },
  388. "type": "library",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-main": "3.x-dev"
  392. }
  393. },
  394. "autoload": {
  395. "psr-4": {
  396. "Composer\\Semver\\": "src"
  397. }
  398. },
  399. "notification-url": "https://packagist.org/downloads/",
  400. "license": [
  401. "MIT"
  402. ],
  403. "authors": [
  404. {
  405. "name": "Nils Adermann",
  406. "email": "naderman@naderman.de",
  407. "homepage": "http://www.naderman.de"
  408. },
  409. {
  410. "name": "Jordi Boggiano",
  411. "email": "j.boggiano@seld.be",
  412. "homepage": "http://seld.be"
  413. },
  414. {
  415. "name": "Rob Bast",
  416. "email": "rob.bast@gmail.com",
  417. "homepage": "http://robbast.nl"
  418. }
  419. ],
  420. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  421. "keywords": [
  422. "semantic",
  423. "semver",
  424. "validation",
  425. "versioning"
  426. ],
  427. "support": {
  428. "irc": "ircs://irc.libera.chat:6697/composer",
  429. "issues": "https://github.com/composer/semver/issues",
  430. "source": "https://github.com/composer/semver/tree/3.4.3"
  431. },
  432. "funding": [
  433. {
  434. "url": "https://packagist.com",
  435. "type": "custom"
  436. },
  437. {
  438. "url": "https://github.com/composer",
  439. "type": "github"
  440. },
  441. {
  442. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  443. "type": "tidelift"
  444. }
  445. ],
  446. "time": "2024-09-19T14:15:21+00:00"
  447. },
  448. {
  449. "name": "dflydev/dot-access-data",
  450. "version": "v3.0.3",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  454. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  459. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  460. "shasum": "",
  461. "mirrors": [
  462. {
  463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  464. "preferred": true
  465. }
  466. ]
  467. },
  468. "require": {
  469. "php": "^7.1 || ^8.0"
  470. },
  471. "require-dev": {
  472. "phpstan/phpstan": "^0.12.42",
  473. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  474. "scrutinizer/ocular": "1.6.0",
  475. "squizlabs/php_codesniffer": "^3.5",
  476. "vimeo/psalm": "^4.0.0"
  477. },
  478. "type": "library",
  479. "extra": {
  480. "branch-alias": {
  481. "dev-main": "3.x-dev"
  482. }
  483. },
  484. "autoload": {
  485. "psr-4": {
  486. "Dflydev\\DotAccessData\\": "src/"
  487. }
  488. },
  489. "notification-url": "https://packagist.org/downloads/",
  490. "license": [
  491. "MIT"
  492. ],
  493. "authors": [
  494. {
  495. "name": "Dragonfly Development Inc.",
  496. "email": "info@dflydev.com",
  497. "homepage": "http://dflydev.com"
  498. },
  499. {
  500. "name": "Beau Simensen",
  501. "email": "beau@dflydev.com",
  502. "homepage": "http://beausimensen.com"
  503. },
  504. {
  505. "name": "Carlos Frutos",
  506. "email": "carlos@kiwing.it",
  507. "homepage": "https://github.com/cfrutos"
  508. },
  509. {
  510. "name": "Colin O'Dell",
  511. "email": "colinodell@gmail.com",
  512. "homepage": "https://www.colinodell.com"
  513. }
  514. ],
  515. "description": "Given a deep data structure, access data by dot notation.",
  516. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  517. "keywords": [
  518. "access",
  519. "data",
  520. "dot",
  521. "notation"
  522. ],
  523. "support": {
  524. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  525. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  526. },
  527. "time": "2024-07-08T12:26:09+00:00"
  528. },
  529. {
  530. "name": "doctrine/inflector",
  531. "version": "2.0.10",
  532. "source": {
  533. "type": "git",
  534. "url": "https://github.com/doctrine/inflector.git",
  535. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  536. },
  537. "dist": {
  538. "type": "zip",
  539. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  540. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  541. "shasum": "",
  542. "mirrors": [
  543. {
  544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  545. "preferred": true
  546. }
  547. ]
  548. },
  549. "require": {
  550. "php": "^7.2 || ^8.0"
  551. },
  552. "require-dev": {
  553. "doctrine/coding-standard": "^11.0",
  554. "phpstan/phpstan": "^1.8",
  555. "phpstan/phpstan-phpunit": "^1.1",
  556. "phpstan/phpstan-strict-rules": "^1.3",
  557. "phpunit/phpunit": "^8.5 || ^9.5",
  558. "vimeo/psalm": "^4.25 || ^5.4"
  559. },
  560. "type": "library",
  561. "autoload": {
  562. "psr-4": {
  563. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  564. }
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "MIT"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Guilherme Blanco",
  573. "email": "guilhermeblanco@gmail.com"
  574. },
  575. {
  576. "name": "Roman Borschel",
  577. "email": "roman@code-factory.org"
  578. },
  579. {
  580. "name": "Benjamin Eberlei",
  581. "email": "kontakt@beberlei.de"
  582. },
  583. {
  584. "name": "Jonathan Wage",
  585. "email": "jonwage@gmail.com"
  586. },
  587. {
  588. "name": "Johannes Schmitt",
  589. "email": "schmittjoh@gmail.com"
  590. }
  591. ],
  592. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  593. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  594. "keywords": [
  595. "inflection",
  596. "inflector",
  597. "lowercase",
  598. "manipulation",
  599. "php",
  600. "plural",
  601. "singular",
  602. "strings",
  603. "uppercase",
  604. "words"
  605. ],
  606. "support": {
  607. "issues": "https://github.com/doctrine/inflector/issues",
  608. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  609. },
  610. "funding": [
  611. {
  612. "url": "https://www.doctrine-project.org/sponsorship.html",
  613. "type": "custom"
  614. },
  615. {
  616. "url": "https://www.patreon.com/phpdoctrine",
  617. "type": "patreon"
  618. },
  619. {
  620. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  621. "type": "tidelift"
  622. }
  623. ],
  624. "time": "2024-02-18T20:23:39+00:00"
  625. },
  626. {
  627. "name": "doctrine/lexer",
  628. "version": "1.2.3",
  629. "source": {
  630. "type": "git",
  631. "url": "https://github.com/doctrine/lexer.git",
  632. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  633. },
  634. "dist": {
  635. "type": "zip",
  636. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  637. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  638. "shasum": "",
  639. "mirrors": [
  640. {
  641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  642. "preferred": true
  643. }
  644. ]
  645. },
  646. "require": {
  647. "php": "^7.1 || ^8.0"
  648. },
  649. "require-dev": {
  650. "doctrine/coding-standard": "^9.0",
  651. "phpstan/phpstan": "^1.3",
  652. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  653. "vimeo/psalm": "^4.11"
  654. },
  655. "type": "library",
  656. "autoload": {
  657. "psr-4": {
  658. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  659. }
  660. },
  661. "notification-url": "https://packagist.org/downloads/",
  662. "license": [
  663. "MIT"
  664. ],
  665. "authors": [
  666. {
  667. "name": "Guilherme Blanco",
  668. "email": "guilhermeblanco@gmail.com"
  669. },
  670. {
  671. "name": "Roman Borschel",
  672. "email": "roman@code-factory.org"
  673. },
  674. {
  675. "name": "Johannes Schmitt",
  676. "email": "schmittjoh@gmail.com"
  677. }
  678. ],
  679. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  680. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  681. "keywords": [
  682. "annotations",
  683. "docblock",
  684. "lexer",
  685. "parser",
  686. "php"
  687. ],
  688. "support": {
  689. "issues": "https://github.com/doctrine/lexer/issues",
  690. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  691. },
  692. "funding": [
  693. {
  694. "url": "https://www.doctrine-project.org/sponsorship.html",
  695. "type": "custom"
  696. },
  697. {
  698. "url": "https://www.patreon.com/phpdoctrine",
  699. "type": "patreon"
  700. },
  701. {
  702. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  703. "type": "tidelift"
  704. }
  705. ],
  706. "time": "2022-02-28T11:07:21+00:00"
  707. },
  708. {
  709. "name": "dragonmantank/cron-expression",
  710. "version": "v3.4.0",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/dragonmantank/cron-expression.git",
  714. "reference": "8c784d071debd117328803d86b2097615b457500"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  719. "reference": "8c784d071debd117328803d86b2097615b457500",
  720. "shasum": "",
  721. "mirrors": [
  722. {
  723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  724. "preferred": true
  725. }
  726. ]
  727. },
  728. "require": {
  729. "php": "^7.2|^8.0",
  730. "webmozart/assert": "^1.0"
  731. },
  732. "replace": {
  733. "mtdowling/cron-expression": "^1.0"
  734. },
  735. "require-dev": {
  736. "phpstan/extension-installer": "^1.0",
  737. "phpstan/phpstan": "^1.0",
  738. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  739. },
  740. "type": "library",
  741. "extra": {
  742. "branch-alias": {
  743. "dev-master": "3.x-dev"
  744. }
  745. },
  746. "autoload": {
  747. "psr-4": {
  748. "Cron\\": "src/Cron/"
  749. }
  750. },
  751. "notification-url": "https://packagist.org/downloads/",
  752. "license": [
  753. "MIT"
  754. ],
  755. "authors": [
  756. {
  757. "name": "Chris Tankersley",
  758. "email": "chris@ctankersley.com",
  759. "homepage": "https://github.com/dragonmantank"
  760. }
  761. ],
  762. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  763. "keywords": [
  764. "cron",
  765. "schedule"
  766. ],
  767. "support": {
  768. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  769. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  770. },
  771. "funding": [
  772. {
  773. "url": "https://github.com/dragonmantank",
  774. "type": "github"
  775. }
  776. ],
  777. "time": "2024-10-09T13:47:03+00:00"
  778. },
  779. {
  780. "name": "egulias/email-validator",
  781. "version": "2.1.25",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/egulias/EmailValidator.git",
  785. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  790. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  791. "shasum": "",
  792. "mirrors": [
  793. {
  794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  795. "preferred": true
  796. }
  797. ]
  798. },
  799. "require": {
  800. "doctrine/lexer": "^1.0.1",
  801. "php": ">=5.5",
  802. "symfony/polyfill-intl-idn": "^1.10"
  803. },
  804. "require-dev": {
  805. "dominicsayers/isemail": "^3.0.7",
  806. "phpunit/phpunit": "^4.8.36|^7.5.15",
  807. "satooshi/php-coveralls": "^1.0.1"
  808. },
  809. "suggest": {
  810. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  811. },
  812. "type": "library",
  813. "extra": {
  814. "branch-alias": {
  815. "dev-master": "2.1.x-dev"
  816. }
  817. },
  818. "autoload": {
  819. "psr-4": {
  820. "Egulias\\EmailValidator\\": "src"
  821. }
  822. },
  823. "notification-url": "https://packagist.org/downloads/",
  824. "license": [
  825. "MIT"
  826. ],
  827. "authors": [
  828. {
  829. "name": "Eduardo Gulias Davis"
  830. }
  831. ],
  832. "description": "A library for validating emails against several RFCs",
  833. "homepage": "https://github.com/egulias/EmailValidator",
  834. "keywords": [
  835. "email",
  836. "emailvalidation",
  837. "emailvalidator",
  838. "validation",
  839. "validator"
  840. ],
  841. "support": {
  842. "issues": "https://github.com/egulias/EmailValidator/issues",
  843. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  844. },
  845. "funding": [
  846. {
  847. "url": "https://github.com/egulias",
  848. "type": "github"
  849. }
  850. ],
  851. "time": "2020-12-29T14:50:06+00:00"
  852. },
  853. {
  854. "name": "evenement/evenement",
  855. "version": "v3.0.2",
  856. "source": {
  857. "type": "git",
  858. "url": "https://github.com/igorw/evenement.git",
  859. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  860. },
  861. "dist": {
  862. "type": "zip",
  863. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  864. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  865. "shasum": "",
  866. "mirrors": [
  867. {
  868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  869. "preferred": true
  870. }
  871. ]
  872. },
  873. "require": {
  874. "php": ">=7.0"
  875. },
  876. "require-dev": {
  877. "phpunit/phpunit": "^9 || ^6"
  878. },
  879. "type": "library",
  880. "autoload": {
  881. "psr-4": {
  882. "Evenement\\": "src/"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "MIT"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Igor Wiedler",
  892. "email": "igor@wiedler.ch"
  893. }
  894. ],
  895. "description": "Événement is a very simple event dispatching library for PHP",
  896. "keywords": [
  897. "event-dispatcher",
  898. "event-emitter"
  899. ],
  900. "support": {
  901. "issues": "https://github.com/igorw/evenement/issues",
  902. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  903. },
  904. "time": "2023-08-08T05:53:35+00:00"
  905. },
  906. {
  907. "name": "ezyang/htmlpurifier",
  908. "version": "v4.18.0",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/ezyang/htmlpurifier.git",
  912. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  917. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  918. "shasum": "",
  919. "mirrors": [
  920. {
  921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  922. "preferred": true
  923. }
  924. ]
  925. },
  926. "require": {
  927. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  928. },
  929. "require-dev": {
  930. "cerdic/css-tidy": "^1.7 || ^2.0",
  931. "simpletest/simpletest": "dev-master"
  932. },
  933. "suggest": {
  934. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  935. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  936. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  937. "ext-tidy": "Used for pretty-printing HTML"
  938. },
  939. "type": "library",
  940. "autoload": {
  941. "files": [
  942. "library/HTMLPurifier.composer.php"
  943. ],
  944. "psr-0": {
  945. "HTMLPurifier": "library/"
  946. },
  947. "exclude-from-classmap": [
  948. "/library/HTMLPurifier/Language/"
  949. ]
  950. },
  951. "notification-url": "https://packagist.org/downloads/",
  952. "license": [
  953. "LGPL-2.1-or-later"
  954. ],
  955. "authors": [
  956. {
  957. "name": "Edward Z. Yang",
  958. "email": "admin@htmlpurifier.org",
  959. "homepage": "http://ezyang.com"
  960. }
  961. ],
  962. "description": "Standards compliant HTML filter written in PHP",
  963. "homepage": "http://htmlpurifier.org/",
  964. "keywords": [
  965. "html"
  966. ],
  967. "support": {
  968. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  969. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  970. },
  971. "time": "2024-11-01T03:51:45+00:00"
  972. },
  973. {
  974. "name": "fideloper/proxy",
  975. "version": "4.4.2",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/fideloper/TrustedProxy.git",
  979. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  984. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  985. "shasum": "",
  986. "mirrors": [
  987. {
  988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  989. "preferred": true
  990. }
  991. ]
  992. },
  993. "require": {
  994. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  995. "php": ">=5.4.0"
  996. },
  997. "require-dev": {
  998. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  999. "mockery/mockery": "^1.0",
  1000. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1001. },
  1002. "type": "library",
  1003. "extra": {
  1004. "laravel": {
  1005. "providers": [
  1006. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1007. ]
  1008. }
  1009. },
  1010. "autoload": {
  1011. "psr-4": {
  1012. "Fideloper\\Proxy\\": "src/"
  1013. }
  1014. },
  1015. "notification-url": "https://packagist.org/downloads/",
  1016. "license": [
  1017. "MIT"
  1018. ],
  1019. "authors": [
  1020. {
  1021. "name": "Chris Fidao",
  1022. "email": "fideloper@gmail.com"
  1023. }
  1024. ],
  1025. "description": "Set trusted proxies for Laravel",
  1026. "keywords": [
  1027. "load balancing",
  1028. "proxy",
  1029. "trusted proxy"
  1030. ],
  1031. "support": {
  1032. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1033. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1034. },
  1035. "time": "2022-02-09T13:33:34+00:00"
  1036. },
  1037. {
  1038. "name": "firebase/php-jwt",
  1039. "version": "v6.11.0",
  1040. "source": {
  1041. "type": "git",
  1042. "url": "https://github.com/firebase/php-jwt.git",
  1043. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  1044. },
  1045. "dist": {
  1046. "type": "zip",
  1047. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1048. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1049. "shasum": "",
  1050. "mirrors": [
  1051. {
  1052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1053. "preferred": true
  1054. }
  1055. ]
  1056. },
  1057. "require": {
  1058. "php": "^8.0"
  1059. },
  1060. "require-dev": {
  1061. "guzzlehttp/guzzle": "^7.4",
  1062. "phpspec/prophecy-phpunit": "^2.0",
  1063. "phpunit/phpunit": "^9.5",
  1064. "psr/cache": "^2.0||^3.0",
  1065. "psr/http-client": "^1.0",
  1066. "psr/http-factory": "^1.0"
  1067. },
  1068. "suggest": {
  1069. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1070. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1071. },
  1072. "type": "library",
  1073. "autoload": {
  1074. "psr-4": {
  1075. "Firebase\\JWT\\": "src"
  1076. }
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "BSD-3-Clause"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Neuman Vong",
  1085. "email": "neuman+pear@twilio.com",
  1086. "role": "Developer"
  1087. },
  1088. {
  1089. "name": "Anant Narayanan",
  1090. "email": "anant@php.net",
  1091. "role": "Developer"
  1092. }
  1093. ],
  1094. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1095. "homepage": "https://github.com/firebase/php-jwt",
  1096. "keywords": [
  1097. "jwt",
  1098. "php"
  1099. ],
  1100. "support": {
  1101. "issues": "https://github.com/firebase/php-jwt/issues",
  1102. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  1103. },
  1104. "time": "2025-01-23T05:11:06+00:00"
  1105. },
  1106. {
  1107. "name": "fruitcake/laravel-cors",
  1108. "version": "v2.2.0",
  1109. "source": {
  1110. "type": "git",
  1111. "url": "https://github.com/fruitcake/laravel-cors.git",
  1112. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1113. },
  1114. "dist": {
  1115. "type": "zip",
  1116. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1117. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1118. "shasum": "",
  1119. "mirrors": [
  1120. {
  1121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1122. "preferred": true
  1123. }
  1124. ]
  1125. },
  1126. "require": {
  1127. "asm89/stack-cors": "^2.0.1",
  1128. "illuminate/contracts": "^6|^7|^8|^9",
  1129. "illuminate/support": "^6|^7|^8|^9",
  1130. "php": ">=7.2"
  1131. },
  1132. "require-dev": {
  1133. "laravel/framework": "^6|^7.24|^8",
  1134. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1135. "phpunit/phpunit": "^6|^7|^8|^9",
  1136. "squizlabs/php_codesniffer": "^3.5"
  1137. },
  1138. "type": "library",
  1139. "extra": {
  1140. "branch-alias": {
  1141. "dev-master": "2.1-dev"
  1142. },
  1143. "laravel": {
  1144. "providers": [
  1145. "Fruitcake\\Cors\\CorsServiceProvider"
  1146. ]
  1147. }
  1148. },
  1149. "autoload": {
  1150. "psr-4": {
  1151. "Fruitcake\\Cors\\": "src/"
  1152. }
  1153. },
  1154. "notification-url": "https://packagist.org/downloads/",
  1155. "license": [
  1156. "MIT"
  1157. ],
  1158. "authors": [
  1159. {
  1160. "name": "Fruitcake",
  1161. "homepage": "https://fruitcake.nl"
  1162. },
  1163. {
  1164. "name": "Barry vd. Heuvel",
  1165. "email": "barryvdh@gmail.com"
  1166. }
  1167. ],
  1168. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1169. "keywords": [
  1170. "api",
  1171. "cors",
  1172. "crossdomain",
  1173. "laravel"
  1174. ],
  1175. "support": {
  1176. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1177. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1178. },
  1179. "funding": [
  1180. {
  1181. "url": "https://fruitcake.nl",
  1182. "type": "custom"
  1183. },
  1184. {
  1185. "url": "https://github.com/barryvdh",
  1186. "type": "github"
  1187. }
  1188. ],
  1189. "abandoned": true,
  1190. "time": "2022-02-23T14:25:13+00:00"
  1191. },
  1192. {
  1193. "name": "fukuball/jieba-php",
  1194. "version": "dev-master",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/fukuball/jieba-php.git",
  1198. "reference": "87d87c7d3f84f446af433c578661b3cd26c7b50a"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/87d87c7d3f84f446af433c578661b3cd26c7b50a",
  1203. "reference": "87d87c7d3f84f446af433c578661b3cd26c7b50a",
  1204. "shasum": "",
  1205. "mirrors": [
  1206. {
  1207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1208. "preferred": true
  1209. }
  1210. ]
  1211. },
  1212. "require": {
  1213. "php": ">=7.1"
  1214. },
  1215. "require-dev": {
  1216. "doctrine/instantiator": "^1.3",
  1217. "guzzlehttp/guzzle": "^7.0",
  1218. "php-coveralls/php-coveralls": "^2.5",
  1219. "phpunit/phpunit": "^8.5 || ^9.0",
  1220. "psr/log": "^1.1",
  1221. "squizlabs/php_codesniffer": "^3.6 || ^4.0",
  1222. "symfony/config": "^5.4",
  1223. "symfony/console": "^5.4",
  1224. "symfony/deprecation-contracts": "^2.5",
  1225. "symfony/filesystem": "^5.4",
  1226. "symfony/service-contracts": "^2.5",
  1227. "symfony/stopwatch": "^5.4",
  1228. "symfony/string": "^5.4",
  1229. "symfony/yaml": "^5.4"
  1230. },
  1231. "default-branch": true,
  1232. "type": "library",
  1233. "autoload": {
  1234. "files": [
  1235. "src/vendor/multi-array/MultiArray.php",
  1236. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  1237. ],
  1238. "psr-4": {
  1239. "Fukuball\\Jieba\\": "src/class/"
  1240. }
  1241. },
  1242. "notification-url": "https://packagist.org/downloads/",
  1243. "license": [
  1244. "MIT"
  1245. ],
  1246. "authors": [
  1247. {
  1248. "name": "fukuball",
  1249. "email": "fukuball@gmail.com"
  1250. }
  1251. ],
  1252. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  1253. "keywords": [
  1254. "Jieba",
  1255. "php"
  1256. ],
  1257. "support": {
  1258. "issues": "https://github.com/fukuball/jieba-php/issues",
  1259. "source": "https://github.com/fukuball/jieba-php/tree/master"
  1260. },
  1261. "time": "2025-08-05T13:38:44+00:00"
  1262. },
  1263. {
  1264. "name": "graham-campbell/result-type",
  1265. "version": "1.1.x-dev",
  1266. "source": {
  1267. "type": "git",
  1268. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1269. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66"
  1270. },
  1271. "dist": {
  1272. "type": "zip",
  1273. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  1274. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  1275. "shasum": "",
  1276. "mirrors": [
  1277. {
  1278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1279. "preferred": true
  1280. }
  1281. ]
  1282. },
  1283. "require": {
  1284. "php": "^7.2.5 || ^8.0",
  1285. "phpoption/phpoption": "^1.9.3"
  1286. },
  1287. "require-dev": {
  1288. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1289. },
  1290. "default-branch": true,
  1291. "type": "library",
  1292. "autoload": {
  1293. "psr-4": {
  1294. "GrahamCampbell\\ResultType\\": "src/"
  1295. }
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "MIT"
  1300. ],
  1301. "authors": [
  1302. {
  1303. "name": "Graham Campbell",
  1304. "email": "hello@gjcampbell.co.uk",
  1305. "homepage": "https://github.com/GrahamCampbell"
  1306. }
  1307. ],
  1308. "description": "An Implementation Of The Result Type",
  1309. "keywords": [
  1310. "Graham Campbell",
  1311. "GrahamCampbell",
  1312. "Result Type",
  1313. "Result-Type",
  1314. "result"
  1315. ],
  1316. "support": {
  1317. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1318. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  1319. },
  1320. "funding": [
  1321. {
  1322. "url": "https://github.com/GrahamCampbell",
  1323. "type": "github"
  1324. },
  1325. {
  1326. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1327. "type": "tidelift"
  1328. }
  1329. ],
  1330. "time": "2025-02-09T22:43:44+00:00"
  1331. },
  1332. {
  1333. "name": "gregwar/captcha",
  1334. "version": "v1.2.1",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/Gregwar/Captcha.git",
  1338. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1343. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1344. "shasum": "",
  1345. "mirrors": [
  1346. {
  1347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1348. "preferred": true
  1349. }
  1350. ]
  1351. },
  1352. "require": {
  1353. "ext-gd": "*",
  1354. "ext-mbstring": "*",
  1355. "php": ">=5.3.0",
  1356. "symfony/finder": "*"
  1357. },
  1358. "require-dev": {
  1359. "phpunit/phpunit": "^6.4"
  1360. },
  1361. "type": "library",
  1362. "autoload": {
  1363. "psr-4": {
  1364. "Gregwar\\": "src/Gregwar"
  1365. }
  1366. },
  1367. "notification-url": "https://packagist.org/downloads/",
  1368. "license": [
  1369. "MIT"
  1370. ],
  1371. "authors": [
  1372. {
  1373. "name": "Grégoire Passault",
  1374. "email": "g.passault@gmail.com",
  1375. "homepage": "http://www.gregwar.com/"
  1376. },
  1377. {
  1378. "name": "Jeremy Livingston",
  1379. "email": "jeremy.j.livingston@gmail.com"
  1380. }
  1381. ],
  1382. "description": "Captcha generator",
  1383. "homepage": "https://github.com/Gregwar/Captcha",
  1384. "keywords": [
  1385. "bot",
  1386. "captcha",
  1387. "spam"
  1388. ],
  1389. "support": {
  1390. "issues": "https://github.com/Gregwar/Captcha/issues",
  1391. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  1392. },
  1393. "time": "2023-09-26T13:45:37+00:00"
  1394. },
  1395. {
  1396. "name": "guzzlehttp/guzzle",
  1397. "version": "7.9.2",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/guzzle/guzzle.git",
  1401. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1406. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1407. "shasum": "",
  1408. "mirrors": [
  1409. {
  1410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1411. "preferred": true
  1412. }
  1413. ]
  1414. },
  1415. "require": {
  1416. "ext-json": "*",
  1417. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1418. "guzzlehttp/psr7": "^2.7.0",
  1419. "php": "^7.2.5 || ^8.0",
  1420. "psr/http-client": "^1.0",
  1421. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1422. },
  1423. "provide": {
  1424. "psr/http-client-implementation": "1.0"
  1425. },
  1426. "require-dev": {
  1427. "bamarni/composer-bin-plugin": "^1.8.2",
  1428. "ext-curl": "*",
  1429. "guzzle/client-integration-tests": "3.0.2",
  1430. "php-http/message-factory": "^1.1",
  1431. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1432. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1433. },
  1434. "suggest": {
  1435. "ext-curl": "Required for CURL handler support",
  1436. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1437. "psr/log": "Required for using the Log middleware"
  1438. },
  1439. "type": "library",
  1440. "extra": {
  1441. "bamarni-bin": {
  1442. "bin-links": true,
  1443. "forward-command": false
  1444. }
  1445. },
  1446. "autoload": {
  1447. "files": [
  1448. "src/functions_include.php"
  1449. ],
  1450. "psr-4": {
  1451. "GuzzleHttp\\": "src/"
  1452. }
  1453. },
  1454. "notification-url": "https://packagist.org/downloads/",
  1455. "license": [
  1456. "MIT"
  1457. ],
  1458. "authors": [
  1459. {
  1460. "name": "Graham Campbell",
  1461. "email": "hello@gjcampbell.co.uk",
  1462. "homepage": "https://github.com/GrahamCampbell"
  1463. },
  1464. {
  1465. "name": "Michael Dowling",
  1466. "email": "mtdowling@gmail.com",
  1467. "homepage": "https://github.com/mtdowling"
  1468. },
  1469. {
  1470. "name": "Jeremy Lindblom",
  1471. "email": "jeremeamia@gmail.com",
  1472. "homepage": "https://github.com/jeremeamia"
  1473. },
  1474. {
  1475. "name": "George Mponos",
  1476. "email": "gmponos@gmail.com",
  1477. "homepage": "https://github.com/gmponos"
  1478. },
  1479. {
  1480. "name": "Tobias Nyholm",
  1481. "email": "tobias.nyholm@gmail.com",
  1482. "homepage": "https://github.com/Nyholm"
  1483. },
  1484. {
  1485. "name": "Márk Sági-Kazár",
  1486. "email": "mark.sagikazar@gmail.com",
  1487. "homepage": "https://github.com/sagikazarmark"
  1488. },
  1489. {
  1490. "name": "Tobias Schultze",
  1491. "email": "webmaster@tubo-world.de",
  1492. "homepage": "https://github.com/Tobion"
  1493. }
  1494. ],
  1495. "description": "Guzzle is a PHP HTTP client library",
  1496. "keywords": [
  1497. "client",
  1498. "curl",
  1499. "framework",
  1500. "http",
  1501. "http client",
  1502. "psr-18",
  1503. "psr-7",
  1504. "rest",
  1505. "web service"
  1506. ],
  1507. "support": {
  1508. "issues": "https://github.com/guzzle/guzzle/issues",
  1509. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1510. },
  1511. "funding": [
  1512. {
  1513. "url": "https://github.com/GrahamCampbell",
  1514. "type": "github"
  1515. },
  1516. {
  1517. "url": "https://github.com/Nyholm",
  1518. "type": "github"
  1519. },
  1520. {
  1521. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1522. "type": "tidelift"
  1523. }
  1524. ],
  1525. "time": "2024-07-24T11:22:20+00:00"
  1526. },
  1527. {
  1528. "name": "guzzlehttp/promises",
  1529. "version": "2.3.0",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/guzzle/promises.git",
  1533. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1538. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1539. "shasum": "",
  1540. "mirrors": [
  1541. {
  1542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1543. "preferred": true
  1544. }
  1545. ]
  1546. },
  1547. "require": {
  1548. "php": "^7.2.5 || ^8.0"
  1549. },
  1550. "require-dev": {
  1551. "bamarni/composer-bin-plugin": "^1.8.2",
  1552. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1553. },
  1554. "type": "library",
  1555. "extra": {
  1556. "bamarni-bin": {
  1557. "bin-links": true,
  1558. "forward-command": false
  1559. }
  1560. },
  1561. "autoload": {
  1562. "psr-4": {
  1563. "GuzzleHttp\\Promise\\": "src/"
  1564. }
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "MIT"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "Graham Campbell",
  1573. "email": "hello@gjcampbell.co.uk",
  1574. "homepage": "https://github.com/GrahamCampbell"
  1575. },
  1576. {
  1577. "name": "Michael Dowling",
  1578. "email": "mtdowling@gmail.com",
  1579. "homepage": "https://github.com/mtdowling"
  1580. },
  1581. {
  1582. "name": "Tobias Nyholm",
  1583. "email": "tobias.nyholm@gmail.com",
  1584. "homepage": "https://github.com/Nyholm"
  1585. },
  1586. {
  1587. "name": "Tobias Schultze",
  1588. "email": "webmaster@tubo-world.de",
  1589. "homepage": "https://github.com/Tobion"
  1590. }
  1591. ],
  1592. "description": "Guzzle promises library",
  1593. "keywords": [
  1594. "promise"
  1595. ],
  1596. "support": {
  1597. "issues": "https://github.com/guzzle/promises/issues",
  1598. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1599. },
  1600. "funding": [
  1601. {
  1602. "url": "https://github.com/GrahamCampbell",
  1603. "type": "github"
  1604. },
  1605. {
  1606. "url": "https://github.com/Nyholm",
  1607. "type": "github"
  1608. },
  1609. {
  1610. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1611. "type": "tidelift"
  1612. }
  1613. ],
  1614. "time": "2025-08-22T14:34:08+00:00"
  1615. },
  1616. {
  1617. "name": "guzzlehttp/psr7",
  1618. "version": "2.8.0",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/guzzle/psr7.git",
  1622. "reference": "21dc724a0583619cd1652f673303492272778051"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1627. "reference": "21dc724a0583619cd1652f673303492272778051",
  1628. "shasum": "",
  1629. "mirrors": [
  1630. {
  1631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1632. "preferred": true
  1633. }
  1634. ]
  1635. },
  1636. "require": {
  1637. "php": "^7.2.5 || ^8.0",
  1638. "psr/http-factory": "^1.0",
  1639. "psr/http-message": "^1.1 || ^2.0",
  1640. "ralouphie/getallheaders": "^3.0"
  1641. },
  1642. "provide": {
  1643. "psr/http-factory-implementation": "1.0",
  1644. "psr/http-message-implementation": "1.0"
  1645. },
  1646. "require-dev": {
  1647. "bamarni/composer-bin-plugin": "^1.8.2",
  1648. "http-interop/http-factory-tests": "0.9.0",
  1649. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1650. },
  1651. "suggest": {
  1652. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1653. },
  1654. "type": "library",
  1655. "extra": {
  1656. "bamarni-bin": {
  1657. "bin-links": true,
  1658. "forward-command": false
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "GuzzleHttp\\Psr7\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Graham Campbell",
  1673. "email": "hello@gjcampbell.co.uk",
  1674. "homepage": "https://github.com/GrahamCampbell"
  1675. },
  1676. {
  1677. "name": "Michael Dowling",
  1678. "email": "mtdowling@gmail.com",
  1679. "homepage": "https://github.com/mtdowling"
  1680. },
  1681. {
  1682. "name": "George Mponos",
  1683. "email": "gmponos@gmail.com",
  1684. "homepage": "https://github.com/gmponos"
  1685. },
  1686. {
  1687. "name": "Tobias Nyholm",
  1688. "email": "tobias.nyholm@gmail.com",
  1689. "homepage": "https://github.com/Nyholm"
  1690. },
  1691. {
  1692. "name": "Márk Sági-Kazár",
  1693. "email": "mark.sagikazar@gmail.com",
  1694. "homepage": "https://github.com/sagikazarmark"
  1695. },
  1696. {
  1697. "name": "Tobias Schultze",
  1698. "email": "webmaster@tubo-world.de",
  1699. "homepage": "https://github.com/Tobion"
  1700. },
  1701. {
  1702. "name": "Márk Sági-Kazár",
  1703. "email": "mark.sagikazar@gmail.com",
  1704. "homepage": "https://sagikazarmark.hu"
  1705. }
  1706. ],
  1707. "description": "PSR-7 message implementation that also provides common utility methods",
  1708. "keywords": [
  1709. "http",
  1710. "message",
  1711. "psr-7",
  1712. "request",
  1713. "response",
  1714. "stream",
  1715. "uri",
  1716. "url"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/guzzle/psr7/issues",
  1720. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  1721. },
  1722. "funding": [
  1723. {
  1724. "url": "https://github.com/GrahamCampbell",
  1725. "type": "github"
  1726. },
  1727. {
  1728. "url": "https://github.com/Nyholm",
  1729. "type": "github"
  1730. },
  1731. {
  1732. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1733. "type": "tidelift"
  1734. }
  1735. ],
  1736. "time": "2025-08-23T21:21:41+00:00"
  1737. },
  1738. {
  1739. "name": "laravel/framework",
  1740. "version": "v8.83.29",
  1741. "source": {
  1742. "type": "git",
  1743. "url": "https://github.com/laravel/framework.git",
  1744. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4"
  1745. },
  1746. "dist": {
  1747. "type": "zip",
  1748. "url": "https://api.github.com/repos/laravel/framework/zipball/d841a226a50c715431952a10260ba4fac9e91cc4",
  1749. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4",
  1750. "shasum": "",
  1751. "mirrors": [
  1752. {
  1753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1754. "preferred": true
  1755. }
  1756. ]
  1757. },
  1758. "require": {
  1759. "doctrine/inflector": "^1.4|^2.0",
  1760. "dragonmantank/cron-expression": "^3.0.2",
  1761. "egulias/email-validator": "^2.1.10",
  1762. "ext-json": "*",
  1763. "ext-mbstring": "*",
  1764. "ext-openssl": "*",
  1765. "laravel/serializable-closure": "^1.0",
  1766. "league/commonmark": "^1.3|^2.0.2",
  1767. "league/flysystem": "^1.1",
  1768. "monolog/monolog": "^2.0",
  1769. "nesbot/carbon": "^2.53.1",
  1770. "opis/closure": "^3.6",
  1771. "php": "^7.3|^8.0",
  1772. "psr/container": "^1.0",
  1773. "psr/log": "^1.0|^2.0",
  1774. "psr/simple-cache": "^1.0",
  1775. "ramsey/uuid": "^4.2.2",
  1776. "swiftmailer/swiftmailer": "^6.3",
  1777. "symfony/console": "^5.4",
  1778. "symfony/error-handler": "^5.4",
  1779. "symfony/finder": "^5.4",
  1780. "symfony/http-foundation": "^5.4",
  1781. "symfony/http-kernel": "^5.4",
  1782. "symfony/mime": "^5.4",
  1783. "symfony/process": "^5.4",
  1784. "symfony/routing": "^5.4",
  1785. "symfony/var-dumper": "^5.4",
  1786. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1787. "vlucas/phpdotenv": "^5.4.1",
  1788. "voku/portable-ascii": "^1.6.1"
  1789. },
  1790. "conflict": {
  1791. "tightenco/collect": "<5.5.33"
  1792. },
  1793. "provide": {
  1794. "psr/container-implementation": "1.0",
  1795. "psr/simple-cache-implementation": "1.0"
  1796. },
  1797. "replace": {
  1798. "illuminate/auth": "self.version",
  1799. "illuminate/broadcasting": "self.version",
  1800. "illuminate/bus": "self.version",
  1801. "illuminate/cache": "self.version",
  1802. "illuminate/collections": "self.version",
  1803. "illuminate/config": "self.version",
  1804. "illuminate/console": "self.version",
  1805. "illuminate/container": "self.version",
  1806. "illuminate/contracts": "self.version",
  1807. "illuminate/cookie": "self.version",
  1808. "illuminate/database": "self.version",
  1809. "illuminate/encryption": "self.version",
  1810. "illuminate/events": "self.version",
  1811. "illuminate/filesystem": "self.version",
  1812. "illuminate/hashing": "self.version",
  1813. "illuminate/http": "self.version",
  1814. "illuminate/log": "self.version",
  1815. "illuminate/macroable": "self.version",
  1816. "illuminate/mail": "self.version",
  1817. "illuminate/notifications": "self.version",
  1818. "illuminate/pagination": "self.version",
  1819. "illuminate/pipeline": "self.version",
  1820. "illuminate/queue": "self.version",
  1821. "illuminate/redis": "self.version",
  1822. "illuminate/routing": "self.version",
  1823. "illuminate/session": "self.version",
  1824. "illuminate/support": "self.version",
  1825. "illuminate/testing": "self.version",
  1826. "illuminate/translation": "self.version",
  1827. "illuminate/validation": "self.version",
  1828. "illuminate/view": "self.version"
  1829. },
  1830. "require-dev": {
  1831. "aws/aws-sdk-php": "^3.198.1",
  1832. "doctrine/dbal": "^2.13.3|^3.1.4",
  1833. "filp/whoops": "^2.14.3",
  1834. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1835. "league/flysystem-cached-adapter": "^1.0",
  1836. "mockery/mockery": "^1.4.4",
  1837. "orchestra/testbench-core": "^6.27",
  1838. "pda/pheanstalk": "^4.0",
  1839. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1840. "predis/predis": "^1.1.9",
  1841. "symfony/cache": "^5.4"
  1842. },
  1843. "suggest": {
  1844. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1845. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1846. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1847. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1848. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1849. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1850. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1851. "ext-memcached": "Required to use the memcache cache driver.",
  1852. "ext-pcntl": "Required to use all features of the queue worker.",
  1853. "ext-posix": "Required to use all features of the queue worker.",
  1854. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1855. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1856. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1857. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1858. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1859. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1860. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1861. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1862. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1863. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1864. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1865. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1866. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1867. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1868. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1869. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1870. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1871. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1872. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1873. },
  1874. "type": "library",
  1875. "extra": {
  1876. "branch-alias": {
  1877. "dev-master": "8.x-dev"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "files": [
  1882. "src/Illuminate/Collections/helpers.php",
  1883. "src/Illuminate/Events/functions.php",
  1884. "src/Illuminate/Foundation/helpers.php",
  1885. "src/Illuminate/Support/helpers.php"
  1886. ],
  1887. "psr-4": {
  1888. "Illuminate\\": "src/Illuminate/",
  1889. "Illuminate\\Support\\": [
  1890. "src/Illuminate/Macroable/",
  1891. "src/Illuminate/Collections/"
  1892. ]
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Taylor Otwell",
  1902. "email": "taylor@laravel.com"
  1903. }
  1904. ],
  1905. "description": "The Laravel Framework.",
  1906. "homepage": "https://laravel.com",
  1907. "keywords": [
  1908. "framework",
  1909. "laravel"
  1910. ],
  1911. "support": {
  1912. "issues": "https://github.com/laravel/framework/issues",
  1913. "source": "https://github.com/laravel/framework"
  1914. },
  1915. "time": "2024-11-20T15:55:41+00:00"
  1916. },
  1917. {
  1918. "name": "laravel/serializable-closure",
  1919. "version": "v1.3.7",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/laravel/serializable-closure.git",
  1923. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  1928. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  1929. "shasum": "",
  1930. "mirrors": [
  1931. {
  1932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1933. "preferred": true
  1934. }
  1935. ]
  1936. },
  1937. "require": {
  1938. "php": "^7.3|^8.0"
  1939. },
  1940. "require-dev": {
  1941. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1942. "nesbot/carbon": "^2.61|^3.0",
  1943. "pestphp/pest": "^1.21.3",
  1944. "phpstan/phpstan": "^1.8.2",
  1945. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-master": "1.x-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "psr-4": {
  1955. "Laravel\\SerializableClosure\\": "src/"
  1956. }
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Taylor Otwell",
  1965. "email": "taylor@laravel.com"
  1966. },
  1967. {
  1968. "name": "Nuno Maduro",
  1969. "email": "nuno@laravel.com"
  1970. }
  1971. ],
  1972. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1973. "keywords": [
  1974. "closure",
  1975. "laravel",
  1976. "serializable"
  1977. ],
  1978. "support": {
  1979. "issues": "https://github.com/laravel/serializable-closure/issues",
  1980. "source": "https://github.com/laravel/serializable-closure"
  1981. },
  1982. "time": "2024-11-14T18:34:49+00:00"
  1983. },
  1984. {
  1985. "name": "laravel/socialite",
  1986. "version": "v5.16.0",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/laravel/socialite.git",
  1990. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/laravel/socialite/zipball/40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  1995. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  1996. "shasum": "",
  1997. "mirrors": [
  1998. {
  1999. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2000. "preferred": true
  2001. }
  2002. ]
  2003. },
  2004. "require": {
  2005. "ext-json": "*",
  2006. "firebase/php-jwt": "^6.4",
  2007. "guzzlehttp/guzzle": "^6.0|^7.0",
  2008. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2009. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2010. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2011. "league/oauth1-client": "^1.10.1",
  2012. "php": "^7.2|^8.0",
  2013. "phpseclib/phpseclib": "^3.0"
  2014. },
  2015. "require-dev": {
  2016. "mockery/mockery": "^1.0",
  2017. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2018. "phpstan/phpstan": "^1.10",
  2019. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  2020. },
  2021. "type": "library",
  2022. "extra": {
  2023. "laravel": {
  2024. "aliases": {
  2025. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2026. },
  2027. "providers": [
  2028. "Laravel\\Socialite\\SocialiteServiceProvider"
  2029. ]
  2030. },
  2031. "branch-alias": {
  2032. "dev-master": "5.x-dev"
  2033. }
  2034. },
  2035. "autoload": {
  2036. "psr-4": {
  2037. "Laravel\\Socialite\\": "src/"
  2038. }
  2039. },
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "MIT"
  2043. ],
  2044. "authors": [
  2045. {
  2046. "name": "Taylor Otwell",
  2047. "email": "taylor@laravel.com"
  2048. }
  2049. ],
  2050. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2051. "homepage": "https://laravel.com",
  2052. "keywords": [
  2053. "laravel",
  2054. "oauth"
  2055. ],
  2056. "support": {
  2057. "issues": "https://github.com/laravel/socialite/issues",
  2058. "source": "https://github.com/laravel/socialite"
  2059. },
  2060. "time": "2024-09-03T09:46:57+00:00"
  2061. },
  2062. {
  2063. "name": "laravel/tinker",
  2064. "version": "v2.10.0",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/laravel/tinker.git",
  2068. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2073. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2074. "shasum": "",
  2075. "mirrors": [
  2076. {
  2077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2078. "preferred": true
  2079. }
  2080. ]
  2081. },
  2082. "require": {
  2083. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2084. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2085. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2086. "php": "^7.2.5|^8.0",
  2087. "psy/psysh": "^0.11.1|^0.12.0",
  2088. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2089. },
  2090. "require-dev": {
  2091. "mockery/mockery": "~1.3.3|^1.4.2",
  2092. "phpstan/phpstan": "^1.10",
  2093. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2094. },
  2095. "suggest": {
  2096. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2097. },
  2098. "type": "library",
  2099. "extra": {
  2100. "laravel": {
  2101. "providers": [
  2102. "Laravel\\Tinker\\TinkerServiceProvider"
  2103. ]
  2104. }
  2105. },
  2106. "autoload": {
  2107. "psr-4": {
  2108. "Laravel\\Tinker\\": "src/"
  2109. }
  2110. },
  2111. "notification-url": "https://packagist.org/downloads/",
  2112. "license": [
  2113. "MIT"
  2114. ],
  2115. "authors": [
  2116. {
  2117. "name": "Taylor Otwell",
  2118. "email": "taylor@laravel.com"
  2119. }
  2120. ],
  2121. "description": "Powerful REPL for the Laravel framework.",
  2122. "keywords": [
  2123. "REPL",
  2124. "Tinker",
  2125. "laravel",
  2126. "psysh"
  2127. ],
  2128. "support": {
  2129. "issues": "https://github.com/laravel/tinker/issues",
  2130. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2131. },
  2132. "time": "2024-09-23T13:32:56+00:00"
  2133. },
  2134. {
  2135. "name": "league/commonmark",
  2136. "version": "2.6.0",
  2137. "source": {
  2138. "type": "git",
  2139. "url": "https://github.com/thephpleague/commonmark.git",
  2140. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  2141. },
  2142. "dist": {
  2143. "type": "zip",
  2144. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  2145. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  2146. "shasum": "",
  2147. "mirrors": [
  2148. {
  2149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2150. "preferred": true
  2151. }
  2152. ]
  2153. },
  2154. "require": {
  2155. "ext-mbstring": "*",
  2156. "league/config": "^1.1.1",
  2157. "php": "^7.4 || ^8.0",
  2158. "psr/event-dispatcher": "^1.0",
  2159. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2160. "symfony/polyfill-php80": "^1.16"
  2161. },
  2162. "require-dev": {
  2163. "cebe/markdown": "^1.0",
  2164. "commonmark/cmark": "0.31.1",
  2165. "commonmark/commonmark.js": "0.31.1",
  2166. "composer/package-versions-deprecated": "^1.8",
  2167. "embed/embed": "^4.4",
  2168. "erusev/parsedown": "^1.0",
  2169. "ext-json": "*",
  2170. "github/gfm": "0.29.0",
  2171. "michelf/php-markdown": "^1.4 || ^2.0",
  2172. "nyholm/psr7": "^1.5",
  2173. "phpstan/phpstan": "^1.8.2",
  2174. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2175. "scrutinizer/ocular": "^1.8.1",
  2176. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2177. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2178. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2179. "unleashedtech/php-coding-standard": "^3.1.1",
  2180. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2181. },
  2182. "suggest": {
  2183. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2184. },
  2185. "type": "library",
  2186. "extra": {
  2187. "branch-alias": {
  2188. "dev-main": "2.7-dev"
  2189. }
  2190. },
  2191. "autoload": {
  2192. "psr-4": {
  2193. "League\\CommonMark\\": "src"
  2194. }
  2195. },
  2196. "notification-url": "https://packagist.org/downloads/",
  2197. "license": [
  2198. "BSD-3-Clause"
  2199. ],
  2200. "authors": [
  2201. {
  2202. "name": "Colin O'Dell",
  2203. "email": "colinodell@gmail.com",
  2204. "homepage": "https://www.colinodell.com",
  2205. "role": "Lead Developer"
  2206. }
  2207. ],
  2208. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2209. "homepage": "https://commonmark.thephpleague.com",
  2210. "keywords": [
  2211. "commonmark",
  2212. "flavored",
  2213. "gfm",
  2214. "github",
  2215. "github-flavored",
  2216. "markdown",
  2217. "md",
  2218. "parser"
  2219. ],
  2220. "support": {
  2221. "docs": "https://commonmark.thephpleague.com/",
  2222. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2223. "issues": "https://github.com/thephpleague/commonmark/issues",
  2224. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2225. "source": "https://github.com/thephpleague/commonmark"
  2226. },
  2227. "funding": [
  2228. {
  2229. "url": "https://www.colinodell.com/sponsor",
  2230. "type": "custom"
  2231. },
  2232. {
  2233. "url": "https://www.paypal.me/colinpodell/10.00",
  2234. "type": "custom"
  2235. },
  2236. {
  2237. "url": "https://github.com/colinodell",
  2238. "type": "github"
  2239. },
  2240. {
  2241. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2242. "type": "tidelift"
  2243. }
  2244. ],
  2245. "time": "2024-12-07T15:34:16+00:00"
  2246. },
  2247. {
  2248. "name": "league/config",
  2249. "version": "v1.2.0",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/thephpleague/config.git",
  2253. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2258. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2259. "shasum": "",
  2260. "mirrors": [
  2261. {
  2262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2263. "preferred": true
  2264. }
  2265. ]
  2266. },
  2267. "require": {
  2268. "dflydev/dot-access-data": "^3.0.1",
  2269. "nette/schema": "^1.2",
  2270. "php": "^7.4 || ^8.0"
  2271. },
  2272. "require-dev": {
  2273. "phpstan/phpstan": "^1.8.2",
  2274. "phpunit/phpunit": "^9.5.5",
  2275. "scrutinizer/ocular": "^1.8.1",
  2276. "unleashedtech/php-coding-standard": "^3.1",
  2277. "vimeo/psalm": "^4.7.3"
  2278. },
  2279. "type": "library",
  2280. "extra": {
  2281. "branch-alias": {
  2282. "dev-main": "1.2-dev"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "League\\Config\\": "src"
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "BSD-3-Clause"
  2293. ],
  2294. "authors": [
  2295. {
  2296. "name": "Colin O'Dell",
  2297. "email": "colinodell@gmail.com",
  2298. "homepage": "https://www.colinodell.com",
  2299. "role": "Lead Developer"
  2300. }
  2301. ],
  2302. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2303. "homepage": "https://config.thephpleague.com",
  2304. "keywords": [
  2305. "array",
  2306. "config",
  2307. "configuration",
  2308. "dot",
  2309. "dot-access",
  2310. "nested",
  2311. "schema"
  2312. ],
  2313. "support": {
  2314. "docs": "https://config.thephpleague.com/",
  2315. "issues": "https://github.com/thephpleague/config/issues",
  2316. "rss": "https://github.com/thephpleague/config/releases.atom",
  2317. "source": "https://github.com/thephpleague/config"
  2318. },
  2319. "funding": [
  2320. {
  2321. "url": "https://www.colinodell.com/sponsor",
  2322. "type": "custom"
  2323. },
  2324. {
  2325. "url": "https://www.paypal.me/colinpodell/10.00",
  2326. "type": "custom"
  2327. },
  2328. {
  2329. "url": "https://github.com/colinodell",
  2330. "type": "github"
  2331. }
  2332. ],
  2333. "time": "2022-12-11T20:36:23+00:00"
  2334. },
  2335. {
  2336. "name": "league/flysystem",
  2337. "version": "1.1.10",
  2338. "source": {
  2339. "type": "git",
  2340. "url": "https://github.com/thephpleague/flysystem.git",
  2341. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2342. },
  2343. "dist": {
  2344. "type": "zip",
  2345. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2346. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2347. "shasum": "",
  2348. "mirrors": [
  2349. {
  2350. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2351. "preferred": true
  2352. }
  2353. ]
  2354. },
  2355. "require": {
  2356. "ext-fileinfo": "*",
  2357. "league/mime-type-detection": "^1.3",
  2358. "php": "^7.2.5 || ^8.0"
  2359. },
  2360. "conflict": {
  2361. "league/flysystem-sftp": "<1.0.6"
  2362. },
  2363. "require-dev": {
  2364. "phpspec/prophecy": "^1.11.1",
  2365. "phpunit/phpunit": "^8.5.8"
  2366. },
  2367. "suggest": {
  2368. "ext-ftp": "Allows you to use FTP server storage",
  2369. "ext-openssl": "Allows you to use FTPS server storage",
  2370. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2371. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2372. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2373. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2374. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2375. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2376. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2377. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2378. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2379. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2380. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2381. },
  2382. "type": "library",
  2383. "extra": {
  2384. "branch-alias": {
  2385. "dev-master": "1.1-dev"
  2386. }
  2387. },
  2388. "autoload": {
  2389. "psr-4": {
  2390. "League\\Flysystem\\": "src/"
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Frank de Jonge",
  2400. "email": "info@frenky.net"
  2401. }
  2402. ],
  2403. "description": "Filesystem abstraction: Many filesystems, one API.",
  2404. "keywords": [
  2405. "Cloud Files",
  2406. "WebDAV",
  2407. "abstraction",
  2408. "aws",
  2409. "cloud",
  2410. "copy.com",
  2411. "dropbox",
  2412. "file systems",
  2413. "files",
  2414. "filesystem",
  2415. "filesystems",
  2416. "ftp",
  2417. "rackspace",
  2418. "remote",
  2419. "s3",
  2420. "sftp",
  2421. "storage"
  2422. ],
  2423. "support": {
  2424. "issues": "https://github.com/thephpleague/flysystem/issues",
  2425. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2426. },
  2427. "funding": [
  2428. {
  2429. "url": "https://offset.earth/frankdejonge",
  2430. "type": "other"
  2431. }
  2432. ],
  2433. "time": "2022-10-04T09:16:37+00:00"
  2434. },
  2435. {
  2436. "name": "league/mime-type-detection",
  2437. "version": "1.15.0",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2441. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2446. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2447. "shasum": "",
  2448. "mirrors": [
  2449. {
  2450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2451. "preferred": true
  2452. }
  2453. ]
  2454. },
  2455. "require": {
  2456. "ext-fileinfo": "*",
  2457. "php": "^7.4 || ^8.0"
  2458. },
  2459. "require-dev": {
  2460. "friendsofphp/php-cs-fixer": "^3.2",
  2461. "phpstan/phpstan": "^0.12.68",
  2462. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2463. },
  2464. "type": "library",
  2465. "autoload": {
  2466. "psr-4": {
  2467. "League\\MimeTypeDetection\\": "src"
  2468. }
  2469. },
  2470. "notification-url": "https://packagist.org/downloads/",
  2471. "license": [
  2472. "MIT"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Frank de Jonge",
  2477. "email": "info@frankdejonge.nl"
  2478. }
  2479. ],
  2480. "description": "Mime-type detection for Flysystem",
  2481. "support": {
  2482. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2483. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2484. },
  2485. "funding": [
  2486. {
  2487. "url": "https://github.com/frankdejonge",
  2488. "type": "github"
  2489. },
  2490. {
  2491. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2492. "type": "tidelift"
  2493. }
  2494. ],
  2495. "time": "2024-01-28T23:22:08+00:00"
  2496. },
  2497. {
  2498. "name": "league/oauth1-client",
  2499. "version": "v1.10.1",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/thephpleague/oauth1-client.git",
  2503. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2508. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2509. "shasum": "",
  2510. "mirrors": [
  2511. {
  2512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2513. "preferred": true
  2514. }
  2515. ]
  2516. },
  2517. "require": {
  2518. "ext-json": "*",
  2519. "ext-openssl": "*",
  2520. "guzzlehttp/guzzle": "^6.0|^7.0",
  2521. "guzzlehttp/psr7": "^1.7|^2.0",
  2522. "php": ">=7.1||>=8.0"
  2523. },
  2524. "require-dev": {
  2525. "ext-simplexml": "*",
  2526. "friendsofphp/php-cs-fixer": "^2.17",
  2527. "mockery/mockery": "^1.3.3",
  2528. "phpstan/phpstan": "^0.12.42",
  2529. "phpunit/phpunit": "^7.5||9.5"
  2530. },
  2531. "suggest": {
  2532. "ext-simplexml": "For decoding XML-based responses."
  2533. },
  2534. "type": "library",
  2535. "extra": {
  2536. "branch-alias": {
  2537. "dev-master": "1.0-dev",
  2538. "dev-develop": "2.0-dev"
  2539. }
  2540. },
  2541. "autoload": {
  2542. "psr-4": {
  2543. "League\\OAuth1\\Client\\": "src/"
  2544. }
  2545. },
  2546. "notification-url": "https://packagist.org/downloads/",
  2547. "license": [
  2548. "MIT"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "Ben Corlett",
  2553. "email": "bencorlett@me.com",
  2554. "homepage": "http://www.webcomm.com.au",
  2555. "role": "Developer"
  2556. }
  2557. ],
  2558. "description": "OAuth 1.0 Client Library",
  2559. "keywords": [
  2560. "Authentication",
  2561. "SSO",
  2562. "authorization",
  2563. "bitbucket",
  2564. "identity",
  2565. "idp",
  2566. "oauth",
  2567. "oauth1",
  2568. "single sign on",
  2569. "trello",
  2570. "tumblr",
  2571. "twitter"
  2572. ],
  2573. "support": {
  2574. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2575. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2576. },
  2577. "time": "2022-04-15T14:02:14+00:00"
  2578. },
  2579. {
  2580. "name": "maatwebsite/excel",
  2581. "version": "3.1.59",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  2585. "reference": "b4d8b877e31998811700283d91292ab2b9a4970d"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/b4d8b877e31998811700283d91292ab2b9a4970d",
  2590. "reference": "b4d8b877e31998811700283d91292ab2b9a4970d",
  2591. "shasum": "",
  2592. "mirrors": [
  2593. {
  2594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2595. "preferred": true
  2596. }
  2597. ]
  2598. },
  2599. "require": {
  2600. "composer/semver": "^3.3",
  2601. "ext-json": "*",
  2602. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0",
  2603. "php": "^7.0||^8.0",
  2604. "phpoffice/phpspreadsheet": "^1.29.2",
  2605. "psr/simple-cache": "^1.0||^2.0||^3.0"
  2606. },
  2607. "require-dev": {
  2608. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  2609. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0",
  2610. "predis/predis": "^1.1"
  2611. },
  2612. "type": "library",
  2613. "extra": {
  2614. "laravel": {
  2615. "providers": [
  2616. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2617. ],
  2618. "aliases": {
  2619. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2620. }
  2621. }
  2622. },
  2623. "autoload": {
  2624. "psr-4": {
  2625. "Maatwebsite\\Excel\\": "src/"
  2626. }
  2627. },
  2628. "notification-url": "https://packagist.org/downloads/",
  2629. "license": [
  2630. "MIT"
  2631. ],
  2632. "authors": [
  2633. {
  2634. "name": "Patrick Brouwers",
  2635. "email": "patrick@spartner.nl"
  2636. }
  2637. ],
  2638. "description": "Supercharged Excel exports and imports in Laravel",
  2639. "keywords": [
  2640. "PHPExcel",
  2641. "batch",
  2642. "csv",
  2643. "excel",
  2644. "export",
  2645. "import",
  2646. "laravel",
  2647. "php",
  2648. "phpspreadsheet"
  2649. ],
  2650. "support": {
  2651. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  2652. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.59"
  2653. },
  2654. "funding": [
  2655. {
  2656. "url": "https://laravel-excel.com/commercial-support",
  2657. "type": "custom"
  2658. },
  2659. {
  2660. "url": "https://github.com/patrickbrouwers",
  2661. "type": "github"
  2662. }
  2663. ],
  2664. "time": "2024-10-25T15:40:14+00:00"
  2665. },
  2666. {
  2667. "name": "maennchen/zipstream-php",
  2668. "version": "2.4.0",
  2669. "source": {
  2670. "type": "git",
  2671. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2672. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  2673. },
  2674. "dist": {
  2675. "type": "zip",
  2676. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2677. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2678. "shasum": "",
  2679. "mirrors": [
  2680. {
  2681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2682. "preferred": true
  2683. }
  2684. ]
  2685. },
  2686. "require": {
  2687. "ext-mbstring": "*",
  2688. "myclabs/php-enum": "^1.5",
  2689. "php": "^8.0",
  2690. "psr/http-message": "^1.0"
  2691. },
  2692. "require-dev": {
  2693. "ext-zip": "*",
  2694. "friendsofphp/php-cs-fixer": "^3.9",
  2695. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2696. "mikey179/vfsstream": "^1.6",
  2697. "php-coveralls/php-coveralls": "^2.4",
  2698. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2699. "vimeo/psalm": "^5.0"
  2700. },
  2701. "type": "library",
  2702. "autoload": {
  2703. "psr-4": {
  2704. "ZipStream\\": "src/"
  2705. }
  2706. },
  2707. "notification-url": "https://packagist.org/downloads/",
  2708. "license": [
  2709. "MIT"
  2710. ],
  2711. "authors": [
  2712. {
  2713. "name": "Paul Duncan",
  2714. "email": "pabs@pablotron.org"
  2715. },
  2716. {
  2717. "name": "Jonatan Männchen",
  2718. "email": "jonatan@maennchen.ch"
  2719. },
  2720. {
  2721. "name": "Jesse Donat",
  2722. "email": "donatj@gmail.com"
  2723. },
  2724. {
  2725. "name": "András Kolesár",
  2726. "email": "kolesar@kolesar.hu"
  2727. }
  2728. ],
  2729. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2730. "keywords": [
  2731. "stream",
  2732. "zip"
  2733. ],
  2734. "support": {
  2735. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2736. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  2737. },
  2738. "funding": [
  2739. {
  2740. "url": "https://github.com/maennchen",
  2741. "type": "github"
  2742. },
  2743. {
  2744. "url": "https://opencollective.com/zipstream",
  2745. "type": "open_collective"
  2746. }
  2747. ],
  2748. "time": "2022-12-08T12:29:14+00:00"
  2749. },
  2750. {
  2751. "name": "markbaker/complex",
  2752. "version": "3.0.2",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2756. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2761. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2762. "shasum": "",
  2763. "mirrors": [
  2764. {
  2765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2766. "preferred": true
  2767. }
  2768. ]
  2769. },
  2770. "require": {
  2771. "php": "^7.2 || ^8.0"
  2772. },
  2773. "require-dev": {
  2774. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2775. "phpcompatibility/php-compatibility": "^9.3",
  2776. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2777. "squizlabs/php_codesniffer": "^3.7"
  2778. },
  2779. "type": "library",
  2780. "autoload": {
  2781. "psr-4": {
  2782. "Complex\\": "classes/src/"
  2783. }
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "MIT"
  2788. ],
  2789. "authors": [
  2790. {
  2791. "name": "Mark Baker",
  2792. "email": "mark@lange.demon.co.uk"
  2793. }
  2794. ],
  2795. "description": "PHP Class for working with complex numbers",
  2796. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2797. "keywords": [
  2798. "complex",
  2799. "mathematics"
  2800. ],
  2801. "support": {
  2802. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2803. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2804. },
  2805. "time": "2022-12-06T16:21:08+00:00"
  2806. },
  2807. {
  2808. "name": "markbaker/matrix",
  2809. "version": "3.0.1",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2813. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2818. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2819. "shasum": "",
  2820. "mirrors": [
  2821. {
  2822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2823. "preferred": true
  2824. }
  2825. ]
  2826. },
  2827. "require": {
  2828. "php": "^7.1 || ^8.0"
  2829. },
  2830. "require-dev": {
  2831. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2832. "phpcompatibility/php-compatibility": "^9.3",
  2833. "phpdocumentor/phpdocumentor": "2.*",
  2834. "phploc/phploc": "^4.0",
  2835. "phpmd/phpmd": "2.*",
  2836. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2837. "sebastian/phpcpd": "^4.0",
  2838. "squizlabs/php_codesniffer": "^3.7"
  2839. },
  2840. "type": "library",
  2841. "autoload": {
  2842. "psr-4": {
  2843. "Matrix\\": "classes/src/"
  2844. }
  2845. },
  2846. "notification-url": "https://packagist.org/downloads/",
  2847. "license": [
  2848. "MIT"
  2849. ],
  2850. "authors": [
  2851. {
  2852. "name": "Mark Baker",
  2853. "email": "mark@demon-angel.eu"
  2854. }
  2855. ],
  2856. "description": "PHP Class for working with matrices",
  2857. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2858. "keywords": [
  2859. "mathematics",
  2860. "matrix",
  2861. "vector"
  2862. ],
  2863. "support": {
  2864. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2865. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2866. },
  2867. "time": "2022-12-02T22:17:43+00:00"
  2868. },
  2869. {
  2870. "name": "monolog/monolog",
  2871. "version": "2.10.0",
  2872. "source": {
  2873. "type": "git",
  2874. "url": "https://github.com/Seldaek/monolog.git",
  2875. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  2876. },
  2877. "dist": {
  2878. "type": "zip",
  2879. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  2880. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  2881. "shasum": "",
  2882. "mirrors": [
  2883. {
  2884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2885. "preferred": true
  2886. }
  2887. ]
  2888. },
  2889. "require": {
  2890. "php": ">=7.2",
  2891. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2892. },
  2893. "provide": {
  2894. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2895. },
  2896. "require-dev": {
  2897. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2898. "doctrine/couchdb": "~1.0@dev",
  2899. "elasticsearch/elasticsearch": "^7 || ^8",
  2900. "ext-json": "*",
  2901. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2902. "guzzlehttp/guzzle": "^7.4",
  2903. "guzzlehttp/psr7": "^2.2",
  2904. "mongodb/mongodb": "^1.8",
  2905. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2906. "phpspec/prophecy": "^1.15",
  2907. "phpstan/phpstan": "^1.10",
  2908. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2909. "predis/predis": "^1.1 || ^2.0",
  2910. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2911. "ruflin/elastica": "^7",
  2912. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2913. "symfony/mailer": "^5.4 || ^6",
  2914. "symfony/mime": "^5.4 || ^6"
  2915. },
  2916. "suggest": {
  2917. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2918. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2919. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2920. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2921. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2922. "ext-mbstring": "Allow to work properly with unicode symbols",
  2923. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2924. "ext-openssl": "Required to send log messages using SSL",
  2925. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2926. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2927. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2928. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2929. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2930. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2931. },
  2932. "type": "library",
  2933. "extra": {
  2934. "branch-alias": {
  2935. "dev-main": "2.x-dev"
  2936. }
  2937. },
  2938. "autoload": {
  2939. "psr-4": {
  2940. "Monolog\\": "src/Monolog"
  2941. }
  2942. },
  2943. "notification-url": "https://packagist.org/downloads/",
  2944. "license": [
  2945. "MIT"
  2946. ],
  2947. "authors": [
  2948. {
  2949. "name": "Jordi Boggiano",
  2950. "email": "j.boggiano@seld.be",
  2951. "homepage": "https://seld.be"
  2952. }
  2953. ],
  2954. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2955. "homepage": "https://github.com/Seldaek/monolog",
  2956. "keywords": [
  2957. "log",
  2958. "logging",
  2959. "psr-3"
  2960. ],
  2961. "support": {
  2962. "issues": "https://github.com/Seldaek/monolog/issues",
  2963. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  2964. },
  2965. "funding": [
  2966. {
  2967. "url": "https://github.com/Seldaek",
  2968. "type": "github"
  2969. },
  2970. {
  2971. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2972. "type": "tidelift"
  2973. }
  2974. ],
  2975. "time": "2024-11-12T12:43:37+00:00"
  2976. },
  2977. {
  2978. "name": "myclabs/php-enum",
  2979. "version": "1.8.4",
  2980. "source": {
  2981. "type": "git",
  2982. "url": "https://github.com/myclabs/php-enum.git",
  2983. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2984. },
  2985. "dist": {
  2986. "type": "zip",
  2987. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2988. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2989. "shasum": "",
  2990. "mirrors": [
  2991. {
  2992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2993. "preferred": true
  2994. }
  2995. ]
  2996. },
  2997. "require": {
  2998. "ext-json": "*",
  2999. "php": "^7.3 || ^8.0"
  3000. },
  3001. "require-dev": {
  3002. "phpunit/phpunit": "^9.5",
  3003. "squizlabs/php_codesniffer": "1.*",
  3004. "vimeo/psalm": "^4.6.2"
  3005. },
  3006. "type": "library",
  3007. "autoload": {
  3008. "psr-4": {
  3009. "MyCLabs\\Enum\\": "src/"
  3010. },
  3011. "classmap": [
  3012. "stubs/Stringable.php"
  3013. ]
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "PHP Enum contributors",
  3022. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3023. }
  3024. ],
  3025. "description": "PHP Enum implementation",
  3026. "homepage": "http://github.com/myclabs/php-enum",
  3027. "keywords": [
  3028. "enum"
  3029. ],
  3030. "support": {
  3031. "issues": "https://github.com/myclabs/php-enum/issues",
  3032. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3033. },
  3034. "funding": [
  3035. {
  3036. "url": "https://github.com/mnapoli",
  3037. "type": "github"
  3038. },
  3039. {
  3040. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3041. "type": "tidelift"
  3042. }
  3043. ],
  3044. "time": "2022-08-04T09:53:51+00:00"
  3045. },
  3046. {
  3047. "name": "nesbot/carbon",
  3048. "version": "2.73.0",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/CarbonPHP/carbon.git",
  3052. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3057. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3058. "shasum": "",
  3059. "mirrors": [
  3060. {
  3061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3062. "preferred": true
  3063. }
  3064. ]
  3065. },
  3066. "require": {
  3067. "carbonphp/carbon-doctrine-types": "*",
  3068. "ext-json": "*",
  3069. "php": "^7.1.8 || ^8.0",
  3070. "psr/clock": "^1.0",
  3071. "symfony/polyfill-mbstring": "^1.0",
  3072. "symfony/polyfill-php80": "^1.16",
  3073. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3074. },
  3075. "provide": {
  3076. "psr/clock-implementation": "1.0"
  3077. },
  3078. "require-dev": {
  3079. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3080. "doctrine/orm": "^2.7 || ^3.0",
  3081. "friendsofphp/php-cs-fixer": "^3.0",
  3082. "kylekatarnls/multi-tester": "^2.0",
  3083. "ondrejmirtes/better-reflection": "<6",
  3084. "phpmd/phpmd": "^2.9",
  3085. "phpstan/extension-installer": "^1.0",
  3086. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3087. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3088. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3089. "squizlabs/php_codesniffer": "^3.4"
  3090. },
  3091. "bin": [
  3092. "bin/carbon"
  3093. ],
  3094. "type": "library",
  3095. "extra": {
  3096. "laravel": {
  3097. "providers": [
  3098. "Carbon\\Laravel\\ServiceProvider"
  3099. ]
  3100. },
  3101. "phpstan": {
  3102. "includes": [
  3103. "extension.neon"
  3104. ]
  3105. },
  3106. "branch-alias": {
  3107. "dev-2.x": "2.x-dev",
  3108. "dev-master": "3.x-dev"
  3109. }
  3110. },
  3111. "autoload": {
  3112. "psr-4": {
  3113. "Carbon\\": "src/Carbon/"
  3114. }
  3115. },
  3116. "notification-url": "https://packagist.org/downloads/",
  3117. "license": [
  3118. "MIT"
  3119. ],
  3120. "authors": [
  3121. {
  3122. "name": "Brian Nesbitt",
  3123. "email": "brian@nesbot.com",
  3124. "homepage": "https://markido.com"
  3125. },
  3126. {
  3127. "name": "kylekatarnls",
  3128. "homepage": "https://github.com/kylekatarnls"
  3129. }
  3130. ],
  3131. "description": "An API extension for DateTime that supports 281 different languages.",
  3132. "homepage": "https://carbon.nesbot.com",
  3133. "keywords": [
  3134. "date",
  3135. "datetime",
  3136. "time"
  3137. ],
  3138. "support": {
  3139. "docs": "https://carbon.nesbot.com/docs",
  3140. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3141. "source": "https://github.com/briannesbitt/Carbon"
  3142. },
  3143. "funding": [
  3144. {
  3145. "url": "https://github.com/sponsors/kylekatarnls",
  3146. "type": "github"
  3147. },
  3148. {
  3149. "url": "https://opencollective.com/Carbon#sponsor",
  3150. "type": "opencollective"
  3151. },
  3152. {
  3153. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3154. "type": "tidelift"
  3155. }
  3156. ],
  3157. "time": "2025-01-08T20:10:23+00:00"
  3158. },
  3159. {
  3160. "name": "nette/schema",
  3161. "version": "v1.2.5",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/nette/schema.git",
  3165. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3170. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3171. "shasum": "",
  3172. "mirrors": [
  3173. {
  3174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3175. "preferred": true
  3176. }
  3177. ]
  3178. },
  3179. "require": {
  3180. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3181. "php": "7.1 - 8.3"
  3182. },
  3183. "require-dev": {
  3184. "nette/tester": "^2.3 || ^2.4",
  3185. "phpstan/phpstan-nette": "^1.0",
  3186. "tracy/tracy": "^2.7"
  3187. },
  3188. "type": "library",
  3189. "extra": {
  3190. "branch-alias": {
  3191. "dev-master": "1.2-dev"
  3192. }
  3193. },
  3194. "autoload": {
  3195. "classmap": [
  3196. "src/"
  3197. ]
  3198. },
  3199. "notification-url": "https://packagist.org/downloads/",
  3200. "license": [
  3201. "BSD-3-Clause",
  3202. "GPL-2.0-only",
  3203. "GPL-3.0-only"
  3204. ],
  3205. "authors": [
  3206. {
  3207. "name": "David Grudl",
  3208. "homepage": "https://davidgrudl.com"
  3209. },
  3210. {
  3211. "name": "Nette Community",
  3212. "homepage": "https://nette.org/contributors"
  3213. }
  3214. ],
  3215. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3216. "homepage": "https://nette.org",
  3217. "keywords": [
  3218. "config",
  3219. "nette"
  3220. ],
  3221. "support": {
  3222. "issues": "https://github.com/nette/schema/issues",
  3223. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3224. },
  3225. "time": "2023-10-05T20:37:59+00:00"
  3226. },
  3227. {
  3228. "name": "nette/utils",
  3229. "version": "v4.0.4",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/nette/utils.git",
  3233. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3238. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3239. "shasum": "",
  3240. "mirrors": [
  3241. {
  3242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3243. "preferred": true
  3244. }
  3245. ]
  3246. },
  3247. "require": {
  3248. "php": ">=8.0 <8.4"
  3249. },
  3250. "conflict": {
  3251. "nette/finder": "<3",
  3252. "nette/schema": "<1.2.2"
  3253. },
  3254. "require-dev": {
  3255. "jetbrains/phpstorm-attributes": "dev-master",
  3256. "nette/tester": "^2.5",
  3257. "phpstan/phpstan": "^1.0",
  3258. "tracy/tracy": "^2.9"
  3259. },
  3260. "suggest": {
  3261. "ext-gd": "to use Image",
  3262. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3263. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3264. "ext-json": "to use Nette\\Utils\\Json",
  3265. "ext-mbstring": "to use Strings::lower() etc...",
  3266. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3267. },
  3268. "type": "library",
  3269. "extra": {
  3270. "branch-alias": {
  3271. "dev-master": "4.0-dev"
  3272. }
  3273. },
  3274. "autoload": {
  3275. "classmap": [
  3276. "src/"
  3277. ]
  3278. },
  3279. "notification-url": "https://packagist.org/downloads/",
  3280. "license": [
  3281. "BSD-3-Clause",
  3282. "GPL-2.0-only",
  3283. "GPL-3.0-only"
  3284. ],
  3285. "authors": [
  3286. {
  3287. "name": "David Grudl",
  3288. "homepage": "https://davidgrudl.com"
  3289. },
  3290. {
  3291. "name": "Nette Community",
  3292. "homepage": "https://nette.org/contributors"
  3293. }
  3294. ],
  3295. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3296. "homepage": "https://nette.org",
  3297. "keywords": [
  3298. "array",
  3299. "core",
  3300. "datetime",
  3301. "images",
  3302. "json",
  3303. "nette",
  3304. "paginator",
  3305. "password",
  3306. "slugify",
  3307. "string",
  3308. "unicode",
  3309. "utf-8",
  3310. "utility",
  3311. "validation"
  3312. ],
  3313. "support": {
  3314. "issues": "https://github.com/nette/utils/issues",
  3315. "source": "https://github.com/nette/utils/tree/v4.0.4"
  3316. },
  3317. "time": "2024-01-17T16:50:36+00:00"
  3318. },
  3319. {
  3320. "name": "nikic/php-parser",
  3321. "version": "v5.3.1",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://github.com/nikic/PHP-Parser.git",
  3325. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  3330. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  3331. "shasum": "",
  3332. "mirrors": [
  3333. {
  3334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3335. "preferred": true
  3336. }
  3337. ]
  3338. },
  3339. "require": {
  3340. "ext-ctype": "*",
  3341. "ext-json": "*",
  3342. "ext-tokenizer": "*",
  3343. "php": ">=7.4"
  3344. },
  3345. "require-dev": {
  3346. "ircmaxell/php-yacc": "^0.0.7",
  3347. "phpunit/phpunit": "^9.0"
  3348. },
  3349. "bin": [
  3350. "bin/php-parse"
  3351. ],
  3352. "type": "library",
  3353. "extra": {
  3354. "branch-alias": {
  3355. "dev-master": "5.0-dev"
  3356. }
  3357. },
  3358. "autoload": {
  3359. "psr-4": {
  3360. "PhpParser\\": "lib/PhpParser"
  3361. }
  3362. },
  3363. "notification-url": "https://packagist.org/downloads/",
  3364. "license": [
  3365. "BSD-3-Clause"
  3366. ],
  3367. "authors": [
  3368. {
  3369. "name": "Nikita Popov"
  3370. }
  3371. ],
  3372. "description": "A PHP parser written in PHP",
  3373. "keywords": [
  3374. "parser",
  3375. "php"
  3376. ],
  3377. "support": {
  3378. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3379. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  3380. },
  3381. "time": "2024-10-08T18:51:32+00:00"
  3382. },
  3383. {
  3384. "name": "opis/closure",
  3385. "version": "3.6.3",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://github.com/opis/closure.git",
  3389. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3394. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3395. "shasum": "",
  3396. "mirrors": [
  3397. {
  3398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3399. "preferred": true
  3400. }
  3401. ]
  3402. },
  3403. "require": {
  3404. "php": "^5.4 || ^7.0 || ^8.0"
  3405. },
  3406. "require-dev": {
  3407. "jeremeamia/superclosure": "^2.0",
  3408. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3409. },
  3410. "type": "library",
  3411. "extra": {
  3412. "branch-alias": {
  3413. "dev-master": "3.6.x-dev"
  3414. }
  3415. },
  3416. "autoload": {
  3417. "files": [
  3418. "functions.php"
  3419. ],
  3420. "psr-4": {
  3421. "Opis\\Closure\\": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Marius Sarca",
  3431. "email": "marius.sarca@gmail.com"
  3432. },
  3433. {
  3434. "name": "Sorin Sarca",
  3435. "email": "sarca_sorin@hotmail.com"
  3436. }
  3437. ],
  3438. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3439. "homepage": "https://opis.io/closure",
  3440. "keywords": [
  3441. "anonymous functions",
  3442. "closure",
  3443. "function",
  3444. "serializable",
  3445. "serialization",
  3446. "serialize"
  3447. ],
  3448. "support": {
  3449. "issues": "https://github.com/opis/closure/issues",
  3450. "source": "https://github.com/opis/closure/tree/3.6.3"
  3451. },
  3452. "time": "2022-01-27T09:35:39+00:00"
  3453. },
  3454. {
  3455. "name": "paragonie/constant_time_encoding",
  3456. "version": "v3.0.0",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3460. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  3465. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  3466. "shasum": "",
  3467. "mirrors": [
  3468. {
  3469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3470. "preferred": true
  3471. }
  3472. ]
  3473. },
  3474. "require": {
  3475. "php": "^8"
  3476. },
  3477. "require-dev": {
  3478. "phpunit/phpunit": "^9",
  3479. "vimeo/psalm": "^4|^5"
  3480. },
  3481. "type": "library",
  3482. "autoload": {
  3483. "psr-4": {
  3484. "ParagonIE\\ConstantTime\\": "src/"
  3485. }
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "MIT"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Paragon Initiative Enterprises",
  3494. "email": "security@paragonie.com",
  3495. "homepage": "https://paragonie.com",
  3496. "role": "Maintainer"
  3497. },
  3498. {
  3499. "name": "Steve 'Sc00bz' Thomas",
  3500. "email": "steve@tobtu.com",
  3501. "homepage": "https://www.tobtu.com",
  3502. "role": "Original Developer"
  3503. }
  3504. ],
  3505. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3506. "keywords": [
  3507. "base16",
  3508. "base32",
  3509. "base32_decode",
  3510. "base32_encode",
  3511. "base64",
  3512. "base64_decode",
  3513. "base64_encode",
  3514. "bin2hex",
  3515. "encoding",
  3516. "hex",
  3517. "hex2bin",
  3518. "rfc4648"
  3519. ],
  3520. "support": {
  3521. "email": "info@paragonie.com",
  3522. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3523. "source": "https://github.com/paragonie/constant_time_encoding"
  3524. },
  3525. "time": "2024-05-08T12:36:18+00:00"
  3526. },
  3527. {
  3528. "name": "paragonie/random_compat",
  3529. "version": "v9.99.100",
  3530. "source": {
  3531. "type": "git",
  3532. "url": "https://github.com/paragonie/random_compat.git",
  3533. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3534. },
  3535. "dist": {
  3536. "type": "zip",
  3537. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3538. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3539. "shasum": "",
  3540. "mirrors": [
  3541. {
  3542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3543. "preferred": true
  3544. }
  3545. ]
  3546. },
  3547. "require": {
  3548. "php": ">= 7"
  3549. },
  3550. "require-dev": {
  3551. "phpunit/phpunit": "4.*|5.*",
  3552. "vimeo/psalm": "^1"
  3553. },
  3554. "suggest": {
  3555. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3556. },
  3557. "type": "library",
  3558. "notification-url": "https://packagist.org/downloads/",
  3559. "license": [
  3560. "MIT"
  3561. ],
  3562. "authors": [
  3563. {
  3564. "name": "Paragon Initiative Enterprises",
  3565. "email": "security@paragonie.com",
  3566. "homepage": "https://paragonie.com"
  3567. }
  3568. ],
  3569. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3570. "keywords": [
  3571. "csprng",
  3572. "polyfill",
  3573. "pseudorandom",
  3574. "random"
  3575. ],
  3576. "support": {
  3577. "email": "info@paragonie.com",
  3578. "issues": "https://github.com/paragonie/random_compat/issues",
  3579. "source": "https://github.com/paragonie/random_compat"
  3580. },
  3581. "time": "2020-10-15T08:29:30+00:00"
  3582. },
  3583. {
  3584. "name": "phpoffice/phpspreadsheet",
  3585. "version": "1.30.0",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3589. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2f39286e0136673778b7a142b3f0d141e43d1714",
  3594. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714",
  3595. "shasum": "",
  3596. "mirrors": [
  3597. {
  3598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3599. "preferred": true
  3600. }
  3601. ]
  3602. },
  3603. "require": {
  3604. "composer/pcre": "^1||^2||^3",
  3605. "ext-ctype": "*",
  3606. "ext-dom": "*",
  3607. "ext-fileinfo": "*",
  3608. "ext-gd": "*",
  3609. "ext-iconv": "*",
  3610. "ext-libxml": "*",
  3611. "ext-mbstring": "*",
  3612. "ext-simplexml": "*",
  3613. "ext-xml": "*",
  3614. "ext-xmlreader": "*",
  3615. "ext-xmlwriter": "*",
  3616. "ext-zip": "*",
  3617. "ext-zlib": "*",
  3618. "ezyang/htmlpurifier": "^4.15",
  3619. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3620. "markbaker/complex": "^3.0",
  3621. "markbaker/matrix": "^3.0",
  3622. "php": "^7.4 || ^8.0",
  3623. "psr/http-client": "^1.0",
  3624. "psr/http-factory": "^1.0",
  3625. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3626. },
  3627. "require-dev": {
  3628. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3629. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  3630. "friendsofphp/php-cs-fixer": "^3.2",
  3631. "mitoteam/jpgraph": "^10.3",
  3632. "mpdf/mpdf": "^8.1.1",
  3633. "phpcompatibility/php-compatibility": "^9.3",
  3634. "phpstan/phpstan": "^1.1",
  3635. "phpstan/phpstan-phpunit": "^1.0",
  3636. "phpunit/phpunit": "^8.5 || ^9.0",
  3637. "squizlabs/php_codesniffer": "^3.7",
  3638. "tecnickcom/tcpdf": "^6.5"
  3639. },
  3640. "suggest": {
  3641. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3642. "ext-intl": "PHP Internationalization Functions",
  3643. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3644. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3645. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3646. },
  3647. "type": "library",
  3648. "autoload": {
  3649. "psr-4": {
  3650. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3651. }
  3652. },
  3653. "notification-url": "https://packagist.org/downloads/",
  3654. "license": [
  3655. "MIT"
  3656. ],
  3657. "authors": [
  3658. {
  3659. "name": "Maarten Balliauw",
  3660. "homepage": "https://blog.maartenballiauw.be"
  3661. },
  3662. {
  3663. "name": "Mark Baker",
  3664. "homepage": "https://markbakeruk.net"
  3665. },
  3666. {
  3667. "name": "Franck Lefevre",
  3668. "homepage": "https://rootslabs.net"
  3669. },
  3670. {
  3671. "name": "Erik Tilt"
  3672. },
  3673. {
  3674. "name": "Adrien Crivelli"
  3675. }
  3676. ],
  3677. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3678. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3679. "keywords": [
  3680. "OpenXML",
  3681. "excel",
  3682. "gnumeric",
  3683. "ods",
  3684. "php",
  3685. "spreadsheet",
  3686. "xls",
  3687. "xlsx"
  3688. ],
  3689. "support": {
  3690. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3691. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.0"
  3692. },
  3693. "time": "2025-08-10T06:28:02+00:00"
  3694. },
  3695. {
  3696. "name": "phpoption/phpoption",
  3697. "version": "1.9.3",
  3698. "source": {
  3699. "type": "git",
  3700. "url": "https://github.com/schmittjoh/php-option.git",
  3701. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3702. },
  3703. "dist": {
  3704. "type": "zip",
  3705. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3706. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3707. "shasum": "",
  3708. "mirrors": [
  3709. {
  3710. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3711. "preferred": true
  3712. }
  3713. ]
  3714. },
  3715. "require": {
  3716. "php": "^7.2.5 || ^8.0"
  3717. },
  3718. "require-dev": {
  3719. "bamarni/composer-bin-plugin": "^1.8.2",
  3720. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3721. },
  3722. "type": "library",
  3723. "extra": {
  3724. "bamarni-bin": {
  3725. "bin-links": true,
  3726. "forward-command": false
  3727. },
  3728. "branch-alias": {
  3729. "dev-master": "1.9-dev"
  3730. }
  3731. },
  3732. "autoload": {
  3733. "psr-4": {
  3734. "PhpOption\\": "src/PhpOption/"
  3735. }
  3736. },
  3737. "notification-url": "https://packagist.org/downloads/",
  3738. "license": [
  3739. "Apache-2.0"
  3740. ],
  3741. "authors": [
  3742. {
  3743. "name": "Johannes M. Schmitt",
  3744. "email": "schmittjoh@gmail.com",
  3745. "homepage": "https://github.com/schmittjoh"
  3746. },
  3747. {
  3748. "name": "Graham Campbell",
  3749. "email": "hello@gjcampbell.co.uk",
  3750. "homepage": "https://github.com/GrahamCampbell"
  3751. }
  3752. ],
  3753. "description": "Option Type for PHP",
  3754. "keywords": [
  3755. "language",
  3756. "option",
  3757. "php",
  3758. "type"
  3759. ],
  3760. "support": {
  3761. "issues": "https://github.com/schmittjoh/php-option/issues",
  3762. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3763. },
  3764. "funding": [
  3765. {
  3766. "url": "https://github.com/GrahamCampbell",
  3767. "type": "github"
  3768. },
  3769. {
  3770. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3771. "type": "tidelift"
  3772. }
  3773. ],
  3774. "time": "2024-07-20T21:41:07+00:00"
  3775. },
  3776. {
  3777. "name": "phpseclib/phpseclib",
  3778. "version": "3.0.43",
  3779. "source": {
  3780. "type": "git",
  3781. "url": "https://github.com/phpseclib/phpseclib.git",
  3782. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  3783. },
  3784. "dist": {
  3785. "type": "zip",
  3786. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  3787. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  3788. "shasum": "",
  3789. "mirrors": [
  3790. {
  3791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3792. "preferred": true
  3793. }
  3794. ]
  3795. },
  3796. "require": {
  3797. "paragonie/constant_time_encoding": "^1|^2|^3",
  3798. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3799. "php": ">=5.6.1"
  3800. },
  3801. "require-dev": {
  3802. "phpunit/phpunit": "*"
  3803. },
  3804. "suggest": {
  3805. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3806. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3807. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3808. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3809. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3810. },
  3811. "type": "library",
  3812. "autoload": {
  3813. "files": [
  3814. "phpseclib/bootstrap.php"
  3815. ],
  3816. "psr-4": {
  3817. "phpseclib3\\": "phpseclib/"
  3818. }
  3819. },
  3820. "notification-url": "https://packagist.org/downloads/",
  3821. "license": [
  3822. "MIT"
  3823. ],
  3824. "authors": [
  3825. {
  3826. "name": "Jim Wigginton",
  3827. "email": "terrafrost@php.net",
  3828. "role": "Lead Developer"
  3829. },
  3830. {
  3831. "name": "Patrick Monnerat",
  3832. "email": "pm@datasphere.ch",
  3833. "role": "Developer"
  3834. },
  3835. {
  3836. "name": "Andreas Fischer",
  3837. "email": "bantu@phpbb.com",
  3838. "role": "Developer"
  3839. },
  3840. {
  3841. "name": "Hans-Jürgen Petrich",
  3842. "email": "petrich@tronic-media.com",
  3843. "role": "Developer"
  3844. },
  3845. {
  3846. "name": "Graham Campbell",
  3847. "email": "graham@alt-three.com",
  3848. "role": "Developer"
  3849. }
  3850. ],
  3851. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3852. "homepage": "http://phpseclib.sourceforge.net",
  3853. "keywords": [
  3854. "BigInteger",
  3855. "aes",
  3856. "asn.1",
  3857. "asn1",
  3858. "blowfish",
  3859. "crypto",
  3860. "cryptography",
  3861. "encryption",
  3862. "rsa",
  3863. "security",
  3864. "sftp",
  3865. "signature",
  3866. "signing",
  3867. "ssh",
  3868. "twofish",
  3869. "x.509",
  3870. "x509"
  3871. ],
  3872. "support": {
  3873. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3874. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  3875. },
  3876. "funding": [
  3877. {
  3878. "url": "https://github.com/terrafrost",
  3879. "type": "github"
  3880. },
  3881. {
  3882. "url": "https://www.patreon.com/phpseclib",
  3883. "type": "patreon"
  3884. },
  3885. {
  3886. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3887. "type": "tidelift"
  3888. }
  3889. ],
  3890. "time": "2024-12-14T21:12:59+00:00"
  3891. },
  3892. {
  3893. "name": "psr/clock",
  3894. "version": "1.0.0",
  3895. "source": {
  3896. "type": "git",
  3897. "url": "https://github.com/php-fig/clock.git",
  3898. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3899. },
  3900. "dist": {
  3901. "type": "zip",
  3902. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3903. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3904. "shasum": "",
  3905. "mirrors": [
  3906. {
  3907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3908. "preferred": true
  3909. }
  3910. ]
  3911. },
  3912. "require": {
  3913. "php": "^7.0 || ^8.0"
  3914. },
  3915. "type": "library",
  3916. "autoload": {
  3917. "psr-4": {
  3918. "Psr\\Clock\\": "src/"
  3919. }
  3920. },
  3921. "notification-url": "https://packagist.org/downloads/",
  3922. "license": [
  3923. "MIT"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "PHP-FIG",
  3928. "homepage": "https://www.php-fig.org/"
  3929. }
  3930. ],
  3931. "description": "Common interface for reading the clock.",
  3932. "homepage": "https://github.com/php-fig/clock",
  3933. "keywords": [
  3934. "clock",
  3935. "now",
  3936. "psr",
  3937. "psr-20",
  3938. "time"
  3939. ],
  3940. "support": {
  3941. "issues": "https://github.com/php-fig/clock/issues",
  3942. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3943. },
  3944. "time": "2022-11-25T14:36:26+00:00"
  3945. },
  3946. {
  3947. "name": "psr/container",
  3948. "version": "1.1.2",
  3949. "source": {
  3950. "type": "git",
  3951. "url": "https://github.com/php-fig/container.git",
  3952. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3953. },
  3954. "dist": {
  3955. "type": "zip",
  3956. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3957. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3958. "shasum": "",
  3959. "mirrors": [
  3960. {
  3961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3962. "preferred": true
  3963. }
  3964. ]
  3965. },
  3966. "require": {
  3967. "php": ">=7.4.0"
  3968. },
  3969. "type": "library",
  3970. "autoload": {
  3971. "psr-4": {
  3972. "Psr\\Container\\": "src/"
  3973. }
  3974. },
  3975. "notification-url": "https://packagist.org/downloads/",
  3976. "license": [
  3977. "MIT"
  3978. ],
  3979. "authors": [
  3980. {
  3981. "name": "PHP-FIG",
  3982. "homepage": "https://www.php-fig.org/"
  3983. }
  3984. ],
  3985. "description": "Common Container Interface (PHP FIG PSR-11)",
  3986. "homepage": "https://github.com/php-fig/container",
  3987. "keywords": [
  3988. "PSR-11",
  3989. "container",
  3990. "container-interface",
  3991. "container-interop",
  3992. "psr"
  3993. ],
  3994. "support": {
  3995. "issues": "https://github.com/php-fig/container/issues",
  3996. "source": "https://github.com/php-fig/container/tree/1.1.2"
  3997. },
  3998. "time": "2021-11-05T16:50:12+00:00"
  3999. },
  4000. {
  4001. "name": "psr/event-dispatcher",
  4002. "version": "1.0.0",
  4003. "source": {
  4004. "type": "git",
  4005. "url": "https://github.com/php-fig/event-dispatcher.git",
  4006. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4007. },
  4008. "dist": {
  4009. "type": "zip",
  4010. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4011. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4012. "shasum": "",
  4013. "mirrors": [
  4014. {
  4015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4016. "preferred": true
  4017. }
  4018. ]
  4019. },
  4020. "require": {
  4021. "php": ">=7.2.0"
  4022. },
  4023. "type": "library",
  4024. "extra": {
  4025. "branch-alias": {
  4026. "dev-master": "1.0.x-dev"
  4027. }
  4028. },
  4029. "autoload": {
  4030. "psr-4": {
  4031. "Psr\\EventDispatcher\\": "src/"
  4032. }
  4033. },
  4034. "notification-url": "https://packagist.org/downloads/",
  4035. "license": [
  4036. "MIT"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "PHP-FIG",
  4041. "homepage": "http://www.php-fig.org/"
  4042. }
  4043. ],
  4044. "description": "Standard interfaces for event handling.",
  4045. "keywords": [
  4046. "events",
  4047. "psr",
  4048. "psr-14"
  4049. ],
  4050. "support": {
  4051. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4052. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4053. },
  4054. "time": "2019-01-08T18:20:26+00:00"
  4055. },
  4056. {
  4057. "name": "psr/http-client",
  4058. "version": "1.0.3",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://github.com/php-fig/http-client.git",
  4062. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4063. },
  4064. "dist": {
  4065. "type": "zip",
  4066. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4067. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4068. "shasum": "",
  4069. "mirrors": [
  4070. {
  4071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4072. "preferred": true
  4073. }
  4074. ]
  4075. },
  4076. "require": {
  4077. "php": "^7.0 || ^8.0",
  4078. "psr/http-message": "^1.0 || ^2.0"
  4079. },
  4080. "type": "library",
  4081. "extra": {
  4082. "branch-alias": {
  4083. "dev-master": "1.0.x-dev"
  4084. }
  4085. },
  4086. "autoload": {
  4087. "psr-4": {
  4088. "Psr\\Http\\Client\\": "src/"
  4089. }
  4090. },
  4091. "notification-url": "https://packagist.org/downloads/",
  4092. "license": [
  4093. "MIT"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "PHP-FIG",
  4098. "homepage": "https://www.php-fig.org/"
  4099. }
  4100. ],
  4101. "description": "Common interface for HTTP clients",
  4102. "homepage": "https://github.com/php-fig/http-client",
  4103. "keywords": [
  4104. "http",
  4105. "http-client",
  4106. "psr",
  4107. "psr-18"
  4108. ],
  4109. "support": {
  4110. "source": "https://github.com/php-fig/http-client"
  4111. },
  4112. "time": "2023-09-23T14:17:50+00:00"
  4113. },
  4114. {
  4115. "name": "psr/http-factory",
  4116. "version": "1.0.2",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://github.com/php-fig/http-factory.git",
  4120. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4125. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4126. "shasum": "",
  4127. "mirrors": [
  4128. {
  4129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4130. "preferred": true
  4131. }
  4132. ]
  4133. },
  4134. "require": {
  4135. "php": ">=7.0.0",
  4136. "psr/http-message": "^1.0 || ^2.0"
  4137. },
  4138. "type": "library",
  4139. "extra": {
  4140. "branch-alias": {
  4141. "dev-master": "1.0.x-dev"
  4142. }
  4143. },
  4144. "autoload": {
  4145. "psr-4": {
  4146. "Psr\\Http\\Message\\": "src/"
  4147. }
  4148. },
  4149. "notification-url": "https://packagist.org/downloads/",
  4150. "license": [
  4151. "MIT"
  4152. ],
  4153. "authors": [
  4154. {
  4155. "name": "PHP-FIG",
  4156. "homepage": "https://www.php-fig.org/"
  4157. }
  4158. ],
  4159. "description": "Common interfaces for PSR-7 HTTP message factories",
  4160. "keywords": [
  4161. "factory",
  4162. "http",
  4163. "message",
  4164. "psr",
  4165. "psr-17",
  4166. "psr-7",
  4167. "request",
  4168. "response"
  4169. ],
  4170. "support": {
  4171. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4172. },
  4173. "time": "2023-04-10T20:10:41+00:00"
  4174. },
  4175. {
  4176. "name": "psr/http-message",
  4177. "version": "1.1",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://github.com/php-fig/http-message.git",
  4181. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4186. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4187. "shasum": "",
  4188. "mirrors": [
  4189. {
  4190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4191. "preferred": true
  4192. }
  4193. ]
  4194. },
  4195. "require": {
  4196. "php": "^7.2 || ^8.0"
  4197. },
  4198. "type": "library",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-master": "1.1.x-dev"
  4202. }
  4203. },
  4204. "autoload": {
  4205. "psr-4": {
  4206. "Psr\\Http\\Message\\": "src/"
  4207. }
  4208. },
  4209. "notification-url": "https://packagist.org/downloads/",
  4210. "license": [
  4211. "MIT"
  4212. ],
  4213. "authors": [
  4214. {
  4215. "name": "PHP-FIG",
  4216. "homepage": "http://www.php-fig.org/"
  4217. }
  4218. ],
  4219. "description": "Common interface for HTTP messages",
  4220. "homepage": "https://github.com/php-fig/http-message",
  4221. "keywords": [
  4222. "http",
  4223. "http-message",
  4224. "psr",
  4225. "psr-7",
  4226. "request",
  4227. "response"
  4228. ],
  4229. "support": {
  4230. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4231. },
  4232. "time": "2023-04-04T09:50:52+00:00"
  4233. },
  4234. {
  4235. "name": "psr/log",
  4236. "version": "2.0.0",
  4237. "source": {
  4238. "type": "git",
  4239. "url": "https://github.com/php-fig/log.git",
  4240. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4241. },
  4242. "dist": {
  4243. "type": "zip",
  4244. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4245. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4246. "shasum": "",
  4247. "mirrors": [
  4248. {
  4249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4250. "preferred": true
  4251. }
  4252. ]
  4253. },
  4254. "require": {
  4255. "php": ">=8.0.0"
  4256. },
  4257. "type": "library",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-master": "2.0.x-dev"
  4261. }
  4262. },
  4263. "autoload": {
  4264. "psr-4": {
  4265. "Psr\\Log\\": "src"
  4266. }
  4267. },
  4268. "notification-url": "https://packagist.org/downloads/",
  4269. "license": [
  4270. "MIT"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "PHP-FIG",
  4275. "homepage": "https://www.php-fig.org/"
  4276. }
  4277. ],
  4278. "description": "Common interface for logging libraries",
  4279. "homepage": "https://github.com/php-fig/log",
  4280. "keywords": [
  4281. "log",
  4282. "psr",
  4283. "psr-3"
  4284. ],
  4285. "support": {
  4286. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4287. },
  4288. "time": "2021-07-14T16:41:46+00:00"
  4289. },
  4290. {
  4291. "name": "psr/simple-cache",
  4292. "version": "1.0.1",
  4293. "source": {
  4294. "type": "git",
  4295. "url": "https://github.com/php-fig/simple-cache.git",
  4296. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4297. },
  4298. "dist": {
  4299. "type": "zip",
  4300. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4301. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4302. "shasum": "",
  4303. "mirrors": [
  4304. {
  4305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4306. "preferred": true
  4307. }
  4308. ]
  4309. },
  4310. "require": {
  4311. "php": ">=5.3.0"
  4312. },
  4313. "type": "library",
  4314. "extra": {
  4315. "branch-alias": {
  4316. "dev-master": "1.0.x-dev"
  4317. }
  4318. },
  4319. "autoload": {
  4320. "psr-4": {
  4321. "Psr\\SimpleCache\\": "src/"
  4322. }
  4323. },
  4324. "notification-url": "https://packagist.org/downloads/",
  4325. "license": [
  4326. "MIT"
  4327. ],
  4328. "authors": [
  4329. {
  4330. "name": "PHP-FIG",
  4331. "homepage": "http://www.php-fig.org/"
  4332. }
  4333. ],
  4334. "description": "Common interfaces for simple caching",
  4335. "keywords": [
  4336. "cache",
  4337. "caching",
  4338. "psr",
  4339. "psr-16",
  4340. "simple-cache"
  4341. ],
  4342. "support": {
  4343. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4344. },
  4345. "time": "2017-10-23T01:57:42+00:00"
  4346. },
  4347. {
  4348. "name": "psy/psysh",
  4349. "version": "v0.12.12",
  4350. "source": {
  4351. "type": "git",
  4352. "url": "https://github.com/bobthecow/psysh.git",
  4353. "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7"
  4354. },
  4355. "dist": {
  4356. "type": "zip",
  4357. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/cd23863404a40ccfaf733e3af4db2b459837f7e7",
  4358. "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7",
  4359. "shasum": "",
  4360. "mirrors": [
  4361. {
  4362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4363. "preferred": true
  4364. }
  4365. ]
  4366. },
  4367. "require": {
  4368. "ext-json": "*",
  4369. "ext-tokenizer": "*",
  4370. "nikic/php-parser": "^5.0 || ^4.0",
  4371. "php": "^8.0 || ^7.4",
  4372. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4373. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4374. },
  4375. "conflict": {
  4376. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4377. },
  4378. "require-dev": {
  4379. "bamarni/composer-bin-plugin": "^1.2"
  4380. },
  4381. "suggest": {
  4382. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4383. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4384. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4385. },
  4386. "bin": [
  4387. "bin/psysh"
  4388. ],
  4389. "type": "library",
  4390. "extra": {
  4391. "bamarni-bin": {
  4392. "bin-links": false,
  4393. "forward-command": false
  4394. },
  4395. "branch-alias": {
  4396. "dev-main": "0.12.x-dev"
  4397. }
  4398. },
  4399. "autoload": {
  4400. "files": [
  4401. "src/functions.php"
  4402. ],
  4403. "psr-4": {
  4404. "Psy\\": "src/"
  4405. }
  4406. },
  4407. "notification-url": "https://packagist.org/downloads/",
  4408. "license": [
  4409. "MIT"
  4410. ],
  4411. "authors": [
  4412. {
  4413. "name": "Justin Hileman",
  4414. "email": "justin@justinhileman.info"
  4415. }
  4416. ],
  4417. "description": "An interactive shell for modern PHP.",
  4418. "homepage": "https://psysh.org",
  4419. "keywords": [
  4420. "REPL",
  4421. "console",
  4422. "interactive",
  4423. "shell"
  4424. ],
  4425. "support": {
  4426. "issues": "https://github.com/bobthecow/psysh/issues",
  4427. "source": "https://github.com/bobthecow/psysh/tree/v0.12.12"
  4428. },
  4429. "time": "2025-09-20T13:46:31+00:00"
  4430. },
  4431. {
  4432. "name": "ralouphie/getallheaders",
  4433. "version": "3.0.3",
  4434. "source": {
  4435. "type": "git",
  4436. "url": "https://github.com/ralouphie/getallheaders.git",
  4437. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4438. },
  4439. "dist": {
  4440. "type": "zip",
  4441. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4442. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4443. "shasum": "",
  4444. "mirrors": [
  4445. {
  4446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4447. "preferred": true
  4448. }
  4449. ]
  4450. },
  4451. "require": {
  4452. "php": ">=5.6"
  4453. },
  4454. "require-dev": {
  4455. "php-coveralls/php-coveralls": "^2.1",
  4456. "phpunit/phpunit": "^5 || ^6.5"
  4457. },
  4458. "type": "library",
  4459. "autoload": {
  4460. "files": [
  4461. "src/getallheaders.php"
  4462. ]
  4463. },
  4464. "notification-url": "https://packagist.org/downloads/",
  4465. "license": [
  4466. "MIT"
  4467. ],
  4468. "authors": [
  4469. {
  4470. "name": "Ralph Khattar",
  4471. "email": "ralph.khattar@gmail.com"
  4472. }
  4473. ],
  4474. "description": "A polyfill for getallheaders.",
  4475. "support": {
  4476. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4477. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4478. },
  4479. "time": "2019-03-08T08:55:37+00:00"
  4480. },
  4481. {
  4482. "name": "ramsey/collection",
  4483. "version": "1.3.0",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/ramsey/collection.git",
  4487. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4492. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4493. "shasum": "",
  4494. "mirrors": [
  4495. {
  4496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4497. "preferred": true
  4498. }
  4499. ]
  4500. },
  4501. "require": {
  4502. "php": "^7.4 || ^8.0",
  4503. "symfony/polyfill-php81": "^1.23"
  4504. },
  4505. "require-dev": {
  4506. "captainhook/plugin-composer": "^5.3",
  4507. "ergebnis/composer-normalize": "^2.28.3",
  4508. "fakerphp/faker": "^1.21",
  4509. "hamcrest/hamcrest-php": "^2.0",
  4510. "jangregor/phpstan-prophecy": "^1.0",
  4511. "mockery/mockery": "^1.5",
  4512. "php-parallel-lint/php-console-highlighter": "^1.0",
  4513. "php-parallel-lint/php-parallel-lint": "^1.3",
  4514. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4515. "phpspec/prophecy-phpunit": "^2.0",
  4516. "phpstan/extension-installer": "^1.2",
  4517. "phpstan/phpstan": "^1.9",
  4518. "phpstan/phpstan-mockery": "^1.1",
  4519. "phpstan/phpstan-phpunit": "^1.3",
  4520. "phpunit/phpunit": "^9.5",
  4521. "psalm/plugin-mockery": "^1.1",
  4522. "psalm/plugin-phpunit": "^0.18.4",
  4523. "ramsey/coding-standard": "^2.0.3",
  4524. "ramsey/conventional-commits": "^1.3",
  4525. "vimeo/psalm": "^5.4"
  4526. },
  4527. "type": "library",
  4528. "extra": {
  4529. "captainhook": {
  4530. "force-install": true
  4531. },
  4532. "ramsey/conventional-commits": {
  4533. "configFile": "conventional-commits.json"
  4534. }
  4535. },
  4536. "autoload": {
  4537. "psr-4": {
  4538. "Ramsey\\Collection\\": "src/"
  4539. }
  4540. },
  4541. "notification-url": "https://packagist.org/downloads/",
  4542. "license": [
  4543. "MIT"
  4544. ],
  4545. "authors": [
  4546. {
  4547. "name": "Ben Ramsey",
  4548. "email": "ben@benramsey.com",
  4549. "homepage": "https://benramsey.com"
  4550. }
  4551. ],
  4552. "description": "A PHP library for representing and manipulating collections.",
  4553. "keywords": [
  4554. "array",
  4555. "collection",
  4556. "hash",
  4557. "map",
  4558. "queue",
  4559. "set"
  4560. ],
  4561. "support": {
  4562. "issues": "https://github.com/ramsey/collection/issues",
  4563. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4564. },
  4565. "funding": [
  4566. {
  4567. "url": "https://github.com/ramsey",
  4568. "type": "github"
  4569. },
  4570. {
  4571. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4572. "type": "tidelift"
  4573. }
  4574. ],
  4575. "time": "2022-12-27T19:12:24+00:00"
  4576. },
  4577. {
  4578. "name": "ramsey/uuid",
  4579. "version": "4.9.0",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://github.com/ramsey/uuid.git",
  4583. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4584. },
  4585. "dist": {
  4586. "type": "zip",
  4587. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4588. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4589. "shasum": "",
  4590. "mirrors": [
  4591. {
  4592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4593. "preferred": true
  4594. }
  4595. ]
  4596. },
  4597. "require": {
  4598. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4599. "php": "^8.0",
  4600. "ramsey/collection": "^1.2 || ^2.0"
  4601. },
  4602. "replace": {
  4603. "rhumsaa/uuid": "self.version"
  4604. },
  4605. "require-dev": {
  4606. "captainhook/captainhook": "^5.25",
  4607. "captainhook/plugin-composer": "^5.3",
  4608. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4609. "ergebnis/composer-normalize": "^2.47",
  4610. "mockery/mockery": "^1.6",
  4611. "paragonie/random-lib": "^2",
  4612. "php-mock/php-mock": "^2.6",
  4613. "php-mock/php-mock-mockery": "^1.5",
  4614. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4615. "phpbench/phpbench": "^1.2.14",
  4616. "phpstan/extension-installer": "^1.4",
  4617. "phpstan/phpstan": "^2.1",
  4618. "phpstan/phpstan-mockery": "^2.0",
  4619. "phpstan/phpstan-phpunit": "^2.0",
  4620. "phpunit/phpunit": "^9.6",
  4621. "slevomat/coding-standard": "^8.18",
  4622. "squizlabs/php_codesniffer": "^3.13"
  4623. },
  4624. "suggest": {
  4625. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4626. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4627. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4628. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4629. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4630. },
  4631. "type": "library",
  4632. "extra": {
  4633. "captainhook": {
  4634. "force-install": true
  4635. }
  4636. },
  4637. "autoload": {
  4638. "files": [
  4639. "src/functions.php"
  4640. ],
  4641. "psr-4": {
  4642. "Ramsey\\Uuid\\": "src/"
  4643. }
  4644. },
  4645. "notification-url": "https://packagist.org/downloads/",
  4646. "license": [
  4647. "MIT"
  4648. ],
  4649. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4650. "keywords": [
  4651. "guid",
  4652. "identifier",
  4653. "uuid"
  4654. ],
  4655. "support": {
  4656. "issues": "https://github.com/ramsey/uuid/issues",
  4657. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4658. },
  4659. "time": "2025-06-25T14:20:11+00:00"
  4660. },
  4661. {
  4662. "name": "ratchet/rfc6455",
  4663. "version": "v0.3.1",
  4664. "source": {
  4665. "type": "git",
  4666. "url": "https://github.com/ratchetphp/RFC6455.git",
  4667. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  4668. },
  4669. "dist": {
  4670. "type": "zip",
  4671. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4672. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4673. "shasum": "",
  4674. "mirrors": [
  4675. {
  4676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4677. "preferred": true
  4678. }
  4679. ]
  4680. },
  4681. "require": {
  4682. "guzzlehttp/psr7": "^2 || ^1.7",
  4683. "php": ">=5.4.2"
  4684. },
  4685. "require-dev": {
  4686. "phpunit/phpunit": "^5.7",
  4687. "react/socket": "^1.3"
  4688. },
  4689. "type": "library",
  4690. "autoload": {
  4691. "psr-4": {
  4692. "Ratchet\\RFC6455\\": "src"
  4693. }
  4694. },
  4695. "notification-url": "https://packagist.org/downloads/",
  4696. "license": [
  4697. "MIT"
  4698. ],
  4699. "authors": [
  4700. {
  4701. "name": "Chris Boden",
  4702. "email": "cboden@gmail.com",
  4703. "role": "Developer"
  4704. },
  4705. {
  4706. "name": "Matt Bonneau",
  4707. "role": "Developer"
  4708. }
  4709. ],
  4710. "description": "RFC6455 WebSocket protocol handler",
  4711. "homepage": "http://socketo.me",
  4712. "keywords": [
  4713. "WebSockets",
  4714. "rfc6455",
  4715. "websocket"
  4716. ],
  4717. "support": {
  4718. "chat": "https://gitter.im/reactphp/reactphp",
  4719. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  4720. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  4721. },
  4722. "time": "2021-12-09T23:20:49+00:00"
  4723. },
  4724. {
  4725. "name": "react/cache",
  4726. "version": "v1.2.0",
  4727. "source": {
  4728. "type": "git",
  4729. "url": "https://github.com/reactphp/cache.git",
  4730. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4731. },
  4732. "dist": {
  4733. "type": "zip",
  4734. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4735. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4736. "shasum": "",
  4737. "mirrors": [
  4738. {
  4739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4740. "preferred": true
  4741. }
  4742. ]
  4743. },
  4744. "require": {
  4745. "php": ">=5.3.0",
  4746. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4747. },
  4748. "require-dev": {
  4749. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4750. },
  4751. "type": "library",
  4752. "autoload": {
  4753. "psr-4": {
  4754. "React\\Cache\\": "src/"
  4755. }
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "MIT"
  4760. ],
  4761. "authors": [
  4762. {
  4763. "name": "Christian Lück",
  4764. "email": "christian@clue.engineering",
  4765. "homepage": "https://clue.engineering/"
  4766. },
  4767. {
  4768. "name": "Cees-Jan Kiewiet",
  4769. "email": "reactphp@ceesjankiewiet.nl",
  4770. "homepage": "https://wyrihaximus.net/"
  4771. },
  4772. {
  4773. "name": "Jan Sorgalla",
  4774. "email": "jsorgalla@gmail.com",
  4775. "homepage": "https://sorgalla.com/"
  4776. },
  4777. {
  4778. "name": "Chris Boden",
  4779. "email": "cboden@gmail.com",
  4780. "homepage": "https://cboden.dev/"
  4781. }
  4782. ],
  4783. "description": "Async, Promise-based cache interface for ReactPHP",
  4784. "keywords": [
  4785. "cache",
  4786. "caching",
  4787. "promise",
  4788. "reactphp"
  4789. ],
  4790. "support": {
  4791. "issues": "https://github.com/reactphp/cache/issues",
  4792. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4793. },
  4794. "funding": [
  4795. {
  4796. "url": "https://opencollective.com/reactphp",
  4797. "type": "open_collective"
  4798. }
  4799. ],
  4800. "time": "2022-11-30T15:59:55+00:00"
  4801. },
  4802. {
  4803. "name": "react/dns",
  4804. "version": "v1.13.0",
  4805. "source": {
  4806. "type": "git",
  4807. "url": "https://github.com/reactphp/dns.git",
  4808. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  4809. },
  4810. "dist": {
  4811. "type": "zip",
  4812. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  4813. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  4814. "shasum": "",
  4815. "mirrors": [
  4816. {
  4817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4818. "preferred": true
  4819. }
  4820. ]
  4821. },
  4822. "require": {
  4823. "php": ">=5.3.0",
  4824. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4825. "react/event-loop": "^1.2",
  4826. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  4827. },
  4828. "require-dev": {
  4829. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4830. "react/async": "^4.3 || ^3 || ^2",
  4831. "react/promise-timer": "^1.11"
  4832. },
  4833. "type": "library",
  4834. "autoload": {
  4835. "psr-4": {
  4836. "React\\Dns\\": "src/"
  4837. }
  4838. },
  4839. "notification-url": "https://packagist.org/downloads/",
  4840. "license": [
  4841. "MIT"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Christian Lück",
  4846. "email": "christian@clue.engineering",
  4847. "homepage": "https://clue.engineering/"
  4848. },
  4849. {
  4850. "name": "Cees-Jan Kiewiet",
  4851. "email": "reactphp@ceesjankiewiet.nl",
  4852. "homepage": "https://wyrihaximus.net/"
  4853. },
  4854. {
  4855. "name": "Jan Sorgalla",
  4856. "email": "jsorgalla@gmail.com",
  4857. "homepage": "https://sorgalla.com/"
  4858. },
  4859. {
  4860. "name": "Chris Boden",
  4861. "email": "cboden@gmail.com",
  4862. "homepage": "https://cboden.dev/"
  4863. }
  4864. ],
  4865. "description": "Async DNS resolver for ReactPHP",
  4866. "keywords": [
  4867. "async",
  4868. "dns",
  4869. "dns-resolver",
  4870. "reactphp"
  4871. ],
  4872. "support": {
  4873. "issues": "https://github.com/reactphp/dns/issues",
  4874. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  4875. },
  4876. "funding": [
  4877. {
  4878. "url": "https://opencollective.com/reactphp",
  4879. "type": "open_collective"
  4880. }
  4881. ],
  4882. "time": "2024-06-13T14:18:03+00:00"
  4883. },
  4884. {
  4885. "name": "react/event-loop",
  4886. "version": "v1.5.0",
  4887. "source": {
  4888. "type": "git",
  4889. "url": "https://github.com/reactphp/event-loop.git",
  4890. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  4891. },
  4892. "dist": {
  4893. "type": "zip",
  4894. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  4895. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  4896. "shasum": "",
  4897. "mirrors": [
  4898. {
  4899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4900. "preferred": true
  4901. }
  4902. ]
  4903. },
  4904. "require": {
  4905. "php": ">=5.3.0"
  4906. },
  4907. "require-dev": {
  4908. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4909. },
  4910. "suggest": {
  4911. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  4912. },
  4913. "type": "library",
  4914. "autoload": {
  4915. "psr-4": {
  4916. "React\\EventLoop\\": "src/"
  4917. }
  4918. },
  4919. "notification-url": "https://packagist.org/downloads/",
  4920. "license": [
  4921. "MIT"
  4922. ],
  4923. "authors": [
  4924. {
  4925. "name": "Christian Lück",
  4926. "email": "christian@clue.engineering",
  4927. "homepage": "https://clue.engineering/"
  4928. },
  4929. {
  4930. "name": "Cees-Jan Kiewiet",
  4931. "email": "reactphp@ceesjankiewiet.nl",
  4932. "homepage": "https://wyrihaximus.net/"
  4933. },
  4934. {
  4935. "name": "Jan Sorgalla",
  4936. "email": "jsorgalla@gmail.com",
  4937. "homepage": "https://sorgalla.com/"
  4938. },
  4939. {
  4940. "name": "Chris Boden",
  4941. "email": "cboden@gmail.com",
  4942. "homepage": "https://cboden.dev/"
  4943. }
  4944. ],
  4945. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  4946. "keywords": [
  4947. "asynchronous",
  4948. "event-loop"
  4949. ],
  4950. "support": {
  4951. "issues": "https://github.com/reactphp/event-loop/issues",
  4952. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  4953. },
  4954. "funding": [
  4955. {
  4956. "url": "https://opencollective.com/reactphp",
  4957. "type": "open_collective"
  4958. }
  4959. ],
  4960. "time": "2023-11-13T13:48:05+00:00"
  4961. },
  4962. {
  4963. "name": "react/promise",
  4964. "version": "v3.2.0",
  4965. "source": {
  4966. "type": "git",
  4967. "url": "https://github.com/reactphp/promise.git",
  4968. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  4969. },
  4970. "dist": {
  4971. "type": "zip",
  4972. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  4973. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  4974. "shasum": "",
  4975. "mirrors": [
  4976. {
  4977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4978. "preferred": true
  4979. }
  4980. ]
  4981. },
  4982. "require": {
  4983. "php": ">=7.1.0"
  4984. },
  4985. "require-dev": {
  4986. "phpstan/phpstan": "1.10.39 || 1.4.10",
  4987. "phpunit/phpunit": "^9.6 || ^7.5"
  4988. },
  4989. "type": "library",
  4990. "autoload": {
  4991. "files": [
  4992. "src/functions_include.php"
  4993. ],
  4994. "psr-4": {
  4995. "React\\Promise\\": "src/"
  4996. }
  4997. },
  4998. "notification-url": "https://packagist.org/downloads/",
  4999. "license": [
  5000. "MIT"
  5001. ],
  5002. "authors": [
  5003. {
  5004. "name": "Jan Sorgalla",
  5005. "email": "jsorgalla@gmail.com",
  5006. "homepage": "https://sorgalla.com/"
  5007. },
  5008. {
  5009. "name": "Christian Lück",
  5010. "email": "christian@clue.engineering",
  5011. "homepage": "https://clue.engineering/"
  5012. },
  5013. {
  5014. "name": "Cees-Jan Kiewiet",
  5015. "email": "reactphp@ceesjankiewiet.nl",
  5016. "homepage": "https://wyrihaximus.net/"
  5017. },
  5018. {
  5019. "name": "Chris Boden",
  5020. "email": "cboden@gmail.com",
  5021. "homepage": "https://cboden.dev/"
  5022. }
  5023. ],
  5024. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5025. "keywords": [
  5026. "promise",
  5027. "promises"
  5028. ],
  5029. "support": {
  5030. "issues": "https://github.com/reactphp/promise/issues",
  5031. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  5032. },
  5033. "funding": [
  5034. {
  5035. "url": "https://opencollective.com/reactphp",
  5036. "type": "open_collective"
  5037. }
  5038. ],
  5039. "time": "2024-05-24T10:39:05+00:00"
  5040. },
  5041. {
  5042. "name": "react/socket",
  5043. "version": "v1.16.0",
  5044. "source": {
  5045. "type": "git",
  5046. "url": "https://github.com/reactphp/socket.git",
  5047. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  5048. },
  5049. "dist": {
  5050. "type": "zip",
  5051. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5052. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5053. "shasum": "",
  5054. "mirrors": [
  5055. {
  5056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5057. "preferred": true
  5058. }
  5059. ]
  5060. },
  5061. "require": {
  5062. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5063. "php": ">=5.3.0",
  5064. "react/dns": "^1.13",
  5065. "react/event-loop": "^1.2",
  5066. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  5067. "react/stream": "^1.4"
  5068. },
  5069. "require-dev": {
  5070. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5071. "react/async": "^4.3 || ^3.3 || ^2",
  5072. "react/promise-stream": "^1.4",
  5073. "react/promise-timer": "^1.11"
  5074. },
  5075. "type": "library",
  5076. "autoload": {
  5077. "psr-4": {
  5078. "React\\Socket\\": "src/"
  5079. }
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "MIT"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "Christian Lück",
  5088. "email": "christian@clue.engineering",
  5089. "homepage": "https://clue.engineering/"
  5090. },
  5091. {
  5092. "name": "Cees-Jan Kiewiet",
  5093. "email": "reactphp@ceesjankiewiet.nl",
  5094. "homepage": "https://wyrihaximus.net/"
  5095. },
  5096. {
  5097. "name": "Jan Sorgalla",
  5098. "email": "jsorgalla@gmail.com",
  5099. "homepage": "https://sorgalla.com/"
  5100. },
  5101. {
  5102. "name": "Chris Boden",
  5103. "email": "cboden@gmail.com",
  5104. "homepage": "https://cboden.dev/"
  5105. }
  5106. ],
  5107. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5108. "keywords": [
  5109. "Connection",
  5110. "Socket",
  5111. "async",
  5112. "reactphp",
  5113. "stream"
  5114. ],
  5115. "support": {
  5116. "issues": "https://github.com/reactphp/socket/issues",
  5117. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  5118. },
  5119. "funding": [
  5120. {
  5121. "url": "https://opencollective.com/reactphp",
  5122. "type": "open_collective"
  5123. }
  5124. ],
  5125. "time": "2024-07-26T10:38:09+00:00"
  5126. },
  5127. {
  5128. "name": "react/stream",
  5129. "version": "1.x-dev",
  5130. "source": {
  5131. "type": "git",
  5132. "url": "https://github.com/reactphp/stream.git",
  5133. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  5134. },
  5135. "dist": {
  5136. "type": "zip",
  5137. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  5138. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  5139. "shasum": "",
  5140. "mirrors": [
  5141. {
  5142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5143. "preferred": true
  5144. }
  5145. ]
  5146. },
  5147. "require": {
  5148. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5149. "php": ">=5.3.8",
  5150. "react/event-loop": "^1.2"
  5151. },
  5152. "require-dev": {
  5153. "clue/stream-filter": "~1.2",
  5154. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5155. },
  5156. "type": "library",
  5157. "autoload": {
  5158. "psr-4": {
  5159. "React\\Stream\\": "src/"
  5160. }
  5161. },
  5162. "notification-url": "https://packagist.org/downloads/",
  5163. "license": [
  5164. "MIT"
  5165. ],
  5166. "authors": [
  5167. {
  5168. "name": "Christian Lück",
  5169. "email": "christian@clue.engineering",
  5170. "homepage": "https://clue.engineering/"
  5171. },
  5172. {
  5173. "name": "Cees-Jan Kiewiet",
  5174. "email": "reactphp@ceesjankiewiet.nl",
  5175. "homepage": "https://wyrihaximus.net/"
  5176. },
  5177. {
  5178. "name": "Jan Sorgalla",
  5179. "email": "jsorgalla@gmail.com",
  5180. "homepage": "https://sorgalla.com/"
  5181. },
  5182. {
  5183. "name": "Chris Boden",
  5184. "email": "cboden@gmail.com",
  5185. "homepage": "https://cboden.dev/"
  5186. }
  5187. ],
  5188. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5189. "keywords": [
  5190. "event-driven",
  5191. "io",
  5192. "non-blocking",
  5193. "pipe",
  5194. "reactphp",
  5195. "readable",
  5196. "stream",
  5197. "writable"
  5198. ],
  5199. "support": {
  5200. "issues": "https://github.com/reactphp/stream/issues",
  5201. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  5202. },
  5203. "funding": [
  5204. {
  5205. "url": "https://opencollective.com/reactphp",
  5206. "type": "open_collective"
  5207. }
  5208. ],
  5209. "time": "2024-06-11T12:45:25+00:00"
  5210. },
  5211. {
  5212. "name": "swiftmailer/swiftmailer",
  5213. "version": "v6.3.0",
  5214. "source": {
  5215. "type": "git",
  5216. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5217. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5218. },
  5219. "dist": {
  5220. "type": "zip",
  5221. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5222. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5223. "shasum": "",
  5224. "mirrors": [
  5225. {
  5226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5227. "preferred": true
  5228. }
  5229. ]
  5230. },
  5231. "require": {
  5232. "egulias/email-validator": "^2.0|^3.1",
  5233. "php": ">=7.0.0",
  5234. "symfony/polyfill-iconv": "^1.0",
  5235. "symfony/polyfill-intl-idn": "^1.10",
  5236. "symfony/polyfill-mbstring": "^1.0"
  5237. },
  5238. "require-dev": {
  5239. "mockery/mockery": "^1.0",
  5240. "symfony/phpunit-bridge": "^4.4|^5.4"
  5241. },
  5242. "suggest": {
  5243. "ext-intl": "Needed to support internationalized email addresses"
  5244. },
  5245. "type": "library",
  5246. "extra": {
  5247. "branch-alias": {
  5248. "dev-master": "6.2-dev"
  5249. }
  5250. },
  5251. "autoload": {
  5252. "files": [
  5253. "lib/swift_required.php"
  5254. ]
  5255. },
  5256. "notification-url": "https://packagist.org/downloads/",
  5257. "license": [
  5258. "MIT"
  5259. ],
  5260. "authors": [
  5261. {
  5262. "name": "Chris Corbyn"
  5263. },
  5264. {
  5265. "name": "Fabien Potencier",
  5266. "email": "fabien@symfony.com"
  5267. }
  5268. ],
  5269. "description": "Swiftmailer, free feature-rich PHP mailer",
  5270. "homepage": "https://swiftmailer.symfony.com",
  5271. "keywords": [
  5272. "email",
  5273. "mail",
  5274. "mailer"
  5275. ],
  5276. "support": {
  5277. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5278. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5279. },
  5280. "funding": [
  5281. {
  5282. "url": "https://github.com/fabpot",
  5283. "type": "github"
  5284. },
  5285. {
  5286. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5287. "type": "tidelift"
  5288. }
  5289. ],
  5290. "abandoned": "symfony/mailer",
  5291. "time": "2021-10-18T15:26:12+00:00"
  5292. },
  5293. {
  5294. "name": "symfony/console",
  5295. "version": "v5.4.47",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/symfony/console.git",
  5299. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5304. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5305. "shasum": "",
  5306. "mirrors": [
  5307. {
  5308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5309. "preferred": true
  5310. }
  5311. ]
  5312. },
  5313. "require": {
  5314. "php": ">=7.2.5",
  5315. "symfony/deprecation-contracts": "^2.1|^3",
  5316. "symfony/polyfill-mbstring": "~1.0",
  5317. "symfony/polyfill-php73": "^1.9",
  5318. "symfony/polyfill-php80": "^1.16",
  5319. "symfony/service-contracts": "^1.1|^2|^3",
  5320. "symfony/string": "^5.1|^6.0"
  5321. },
  5322. "conflict": {
  5323. "psr/log": ">=3",
  5324. "symfony/dependency-injection": "<4.4",
  5325. "symfony/dotenv": "<5.1",
  5326. "symfony/event-dispatcher": "<4.4",
  5327. "symfony/lock": "<4.4",
  5328. "symfony/process": "<4.4"
  5329. },
  5330. "provide": {
  5331. "psr/log-implementation": "1.0|2.0"
  5332. },
  5333. "require-dev": {
  5334. "psr/log": "^1|^2",
  5335. "symfony/config": "^4.4|^5.0|^6.0",
  5336. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5337. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5338. "symfony/lock": "^4.4|^5.0|^6.0",
  5339. "symfony/process": "^4.4|^5.0|^6.0",
  5340. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5341. },
  5342. "suggest": {
  5343. "psr/log": "For using the console logger",
  5344. "symfony/event-dispatcher": "",
  5345. "symfony/lock": "",
  5346. "symfony/process": ""
  5347. },
  5348. "type": "library",
  5349. "autoload": {
  5350. "psr-4": {
  5351. "Symfony\\Component\\Console\\": ""
  5352. },
  5353. "exclude-from-classmap": [
  5354. "/Tests/"
  5355. ]
  5356. },
  5357. "notification-url": "https://packagist.org/downloads/",
  5358. "license": [
  5359. "MIT"
  5360. ],
  5361. "authors": [
  5362. {
  5363. "name": "Fabien Potencier",
  5364. "email": "fabien@symfony.com"
  5365. },
  5366. {
  5367. "name": "Symfony Community",
  5368. "homepage": "https://symfony.com/contributors"
  5369. }
  5370. ],
  5371. "description": "Eases the creation of beautiful and testable command line interfaces",
  5372. "homepage": "https://symfony.com",
  5373. "keywords": [
  5374. "cli",
  5375. "command-line",
  5376. "console",
  5377. "terminal"
  5378. ],
  5379. "support": {
  5380. "source": "https://github.com/symfony/console/tree/v5.4.47"
  5381. },
  5382. "funding": [
  5383. {
  5384. "url": "https://symfony.com/sponsor",
  5385. "type": "custom"
  5386. },
  5387. {
  5388. "url": "https://github.com/fabpot",
  5389. "type": "github"
  5390. },
  5391. {
  5392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5393. "type": "tidelift"
  5394. }
  5395. ],
  5396. "time": "2024-11-06T11:30:55+00:00"
  5397. },
  5398. {
  5399. "name": "symfony/css-selector",
  5400. "version": "v6.0.19",
  5401. "source": {
  5402. "type": "git",
  5403. "url": "https://github.com/symfony/css-selector.git",
  5404. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5405. },
  5406. "dist": {
  5407. "type": "zip",
  5408. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5409. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5410. "shasum": "",
  5411. "mirrors": [
  5412. {
  5413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5414. "preferred": true
  5415. }
  5416. ]
  5417. },
  5418. "require": {
  5419. "php": ">=8.0.2"
  5420. },
  5421. "type": "library",
  5422. "autoload": {
  5423. "psr-4": {
  5424. "Symfony\\Component\\CssSelector\\": ""
  5425. },
  5426. "exclude-from-classmap": [
  5427. "/Tests/"
  5428. ]
  5429. },
  5430. "notification-url": "https://packagist.org/downloads/",
  5431. "license": [
  5432. "MIT"
  5433. ],
  5434. "authors": [
  5435. {
  5436. "name": "Fabien Potencier",
  5437. "email": "fabien@symfony.com"
  5438. },
  5439. {
  5440. "name": "Jean-François Simon",
  5441. "email": "jeanfrancois.simon@sensiolabs.com"
  5442. },
  5443. {
  5444. "name": "Symfony Community",
  5445. "homepage": "https://symfony.com/contributors"
  5446. }
  5447. ],
  5448. "description": "Converts CSS selectors to XPath expressions",
  5449. "homepage": "https://symfony.com",
  5450. "support": {
  5451. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5452. },
  5453. "funding": [
  5454. {
  5455. "url": "https://symfony.com/sponsor",
  5456. "type": "custom"
  5457. },
  5458. {
  5459. "url": "https://github.com/fabpot",
  5460. "type": "github"
  5461. },
  5462. {
  5463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5464. "type": "tidelift"
  5465. }
  5466. ],
  5467. "time": "2023-01-01T08:36:10+00:00"
  5468. },
  5469. {
  5470. "name": "symfony/deprecation-contracts",
  5471. "version": "v3.0.2",
  5472. "source": {
  5473. "type": "git",
  5474. "url": "https://github.com/symfony/deprecation-contracts.git",
  5475. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5476. },
  5477. "dist": {
  5478. "type": "zip",
  5479. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5480. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5481. "shasum": "",
  5482. "mirrors": [
  5483. {
  5484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5485. "preferred": true
  5486. }
  5487. ]
  5488. },
  5489. "require": {
  5490. "php": ">=8.0.2"
  5491. },
  5492. "type": "library",
  5493. "extra": {
  5494. "thanks": {
  5495. "url": "https://github.com/symfony/contracts",
  5496. "name": "symfony/contracts"
  5497. },
  5498. "branch-alias": {
  5499. "dev-main": "3.0-dev"
  5500. }
  5501. },
  5502. "autoload": {
  5503. "files": [
  5504. "function.php"
  5505. ]
  5506. },
  5507. "notification-url": "https://packagist.org/downloads/",
  5508. "license": [
  5509. "MIT"
  5510. ],
  5511. "authors": [
  5512. {
  5513. "name": "Nicolas Grekas",
  5514. "email": "p@tchwork.com"
  5515. },
  5516. {
  5517. "name": "Symfony Community",
  5518. "homepage": "https://symfony.com/contributors"
  5519. }
  5520. ],
  5521. "description": "A generic function and convention to trigger deprecation notices",
  5522. "homepage": "https://symfony.com",
  5523. "support": {
  5524. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5525. },
  5526. "funding": [
  5527. {
  5528. "url": "https://symfony.com/sponsor",
  5529. "type": "custom"
  5530. },
  5531. {
  5532. "url": "https://github.com/fabpot",
  5533. "type": "github"
  5534. },
  5535. {
  5536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5537. "type": "tidelift"
  5538. }
  5539. ],
  5540. "time": "2022-01-02T09:55:41+00:00"
  5541. },
  5542. {
  5543. "name": "symfony/error-handler",
  5544. "version": "v5.4.46",
  5545. "source": {
  5546. "type": "git",
  5547. "url": "https://github.com/symfony/error-handler.git",
  5548. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5549. },
  5550. "dist": {
  5551. "type": "zip",
  5552. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5553. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5554. "shasum": "",
  5555. "mirrors": [
  5556. {
  5557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5558. "preferred": true
  5559. }
  5560. ]
  5561. },
  5562. "require": {
  5563. "php": ">=7.2.5",
  5564. "psr/log": "^1|^2|^3",
  5565. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5566. },
  5567. "require-dev": {
  5568. "symfony/deprecation-contracts": "^2.1|^3",
  5569. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5570. "symfony/serializer": "^4.4|^5.0|^6.0"
  5571. },
  5572. "bin": [
  5573. "Resources/bin/patch-type-declarations"
  5574. ],
  5575. "type": "library",
  5576. "autoload": {
  5577. "psr-4": {
  5578. "Symfony\\Component\\ErrorHandler\\": ""
  5579. },
  5580. "exclude-from-classmap": [
  5581. "/Tests/"
  5582. ]
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "MIT"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "Fabien Potencier",
  5591. "email": "fabien@symfony.com"
  5592. },
  5593. {
  5594. "name": "Symfony Community",
  5595. "homepage": "https://symfony.com/contributors"
  5596. }
  5597. ],
  5598. "description": "Provides tools to manage errors and ease debugging PHP code",
  5599. "homepage": "https://symfony.com",
  5600. "support": {
  5601. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5602. },
  5603. "funding": [
  5604. {
  5605. "url": "https://symfony.com/sponsor",
  5606. "type": "custom"
  5607. },
  5608. {
  5609. "url": "https://github.com/fabpot",
  5610. "type": "github"
  5611. },
  5612. {
  5613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5614. "type": "tidelift"
  5615. }
  5616. ],
  5617. "time": "2024-11-05T14:17:06+00:00"
  5618. },
  5619. {
  5620. "name": "symfony/event-dispatcher",
  5621. "version": "v6.0.19",
  5622. "source": {
  5623. "type": "git",
  5624. "url": "https://github.com/symfony/event-dispatcher.git",
  5625. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5626. },
  5627. "dist": {
  5628. "type": "zip",
  5629. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5630. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5631. "shasum": "",
  5632. "mirrors": [
  5633. {
  5634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5635. "preferred": true
  5636. }
  5637. ]
  5638. },
  5639. "require": {
  5640. "php": ">=8.0.2",
  5641. "symfony/event-dispatcher-contracts": "^2|^3"
  5642. },
  5643. "conflict": {
  5644. "symfony/dependency-injection": "<5.4"
  5645. },
  5646. "provide": {
  5647. "psr/event-dispatcher-implementation": "1.0",
  5648. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5649. },
  5650. "require-dev": {
  5651. "psr/log": "^1|^2|^3",
  5652. "symfony/config": "^5.4|^6.0",
  5653. "symfony/dependency-injection": "^5.4|^6.0",
  5654. "symfony/error-handler": "^5.4|^6.0",
  5655. "symfony/expression-language": "^5.4|^6.0",
  5656. "symfony/http-foundation": "^5.4|^6.0",
  5657. "symfony/service-contracts": "^1.1|^2|^3",
  5658. "symfony/stopwatch": "^5.4|^6.0"
  5659. },
  5660. "suggest": {
  5661. "symfony/dependency-injection": "",
  5662. "symfony/http-kernel": ""
  5663. },
  5664. "type": "library",
  5665. "autoload": {
  5666. "psr-4": {
  5667. "Symfony\\Component\\EventDispatcher\\": ""
  5668. },
  5669. "exclude-from-classmap": [
  5670. "/Tests/"
  5671. ]
  5672. },
  5673. "notification-url": "https://packagist.org/downloads/",
  5674. "license": [
  5675. "MIT"
  5676. ],
  5677. "authors": [
  5678. {
  5679. "name": "Fabien Potencier",
  5680. "email": "fabien@symfony.com"
  5681. },
  5682. {
  5683. "name": "Symfony Community",
  5684. "homepage": "https://symfony.com/contributors"
  5685. }
  5686. ],
  5687. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5688. "homepage": "https://symfony.com",
  5689. "support": {
  5690. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5691. },
  5692. "funding": [
  5693. {
  5694. "url": "https://symfony.com/sponsor",
  5695. "type": "custom"
  5696. },
  5697. {
  5698. "url": "https://github.com/fabpot",
  5699. "type": "github"
  5700. },
  5701. {
  5702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5703. "type": "tidelift"
  5704. }
  5705. ],
  5706. "time": "2023-01-01T08:36:10+00:00"
  5707. },
  5708. {
  5709. "name": "symfony/event-dispatcher-contracts",
  5710. "version": "v3.0.2",
  5711. "source": {
  5712. "type": "git",
  5713. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5714. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5715. },
  5716. "dist": {
  5717. "type": "zip",
  5718. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5719. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5720. "shasum": "",
  5721. "mirrors": [
  5722. {
  5723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5724. "preferred": true
  5725. }
  5726. ]
  5727. },
  5728. "require": {
  5729. "php": ">=8.0.2",
  5730. "psr/event-dispatcher": "^1"
  5731. },
  5732. "suggest": {
  5733. "symfony/event-dispatcher-implementation": ""
  5734. },
  5735. "type": "library",
  5736. "extra": {
  5737. "thanks": {
  5738. "url": "https://github.com/symfony/contracts",
  5739. "name": "symfony/contracts"
  5740. },
  5741. "branch-alias": {
  5742. "dev-main": "3.0-dev"
  5743. }
  5744. },
  5745. "autoload": {
  5746. "psr-4": {
  5747. "Symfony\\Contracts\\EventDispatcher\\": ""
  5748. }
  5749. },
  5750. "notification-url": "https://packagist.org/downloads/",
  5751. "license": [
  5752. "MIT"
  5753. ],
  5754. "authors": [
  5755. {
  5756. "name": "Nicolas Grekas",
  5757. "email": "p@tchwork.com"
  5758. },
  5759. {
  5760. "name": "Symfony Community",
  5761. "homepage": "https://symfony.com/contributors"
  5762. }
  5763. ],
  5764. "description": "Generic abstractions related to dispatching event",
  5765. "homepage": "https://symfony.com",
  5766. "keywords": [
  5767. "abstractions",
  5768. "contracts",
  5769. "decoupling",
  5770. "interfaces",
  5771. "interoperability",
  5772. "standards"
  5773. ],
  5774. "support": {
  5775. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5776. },
  5777. "funding": [
  5778. {
  5779. "url": "https://symfony.com/sponsor",
  5780. "type": "custom"
  5781. },
  5782. {
  5783. "url": "https://github.com/fabpot",
  5784. "type": "github"
  5785. },
  5786. {
  5787. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5788. "type": "tidelift"
  5789. }
  5790. ],
  5791. "time": "2022-01-02T09:55:41+00:00"
  5792. },
  5793. {
  5794. "name": "symfony/finder",
  5795. "version": "v5.4.45",
  5796. "source": {
  5797. "type": "git",
  5798. "url": "https://github.com/symfony/finder.git",
  5799. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  5800. },
  5801. "dist": {
  5802. "type": "zip",
  5803. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  5804. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  5805. "shasum": "",
  5806. "mirrors": [
  5807. {
  5808. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5809. "preferred": true
  5810. }
  5811. ]
  5812. },
  5813. "require": {
  5814. "php": ">=7.2.5",
  5815. "symfony/deprecation-contracts": "^2.1|^3",
  5816. "symfony/polyfill-php80": "^1.16"
  5817. },
  5818. "type": "library",
  5819. "autoload": {
  5820. "psr-4": {
  5821. "Symfony\\Component\\Finder\\": ""
  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": "Fabien Potencier",
  5834. "email": "fabien@symfony.com"
  5835. },
  5836. {
  5837. "name": "Symfony Community",
  5838. "homepage": "https://symfony.com/contributors"
  5839. }
  5840. ],
  5841. "description": "Finds files and directories via an intuitive fluent interface",
  5842. "homepage": "https://symfony.com",
  5843. "support": {
  5844. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  5845. },
  5846. "funding": [
  5847. {
  5848. "url": "https://symfony.com/sponsor",
  5849. "type": "custom"
  5850. },
  5851. {
  5852. "url": "https://github.com/fabpot",
  5853. "type": "github"
  5854. },
  5855. {
  5856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5857. "type": "tidelift"
  5858. }
  5859. ],
  5860. "time": "2024-09-28T13:32:08+00:00"
  5861. },
  5862. {
  5863. "name": "symfony/http-foundation",
  5864. "version": "v5.4.48",
  5865. "source": {
  5866. "type": "git",
  5867. "url": "https://github.com/symfony/http-foundation.git",
  5868. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341"
  5869. },
  5870. "dist": {
  5871. "type": "zip",
  5872. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341",
  5873. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341",
  5874. "shasum": "",
  5875. "mirrors": [
  5876. {
  5877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5878. "preferred": true
  5879. }
  5880. ]
  5881. },
  5882. "require": {
  5883. "php": ">=7.2.5",
  5884. "symfony/deprecation-contracts": "^2.1|^3",
  5885. "symfony/polyfill-mbstring": "~1.1",
  5886. "symfony/polyfill-php80": "^1.16"
  5887. },
  5888. "require-dev": {
  5889. "predis/predis": "^1.0|^2.0",
  5890. "symfony/cache": "^4.4|^5.0|^6.0",
  5891. "symfony/dependency-injection": "^5.4|^6.0",
  5892. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5893. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5894. "symfony/mime": "^4.4|^5.0|^6.0",
  5895. "symfony/rate-limiter": "^5.2|^6.0"
  5896. },
  5897. "suggest": {
  5898. "symfony/mime": "To use the file extension guesser"
  5899. },
  5900. "type": "library",
  5901. "autoload": {
  5902. "psr-4": {
  5903. "Symfony\\Component\\HttpFoundation\\": ""
  5904. },
  5905. "exclude-from-classmap": [
  5906. "/Tests/"
  5907. ]
  5908. },
  5909. "notification-url": "https://packagist.org/downloads/",
  5910. "license": [
  5911. "MIT"
  5912. ],
  5913. "authors": [
  5914. {
  5915. "name": "Fabien Potencier",
  5916. "email": "fabien@symfony.com"
  5917. },
  5918. {
  5919. "name": "Symfony Community",
  5920. "homepage": "https://symfony.com/contributors"
  5921. }
  5922. ],
  5923. "description": "Defines an object-oriented layer for the HTTP specification",
  5924. "homepage": "https://symfony.com",
  5925. "support": {
  5926. "source": "https://github.com/symfony/http-foundation/tree/v5.4.48"
  5927. },
  5928. "funding": [
  5929. {
  5930. "url": "https://symfony.com/sponsor",
  5931. "type": "custom"
  5932. },
  5933. {
  5934. "url": "https://github.com/fabpot",
  5935. "type": "github"
  5936. },
  5937. {
  5938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5939. "type": "tidelift"
  5940. }
  5941. ],
  5942. "time": "2024-11-13T18:58:02+00:00"
  5943. },
  5944. {
  5945. "name": "symfony/http-kernel",
  5946. "version": "v5.4.48",
  5947. "source": {
  5948. "type": "git",
  5949. "url": "https://github.com/symfony/http-kernel.git",
  5950. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0"
  5951. },
  5952. "dist": {
  5953. "type": "zip",
  5954. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  5955. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  5956. "shasum": "",
  5957. "mirrors": [
  5958. {
  5959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5960. "preferred": true
  5961. }
  5962. ]
  5963. },
  5964. "require": {
  5965. "php": ">=7.2.5",
  5966. "psr/log": "^1|^2",
  5967. "symfony/deprecation-contracts": "^2.1|^3",
  5968. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5969. "symfony/event-dispatcher": "^5.0|^6.0",
  5970. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5971. "symfony/polyfill-ctype": "^1.8",
  5972. "symfony/polyfill-php73": "^1.9",
  5973. "symfony/polyfill-php80": "^1.16"
  5974. },
  5975. "conflict": {
  5976. "symfony/browser-kit": "<5.4",
  5977. "symfony/cache": "<5.0",
  5978. "symfony/config": "<5.0",
  5979. "symfony/console": "<4.4",
  5980. "symfony/dependency-injection": "<5.3",
  5981. "symfony/doctrine-bridge": "<5.0",
  5982. "symfony/form": "<5.0",
  5983. "symfony/http-client": "<5.0",
  5984. "symfony/mailer": "<5.0",
  5985. "symfony/messenger": "<5.0",
  5986. "symfony/translation": "<5.0",
  5987. "symfony/twig-bridge": "<5.0",
  5988. "symfony/validator": "<5.0",
  5989. "twig/twig": "<2.13"
  5990. },
  5991. "provide": {
  5992. "psr/log-implementation": "1.0|2.0"
  5993. },
  5994. "require-dev": {
  5995. "psr/cache": "^1.0|^2.0|^3.0",
  5996. "symfony/browser-kit": "^5.4|^6.0",
  5997. "symfony/config": "^5.0|^6.0",
  5998. "symfony/console": "^4.4|^5.0|^6.0",
  5999. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6000. "symfony/dependency-injection": "^5.3|^6.0",
  6001. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6002. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6003. "symfony/finder": "^4.4|^5.0|^6.0",
  6004. "symfony/http-client-contracts": "^1.1|^2|^3",
  6005. "symfony/process": "^4.4|^5.0|^6.0",
  6006. "symfony/routing": "^4.4|^5.0|^6.0",
  6007. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6008. "symfony/translation": "^4.4|^5.0|^6.0",
  6009. "symfony/translation-contracts": "^1.1|^2|^3",
  6010. "symfony/var-dumper": "^4.4.31|^5.4",
  6011. "twig/twig": "^2.13|^3.0.4"
  6012. },
  6013. "suggest": {
  6014. "symfony/browser-kit": "",
  6015. "symfony/config": "",
  6016. "symfony/console": "",
  6017. "symfony/dependency-injection": ""
  6018. },
  6019. "type": "library",
  6020. "autoload": {
  6021. "psr-4": {
  6022. "Symfony\\Component\\HttpKernel\\": ""
  6023. },
  6024. "exclude-from-classmap": [
  6025. "/Tests/"
  6026. ]
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "MIT"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "Fabien Potencier",
  6035. "email": "fabien@symfony.com"
  6036. },
  6037. {
  6038. "name": "Symfony Community",
  6039. "homepage": "https://symfony.com/contributors"
  6040. }
  6041. ],
  6042. "description": "Provides a structured process for converting a Request into a Response",
  6043. "homepage": "https://symfony.com",
  6044. "support": {
  6045. "source": "https://github.com/symfony/http-kernel/tree/v5.4.48"
  6046. },
  6047. "funding": [
  6048. {
  6049. "url": "https://symfony.com/sponsor",
  6050. "type": "custom"
  6051. },
  6052. {
  6053. "url": "https://github.com/fabpot",
  6054. "type": "github"
  6055. },
  6056. {
  6057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6058. "type": "tidelift"
  6059. }
  6060. ],
  6061. "time": "2024-11-27T12:43:17+00:00"
  6062. },
  6063. {
  6064. "name": "symfony/mime",
  6065. "version": "v5.4.45",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/symfony/mime.git",
  6069. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  6074. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  6075. "shasum": "",
  6076. "mirrors": [
  6077. {
  6078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6079. "preferred": true
  6080. }
  6081. ]
  6082. },
  6083. "require": {
  6084. "php": ">=7.2.5",
  6085. "symfony/deprecation-contracts": "^2.1|^3",
  6086. "symfony/polyfill-intl-idn": "^1.10",
  6087. "symfony/polyfill-mbstring": "^1.0",
  6088. "symfony/polyfill-php80": "^1.16"
  6089. },
  6090. "conflict": {
  6091. "egulias/email-validator": "~3.0.0",
  6092. "phpdocumentor/reflection-docblock": "<3.2.2",
  6093. "phpdocumentor/type-resolver": "<1.4.0",
  6094. "symfony/mailer": "<4.4",
  6095. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6096. },
  6097. "require-dev": {
  6098. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6099. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6100. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6101. "symfony/process": "^5.4|^6.4",
  6102. "symfony/property-access": "^4.4|^5.1|^6.0",
  6103. "symfony/property-info": "^4.4|^5.1|^6.0",
  6104. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6105. },
  6106. "type": "library",
  6107. "autoload": {
  6108. "psr-4": {
  6109. "Symfony\\Component\\Mime\\": ""
  6110. },
  6111. "exclude-from-classmap": [
  6112. "/Tests/"
  6113. ]
  6114. },
  6115. "notification-url": "https://packagist.org/downloads/",
  6116. "license": [
  6117. "MIT"
  6118. ],
  6119. "authors": [
  6120. {
  6121. "name": "Fabien Potencier",
  6122. "email": "fabien@symfony.com"
  6123. },
  6124. {
  6125. "name": "Symfony Community",
  6126. "homepage": "https://symfony.com/contributors"
  6127. }
  6128. ],
  6129. "description": "Allows manipulating MIME messages",
  6130. "homepage": "https://symfony.com",
  6131. "keywords": [
  6132. "mime",
  6133. "mime-type"
  6134. ],
  6135. "support": {
  6136. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  6137. },
  6138. "funding": [
  6139. {
  6140. "url": "https://symfony.com/sponsor",
  6141. "type": "custom"
  6142. },
  6143. {
  6144. "url": "https://github.com/fabpot",
  6145. "type": "github"
  6146. },
  6147. {
  6148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6149. "type": "tidelift"
  6150. }
  6151. ],
  6152. "time": "2024-10-23T20:18:32+00:00"
  6153. },
  6154. {
  6155. "name": "symfony/polyfill-ctype",
  6156. "version": "v1.32.0",
  6157. "source": {
  6158. "type": "git",
  6159. "url": "https://github.com/symfony/polyfill-ctype.git",
  6160. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6161. },
  6162. "dist": {
  6163. "type": "zip",
  6164. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6165. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6166. "shasum": "",
  6167. "mirrors": [
  6168. {
  6169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6170. "preferred": true
  6171. }
  6172. ]
  6173. },
  6174. "require": {
  6175. "php": ">=7.2"
  6176. },
  6177. "provide": {
  6178. "ext-ctype": "*"
  6179. },
  6180. "suggest": {
  6181. "ext-ctype": "For best performance"
  6182. },
  6183. "type": "library",
  6184. "extra": {
  6185. "thanks": {
  6186. "url": "https://github.com/symfony/polyfill",
  6187. "name": "symfony/polyfill"
  6188. }
  6189. },
  6190. "autoload": {
  6191. "files": [
  6192. "bootstrap.php"
  6193. ],
  6194. "psr-4": {
  6195. "Symfony\\Polyfill\\Ctype\\": ""
  6196. }
  6197. },
  6198. "notification-url": "https://packagist.org/downloads/",
  6199. "license": [
  6200. "MIT"
  6201. ],
  6202. "authors": [
  6203. {
  6204. "name": "Gert de Pagter",
  6205. "email": "BackEndTea@gmail.com"
  6206. },
  6207. {
  6208. "name": "Symfony Community",
  6209. "homepage": "https://symfony.com/contributors"
  6210. }
  6211. ],
  6212. "description": "Symfony polyfill for ctype functions",
  6213. "homepage": "https://symfony.com",
  6214. "keywords": [
  6215. "compatibility",
  6216. "ctype",
  6217. "polyfill",
  6218. "portable"
  6219. ],
  6220. "support": {
  6221. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6222. },
  6223. "funding": [
  6224. {
  6225. "url": "https://symfony.com/sponsor",
  6226. "type": "custom"
  6227. },
  6228. {
  6229. "url": "https://github.com/fabpot",
  6230. "type": "github"
  6231. },
  6232. {
  6233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6234. "type": "tidelift"
  6235. }
  6236. ],
  6237. "time": "2024-09-09T11:45:10+00:00"
  6238. },
  6239. {
  6240. "name": "symfony/polyfill-iconv",
  6241. "version": "v1.32.0",
  6242. "source": {
  6243. "type": "git",
  6244. "url": "https://github.com/symfony/polyfill-iconv.git",
  6245. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  6246. },
  6247. "dist": {
  6248. "type": "zip",
  6249. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6250. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6251. "shasum": "",
  6252. "mirrors": [
  6253. {
  6254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6255. "preferred": true
  6256. }
  6257. ]
  6258. },
  6259. "require": {
  6260. "php": ">=7.2"
  6261. },
  6262. "provide": {
  6263. "ext-iconv": "*"
  6264. },
  6265. "suggest": {
  6266. "ext-iconv": "For best performance"
  6267. },
  6268. "type": "library",
  6269. "extra": {
  6270. "thanks": {
  6271. "url": "https://github.com/symfony/polyfill",
  6272. "name": "symfony/polyfill"
  6273. }
  6274. },
  6275. "autoload": {
  6276. "files": [
  6277. "bootstrap.php"
  6278. ],
  6279. "psr-4": {
  6280. "Symfony\\Polyfill\\Iconv\\": ""
  6281. }
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "MIT"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Nicolas Grekas",
  6290. "email": "p@tchwork.com"
  6291. },
  6292. {
  6293. "name": "Symfony Community",
  6294. "homepage": "https://symfony.com/contributors"
  6295. }
  6296. ],
  6297. "description": "Symfony polyfill for the Iconv extension",
  6298. "homepage": "https://symfony.com",
  6299. "keywords": [
  6300. "compatibility",
  6301. "iconv",
  6302. "polyfill",
  6303. "portable",
  6304. "shim"
  6305. ],
  6306. "support": {
  6307. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  6308. },
  6309. "funding": [
  6310. {
  6311. "url": "https://symfony.com/sponsor",
  6312. "type": "custom"
  6313. },
  6314. {
  6315. "url": "https://github.com/fabpot",
  6316. "type": "github"
  6317. },
  6318. {
  6319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6320. "type": "tidelift"
  6321. }
  6322. ],
  6323. "time": "2024-09-17T14:58:18+00:00"
  6324. },
  6325. {
  6326. "name": "symfony/polyfill-intl-grapheme",
  6327. "version": "v1.32.0",
  6328. "source": {
  6329. "type": "git",
  6330. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6331. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6332. },
  6333. "dist": {
  6334. "type": "zip",
  6335. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6336. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6337. "shasum": "",
  6338. "mirrors": [
  6339. {
  6340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6341. "preferred": true
  6342. }
  6343. ]
  6344. },
  6345. "require": {
  6346. "php": ">=7.2"
  6347. },
  6348. "suggest": {
  6349. "ext-intl": "For best performance"
  6350. },
  6351. "type": "library",
  6352. "extra": {
  6353. "thanks": {
  6354. "url": "https://github.com/symfony/polyfill",
  6355. "name": "symfony/polyfill"
  6356. }
  6357. },
  6358. "autoload": {
  6359. "files": [
  6360. "bootstrap.php"
  6361. ],
  6362. "psr-4": {
  6363. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6364. }
  6365. },
  6366. "notification-url": "https://packagist.org/downloads/",
  6367. "license": [
  6368. "MIT"
  6369. ],
  6370. "authors": [
  6371. {
  6372. "name": "Nicolas Grekas",
  6373. "email": "p@tchwork.com"
  6374. },
  6375. {
  6376. "name": "Symfony Community",
  6377. "homepage": "https://symfony.com/contributors"
  6378. }
  6379. ],
  6380. "description": "Symfony polyfill for intl's grapheme_* functions",
  6381. "homepage": "https://symfony.com",
  6382. "keywords": [
  6383. "compatibility",
  6384. "grapheme",
  6385. "intl",
  6386. "polyfill",
  6387. "portable",
  6388. "shim"
  6389. ],
  6390. "support": {
  6391. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  6392. },
  6393. "funding": [
  6394. {
  6395. "url": "https://symfony.com/sponsor",
  6396. "type": "custom"
  6397. },
  6398. {
  6399. "url": "https://github.com/fabpot",
  6400. "type": "github"
  6401. },
  6402. {
  6403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6404. "type": "tidelift"
  6405. }
  6406. ],
  6407. "time": "2024-09-09T11:45:10+00:00"
  6408. },
  6409. {
  6410. "name": "symfony/polyfill-intl-idn",
  6411. "version": "v1.32.0",
  6412. "source": {
  6413. "type": "git",
  6414. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6415. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6416. },
  6417. "dist": {
  6418. "type": "zip",
  6419. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6420. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6421. "shasum": "",
  6422. "mirrors": [
  6423. {
  6424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6425. "preferred": true
  6426. }
  6427. ]
  6428. },
  6429. "require": {
  6430. "php": ">=7.2",
  6431. "symfony/polyfill-intl-normalizer": "^1.10"
  6432. },
  6433. "suggest": {
  6434. "ext-intl": "For best performance"
  6435. },
  6436. "type": "library",
  6437. "extra": {
  6438. "thanks": {
  6439. "url": "https://github.com/symfony/polyfill",
  6440. "name": "symfony/polyfill"
  6441. }
  6442. },
  6443. "autoload": {
  6444. "files": [
  6445. "bootstrap.php"
  6446. ],
  6447. "psr-4": {
  6448. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6449. }
  6450. },
  6451. "notification-url": "https://packagist.org/downloads/",
  6452. "license": [
  6453. "MIT"
  6454. ],
  6455. "authors": [
  6456. {
  6457. "name": "Laurent Bassin",
  6458. "email": "laurent@bassin.info"
  6459. },
  6460. {
  6461. "name": "Trevor Rowbotham",
  6462. "email": "trevor.rowbotham@pm.me"
  6463. },
  6464. {
  6465. "name": "Symfony Community",
  6466. "homepage": "https://symfony.com/contributors"
  6467. }
  6468. ],
  6469. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6470. "homepage": "https://symfony.com",
  6471. "keywords": [
  6472. "compatibility",
  6473. "idn",
  6474. "intl",
  6475. "polyfill",
  6476. "portable",
  6477. "shim"
  6478. ],
  6479. "support": {
  6480. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6481. },
  6482. "funding": [
  6483. {
  6484. "url": "https://symfony.com/sponsor",
  6485. "type": "custom"
  6486. },
  6487. {
  6488. "url": "https://github.com/fabpot",
  6489. "type": "github"
  6490. },
  6491. {
  6492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6493. "type": "tidelift"
  6494. }
  6495. ],
  6496. "time": "2024-09-10T14:38:51+00:00"
  6497. },
  6498. {
  6499. "name": "symfony/polyfill-intl-normalizer",
  6500. "version": "v1.32.0",
  6501. "source": {
  6502. "type": "git",
  6503. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6504. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6505. },
  6506. "dist": {
  6507. "type": "zip",
  6508. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6509. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6510. "shasum": "",
  6511. "mirrors": [
  6512. {
  6513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6514. "preferred": true
  6515. }
  6516. ]
  6517. },
  6518. "require": {
  6519. "php": ">=7.2"
  6520. },
  6521. "suggest": {
  6522. "ext-intl": "For best performance"
  6523. },
  6524. "type": "library",
  6525. "extra": {
  6526. "thanks": {
  6527. "url": "https://github.com/symfony/polyfill",
  6528. "name": "symfony/polyfill"
  6529. }
  6530. },
  6531. "autoload": {
  6532. "files": [
  6533. "bootstrap.php"
  6534. ],
  6535. "psr-4": {
  6536. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6537. },
  6538. "classmap": [
  6539. "Resources/stubs"
  6540. ]
  6541. },
  6542. "notification-url": "https://packagist.org/downloads/",
  6543. "license": [
  6544. "MIT"
  6545. ],
  6546. "authors": [
  6547. {
  6548. "name": "Nicolas Grekas",
  6549. "email": "p@tchwork.com"
  6550. },
  6551. {
  6552. "name": "Symfony Community",
  6553. "homepage": "https://symfony.com/contributors"
  6554. }
  6555. ],
  6556. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6557. "homepage": "https://symfony.com",
  6558. "keywords": [
  6559. "compatibility",
  6560. "intl",
  6561. "normalizer",
  6562. "polyfill",
  6563. "portable",
  6564. "shim"
  6565. ],
  6566. "support": {
  6567. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6568. },
  6569. "funding": [
  6570. {
  6571. "url": "https://symfony.com/sponsor",
  6572. "type": "custom"
  6573. },
  6574. {
  6575. "url": "https://github.com/fabpot",
  6576. "type": "github"
  6577. },
  6578. {
  6579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6580. "type": "tidelift"
  6581. }
  6582. ],
  6583. "time": "2024-09-09T11:45:10+00:00"
  6584. },
  6585. {
  6586. "name": "symfony/polyfill-mbstring",
  6587. "version": "v1.32.0",
  6588. "source": {
  6589. "type": "git",
  6590. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6591. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6592. },
  6593. "dist": {
  6594. "type": "zip",
  6595. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6596. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6597. "shasum": "",
  6598. "mirrors": [
  6599. {
  6600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6601. "preferred": true
  6602. }
  6603. ]
  6604. },
  6605. "require": {
  6606. "ext-iconv": "*",
  6607. "php": ">=7.2"
  6608. },
  6609. "provide": {
  6610. "ext-mbstring": "*"
  6611. },
  6612. "suggest": {
  6613. "ext-mbstring": "For best performance"
  6614. },
  6615. "type": "library",
  6616. "extra": {
  6617. "thanks": {
  6618. "url": "https://github.com/symfony/polyfill",
  6619. "name": "symfony/polyfill"
  6620. }
  6621. },
  6622. "autoload": {
  6623. "files": [
  6624. "bootstrap.php"
  6625. ],
  6626. "psr-4": {
  6627. "Symfony\\Polyfill\\Mbstring\\": ""
  6628. }
  6629. },
  6630. "notification-url": "https://packagist.org/downloads/",
  6631. "license": [
  6632. "MIT"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "Nicolas Grekas",
  6637. "email": "p@tchwork.com"
  6638. },
  6639. {
  6640. "name": "Symfony Community",
  6641. "homepage": "https://symfony.com/contributors"
  6642. }
  6643. ],
  6644. "description": "Symfony polyfill for the Mbstring extension",
  6645. "homepage": "https://symfony.com",
  6646. "keywords": [
  6647. "compatibility",
  6648. "mbstring",
  6649. "polyfill",
  6650. "portable",
  6651. "shim"
  6652. ],
  6653. "support": {
  6654. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6655. },
  6656. "funding": [
  6657. {
  6658. "url": "https://symfony.com/sponsor",
  6659. "type": "custom"
  6660. },
  6661. {
  6662. "url": "https://github.com/fabpot",
  6663. "type": "github"
  6664. },
  6665. {
  6666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6667. "type": "tidelift"
  6668. }
  6669. ],
  6670. "time": "2024-12-23T08:48:59+00:00"
  6671. },
  6672. {
  6673. "name": "symfony/polyfill-php73",
  6674. "version": "v1.32.0",
  6675. "source": {
  6676. "type": "git",
  6677. "url": "https://github.com/symfony/polyfill-php73.git",
  6678. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6679. },
  6680. "dist": {
  6681. "type": "zip",
  6682. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6683. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6684. "shasum": "",
  6685. "mirrors": [
  6686. {
  6687. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6688. "preferred": true
  6689. }
  6690. ]
  6691. },
  6692. "require": {
  6693. "php": ">=7.2"
  6694. },
  6695. "type": "library",
  6696. "extra": {
  6697. "thanks": {
  6698. "url": "https://github.com/symfony/polyfill",
  6699. "name": "symfony/polyfill"
  6700. }
  6701. },
  6702. "autoload": {
  6703. "files": [
  6704. "bootstrap.php"
  6705. ],
  6706. "psr-4": {
  6707. "Symfony\\Polyfill\\Php73\\": ""
  6708. },
  6709. "classmap": [
  6710. "Resources/stubs"
  6711. ]
  6712. },
  6713. "notification-url": "https://packagist.org/downloads/",
  6714. "license": [
  6715. "MIT"
  6716. ],
  6717. "authors": [
  6718. {
  6719. "name": "Nicolas Grekas",
  6720. "email": "p@tchwork.com"
  6721. },
  6722. {
  6723. "name": "Symfony Community",
  6724. "homepage": "https://symfony.com/contributors"
  6725. }
  6726. ],
  6727. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6728. "homepage": "https://symfony.com",
  6729. "keywords": [
  6730. "compatibility",
  6731. "polyfill",
  6732. "portable",
  6733. "shim"
  6734. ],
  6735. "support": {
  6736. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  6737. },
  6738. "funding": [
  6739. {
  6740. "url": "https://symfony.com/sponsor",
  6741. "type": "custom"
  6742. },
  6743. {
  6744. "url": "https://github.com/fabpot",
  6745. "type": "github"
  6746. },
  6747. {
  6748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6749. "type": "tidelift"
  6750. }
  6751. ],
  6752. "time": "2024-09-09T11:45:10+00:00"
  6753. },
  6754. {
  6755. "name": "symfony/polyfill-php80",
  6756. "version": "v1.32.0",
  6757. "source": {
  6758. "type": "git",
  6759. "url": "https://github.com/symfony/polyfill-php80.git",
  6760. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6761. },
  6762. "dist": {
  6763. "type": "zip",
  6764. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6765. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6766. "shasum": "",
  6767. "mirrors": [
  6768. {
  6769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6770. "preferred": true
  6771. }
  6772. ]
  6773. },
  6774. "require": {
  6775. "php": ">=7.2"
  6776. },
  6777. "type": "library",
  6778. "extra": {
  6779. "thanks": {
  6780. "url": "https://github.com/symfony/polyfill",
  6781. "name": "symfony/polyfill"
  6782. }
  6783. },
  6784. "autoload": {
  6785. "files": [
  6786. "bootstrap.php"
  6787. ],
  6788. "psr-4": {
  6789. "Symfony\\Polyfill\\Php80\\": ""
  6790. },
  6791. "classmap": [
  6792. "Resources/stubs"
  6793. ]
  6794. },
  6795. "notification-url": "https://packagist.org/downloads/",
  6796. "license": [
  6797. "MIT"
  6798. ],
  6799. "authors": [
  6800. {
  6801. "name": "Ion Bazan",
  6802. "email": "ion.bazan@gmail.com"
  6803. },
  6804. {
  6805. "name": "Nicolas Grekas",
  6806. "email": "p@tchwork.com"
  6807. },
  6808. {
  6809. "name": "Symfony Community",
  6810. "homepage": "https://symfony.com/contributors"
  6811. }
  6812. ],
  6813. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6814. "homepage": "https://symfony.com",
  6815. "keywords": [
  6816. "compatibility",
  6817. "polyfill",
  6818. "portable",
  6819. "shim"
  6820. ],
  6821. "support": {
  6822. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  6823. },
  6824. "funding": [
  6825. {
  6826. "url": "https://symfony.com/sponsor",
  6827. "type": "custom"
  6828. },
  6829. {
  6830. "url": "https://github.com/fabpot",
  6831. "type": "github"
  6832. },
  6833. {
  6834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6835. "type": "tidelift"
  6836. }
  6837. ],
  6838. "time": "2025-01-02T08:10:11+00:00"
  6839. },
  6840. {
  6841. "name": "symfony/polyfill-php81",
  6842. "version": "v1.32.0",
  6843. "source": {
  6844. "type": "git",
  6845. "url": "https://github.com/symfony/polyfill-php81.git",
  6846. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6847. },
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6851. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6852. "shasum": "",
  6853. "mirrors": [
  6854. {
  6855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6856. "preferred": true
  6857. }
  6858. ]
  6859. },
  6860. "require": {
  6861. "php": ">=7.2"
  6862. },
  6863. "type": "library",
  6864. "extra": {
  6865. "thanks": {
  6866. "url": "https://github.com/symfony/polyfill",
  6867. "name": "symfony/polyfill"
  6868. }
  6869. },
  6870. "autoload": {
  6871. "files": [
  6872. "bootstrap.php"
  6873. ],
  6874. "psr-4": {
  6875. "Symfony\\Polyfill\\Php81\\": ""
  6876. },
  6877. "classmap": [
  6878. "Resources/stubs"
  6879. ]
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Nicolas Grekas",
  6888. "email": "p@tchwork.com"
  6889. },
  6890. {
  6891. "name": "Symfony Community",
  6892. "homepage": "https://symfony.com/contributors"
  6893. }
  6894. ],
  6895. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6896. "homepage": "https://symfony.com",
  6897. "keywords": [
  6898. "compatibility",
  6899. "polyfill",
  6900. "portable",
  6901. "shim"
  6902. ],
  6903. "support": {
  6904. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  6905. },
  6906. "funding": [
  6907. {
  6908. "url": "https://symfony.com/sponsor",
  6909. "type": "custom"
  6910. },
  6911. {
  6912. "url": "https://github.com/fabpot",
  6913. "type": "github"
  6914. },
  6915. {
  6916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6917. "type": "tidelift"
  6918. }
  6919. ],
  6920. "time": "2024-09-09T11:45:10+00:00"
  6921. },
  6922. {
  6923. "name": "symfony/process",
  6924. "version": "v5.4.47",
  6925. "source": {
  6926. "type": "git",
  6927. "url": "https://github.com/symfony/process.git",
  6928. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  6929. },
  6930. "dist": {
  6931. "type": "zip",
  6932. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  6933. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  6934. "shasum": "",
  6935. "mirrors": [
  6936. {
  6937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6938. "preferred": true
  6939. }
  6940. ]
  6941. },
  6942. "require": {
  6943. "php": ">=7.2.5",
  6944. "symfony/polyfill-php80": "^1.16"
  6945. },
  6946. "type": "library",
  6947. "autoload": {
  6948. "psr-4": {
  6949. "Symfony\\Component\\Process\\": ""
  6950. },
  6951. "exclude-from-classmap": [
  6952. "/Tests/"
  6953. ]
  6954. },
  6955. "notification-url": "https://packagist.org/downloads/",
  6956. "license": [
  6957. "MIT"
  6958. ],
  6959. "authors": [
  6960. {
  6961. "name": "Fabien Potencier",
  6962. "email": "fabien@symfony.com"
  6963. },
  6964. {
  6965. "name": "Symfony Community",
  6966. "homepage": "https://symfony.com/contributors"
  6967. }
  6968. ],
  6969. "description": "Executes commands in sub-processes",
  6970. "homepage": "https://symfony.com",
  6971. "support": {
  6972. "source": "https://github.com/symfony/process/tree/v5.4.47"
  6973. },
  6974. "funding": [
  6975. {
  6976. "url": "https://symfony.com/sponsor",
  6977. "type": "custom"
  6978. },
  6979. {
  6980. "url": "https://github.com/fabpot",
  6981. "type": "github"
  6982. },
  6983. {
  6984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6985. "type": "tidelift"
  6986. }
  6987. ],
  6988. "time": "2024-11-06T11:36:42+00:00"
  6989. },
  6990. {
  6991. "name": "symfony/routing",
  6992. "version": "v5.4.48",
  6993. "source": {
  6994. "type": "git",
  6995. "url": "https://github.com/symfony/routing.git",
  6996. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  6997. },
  6998. "dist": {
  6999. "type": "zip",
  7000. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7001. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7002. "shasum": "",
  7003. "mirrors": [
  7004. {
  7005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7006. "preferred": true
  7007. }
  7008. ]
  7009. },
  7010. "require": {
  7011. "php": ">=7.2.5",
  7012. "symfony/deprecation-contracts": "^2.1|^3",
  7013. "symfony/polyfill-php80": "^1.16"
  7014. },
  7015. "conflict": {
  7016. "doctrine/annotations": "<1.12",
  7017. "symfony/config": "<5.3",
  7018. "symfony/dependency-injection": "<4.4",
  7019. "symfony/yaml": "<4.4"
  7020. },
  7021. "require-dev": {
  7022. "doctrine/annotations": "^1.12|^2",
  7023. "psr/log": "^1|^2|^3",
  7024. "symfony/config": "^5.3|^6.0",
  7025. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7026. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7027. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7028. "symfony/yaml": "^4.4|^5.0|^6.0"
  7029. },
  7030. "suggest": {
  7031. "symfony/config": "For using the all-in-one router or any loader",
  7032. "symfony/expression-language": "For using expression matching",
  7033. "symfony/http-foundation": "For using a Symfony Request object",
  7034. "symfony/yaml": "For using the YAML loader"
  7035. },
  7036. "type": "library",
  7037. "autoload": {
  7038. "psr-4": {
  7039. "Symfony\\Component\\Routing\\": ""
  7040. },
  7041. "exclude-from-classmap": [
  7042. "/Tests/"
  7043. ]
  7044. },
  7045. "notification-url": "https://packagist.org/downloads/",
  7046. "license": [
  7047. "MIT"
  7048. ],
  7049. "authors": [
  7050. {
  7051. "name": "Fabien Potencier",
  7052. "email": "fabien@symfony.com"
  7053. },
  7054. {
  7055. "name": "Symfony Community",
  7056. "homepage": "https://symfony.com/contributors"
  7057. }
  7058. ],
  7059. "description": "Maps an HTTP request to a set of configuration variables",
  7060. "homepage": "https://symfony.com",
  7061. "keywords": [
  7062. "router",
  7063. "routing",
  7064. "uri",
  7065. "url"
  7066. ],
  7067. "support": {
  7068. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  7069. },
  7070. "funding": [
  7071. {
  7072. "url": "https://symfony.com/sponsor",
  7073. "type": "custom"
  7074. },
  7075. {
  7076. "url": "https://github.com/fabpot",
  7077. "type": "github"
  7078. },
  7079. {
  7080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7081. "type": "tidelift"
  7082. }
  7083. ],
  7084. "time": "2024-11-12T18:20:21+00:00"
  7085. },
  7086. {
  7087. "name": "symfony/service-contracts",
  7088. "version": "v2.5.4",
  7089. "source": {
  7090. "type": "git",
  7091. "url": "https://github.com/symfony/service-contracts.git",
  7092. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  7093. },
  7094. "dist": {
  7095. "type": "zip",
  7096. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  7097. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  7098. "shasum": "",
  7099. "mirrors": [
  7100. {
  7101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7102. "preferred": true
  7103. }
  7104. ]
  7105. },
  7106. "require": {
  7107. "php": ">=7.2.5",
  7108. "psr/container": "^1.1",
  7109. "symfony/deprecation-contracts": "^2.1|^3"
  7110. },
  7111. "conflict": {
  7112. "ext-psr": "<1.1|>=2"
  7113. },
  7114. "suggest": {
  7115. "symfony/service-implementation": ""
  7116. },
  7117. "type": "library",
  7118. "extra": {
  7119. "thanks": {
  7120. "url": "https://github.com/symfony/contracts",
  7121. "name": "symfony/contracts"
  7122. },
  7123. "branch-alias": {
  7124. "dev-main": "2.5-dev"
  7125. }
  7126. },
  7127. "autoload": {
  7128. "psr-4": {
  7129. "Symfony\\Contracts\\Service\\": ""
  7130. }
  7131. },
  7132. "notification-url": "https://packagist.org/downloads/",
  7133. "license": [
  7134. "MIT"
  7135. ],
  7136. "authors": [
  7137. {
  7138. "name": "Nicolas Grekas",
  7139. "email": "p@tchwork.com"
  7140. },
  7141. {
  7142. "name": "Symfony Community",
  7143. "homepage": "https://symfony.com/contributors"
  7144. }
  7145. ],
  7146. "description": "Generic abstractions related to writing services",
  7147. "homepage": "https://symfony.com",
  7148. "keywords": [
  7149. "abstractions",
  7150. "contracts",
  7151. "decoupling",
  7152. "interfaces",
  7153. "interoperability",
  7154. "standards"
  7155. ],
  7156. "support": {
  7157. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  7158. },
  7159. "funding": [
  7160. {
  7161. "url": "https://symfony.com/sponsor",
  7162. "type": "custom"
  7163. },
  7164. {
  7165. "url": "https://github.com/fabpot",
  7166. "type": "github"
  7167. },
  7168. {
  7169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7170. "type": "tidelift"
  7171. }
  7172. ],
  7173. "time": "2024-09-25T14:11:13+00:00"
  7174. },
  7175. {
  7176. "name": "symfony/string",
  7177. "version": "v6.0.19",
  7178. "source": {
  7179. "type": "git",
  7180. "url": "https://github.com/symfony/string.git",
  7181. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7182. },
  7183. "dist": {
  7184. "type": "zip",
  7185. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7186. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7187. "shasum": "",
  7188. "mirrors": [
  7189. {
  7190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7191. "preferred": true
  7192. }
  7193. ]
  7194. },
  7195. "require": {
  7196. "php": ">=8.0.2",
  7197. "symfony/polyfill-ctype": "~1.8",
  7198. "symfony/polyfill-intl-grapheme": "~1.0",
  7199. "symfony/polyfill-intl-normalizer": "~1.0",
  7200. "symfony/polyfill-mbstring": "~1.0"
  7201. },
  7202. "conflict": {
  7203. "symfony/translation-contracts": "<2.0"
  7204. },
  7205. "require-dev": {
  7206. "symfony/error-handler": "^5.4|^6.0",
  7207. "symfony/http-client": "^5.4|^6.0",
  7208. "symfony/translation-contracts": "^2.0|^3.0",
  7209. "symfony/var-exporter": "^5.4|^6.0"
  7210. },
  7211. "type": "library",
  7212. "autoload": {
  7213. "files": [
  7214. "Resources/functions.php"
  7215. ],
  7216. "psr-4": {
  7217. "Symfony\\Component\\String\\": ""
  7218. },
  7219. "exclude-from-classmap": [
  7220. "/Tests/"
  7221. ]
  7222. },
  7223. "notification-url": "https://packagist.org/downloads/",
  7224. "license": [
  7225. "MIT"
  7226. ],
  7227. "authors": [
  7228. {
  7229. "name": "Nicolas Grekas",
  7230. "email": "p@tchwork.com"
  7231. },
  7232. {
  7233. "name": "Symfony Community",
  7234. "homepage": "https://symfony.com/contributors"
  7235. }
  7236. ],
  7237. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7238. "homepage": "https://symfony.com",
  7239. "keywords": [
  7240. "grapheme",
  7241. "i18n",
  7242. "string",
  7243. "unicode",
  7244. "utf-8",
  7245. "utf8"
  7246. ],
  7247. "support": {
  7248. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7249. },
  7250. "funding": [
  7251. {
  7252. "url": "https://symfony.com/sponsor",
  7253. "type": "custom"
  7254. },
  7255. {
  7256. "url": "https://github.com/fabpot",
  7257. "type": "github"
  7258. },
  7259. {
  7260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7261. "type": "tidelift"
  7262. }
  7263. ],
  7264. "time": "2023-01-01T08:36:10+00:00"
  7265. },
  7266. {
  7267. "name": "symfony/translation",
  7268. "version": "v6.0.19",
  7269. "source": {
  7270. "type": "git",
  7271. "url": "https://github.com/symfony/translation.git",
  7272. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7273. },
  7274. "dist": {
  7275. "type": "zip",
  7276. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7277. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7278. "shasum": "",
  7279. "mirrors": [
  7280. {
  7281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7282. "preferred": true
  7283. }
  7284. ]
  7285. },
  7286. "require": {
  7287. "php": ">=8.0.2",
  7288. "symfony/polyfill-mbstring": "~1.0",
  7289. "symfony/translation-contracts": "^2.3|^3.0"
  7290. },
  7291. "conflict": {
  7292. "symfony/config": "<5.4",
  7293. "symfony/console": "<5.4",
  7294. "symfony/dependency-injection": "<5.4",
  7295. "symfony/http-kernel": "<5.4",
  7296. "symfony/twig-bundle": "<5.4",
  7297. "symfony/yaml": "<5.4"
  7298. },
  7299. "provide": {
  7300. "symfony/translation-implementation": "2.3|3.0"
  7301. },
  7302. "require-dev": {
  7303. "psr/log": "^1|^2|^3",
  7304. "symfony/config": "^5.4|^6.0",
  7305. "symfony/console": "^5.4|^6.0",
  7306. "symfony/dependency-injection": "^5.4|^6.0",
  7307. "symfony/finder": "^5.4|^6.0",
  7308. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7309. "symfony/http-kernel": "^5.4|^6.0",
  7310. "symfony/intl": "^5.4|^6.0",
  7311. "symfony/polyfill-intl-icu": "^1.21",
  7312. "symfony/service-contracts": "^1.1.2|^2|^3",
  7313. "symfony/yaml": "^5.4|^6.0"
  7314. },
  7315. "suggest": {
  7316. "psr/log-implementation": "To use logging capability in translator",
  7317. "symfony/config": "",
  7318. "symfony/yaml": ""
  7319. },
  7320. "type": "library",
  7321. "autoload": {
  7322. "files": [
  7323. "Resources/functions.php"
  7324. ],
  7325. "psr-4": {
  7326. "Symfony\\Component\\Translation\\": ""
  7327. },
  7328. "exclude-from-classmap": [
  7329. "/Tests/"
  7330. ]
  7331. },
  7332. "notification-url": "https://packagist.org/downloads/",
  7333. "license": [
  7334. "MIT"
  7335. ],
  7336. "authors": [
  7337. {
  7338. "name": "Fabien Potencier",
  7339. "email": "fabien@symfony.com"
  7340. },
  7341. {
  7342. "name": "Symfony Community",
  7343. "homepage": "https://symfony.com/contributors"
  7344. }
  7345. ],
  7346. "description": "Provides tools to internationalize your application",
  7347. "homepage": "https://symfony.com",
  7348. "support": {
  7349. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7350. },
  7351. "funding": [
  7352. {
  7353. "url": "https://symfony.com/sponsor",
  7354. "type": "custom"
  7355. },
  7356. {
  7357. "url": "https://github.com/fabpot",
  7358. "type": "github"
  7359. },
  7360. {
  7361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7362. "type": "tidelift"
  7363. }
  7364. ],
  7365. "time": "2023-01-01T08:36:10+00:00"
  7366. },
  7367. {
  7368. "name": "symfony/translation-contracts",
  7369. "version": "v3.0.2",
  7370. "source": {
  7371. "type": "git",
  7372. "url": "https://github.com/symfony/translation-contracts.git",
  7373. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7374. },
  7375. "dist": {
  7376. "type": "zip",
  7377. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7378. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7379. "shasum": "",
  7380. "mirrors": [
  7381. {
  7382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7383. "preferred": true
  7384. }
  7385. ]
  7386. },
  7387. "require": {
  7388. "php": ">=8.0.2"
  7389. },
  7390. "suggest": {
  7391. "symfony/translation-implementation": ""
  7392. },
  7393. "type": "library",
  7394. "extra": {
  7395. "thanks": {
  7396. "url": "https://github.com/symfony/contracts",
  7397. "name": "symfony/contracts"
  7398. },
  7399. "branch-alias": {
  7400. "dev-main": "3.0-dev"
  7401. }
  7402. },
  7403. "autoload": {
  7404. "psr-4": {
  7405. "Symfony\\Contracts\\Translation\\": ""
  7406. }
  7407. },
  7408. "notification-url": "https://packagist.org/downloads/",
  7409. "license": [
  7410. "MIT"
  7411. ],
  7412. "authors": [
  7413. {
  7414. "name": "Nicolas Grekas",
  7415. "email": "p@tchwork.com"
  7416. },
  7417. {
  7418. "name": "Symfony Community",
  7419. "homepage": "https://symfony.com/contributors"
  7420. }
  7421. ],
  7422. "description": "Generic abstractions related to translation",
  7423. "homepage": "https://symfony.com",
  7424. "keywords": [
  7425. "abstractions",
  7426. "contracts",
  7427. "decoupling",
  7428. "interfaces",
  7429. "interoperability",
  7430. "standards"
  7431. ],
  7432. "support": {
  7433. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7434. },
  7435. "funding": [
  7436. {
  7437. "url": "https://symfony.com/sponsor",
  7438. "type": "custom"
  7439. },
  7440. {
  7441. "url": "https://github.com/fabpot",
  7442. "type": "github"
  7443. },
  7444. {
  7445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7446. "type": "tidelift"
  7447. }
  7448. ],
  7449. "time": "2022-06-27T17:10:44+00:00"
  7450. },
  7451. {
  7452. "name": "symfony/var-dumper",
  7453. "version": "v5.4.48",
  7454. "source": {
  7455. "type": "git",
  7456. "url": "https://github.com/symfony/var-dumper.git",
  7457. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7458. },
  7459. "dist": {
  7460. "type": "zip",
  7461. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7462. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7463. "shasum": "",
  7464. "mirrors": [
  7465. {
  7466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7467. "preferred": true
  7468. }
  7469. ]
  7470. },
  7471. "require": {
  7472. "php": ">=7.2.5",
  7473. "symfony/polyfill-mbstring": "~1.0",
  7474. "symfony/polyfill-php80": "^1.16"
  7475. },
  7476. "conflict": {
  7477. "symfony/console": "<4.4"
  7478. },
  7479. "require-dev": {
  7480. "ext-iconv": "*",
  7481. "symfony/console": "^4.4|^5.0|^6.0",
  7482. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7483. "symfony/process": "^4.4|^5.0|^6.0",
  7484. "symfony/uid": "^5.1|^6.0",
  7485. "twig/twig": "^2.13|^3.0.4"
  7486. },
  7487. "suggest": {
  7488. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7489. "ext-intl": "To show region name in time zone dump",
  7490. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7491. },
  7492. "bin": [
  7493. "Resources/bin/var-dump-server"
  7494. ],
  7495. "type": "library",
  7496. "autoload": {
  7497. "files": [
  7498. "Resources/functions/dump.php"
  7499. ],
  7500. "psr-4": {
  7501. "Symfony\\Component\\VarDumper\\": ""
  7502. },
  7503. "exclude-from-classmap": [
  7504. "/Tests/"
  7505. ]
  7506. },
  7507. "notification-url": "https://packagist.org/downloads/",
  7508. "license": [
  7509. "MIT"
  7510. ],
  7511. "authors": [
  7512. {
  7513. "name": "Nicolas Grekas",
  7514. "email": "p@tchwork.com"
  7515. },
  7516. {
  7517. "name": "Symfony Community",
  7518. "homepage": "https://symfony.com/contributors"
  7519. }
  7520. ],
  7521. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7522. "homepage": "https://symfony.com",
  7523. "keywords": [
  7524. "debug",
  7525. "dump"
  7526. ],
  7527. "support": {
  7528. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7529. },
  7530. "funding": [
  7531. {
  7532. "url": "https://symfony.com/sponsor",
  7533. "type": "custom"
  7534. },
  7535. {
  7536. "url": "https://github.com/fabpot",
  7537. "type": "github"
  7538. },
  7539. {
  7540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7541. "type": "tidelift"
  7542. }
  7543. ],
  7544. "time": "2024-11-08T15:21:10+00:00"
  7545. },
  7546. {
  7547. "name": "thiagoalessio/tesseract_ocr",
  7548. "version": "2.12.0",
  7549. "source": {
  7550. "type": "git",
  7551. "url": "https://github.com/thiagoalessio/tesseract-ocr-for-php.git",
  7552. "reference": "0f10bd7b02bdcba59c4fbd98fbd93a56f93b09b7"
  7553. },
  7554. "dist": {
  7555. "type": "zip",
  7556. "url": "https://api.github.com/repos/thiagoalessio/tesseract-ocr-for-php/zipball/0f10bd7b02bdcba59c4fbd98fbd93a56f93b09b7",
  7557. "reference": "0f10bd7b02bdcba59c4fbd98fbd93a56f93b09b7",
  7558. "shasum": "",
  7559. "mirrors": [
  7560. {
  7561. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7562. "preferred": true
  7563. }
  7564. ]
  7565. },
  7566. "require": {
  7567. "php": "^5.3 || ^7.0 || ^8.0"
  7568. },
  7569. "require-dev": {
  7570. "phpunit/php-code-coverage": "^2.2.4 || ^9.0.0"
  7571. },
  7572. "type": "library",
  7573. "autoload": {
  7574. "psr-4": {
  7575. "thiagoalessio\\TesseractOCR\\": "src/"
  7576. }
  7577. },
  7578. "notification-url": "https://packagist.org/downloads/",
  7579. "license": [
  7580. "MIT"
  7581. ],
  7582. "authors": [
  7583. {
  7584. "name": "thiagoalessio",
  7585. "email": "thiagoalessio@me.com"
  7586. }
  7587. ],
  7588. "description": "A wrapper to work with Tesseract OCR inside PHP.",
  7589. "keywords": [
  7590. "OCR",
  7591. "Tesseract",
  7592. "text recognition"
  7593. ],
  7594. "support": {
  7595. "irc": "irc://irc.freenode.net/tesseract-ocr-for-php",
  7596. "issues": "https://github.com/thiagoalessio/tesseract-ocr-for-php/issues",
  7597. "source": "https://github.com/thiagoalessio/tesseract-ocr-for-php"
  7598. },
  7599. "time": "2021-06-04T21:21:33+00:00"
  7600. },
  7601. {
  7602. "name": "tijsverkoyen/css-to-inline-styles",
  7603. "version": "v2.3.0",
  7604. "source": {
  7605. "type": "git",
  7606. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7607. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7608. },
  7609. "dist": {
  7610. "type": "zip",
  7611. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7612. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7613. "shasum": "",
  7614. "mirrors": [
  7615. {
  7616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7617. "preferred": true
  7618. }
  7619. ]
  7620. },
  7621. "require": {
  7622. "ext-dom": "*",
  7623. "ext-libxml": "*",
  7624. "php": "^7.4 || ^8.0",
  7625. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7626. },
  7627. "require-dev": {
  7628. "phpstan/phpstan": "^2.0",
  7629. "phpstan/phpstan-phpunit": "^2.0",
  7630. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7631. },
  7632. "type": "library",
  7633. "extra": {
  7634. "branch-alias": {
  7635. "dev-master": "2.x-dev"
  7636. }
  7637. },
  7638. "autoload": {
  7639. "psr-4": {
  7640. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7641. }
  7642. },
  7643. "notification-url": "https://packagist.org/downloads/",
  7644. "license": [
  7645. "BSD-3-Clause"
  7646. ],
  7647. "authors": [
  7648. {
  7649. "name": "Tijs Verkoyen",
  7650. "email": "css_to_inline_styles@verkoyen.eu",
  7651. "role": "Developer"
  7652. }
  7653. ],
  7654. "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.",
  7655. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7656. "support": {
  7657. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7658. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7659. },
  7660. "time": "2024-12-21T16:25:41+00:00"
  7661. },
  7662. {
  7663. "name": "vlucas/phpdotenv",
  7664. "version": "v5.6.1",
  7665. "source": {
  7666. "type": "git",
  7667. "url": "https://github.com/vlucas/phpdotenv.git",
  7668. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7669. },
  7670. "dist": {
  7671. "type": "zip",
  7672. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7673. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7674. "shasum": "",
  7675. "mirrors": [
  7676. {
  7677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7678. "preferred": true
  7679. }
  7680. ]
  7681. },
  7682. "require": {
  7683. "ext-pcre": "*",
  7684. "graham-campbell/result-type": "^1.1.3",
  7685. "php": "^7.2.5 || ^8.0",
  7686. "phpoption/phpoption": "^1.9.3",
  7687. "symfony/polyfill-ctype": "^1.24",
  7688. "symfony/polyfill-mbstring": "^1.24",
  7689. "symfony/polyfill-php80": "^1.24"
  7690. },
  7691. "require-dev": {
  7692. "bamarni/composer-bin-plugin": "^1.8.2",
  7693. "ext-filter": "*",
  7694. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7695. },
  7696. "suggest": {
  7697. "ext-filter": "Required to use the boolean validator."
  7698. },
  7699. "type": "library",
  7700. "extra": {
  7701. "bamarni-bin": {
  7702. "bin-links": true,
  7703. "forward-command": false
  7704. },
  7705. "branch-alias": {
  7706. "dev-master": "5.6-dev"
  7707. }
  7708. },
  7709. "autoload": {
  7710. "psr-4": {
  7711. "Dotenv\\": "src/"
  7712. }
  7713. },
  7714. "notification-url": "https://packagist.org/downloads/",
  7715. "license": [
  7716. "BSD-3-Clause"
  7717. ],
  7718. "authors": [
  7719. {
  7720. "name": "Graham Campbell",
  7721. "email": "hello@gjcampbell.co.uk",
  7722. "homepage": "https://github.com/GrahamCampbell"
  7723. },
  7724. {
  7725. "name": "Vance Lucas",
  7726. "email": "vance@vancelucas.com",
  7727. "homepage": "https://github.com/vlucas"
  7728. }
  7729. ],
  7730. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7731. "keywords": [
  7732. "dotenv",
  7733. "env",
  7734. "environment"
  7735. ],
  7736. "support": {
  7737. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7738. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7739. },
  7740. "funding": [
  7741. {
  7742. "url": "https://github.com/GrahamCampbell",
  7743. "type": "github"
  7744. },
  7745. {
  7746. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7747. "type": "tidelift"
  7748. }
  7749. ],
  7750. "time": "2024-07-20T21:52:34+00:00"
  7751. },
  7752. {
  7753. "name": "voku/portable-ascii",
  7754. "version": "1.6.1",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://github.com/voku/portable-ascii.git",
  7758. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7763. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7764. "shasum": "",
  7765. "mirrors": [
  7766. {
  7767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7768. "preferred": true
  7769. }
  7770. ]
  7771. },
  7772. "require": {
  7773. "php": ">=7.0.0"
  7774. },
  7775. "require-dev": {
  7776. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7777. },
  7778. "suggest": {
  7779. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7780. },
  7781. "type": "library",
  7782. "autoload": {
  7783. "psr-4": {
  7784. "voku\\": "src/voku/"
  7785. }
  7786. },
  7787. "notification-url": "https://packagist.org/downloads/",
  7788. "license": [
  7789. "MIT"
  7790. ],
  7791. "authors": [
  7792. {
  7793. "name": "Lars Moelleken",
  7794. "homepage": "http://www.moelleken.org/"
  7795. }
  7796. ],
  7797. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7798. "homepage": "https://github.com/voku/portable-ascii",
  7799. "keywords": [
  7800. "ascii",
  7801. "clean",
  7802. "php"
  7803. ],
  7804. "support": {
  7805. "issues": "https://github.com/voku/portable-ascii/issues",
  7806. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7807. },
  7808. "funding": [
  7809. {
  7810. "url": "https://www.paypal.me/moelleken",
  7811. "type": "custom"
  7812. },
  7813. {
  7814. "url": "https://github.com/voku",
  7815. "type": "github"
  7816. },
  7817. {
  7818. "url": "https://opencollective.com/portable-ascii",
  7819. "type": "open_collective"
  7820. },
  7821. {
  7822. "url": "https://www.patreon.com/voku",
  7823. "type": "patreon"
  7824. },
  7825. {
  7826. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7827. "type": "tidelift"
  7828. }
  7829. ],
  7830. "time": "2022-01-24T18:55:24+00:00"
  7831. },
  7832. {
  7833. "name": "webmozart/assert",
  7834. "version": "1.11.0",
  7835. "source": {
  7836. "type": "git",
  7837. "url": "https://github.com/webmozarts/assert.git",
  7838. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7839. },
  7840. "dist": {
  7841. "type": "zip",
  7842. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7843. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7844. "shasum": "",
  7845. "mirrors": [
  7846. {
  7847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7848. "preferred": true
  7849. }
  7850. ]
  7851. },
  7852. "require": {
  7853. "ext-ctype": "*",
  7854. "php": "^7.2 || ^8.0"
  7855. },
  7856. "conflict": {
  7857. "phpstan/phpstan": "<0.12.20",
  7858. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7859. },
  7860. "require-dev": {
  7861. "phpunit/phpunit": "^8.5.13"
  7862. },
  7863. "type": "library",
  7864. "extra": {
  7865. "branch-alias": {
  7866. "dev-master": "1.10-dev"
  7867. }
  7868. },
  7869. "autoload": {
  7870. "psr-4": {
  7871. "Webmozart\\Assert\\": "src/"
  7872. }
  7873. },
  7874. "notification-url": "https://packagist.org/downloads/",
  7875. "license": [
  7876. "MIT"
  7877. ],
  7878. "authors": [
  7879. {
  7880. "name": "Bernhard Schussek",
  7881. "email": "bschussek@gmail.com"
  7882. }
  7883. ],
  7884. "description": "Assertions to validate method input/output with nice error messages.",
  7885. "keywords": [
  7886. "assert",
  7887. "check",
  7888. "validate"
  7889. ],
  7890. "support": {
  7891. "issues": "https://github.com/webmozarts/assert/issues",
  7892. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7893. },
  7894. "time": "2022-06-03T18:03:27+00:00"
  7895. },
  7896. {
  7897. "name": "wxkxklmyt/pscws4",
  7898. "version": "0.0.2",
  7899. "source": {
  7900. "type": "git",
  7901. "url": "https://github.com/wxkxklmyt/pscws4.git",
  7902. "reference": "b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f"
  7903. },
  7904. "dist": {
  7905. "type": "zip",
  7906. "url": "https://api.github.com/repos/wxkxklmyt/pscws4/zipball/b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f",
  7907. "reference": "b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f",
  7908. "shasum": "",
  7909. "mirrors": [
  7910. {
  7911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7912. "preferred": true
  7913. }
  7914. ]
  7915. },
  7916. "require": {
  7917. "php": ">=5.4.0"
  7918. },
  7919. "type": "library",
  7920. "autoload": {
  7921. "psr-4": {
  7922. "wxkxklmyt\\": "src/"
  7923. }
  7924. },
  7925. "notification-url": "https://packagist.org/downloads/",
  7926. "authors": [
  7927. {
  7928. "name": "我的梦",
  7929. "email": "519468341@qq.com"
  7930. }
  7931. ],
  7932. "description": "基于PSCWS4的中文分词工具",
  7933. "support": {
  7934. "issues": "https://github.com/wxkxklmyt/pscws4/issues",
  7935. "source": "https://github.com/wxkxklmyt/pscws4/tree/0.0.2"
  7936. },
  7937. "time": "2017-12-22T08:56:36+00:00"
  7938. },
  7939. {
  7940. "name": "yansongda/pay",
  7941. "version": "v3.4.2",
  7942. "source": {
  7943. "type": "git",
  7944. "url": "https://github.com/yansongda/pay.git",
  7945. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  7946. },
  7947. "dist": {
  7948. "type": "zip",
  7949. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  7950. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  7951. "shasum": "",
  7952. "mirrors": [
  7953. {
  7954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7955. "preferred": true
  7956. }
  7957. ]
  7958. },
  7959. "require": {
  7960. "ext-bcmath": "*",
  7961. "ext-json": "*",
  7962. "ext-libxml": "*",
  7963. "ext-openssl": "*",
  7964. "ext-simplexml": "*",
  7965. "php": ">=8.0",
  7966. "psr/container": "^1.1 || ^2.0",
  7967. "psr/event-dispatcher": "^1.0",
  7968. "psr/http-client": "^1.0",
  7969. "psr/http-message": "^1.1 || ^2.0",
  7970. "psr/log": "^1.1 || ^2.0 || ^3.0",
  7971. "yansongda/supports": "~4.0.0"
  7972. },
  7973. "conflict": {
  7974. "hyperf/framework": "<3.0"
  7975. },
  7976. "require-dev": {
  7977. "friendsofphp/php-cs-fixer": "^3.0",
  7978. "guzzlehttp/guzzle": "^7.0",
  7979. "hyperf/pimple": "^2.2",
  7980. "mockery/mockery": "^1.4",
  7981. "monolog/monolog": "^2.2",
  7982. "phpstan/phpstan": "^1.0.0",
  7983. "phpunit/phpunit": "^9.0",
  7984. "symfony/event-dispatcher": "^5.2.0",
  7985. "symfony/http-foundation": "^5.2.0",
  7986. "symfony/psr-http-message-bridge": "^2.1",
  7987. "symfony/var-dumper": "^5.1"
  7988. },
  7989. "suggest": {
  7990. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  7991. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  7992. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  7993. },
  7994. "type": "library",
  7995. "autoload": {
  7996. "files": [
  7997. "src/Functions.php"
  7998. ],
  7999. "psr-4": {
  8000. "Yansongda\\Pay\\": "src"
  8001. }
  8002. },
  8003. "notification-url": "https://packagist.org/downloads/",
  8004. "license": [
  8005. "MIT"
  8006. ],
  8007. "authors": [
  8008. {
  8009. "name": "yansongda",
  8010. "email": "me@yansongda.cn"
  8011. }
  8012. ],
  8013. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  8014. "keywords": [
  8015. "alipay",
  8016. "pay",
  8017. "wechat"
  8018. ],
  8019. "support": {
  8020. "homepage": "https://pay.yansongda.cn",
  8021. "issues": "https://github.com/yansongda/pay/issues",
  8022. "source": "https://github.com/yansongda/pay"
  8023. },
  8024. "time": "2023-06-27T09:54:37+00:00"
  8025. },
  8026. {
  8027. "name": "yansongda/supports",
  8028. "version": "v4.0.10",
  8029. "source": {
  8030. "type": "git",
  8031. "url": "https://github.com/yansongda/supports.git",
  8032. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5"
  8033. },
  8034. "dist": {
  8035. "type": "zip",
  8036. "url": "https://api.github.com/repos/yansongda/supports/zipball/11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8037. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8038. "shasum": "",
  8039. "mirrors": [
  8040. {
  8041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8042. "preferred": true
  8043. }
  8044. ]
  8045. },
  8046. "require": {
  8047. "php": ">=8.0"
  8048. },
  8049. "require-dev": {
  8050. "friendsofphp/php-cs-fixer": "^3.0",
  8051. "mockery/mockery": "^1.4",
  8052. "phpstan/phpstan": "^1.1.0",
  8053. "phpunit/phpunit": "^9.0"
  8054. },
  8055. "suggest": {
  8056. "monolog/monolog": "Use logger",
  8057. "symfony/console": "Use stdout logger"
  8058. },
  8059. "type": "library",
  8060. "autoload": {
  8061. "files": [
  8062. "src/Functions.php"
  8063. ],
  8064. "psr-4": {
  8065. "Yansongda\\Supports\\": "src/"
  8066. }
  8067. },
  8068. "notification-url": "https://packagist.org/downloads/",
  8069. "license": [
  8070. "MIT"
  8071. ],
  8072. "authors": [
  8073. {
  8074. "name": "yansongda",
  8075. "email": "me@yansongda.cn"
  8076. }
  8077. ],
  8078. "description": "common components",
  8079. "keywords": [
  8080. "array",
  8081. "collection",
  8082. "config",
  8083. "support"
  8084. ],
  8085. "support": {
  8086. "issues": "https://github.com/yansongda/supports/issues",
  8087. "source": "https://github.com/yansongda/supports"
  8088. },
  8089. "time": "2024-06-09T15:49:21+00:00"
  8090. }
  8091. ],
  8092. "packages-dev": [
  8093. {
  8094. "name": "doctrine/instantiator",
  8095. "version": "1.5.0",
  8096. "source": {
  8097. "type": "git",
  8098. "url": "https://github.com/doctrine/instantiator.git",
  8099. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8100. },
  8101. "dist": {
  8102. "type": "zip",
  8103. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8104. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8105. "shasum": "",
  8106. "mirrors": [
  8107. {
  8108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8109. "preferred": true
  8110. }
  8111. ]
  8112. },
  8113. "require": {
  8114. "php": "^7.1 || ^8.0"
  8115. },
  8116. "require-dev": {
  8117. "doctrine/coding-standard": "^9 || ^11",
  8118. "ext-pdo": "*",
  8119. "ext-phar": "*",
  8120. "phpbench/phpbench": "^0.16 || ^1",
  8121. "phpstan/phpstan": "^1.4",
  8122. "phpstan/phpstan-phpunit": "^1",
  8123. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8124. "vimeo/psalm": "^4.30 || ^5.4"
  8125. },
  8126. "type": "library",
  8127. "autoload": {
  8128. "psr-4": {
  8129. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8130. }
  8131. },
  8132. "notification-url": "https://packagist.org/downloads/",
  8133. "license": [
  8134. "MIT"
  8135. ],
  8136. "authors": [
  8137. {
  8138. "name": "Marco Pivetta",
  8139. "email": "ocramius@gmail.com",
  8140. "homepage": "https://ocramius.github.io/"
  8141. }
  8142. ],
  8143. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8144. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8145. "keywords": [
  8146. "constructor",
  8147. "instantiate"
  8148. ],
  8149. "support": {
  8150. "issues": "https://github.com/doctrine/instantiator/issues",
  8151. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8152. },
  8153. "funding": [
  8154. {
  8155. "url": "https://www.doctrine-project.org/sponsorship.html",
  8156. "type": "custom"
  8157. },
  8158. {
  8159. "url": "https://www.patreon.com/phpdoctrine",
  8160. "type": "patreon"
  8161. },
  8162. {
  8163. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8164. "type": "tidelift"
  8165. }
  8166. ],
  8167. "time": "2022-12-30T00:15:36+00:00"
  8168. },
  8169. {
  8170. "name": "facade/flare-client-php",
  8171. "version": "1.10.0",
  8172. "source": {
  8173. "type": "git",
  8174. "url": "https://github.com/facade/flare-client-php.git",
  8175. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8176. },
  8177. "dist": {
  8178. "type": "zip",
  8179. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8180. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8181. "shasum": "",
  8182. "mirrors": [
  8183. {
  8184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8185. "preferred": true
  8186. }
  8187. ]
  8188. },
  8189. "require": {
  8190. "facade/ignition-contracts": "~1.0",
  8191. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8192. "php": "^7.1|^8.0",
  8193. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8194. "symfony/mime": "^3.4|^4.0|^5.1",
  8195. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8196. },
  8197. "require-dev": {
  8198. "friendsofphp/php-cs-fixer": "^2.14",
  8199. "phpunit/phpunit": "^7.5",
  8200. "spatie/phpunit-snapshot-assertions": "^2.0"
  8201. },
  8202. "type": "library",
  8203. "extra": {
  8204. "branch-alias": {
  8205. "dev-master": "1.0-dev"
  8206. }
  8207. },
  8208. "autoload": {
  8209. "files": [
  8210. "src/helpers.php"
  8211. ],
  8212. "psr-4": {
  8213. "Facade\\FlareClient\\": "src"
  8214. }
  8215. },
  8216. "notification-url": "https://packagist.org/downloads/",
  8217. "license": [
  8218. "MIT"
  8219. ],
  8220. "description": "Send PHP errors to Flare",
  8221. "homepage": "https://github.com/facade/flare-client-php",
  8222. "keywords": [
  8223. "exception",
  8224. "facade",
  8225. "flare",
  8226. "reporting"
  8227. ],
  8228. "support": {
  8229. "issues": "https://github.com/facade/flare-client-php/issues",
  8230. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8231. },
  8232. "funding": [
  8233. {
  8234. "url": "https://github.com/spatie",
  8235. "type": "github"
  8236. }
  8237. ],
  8238. "time": "2022-08-09T11:23:57+00:00"
  8239. },
  8240. {
  8241. "name": "facade/ignition",
  8242. "version": "2.17.7",
  8243. "source": {
  8244. "type": "git",
  8245. "url": "https://github.com/facade/ignition.git",
  8246. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8247. },
  8248. "dist": {
  8249. "type": "zip",
  8250. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8251. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8252. "shasum": "",
  8253. "mirrors": [
  8254. {
  8255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8256. "preferred": true
  8257. }
  8258. ]
  8259. },
  8260. "require": {
  8261. "ext-curl": "*",
  8262. "ext-json": "*",
  8263. "ext-mbstring": "*",
  8264. "facade/flare-client-php": "^1.9.1",
  8265. "facade/ignition-contracts": "^1.0.2",
  8266. "illuminate/support": "^7.0|^8.0",
  8267. "monolog/monolog": "^2.0",
  8268. "php": "^7.2.5|^8.0",
  8269. "symfony/console": "^5.0",
  8270. "symfony/var-dumper": "^5.0"
  8271. },
  8272. "require-dev": {
  8273. "friendsofphp/php-cs-fixer": "^2.14",
  8274. "livewire/livewire": "^2.4",
  8275. "mockery/mockery": "^1.3",
  8276. "orchestra/testbench": "^5.0|^6.0",
  8277. "psalm/plugin-laravel": "^1.2"
  8278. },
  8279. "suggest": {
  8280. "laravel/telescope": "^3.1"
  8281. },
  8282. "type": "library",
  8283. "extra": {
  8284. "branch-alias": {
  8285. "dev-master": "2.x-dev"
  8286. },
  8287. "laravel": {
  8288. "providers": [
  8289. "Facade\\Ignition\\IgnitionServiceProvider"
  8290. ],
  8291. "aliases": {
  8292. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8293. }
  8294. }
  8295. },
  8296. "autoload": {
  8297. "files": [
  8298. "src/helpers.php"
  8299. ],
  8300. "psr-4": {
  8301. "Facade\\Ignition\\": "src"
  8302. }
  8303. },
  8304. "notification-url": "https://packagist.org/downloads/",
  8305. "license": [
  8306. "MIT"
  8307. ],
  8308. "description": "A beautiful error page for Laravel applications.",
  8309. "homepage": "https://github.com/facade/ignition",
  8310. "keywords": [
  8311. "error",
  8312. "flare",
  8313. "laravel",
  8314. "page"
  8315. ],
  8316. "support": {
  8317. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8318. "forum": "https://twitter.com/flareappio",
  8319. "issues": "https://github.com/facade/ignition/issues",
  8320. "source": "https://github.com/facade/ignition"
  8321. },
  8322. "time": "2023-01-26T12:34:59+00:00"
  8323. },
  8324. {
  8325. "name": "facade/ignition-contracts",
  8326. "version": "1.0.2",
  8327. "source": {
  8328. "type": "git",
  8329. "url": "https://github.com/facade/ignition-contracts.git",
  8330. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8331. },
  8332. "dist": {
  8333. "type": "zip",
  8334. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8335. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8336. "shasum": "",
  8337. "mirrors": [
  8338. {
  8339. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8340. "preferred": true
  8341. }
  8342. ]
  8343. },
  8344. "require": {
  8345. "php": "^7.3|^8.0"
  8346. },
  8347. "require-dev": {
  8348. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8349. "phpunit/phpunit": "^9.3.11",
  8350. "vimeo/psalm": "^3.17.1"
  8351. },
  8352. "type": "library",
  8353. "autoload": {
  8354. "psr-4": {
  8355. "Facade\\IgnitionContracts\\": "src"
  8356. }
  8357. },
  8358. "notification-url": "https://packagist.org/downloads/",
  8359. "license": [
  8360. "MIT"
  8361. ],
  8362. "authors": [
  8363. {
  8364. "name": "Freek Van der Herten",
  8365. "email": "freek@spatie.be",
  8366. "homepage": "https://flareapp.io",
  8367. "role": "Developer"
  8368. }
  8369. ],
  8370. "description": "Solution contracts for Ignition",
  8371. "homepage": "https://github.com/facade/ignition-contracts",
  8372. "keywords": [
  8373. "contracts",
  8374. "flare",
  8375. "ignition"
  8376. ],
  8377. "support": {
  8378. "issues": "https://github.com/facade/ignition-contracts/issues",
  8379. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8380. },
  8381. "time": "2020-10-16T08:27:54+00:00"
  8382. },
  8383. {
  8384. "name": "fakerphp/faker",
  8385. "version": "v1.23.1",
  8386. "source": {
  8387. "type": "git",
  8388. "url": "https://github.com/FakerPHP/Faker.git",
  8389. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8390. },
  8391. "dist": {
  8392. "type": "zip",
  8393. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8394. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8395. "shasum": "",
  8396. "mirrors": [
  8397. {
  8398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8399. "preferred": true
  8400. }
  8401. ]
  8402. },
  8403. "require": {
  8404. "php": "^7.4 || ^8.0",
  8405. "psr/container": "^1.0 || ^2.0",
  8406. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8407. },
  8408. "conflict": {
  8409. "fzaninotto/faker": "*"
  8410. },
  8411. "require-dev": {
  8412. "bamarni/composer-bin-plugin": "^1.4.1",
  8413. "doctrine/persistence": "^1.3 || ^2.0",
  8414. "ext-intl": "*",
  8415. "phpunit/phpunit": "^9.5.26",
  8416. "symfony/phpunit-bridge": "^5.4.16"
  8417. },
  8418. "suggest": {
  8419. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8420. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8421. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8422. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8423. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8424. },
  8425. "type": "library",
  8426. "autoload": {
  8427. "psr-4": {
  8428. "Faker\\": "src/Faker/"
  8429. }
  8430. },
  8431. "notification-url": "https://packagist.org/downloads/",
  8432. "license": [
  8433. "MIT"
  8434. ],
  8435. "authors": [
  8436. {
  8437. "name": "François Zaninotto"
  8438. }
  8439. ],
  8440. "description": "Faker is a PHP library that generates fake data for you.",
  8441. "keywords": [
  8442. "data",
  8443. "faker",
  8444. "fixtures"
  8445. ],
  8446. "support": {
  8447. "issues": "https://github.com/FakerPHP/Faker/issues",
  8448. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8449. },
  8450. "time": "2024-01-02T13:46:09+00:00"
  8451. },
  8452. {
  8453. "name": "filp/whoops",
  8454. "version": "2.16.0",
  8455. "source": {
  8456. "type": "git",
  8457. "url": "https://github.com/filp/whoops.git",
  8458. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8459. },
  8460. "dist": {
  8461. "type": "zip",
  8462. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8463. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8464. "shasum": "",
  8465. "mirrors": [
  8466. {
  8467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8468. "preferred": true
  8469. }
  8470. ]
  8471. },
  8472. "require": {
  8473. "php": "^7.1 || ^8.0",
  8474. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8475. },
  8476. "require-dev": {
  8477. "mockery/mockery": "^1.0",
  8478. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8479. "symfony/var-dumper": "^4.0 || ^5.0"
  8480. },
  8481. "suggest": {
  8482. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8483. "whoops/soap": "Formats errors as SOAP responses"
  8484. },
  8485. "type": "library",
  8486. "extra": {
  8487. "branch-alias": {
  8488. "dev-master": "2.7-dev"
  8489. }
  8490. },
  8491. "autoload": {
  8492. "psr-4": {
  8493. "Whoops\\": "src/Whoops/"
  8494. }
  8495. },
  8496. "notification-url": "https://packagist.org/downloads/",
  8497. "license": [
  8498. "MIT"
  8499. ],
  8500. "authors": [
  8501. {
  8502. "name": "Filipe Dobreira",
  8503. "homepage": "https://github.com/filp",
  8504. "role": "Developer"
  8505. }
  8506. ],
  8507. "description": "php error handling for cool kids",
  8508. "homepage": "https://filp.github.io/whoops/",
  8509. "keywords": [
  8510. "error",
  8511. "exception",
  8512. "handling",
  8513. "library",
  8514. "throwable",
  8515. "whoops"
  8516. ],
  8517. "support": {
  8518. "issues": "https://github.com/filp/whoops/issues",
  8519. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8520. },
  8521. "funding": [
  8522. {
  8523. "url": "https://github.com/denis-sokolov",
  8524. "type": "github"
  8525. }
  8526. ],
  8527. "time": "2024-09-25T12:00:00+00:00"
  8528. },
  8529. {
  8530. "name": "hamcrest/hamcrest-php",
  8531. "version": "v2.0.1",
  8532. "source": {
  8533. "type": "git",
  8534. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8535. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8536. },
  8537. "dist": {
  8538. "type": "zip",
  8539. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8540. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8541. "shasum": "",
  8542. "mirrors": [
  8543. {
  8544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8545. "preferred": true
  8546. }
  8547. ]
  8548. },
  8549. "require": {
  8550. "php": "^5.3|^7.0|^8.0"
  8551. },
  8552. "replace": {
  8553. "cordoval/hamcrest-php": "*",
  8554. "davedevelopment/hamcrest-php": "*",
  8555. "kodova/hamcrest-php": "*"
  8556. },
  8557. "require-dev": {
  8558. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8559. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8560. },
  8561. "type": "library",
  8562. "extra": {
  8563. "branch-alias": {
  8564. "dev-master": "2.1-dev"
  8565. }
  8566. },
  8567. "autoload": {
  8568. "classmap": [
  8569. "hamcrest"
  8570. ]
  8571. },
  8572. "notification-url": "https://packagist.org/downloads/",
  8573. "license": [
  8574. "BSD-3-Clause"
  8575. ],
  8576. "description": "This is the PHP port of Hamcrest Matchers",
  8577. "keywords": [
  8578. "test"
  8579. ],
  8580. "support": {
  8581. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8582. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8583. },
  8584. "time": "2020-07-09T08:09:16+00:00"
  8585. },
  8586. {
  8587. "name": "mockery/mockery",
  8588. "version": "1.6.12",
  8589. "source": {
  8590. "type": "git",
  8591. "url": "https://github.com/mockery/mockery.git",
  8592. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8593. },
  8594. "dist": {
  8595. "type": "zip",
  8596. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8597. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8598. "shasum": "",
  8599. "mirrors": [
  8600. {
  8601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8602. "preferred": true
  8603. }
  8604. ]
  8605. },
  8606. "require": {
  8607. "hamcrest/hamcrest-php": "^2.0.1",
  8608. "lib-pcre": ">=7.0",
  8609. "php": ">=7.3"
  8610. },
  8611. "conflict": {
  8612. "phpunit/phpunit": "<8.0"
  8613. },
  8614. "require-dev": {
  8615. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8616. "symplify/easy-coding-standard": "^12.1.14"
  8617. },
  8618. "type": "library",
  8619. "autoload": {
  8620. "files": [
  8621. "library/helpers.php",
  8622. "library/Mockery.php"
  8623. ],
  8624. "psr-4": {
  8625. "Mockery\\": "library/Mockery"
  8626. }
  8627. },
  8628. "notification-url": "https://packagist.org/downloads/",
  8629. "license": [
  8630. "BSD-3-Clause"
  8631. ],
  8632. "authors": [
  8633. {
  8634. "name": "Pádraic Brady",
  8635. "email": "padraic.brady@gmail.com",
  8636. "homepage": "https://github.com/padraic",
  8637. "role": "Author"
  8638. },
  8639. {
  8640. "name": "Dave Marshall",
  8641. "email": "dave.marshall@atstsolutions.co.uk",
  8642. "homepage": "https://davedevelopment.co.uk",
  8643. "role": "Developer"
  8644. },
  8645. {
  8646. "name": "Nathanael Esayeas",
  8647. "email": "nathanael.esayeas@protonmail.com",
  8648. "homepage": "https://github.com/ghostwriter",
  8649. "role": "Lead Developer"
  8650. }
  8651. ],
  8652. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8653. "homepage": "https://github.com/mockery/mockery",
  8654. "keywords": [
  8655. "BDD",
  8656. "TDD",
  8657. "library",
  8658. "mock",
  8659. "mock objects",
  8660. "mockery",
  8661. "stub",
  8662. "test",
  8663. "test double",
  8664. "testing"
  8665. ],
  8666. "support": {
  8667. "docs": "https://docs.mockery.io/",
  8668. "issues": "https://github.com/mockery/mockery/issues",
  8669. "rss": "https://github.com/mockery/mockery/releases.atom",
  8670. "security": "https://github.com/mockery/mockery/security/advisories",
  8671. "source": "https://github.com/mockery/mockery"
  8672. },
  8673. "time": "2024-05-16T03:13:13+00:00"
  8674. },
  8675. {
  8676. "name": "myclabs/deep-copy",
  8677. "version": "1.13.3",
  8678. "source": {
  8679. "type": "git",
  8680. "url": "https://github.com/myclabs/DeepCopy.git",
  8681. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8682. },
  8683. "dist": {
  8684. "type": "zip",
  8685. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8686. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8687. "shasum": "",
  8688. "mirrors": [
  8689. {
  8690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8691. "preferred": true
  8692. }
  8693. ]
  8694. },
  8695. "require": {
  8696. "php": "^7.1 || ^8.0"
  8697. },
  8698. "conflict": {
  8699. "doctrine/collections": "<1.6.8",
  8700. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8701. },
  8702. "require-dev": {
  8703. "doctrine/collections": "^1.6.8",
  8704. "doctrine/common": "^2.13.3 || ^3.2.2",
  8705. "phpspec/prophecy": "^1.10",
  8706. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8707. },
  8708. "type": "library",
  8709. "autoload": {
  8710. "files": [
  8711. "src/DeepCopy/deep_copy.php"
  8712. ],
  8713. "psr-4": {
  8714. "DeepCopy\\": "src/DeepCopy/"
  8715. }
  8716. },
  8717. "notification-url": "https://packagist.org/downloads/",
  8718. "license": [
  8719. "MIT"
  8720. ],
  8721. "description": "Create deep copies (clones) of your objects",
  8722. "keywords": [
  8723. "clone",
  8724. "copy",
  8725. "duplicate",
  8726. "object",
  8727. "object graph"
  8728. ],
  8729. "support": {
  8730. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8731. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8732. },
  8733. "funding": [
  8734. {
  8735. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8736. "type": "tidelift"
  8737. }
  8738. ],
  8739. "time": "2025-07-05T12:25:42+00:00"
  8740. },
  8741. {
  8742. "name": "nunomaduro/collision",
  8743. "version": "v5.11.0",
  8744. "source": {
  8745. "type": "git",
  8746. "url": "https://github.com/nunomaduro/collision.git",
  8747. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8748. },
  8749. "dist": {
  8750. "type": "zip",
  8751. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8752. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8753. "shasum": "",
  8754. "mirrors": [
  8755. {
  8756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8757. "preferred": true
  8758. }
  8759. ]
  8760. },
  8761. "require": {
  8762. "facade/ignition-contracts": "^1.0",
  8763. "filp/whoops": "^2.14.3",
  8764. "php": "^7.3 || ^8.0",
  8765. "symfony/console": "^5.0"
  8766. },
  8767. "require-dev": {
  8768. "brianium/paratest": "^6.1",
  8769. "fideloper/proxy": "^4.4.1",
  8770. "fruitcake/laravel-cors": "^2.0.3",
  8771. "laravel/framework": "8.x-dev",
  8772. "nunomaduro/larastan": "^0.6.2",
  8773. "nunomaduro/mock-final-classes": "^1.0",
  8774. "orchestra/testbench": "^6.0",
  8775. "phpstan/phpstan": "^0.12.64",
  8776. "phpunit/phpunit": "^9.5.0"
  8777. },
  8778. "type": "library",
  8779. "extra": {
  8780. "laravel": {
  8781. "providers": [
  8782. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8783. ]
  8784. }
  8785. },
  8786. "autoload": {
  8787. "psr-4": {
  8788. "NunoMaduro\\Collision\\": "src/"
  8789. }
  8790. },
  8791. "notification-url": "https://packagist.org/downloads/",
  8792. "license": [
  8793. "MIT"
  8794. ],
  8795. "authors": [
  8796. {
  8797. "name": "Nuno Maduro",
  8798. "email": "enunomaduro@gmail.com"
  8799. }
  8800. ],
  8801. "description": "Cli error handling for console/command-line PHP applications.",
  8802. "keywords": [
  8803. "artisan",
  8804. "cli",
  8805. "command-line",
  8806. "console",
  8807. "error",
  8808. "handling",
  8809. "laravel",
  8810. "laravel-zero",
  8811. "php",
  8812. "symfony"
  8813. ],
  8814. "support": {
  8815. "issues": "https://github.com/nunomaduro/collision/issues",
  8816. "source": "https://github.com/nunomaduro/collision"
  8817. },
  8818. "funding": [
  8819. {
  8820. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8821. "type": "custom"
  8822. },
  8823. {
  8824. "url": "https://github.com/nunomaduro",
  8825. "type": "github"
  8826. },
  8827. {
  8828. "url": "https://www.patreon.com/nunomaduro",
  8829. "type": "patreon"
  8830. }
  8831. ],
  8832. "time": "2022-01-10T16:22:52+00:00"
  8833. },
  8834. {
  8835. "name": "phar-io/manifest",
  8836. "version": "dev-master",
  8837. "source": {
  8838. "type": "git",
  8839. "url": "https://github.com/phar-io/manifest.git",
  8840. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8841. },
  8842. "dist": {
  8843. "type": "zip",
  8844. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8845. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8846. "shasum": "",
  8847. "mirrors": [
  8848. {
  8849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8850. "preferred": true
  8851. }
  8852. ]
  8853. },
  8854. "require": {
  8855. "ext-dom": "*",
  8856. "ext-libxml": "*",
  8857. "ext-phar": "*",
  8858. "ext-xmlwriter": "*",
  8859. "phar-io/version": "^3.0.1",
  8860. "php": "^7.2 || ^8.0"
  8861. },
  8862. "default-branch": true,
  8863. "type": "library",
  8864. "extra": {
  8865. "branch-alias": {
  8866. "dev-master": "2.0.x-dev"
  8867. }
  8868. },
  8869. "autoload": {
  8870. "classmap": [
  8871. "src/"
  8872. ]
  8873. },
  8874. "notification-url": "https://packagist.org/downloads/",
  8875. "license": [
  8876. "BSD-3-Clause"
  8877. ],
  8878. "authors": [
  8879. {
  8880. "name": "Arne Blankerts",
  8881. "email": "arne@blankerts.de",
  8882. "role": "Developer"
  8883. },
  8884. {
  8885. "name": "Sebastian Heuer",
  8886. "email": "sebastian@phpeople.de",
  8887. "role": "Developer"
  8888. },
  8889. {
  8890. "name": "Sebastian Bergmann",
  8891. "email": "sebastian@phpunit.de",
  8892. "role": "Developer"
  8893. }
  8894. ],
  8895. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8896. "support": {
  8897. "issues": "https://github.com/phar-io/manifest/issues",
  8898. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8899. },
  8900. "funding": [
  8901. {
  8902. "url": "https://github.com/theseer",
  8903. "type": "github"
  8904. }
  8905. ],
  8906. "time": "2024-03-03T12:33:53+00:00"
  8907. },
  8908. {
  8909. "name": "phar-io/version",
  8910. "version": "3.2.1",
  8911. "source": {
  8912. "type": "git",
  8913. "url": "https://github.com/phar-io/version.git",
  8914. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8915. },
  8916. "dist": {
  8917. "type": "zip",
  8918. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8919. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8920. "shasum": "",
  8921. "mirrors": [
  8922. {
  8923. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8924. "preferred": true
  8925. }
  8926. ]
  8927. },
  8928. "require": {
  8929. "php": "^7.2 || ^8.0"
  8930. },
  8931. "type": "library",
  8932. "autoload": {
  8933. "classmap": [
  8934. "src/"
  8935. ]
  8936. },
  8937. "notification-url": "https://packagist.org/downloads/",
  8938. "license": [
  8939. "BSD-3-Clause"
  8940. ],
  8941. "authors": [
  8942. {
  8943. "name": "Arne Blankerts",
  8944. "email": "arne@blankerts.de",
  8945. "role": "Developer"
  8946. },
  8947. {
  8948. "name": "Sebastian Heuer",
  8949. "email": "sebastian@phpeople.de",
  8950. "role": "Developer"
  8951. },
  8952. {
  8953. "name": "Sebastian Bergmann",
  8954. "email": "sebastian@phpunit.de",
  8955. "role": "Developer"
  8956. }
  8957. ],
  8958. "description": "Library for handling version information and constraints",
  8959. "support": {
  8960. "issues": "https://github.com/phar-io/version/issues",
  8961. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8962. },
  8963. "time": "2022-02-21T01:04:05+00:00"
  8964. },
  8965. {
  8966. "name": "phpunit/php-code-coverage",
  8967. "version": "9.2.32",
  8968. "source": {
  8969. "type": "git",
  8970. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8971. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8972. },
  8973. "dist": {
  8974. "type": "zip",
  8975. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8976. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8977. "shasum": "",
  8978. "mirrors": [
  8979. {
  8980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8981. "preferred": true
  8982. }
  8983. ]
  8984. },
  8985. "require": {
  8986. "ext-dom": "*",
  8987. "ext-libxml": "*",
  8988. "ext-xmlwriter": "*",
  8989. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8990. "php": ">=7.3",
  8991. "phpunit/php-file-iterator": "^3.0.6",
  8992. "phpunit/php-text-template": "^2.0.4",
  8993. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8994. "sebastian/complexity": "^2.0.3",
  8995. "sebastian/environment": "^5.1.5",
  8996. "sebastian/lines-of-code": "^1.0.4",
  8997. "sebastian/version": "^3.0.2",
  8998. "theseer/tokenizer": "^1.2.3"
  8999. },
  9000. "require-dev": {
  9001. "phpunit/phpunit": "^9.6"
  9002. },
  9003. "suggest": {
  9004. "ext-pcov": "PHP extension that provides line coverage",
  9005. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9006. },
  9007. "type": "library",
  9008. "extra": {
  9009. "branch-alias": {
  9010. "dev-main": "9.2.x-dev"
  9011. }
  9012. },
  9013. "autoload": {
  9014. "classmap": [
  9015. "src/"
  9016. ]
  9017. },
  9018. "notification-url": "https://packagist.org/downloads/",
  9019. "license": [
  9020. "BSD-3-Clause"
  9021. ],
  9022. "authors": [
  9023. {
  9024. "name": "Sebastian Bergmann",
  9025. "email": "sebastian@phpunit.de",
  9026. "role": "lead"
  9027. }
  9028. ],
  9029. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9030. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9031. "keywords": [
  9032. "coverage",
  9033. "testing",
  9034. "xunit"
  9035. ],
  9036. "support": {
  9037. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9038. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9039. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9040. },
  9041. "funding": [
  9042. {
  9043. "url": "https://github.com/sebastianbergmann",
  9044. "type": "github"
  9045. }
  9046. ],
  9047. "time": "2024-08-22T04:23:01+00:00"
  9048. },
  9049. {
  9050. "name": "phpunit/php-file-iterator",
  9051. "version": "3.0.6",
  9052. "source": {
  9053. "type": "git",
  9054. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9055. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9056. },
  9057. "dist": {
  9058. "type": "zip",
  9059. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9060. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9061. "shasum": "",
  9062. "mirrors": [
  9063. {
  9064. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9065. "preferred": true
  9066. }
  9067. ]
  9068. },
  9069. "require": {
  9070. "php": ">=7.3"
  9071. },
  9072. "require-dev": {
  9073. "phpunit/phpunit": "^9.3"
  9074. },
  9075. "type": "library",
  9076. "extra": {
  9077. "branch-alias": {
  9078. "dev-master": "3.0-dev"
  9079. }
  9080. },
  9081. "autoload": {
  9082. "classmap": [
  9083. "src/"
  9084. ]
  9085. },
  9086. "notification-url": "https://packagist.org/downloads/",
  9087. "license": [
  9088. "BSD-3-Clause"
  9089. ],
  9090. "authors": [
  9091. {
  9092. "name": "Sebastian Bergmann",
  9093. "email": "sebastian@phpunit.de",
  9094. "role": "lead"
  9095. }
  9096. ],
  9097. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9098. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9099. "keywords": [
  9100. "filesystem",
  9101. "iterator"
  9102. ],
  9103. "support": {
  9104. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9105. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9106. },
  9107. "funding": [
  9108. {
  9109. "url": "https://github.com/sebastianbergmann",
  9110. "type": "github"
  9111. }
  9112. ],
  9113. "time": "2021-12-02T12:48:52+00:00"
  9114. },
  9115. {
  9116. "name": "phpunit/php-invoker",
  9117. "version": "3.1.1",
  9118. "source": {
  9119. "type": "git",
  9120. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9121. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9122. },
  9123. "dist": {
  9124. "type": "zip",
  9125. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9126. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9127. "shasum": "",
  9128. "mirrors": [
  9129. {
  9130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9131. "preferred": true
  9132. }
  9133. ]
  9134. },
  9135. "require": {
  9136. "php": ">=7.3"
  9137. },
  9138. "require-dev": {
  9139. "ext-pcntl": "*",
  9140. "phpunit/phpunit": "^9.3"
  9141. },
  9142. "suggest": {
  9143. "ext-pcntl": "*"
  9144. },
  9145. "type": "library",
  9146. "extra": {
  9147. "branch-alias": {
  9148. "dev-master": "3.1-dev"
  9149. }
  9150. },
  9151. "autoload": {
  9152. "classmap": [
  9153. "src/"
  9154. ]
  9155. },
  9156. "notification-url": "https://packagist.org/downloads/",
  9157. "license": [
  9158. "BSD-3-Clause"
  9159. ],
  9160. "authors": [
  9161. {
  9162. "name": "Sebastian Bergmann",
  9163. "email": "sebastian@phpunit.de",
  9164. "role": "lead"
  9165. }
  9166. ],
  9167. "description": "Invoke callables with a timeout",
  9168. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9169. "keywords": [
  9170. "process"
  9171. ],
  9172. "support": {
  9173. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9174. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9175. },
  9176. "funding": [
  9177. {
  9178. "url": "https://github.com/sebastianbergmann",
  9179. "type": "github"
  9180. }
  9181. ],
  9182. "time": "2020-09-28T05:58:55+00:00"
  9183. },
  9184. {
  9185. "name": "phpunit/php-text-template",
  9186. "version": "2.0.4",
  9187. "source": {
  9188. "type": "git",
  9189. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9190. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9191. },
  9192. "dist": {
  9193. "type": "zip",
  9194. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9195. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9196. "shasum": "",
  9197. "mirrors": [
  9198. {
  9199. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9200. "preferred": true
  9201. }
  9202. ]
  9203. },
  9204. "require": {
  9205. "php": ">=7.3"
  9206. },
  9207. "require-dev": {
  9208. "phpunit/phpunit": "^9.3"
  9209. },
  9210. "type": "library",
  9211. "extra": {
  9212. "branch-alias": {
  9213. "dev-master": "2.0-dev"
  9214. }
  9215. },
  9216. "autoload": {
  9217. "classmap": [
  9218. "src/"
  9219. ]
  9220. },
  9221. "notification-url": "https://packagist.org/downloads/",
  9222. "license": [
  9223. "BSD-3-Clause"
  9224. ],
  9225. "authors": [
  9226. {
  9227. "name": "Sebastian Bergmann",
  9228. "email": "sebastian@phpunit.de",
  9229. "role": "lead"
  9230. }
  9231. ],
  9232. "description": "Simple template engine.",
  9233. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9234. "keywords": [
  9235. "template"
  9236. ],
  9237. "support": {
  9238. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9239. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9240. },
  9241. "funding": [
  9242. {
  9243. "url": "https://github.com/sebastianbergmann",
  9244. "type": "github"
  9245. }
  9246. ],
  9247. "time": "2020-10-26T05:33:50+00:00"
  9248. },
  9249. {
  9250. "name": "phpunit/php-timer",
  9251. "version": "5.0.3",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9255. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9260. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9261. "shasum": "",
  9262. "mirrors": [
  9263. {
  9264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9265. "preferred": true
  9266. }
  9267. ]
  9268. },
  9269. "require": {
  9270. "php": ">=7.3"
  9271. },
  9272. "require-dev": {
  9273. "phpunit/phpunit": "^9.3"
  9274. },
  9275. "type": "library",
  9276. "extra": {
  9277. "branch-alias": {
  9278. "dev-master": "5.0-dev"
  9279. }
  9280. },
  9281. "autoload": {
  9282. "classmap": [
  9283. "src/"
  9284. ]
  9285. },
  9286. "notification-url": "https://packagist.org/downloads/",
  9287. "license": [
  9288. "BSD-3-Clause"
  9289. ],
  9290. "authors": [
  9291. {
  9292. "name": "Sebastian Bergmann",
  9293. "email": "sebastian@phpunit.de",
  9294. "role": "lead"
  9295. }
  9296. ],
  9297. "description": "Utility class for timing",
  9298. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9299. "keywords": [
  9300. "timer"
  9301. ],
  9302. "support": {
  9303. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9304. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9305. },
  9306. "funding": [
  9307. {
  9308. "url": "https://github.com/sebastianbergmann",
  9309. "type": "github"
  9310. }
  9311. ],
  9312. "time": "2020-10-26T13:16:10+00:00"
  9313. },
  9314. {
  9315. "name": "phpunit/phpunit",
  9316. "version": "9.6.22",
  9317. "source": {
  9318. "type": "git",
  9319. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9320. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c"
  9321. },
  9322. "dist": {
  9323. "type": "zip",
  9324. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  9325. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  9326. "shasum": "",
  9327. "mirrors": [
  9328. {
  9329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9330. "preferred": true
  9331. }
  9332. ]
  9333. },
  9334. "require": {
  9335. "doctrine/instantiator": "^1.5.0 || ^2",
  9336. "ext-dom": "*",
  9337. "ext-json": "*",
  9338. "ext-libxml": "*",
  9339. "ext-mbstring": "*",
  9340. "ext-xml": "*",
  9341. "ext-xmlwriter": "*",
  9342. "myclabs/deep-copy": "^1.12.1",
  9343. "phar-io/manifest": "^2.0.4",
  9344. "phar-io/version": "^3.2.1",
  9345. "php": ">=7.3",
  9346. "phpunit/php-code-coverage": "^9.2.32",
  9347. "phpunit/php-file-iterator": "^3.0.6",
  9348. "phpunit/php-invoker": "^3.1.1",
  9349. "phpunit/php-text-template": "^2.0.4",
  9350. "phpunit/php-timer": "^5.0.3",
  9351. "sebastian/cli-parser": "^1.0.2",
  9352. "sebastian/code-unit": "^1.0.8",
  9353. "sebastian/comparator": "^4.0.8",
  9354. "sebastian/diff": "^4.0.6",
  9355. "sebastian/environment": "^5.1.5",
  9356. "sebastian/exporter": "^4.0.6",
  9357. "sebastian/global-state": "^5.0.7",
  9358. "sebastian/object-enumerator": "^4.0.4",
  9359. "sebastian/resource-operations": "^3.0.4",
  9360. "sebastian/type": "^3.2.1",
  9361. "sebastian/version": "^3.0.2"
  9362. },
  9363. "suggest": {
  9364. "ext-soap": "To be able to generate mocks based on WSDL files",
  9365. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9366. },
  9367. "bin": [
  9368. "phpunit"
  9369. ],
  9370. "type": "library",
  9371. "extra": {
  9372. "branch-alias": {
  9373. "dev-master": "9.6-dev"
  9374. }
  9375. },
  9376. "autoload": {
  9377. "files": [
  9378. "src/Framework/Assert/Functions.php"
  9379. ],
  9380. "classmap": [
  9381. "src/"
  9382. ]
  9383. },
  9384. "notification-url": "https://packagist.org/downloads/",
  9385. "license": [
  9386. "BSD-3-Clause"
  9387. ],
  9388. "authors": [
  9389. {
  9390. "name": "Sebastian Bergmann",
  9391. "email": "sebastian@phpunit.de",
  9392. "role": "lead"
  9393. }
  9394. ],
  9395. "description": "The PHP Unit Testing framework.",
  9396. "homepage": "https://phpunit.de/",
  9397. "keywords": [
  9398. "phpunit",
  9399. "testing",
  9400. "xunit"
  9401. ],
  9402. "support": {
  9403. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9404. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9405. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22"
  9406. },
  9407. "funding": [
  9408. {
  9409. "url": "https://phpunit.de/sponsors.html",
  9410. "type": "custom"
  9411. },
  9412. {
  9413. "url": "https://github.com/sebastianbergmann",
  9414. "type": "github"
  9415. },
  9416. {
  9417. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9418. "type": "tidelift"
  9419. }
  9420. ],
  9421. "time": "2024-12-05T13:48:26+00:00"
  9422. },
  9423. {
  9424. "name": "sebastian/cli-parser",
  9425. "version": "1.0.2",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9429. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9434. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9435. "shasum": "",
  9436. "mirrors": [
  9437. {
  9438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9439. "preferred": true
  9440. }
  9441. ]
  9442. },
  9443. "require": {
  9444. "php": ">=7.3"
  9445. },
  9446. "require-dev": {
  9447. "phpunit/phpunit": "^9.3"
  9448. },
  9449. "type": "library",
  9450. "extra": {
  9451. "branch-alias": {
  9452. "dev-master": "1.0-dev"
  9453. }
  9454. },
  9455. "autoload": {
  9456. "classmap": [
  9457. "src/"
  9458. ]
  9459. },
  9460. "notification-url": "https://packagist.org/downloads/",
  9461. "license": [
  9462. "BSD-3-Clause"
  9463. ],
  9464. "authors": [
  9465. {
  9466. "name": "Sebastian Bergmann",
  9467. "email": "sebastian@phpunit.de",
  9468. "role": "lead"
  9469. }
  9470. ],
  9471. "description": "Library for parsing CLI options",
  9472. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9473. "support": {
  9474. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9475. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9476. },
  9477. "funding": [
  9478. {
  9479. "url": "https://github.com/sebastianbergmann",
  9480. "type": "github"
  9481. }
  9482. ],
  9483. "time": "2024-03-02T06:27:43+00:00"
  9484. },
  9485. {
  9486. "name": "sebastian/code-unit",
  9487. "version": "1.0.8",
  9488. "source": {
  9489. "type": "git",
  9490. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9491. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9492. },
  9493. "dist": {
  9494. "type": "zip",
  9495. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9496. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9497. "shasum": "",
  9498. "mirrors": [
  9499. {
  9500. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9501. "preferred": true
  9502. }
  9503. ]
  9504. },
  9505. "require": {
  9506. "php": ">=7.3"
  9507. },
  9508. "require-dev": {
  9509. "phpunit/phpunit": "^9.3"
  9510. },
  9511. "type": "library",
  9512. "extra": {
  9513. "branch-alias": {
  9514. "dev-master": "1.0-dev"
  9515. }
  9516. },
  9517. "autoload": {
  9518. "classmap": [
  9519. "src/"
  9520. ]
  9521. },
  9522. "notification-url": "https://packagist.org/downloads/",
  9523. "license": [
  9524. "BSD-3-Clause"
  9525. ],
  9526. "authors": [
  9527. {
  9528. "name": "Sebastian Bergmann",
  9529. "email": "sebastian@phpunit.de",
  9530. "role": "lead"
  9531. }
  9532. ],
  9533. "description": "Collection of value objects that represent the PHP code units",
  9534. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9535. "support": {
  9536. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9537. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9538. },
  9539. "funding": [
  9540. {
  9541. "url": "https://github.com/sebastianbergmann",
  9542. "type": "github"
  9543. }
  9544. ],
  9545. "time": "2020-10-26T13:08:54+00:00"
  9546. },
  9547. {
  9548. "name": "sebastian/code-unit-reverse-lookup",
  9549. "version": "2.0.3",
  9550. "source": {
  9551. "type": "git",
  9552. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9553. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9554. },
  9555. "dist": {
  9556. "type": "zip",
  9557. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9558. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9559. "shasum": "",
  9560. "mirrors": [
  9561. {
  9562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9563. "preferred": true
  9564. }
  9565. ]
  9566. },
  9567. "require": {
  9568. "php": ">=7.3"
  9569. },
  9570. "require-dev": {
  9571. "phpunit/phpunit": "^9.3"
  9572. },
  9573. "type": "library",
  9574. "extra": {
  9575. "branch-alias": {
  9576. "dev-master": "2.0-dev"
  9577. }
  9578. },
  9579. "autoload": {
  9580. "classmap": [
  9581. "src/"
  9582. ]
  9583. },
  9584. "notification-url": "https://packagist.org/downloads/",
  9585. "license": [
  9586. "BSD-3-Clause"
  9587. ],
  9588. "authors": [
  9589. {
  9590. "name": "Sebastian Bergmann",
  9591. "email": "sebastian@phpunit.de"
  9592. }
  9593. ],
  9594. "description": "Looks up which function or method a line of code belongs to",
  9595. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9596. "support": {
  9597. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9598. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9599. },
  9600. "funding": [
  9601. {
  9602. "url": "https://github.com/sebastianbergmann",
  9603. "type": "github"
  9604. }
  9605. ],
  9606. "time": "2020-09-28T05:30:19+00:00"
  9607. },
  9608. {
  9609. "name": "sebastian/comparator",
  9610. "version": "4.0.8",
  9611. "source": {
  9612. "type": "git",
  9613. "url": "https://github.com/sebastianbergmann/comparator.git",
  9614. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9615. },
  9616. "dist": {
  9617. "type": "zip",
  9618. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9619. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9620. "shasum": "",
  9621. "mirrors": [
  9622. {
  9623. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9624. "preferred": true
  9625. }
  9626. ]
  9627. },
  9628. "require": {
  9629. "php": ">=7.3",
  9630. "sebastian/diff": "^4.0",
  9631. "sebastian/exporter": "^4.0"
  9632. },
  9633. "require-dev": {
  9634. "phpunit/phpunit": "^9.3"
  9635. },
  9636. "type": "library",
  9637. "extra": {
  9638. "branch-alias": {
  9639. "dev-master": "4.0-dev"
  9640. }
  9641. },
  9642. "autoload": {
  9643. "classmap": [
  9644. "src/"
  9645. ]
  9646. },
  9647. "notification-url": "https://packagist.org/downloads/",
  9648. "license": [
  9649. "BSD-3-Clause"
  9650. ],
  9651. "authors": [
  9652. {
  9653. "name": "Sebastian Bergmann",
  9654. "email": "sebastian@phpunit.de"
  9655. },
  9656. {
  9657. "name": "Jeff Welch",
  9658. "email": "whatthejeff@gmail.com"
  9659. },
  9660. {
  9661. "name": "Volker Dusch",
  9662. "email": "github@wallbash.com"
  9663. },
  9664. {
  9665. "name": "Bernhard Schussek",
  9666. "email": "bschussek@2bepublished.at"
  9667. }
  9668. ],
  9669. "description": "Provides the functionality to compare PHP values for equality",
  9670. "homepage": "https://github.com/sebastianbergmann/comparator",
  9671. "keywords": [
  9672. "comparator",
  9673. "compare",
  9674. "equality"
  9675. ],
  9676. "support": {
  9677. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9678. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9679. },
  9680. "funding": [
  9681. {
  9682. "url": "https://github.com/sebastianbergmann",
  9683. "type": "github"
  9684. }
  9685. ],
  9686. "time": "2022-09-14T12:41:17+00:00"
  9687. },
  9688. {
  9689. "name": "sebastian/complexity",
  9690. "version": "2.0.3",
  9691. "source": {
  9692. "type": "git",
  9693. "url": "https://github.com/sebastianbergmann/complexity.git",
  9694. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9695. },
  9696. "dist": {
  9697. "type": "zip",
  9698. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9699. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9700. "shasum": "",
  9701. "mirrors": [
  9702. {
  9703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9704. "preferred": true
  9705. }
  9706. ]
  9707. },
  9708. "require": {
  9709. "nikic/php-parser": "^4.18 || ^5.0",
  9710. "php": ">=7.3"
  9711. },
  9712. "require-dev": {
  9713. "phpunit/phpunit": "^9.3"
  9714. },
  9715. "type": "library",
  9716. "extra": {
  9717. "branch-alias": {
  9718. "dev-master": "2.0-dev"
  9719. }
  9720. },
  9721. "autoload": {
  9722. "classmap": [
  9723. "src/"
  9724. ]
  9725. },
  9726. "notification-url": "https://packagist.org/downloads/",
  9727. "license": [
  9728. "BSD-3-Clause"
  9729. ],
  9730. "authors": [
  9731. {
  9732. "name": "Sebastian Bergmann",
  9733. "email": "sebastian@phpunit.de",
  9734. "role": "lead"
  9735. }
  9736. ],
  9737. "description": "Library for calculating the complexity of PHP code units",
  9738. "homepage": "https://github.com/sebastianbergmann/complexity",
  9739. "support": {
  9740. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9741. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9742. },
  9743. "funding": [
  9744. {
  9745. "url": "https://github.com/sebastianbergmann",
  9746. "type": "github"
  9747. }
  9748. ],
  9749. "time": "2023-12-22T06:19:30+00:00"
  9750. },
  9751. {
  9752. "name": "sebastian/diff",
  9753. "version": "4.0.6",
  9754. "source": {
  9755. "type": "git",
  9756. "url": "https://github.com/sebastianbergmann/diff.git",
  9757. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9758. },
  9759. "dist": {
  9760. "type": "zip",
  9761. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9762. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9763. "shasum": "",
  9764. "mirrors": [
  9765. {
  9766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9767. "preferred": true
  9768. }
  9769. ]
  9770. },
  9771. "require": {
  9772. "php": ">=7.3"
  9773. },
  9774. "require-dev": {
  9775. "phpunit/phpunit": "^9.3",
  9776. "symfony/process": "^4.2 || ^5"
  9777. },
  9778. "type": "library",
  9779. "extra": {
  9780. "branch-alias": {
  9781. "dev-master": "4.0-dev"
  9782. }
  9783. },
  9784. "autoload": {
  9785. "classmap": [
  9786. "src/"
  9787. ]
  9788. },
  9789. "notification-url": "https://packagist.org/downloads/",
  9790. "license": [
  9791. "BSD-3-Clause"
  9792. ],
  9793. "authors": [
  9794. {
  9795. "name": "Sebastian Bergmann",
  9796. "email": "sebastian@phpunit.de"
  9797. },
  9798. {
  9799. "name": "Kore Nordmann",
  9800. "email": "mail@kore-nordmann.de"
  9801. }
  9802. ],
  9803. "description": "Diff implementation",
  9804. "homepage": "https://github.com/sebastianbergmann/diff",
  9805. "keywords": [
  9806. "diff",
  9807. "udiff",
  9808. "unidiff",
  9809. "unified diff"
  9810. ],
  9811. "support": {
  9812. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9813. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9814. },
  9815. "funding": [
  9816. {
  9817. "url": "https://github.com/sebastianbergmann",
  9818. "type": "github"
  9819. }
  9820. ],
  9821. "time": "2024-03-02T06:30:58+00:00"
  9822. },
  9823. {
  9824. "name": "sebastian/environment",
  9825. "version": "5.1.5",
  9826. "source": {
  9827. "type": "git",
  9828. "url": "https://github.com/sebastianbergmann/environment.git",
  9829. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9830. },
  9831. "dist": {
  9832. "type": "zip",
  9833. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9834. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9835. "shasum": "",
  9836. "mirrors": [
  9837. {
  9838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9839. "preferred": true
  9840. }
  9841. ]
  9842. },
  9843. "require": {
  9844. "php": ">=7.3"
  9845. },
  9846. "require-dev": {
  9847. "phpunit/phpunit": "^9.3"
  9848. },
  9849. "suggest": {
  9850. "ext-posix": "*"
  9851. },
  9852. "type": "library",
  9853. "extra": {
  9854. "branch-alias": {
  9855. "dev-master": "5.1-dev"
  9856. }
  9857. },
  9858. "autoload": {
  9859. "classmap": [
  9860. "src/"
  9861. ]
  9862. },
  9863. "notification-url": "https://packagist.org/downloads/",
  9864. "license": [
  9865. "BSD-3-Clause"
  9866. ],
  9867. "authors": [
  9868. {
  9869. "name": "Sebastian Bergmann",
  9870. "email": "sebastian@phpunit.de"
  9871. }
  9872. ],
  9873. "description": "Provides functionality to handle HHVM/PHP environments",
  9874. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9875. "keywords": [
  9876. "Xdebug",
  9877. "environment",
  9878. "hhvm"
  9879. ],
  9880. "support": {
  9881. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9882. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9883. },
  9884. "funding": [
  9885. {
  9886. "url": "https://github.com/sebastianbergmann",
  9887. "type": "github"
  9888. }
  9889. ],
  9890. "time": "2023-02-03T06:03:51+00:00"
  9891. },
  9892. {
  9893. "name": "sebastian/exporter",
  9894. "version": "4.0.7",
  9895. "source": {
  9896. "type": "git",
  9897. "url": "https://github.com/sebastianbergmann/exporter.git",
  9898. "reference": "eb49b981ef0817890129cb70f774506bebe57740"
  9899. },
  9900. "dist": {
  9901. "type": "zip",
  9902. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/eb49b981ef0817890129cb70f774506bebe57740",
  9903. "reference": "eb49b981ef0817890129cb70f774506bebe57740",
  9904. "shasum": "",
  9905. "mirrors": [
  9906. {
  9907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9908. "preferred": true
  9909. }
  9910. ]
  9911. },
  9912. "require": {
  9913. "php": ">=7.3",
  9914. "sebastian/recursion-context": "^4.0"
  9915. },
  9916. "require-dev": {
  9917. "ext-mbstring": "*",
  9918. "phpunit/phpunit": "^9.3"
  9919. },
  9920. "type": "library",
  9921. "extra": {
  9922. "branch-alias": {
  9923. "dev-master": "4.0-dev"
  9924. }
  9925. },
  9926. "autoload": {
  9927. "classmap": [
  9928. "src/"
  9929. ]
  9930. },
  9931. "notification-url": "https://packagist.org/downloads/",
  9932. "license": [
  9933. "BSD-3-Clause"
  9934. ],
  9935. "authors": [
  9936. {
  9937. "name": "Sebastian Bergmann",
  9938. "email": "sebastian@phpunit.de"
  9939. },
  9940. {
  9941. "name": "Jeff Welch",
  9942. "email": "whatthejeff@gmail.com"
  9943. },
  9944. {
  9945. "name": "Volker Dusch",
  9946. "email": "github@wallbash.com"
  9947. },
  9948. {
  9949. "name": "Adam Harvey",
  9950. "email": "aharvey@php.net"
  9951. },
  9952. {
  9953. "name": "Bernhard Schussek",
  9954. "email": "bschussek@gmail.com"
  9955. }
  9956. ],
  9957. "description": "Provides the functionality to export PHP variables for visualization",
  9958. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9959. "keywords": [
  9960. "export",
  9961. "exporter"
  9962. ],
  9963. "support": {
  9964. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9965. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.7"
  9966. },
  9967. "funding": [
  9968. {
  9969. "url": "https://github.com/sebastianbergmann",
  9970. "type": "github"
  9971. },
  9972. {
  9973. "url": "https://liberapay.com/sebastianbergmann",
  9974. "type": "liberapay"
  9975. },
  9976. {
  9977. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9978. "type": "thanks_dev"
  9979. },
  9980. {
  9981. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  9982. "type": "tidelift"
  9983. }
  9984. ],
  9985. "time": "2025-09-22T05:18:21+00:00"
  9986. },
  9987. {
  9988. "name": "sebastian/global-state",
  9989. "version": "5.0.8",
  9990. "source": {
  9991. "type": "git",
  9992. "url": "https://github.com/sebastianbergmann/global-state.git",
  9993. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  9994. },
  9995. "dist": {
  9996. "type": "zip",
  9997. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  9998. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  9999. "shasum": "",
  10000. "mirrors": [
  10001. {
  10002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10003. "preferred": true
  10004. }
  10005. ]
  10006. },
  10007. "require": {
  10008. "php": ">=7.3",
  10009. "sebastian/object-reflector": "^2.0",
  10010. "sebastian/recursion-context": "^4.0"
  10011. },
  10012. "require-dev": {
  10013. "ext-dom": "*",
  10014. "phpunit/phpunit": "^9.3"
  10015. },
  10016. "suggest": {
  10017. "ext-uopz": "*"
  10018. },
  10019. "type": "library",
  10020. "extra": {
  10021. "branch-alias": {
  10022. "dev-master": "5.0-dev"
  10023. }
  10024. },
  10025. "autoload": {
  10026. "classmap": [
  10027. "src/"
  10028. ]
  10029. },
  10030. "notification-url": "https://packagist.org/downloads/",
  10031. "license": [
  10032. "BSD-3-Clause"
  10033. ],
  10034. "authors": [
  10035. {
  10036. "name": "Sebastian Bergmann",
  10037. "email": "sebastian@phpunit.de"
  10038. }
  10039. ],
  10040. "description": "Snapshotting of global state",
  10041. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10042. "keywords": [
  10043. "global state"
  10044. ],
  10045. "support": {
  10046. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10047. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  10048. },
  10049. "funding": [
  10050. {
  10051. "url": "https://github.com/sebastianbergmann",
  10052. "type": "github"
  10053. },
  10054. {
  10055. "url": "https://liberapay.com/sebastianbergmann",
  10056. "type": "liberapay"
  10057. },
  10058. {
  10059. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10060. "type": "thanks_dev"
  10061. },
  10062. {
  10063. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10064. "type": "tidelift"
  10065. }
  10066. ],
  10067. "time": "2025-08-10T07:10:35+00:00"
  10068. },
  10069. {
  10070. "name": "sebastian/lines-of-code",
  10071. "version": "1.0.4",
  10072. "source": {
  10073. "type": "git",
  10074. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10075. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10076. },
  10077. "dist": {
  10078. "type": "zip",
  10079. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10080. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10081. "shasum": "",
  10082. "mirrors": [
  10083. {
  10084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10085. "preferred": true
  10086. }
  10087. ]
  10088. },
  10089. "require": {
  10090. "nikic/php-parser": "^4.18 || ^5.0",
  10091. "php": ">=7.3"
  10092. },
  10093. "require-dev": {
  10094. "phpunit/phpunit": "^9.3"
  10095. },
  10096. "type": "library",
  10097. "extra": {
  10098. "branch-alias": {
  10099. "dev-master": "1.0-dev"
  10100. }
  10101. },
  10102. "autoload": {
  10103. "classmap": [
  10104. "src/"
  10105. ]
  10106. },
  10107. "notification-url": "https://packagist.org/downloads/",
  10108. "license": [
  10109. "BSD-3-Clause"
  10110. ],
  10111. "authors": [
  10112. {
  10113. "name": "Sebastian Bergmann",
  10114. "email": "sebastian@phpunit.de",
  10115. "role": "lead"
  10116. }
  10117. ],
  10118. "description": "Library for counting the lines of code in PHP source code",
  10119. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10120. "support": {
  10121. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10122. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10123. },
  10124. "funding": [
  10125. {
  10126. "url": "https://github.com/sebastianbergmann",
  10127. "type": "github"
  10128. }
  10129. ],
  10130. "time": "2023-12-22T06:20:34+00:00"
  10131. },
  10132. {
  10133. "name": "sebastian/object-enumerator",
  10134. "version": "4.0.4",
  10135. "source": {
  10136. "type": "git",
  10137. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10138. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10139. },
  10140. "dist": {
  10141. "type": "zip",
  10142. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10143. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10144. "shasum": "",
  10145. "mirrors": [
  10146. {
  10147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10148. "preferred": true
  10149. }
  10150. ]
  10151. },
  10152. "require": {
  10153. "php": ">=7.3",
  10154. "sebastian/object-reflector": "^2.0",
  10155. "sebastian/recursion-context": "^4.0"
  10156. },
  10157. "require-dev": {
  10158. "phpunit/phpunit": "^9.3"
  10159. },
  10160. "type": "library",
  10161. "extra": {
  10162. "branch-alias": {
  10163. "dev-master": "4.0-dev"
  10164. }
  10165. },
  10166. "autoload": {
  10167. "classmap": [
  10168. "src/"
  10169. ]
  10170. },
  10171. "notification-url": "https://packagist.org/downloads/",
  10172. "license": [
  10173. "BSD-3-Clause"
  10174. ],
  10175. "authors": [
  10176. {
  10177. "name": "Sebastian Bergmann",
  10178. "email": "sebastian@phpunit.de"
  10179. }
  10180. ],
  10181. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10182. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10183. "support": {
  10184. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10185. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10186. },
  10187. "funding": [
  10188. {
  10189. "url": "https://github.com/sebastianbergmann",
  10190. "type": "github"
  10191. }
  10192. ],
  10193. "time": "2020-10-26T13:12:34+00:00"
  10194. },
  10195. {
  10196. "name": "sebastian/object-reflector",
  10197. "version": "2.0.4",
  10198. "source": {
  10199. "type": "git",
  10200. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10201. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10202. },
  10203. "dist": {
  10204. "type": "zip",
  10205. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10206. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10207. "shasum": "",
  10208. "mirrors": [
  10209. {
  10210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10211. "preferred": true
  10212. }
  10213. ]
  10214. },
  10215. "require": {
  10216. "php": ">=7.3"
  10217. },
  10218. "require-dev": {
  10219. "phpunit/phpunit": "^9.3"
  10220. },
  10221. "type": "library",
  10222. "extra": {
  10223. "branch-alias": {
  10224. "dev-master": "2.0-dev"
  10225. }
  10226. },
  10227. "autoload": {
  10228. "classmap": [
  10229. "src/"
  10230. ]
  10231. },
  10232. "notification-url": "https://packagist.org/downloads/",
  10233. "license": [
  10234. "BSD-3-Clause"
  10235. ],
  10236. "authors": [
  10237. {
  10238. "name": "Sebastian Bergmann",
  10239. "email": "sebastian@phpunit.de"
  10240. }
  10241. ],
  10242. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10243. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10244. "support": {
  10245. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10246. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10247. },
  10248. "funding": [
  10249. {
  10250. "url": "https://github.com/sebastianbergmann",
  10251. "type": "github"
  10252. }
  10253. ],
  10254. "time": "2020-10-26T13:14:26+00:00"
  10255. },
  10256. {
  10257. "name": "sebastian/recursion-context",
  10258. "version": "4.0.5",
  10259. "source": {
  10260. "type": "git",
  10261. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10262. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10263. },
  10264. "dist": {
  10265. "type": "zip",
  10266. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10267. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10268. "shasum": "",
  10269. "mirrors": [
  10270. {
  10271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10272. "preferred": true
  10273. }
  10274. ]
  10275. },
  10276. "require": {
  10277. "php": ">=7.3"
  10278. },
  10279. "require-dev": {
  10280. "phpunit/phpunit": "^9.3"
  10281. },
  10282. "type": "library",
  10283. "extra": {
  10284. "branch-alias": {
  10285. "dev-master": "4.0-dev"
  10286. }
  10287. },
  10288. "autoload": {
  10289. "classmap": [
  10290. "src/"
  10291. ]
  10292. },
  10293. "notification-url": "https://packagist.org/downloads/",
  10294. "license": [
  10295. "BSD-3-Clause"
  10296. ],
  10297. "authors": [
  10298. {
  10299. "name": "Sebastian Bergmann",
  10300. "email": "sebastian@phpunit.de"
  10301. },
  10302. {
  10303. "name": "Jeff Welch",
  10304. "email": "whatthejeff@gmail.com"
  10305. },
  10306. {
  10307. "name": "Adam Harvey",
  10308. "email": "aharvey@php.net"
  10309. }
  10310. ],
  10311. "description": "Provides functionality to recursively process PHP variables",
  10312. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10313. "support": {
  10314. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10315. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10316. },
  10317. "funding": [
  10318. {
  10319. "url": "https://github.com/sebastianbergmann",
  10320. "type": "github"
  10321. }
  10322. ],
  10323. "time": "2023-02-03T06:07:39+00:00"
  10324. },
  10325. {
  10326. "name": "sebastian/resource-operations",
  10327. "version": "3.0.4",
  10328. "source": {
  10329. "type": "git",
  10330. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10331. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10332. },
  10333. "dist": {
  10334. "type": "zip",
  10335. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10336. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10337. "shasum": "",
  10338. "mirrors": [
  10339. {
  10340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10341. "preferred": true
  10342. }
  10343. ]
  10344. },
  10345. "require": {
  10346. "php": ">=7.3"
  10347. },
  10348. "require-dev": {
  10349. "phpunit/phpunit": "^9.0"
  10350. },
  10351. "type": "library",
  10352. "extra": {
  10353. "branch-alias": {
  10354. "dev-main": "3.0-dev"
  10355. }
  10356. },
  10357. "autoload": {
  10358. "classmap": [
  10359. "src/"
  10360. ]
  10361. },
  10362. "notification-url": "https://packagist.org/downloads/",
  10363. "license": [
  10364. "BSD-3-Clause"
  10365. ],
  10366. "authors": [
  10367. {
  10368. "name": "Sebastian Bergmann",
  10369. "email": "sebastian@phpunit.de"
  10370. }
  10371. ],
  10372. "description": "Provides a list of PHP built-in functions that operate on resources",
  10373. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10374. "support": {
  10375. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10376. },
  10377. "funding": [
  10378. {
  10379. "url": "https://github.com/sebastianbergmann",
  10380. "type": "github"
  10381. }
  10382. ],
  10383. "abandoned": true,
  10384. "time": "2024-03-14T16:00:52+00:00"
  10385. },
  10386. {
  10387. "name": "sebastian/type",
  10388. "version": "3.2.1",
  10389. "source": {
  10390. "type": "git",
  10391. "url": "https://github.com/sebastianbergmann/type.git",
  10392. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10393. },
  10394. "dist": {
  10395. "type": "zip",
  10396. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10397. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10398. "shasum": "",
  10399. "mirrors": [
  10400. {
  10401. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10402. "preferred": true
  10403. }
  10404. ]
  10405. },
  10406. "require": {
  10407. "php": ">=7.3"
  10408. },
  10409. "require-dev": {
  10410. "phpunit/phpunit": "^9.5"
  10411. },
  10412. "type": "library",
  10413. "extra": {
  10414. "branch-alias": {
  10415. "dev-master": "3.2-dev"
  10416. }
  10417. },
  10418. "autoload": {
  10419. "classmap": [
  10420. "src/"
  10421. ]
  10422. },
  10423. "notification-url": "https://packagist.org/downloads/",
  10424. "license": [
  10425. "BSD-3-Clause"
  10426. ],
  10427. "authors": [
  10428. {
  10429. "name": "Sebastian Bergmann",
  10430. "email": "sebastian@phpunit.de",
  10431. "role": "lead"
  10432. }
  10433. ],
  10434. "description": "Collection of value objects that represent the types of the PHP type system",
  10435. "homepage": "https://github.com/sebastianbergmann/type",
  10436. "support": {
  10437. "issues": "https://github.com/sebastianbergmann/type/issues",
  10438. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10439. },
  10440. "funding": [
  10441. {
  10442. "url": "https://github.com/sebastianbergmann",
  10443. "type": "github"
  10444. }
  10445. ],
  10446. "time": "2023-02-03T06:13:03+00:00"
  10447. },
  10448. {
  10449. "name": "sebastian/version",
  10450. "version": "3.0.2",
  10451. "source": {
  10452. "type": "git",
  10453. "url": "https://github.com/sebastianbergmann/version.git",
  10454. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10455. },
  10456. "dist": {
  10457. "type": "zip",
  10458. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10459. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10460. "shasum": "",
  10461. "mirrors": [
  10462. {
  10463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10464. "preferred": true
  10465. }
  10466. ]
  10467. },
  10468. "require": {
  10469. "php": ">=7.3"
  10470. },
  10471. "type": "library",
  10472. "extra": {
  10473. "branch-alias": {
  10474. "dev-master": "3.0-dev"
  10475. }
  10476. },
  10477. "autoload": {
  10478. "classmap": [
  10479. "src/"
  10480. ]
  10481. },
  10482. "notification-url": "https://packagist.org/downloads/",
  10483. "license": [
  10484. "BSD-3-Clause"
  10485. ],
  10486. "authors": [
  10487. {
  10488. "name": "Sebastian Bergmann",
  10489. "email": "sebastian@phpunit.de",
  10490. "role": "lead"
  10491. }
  10492. ],
  10493. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10494. "homepage": "https://github.com/sebastianbergmann/version",
  10495. "support": {
  10496. "issues": "https://github.com/sebastianbergmann/version/issues",
  10497. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10498. },
  10499. "funding": [
  10500. {
  10501. "url": "https://github.com/sebastianbergmann",
  10502. "type": "github"
  10503. }
  10504. ],
  10505. "time": "2020-09-28T06:39:44+00:00"
  10506. },
  10507. {
  10508. "name": "theseer/tokenizer",
  10509. "version": "1.2.3",
  10510. "source": {
  10511. "type": "git",
  10512. "url": "https://github.com/theseer/tokenizer.git",
  10513. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10514. },
  10515. "dist": {
  10516. "type": "zip",
  10517. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10518. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10519. "shasum": "",
  10520. "mirrors": [
  10521. {
  10522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10523. "preferred": true
  10524. }
  10525. ]
  10526. },
  10527. "require": {
  10528. "ext-dom": "*",
  10529. "ext-tokenizer": "*",
  10530. "ext-xmlwriter": "*",
  10531. "php": "^7.2 || ^8.0"
  10532. },
  10533. "type": "library",
  10534. "autoload": {
  10535. "classmap": [
  10536. "src/"
  10537. ]
  10538. },
  10539. "notification-url": "https://packagist.org/downloads/",
  10540. "license": [
  10541. "BSD-3-Clause"
  10542. ],
  10543. "authors": [
  10544. {
  10545. "name": "Arne Blankerts",
  10546. "email": "arne@blankerts.de",
  10547. "role": "Developer"
  10548. }
  10549. ],
  10550. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10551. "support": {
  10552. "issues": "https://github.com/theseer/tokenizer/issues",
  10553. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10554. },
  10555. "funding": [
  10556. {
  10557. "url": "https://github.com/theseer",
  10558. "type": "github"
  10559. }
  10560. ],
  10561. "time": "2024-03-03T12:36:25+00:00"
  10562. }
  10563. ],
  10564. "aliases": [],
  10565. "minimum-stability": "dev",
  10566. "stability-flags": {
  10567. "fukuball/jieba-php": 20
  10568. },
  10569. "prefer-stable": true,
  10570. "prefer-lowest": false,
  10571. "platform": {
  10572. "php": "^8.0",
  10573. "ext-json": "*"
  10574. },
  10575. "platform-dev": {},
  10576. "plugin-api-version": "2.6.0"
  10577. }