composer.lock 360 KB

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