composer.lock 352 KB

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