composer.lock 356 KB

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