composer.lock 486 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508
  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": "b43489ab687e5336c8138f2f87463664",
  8. "packages": [
  9. {
  10. "name": "arcanedev/log-viewer",
  11. "version": "7.1.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/ARCANEDEV/LogViewer.git",
  15. "reference": "46643ff4865e6aa9bfe97d10c962a2661480191d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/ARCANEDEV/LogViewer/zipball/46643ff4865e6aa9bfe97d10c962a2661480191d",
  20. "reference": "46643ff4865e6aa9bfe97d10c962a2661480191d",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "arcanedev/support": "^7.0",
  31. "ext-json": "*",
  32. "php": "^7.2.5",
  33. "psr/log": "^1.0"
  34. },
  35. "require-dev": {
  36. "orchestra/testbench": "^5.0",
  37. "phpunit/phpunit": "^8.5"
  38. },
  39. "type": "library",
  40. "extra": {
  41. "laravel": {
  42. "providers": [
  43. "Arcanedev\\LogViewer\\LogViewerServiceProvider",
  44. "Arcanedev\\LogViewer\\Providers\\DeferredServicesProvider"
  45. ]
  46. }
  47. },
  48. "autoload": {
  49. "files": [
  50. "helpers.php"
  51. ],
  52. "psr-4": {
  53. "Arcanedev\\LogViewer\\": "src/"
  54. }
  55. },
  56. "notification-url": "https://packagist.org/downloads/",
  57. "license": [
  58. "MIT"
  59. ],
  60. "authors": [
  61. {
  62. "name": "ARCANEDEV",
  63. "email": "[email protected]",
  64. "homepage": "https://github.com/arcanedev-maroc",
  65. "role": "Developer"
  66. }
  67. ],
  68. "description": "Provides a Log Viewer for Laravel",
  69. "homepage": "https://github.com/ARCANEDEV/LogViewer",
  70. "keywords": [
  71. "arcanedev",
  72. "arcanesoft",
  73. "laravel",
  74. "log",
  75. "log viewer",
  76. "log-viewer",
  77. "logviewer"
  78. ],
  79. "support": {
  80. "issues": "https://github.com/ARCANEDEV/LogViewer/issues",
  81. "source": "https://github.com/ARCANEDEV/LogViewer/tree/master"
  82. },
  83. "time": "2020-07-06T08:31:38+00:00"
  84. },
  85. {
  86. "name": "arcanedev/support",
  87. "version": "7.1.2",
  88. "source": {
  89. "type": "git",
  90. "url": "https://github.com/ARCANEDEV/Support.git",
  91. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  92. },
  93. "dist": {
  94. "type": "zip",
  95. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  96. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  97. "shasum": "",
  98. "mirrors": [
  99. {
  100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  101. "preferred": true
  102. }
  103. ]
  104. },
  105. "require": {
  106. "illuminate/filesystem": "^7.0",
  107. "illuminate/support": "^7.0",
  108. "php": "^7.2.5"
  109. },
  110. "require-dev": {
  111. "orchestra/testbench": "^5.0",
  112. "phpunit/phpunit": "^8.0|^9.0"
  113. },
  114. "type": "library",
  115. "extra": {
  116. "branch-alias": {
  117. "dev-master": "7.x-dev"
  118. }
  119. },
  120. "autoload": {
  121. "files": [
  122. "helpers.php"
  123. ],
  124. "psr-4": {
  125. "Arcanedev\\Support\\": "src/"
  126. }
  127. },
  128. "notification-url": "https://packagist.org/downloads/",
  129. "license": [
  130. "MIT"
  131. ],
  132. "authors": [
  133. {
  134. "name": "ARCANEDEV",
  135. "email": "[email protected]",
  136. "homepage": "https://github.com/arcanedev-maroc"
  137. }
  138. ],
  139. "description": "ARCANEDEV Support Helpers",
  140. "homepage": "https://github.com/ARCANEDEV/Support",
  141. "keywords": [
  142. "arcanedev",
  143. "arcanesoft",
  144. "laravel",
  145. "support"
  146. ],
  147. "support": {
  148. "issues": "https://github.com/ARCANEDEV/Support/issues",
  149. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  150. },
  151. "time": "2020-03-12T09:28:19+00:00"
  152. },
  153. {
  154. "name": "asm89/stack-cors",
  155. "version": "v2.1.1",
  156. "source": {
  157. "type": "git",
  158. "url": "https://github.com/asm89/stack-cors.git",
  159. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  160. },
  161. "dist": {
  162. "type": "zip",
  163. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  164. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  165. "shasum": "",
  166. "mirrors": [
  167. {
  168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  169. "preferred": true
  170. }
  171. ]
  172. },
  173. "require": {
  174. "php": "^7.2|^8.0",
  175. "symfony/http-foundation": "^4|^5|^6",
  176. "symfony/http-kernel": "^4|^5|^6"
  177. },
  178. "require-dev": {
  179. "phpunit/phpunit": "^7|^9",
  180. "squizlabs/php_codesniffer": "^3.5"
  181. },
  182. "type": "library",
  183. "extra": {
  184. "branch-alias": {
  185. "dev-master": "2.1-dev"
  186. }
  187. },
  188. "autoload": {
  189. "psr-4": {
  190. "Asm89\\Stack\\": "src/"
  191. }
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "Alexander",
  200. "email": "[email protected]"
  201. }
  202. ],
  203. "description": "Cross-origin resource sharing library and stack middleware",
  204. "homepage": "https://github.com/asm89/stack-cors",
  205. "keywords": [
  206. "cors",
  207. "stack"
  208. ],
  209. "support": {
  210. "issues": "https://github.com/asm89/stack-cors/issues",
  211. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  212. },
  213. "time": "2022-01-18T09:12:03+00:00"
  214. },
  215. {
  216. "name": "brick/math",
  217. "version": "0.9.3",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/brick/math.git",
  221. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  226. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  227. "shasum": "",
  228. "mirrors": [
  229. {
  230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  231. "preferred": true
  232. }
  233. ]
  234. },
  235. "require": {
  236. "ext-json": "*",
  237. "php": "^7.1 || ^8.0"
  238. },
  239. "require-dev": {
  240. "php-coveralls/php-coveralls": "^2.2",
  241. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  242. "vimeo/psalm": "4.9.2"
  243. },
  244. "type": "library",
  245. "autoload": {
  246. "psr-4": {
  247. "Brick\\Math\\": "src/"
  248. }
  249. },
  250. "notification-url": "https://packagist.org/downloads/",
  251. "license": [
  252. "MIT"
  253. ],
  254. "description": "Arbitrary-precision arithmetic library",
  255. "keywords": [
  256. "Arbitrary-precision",
  257. "BigInteger",
  258. "BigRational",
  259. "arithmetic",
  260. "bigdecimal",
  261. "bignum",
  262. "brick",
  263. "math"
  264. ],
  265. "support": {
  266. "issues": "https://github.com/brick/math/issues",
  267. "source": "https://github.com/brick/math/tree/0.9.3"
  268. },
  269. "funding": [
  270. {
  271. "url": "https://github.com/BenMorel",
  272. "type": "github"
  273. },
  274. {
  275. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  276. "type": "tidelift"
  277. }
  278. ],
  279. "time": "2021-08-15T20:50:18+00:00"
  280. },
  281. {
  282. "name": "composer/ca-bundle",
  283. "version": "1.3.2",
  284. "source": {
  285. "type": "git",
  286. "url": "https://github.com/composer/ca-bundle.git",
  287. "reference": "fd5dd441932a7e10ca6e5b490e272d34c8430640"
  288. },
  289. "dist": {
  290. "type": "zip",
  291. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/fd5dd441932a7e10ca6e5b490e272d34c8430640",
  292. "reference": "fd5dd441932a7e10ca6e5b490e272d34c8430640",
  293. "shasum": "",
  294. "mirrors": [
  295. {
  296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  297. "preferred": true
  298. }
  299. ]
  300. },
  301. "require": {
  302. "ext-openssl": "*",
  303. "ext-pcre": "*",
  304. "php": "^5.3.2 || ^7.0 || ^8.0"
  305. },
  306. "require-dev": {
  307. "phpstan/phpstan": "^0.12.55",
  308. "psr/log": "^1.0",
  309. "symfony/phpunit-bridge": "^4.2 || ^5",
  310. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  311. },
  312. "type": "library",
  313. "extra": {
  314. "branch-alias": {
  315. "dev-main": "1.x-dev"
  316. }
  317. },
  318. "autoload": {
  319. "psr-4": {
  320. "Composer\\CaBundle\\": "src"
  321. }
  322. },
  323. "notification-url": "https://packagist.org/downloads/",
  324. "license": [
  325. "MIT"
  326. ],
  327. "authors": [
  328. {
  329. "name": "Jordi Boggiano",
  330. "email": "[email protected]",
  331. "homepage": "http://seld.be"
  332. }
  333. ],
  334. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  335. "keywords": [
  336. "cabundle",
  337. "cacert",
  338. "certificate",
  339. "ssl",
  340. "tls"
  341. ],
  342. "support": {
  343. "irc": "irc://irc.freenode.org/composer",
  344. "issues": "https://github.com/composer/ca-bundle/issues",
  345. "source": "https://github.com/composer/ca-bundle/tree/1.3.2"
  346. },
  347. "funding": [
  348. {
  349. "url": "https://packagist.com",
  350. "type": "custom"
  351. },
  352. {
  353. "url": "https://github.com/composer",
  354. "type": "github"
  355. },
  356. {
  357. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  358. "type": "tidelift"
  359. }
  360. ],
  361. "time": "2022-05-24T11:56:16+00:00"
  362. },
  363. {
  364. "name": "doctrine/cache",
  365. "version": "2.2.0",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/doctrine/cache.git",
  369. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  374. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  375. "shasum": "",
  376. "mirrors": [
  377. {
  378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  379. "preferred": true
  380. }
  381. ]
  382. },
  383. "require": {
  384. "php": "~7.1 || ^8.0"
  385. },
  386. "conflict": {
  387. "doctrine/common": ">2.2,<2.4"
  388. },
  389. "require-dev": {
  390. "cache/integration-tests": "dev-master",
  391. "doctrine/coding-standard": "^9",
  392. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  393. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  394. "symfony/cache": "^4.4 || ^5.4 || ^6",
  395. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  396. },
  397. "type": "library",
  398. "autoload": {
  399. "psr-4": {
  400. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "MIT"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Guilherme Blanco",
  410. "email": "[email protected]"
  411. },
  412. {
  413. "name": "Roman Borschel",
  414. "email": "[email protected]"
  415. },
  416. {
  417. "name": "Benjamin Eberlei",
  418. "email": "[email protected]"
  419. },
  420. {
  421. "name": "Jonathan Wage",
  422. "email": "[email protected]"
  423. },
  424. {
  425. "name": "Johannes Schmitt",
  426. "email": "[email protected]"
  427. }
  428. ],
  429. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  430. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  431. "keywords": [
  432. "abstraction",
  433. "apcu",
  434. "cache",
  435. "caching",
  436. "couchdb",
  437. "memcached",
  438. "php",
  439. "redis",
  440. "xcache"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/doctrine/cache/issues",
  444. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  445. },
  446. "funding": [
  447. {
  448. "url": "https://www.doctrine-project.org/sponsorship.html",
  449. "type": "custom"
  450. },
  451. {
  452. "url": "https://www.patreon.com/phpdoctrine",
  453. "type": "patreon"
  454. },
  455. {
  456. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  457. "type": "tidelift"
  458. }
  459. ],
  460. "time": "2022-05-20T20:07:39+00:00"
  461. },
  462. {
  463. "name": "doctrine/dbal",
  464. "version": "2.13.9",
  465. "source": {
  466. "type": "git",
  467. "url": "https://github.com/doctrine/dbal.git",
  468. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8"
  469. },
  470. "dist": {
  471. "type": "zip",
  472. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  473. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  474. "shasum": "",
  475. "mirrors": [
  476. {
  477. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  478. "preferred": true
  479. }
  480. ]
  481. },
  482. "require": {
  483. "doctrine/cache": "^1.0|^2.0",
  484. "doctrine/deprecations": "^0.5.3|^1",
  485. "doctrine/event-manager": "^1.0",
  486. "ext-pdo": "*",
  487. "php": "^7.1 || ^8"
  488. },
  489. "require-dev": {
  490. "doctrine/coding-standard": "9.0.0",
  491. "jetbrains/phpstorm-stubs": "2021.1",
  492. "phpstan/phpstan": "1.4.6",
  493. "phpunit/phpunit": "^7.5.20|^8.5|9.5.16",
  494. "psalm/plugin-phpunit": "0.16.1",
  495. "squizlabs/php_codesniffer": "3.6.2",
  496. "symfony/cache": "^4.4",
  497. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  498. "vimeo/psalm": "4.22.0"
  499. },
  500. "suggest": {
  501. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  502. },
  503. "bin": [
  504. "bin/doctrine-dbal"
  505. ],
  506. "type": "library",
  507. "autoload": {
  508. "psr-4": {
  509. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  510. }
  511. },
  512. "notification-url": "https://packagist.org/downloads/",
  513. "license": [
  514. "MIT"
  515. ],
  516. "authors": [
  517. {
  518. "name": "Guilherme Blanco",
  519. "email": "[email protected]"
  520. },
  521. {
  522. "name": "Roman Borschel",
  523. "email": "[email protected]"
  524. },
  525. {
  526. "name": "Benjamin Eberlei",
  527. "email": "[email protected]"
  528. },
  529. {
  530. "name": "Jonathan Wage",
  531. "email": "[email protected]"
  532. }
  533. ],
  534. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  535. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  536. "keywords": [
  537. "abstraction",
  538. "database",
  539. "db2",
  540. "dbal",
  541. "mariadb",
  542. "mssql",
  543. "mysql",
  544. "oci8",
  545. "oracle",
  546. "pdo",
  547. "pgsql",
  548. "postgresql",
  549. "queryobject",
  550. "sasql",
  551. "sql",
  552. "sqlanywhere",
  553. "sqlite",
  554. "sqlserver",
  555. "sqlsrv"
  556. ],
  557. "support": {
  558. "issues": "https://github.com/doctrine/dbal/issues",
  559. "source": "https://github.com/doctrine/dbal/tree/2.13.9"
  560. },
  561. "funding": [
  562. {
  563. "url": "https://www.doctrine-project.org/sponsorship.html",
  564. "type": "custom"
  565. },
  566. {
  567. "url": "https://www.patreon.com/phpdoctrine",
  568. "type": "patreon"
  569. },
  570. {
  571. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  572. "type": "tidelift"
  573. }
  574. ],
  575. "time": "2022-05-02T20:28:55+00:00"
  576. },
  577. {
  578. "name": "doctrine/deprecations",
  579. "version": "v0.5.3",
  580. "source": {
  581. "type": "git",
  582. "url": "https://github.com/doctrine/deprecations.git",
  583. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  584. },
  585. "dist": {
  586. "type": "zip",
  587. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  588. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  589. "shasum": "",
  590. "mirrors": [
  591. {
  592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  593. "preferred": true
  594. }
  595. ]
  596. },
  597. "require": {
  598. "php": "^7.1|^8.0"
  599. },
  600. "require-dev": {
  601. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  602. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  603. "psr/log": "^1.0"
  604. },
  605. "suggest": {
  606. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  607. },
  608. "type": "library",
  609. "autoload": {
  610. "psr-4": {
  611. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "MIT"
  617. ],
  618. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  619. "homepage": "https://www.doctrine-project.org/",
  620. "support": {
  621. "issues": "https://github.com/doctrine/deprecations/issues",
  622. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  623. },
  624. "time": "2021-03-21T12:59:47+00:00"
  625. },
  626. {
  627. "name": "doctrine/event-manager",
  628. "version": "1.1.1",
  629. "source": {
  630. "type": "git",
  631. "url": "https://github.com/doctrine/event-manager.git",
  632. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  633. },
  634. "dist": {
  635. "type": "zip",
  636. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  637. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  638. "shasum": "",
  639. "mirrors": [
  640. {
  641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  642. "preferred": true
  643. }
  644. ]
  645. },
  646. "require": {
  647. "php": "^7.1 || ^8.0"
  648. },
  649. "conflict": {
  650. "doctrine/common": "<2.9@dev"
  651. },
  652. "require-dev": {
  653. "doctrine/coding-standard": "^6.0",
  654. "phpunit/phpunit": "^7.0"
  655. },
  656. "type": "library",
  657. "extra": {
  658. "branch-alias": {
  659. "dev-master": "1.0.x-dev"
  660. }
  661. },
  662. "autoload": {
  663. "psr-4": {
  664. "Doctrine\\Common\\": "lib/Doctrine/Common"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "authors": [
  672. {
  673. "name": "Guilherme Blanco",
  674. "email": "[email protected]"
  675. },
  676. {
  677. "name": "Roman Borschel",
  678. "email": "[email protected]"
  679. },
  680. {
  681. "name": "Benjamin Eberlei",
  682. "email": "[email protected]"
  683. },
  684. {
  685. "name": "Jonathan Wage",
  686. "email": "[email protected]"
  687. },
  688. {
  689. "name": "Johannes Schmitt",
  690. "email": "[email protected]"
  691. },
  692. {
  693. "name": "Marco Pivetta",
  694. "email": "[email protected]"
  695. }
  696. ],
  697. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  698. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  699. "keywords": [
  700. "event",
  701. "event dispatcher",
  702. "event manager",
  703. "event system",
  704. "events"
  705. ],
  706. "support": {
  707. "issues": "https://github.com/doctrine/event-manager/issues",
  708. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  709. },
  710. "funding": [
  711. {
  712. "url": "https://www.doctrine-project.org/sponsorship.html",
  713. "type": "custom"
  714. },
  715. {
  716. "url": "https://www.patreon.com/phpdoctrine",
  717. "type": "patreon"
  718. },
  719. {
  720. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  721. "type": "tidelift"
  722. }
  723. ],
  724. "time": "2020-05-29T18:28:51+00:00"
  725. },
  726. {
  727. "name": "doctrine/inflector",
  728. "version": "2.0.4",
  729. "source": {
  730. "type": "git",
  731. "url": "https://github.com/doctrine/inflector.git",
  732. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  733. },
  734. "dist": {
  735. "type": "zip",
  736. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  737. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  738. "shasum": "",
  739. "mirrors": [
  740. {
  741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  742. "preferred": true
  743. }
  744. ]
  745. },
  746. "require": {
  747. "php": "^7.2 || ^8.0"
  748. },
  749. "require-dev": {
  750. "doctrine/coding-standard": "^8.2",
  751. "phpstan/phpstan": "^0.12",
  752. "phpstan/phpstan-phpunit": "^0.12",
  753. "phpstan/phpstan-strict-rules": "^0.12",
  754. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  755. "vimeo/psalm": "^4.10"
  756. },
  757. "type": "library",
  758. "autoload": {
  759. "psr-4": {
  760. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Guilherme Blanco",
  770. "email": "[email protected]"
  771. },
  772. {
  773. "name": "Roman Borschel",
  774. "email": "[email protected]"
  775. },
  776. {
  777. "name": "Benjamin Eberlei",
  778. "email": "[email protected]"
  779. },
  780. {
  781. "name": "Jonathan Wage",
  782. "email": "[email protected]"
  783. },
  784. {
  785. "name": "Johannes Schmitt",
  786. "email": "[email protected]"
  787. }
  788. ],
  789. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  790. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  791. "keywords": [
  792. "inflection",
  793. "inflector",
  794. "lowercase",
  795. "manipulation",
  796. "php",
  797. "plural",
  798. "singular",
  799. "strings",
  800. "uppercase",
  801. "words"
  802. ],
  803. "support": {
  804. "issues": "https://github.com/doctrine/inflector/issues",
  805. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  806. },
  807. "funding": [
  808. {
  809. "url": "https://www.doctrine-project.org/sponsorship.html",
  810. "type": "custom"
  811. },
  812. {
  813. "url": "https://www.patreon.com/phpdoctrine",
  814. "type": "patreon"
  815. },
  816. {
  817. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  818. "type": "tidelift"
  819. }
  820. ],
  821. "time": "2021-10-22T20:16:43+00:00"
  822. },
  823. {
  824. "name": "doctrine/lexer",
  825. "version": "1.2.3",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/doctrine/lexer.git",
  829. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  834. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  835. "shasum": "",
  836. "mirrors": [
  837. {
  838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  839. "preferred": true
  840. }
  841. ]
  842. },
  843. "require": {
  844. "php": "^7.1 || ^8.0"
  845. },
  846. "require-dev": {
  847. "doctrine/coding-standard": "^9.0",
  848. "phpstan/phpstan": "^1.3",
  849. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  850. "vimeo/psalm": "^4.11"
  851. },
  852. "type": "library",
  853. "autoload": {
  854. "psr-4": {
  855. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  856. }
  857. },
  858. "notification-url": "https://packagist.org/downloads/",
  859. "license": [
  860. "MIT"
  861. ],
  862. "authors": [
  863. {
  864. "name": "Guilherme Blanco",
  865. "email": "[email protected]"
  866. },
  867. {
  868. "name": "Roman Borschel",
  869. "email": "[email protected]"
  870. },
  871. {
  872. "name": "Johannes Schmitt",
  873. "email": "[email protected]"
  874. }
  875. ],
  876. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  877. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  878. "keywords": [
  879. "annotations",
  880. "docblock",
  881. "lexer",
  882. "parser",
  883. "php"
  884. ],
  885. "support": {
  886. "issues": "https://github.com/doctrine/lexer/issues",
  887. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  888. },
  889. "funding": [
  890. {
  891. "url": "https://www.doctrine-project.org/sponsorship.html",
  892. "type": "custom"
  893. },
  894. {
  895. "url": "https://www.patreon.com/phpdoctrine",
  896. "type": "patreon"
  897. },
  898. {
  899. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  900. "type": "tidelift"
  901. }
  902. ],
  903. "time": "2022-02-28T11:07:21+00:00"
  904. },
  905. {
  906. "name": "dragonmantank/cron-expression",
  907. "version": "v2.3.1",
  908. "source": {
  909. "type": "git",
  910. "url": "https://github.com/dragonmantank/cron-expression.git",
  911. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  912. },
  913. "dist": {
  914. "type": "zip",
  915. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  916. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  917. "shasum": "",
  918. "mirrors": [
  919. {
  920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  921. "preferred": true
  922. }
  923. ]
  924. },
  925. "require": {
  926. "php": "^7.0|^8.0"
  927. },
  928. "require-dev": {
  929. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  930. },
  931. "type": "library",
  932. "extra": {
  933. "branch-alias": {
  934. "dev-master": "2.3-dev"
  935. }
  936. },
  937. "autoload": {
  938. "psr-4": {
  939. "Cron\\": "src/Cron/"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Michael Dowling",
  949. "email": "[email protected]",
  950. "homepage": "https://github.com/mtdowling"
  951. },
  952. {
  953. "name": "Chris Tankersley",
  954. "email": "[email protected]",
  955. "homepage": "https://github.com/dragonmantank"
  956. }
  957. ],
  958. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  959. "keywords": [
  960. "cron",
  961. "schedule"
  962. ],
  963. "support": {
  964. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  965. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  966. },
  967. "funding": [
  968. {
  969. "url": "https://github.com/dragonmantank",
  970. "type": "github"
  971. }
  972. ],
  973. "time": "2020-10-13T00:52:37+00:00"
  974. },
  975. {
  976. "name": "egulias/email-validator",
  977. "version": "2.1.25",
  978. "source": {
  979. "type": "git",
  980. "url": "https://github.com/egulias/EmailValidator.git",
  981. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  982. },
  983. "dist": {
  984. "type": "zip",
  985. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  986. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  987. "shasum": "",
  988. "mirrors": [
  989. {
  990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  991. "preferred": true
  992. }
  993. ]
  994. },
  995. "require": {
  996. "doctrine/lexer": "^1.0.1",
  997. "php": ">=5.5",
  998. "symfony/polyfill-intl-idn": "^1.10"
  999. },
  1000. "require-dev": {
  1001. "dominicsayers/isemail": "^3.0.7",
  1002. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1003. "satooshi/php-coveralls": "^1.0.1"
  1004. },
  1005. "suggest": {
  1006. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1007. },
  1008. "type": "library",
  1009. "extra": {
  1010. "branch-alias": {
  1011. "dev-master": "2.1.x-dev"
  1012. }
  1013. },
  1014. "autoload": {
  1015. "psr-4": {
  1016. "Egulias\\EmailValidator\\": "src"
  1017. }
  1018. },
  1019. "notification-url": "https://packagist.org/downloads/",
  1020. "license": [
  1021. "MIT"
  1022. ],
  1023. "authors": [
  1024. {
  1025. "name": "Eduardo Gulias Davis"
  1026. }
  1027. ],
  1028. "description": "A library for validating emails against several RFCs",
  1029. "homepage": "https://github.com/egulias/EmailValidator",
  1030. "keywords": [
  1031. "email",
  1032. "emailvalidation",
  1033. "emailvalidator",
  1034. "validation",
  1035. "validator"
  1036. ],
  1037. "support": {
  1038. "issues": "https://github.com/egulias/EmailValidator/issues",
  1039. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1040. },
  1041. "funding": [
  1042. {
  1043. "url": "https://github.com/egulias",
  1044. "type": "github"
  1045. }
  1046. ],
  1047. "time": "2020-12-29T14:50:06+00:00"
  1048. },
  1049. {
  1050. "name": "elfsundae/bearychat",
  1051. "version": "1.3.1",
  1052. "source": {
  1053. "type": "git",
  1054. "url": "https://github.com/ElfSundae/bearychat.git",
  1055. "reference": "b3c7437d0e24463504679931a482e9b642d93024"
  1056. },
  1057. "dist": {
  1058. "type": "zip",
  1059. "url": "https://api.github.com/repos/ElfSundae/bearychat/zipball/b3c7437d0e24463504679931a482e9b642d93024",
  1060. "reference": "b3c7437d0e24463504679931a482e9b642d93024",
  1061. "shasum": "",
  1062. "mirrors": [
  1063. {
  1064. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1065. "preferred": true
  1066. }
  1067. ]
  1068. },
  1069. "require": {
  1070. "ext-mbstring": "*",
  1071. "guzzlehttp/guzzle": "~5.3|~6.0",
  1072. "php": ">=5.4.0"
  1073. },
  1074. "require-dev": {
  1075. "mockery/mockery": "0.9.*",
  1076. "phpunit/phpunit": "~5.7"
  1077. },
  1078. "suggest": {
  1079. "elfsundae/laravel-bearychat": "Required for Laravel integration.",
  1080. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  1081. },
  1082. "type": "library",
  1083. "autoload": {
  1084. "psr-4": {
  1085. "ElfSundae\\BearyChat\\": "src/"
  1086. }
  1087. },
  1088. "notification-url": "https://packagist.org/downloads/",
  1089. "license": [
  1090. "MIT"
  1091. ],
  1092. "authors": [
  1093. {
  1094. "name": "Elf Sundae",
  1095. "email": "[email protected]",
  1096. "homepage": "https://0x123.com"
  1097. }
  1098. ],
  1099. "description": "An elegant way of interacting with BearyChat webhooks.",
  1100. "homepage": "https://github.com/ElfSundae/bearychat",
  1101. "keywords": [
  1102. "bearychat",
  1103. "incoming",
  1104. "outgoing",
  1105. "robot",
  1106. "webhook"
  1107. ],
  1108. "support": {
  1109. "issues": "https://github.com/ElfSundae/bearychat/issues",
  1110. "source": "https://github.com/ElfSundae/bearychat/tree/master"
  1111. },
  1112. "time": "2017-09-04T05:54:05+00:00"
  1113. },
  1114. {
  1115. "name": "elfsundae/laravel-bearychat",
  1116. "version": "1.6.0",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/ElfSundae/laravel-bearychat.git",
  1120. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/ElfSundae/laravel-bearychat/zipball/417a15868e46c9d664a437532c5ddd9be3fe9b04",
  1125. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04",
  1126. "shasum": "",
  1127. "mirrors": [
  1128. {
  1129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1130. "preferred": true
  1131. }
  1132. ]
  1133. },
  1134. "require": {
  1135. "elfsundae/bearychat": "^1.3.1",
  1136. "illuminate/support": "~5.0|~6.0|~7.0|~8.0",
  1137. "php": ">=5.6.4"
  1138. },
  1139. "require-dev": {
  1140. "mockery/mockery": "~0.9|~1.0",
  1141. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0|~9.0"
  1142. },
  1143. "suggest": {
  1144. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  1145. },
  1146. "type": "library",
  1147. "extra": {
  1148. "laravel": {
  1149. "providers": [
  1150. "ElfSundae\\BearyChat\\Laravel\\ServiceProvider"
  1151. ],
  1152. "aliases": {
  1153. "BearyChat": "ElfSundae\\BearyChat\\Laravel\\BearyChat"
  1154. }
  1155. }
  1156. },
  1157. "autoload": {
  1158. "files": [
  1159. "src/helpers.php"
  1160. ],
  1161. "psr-4": {
  1162. "ElfSundae\\BearyChat\\Laravel\\": "src/"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "Elf Sundae",
  1172. "email": "[email protected]",
  1173. "homepage": "https://0x123.com"
  1174. }
  1175. ],
  1176. "description": "Laravel integration for BearyChat.",
  1177. "homepage": "https://github.com/ElfSundae/laravel-bearychat",
  1178. "keywords": [
  1179. "bearychat",
  1180. "incoming",
  1181. "laravel",
  1182. "outgoing",
  1183. "robot",
  1184. "webhook"
  1185. ],
  1186. "support": {
  1187. "issues": "https://github.com/ElfSundae/laravel-bearychat/issues",
  1188. "source": "https://github.com/ElfSundae/laravel-bearychat/tree/1.6.0"
  1189. },
  1190. "time": "2020-09-13T14:19:31+00:00"
  1191. },
  1192. {
  1193. "name": "ezyang/htmlpurifier",
  1194. "version": "v4.13.0",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/ezyang/htmlpurifier.git",
  1198. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1203. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1204. "shasum": "",
  1205. "mirrors": [
  1206. {
  1207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1208. "preferred": true
  1209. }
  1210. ]
  1211. },
  1212. "require": {
  1213. "php": ">=5.2"
  1214. },
  1215. "require-dev": {
  1216. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1217. },
  1218. "type": "library",
  1219. "autoload": {
  1220. "files": [
  1221. "library/HTMLPurifier.composer.php"
  1222. ],
  1223. "psr-0": {
  1224. "HTMLPurifier": "library/"
  1225. },
  1226. "exclude-from-classmap": [
  1227. "/library/HTMLPurifier/Language/"
  1228. ]
  1229. },
  1230. "notification-url": "https://packagist.org/downloads/",
  1231. "license": [
  1232. "LGPL-2.1-or-later"
  1233. ],
  1234. "authors": [
  1235. {
  1236. "name": "Edward Z. Yang",
  1237. "email": "[email protected]",
  1238. "homepage": "http://ezyang.com"
  1239. }
  1240. ],
  1241. "description": "Standards compliant HTML filter written in PHP",
  1242. "homepage": "http://htmlpurifier.org/",
  1243. "keywords": [
  1244. "html"
  1245. ],
  1246. "support": {
  1247. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1248. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1249. },
  1250. "time": "2020-06-29T00:56:53+00:00"
  1251. },
  1252. {
  1253. "name": "fideloper/proxy",
  1254. "version": "4.4.1",
  1255. "source": {
  1256. "type": "git",
  1257. "url": "https://github.com/fideloper/TrustedProxy.git",
  1258. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1259. },
  1260. "dist": {
  1261. "type": "zip",
  1262. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1263. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1264. "shasum": "",
  1265. "mirrors": [
  1266. {
  1267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1268. "preferred": true
  1269. }
  1270. ]
  1271. },
  1272. "require": {
  1273. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1274. "php": ">=5.4.0"
  1275. },
  1276. "require-dev": {
  1277. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1278. "mockery/mockery": "^1.0",
  1279. "phpunit/phpunit": "^6.0"
  1280. },
  1281. "type": "library",
  1282. "extra": {
  1283. "laravel": {
  1284. "providers": [
  1285. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1286. ]
  1287. }
  1288. },
  1289. "autoload": {
  1290. "psr-4": {
  1291. "Fideloper\\Proxy\\": "src/"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "MIT"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Chris Fidao",
  1301. "email": "[email protected]"
  1302. }
  1303. ],
  1304. "description": "Set trusted proxies for Laravel",
  1305. "keywords": [
  1306. "load balancing",
  1307. "proxy",
  1308. "trusted proxy"
  1309. ],
  1310. "support": {
  1311. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1312. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1313. },
  1314. "time": "2020-10-22T13:48:01+00:00"
  1315. },
  1316. {
  1317. "name": "fruitcake/laravel-cors",
  1318. "version": "v2.2.0",
  1319. "source": {
  1320. "type": "git",
  1321. "url": "https://github.com/fruitcake/laravel-cors.git",
  1322. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1323. },
  1324. "dist": {
  1325. "type": "zip",
  1326. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1327. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1328. "shasum": "",
  1329. "mirrors": [
  1330. {
  1331. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1332. "preferred": true
  1333. }
  1334. ]
  1335. },
  1336. "require": {
  1337. "asm89/stack-cors": "^2.0.1",
  1338. "illuminate/contracts": "^6|^7|^8|^9",
  1339. "illuminate/support": "^6|^7|^8|^9",
  1340. "php": ">=7.2"
  1341. },
  1342. "require-dev": {
  1343. "laravel/framework": "^6|^7.24|^8",
  1344. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1345. "phpunit/phpunit": "^6|^7|^8|^9",
  1346. "squizlabs/php_codesniffer": "^3.5"
  1347. },
  1348. "type": "library",
  1349. "extra": {
  1350. "branch-alias": {
  1351. "dev-master": "2.1-dev"
  1352. },
  1353. "laravel": {
  1354. "providers": [
  1355. "Fruitcake\\Cors\\CorsServiceProvider"
  1356. ]
  1357. }
  1358. },
  1359. "autoload": {
  1360. "psr-4": {
  1361. "Fruitcake\\Cors\\": "src/"
  1362. }
  1363. },
  1364. "notification-url": "https://packagist.org/downloads/",
  1365. "license": [
  1366. "MIT"
  1367. ],
  1368. "authors": [
  1369. {
  1370. "name": "Fruitcake",
  1371. "homepage": "https://fruitcake.nl"
  1372. },
  1373. {
  1374. "name": "Barry vd. Heuvel",
  1375. "email": "[email protected]"
  1376. }
  1377. ],
  1378. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1379. "keywords": [
  1380. "api",
  1381. "cors",
  1382. "crossdomain",
  1383. "laravel"
  1384. ],
  1385. "support": {
  1386. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1387. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1388. },
  1389. "funding": [
  1390. {
  1391. "url": "https://fruitcake.nl",
  1392. "type": "custom"
  1393. },
  1394. {
  1395. "url": "https://github.com/barryvdh",
  1396. "type": "github"
  1397. }
  1398. ],
  1399. "time": "2022-02-23T14:25:13+00:00"
  1400. },
  1401. {
  1402. "name": "geoip2/geoip2",
  1403. "version": "v2.12.2",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1407. "reference": "83adb44ac4b9553d36b579a14673ed124583082f"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/83adb44ac4b9553d36b579a14673ed124583082f",
  1412. "reference": "83adb44ac4b9553d36b579a14673ed124583082f",
  1413. "shasum": "",
  1414. "mirrors": [
  1415. {
  1416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1417. "preferred": true
  1418. }
  1419. ]
  1420. },
  1421. "require": {
  1422. "ext-json": "*",
  1423. "maxmind-db/reader": "~1.8",
  1424. "maxmind/web-service-common": "~0.8",
  1425. "php": ">=7.2"
  1426. },
  1427. "require-dev": {
  1428. "friendsofphp/php-cs-fixer": "3.*",
  1429. "phpstan/phpstan": "*",
  1430. "phpunit/phpunit": "^8.0 || ^9.0",
  1431. "squizlabs/php_codesniffer": "3.*"
  1432. },
  1433. "type": "library",
  1434. "autoload": {
  1435. "psr-4": {
  1436. "GeoIp2\\": "src"
  1437. }
  1438. },
  1439. "notification-url": "https://packagist.org/downloads/",
  1440. "license": [
  1441. "Apache-2.0"
  1442. ],
  1443. "authors": [
  1444. {
  1445. "name": "Gregory J. Oschwald",
  1446. "email": "[email protected]",
  1447. "homepage": "https://www.maxmind.com/"
  1448. }
  1449. ],
  1450. "description": "MaxMind GeoIP2 PHP API",
  1451. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1452. "keywords": [
  1453. "IP",
  1454. "geoip",
  1455. "geoip2",
  1456. "geolocation",
  1457. "maxmind"
  1458. ],
  1459. "support": {
  1460. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1461. "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.12.2"
  1462. },
  1463. "time": "2021-11-30T18:15:25+00:00"
  1464. },
  1465. {
  1466. "name": "guzzlehttp/guzzle",
  1467. "version": "6.5.8",
  1468. "source": {
  1469. "type": "git",
  1470. "url": "https://github.com/guzzle/guzzle.git",
  1471. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  1472. },
  1473. "dist": {
  1474. "type": "zip",
  1475. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  1476. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  1477. "shasum": "",
  1478. "mirrors": [
  1479. {
  1480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1481. "preferred": true
  1482. }
  1483. ]
  1484. },
  1485. "require": {
  1486. "ext-json": "*",
  1487. "guzzlehttp/promises": "^1.0",
  1488. "guzzlehttp/psr7": "^1.9",
  1489. "php": ">=5.5",
  1490. "symfony/polyfill-intl-idn": "^1.17"
  1491. },
  1492. "require-dev": {
  1493. "ext-curl": "*",
  1494. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1495. "psr/log": "^1.1"
  1496. },
  1497. "suggest": {
  1498. "psr/log": "Required for using the Log middleware"
  1499. },
  1500. "type": "library",
  1501. "extra": {
  1502. "branch-alias": {
  1503. "dev-master": "6.5-dev"
  1504. }
  1505. },
  1506. "autoload": {
  1507. "files": [
  1508. "src/functions_include.php"
  1509. ],
  1510. "psr-4": {
  1511. "GuzzleHttp\\": "src/"
  1512. }
  1513. },
  1514. "notification-url": "https://packagist.org/downloads/",
  1515. "license": [
  1516. "MIT"
  1517. ],
  1518. "authors": [
  1519. {
  1520. "name": "Graham Campbell",
  1521. "email": "[email protected]",
  1522. "homepage": "https://github.com/GrahamCampbell"
  1523. },
  1524. {
  1525. "name": "Michael Dowling",
  1526. "email": "[email protected]",
  1527. "homepage": "https://github.com/mtdowling"
  1528. },
  1529. {
  1530. "name": "Jeremy Lindblom",
  1531. "email": "[email protected]",
  1532. "homepage": "https://github.com/jeremeamia"
  1533. },
  1534. {
  1535. "name": "George Mponos",
  1536. "email": "[email protected]",
  1537. "homepage": "https://github.com/gmponos"
  1538. },
  1539. {
  1540. "name": "Tobias Nyholm",
  1541. "email": "[email protected]",
  1542. "homepage": "https://github.com/Nyholm"
  1543. },
  1544. {
  1545. "name": "Márk Sági-Kazár",
  1546. "email": "[email protected]",
  1547. "homepage": "https://github.com/sagikazarmark"
  1548. },
  1549. {
  1550. "name": "Tobias Schultze",
  1551. "email": "[email protected]",
  1552. "homepage": "https://github.com/Tobion"
  1553. }
  1554. ],
  1555. "description": "Guzzle is a PHP HTTP client library",
  1556. "homepage": "http://guzzlephp.org/",
  1557. "keywords": [
  1558. "client",
  1559. "curl",
  1560. "framework",
  1561. "http",
  1562. "http client",
  1563. "rest",
  1564. "web service"
  1565. ],
  1566. "support": {
  1567. "issues": "https://github.com/guzzle/guzzle/issues",
  1568. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  1569. },
  1570. "funding": [
  1571. {
  1572. "url": "https://github.com/GrahamCampbell",
  1573. "type": "github"
  1574. },
  1575. {
  1576. "url": "https://github.com/Nyholm",
  1577. "type": "github"
  1578. },
  1579. {
  1580. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1581. "type": "tidelift"
  1582. }
  1583. ],
  1584. "time": "2022-06-20T22:16:07+00:00"
  1585. },
  1586. {
  1587. "name": "guzzlehttp/promises",
  1588. "version": "1.5.1",
  1589. "source": {
  1590. "type": "git",
  1591. "url": "https://github.com/guzzle/promises.git",
  1592. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1593. },
  1594. "dist": {
  1595. "type": "zip",
  1596. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1597. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1598. "shasum": "",
  1599. "mirrors": [
  1600. {
  1601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1602. "preferred": true
  1603. }
  1604. ]
  1605. },
  1606. "require": {
  1607. "php": ">=5.5"
  1608. },
  1609. "require-dev": {
  1610. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1611. },
  1612. "type": "library",
  1613. "extra": {
  1614. "branch-alias": {
  1615. "dev-master": "1.5-dev"
  1616. }
  1617. },
  1618. "autoload": {
  1619. "files": [
  1620. "src/functions_include.php"
  1621. ],
  1622. "psr-4": {
  1623. "GuzzleHttp\\Promise\\": "src/"
  1624. }
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "Graham Campbell",
  1633. "email": "[email protected]",
  1634. "homepage": "https://github.com/GrahamCampbell"
  1635. },
  1636. {
  1637. "name": "Michael Dowling",
  1638. "email": "[email protected]",
  1639. "homepage": "https://github.com/mtdowling"
  1640. },
  1641. {
  1642. "name": "Tobias Nyholm",
  1643. "email": "[email protected]",
  1644. "homepage": "https://github.com/Nyholm"
  1645. },
  1646. {
  1647. "name": "Tobias Schultze",
  1648. "email": "[email protected]",
  1649. "homepage": "https://github.com/Tobion"
  1650. }
  1651. ],
  1652. "description": "Guzzle promises library",
  1653. "keywords": [
  1654. "promise"
  1655. ],
  1656. "support": {
  1657. "issues": "https://github.com/guzzle/promises/issues",
  1658. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1659. },
  1660. "funding": [
  1661. {
  1662. "url": "https://github.com/GrahamCampbell",
  1663. "type": "github"
  1664. },
  1665. {
  1666. "url": "https://github.com/Nyholm",
  1667. "type": "github"
  1668. },
  1669. {
  1670. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1671. "type": "tidelift"
  1672. }
  1673. ],
  1674. "time": "2021-10-22T20:56:57+00:00"
  1675. },
  1676. {
  1677. "name": "guzzlehttp/psr7",
  1678. "version": "1.9.0",
  1679. "source": {
  1680. "type": "git",
  1681. "url": "https://github.com/guzzle/psr7.git",
  1682. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318"
  1683. },
  1684. "dist": {
  1685. "type": "zip",
  1686. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  1687. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  1688. "shasum": "",
  1689. "mirrors": [
  1690. {
  1691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1692. "preferred": true
  1693. }
  1694. ]
  1695. },
  1696. "require": {
  1697. "php": ">=5.4.0",
  1698. "psr/http-message": "~1.0",
  1699. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1700. },
  1701. "provide": {
  1702. "psr/http-message-implementation": "1.0"
  1703. },
  1704. "require-dev": {
  1705. "ext-zlib": "*",
  1706. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1707. },
  1708. "suggest": {
  1709. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1710. },
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-master": "1.9-dev"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "files": [
  1719. "src/functions_include.php"
  1720. ],
  1721. "psr-4": {
  1722. "GuzzleHttp\\Psr7\\": "src/"
  1723. }
  1724. },
  1725. "notification-url": "https://packagist.org/downloads/",
  1726. "license": [
  1727. "MIT"
  1728. ],
  1729. "authors": [
  1730. {
  1731. "name": "Graham Campbell",
  1732. "email": "[email protected]",
  1733. "homepage": "https://github.com/GrahamCampbell"
  1734. },
  1735. {
  1736. "name": "Michael Dowling",
  1737. "email": "[email protected]",
  1738. "homepage": "https://github.com/mtdowling"
  1739. },
  1740. {
  1741. "name": "George Mponos",
  1742. "email": "[email protected]",
  1743. "homepage": "https://github.com/gmponos"
  1744. },
  1745. {
  1746. "name": "Tobias Nyholm",
  1747. "email": "[email protected]",
  1748. "homepage": "https://github.com/Nyholm"
  1749. },
  1750. {
  1751. "name": "Márk Sági-Kazár",
  1752. "email": "[email protected]",
  1753. "homepage": "https://github.com/sagikazarmark"
  1754. },
  1755. {
  1756. "name": "Tobias Schultze",
  1757. "email": "[email protected]",
  1758. "homepage": "https://github.com/Tobion"
  1759. }
  1760. ],
  1761. "description": "PSR-7 message implementation that also provides common utility methods",
  1762. "keywords": [
  1763. "http",
  1764. "message",
  1765. "psr-7",
  1766. "request",
  1767. "response",
  1768. "stream",
  1769. "uri",
  1770. "url"
  1771. ],
  1772. "support": {
  1773. "issues": "https://github.com/guzzle/psr7/issues",
  1774. "source": "https://github.com/guzzle/psr7/tree/1.9.0"
  1775. },
  1776. "funding": [
  1777. {
  1778. "url": "https://github.com/GrahamCampbell",
  1779. "type": "github"
  1780. },
  1781. {
  1782. "url": "https://github.com/Nyholm",
  1783. "type": "github"
  1784. },
  1785. {
  1786. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1787. "type": "tidelift"
  1788. }
  1789. ],
  1790. "time": "2022-06-20T21:43:03+00:00"
  1791. },
  1792. {
  1793. "name": "hashids/hashids",
  1794. "version": "4.1.0",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/vinkla/hashids.git",
  1798. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1803. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1804. "shasum": "",
  1805. "mirrors": [
  1806. {
  1807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1808. "preferred": true
  1809. }
  1810. ]
  1811. },
  1812. "require": {
  1813. "ext-mbstring": "*",
  1814. "php": "^7.2 || ^8.0"
  1815. },
  1816. "require-dev": {
  1817. "phpunit/phpunit": "^8.0 || ^9.4",
  1818. "squizlabs/php_codesniffer": "^3.5"
  1819. },
  1820. "suggest": {
  1821. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1822. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1823. },
  1824. "type": "library",
  1825. "extra": {
  1826. "branch-alias": {
  1827. "dev-master": "4.1-dev"
  1828. }
  1829. },
  1830. "autoload": {
  1831. "psr-4": {
  1832. "Hashids\\": "src/"
  1833. }
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT"
  1838. ],
  1839. "authors": [
  1840. {
  1841. "name": "Ivan Akimov",
  1842. "email": "[email protected]"
  1843. },
  1844. {
  1845. "name": "Vincent Klaiber",
  1846. "email": "[email protected]"
  1847. }
  1848. ],
  1849. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1850. "homepage": "https://hashids.org/php",
  1851. "keywords": [
  1852. "bitly",
  1853. "decode",
  1854. "encode",
  1855. "hash",
  1856. "hashid",
  1857. "hashids",
  1858. "ids",
  1859. "obfuscate",
  1860. "youtube"
  1861. ],
  1862. "support": {
  1863. "issues": "https://github.com/vinkla/hashids/issues",
  1864. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1865. },
  1866. "time": "2020-11-26T19:24:33+00:00"
  1867. },
  1868. {
  1869. "name": "intervention/image",
  1870. "version": "2.7.2",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://github.com/Intervention/image.git",
  1874. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1879. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1880. "shasum": "",
  1881. "mirrors": [
  1882. {
  1883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1884. "preferred": true
  1885. }
  1886. ]
  1887. },
  1888. "require": {
  1889. "ext-fileinfo": "*",
  1890. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1891. "php": ">=5.4.0"
  1892. },
  1893. "require-dev": {
  1894. "mockery/mockery": "~0.9.2",
  1895. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1896. },
  1897. "suggest": {
  1898. "ext-gd": "to use GD library based image processing.",
  1899. "ext-imagick": "to use Imagick based image processing.",
  1900. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1901. },
  1902. "type": "library",
  1903. "extra": {
  1904. "branch-alias": {
  1905. "dev-master": "2.4-dev"
  1906. },
  1907. "laravel": {
  1908. "providers": [
  1909. "Intervention\\Image\\ImageServiceProvider"
  1910. ],
  1911. "aliases": {
  1912. "Image": "Intervention\\Image\\Facades\\Image"
  1913. }
  1914. }
  1915. },
  1916. "autoload": {
  1917. "psr-4": {
  1918. "Intervention\\Image\\": "src/Intervention/Image"
  1919. }
  1920. },
  1921. "notification-url": "https://packagist.org/downloads/",
  1922. "license": [
  1923. "MIT"
  1924. ],
  1925. "authors": [
  1926. {
  1927. "name": "Oliver Vogel",
  1928. "email": "[email protected]",
  1929. "homepage": "https://intervention.io/"
  1930. }
  1931. ],
  1932. "description": "Image handling and manipulation library with support for Laravel integration",
  1933. "homepage": "http://image.intervention.io/",
  1934. "keywords": [
  1935. "gd",
  1936. "image",
  1937. "imagick",
  1938. "laravel",
  1939. "thumbnail",
  1940. "watermark"
  1941. ],
  1942. "support": {
  1943. "issues": "https://github.com/Intervention/image/issues",
  1944. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1945. },
  1946. "funding": [
  1947. {
  1948. "url": "https://paypal.me/interventionio",
  1949. "type": "custom"
  1950. },
  1951. {
  1952. "url": "https://github.com/Intervention",
  1953. "type": "github"
  1954. }
  1955. ],
  1956. "time": "2022-05-21T17:30:32+00:00"
  1957. },
  1958. {
  1959. "name": "ip2location/ip2location-laravel",
  1960. "version": "1.2.0",
  1961. "source": {
  1962. "type": "git",
  1963. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1964. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1965. },
  1966. "dist": {
  1967. "type": "zip",
  1968. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1969. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1970. "shasum": "",
  1971. "mirrors": [
  1972. {
  1973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1974. "preferred": true
  1975. }
  1976. ]
  1977. },
  1978. "require": {
  1979. "ip2location/ip2location-php": "8.*",
  1980. "php": ">=5.4"
  1981. },
  1982. "type": "library",
  1983. "autoload": {
  1984. "psr-4": {
  1985. "Ip2location\\IP2LocationLaravel\\": "src/"
  1986. }
  1987. },
  1988. "notification-url": "https://packagist.org/downloads/",
  1989. "license": [
  1990. "MIT"
  1991. ],
  1992. "authors": [
  1993. {
  1994. "name": "IP2Location",
  1995. "email": "[email protected]"
  1996. }
  1997. ],
  1998. "description": "Lookup for visitor's IP information, such as country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type.",
  1999. "keywords": [
  2000. "geolocation",
  2001. "ip2location",
  2002. "laravel",
  2003. "laravel 5",
  2004. "laravel 7"
  2005. ],
  2006. "support": {
  2007. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  2008. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  2009. },
  2010. "time": "2020-08-27T07:47:55+00:00"
  2011. },
  2012. {
  2013. "name": "ip2location/ip2location-php",
  2014. "version": "8.3.0",
  2015. "source": {
  2016. "type": "git",
  2017. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  2018. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  2019. },
  2020. "dist": {
  2021. "type": "zip",
  2022. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  2023. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  2024. "shasum": "",
  2025. "mirrors": [
  2026. {
  2027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2028. "preferred": true
  2029. }
  2030. ]
  2031. },
  2032. "type": "library",
  2033. "autoload": {
  2034. "classmap": [
  2035. "IP2Location.php"
  2036. ]
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "MIT"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "IP2Location",
  2045. "email": "[email protected]",
  2046. "homepage": "http://www.ip2location.com"
  2047. }
  2048. ],
  2049. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  2050. "homepage": "http://www.ip2location.com",
  2051. "keywords": [
  2052. "geolocation",
  2053. "ip2location",
  2054. "ip2locationlite"
  2055. ],
  2056. "support": {
  2057. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  2058. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  2059. },
  2060. "time": "2020-11-23T04:30:39+00:00"
  2061. },
  2062. {
  2063. "name": "ipip/db",
  2064. "version": "v1.0.0",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  2068. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  2073. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  2074. "shasum": "",
  2075. "mirrors": [
  2076. {
  2077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2078. "preferred": true
  2079. }
  2080. ]
  2081. },
  2082. "require": {
  2083. "php": ">=5.4.0"
  2084. },
  2085. "type": "library",
  2086. "autoload": {
  2087. "psr-4": {
  2088. "ipip\\db\\": "src/ipip/db/"
  2089. }
  2090. },
  2091. "notification-url": "https://packagist.org/downloads/",
  2092. "license": [
  2093. "Apache-2.0"
  2094. ],
  2095. "authors": [
  2096. {
  2097. "name": "IPIP.net",
  2098. "email": "[email protected]",
  2099. "homepage": "https://www.ipip.net"
  2100. }
  2101. ],
  2102. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  2103. "homepage": "https://www.ipip.net",
  2104. "keywords": [
  2105. "IP",
  2106. "geo",
  2107. "geoip",
  2108. "geolocation",
  2109. "ipdb",
  2110. "ipip.net"
  2111. ],
  2112. "support": {
  2113. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  2114. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.0"
  2115. },
  2116. "time": "2018-11-01T08:07:04+00:00"
  2117. },
  2118. {
  2119. "name": "jaybizzle/crawler-detect",
  2120. "version": "v1.2.110",
  2121. "source": {
  2122. "type": "git",
  2123. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  2124. "reference": "f9d63a3581428fd8a3858e161d072f0b9debc26f"
  2125. },
  2126. "dist": {
  2127. "type": "zip",
  2128. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/f9d63a3581428fd8a3858e161d072f0b9debc26f",
  2129. "reference": "f9d63a3581428fd8a3858e161d072f0b9debc26f",
  2130. "shasum": "",
  2131. "mirrors": [
  2132. {
  2133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2134. "preferred": true
  2135. }
  2136. ]
  2137. },
  2138. "require": {
  2139. "php": ">=5.3.0"
  2140. },
  2141. "require-dev": {
  2142. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  2143. },
  2144. "type": "library",
  2145. "autoload": {
  2146. "psr-4": {
  2147. "Jaybizzle\\CrawlerDetect\\": "src/"
  2148. }
  2149. },
  2150. "notification-url": "https://packagist.org/downloads/",
  2151. "license": [
  2152. "MIT"
  2153. ],
  2154. "authors": [
  2155. {
  2156. "name": "Mark Beech",
  2157. "email": "[email protected]",
  2158. "role": "Developer"
  2159. }
  2160. ],
  2161. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2162. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2163. "keywords": [
  2164. "crawler",
  2165. "crawler detect",
  2166. "crawler detector",
  2167. "crawlerdetect",
  2168. "php crawler detect"
  2169. ],
  2170. "support": {
  2171. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2172. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.110"
  2173. },
  2174. "time": "2021-12-07T18:35:06+00:00"
  2175. },
  2176. {
  2177. "name": "jenssegers/agent",
  2178. "version": "v2.6.4",
  2179. "source": {
  2180. "type": "git",
  2181. "url": "https://github.com/jenssegers/agent.git",
  2182. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  2183. },
  2184. "dist": {
  2185. "type": "zip",
  2186. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  2187. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  2188. "shasum": "",
  2189. "mirrors": [
  2190. {
  2191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2192. "preferred": true
  2193. }
  2194. ]
  2195. },
  2196. "require": {
  2197. "jaybizzle/crawler-detect": "^1.2",
  2198. "mobiledetect/mobiledetectlib": "^2.7.6",
  2199. "php": ">=5.6"
  2200. },
  2201. "require-dev": {
  2202. "php-coveralls/php-coveralls": "^2.1",
  2203. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  2204. },
  2205. "suggest": {
  2206. "illuminate/support": "Required for laravel service providers"
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "branch-alias": {
  2211. "dev-master": "3.0-dev"
  2212. },
  2213. "laravel": {
  2214. "providers": [
  2215. "Jenssegers\\Agent\\AgentServiceProvider"
  2216. ],
  2217. "aliases": {
  2218. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2219. }
  2220. }
  2221. },
  2222. "autoload": {
  2223. "psr-4": {
  2224. "Jenssegers\\Agent\\": "src/"
  2225. }
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "MIT"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "Jens Segers",
  2234. "homepage": "https://jenssegers.com"
  2235. }
  2236. ],
  2237. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2238. "homepage": "https://github.com/jenssegers/agent",
  2239. "keywords": [
  2240. "Agent",
  2241. "browser",
  2242. "desktop",
  2243. "laravel",
  2244. "mobile",
  2245. "platform",
  2246. "user agent",
  2247. "useragent"
  2248. ],
  2249. "support": {
  2250. "issues": "https://github.com/jenssegers/agent/issues",
  2251. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  2252. },
  2253. "funding": [
  2254. {
  2255. "url": "https://github.com/jenssegers",
  2256. "type": "github"
  2257. },
  2258. {
  2259. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  2260. "type": "tidelift"
  2261. }
  2262. ],
  2263. "time": "2020-06-13T08:05:20+00:00"
  2264. },
  2265. {
  2266. "name": "kyslik/column-sortable",
  2267. "version": "6.4.2",
  2268. "source": {
  2269. "type": "git",
  2270. "url": "https://github.com/Kyslik/column-sortable.git",
  2271. "reference": "91792a166dd02aaaeb7928417bb49d808b0c58ea"
  2272. },
  2273. "dist": {
  2274. "type": "zip",
  2275. "url": "https://api.github.com/repos/Kyslik/column-sortable/zipball/91792a166dd02aaaeb7928417bb49d808b0c58ea",
  2276. "reference": "91792a166dd02aaaeb7928417bb49d808b0c58ea",
  2277. "shasum": "",
  2278. "mirrors": [
  2279. {
  2280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2281. "preferred": true
  2282. }
  2283. ]
  2284. },
  2285. "require": {
  2286. "illuminate/database": "5.8.*|^6.0|^7.0|^8.0|^9.0",
  2287. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0",
  2288. "php": ">=7.2"
  2289. },
  2290. "require-dev": {
  2291. "orchestra/testbench": "^5.0|^7.0",
  2292. "phpunit/phpunit": "^8.5|^9.5.10"
  2293. },
  2294. "type": "package",
  2295. "extra": {
  2296. "laravel": {
  2297. "providers": [
  2298. "Kyslik\\ColumnSortable\\ColumnSortableServiceProvider"
  2299. ]
  2300. }
  2301. },
  2302. "autoload": {
  2303. "psr-4": {
  2304. "Kyslik\\ColumnSortable\\": "src/ColumnSortable/"
  2305. }
  2306. },
  2307. "notification-url": "https://packagist.org/downloads/",
  2308. "license": [
  2309. "MIT"
  2310. ],
  2311. "authors": [
  2312. {
  2313. "name": "Martin Kiesel",
  2314. "email": "[email protected]",
  2315. "role": "Developer and maintainer"
  2316. }
  2317. ],
  2318. "description": "Package for handling column sorting in Laravel 6.x",
  2319. "keywords": [
  2320. "column",
  2321. "laravel",
  2322. "sort",
  2323. "sortable",
  2324. "sorting"
  2325. ],
  2326. "support": {
  2327. "issues": "https://github.com/Kyslik/column-sortable/issues",
  2328. "source": "https://github.com/Kyslik/column-sortable/tree/6.4.2"
  2329. },
  2330. "time": "2022-02-15T23:02:23+00:00"
  2331. },
  2332. {
  2333. "name": "laravel-lang/lang",
  2334. "version": "10.9.4",
  2335. "source": {
  2336. "type": "git",
  2337. "url": "https://github.com/Laravel-Lang/lang.git",
  2338. "reference": "eeb4b38ef7aba493f3915c89b99c803ce096e996"
  2339. },
  2340. "dist": {
  2341. "type": "zip",
  2342. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/eeb4b38ef7aba493f3915c89b99c803ce096e996",
  2343. "reference": "eeb4b38ef7aba493f3915c89b99c803ce096e996",
  2344. "shasum": "",
  2345. "mirrors": [
  2346. {
  2347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2348. "preferred": true
  2349. }
  2350. ]
  2351. },
  2352. "require": {
  2353. "ext-json": "*"
  2354. },
  2355. "conflict": {
  2356. "laravel-lang/publisher": "<12.0 >=14.0"
  2357. },
  2358. "require-dev": {
  2359. "dragon-code/pretty-array": "^4.0",
  2360. "dragon-code/simple-dto": "^2.3",
  2361. "dragon-code/support": "^6.1",
  2362. "ext-zip": "*",
  2363. "guzzlehttp/guzzle": "^7.3",
  2364. "laravel-lang/publisher": "^13.0",
  2365. "laravel/breeze": "^1.2",
  2366. "laravel/fortify": "^1.7",
  2367. "laravel/jetstream": "^2.3",
  2368. "laravel/ui": "^3.4",
  2369. "orchestra/testbench": "^7.0",
  2370. "php": "^8.1",
  2371. "phpunit/phpunit": "^9.5",
  2372. "symfony/finder": "^6.0",
  2373. "symfony/var-dumper": "^6.0",
  2374. "vlucas/phpdotenv": "^5.4.1"
  2375. },
  2376. "suggest": {
  2377. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  2378. "laravel-lang/publisher": "Easy installation and update of translation files for your project",
  2379. "overtrue/laravel-lang": "Command to add languages in your project"
  2380. },
  2381. "type": "library",
  2382. "autoload": {
  2383. "psr-4": {
  2384. "LaravelLang\\Lang\\": "src"
  2385. }
  2386. },
  2387. "notification-url": "https://packagist.org/downloads/",
  2388. "license": [
  2389. "MIT"
  2390. ],
  2391. "authors": [
  2392. {
  2393. "name": "Laravel-Lang Team",
  2394. "homepage": "https://github.com/Laravel-Lang"
  2395. }
  2396. ],
  2397. "description": "Languages for Laravel",
  2398. "keywords": [
  2399. "lang",
  2400. "languages",
  2401. "laravel",
  2402. "lpm"
  2403. ],
  2404. "support": {
  2405. "issues": "https://github.com/Laravel-Lang/lang/issues",
  2406. "source": "https://github.com/Laravel-Lang/lang"
  2407. },
  2408. "funding": [
  2409. {
  2410. "url": "https://opencollective.com/laravel-lang",
  2411. "type": "open_collective"
  2412. }
  2413. ],
  2414. "time": "2022-06-22T09:43:06+00:00"
  2415. },
  2416. {
  2417. "name": "laravel-notification-channels/bearychat",
  2418. "version": "1.4.0",
  2419. "source": {
  2420. "type": "git",
  2421. "url": "https://github.com/laravel-notification-channels/bearychat.git",
  2422. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96"
  2423. },
  2424. "dist": {
  2425. "type": "zip",
  2426. "url": "https://api.github.com/repos/laravel-notification-channels/bearychat/zipball/b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  2427. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  2428. "shasum": "",
  2429. "mirrors": [
  2430. {
  2431. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2432. "preferred": true
  2433. }
  2434. ]
  2435. },
  2436. "require": {
  2437. "elfsundae/laravel-bearychat": "~1.4",
  2438. "illuminate/notifications": "~5.3|~6.0|~7.0|~8.0",
  2439. "php": ">=5.6.4"
  2440. },
  2441. "require-dev": {
  2442. "mockery/mockery": "~1.0",
  2443. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0"
  2444. },
  2445. "type": "library",
  2446. "autoload": {
  2447. "psr-4": {
  2448. "NotificationChannels\\BearyChat\\": "src"
  2449. }
  2450. },
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "MIT"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "Elf Sundae",
  2458. "email": "[email protected]",
  2459. "homepage": "https://github.com/ElfSundae",
  2460. "role": "Developer"
  2461. }
  2462. ],
  2463. "description": "BearyChat notifications channel for Laravel.",
  2464. "homepage": "https://github.com/laravel-notification-channels/bearychat",
  2465. "support": {
  2466. "issues": "https://github.com/laravel-notification-channels/bearychat/issues",
  2467. "source": "https://github.com/laravel-notification-channels/bearychat/tree/1.4.0"
  2468. },
  2469. "time": "2020-09-13T14:32:13+00:00"
  2470. },
  2471. {
  2472. "name": "laravel-notification-channels/telegram",
  2473. "version": "0.5.1",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://github.com/laravel-notification-channels/telegram.git",
  2477. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://api.github.com/repos/laravel-notification-channels/telegram/zipball/2cedb10b78219cc91a285eaa5a3de0db405cc207",
  2482. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207",
  2483. "shasum": "",
  2484. "mirrors": [
  2485. {
  2486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2487. "preferred": true
  2488. }
  2489. ]
  2490. },
  2491. "require": {
  2492. "ext-json": "*",
  2493. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2494. "illuminate/notifications": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  2495. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  2496. "php": "^7.1 || ^8.0"
  2497. },
  2498. "require-dev": {
  2499. "mockery/mockery": "^1.3",
  2500. "phpunit/phpunit": "^7.0 || ^8.0"
  2501. },
  2502. "type": "library",
  2503. "extra": {
  2504. "laravel": {
  2505. "providers": [
  2506. "NotificationChannels\\Telegram\\TelegramServiceProvider"
  2507. ]
  2508. }
  2509. },
  2510. "autoload": {
  2511. "psr-4": {
  2512. "NotificationChannels\\Telegram\\": "src"
  2513. }
  2514. },
  2515. "notification-url": "https://packagist.org/downloads/",
  2516. "license": [
  2517. "MIT"
  2518. ],
  2519. "authors": [
  2520. {
  2521. "name": "Irfaq Syed",
  2522. "email": "[email protected]",
  2523. "homepage": "https://lukonet.com",
  2524. "role": "Developer"
  2525. }
  2526. ],
  2527. "description": "Telegram Notifications Channel for Laravel",
  2528. "homepage": "https://github.com/laravel-notification-channels/telegram",
  2529. "keywords": [
  2530. "laravel",
  2531. "notification",
  2532. "telegram",
  2533. "telegram notification",
  2534. "telegram notifications channel"
  2535. ],
  2536. "support": {
  2537. "issues": "https://github.com/laravel-notification-channels/telegram/issues",
  2538. "source": "https://github.com/laravel-notification-channels/telegram/tree/0.5.1"
  2539. },
  2540. "time": "2020-12-06T19:00:18+00:00"
  2541. },
  2542. {
  2543. "name": "laravel/framework",
  2544. "version": "v7.30.6",
  2545. "source": {
  2546. "type": "git",
  2547. "url": "https://github.com/laravel/framework.git",
  2548. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee"
  2549. },
  2550. "dist": {
  2551. "type": "zip",
  2552. "url": "https://api.github.com/repos/laravel/framework/zipball/ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  2553. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  2554. "shasum": "",
  2555. "mirrors": [
  2556. {
  2557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2558. "preferred": true
  2559. }
  2560. ]
  2561. },
  2562. "require": {
  2563. "doctrine/inflector": "^1.4|^2.0",
  2564. "dragonmantank/cron-expression": "^2.3.1",
  2565. "egulias/email-validator": "^2.1.10",
  2566. "ext-json": "*",
  2567. "ext-mbstring": "*",
  2568. "ext-openssl": "*",
  2569. "league/commonmark": "^1.3",
  2570. "league/flysystem": "^1.1",
  2571. "monolog/monolog": "^2.0",
  2572. "nesbot/carbon": "^2.31",
  2573. "opis/closure": "^3.6",
  2574. "php": "^7.2.5|^8.0",
  2575. "psr/container": "^1.0",
  2576. "psr/simple-cache": "^1.0",
  2577. "ramsey/uuid": "^3.7|^4.0",
  2578. "swiftmailer/swiftmailer": "^6.0",
  2579. "symfony/console": "^5.0",
  2580. "symfony/error-handler": "^5.0",
  2581. "symfony/finder": "^5.0",
  2582. "symfony/http-foundation": "^5.0",
  2583. "symfony/http-kernel": "^5.0",
  2584. "symfony/mime": "^5.0",
  2585. "symfony/polyfill-php73": "^1.17",
  2586. "symfony/process": "^5.0",
  2587. "symfony/routing": "^5.0",
  2588. "symfony/var-dumper": "^5.0",
  2589. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2590. "vlucas/phpdotenv": "^4.0",
  2591. "voku/portable-ascii": "^1.4.8"
  2592. },
  2593. "conflict": {
  2594. "tightenco/collect": "<5.5.33"
  2595. },
  2596. "provide": {
  2597. "psr/container-implementation": "1.0"
  2598. },
  2599. "replace": {
  2600. "illuminate/auth": "self.version",
  2601. "illuminate/broadcasting": "self.version",
  2602. "illuminate/bus": "self.version",
  2603. "illuminate/cache": "self.version",
  2604. "illuminate/config": "self.version",
  2605. "illuminate/console": "self.version",
  2606. "illuminate/container": "self.version",
  2607. "illuminate/contracts": "self.version",
  2608. "illuminate/cookie": "self.version",
  2609. "illuminate/database": "self.version",
  2610. "illuminate/encryption": "self.version",
  2611. "illuminate/events": "self.version",
  2612. "illuminate/filesystem": "self.version",
  2613. "illuminate/hashing": "self.version",
  2614. "illuminate/http": "self.version",
  2615. "illuminate/log": "self.version",
  2616. "illuminate/mail": "self.version",
  2617. "illuminate/notifications": "self.version",
  2618. "illuminate/pagination": "self.version",
  2619. "illuminate/pipeline": "self.version",
  2620. "illuminate/queue": "self.version",
  2621. "illuminate/redis": "self.version",
  2622. "illuminate/routing": "self.version",
  2623. "illuminate/session": "self.version",
  2624. "illuminate/support": "self.version",
  2625. "illuminate/testing": "self.version",
  2626. "illuminate/translation": "self.version",
  2627. "illuminate/validation": "self.version",
  2628. "illuminate/view": "self.version"
  2629. },
  2630. "require-dev": {
  2631. "aws/aws-sdk-php": "^3.155",
  2632. "doctrine/dbal": "^2.6",
  2633. "filp/whoops": "^2.8",
  2634. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2635. "league/flysystem-cached-adapter": "^1.0",
  2636. "mockery/mockery": "~1.3.3|^1.4.2",
  2637. "moontoast/math": "^1.1",
  2638. "orchestra/testbench-core": "^5.8",
  2639. "pda/pheanstalk": "^4.0",
  2640. "phpunit/phpunit": "^8.4|^9.3.3",
  2641. "predis/predis": "^1.1.1",
  2642. "symfony/cache": "^5.0"
  2643. },
  2644. "suggest": {
  2645. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2646. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2647. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2648. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2649. "ext-memcached": "Required to use the memcache cache driver.",
  2650. "ext-pcntl": "Required to use all features of the queue worker.",
  2651. "ext-posix": "Required to use all features of the queue worker.",
  2652. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2653. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2654. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2655. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2656. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2657. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2658. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2659. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2660. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2661. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2662. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2663. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2664. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2665. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2666. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2667. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2668. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2669. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2670. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2671. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2672. },
  2673. "type": "library",
  2674. "extra": {
  2675. "branch-alias": {
  2676. "dev-master": "7.x-dev"
  2677. }
  2678. },
  2679. "autoload": {
  2680. "files": [
  2681. "src/Illuminate/Foundation/helpers.php",
  2682. "src/Illuminate/Support/helpers.php"
  2683. ],
  2684. "psr-4": {
  2685. "Illuminate\\": "src/Illuminate/"
  2686. }
  2687. },
  2688. "notification-url": "https://packagist.org/downloads/",
  2689. "license": [
  2690. "MIT"
  2691. ],
  2692. "authors": [
  2693. {
  2694. "name": "Taylor Otwell",
  2695. "email": "[email protected]"
  2696. }
  2697. ],
  2698. "description": "The Laravel Framework.",
  2699. "homepage": "https://laravel.com",
  2700. "keywords": [
  2701. "framework",
  2702. "laravel"
  2703. ],
  2704. "support": {
  2705. "issues": "https://github.com/laravel/framework/issues",
  2706. "source": "https://github.com/laravel/framework"
  2707. },
  2708. "time": "2021-12-07T14:56:47+00:00"
  2709. },
  2710. {
  2711. "name": "laravel/socialite",
  2712. "version": "v5.5.2",
  2713. "source": {
  2714. "type": "git",
  2715. "url": "https://github.com/laravel/socialite.git",
  2716. "reference": "68afb03259b82d898c68196cbcacd48596a9dd72"
  2717. },
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://api.github.com/repos/laravel/socialite/zipball/68afb03259b82d898c68196cbcacd48596a9dd72",
  2721. "reference": "68afb03259b82d898c68196cbcacd48596a9dd72",
  2722. "shasum": "",
  2723. "mirrors": [
  2724. {
  2725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2726. "preferred": true
  2727. }
  2728. ]
  2729. },
  2730. "require": {
  2731. "ext-json": "*",
  2732. "guzzlehttp/guzzle": "^6.0|^7.0",
  2733. "illuminate/http": "^6.0|^7.0|^8.0|^9.0",
  2734. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  2735. "league/oauth1-client": "^1.0",
  2736. "php": "^7.2|^8.0"
  2737. },
  2738. "require-dev": {
  2739. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  2740. "mockery/mockery": "^1.0",
  2741. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  2742. "phpunit/phpunit": "^8.0|^9.3"
  2743. },
  2744. "type": "library",
  2745. "extra": {
  2746. "branch-alias": {
  2747. "dev-master": "5.x-dev"
  2748. },
  2749. "laravel": {
  2750. "providers": [
  2751. "Laravel\\Socialite\\SocialiteServiceProvider"
  2752. ],
  2753. "aliases": {
  2754. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2755. }
  2756. }
  2757. },
  2758. "autoload": {
  2759. "psr-4": {
  2760. "Laravel\\Socialite\\": "src/"
  2761. }
  2762. },
  2763. "notification-url": "https://packagist.org/downloads/",
  2764. "license": [
  2765. "MIT"
  2766. ],
  2767. "authors": [
  2768. {
  2769. "name": "Taylor Otwell",
  2770. "email": "[email protected]"
  2771. }
  2772. ],
  2773. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2774. "homepage": "https://laravel.com",
  2775. "keywords": [
  2776. "laravel",
  2777. "oauth"
  2778. ],
  2779. "support": {
  2780. "issues": "https://github.com/laravel/socialite/issues",
  2781. "source": "https://github.com/laravel/socialite"
  2782. },
  2783. "time": "2022-03-10T15:26:19+00:00"
  2784. },
  2785. {
  2786. "name": "laravel/tinker",
  2787. "version": "v2.7.2",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/laravel/tinker.git",
  2791. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  2796. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  2797. "shasum": "",
  2798. "mirrors": [
  2799. {
  2800. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2801. "preferred": true
  2802. }
  2803. ]
  2804. },
  2805. "require": {
  2806. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  2807. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  2808. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  2809. "php": "^7.2.5|^8.0",
  2810. "psy/psysh": "^0.10.4|^0.11.1",
  2811. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2812. },
  2813. "require-dev": {
  2814. "mockery/mockery": "~1.3.3|^1.4.2",
  2815. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2816. },
  2817. "suggest": {
  2818. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  2819. },
  2820. "type": "library",
  2821. "extra": {
  2822. "branch-alias": {
  2823. "dev-master": "2.x-dev"
  2824. },
  2825. "laravel": {
  2826. "providers": [
  2827. "Laravel\\Tinker\\TinkerServiceProvider"
  2828. ]
  2829. }
  2830. },
  2831. "autoload": {
  2832. "psr-4": {
  2833. "Laravel\\Tinker\\": "src/"
  2834. }
  2835. },
  2836. "notification-url": "https://packagist.org/downloads/",
  2837. "license": [
  2838. "MIT"
  2839. ],
  2840. "authors": [
  2841. {
  2842. "name": "Taylor Otwell",
  2843. "email": "[email protected]"
  2844. }
  2845. ],
  2846. "description": "Powerful REPL for the Laravel framework.",
  2847. "keywords": [
  2848. "REPL",
  2849. "Tinker",
  2850. "laravel",
  2851. "psysh"
  2852. ],
  2853. "support": {
  2854. "issues": "https://github.com/laravel/tinker/issues",
  2855. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  2856. },
  2857. "time": "2022-03-23T12:38:24+00:00"
  2858. },
  2859. {
  2860. "name": "lcobucci/jwt",
  2861. "version": "3.3.3",
  2862. "source": {
  2863. "type": "git",
  2864. "url": "https://github.com/lcobucci/jwt.git",
  2865. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2866. },
  2867. "dist": {
  2868. "type": "zip",
  2869. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2870. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2871. "shasum": "",
  2872. "mirrors": [
  2873. {
  2874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2875. "preferred": true
  2876. }
  2877. ]
  2878. },
  2879. "require": {
  2880. "ext-mbstring": "*",
  2881. "ext-openssl": "*",
  2882. "php": "^5.6 || ^7.0"
  2883. },
  2884. "require-dev": {
  2885. "mikey179/vfsstream": "~1.5",
  2886. "phpmd/phpmd": "~2.2",
  2887. "phpunit/php-invoker": "~1.1",
  2888. "phpunit/phpunit": "^5.7 || ^7.3",
  2889. "squizlabs/php_codesniffer": "~2.3"
  2890. },
  2891. "type": "library",
  2892. "extra": {
  2893. "branch-alias": {
  2894. "dev-master": "3.1-dev"
  2895. }
  2896. },
  2897. "autoload": {
  2898. "psr-4": {
  2899. "Lcobucci\\JWT\\": "src"
  2900. }
  2901. },
  2902. "notification-url": "https://packagist.org/downloads/",
  2903. "license": [
  2904. "BSD-3-Clause"
  2905. ],
  2906. "authors": [
  2907. {
  2908. "name": "Luís Otávio Cobucci Oblonczyk",
  2909. "email": "[email protected]",
  2910. "role": "Developer"
  2911. }
  2912. ],
  2913. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2914. "keywords": [
  2915. "JWS",
  2916. "jwt"
  2917. ],
  2918. "support": {
  2919. "issues": "https://github.com/lcobucci/jwt/issues",
  2920. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2921. },
  2922. "funding": [
  2923. {
  2924. "url": "https://github.com/lcobucci",
  2925. "type": "github"
  2926. },
  2927. {
  2928. "url": "https://www.patreon.com/lcobucci",
  2929. "type": "patreon"
  2930. }
  2931. ],
  2932. "time": "2020-08-20T13:22:28+00:00"
  2933. },
  2934. {
  2935. "name": "league/commonmark",
  2936. "version": "1.6.7",
  2937. "source": {
  2938. "type": "git",
  2939. "url": "https://github.com/thephpleague/commonmark.git",
  2940. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  2941. },
  2942. "dist": {
  2943. "type": "zip",
  2944. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2945. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2946. "shasum": "",
  2947. "mirrors": [
  2948. {
  2949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2950. "preferred": true
  2951. }
  2952. ]
  2953. },
  2954. "require": {
  2955. "ext-mbstring": "*",
  2956. "php": "^7.1 || ^8.0"
  2957. },
  2958. "conflict": {
  2959. "scrutinizer/ocular": "1.7.*"
  2960. },
  2961. "require-dev": {
  2962. "cebe/markdown": "~1.0",
  2963. "commonmark/commonmark.js": "0.29.2",
  2964. "erusev/parsedown": "~1.0",
  2965. "ext-json": "*",
  2966. "github/gfm": "0.29.0",
  2967. "michelf/php-markdown": "~1.4",
  2968. "mikehaertl/php-shellcommand": "^1.4",
  2969. "phpstan/phpstan": "^0.12.90",
  2970. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2971. "scrutinizer/ocular": "^1.5",
  2972. "symfony/finder": "^4.2"
  2973. },
  2974. "bin": [
  2975. "bin/commonmark"
  2976. ],
  2977. "type": "library",
  2978. "autoload": {
  2979. "psr-4": {
  2980. "League\\CommonMark\\": "src"
  2981. }
  2982. },
  2983. "notification-url": "https://packagist.org/downloads/",
  2984. "license": [
  2985. "BSD-3-Clause"
  2986. ],
  2987. "authors": [
  2988. {
  2989. "name": "Colin O'Dell",
  2990. "email": "[email protected]",
  2991. "homepage": "https://www.colinodell.com",
  2992. "role": "Lead Developer"
  2993. }
  2994. ],
  2995. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2996. "homepage": "https://commonmark.thephpleague.com",
  2997. "keywords": [
  2998. "commonmark",
  2999. "flavored",
  3000. "gfm",
  3001. "github",
  3002. "github-flavored",
  3003. "markdown",
  3004. "md",
  3005. "parser"
  3006. ],
  3007. "support": {
  3008. "docs": "https://commonmark.thephpleague.com/",
  3009. "issues": "https://github.com/thephpleague/commonmark/issues",
  3010. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3011. "source": "https://github.com/thephpleague/commonmark"
  3012. },
  3013. "funding": [
  3014. {
  3015. "url": "https://www.colinodell.com/sponsor",
  3016. "type": "custom"
  3017. },
  3018. {
  3019. "url": "https://www.paypal.me/colinpodell/10.00",
  3020. "type": "custom"
  3021. },
  3022. {
  3023. "url": "https://github.com/colinodell",
  3024. "type": "github"
  3025. },
  3026. {
  3027. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3028. "type": "tidelift"
  3029. }
  3030. ],
  3031. "time": "2022-01-13T17:18:13+00:00"
  3032. },
  3033. {
  3034. "name": "league/flysystem",
  3035. "version": "1.1.9",
  3036. "source": {
  3037. "type": "git",
  3038. "url": "https://github.com/thephpleague/flysystem.git",
  3039. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  3040. },
  3041. "dist": {
  3042. "type": "zip",
  3043. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  3044. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  3045. "shasum": "",
  3046. "mirrors": [
  3047. {
  3048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3049. "preferred": true
  3050. }
  3051. ]
  3052. },
  3053. "require": {
  3054. "ext-fileinfo": "*",
  3055. "league/mime-type-detection": "^1.3",
  3056. "php": "^7.2.5 || ^8.0"
  3057. },
  3058. "conflict": {
  3059. "league/flysystem-sftp": "<1.0.6"
  3060. },
  3061. "require-dev": {
  3062. "phpspec/prophecy": "^1.11.1",
  3063. "phpunit/phpunit": "^8.5.8"
  3064. },
  3065. "suggest": {
  3066. "ext-ftp": "Allows you to use FTP server storage",
  3067. "ext-openssl": "Allows you to use FTPS server storage",
  3068. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3069. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3070. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3071. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3072. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3073. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3074. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3075. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3076. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3077. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3078. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3079. },
  3080. "type": "library",
  3081. "extra": {
  3082. "branch-alias": {
  3083. "dev-master": "1.1-dev"
  3084. }
  3085. },
  3086. "autoload": {
  3087. "psr-4": {
  3088. "League\\Flysystem\\": "src/"
  3089. }
  3090. },
  3091. "notification-url": "https://packagist.org/downloads/",
  3092. "license": [
  3093. "MIT"
  3094. ],
  3095. "authors": [
  3096. {
  3097. "name": "Frank de Jonge",
  3098. "email": "[email protected]"
  3099. }
  3100. ],
  3101. "description": "Filesystem abstraction: Many filesystems, one API.",
  3102. "keywords": [
  3103. "Cloud Files",
  3104. "WebDAV",
  3105. "abstraction",
  3106. "aws",
  3107. "cloud",
  3108. "copy.com",
  3109. "dropbox",
  3110. "file systems",
  3111. "files",
  3112. "filesystem",
  3113. "filesystems",
  3114. "ftp",
  3115. "rackspace",
  3116. "remote",
  3117. "s3",
  3118. "sftp",
  3119. "storage"
  3120. ],
  3121. "support": {
  3122. "issues": "https://github.com/thephpleague/flysystem/issues",
  3123. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  3124. },
  3125. "funding": [
  3126. {
  3127. "url": "https://offset.earth/frankdejonge",
  3128. "type": "other"
  3129. }
  3130. ],
  3131. "time": "2021-12-09T09:40:50+00:00"
  3132. },
  3133. {
  3134. "name": "league/mime-type-detection",
  3135. "version": "1.11.0",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3139. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3144. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3145. "shasum": "",
  3146. "mirrors": [
  3147. {
  3148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3149. "preferred": true
  3150. }
  3151. ]
  3152. },
  3153. "require": {
  3154. "ext-fileinfo": "*",
  3155. "php": "^7.2 || ^8.0"
  3156. },
  3157. "require-dev": {
  3158. "friendsofphp/php-cs-fixer": "^3.2",
  3159. "phpstan/phpstan": "^0.12.68",
  3160. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3161. },
  3162. "type": "library",
  3163. "autoload": {
  3164. "psr-4": {
  3165. "League\\MimeTypeDetection\\": "src"
  3166. }
  3167. },
  3168. "notification-url": "https://packagist.org/downloads/",
  3169. "license": [
  3170. "MIT"
  3171. ],
  3172. "authors": [
  3173. {
  3174. "name": "Frank de Jonge",
  3175. "email": "[email protected]"
  3176. }
  3177. ],
  3178. "description": "Mime-type detection for Flysystem",
  3179. "support": {
  3180. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3181. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  3182. },
  3183. "funding": [
  3184. {
  3185. "url": "https://github.com/frankdejonge",
  3186. "type": "github"
  3187. },
  3188. {
  3189. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3190. "type": "tidelift"
  3191. }
  3192. ],
  3193. "time": "2022-04-17T13:12:02+00:00"
  3194. },
  3195. {
  3196. "name": "league/oauth1-client",
  3197. "version": "v1.10.1",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://github.com/thephpleague/oauth1-client.git",
  3201. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3206. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3207. "shasum": "",
  3208. "mirrors": [
  3209. {
  3210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3211. "preferred": true
  3212. }
  3213. ]
  3214. },
  3215. "require": {
  3216. "ext-json": "*",
  3217. "ext-openssl": "*",
  3218. "guzzlehttp/guzzle": "^6.0|^7.0",
  3219. "guzzlehttp/psr7": "^1.7|^2.0",
  3220. "php": ">=7.1||>=8.0"
  3221. },
  3222. "require-dev": {
  3223. "ext-simplexml": "*",
  3224. "friendsofphp/php-cs-fixer": "^2.17",
  3225. "mockery/mockery": "^1.3.3",
  3226. "phpstan/phpstan": "^0.12.42",
  3227. "phpunit/phpunit": "^7.5||9.5"
  3228. },
  3229. "suggest": {
  3230. "ext-simplexml": "For decoding XML-based responses."
  3231. },
  3232. "type": "library",
  3233. "extra": {
  3234. "branch-alias": {
  3235. "dev-master": "1.0-dev",
  3236. "dev-develop": "2.0-dev"
  3237. }
  3238. },
  3239. "autoload": {
  3240. "psr-4": {
  3241. "League\\OAuth1\\Client\\": "src/"
  3242. }
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "MIT"
  3247. ],
  3248. "authors": [
  3249. {
  3250. "name": "Ben Corlett",
  3251. "email": "[email protected]",
  3252. "homepage": "http://www.webcomm.com.au",
  3253. "role": "Developer"
  3254. }
  3255. ],
  3256. "description": "OAuth 1.0 Client Library",
  3257. "keywords": [
  3258. "Authentication",
  3259. "SSO",
  3260. "authorization",
  3261. "bitbucket",
  3262. "identity",
  3263. "idp",
  3264. "oauth",
  3265. "oauth1",
  3266. "single sign on",
  3267. "trello",
  3268. "tumblr",
  3269. "twitter"
  3270. ],
  3271. "support": {
  3272. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3273. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  3274. },
  3275. "time": "2022-04-15T14:02:14+00:00"
  3276. },
  3277. {
  3278. "name": "maennchen/zipstream-php",
  3279. "version": "2.1.0",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3283. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  3288. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  3289. "shasum": "",
  3290. "mirrors": [
  3291. {
  3292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3293. "preferred": true
  3294. }
  3295. ]
  3296. },
  3297. "require": {
  3298. "myclabs/php-enum": "^1.5",
  3299. "php": ">= 7.1",
  3300. "psr/http-message": "^1.0",
  3301. "symfony/polyfill-mbstring": "^1.0"
  3302. },
  3303. "require-dev": {
  3304. "ext-zip": "*",
  3305. "guzzlehttp/guzzle": ">= 6.3",
  3306. "mikey179/vfsstream": "^1.6",
  3307. "phpunit/phpunit": ">= 7.5"
  3308. },
  3309. "type": "library",
  3310. "autoload": {
  3311. "psr-4": {
  3312. "ZipStream\\": "src/"
  3313. }
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "MIT"
  3318. ],
  3319. "authors": [
  3320. {
  3321. "name": "Paul Duncan",
  3322. "email": "[email protected]"
  3323. },
  3324. {
  3325. "name": "Jonatan Männchen",
  3326. "email": "[email protected]"
  3327. },
  3328. {
  3329. "name": "Jesse Donat",
  3330. "email": "[email protected]"
  3331. },
  3332. {
  3333. "name": "András Kolesár",
  3334. "email": "[email protected]"
  3335. }
  3336. ],
  3337. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3338. "keywords": [
  3339. "stream",
  3340. "zip"
  3341. ],
  3342. "support": {
  3343. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3344. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  3345. },
  3346. "funding": [
  3347. {
  3348. "url": "https://opencollective.com/zipstream",
  3349. "type": "open_collective"
  3350. }
  3351. ],
  3352. "time": "2020-05-30T13:11:16+00:00"
  3353. },
  3354. {
  3355. "name": "markbaker/complex",
  3356. "version": "3.0.1",
  3357. "source": {
  3358. "type": "git",
  3359. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3360. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22"
  3361. },
  3362. "dist": {
  3363. "type": "zip",
  3364. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  3365. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  3366. "shasum": "",
  3367. "mirrors": [
  3368. {
  3369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3370. "preferred": true
  3371. }
  3372. ]
  3373. },
  3374. "require": {
  3375. "php": "^7.2 || ^8.0"
  3376. },
  3377. "require-dev": {
  3378. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3379. "phpcompatibility/php-compatibility": "^9.0",
  3380. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  3381. "squizlabs/php_codesniffer": "^3.4"
  3382. },
  3383. "type": "library",
  3384. "autoload": {
  3385. "psr-4": {
  3386. "Complex\\": "classes/src/"
  3387. }
  3388. },
  3389. "notification-url": "https://packagist.org/downloads/",
  3390. "license": [
  3391. "MIT"
  3392. ],
  3393. "authors": [
  3394. {
  3395. "name": "Mark Baker",
  3396. "email": "[email protected]"
  3397. }
  3398. ],
  3399. "description": "PHP Class for working with complex numbers",
  3400. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3401. "keywords": [
  3402. "complex",
  3403. "mathematics"
  3404. ],
  3405. "support": {
  3406. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3407. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1"
  3408. },
  3409. "time": "2021-06-29T15:32:53+00:00"
  3410. },
  3411. {
  3412. "name": "markbaker/matrix",
  3413. "version": "3.0.0",
  3414. "source": {
  3415. "type": "git",
  3416. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3417. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576"
  3418. },
  3419. "dist": {
  3420. "type": "zip",
  3421. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576",
  3422. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  3423. "shasum": "",
  3424. "mirrors": [
  3425. {
  3426. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3427. "preferred": true
  3428. }
  3429. ]
  3430. },
  3431. "require": {
  3432. "php": "^7.1 || ^8.0"
  3433. },
  3434. "require-dev": {
  3435. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3436. "phpcompatibility/php-compatibility": "^9.0",
  3437. "phpdocumentor/phpdocumentor": "2.*",
  3438. "phploc/phploc": "^4.0",
  3439. "phpmd/phpmd": "2.*",
  3440. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  3441. "sebastian/phpcpd": "^4.0",
  3442. "squizlabs/php_codesniffer": "^3.4"
  3443. },
  3444. "type": "library",
  3445. "autoload": {
  3446. "psr-4": {
  3447. "Matrix\\": "classes/src/"
  3448. }
  3449. },
  3450. "notification-url": "https://packagist.org/downloads/",
  3451. "license": [
  3452. "MIT"
  3453. ],
  3454. "authors": [
  3455. {
  3456. "name": "Mark Baker",
  3457. "email": "[email protected]"
  3458. }
  3459. ],
  3460. "description": "PHP Class for working with matrices",
  3461. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3462. "keywords": [
  3463. "mathematics",
  3464. "matrix",
  3465. "vector"
  3466. ],
  3467. "support": {
  3468. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3469. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0"
  3470. },
  3471. "time": "2021-07-01T19:01:15+00:00"
  3472. },
  3473. {
  3474. "name": "maxmind-db/reader",
  3475. "version": "v1.11.0",
  3476. "source": {
  3477. "type": "git",
  3478. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  3479. "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b"
  3480. },
  3481. "dist": {
  3482. "type": "zip",
  3483. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b1f3c0699525336d09cc5161a2861268d9f2ae5b",
  3484. "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b",
  3485. "shasum": "",
  3486. "mirrors": [
  3487. {
  3488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3489. "preferred": true
  3490. }
  3491. ]
  3492. },
  3493. "require": {
  3494. "php": ">=7.2"
  3495. },
  3496. "conflict": {
  3497. "ext-maxminddb": "<1.10.1,>=2.0.0"
  3498. },
  3499. "require-dev": {
  3500. "friendsofphp/php-cs-fixer": "3.*",
  3501. "php-coveralls/php-coveralls": "^2.1",
  3502. "phpstan/phpstan": "*",
  3503. "phpunit/phpcov": ">=6.0.0",
  3504. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  3505. "squizlabs/php_codesniffer": "3.*"
  3506. },
  3507. "suggest": {
  3508. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  3509. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  3510. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  3511. },
  3512. "type": "library",
  3513. "autoload": {
  3514. "psr-4": {
  3515. "MaxMind\\Db\\": "src/MaxMind/Db"
  3516. }
  3517. },
  3518. "notification-url": "https://packagist.org/downloads/",
  3519. "license": [
  3520. "Apache-2.0"
  3521. ],
  3522. "authors": [
  3523. {
  3524. "name": "Gregory J. Oschwald",
  3525. "email": "[email protected]",
  3526. "homepage": "https://www.maxmind.com/"
  3527. }
  3528. ],
  3529. "description": "MaxMind DB Reader API",
  3530. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  3531. "keywords": [
  3532. "database",
  3533. "geoip",
  3534. "geoip2",
  3535. "geolocation",
  3536. "maxmind"
  3537. ],
  3538. "support": {
  3539. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  3540. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.11.0"
  3541. },
  3542. "time": "2021-10-18T15:23:10+00:00"
  3543. },
  3544. {
  3545. "name": "maxmind/web-service-common",
  3546. "version": "v0.9.0",
  3547. "source": {
  3548. "type": "git",
  3549. "url": "https://github.com/maxmind/web-service-common-php.git",
  3550. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
  3551. },
  3552. "dist": {
  3553. "type": "zip",
  3554. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  3555. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  3556. "shasum": "",
  3557. "mirrors": [
  3558. {
  3559. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3560. "preferred": true
  3561. }
  3562. ]
  3563. },
  3564. "require": {
  3565. "composer/ca-bundle": "^1.0.3",
  3566. "ext-curl": "*",
  3567. "ext-json": "*",
  3568. "php": ">=7.2"
  3569. },
  3570. "require-dev": {
  3571. "friendsofphp/php-cs-fixer": "3.*",
  3572. "phpstan/phpstan": "*",
  3573. "phpunit/phpunit": "^8.0 || ^9.0",
  3574. "squizlabs/php_codesniffer": "3.*"
  3575. },
  3576. "type": "library",
  3577. "autoload": {
  3578. "psr-4": {
  3579. "MaxMind\\Exception\\": "src/Exception",
  3580. "MaxMind\\WebService\\": "src/WebService"
  3581. }
  3582. },
  3583. "notification-url": "https://packagist.org/downloads/",
  3584. "license": [
  3585. "Apache-2.0"
  3586. ],
  3587. "authors": [
  3588. {
  3589. "name": "Gregory Oschwald",
  3590. "email": "[email protected]"
  3591. }
  3592. ],
  3593. "description": "Internal MaxMind Web Service API",
  3594. "homepage": "https://github.com/maxmind/web-service-common-php",
  3595. "support": {
  3596. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  3597. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
  3598. },
  3599. "time": "2022-03-28T17:43:20+00:00"
  3600. },
  3601. {
  3602. "name": "mews/captcha",
  3603. "version": "3.2.7",
  3604. "source": {
  3605. "type": "git",
  3606. "url": "https://github.com/mewebstudio/captcha.git",
  3607. "reference": "c4dec4963ea19a89aaf679fac1921323dd7decd8"
  3608. },
  3609. "dist": {
  3610. "type": "zip",
  3611. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/c4dec4963ea19a89aaf679fac1921323dd7decd8",
  3612. "reference": "c4dec4963ea19a89aaf679fac1921323dd7decd8",
  3613. "shasum": "",
  3614. "mirrors": [
  3615. {
  3616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3617. "preferred": true
  3618. }
  3619. ]
  3620. },
  3621. "require": {
  3622. "ext-gd": "*",
  3623. "illuminate/config": "~5|^6|^7|^8|^9",
  3624. "illuminate/filesystem": "~5|^6|^7|^8|^9",
  3625. "illuminate/hashing": "~5|^6|^7|^8|^9",
  3626. "illuminate/session": "~5|^6|^7|^8|^9",
  3627. "illuminate/support": "~5|^6|^7|^8|^9",
  3628. "intervention/image": "~2.5",
  3629. "php": "^7.2|^8.0"
  3630. },
  3631. "require-dev": {
  3632. "mockery/mockery": "^1.0",
  3633. "phpunit/phpunit": "^8.5|^9.0"
  3634. },
  3635. "type": "package",
  3636. "extra": {
  3637. "laravel": {
  3638. "providers": [
  3639. "Mews\\Captcha\\CaptchaServiceProvider"
  3640. ],
  3641. "aliases": {
  3642. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  3643. }
  3644. }
  3645. },
  3646. "autoload": {
  3647. "files": [
  3648. "src/helpers.php"
  3649. ],
  3650. "psr-4": {
  3651. "Mews\\Captcha\\": "src/"
  3652. }
  3653. },
  3654. "notification-url": "https://packagist.org/downloads/",
  3655. "license": [
  3656. "MIT"
  3657. ],
  3658. "authors": [
  3659. {
  3660. "name": "Muharrem ERİN",
  3661. "email": "[email protected]",
  3662. "homepage": "https://github.com/mewebstudio",
  3663. "role": "Developer"
  3664. }
  3665. ],
  3666. "description": "Laravel 5 & 6 Captcha Package",
  3667. "homepage": "https://github.com/mewebstudio/captcha",
  3668. "keywords": [
  3669. "captcha",
  3670. "laravel5 Security",
  3671. "laravel6 Captcha",
  3672. "laravel6 Security"
  3673. ],
  3674. "support": {
  3675. "issues": "https://github.com/mewebstudio/captcha/issues",
  3676. "source": "https://github.com/mewebstudio/captcha/tree/3.2.7"
  3677. },
  3678. "time": "2022-02-12T15:58:32+00:00"
  3679. },
  3680. {
  3681. "name": "mews/purifier",
  3682. "version": "3.3.7",
  3683. "source": {
  3684. "type": "git",
  3685. "url": "https://github.com/mewebstudio/Purifier.git",
  3686. "reference": "9844bc82886e4291b3116afbd9ab5f532856662a"
  3687. },
  3688. "dist": {
  3689. "type": "zip",
  3690. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/9844bc82886e4291b3116afbd9ab5f532856662a",
  3691. "reference": "9844bc82886e4291b3116afbd9ab5f532856662a",
  3692. "shasum": "",
  3693. "mirrors": [
  3694. {
  3695. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3696. "preferred": true
  3697. }
  3698. ]
  3699. },
  3700. "require": {
  3701. "ezyang/htmlpurifier": "4.13.*",
  3702. "illuminate/config": "^5.8|^6.0|^7.0|^8.0|^9.0",
  3703. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0|^9.0",
  3704. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0",
  3705. "php": "^7.2|^8.0"
  3706. },
  3707. "require-dev": {
  3708. "graham-campbell/testbench": "^3.2|^5.5.1",
  3709. "mockery/mockery": "^1.3.3",
  3710. "phpunit/phpunit": "^8.0|^9.0"
  3711. },
  3712. "suggest": {
  3713. "laravel/framework": "To test the Laravel bindings",
  3714. "laravel/lumen-framework": "To test the Lumen bindings"
  3715. },
  3716. "type": "package",
  3717. "extra": {
  3718. "laravel": {
  3719. "providers": [
  3720. "Mews\\Purifier\\PurifierServiceProvider"
  3721. ],
  3722. "aliases": {
  3723. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  3724. }
  3725. }
  3726. },
  3727. "autoload": {
  3728. "files": [
  3729. "src/helpers.php"
  3730. ],
  3731. "psr-4": {
  3732. "Mews\\Purifier\\": "src/"
  3733. }
  3734. },
  3735. "notification-url": "https://packagist.org/downloads/",
  3736. "license": [
  3737. "MIT"
  3738. ],
  3739. "authors": [
  3740. {
  3741. "name": "Muharrem ERİN",
  3742. "email": "[email protected]",
  3743. "homepage": "https://github.com/mewebstudio",
  3744. "role": "Developer"
  3745. }
  3746. ],
  3747. "description": "Laravel 5/6/7 HtmlPurifier Package",
  3748. "homepage": "https://github.com/mewebstudio/purifier",
  3749. "keywords": [
  3750. "Purifier",
  3751. "htmlpurifier",
  3752. "laravel5 HtmlPurifier",
  3753. "laravel5 Purifier",
  3754. "laravel5 Security",
  3755. "laravel6 HtmlPurifier",
  3756. "laravel6 Purifier",
  3757. "laravel6 Security",
  3758. "security",
  3759. "xss"
  3760. ],
  3761. "support": {
  3762. "issues": "https://github.com/mewebstudio/Purifier/issues",
  3763. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.7"
  3764. },
  3765. "time": "2022-02-12T15:54:11+00:00"
  3766. },
  3767. {
  3768. "name": "mobiledetect/mobiledetectlib",
  3769. "version": "2.8.38",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3773. "reference": "b6c4ac9686d204c49a432f527f137cf24ac0b90e"
  3774. },
  3775. "dist": {
  3776. "type": "zip",
  3777. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/b6c4ac9686d204c49a432f527f137cf24ac0b90e",
  3778. "reference": "b6c4ac9686d204c49a432f527f137cf24ac0b90e",
  3779. "shasum": "",
  3780. "mirrors": [
  3781. {
  3782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3783. "preferred": true
  3784. }
  3785. ]
  3786. },
  3787. "require": {
  3788. "php": ">=5.0.0"
  3789. },
  3790. "require-dev": {
  3791. "phpunit/phpunit": "~4.8.35||~5.7"
  3792. },
  3793. "type": "library",
  3794. "autoload": {
  3795. "psr-0": {
  3796. "Detection": "namespaced/"
  3797. },
  3798. "classmap": [
  3799. "Mobile_Detect.php"
  3800. ]
  3801. },
  3802. "notification-url": "https://packagist.org/downloads/",
  3803. "license": [
  3804. "MIT"
  3805. ],
  3806. "authors": [
  3807. {
  3808. "name": "Serban Ghita",
  3809. "email": "[email protected]",
  3810. "homepage": "http://mobiledetect.net",
  3811. "role": "Developer"
  3812. }
  3813. ],
  3814. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  3815. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3816. "keywords": [
  3817. "detect mobile devices",
  3818. "mobile",
  3819. "mobile detect",
  3820. "mobile detector",
  3821. "php mobile detect"
  3822. ],
  3823. "support": {
  3824. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3825. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.38"
  3826. },
  3827. "time": "2022-02-14T12:38:04+00:00"
  3828. },
  3829. {
  3830. "name": "monolog/monolog",
  3831. "version": "2.7.0",
  3832. "source": {
  3833. "type": "git",
  3834. "url": "https://github.com/Seldaek/monolog.git",
  3835. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  3836. },
  3837. "dist": {
  3838. "type": "zip",
  3839. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  3840. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  3841. "shasum": "",
  3842. "mirrors": [
  3843. {
  3844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3845. "preferred": true
  3846. }
  3847. ]
  3848. },
  3849. "require": {
  3850. "php": ">=7.2",
  3851. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3852. },
  3853. "provide": {
  3854. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3855. },
  3856. "require-dev": {
  3857. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3858. "doctrine/couchdb": "~1.0@dev",
  3859. "elasticsearch/elasticsearch": "^7 || ^8",
  3860. "ext-json": "*",
  3861. "graylog2/gelf-php": "^1.4.2",
  3862. "guzzlehttp/guzzle": "^7.4",
  3863. "guzzlehttp/psr7": "^2.2",
  3864. "mongodb/mongodb": "^1.8",
  3865. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3866. "php-console/php-console": "^3.1.3",
  3867. "phpspec/prophecy": "^1.15",
  3868. "phpstan/phpstan": "^0.12.91",
  3869. "phpunit/phpunit": "^8.5.14",
  3870. "predis/predis": "^1.1",
  3871. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3872. "ruflin/elastica": "^7",
  3873. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3874. "symfony/mailer": "^5.4 || ^6",
  3875. "symfony/mime": "^5.4 || ^6"
  3876. },
  3877. "suggest": {
  3878. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3879. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3880. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3881. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3882. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3883. "ext-mbstring": "Allow to work properly with unicode symbols",
  3884. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3885. "ext-openssl": "Required to send log messages using SSL",
  3886. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3887. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3888. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3889. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3890. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3891. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3892. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3893. },
  3894. "type": "library",
  3895. "extra": {
  3896. "branch-alias": {
  3897. "dev-main": "2.x-dev"
  3898. }
  3899. },
  3900. "autoload": {
  3901. "psr-4": {
  3902. "Monolog\\": "src/Monolog"
  3903. }
  3904. },
  3905. "notification-url": "https://packagist.org/downloads/",
  3906. "license": [
  3907. "MIT"
  3908. ],
  3909. "authors": [
  3910. {
  3911. "name": "Jordi Boggiano",
  3912. "email": "[email protected]",
  3913. "homepage": "https://seld.be"
  3914. }
  3915. ],
  3916. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3917. "homepage": "https://github.com/Seldaek/monolog",
  3918. "keywords": [
  3919. "log",
  3920. "logging",
  3921. "psr-3"
  3922. ],
  3923. "support": {
  3924. "issues": "https://github.com/Seldaek/monolog/issues",
  3925. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  3926. },
  3927. "funding": [
  3928. {
  3929. "url": "https://github.com/Seldaek",
  3930. "type": "github"
  3931. },
  3932. {
  3933. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3934. "type": "tidelift"
  3935. }
  3936. ],
  3937. "time": "2022-06-09T08:59:12+00:00"
  3938. },
  3939. {
  3940. "name": "myclabs/php-enum",
  3941. "version": "1.8.3",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/myclabs/php-enum.git",
  3945. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  3950. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  3951. "shasum": "",
  3952. "mirrors": [
  3953. {
  3954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3955. "preferred": true
  3956. }
  3957. ]
  3958. },
  3959. "require": {
  3960. "ext-json": "*",
  3961. "php": "^7.3 || ^8.0"
  3962. },
  3963. "require-dev": {
  3964. "phpunit/phpunit": "^9.5",
  3965. "squizlabs/php_codesniffer": "1.*",
  3966. "vimeo/psalm": "^4.6.2"
  3967. },
  3968. "type": "library",
  3969. "autoload": {
  3970. "psr-4": {
  3971. "MyCLabs\\Enum\\": "src/"
  3972. }
  3973. },
  3974. "notification-url": "https://packagist.org/downloads/",
  3975. "license": [
  3976. "MIT"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "PHP Enum contributors",
  3981. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3982. }
  3983. ],
  3984. "description": "PHP Enum implementation",
  3985. "homepage": "http://github.com/myclabs/php-enum",
  3986. "keywords": [
  3987. "enum"
  3988. ],
  3989. "support": {
  3990. "issues": "https://github.com/myclabs/php-enum/issues",
  3991. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  3992. },
  3993. "funding": [
  3994. {
  3995. "url": "https://github.com/mnapoli",
  3996. "type": "github"
  3997. },
  3998. {
  3999. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  4000. "type": "tidelift"
  4001. }
  4002. ],
  4003. "time": "2021-07-05T08:18:36+00:00"
  4004. },
  4005. {
  4006. "name": "namshi/jose",
  4007. "version": "7.2.3",
  4008. "source": {
  4009. "type": "git",
  4010. "url": "https://github.com/namshi/jose.git",
  4011. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  4012. },
  4013. "dist": {
  4014. "type": "zip",
  4015. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  4016. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  4017. "shasum": "",
  4018. "mirrors": [
  4019. {
  4020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4021. "preferred": true
  4022. }
  4023. ]
  4024. },
  4025. "require": {
  4026. "ext-date": "*",
  4027. "ext-hash": "*",
  4028. "ext-json": "*",
  4029. "ext-pcre": "*",
  4030. "ext-spl": "*",
  4031. "php": ">=5.5",
  4032. "symfony/polyfill-php56": "^1.0"
  4033. },
  4034. "require-dev": {
  4035. "phpseclib/phpseclib": "^2.0",
  4036. "phpunit/phpunit": "^4.5|^5.0",
  4037. "satooshi/php-coveralls": "^1.0"
  4038. },
  4039. "suggest": {
  4040. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  4041. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  4042. },
  4043. "type": "library",
  4044. "autoload": {
  4045. "psr-4": {
  4046. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  4047. }
  4048. },
  4049. "notification-url": "https://packagist.org/downloads/",
  4050. "license": [
  4051. "MIT"
  4052. ],
  4053. "authors": [
  4054. {
  4055. "name": "Alessandro Nadalin",
  4056. "email": "[email protected]"
  4057. },
  4058. {
  4059. "name": "Alessandro Cinelli (cirpo)",
  4060. "email": "[email protected]"
  4061. }
  4062. ],
  4063. "description": "JSON Object Signing and Encryption library for PHP.",
  4064. "keywords": [
  4065. "JSON Web Signature",
  4066. "JSON Web Token",
  4067. "JWS",
  4068. "json",
  4069. "jwt",
  4070. "token"
  4071. ],
  4072. "support": {
  4073. "issues": "https://github.com/namshi/jose/issues",
  4074. "source": "https://github.com/namshi/jose/tree/master"
  4075. },
  4076. "time": "2016-12-05T07:27:31+00:00"
  4077. },
  4078. {
  4079. "name": "nesbot/carbon",
  4080. "version": "2.58.0",
  4081. "source": {
  4082. "type": "git",
  4083. "url": "https://github.com/briannesbitt/Carbon.git",
  4084. "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055"
  4085. },
  4086. "dist": {
  4087. "type": "zip",
  4088. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/97a34af22bde8d0ac20ab34b29d7bfe360902055",
  4089. "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055",
  4090. "shasum": "",
  4091. "mirrors": [
  4092. {
  4093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4094. "preferred": true
  4095. }
  4096. ]
  4097. },
  4098. "require": {
  4099. "ext-json": "*",
  4100. "php": "^7.1.8 || ^8.0",
  4101. "symfony/polyfill-mbstring": "^1.0",
  4102. "symfony/polyfill-php80": "^1.16",
  4103. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4104. },
  4105. "require-dev": {
  4106. "doctrine/dbal": "^2.0 || ^3.0",
  4107. "doctrine/orm": "^2.7",
  4108. "friendsofphp/php-cs-fixer": "^3.0",
  4109. "kylekatarnls/multi-tester": "^2.0",
  4110. "phpmd/phpmd": "^2.9",
  4111. "phpstan/extension-installer": "^1.0",
  4112. "phpstan/phpstan": "^0.12.54 || ^1.0",
  4113. "phpunit/php-file-iterator": "^2.0.5",
  4114. "phpunit/phpunit": "^7.5.20 || ^8.5.23",
  4115. "squizlabs/php_codesniffer": "^3.4"
  4116. },
  4117. "bin": [
  4118. "bin/carbon"
  4119. ],
  4120. "type": "library",
  4121. "extra": {
  4122. "branch-alias": {
  4123. "dev-3.x": "3.x-dev",
  4124. "dev-master": "2.x-dev"
  4125. },
  4126. "laravel": {
  4127. "providers": [
  4128. "Carbon\\Laravel\\ServiceProvider"
  4129. ]
  4130. },
  4131. "phpstan": {
  4132. "includes": [
  4133. "extension.neon"
  4134. ]
  4135. }
  4136. },
  4137. "autoload": {
  4138. "psr-4": {
  4139. "Carbon\\": "src/Carbon/"
  4140. }
  4141. },
  4142. "notification-url": "https://packagist.org/downloads/",
  4143. "license": [
  4144. "MIT"
  4145. ],
  4146. "authors": [
  4147. {
  4148. "name": "Brian Nesbitt",
  4149. "email": "[email protected]",
  4150. "homepage": "https://markido.com"
  4151. },
  4152. {
  4153. "name": "kylekatarnls",
  4154. "homepage": "https://github.com/kylekatarnls"
  4155. }
  4156. ],
  4157. "description": "An API extension for DateTime that supports 281 different languages.",
  4158. "homepage": "https://carbon.nesbot.com",
  4159. "keywords": [
  4160. "date",
  4161. "datetime",
  4162. "time"
  4163. ],
  4164. "support": {
  4165. "docs": "https://carbon.nesbot.com/docs",
  4166. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4167. "source": "https://github.com/briannesbitt/Carbon"
  4168. },
  4169. "funding": [
  4170. {
  4171. "url": "https://opencollective.com/Carbon",
  4172. "type": "open_collective"
  4173. },
  4174. {
  4175. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  4176. "type": "tidelift"
  4177. }
  4178. ],
  4179. "time": "2022-04-25T19:31:17+00:00"
  4180. },
  4181. {
  4182. "name": "nikic/php-parser",
  4183. "version": "v4.13.2",
  4184. "source": {
  4185. "type": "git",
  4186. "url": "https://github.com/nikic/PHP-Parser.git",
  4187. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  4188. },
  4189. "dist": {
  4190. "type": "zip",
  4191. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  4192. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  4193. "shasum": "",
  4194. "mirrors": [
  4195. {
  4196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4197. "preferred": true
  4198. }
  4199. ]
  4200. },
  4201. "require": {
  4202. "ext-tokenizer": "*",
  4203. "php": ">=7.0"
  4204. },
  4205. "require-dev": {
  4206. "ircmaxell/php-yacc": "^0.0.7",
  4207. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4208. },
  4209. "bin": [
  4210. "bin/php-parse"
  4211. ],
  4212. "type": "library",
  4213. "extra": {
  4214. "branch-alias": {
  4215. "dev-master": "4.9-dev"
  4216. }
  4217. },
  4218. "autoload": {
  4219. "psr-4": {
  4220. "PhpParser\\": "lib/PhpParser"
  4221. }
  4222. },
  4223. "notification-url": "https://packagist.org/downloads/",
  4224. "license": [
  4225. "BSD-3-Clause"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "Nikita Popov"
  4230. }
  4231. ],
  4232. "description": "A PHP parser written in PHP",
  4233. "keywords": [
  4234. "parser",
  4235. "php"
  4236. ],
  4237. "support": {
  4238. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4239. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  4240. },
  4241. "time": "2021-11-30T19:35:32+00:00"
  4242. },
  4243. {
  4244. "name": "opis/closure",
  4245. "version": "3.6.3",
  4246. "source": {
  4247. "type": "git",
  4248. "url": "https://github.com/opis/closure.git",
  4249. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4250. },
  4251. "dist": {
  4252. "type": "zip",
  4253. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4254. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4255. "shasum": "",
  4256. "mirrors": [
  4257. {
  4258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4259. "preferred": true
  4260. }
  4261. ]
  4262. },
  4263. "require": {
  4264. "php": "^5.4 || ^7.0 || ^8.0"
  4265. },
  4266. "require-dev": {
  4267. "jeremeamia/superclosure": "^2.0",
  4268. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4269. },
  4270. "type": "library",
  4271. "extra": {
  4272. "branch-alias": {
  4273. "dev-master": "3.6.x-dev"
  4274. }
  4275. },
  4276. "autoload": {
  4277. "files": [
  4278. "functions.php"
  4279. ],
  4280. "psr-4": {
  4281. "Opis\\Closure\\": "src/"
  4282. }
  4283. },
  4284. "notification-url": "https://packagist.org/downloads/",
  4285. "license": [
  4286. "MIT"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "Marius Sarca",
  4291. "email": "[email protected]"
  4292. },
  4293. {
  4294. "name": "Sorin Sarca",
  4295. "email": "[email protected]"
  4296. }
  4297. ],
  4298. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4299. "homepage": "https://opis.io/closure",
  4300. "keywords": [
  4301. "anonymous functions",
  4302. "closure",
  4303. "function",
  4304. "serializable",
  4305. "serialization",
  4306. "serialize"
  4307. ],
  4308. "support": {
  4309. "issues": "https://github.com/opis/closure/issues",
  4310. "source": "https://github.com/opis/closure/tree/3.6.3"
  4311. },
  4312. "time": "2022-01-27T09:35:39+00:00"
  4313. },
  4314. {
  4315. "name": "overtrue/laravel-lang",
  4316. "version": "5.0.2",
  4317. "source": {
  4318. "type": "git",
  4319. "url": "https://github.com/overtrue/laravel-lang.git",
  4320. "reference": "cb82a2f1e5fd1c7313a5aa1531f02cd5838969e4"
  4321. },
  4322. "dist": {
  4323. "type": "zip",
  4324. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/cb82a2f1e5fd1c7313a5aa1531f02cd5838969e4",
  4325. "reference": "cb82a2f1e5fd1c7313a5aa1531f02cd5838969e4",
  4326. "shasum": "",
  4327. "mirrors": [
  4328. {
  4329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4330. "preferred": true
  4331. }
  4332. ]
  4333. },
  4334. "require": {
  4335. "ext-json": "*",
  4336. "laravel-lang/lang": "^10.1",
  4337. "symfony/process": "^5.0.0"
  4338. },
  4339. "require-dev": {
  4340. "laravel/framework": "~8.1"
  4341. },
  4342. "type": "library",
  4343. "extra": {
  4344. "laravel": {
  4345. "providers": [
  4346. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  4347. ]
  4348. }
  4349. },
  4350. "autoload": {
  4351. "psr-4": {
  4352. "Overtrue\\LaravelLang\\": "src/"
  4353. }
  4354. },
  4355. "notification-url": "https://packagist.org/downloads/",
  4356. "license": [
  4357. "MIT"
  4358. ],
  4359. "authors": [
  4360. {
  4361. "name": "overtrue",
  4362. "email": "[email protected]"
  4363. }
  4364. ],
  4365. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  4366. "keywords": [
  4367. "i18n",
  4368. "languages",
  4369. "laravel",
  4370. "locale",
  4371. "overtrue"
  4372. ],
  4373. "support": {
  4374. "issues": "https://github.com/overtrue/laravel-lang/issues",
  4375. "source": "https://github.com/overtrue/laravel-lang/tree/5.0.2"
  4376. },
  4377. "funding": [
  4378. {
  4379. "url": "https://www.patreon.com/overtrue",
  4380. "type": "patreon"
  4381. }
  4382. ],
  4383. "time": "2021-08-20T12:06:44+00:00"
  4384. },
  4385. {
  4386. "name": "phpoffice/phpspreadsheet",
  4387. "version": "1.23.0",
  4388. "source": {
  4389. "type": "git",
  4390. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4391. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e"
  4392. },
  4393. "dist": {
  4394. "type": "zip",
  4395. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/21e4cf62699eebf007db28775f7d1554e612ed9e",
  4396. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e",
  4397. "shasum": "",
  4398. "mirrors": [
  4399. {
  4400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4401. "preferred": true
  4402. }
  4403. ]
  4404. },
  4405. "require": {
  4406. "ext-ctype": "*",
  4407. "ext-dom": "*",
  4408. "ext-fileinfo": "*",
  4409. "ext-gd": "*",
  4410. "ext-iconv": "*",
  4411. "ext-libxml": "*",
  4412. "ext-mbstring": "*",
  4413. "ext-simplexml": "*",
  4414. "ext-xml": "*",
  4415. "ext-xmlreader": "*",
  4416. "ext-xmlwriter": "*",
  4417. "ext-zip": "*",
  4418. "ext-zlib": "*",
  4419. "ezyang/htmlpurifier": "^4.13",
  4420. "maennchen/zipstream-php": "^2.1",
  4421. "markbaker/complex": "^3.0",
  4422. "markbaker/matrix": "^3.0",
  4423. "php": "^7.3 || ^8.0",
  4424. "psr/http-client": "^1.0",
  4425. "psr/http-factory": "^1.0",
  4426. "psr/simple-cache": "^1.0 || ^2.0"
  4427. },
  4428. "require-dev": {
  4429. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4430. "dompdf/dompdf": "^1.0",
  4431. "friendsofphp/php-cs-fixer": "^3.2",
  4432. "jpgraph/jpgraph": "^4.0",
  4433. "mpdf/mpdf": "8.0.17",
  4434. "phpcompatibility/php-compatibility": "^9.3",
  4435. "phpstan/phpstan": "^1.1",
  4436. "phpstan/phpstan-phpunit": "^1.0",
  4437. "phpunit/phpunit": "^8.5 || ^9.0",
  4438. "squizlabs/php_codesniffer": "^3.6",
  4439. "tecnickcom/tcpdf": "^6.4"
  4440. },
  4441. "suggest": {
  4442. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  4443. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4444. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4445. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  4446. },
  4447. "type": "library",
  4448. "autoload": {
  4449. "psr-4": {
  4450. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4451. }
  4452. },
  4453. "notification-url": "https://packagist.org/downloads/",
  4454. "license": [
  4455. "MIT"
  4456. ],
  4457. "authors": [
  4458. {
  4459. "name": "Maarten Balliauw",
  4460. "homepage": "https://blog.maartenballiauw.be"
  4461. },
  4462. {
  4463. "name": "Mark Baker",
  4464. "homepage": "https://markbakeruk.net"
  4465. },
  4466. {
  4467. "name": "Franck Lefevre",
  4468. "homepage": "https://rootslabs.net"
  4469. },
  4470. {
  4471. "name": "Erik Tilt"
  4472. },
  4473. {
  4474. "name": "Adrien Crivelli"
  4475. }
  4476. ],
  4477. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4478. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4479. "keywords": [
  4480. "OpenXML",
  4481. "excel",
  4482. "gnumeric",
  4483. "ods",
  4484. "php",
  4485. "spreadsheet",
  4486. "xls",
  4487. "xlsx"
  4488. ],
  4489. "support": {
  4490. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4491. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.23.0"
  4492. },
  4493. "time": "2022-04-24T13:53:10+00:00"
  4494. },
  4495. {
  4496. "name": "phpoption/phpoption",
  4497. "version": "1.8.1",
  4498. "source": {
  4499. "type": "git",
  4500. "url": "https://github.com/schmittjoh/php-option.git",
  4501. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  4502. },
  4503. "dist": {
  4504. "type": "zip",
  4505. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  4506. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  4507. "shasum": "",
  4508. "mirrors": [
  4509. {
  4510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4511. "preferred": true
  4512. }
  4513. ]
  4514. },
  4515. "require": {
  4516. "php": "^7.0 || ^8.0"
  4517. },
  4518. "require-dev": {
  4519. "bamarni/composer-bin-plugin": "^1.4.1",
  4520. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  4521. },
  4522. "type": "library",
  4523. "extra": {
  4524. "branch-alias": {
  4525. "dev-master": "1.8-dev"
  4526. }
  4527. },
  4528. "autoload": {
  4529. "psr-4": {
  4530. "PhpOption\\": "src/PhpOption/"
  4531. }
  4532. },
  4533. "notification-url": "https://packagist.org/downloads/",
  4534. "license": [
  4535. "Apache-2.0"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "Johannes M. Schmitt",
  4540. "email": "[email protected]",
  4541. "homepage": "https://github.com/schmittjoh"
  4542. },
  4543. {
  4544. "name": "Graham Campbell",
  4545. "email": "[email protected]",
  4546. "homepage": "https://github.com/GrahamCampbell"
  4547. }
  4548. ],
  4549. "description": "Option Type for PHP",
  4550. "keywords": [
  4551. "language",
  4552. "option",
  4553. "php",
  4554. "type"
  4555. ],
  4556. "support": {
  4557. "issues": "https://github.com/schmittjoh/php-option/issues",
  4558. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  4559. },
  4560. "funding": [
  4561. {
  4562. "url": "https://github.com/GrahamCampbell",
  4563. "type": "github"
  4564. },
  4565. {
  4566. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4567. "type": "tidelift"
  4568. }
  4569. ],
  4570. "time": "2021-12-04T23:24:31+00:00"
  4571. },
  4572. {
  4573. "name": "psr/container",
  4574. "version": "1.1.1",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/php-fig/container.git",
  4578. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4583. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4584. "shasum": "",
  4585. "mirrors": [
  4586. {
  4587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4588. "preferred": true
  4589. }
  4590. ]
  4591. },
  4592. "require": {
  4593. "php": ">=7.2.0"
  4594. },
  4595. "type": "library",
  4596. "autoload": {
  4597. "psr-4": {
  4598. "Psr\\Container\\": "src/"
  4599. }
  4600. },
  4601. "notification-url": "https://packagist.org/downloads/",
  4602. "license": [
  4603. "MIT"
  4604. ],
  4605. "authors": [
  4606. {
  4607. "name": "PHP-FIG",
  4608. "homepage": "https://www.php-fig.org/"
  4609. }
  4610. ],
  4611. "description": "Common Container Interface (PHP FIG PSR-11)",
  4612. "homepage": "https://github.com/php-fig/container",
  4613. "keywords": [
  4614. "PSR-11",
  4615. "container",
  4616. "container-interface",
  4617. "container-interop",
  4618. "psr"
  4619. ],
  4620. "support": {
  4621. "issues": "https://github.com/php-fig/container/issues",
  4622. "source": "https://github.com/php-fig/container/tree/1.1.1"
  4623. },
  4624. "time": "2021-03-05T17:36:06+00:00"
  4625. },
  4626. {
  4627. "name": "psr/event-dispatcher",
  4628. "version": "1.0.0",
  4629. "source": {
  4630. "type": "git",
  4631. "url": "https://github.com/php-fig/event-dispatcher.git",
  4632. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4633. },
  4634. "dist": {
  4635. "type": "zip",
  4636. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4637. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4638. "shasum": "",
  4639. "mirrors": [
  4640. {
  4641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4642. "preferred": true
  4643. }
  4644. ]
  4645. },
  4646. "require": {
  4647. "php": ">=7.2.0"
  4648. },
  4649. "type": "library",
  4650. "extra": {
  4651. "branch-alias": {
  4652. "dev-master": "1.0.x-dev"
  4653. }
  4654. },
  4655. "autoload": {
  4656. "psr-4": {
  4657. "Psr\\EventDispatcher\\": "src/"
  4658. }
  4659. },
  4660. "notification-url": "https://packagist.org/downloads/",
  4661. "license": [
  4662. "MIT"
  4663. ],
  4664. "authors": [
  4665. {
  4666. "name": "PHP-FIG",
  4667. "homepage": "http://www.php-fig.org/"
  4668. }
  4669. ],
  4670. "description": "Standard interfaces for event handling.",
  4671. "keywords": [
  4672. "events",
  4673. "psr",
  4674. "psr-14"
  4675. ],
  4676. "support": {
  4677. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4678. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4679. },
  4680. "time": "2019-01-08T18:20:26+00:00"
  4681. },
  4682. {
  4683. "name": "psr/http-client",
  4684. "version": "1.0.1",
  4685. "source": {
  4686. "type": "git",
  4687. "url": "https://github.com/php-fig/http-client.git",
  4688. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4689. },
  4690. "dist": {
  4691. "type": "zip",
  4692. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4693. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4694. "shasum": "",
  4695. "mirrors": [
  4696. {
  4697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4698. "preferred": true
  4699. }
  4700. ]
  4701. },
  4702. "require": {
  4703. "php": "^7.0 || ^8.0",
  4704. "psr/http-message": "^1.0"
  4705. },
  4706. "type": "library",
  4707. "extra": {
  4708. "branch-alias": {
  4709. "dev-master": "1.0.x-dev"
  4710. }
  4711. },
  4712. "autoload": {
  4713. "psr-4": {
  4714. "Psr\\Http\\Client\\": "src/"
  4715. }
  4716. },
  4717. "notification-url": "https://packagist.org/downloads/",
  4718. "license": [
  4719. "MIT"
  4720. ],
  4721. "authors": [
  4722. {
  4723. "name": "PHP-FIG",
  4724. "homepage": "http://www.php-fig.org/"
  4725. }
  4726. ],
  4727. "description": "Common interface for HTTP clients",
  4728. "homepage": "https://github.com/php-fig/http-client",
  4729. "keywords": [
  4730. "http",
  4731. "http-client",
  4732. "psr",
  4733. "psr-18"
  4734. ],
  4735. "support": {
  4736. "source": "https://github.com/php-fig/http-client/tree/master"
  4737. },
  4738. "time": "2020-06-29T06:28:15+00:00"
  4739. },
  4740. {
  4741. "name": "psr/http-factory",
  4742. "version": "1.0.1",
  4743. "source": {
  4744. "type": "git",
  4745. "url": "https://github.com/php-fig/http-factory.git",
  4746. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4747. },
  4748. "dist": {
  4749. "type": "zip",
  4750. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4751. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4752. "shasum": "",
  4753. "mirrors": [
  4754. {
  4755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4756. "preferred": true
  4757. }
  4758. ]
  4759. },
  4760. "require": {
  4761. "php": ">=7.0.0",
  4762. "psr/http-message": "^1.0"
  4763. },
  4764. "type": "library",
  4765. "extra": {
  4766. "branch-alias": {
  4767. "dev-master": "1.0.x-dev"
  4768. }
  4769. },
  4770. "autoload": {
  4771. "psr-4": {
  4772. "Psr\\Http\\Message\\": "src/"
  4773. }
  4774. },
  4775. "notification-url": "https://packagist.org/downloads/",
  4776. "license": [
  4777. "MIT"
  4778. ],
  4779. "authors": [
  4780. {
  4781. "name": "PHP-FIG",
  4782. "homepage": "http://www.php-fig.org/"
  4783. }
  4784. ],
  4785. "description": "Common interfaces for PSR-7 HTTP message factories",
  4786. "keywords": [
  4787. "factory",
  4788. "http",
  4789. "message",
  4790. "psr",
  4791. "psr-17",
  4792. "psr-7",
  4793. "request",
  4794. "response"
  4795. ],
  4796. "support": {
  4797. "source": "https://github.com/php-fig/http-factory/tree/master"
  4798. },
  4799. "time": "2019-04-30T12:38:16+00:00"
  4800. },
  4801. {
  4802. "name": "psr/http-message",
  4803. "version": "1.0.1",
  4804. "source": {
  4805. "type": "git",
  4806. "url": "https://github.com/php-fig/http-message.git",
  4807. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4808. },
  4809. "dist": {
  4810. "type": "zip",
  4811. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4812. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4813. "shasum": "",
  4814. "mirrors": [
  4815. {
  4816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4817. "preferred": true
  4818. }
  4819. ]
  4820. },
  4821. "require": {
  4822. "php": ">=5.3.0"
  4823. },
  4824. "type": "library",
  4825. "extra": {
  4826. "branch-alias": {
  4827. "dev-master": "1.0.x-dev"
  4828. }
  4829. },
  4830. "autoload": {
  4831. "psr-4": {
  4832. "Psr\\Http\\Message\\": "src/"
  4833. }
  4834. },
  4835. "notification-url": "https://packagist.org/downloads/",
  4836. "license": [
  4837. "MIT"
  4838. ],
  4839. "authors": [
  4840. {
  4841. "name": "PHP-FIG",
  4842. "homepage": "http://www.php-fig.org/"
  4843. }
  4844. ],
  4845. "description": "Common interface for HTTP messages",
  4846. "homepage": "https://github.com/php-fig/http-message",
  4847. "keywords": [
  4848. "http",
  4849. "http-message",
  4850. "psr",
  4851. "psr-7",
  4852. "request",
  4853. "response"
  4854. ],
  4855. "support": {
  4856. "source": "https://github.com/php-fig/http-message/tree/master"
  4857. },
  4858. "time": "2016-08-06T14:39:51+00:00"
  4859. },
  4860. {
  4861. "name": "psr/log",
  4862. "version": "1.1.4",
  4863. "source": {
  4864. "type": "git",
  4865. "url": "https://github.com/php-fig/log.git",
  4866. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4867. },
  4868. "dist": {
  4869. "type": "zip",
  4870. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4871. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4872. "shasum": "",
  4873. "mirrors": [
  4874. {
  4875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4876. "preferred": true
  4877. }
  4878. ]
  4879. },
  4880. "require": {
  4881. "php": ">=5.3.0"
  4882. },
  4883. "type": "library",
  4884. "extra": {
  4885. "branch-alias": {
  4886. "dev-master": "1.1.x-dev"
  4887. }
  4888. },
  4889. "autoload": {
  4890. "psr-4": {
  4891. "Psr\\Log\\": "Psr/Log/"
  4892. }
  4893. },
  4894. "notification-url": "https://packagist.org/downloads/",
  4895. "license": [
  4896. "MIT"
  4897. ],
  4898. "authors": [
  4899. {
  4900. "name": "PHP-FIG",
  4901. "homepage": "https://www.php-fig.org/"
  4902. }
  4903. ],
  4904. "description": "Common interface for logging libraries",
  4905. "homepage": "https://github.com/php-fig/log",
  4906. "keywords": [
  4907. "log",
  4908. "psr",
  4909. "psr-3"
  4910. ],
  4911. "support": {
  4912. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4913. },
  4914. "time": "2021-05-03T11:20:27+00:00"
  4915. },
  4916. {
  4917. "name": "psr/simple-cache",
  4918. "version": "1.0.1",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/php-fig/simple-cache.git",
  4922. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4927. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4928. "shasum": "",
  4929. "mirrors": [
  4930. {
  4931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4932. "preferred": true
  4933. }
  4934. ]
  4935. },
  4936. "require": {
  4937. "php": ">=5.3.0"
  4938. },
  4939. "type": "library",
  4940. "extra": {
  4941. "branch-alias": {
  4942. "dev-master": "1.0.x-dev"
  4943. }
  4944. },
  4945. "autoload": {
  4946. "psr-4": {
  4947. "Psr\\SimpleCache\\": "src/"
  4948. }
  4949. },
  4950. "notification-url": "https://packagist.org/downloads/",
  4951. "license": [
  4952. "MIT"
  4953. ],
  4954. "authors": [
  4955. {
  4956. "name": "PHP-FIG",
  4957. "homepage": "http://www.php-fig.org/"
  4958. }
  4959. ],
  4960. "description": "Common interfaces for simple caching",
  4961. "keywords": [
  4962. "cache",
  4963. "caching",
  4964. "psr",
  4965. "psr-16",
  4966. "simple-cache"
  4967. ],
  4968. "support": {
  4969. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4970. },
  4971. "time": "2017-10-23T01:57:42+00:00"
  4972. },
  4973. {
  4974. "name": "psy/psysh",
  4975. "version": "v0.11.5",
  4976. "source": {
  4977. "type": "git",
  4978. "url": "https://github.com/bobthecow/psysh.git",
  4979. "reference": "c23686f9c48ca202710dbb967df8385a952a2daf"
  4980. },
  4981. "dist": {
  4982. "type": "zip",
  4983. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/c23686f9c48ca202710dbb967df8385a952a2daf",
  4984. "reference": "c23686f9c48ca202710dbb967df8385a952a2daf",
  4985. "shasum": "",
  4986. "mirrors": [
  4987. {
  4988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4989. "preferred": true
  4990. }
  4991. ]
  4992. },
  4993. "require": {
  4994. "ext-json": "*",
  4995. "ext-tokenizer": "*",
  4996. "nikic/php-parser": "^4.0 || ^3.1",
  4997. "php": "^8.0 || ^7.0.8",
  4998. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4999. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  5000. },
  5001. "conflict": {
  5002. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5003. },
  5004. "require-dev": {
  5005. "bamarni/composer-bin-plugin": "^1.2"
  5006. },
  5007. "suggest": {
  5008. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5009. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5010. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5011. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  5012. },
  5013. "bin": [
  5014. "bin/psysh"
  5015. ],
  5016. "type": "library",
  5017. "extra": {
  5018. "branch-alias": {
  5019. "dev-main": "0.11.x-dev"
  5020. }
  5021. },
  5022. "autoload": {
  5023. "files": [
  5024. "src/functions.php"
  5025. ],
  5026. "psr-4": {
  5027. "Psy\\": "src/"
  5028. }
  5029. },
  5030. "notification-url": "https://packagist.org/downloads/",
  5031. "license": [
  5032. "MIT"
  5033. ],
  5034. "authors": [
  5035. {
  5036. "name": "Justin Hileman",
  5037. "email": "[email protected]",
  5038. "homepage": "http://justinhileman.com"
  5039. }
  5040. ],
  5041. "description": "An interactive shell for modern PHP.",
  5042. "homepage": "http://psysh.org",
  5043. "keywords": [
  5044. "REPL",
  5045. "console",
  5046. "interactive",
  5047. "shell"
  5048. ],
  5049. "support": {
  5050. "issues": "https://github.com/bobthecow/psysh/issues",
  5051. "source": "https://github.com/bobthecow/psysh/tree/v0.11.5"
  5052. },
  5053. "time": "2022-05-27T18:03:49+00:00"
  5054. },
  5055. {
  5056. "name": "ralouphie/getallheaders",
  5057. "version": "3.0.3",
  5058. "source": {
  5059. "type": "git",
  5060. "url": "https://github.com/ralouphie/getallheaders.git",
  5061. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5062. },
  5063. "dist": {
  5064. "type": "zip",
  5065. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5066. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5067. "shasum": "",
  5068. "mirrors": [
  5069. {
  5070. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5071. "preferred": true
  5072. }
  5073. ]
  5074. },
  5075. "require": {
  5076. "php": ">=5.6"
  5077. },
  5078. "require-dev": {
  5079. "php-coveralls/php-coveralls": "^2.1",
  5080. "phpunit/phpunit": "^5 || ^6.5"
  5081. },
  5082. "type": "library",
  5083. "autoload": {
  5084. "files": [
  5085. "src/getallheaders.php"
  5086. ]
  5087. },
  5088. "notification-url": "https://packagist.org/downloads/",
  5089. "license": [
  5090. "MIT"
  5091. ],
  5092. "authors": [
  5093. {
  5094. "name": "Ralph Khattar",
  5095. "email": "[email protected]"
  5096. }
  5097. ],
  5098. "description": "A polyfill for getallheaders.",
  5099. "support": {
  5100. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5101. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5102. },
  5103. "time": "2019-03-08T08:55:37+00:00"
  5104. },
  5105. {
  5106. "name": "ramsey/collection",
  5107. "version": "1.2.2",
  5108. "source": {
  5109. "type": "git",
  5110. "url": "https://github.com/ramsey/collection.git",
  5111. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  5112. },
  5113. "dist": {
  5114. "type": "zip",
  5115. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  5116. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  5117. "shasum": "",
  5118. "mirrors": [
  5119. {
  5120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5121. "preferred": true
  5122. }
  5123. ]
  5124. },
  5125. "require": {
  5126. "php": "^7.3 || ^8",
  5127. "symfony/polyfill-php81": "^1.23"
  5128. },
  5129. "require-dev": {
  5130. "captainhook/captainhook": "^5.3",
  5131. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5132. "ergebnis/composer-normalize": "^2.6",
  5133. "fakerphp/faker": "^1.5",
  5134. "hamcrest/hamcrest-php": "^2",
  5135. "jangregor/phpstan-prophecy": "^0.8",
  5136. "mockery/mockery": "^1.3",
  5137. "phpspec/prophecy-phpunit": "^2.0",
  5138. "phpstan/extension-installer": "^1",
  5139. "phpstan/phpstan": "^0.12.32",
  5140. "phpstan/phpstan-mockery": "^0.12.5",
  5141. "phpstan/phpstan-phpunit": "^0.12.11",
  5142. "phpunit/phpunit": "^8.5 || ^9",
  5143. "psy/psysh": "^0.10.4",
  5144. "slevomat/coding-standard": "^6.3",
  5145. "squizlabs/php_codesniffer": "^3.5",
  5146. "vimeo/psalm": "^4.4"
  5147. },
  5148. "type": "library",
  5149. "autoload": {
  5150. "psr-4": {
  5151. "Ramsey\\Collection\\": "src/"
  5152. }
  5153. },
  5154. "notification-url": "https://packagist.org/downloads/",
  5155. "license": [
  5156. "MIT"
  5157. ],
  5158. "authors": [
  5159. {
  5160. "name": "Ben Ramsey",
  5161. "email": "[email protected]",
  5162. "homepage": "https://benramsey.com"
  5163. }
  5164. ],
  5165. "description": "A PHP library for representing and manipulating collections.",
  5166. "keywords": [
  5167. "array",
  5168. "collection",
  5169. "hash",
  5170. "map",
  5171. "queue",
  5172. "set"
  5173. ],
  5174. "support": {
  5175. "issues": "https://github.com/ramsey/collection/issues",
  5176. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  5177. },
  5178. "funding": [
  5179. {
  5180. "url": "https://github.com/ramsey",
  5181. "type": "github"
  5182. },
  5183. {
  5184. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5185. "type": "tidelift"
  5186. }
  5187. ],
  5188. "time": "2021-10-10T03:01:02+00:00"
  5189. },
  5190. {
  5191. "name": "ramsey/uuid",
  5192. "version": "4.2.3",
  5193. "source": {
  5194. "type": "git",
  5195. "url": "https://github.com/ramsey/uuid.git",
  5196. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  5197. },
  5198. "dist": {
  5199. "type": "zip",
  5200. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5201. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5202. "shasum": "",
  5203. "mirrors": [
  5204. {
  5205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5206. "preferred": true
  5207. }
  5208. ]
  5209. },
  5210. "require": {
  5211. "brick/math": "^0.8 || ^0.9",
  5212. "ext-json": "*",
  5213. "php": "^7.2 || ^8.0",
  5214. "ramsey/collection": "^1.0",
  5215. "symfony/polyfill-ctype": "^1.8",
  5216. "symfony/polyfill-php80": "^1.14"
  5217. },
  5218. "replace": {
  5219. "rhumsaa/uuid": "self.version"
  5220. },
  5221. "require-dev": {
  5222. "captainhook/captainhook": "^5.10",
  5223. "captainhook/plugin-composer": "^5.3",
  5224. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5225. "doctrine/annotations": "^1.8",
  5226. "ergebnis/composer-normalize": "^2.15",
  5227. "mockery/mockery": "^1.3",
  5228. "moontoast/math": "^1.1",
  5229. "paragonie/random-lib": "^2",
  5230. "php-mock/php-mock": "^2.2",
  5231. "php-mock/php-mock-mockery": "^1.3",
  5232. "php-parallel-lint/php-parallel-lint": "^1.1",
  5233. "phpbench/phpbench": "^1.0",
  5234. "phpstan/extension-installer": "^1.0",
  5235. "phpstan/phpstan": "^0.12",
  5236. "phpstan/phpstan-mockery": "^0.12",
  5237. "phpstan/phpstan-phpunit": "^0.12",
  5238. "phpunit/phpunit": "^8.5 || ^9",
  5239. "slevomat/coding-standard": "^7.0",
  5240. "squizlabs/php_codesniffer": "^3.5",
  5241. "vimeo/psalm": "^4.9"
  5242. },
  5243. "suggest": {
  5244. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5245. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  5246. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5247. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5248. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5249. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5250. },
  5251. "type": "library",
  5252. "extra": {
  5253. "branch-alias": {
  5254. "dev-main": "4.x-dev"
  5255. },
  5256. "captainhook": {
  5257. "force-install": true
  5258. }
  5259. },
  5260. "autoload": {
  5261. "files": [
  5262. "src/functions.php"
  5263. ],
  5264. "psr-4": {
  5265. "Ramsey\\Uuid\\": "src/"
  5266. }
  5267. },
  5268. "notification-url": "https://packagist.org/downloads/",
  5269. "license": [
  5270. "MIT"
  5271. ],
  5272. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5273. "keywords": [
  5274. "guid",
  5275. "identifier",
  5276. "uuid"
  5277. ],
  5278. "support": {
  5279. "issues": "https://github.com/ramsey/uuid/issues",
  5280. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  5281. },
  5282. "funding": [
  5283. {
  5284. "url": "https://github.com/ramsey",
  5285. "type": "github"
  5286. },
  5287. {
  5288. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5289. "type": "tidelift"
  5290. }
  5291. ],
  5292. "time": "2021-09-25T23:10:38+00:00"
  5293. },
  5294. {
  5295. "name": "riverslei/payment",
  5296. "version": "v5.1.0",
  5297. "source": {
  5298. "type": "git",
  5299. "url": "https://github.com/helei112g/payment.git",
  5300. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  5301. },
  5302. "dist": {
  5303. "type": "zip",
  5304. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  5305. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  5306. "shasum": "",
  5307. "mirrors": [
  5308. {
  5309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5310. "preferred": true
  5311. }
  5312. ]
  5313. },
  5314. "require": {
  5315. "ext-bcmath": "*",
  5316. "ext-json": "*",
  5317. "ext-mbstring": "*",
  5318. "ext-openssl": "*",
  5319. "ext-simplexml": "*",
  5320. "ext-xml": "*",
  5321. "guzzlehttp/guzzle": "~6.0",
  5322. "php": ">=7.0"
  5323. },
  5324. "require-dev": {
  5325. "codeception/codeception": "*"
  5326. },
  5327. "type": "library",
  5328. "autoload": {
  5329. "psr-4": {
  5330. "Payment\\": "src/"
  5331. }
  5332. },
  5333. "notification-url": "https://packagist.org/downloads/",
  5334. "license": [
  5335. "MIT"
  5336. ],
  5337. "authors": [
  5338. {
  5339. "name": "Leo",
  5340. "email": "[email protected]",
  5341. "homepage": "https://dayutalk.cn"
  5342. }
  5343. ],
  5344. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  5345. "homepage": "http://helei112g.github.io/payment",
  5346. "keywords": [
  5347. "alipay",
  5348. "weixin",
  5349. "一网通",
  5350. "微信支付",
  5351. "招商一网通",
  5352. "支付宝支付",
  5353. "集成支付接口SDK"
  5354. ],
  5355. "support": {
  5356. "issues": "https://github.com/helei112g/payment/issues",
  5357. "source": "https://github.com/helei112g/payment/tree/v5.x"
  5358. },
  5359. "time": "2020-05-04T03:07:17+00:00"
  5360. },
  5361. {
  5362. "name": "socialiteproviders/manager",
  5363. "version": "v4.1.0",
  5364. "source": {
  5365. "type": "git",
  5366. "url": "https://github.com/SocialiteProviders/Manager.git",
  5367. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9"
  5368. },
  5369. "dist": {
  5370. "type": "zip",
  5371. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  5372. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  5373. "shasum": "",
  5374. "mirrors": [
  5375. {
  5376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5377. "preferred": true
  5378. }
  5379. ]
  5380. },
  5381. "require": {
  5382. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  5383. "laravel/socialite": "~4.0 || ~5.0",
  5384. "php": "^7.2 || ^8.0"
  5385. },
  5386. "require-dev": {
  5387. "mockery/mockery": "^1.2",
  5388. "phpunit/phpunit": "^6.0 || ^9.0"
  5389. },
  5390. "type": "library",
  5391. "extra": {
  5392. "laravel": {
  5393. "providers": [
  5394. "SocialiteProviders\\Manager\\ServiceProvider"
  5395. ]
  5396. }
  5397. },
  5398. "autoload": {
  5399. "psr-4": {
  5400. "SocialiteProviders\\Manager\\": "src/"
  5401. }
  5402. },
  5403. "notification-url": "https://packagist.org/downloads/",
  5404. "license": [
  5405. "MIT"
  5406. ],
  5407. "authors": [
  5408. {
  5409. "name": "Andy Wendt",
  5410. "email": "[email protected]"
  5411. },
  5412. {
  5413. "name": "Anton Komarev",
  5414. "email": "[email protected]"
  5415. },
  5416. {
  5417. "name": "Miguel Piedrafita",
  5418. "email": "[email protected]"
  5419. },
  5420. {
  5421. "name": "atymic",
  5422. "email": "[email protected]",
  5423. "homepage": "https://atymic.dev"
  5424. }
  5425. ],
  5426. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5427. "homepage": "https://socialiteproviders.com",
  5428. "keywords": [
  5429. "laravel",
  5430. "manager",
  5431. "oauth",
  5432. "providers",
  5433. "socialite"
  5434. ],
  5435. "support": {
  5436. "issues": "https://github.com/socialiteproviders/manager/issues",
  5437. "source": "https://github.com/socialiteproviders/manager"
  5438. },
  5439. "time": "2022-01-23T22:40:23+00:00"
  5440. },
  5441. {
  5442. "name": "socialiteproviders/telegram",
  5443. "version": "4.1.2",
  5444. "source": {
  5445. "type": "git",
  5446. "url": "https://github.com/SocialiteProviders/Telegram.git",
  5447. "reference": "7097d79bd85e04e80447405db83ab28a3ec2b494"
  5448. },
  5449. "dist": {
  5450. "type": "zip",
  5451. "url": "https://api.github.com/repos/SocialiteProviders/Telegram/zipball/7097d79bd85e04e80447405db83ab28a3ec2b494",
  5452. "reference": "7097d79bd85e04e80447405db83ab28a3ec2b494",
  5453. "shasum": "",
  5454. "mirrors": [
  5455. {
  5456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5457. "preferred": true
  5458. }
  5459. ]
  5460. },
  5461. "require": {
  5462. "php": "^7.2 || ^8.0",
  5463. "socialiteproviders/manager": "~4.0"
  5464. },
  5465. "type": "library",
  5466. "extra": {
  5467. "laravel": {
  5468. "aliases": {
  5469. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  5470. }
  5471. }
  5472. },
  5473. "autoload": {
  5474. "psr-4": {
  5475. "SocialiteProviders\\Telegram\\": ""
  5476. }
  5477. },
  5478. "notification-url": "https://packagist.org/downloads/",
  5479. "license": [
  5480. "MIT"
  5481. ],
  5482. "authors": [
  5483. {
  5484. "name": "Adnan RIHAN",
  5485. "email": "[email protected]"
  5486. }
  5487. ],
  5488. "description": "Telegram Authentication Provider for Laravel Socialite",
  5489. "support": {
  5490. "source": "https://github.com/SocialiteProviders/Telegram/tree/4.1.2"
  5491. },
  5492. "time": "2021-07-09T00:49:27+00:00"
  5493. },
  5494. {
  5495. "name": "spatie/laravel-permission",
  5496. "version": "4.4.3",
  5497. "source": {
  5498. "type": "git",
  5499. "url": "https://github.com/spatie/laravel-permission.git",
  5500. "reference": "779797a47689d0bc1666e26f566cca44603e56fa"
  5501. },
  5502. "dist": {
  5503. "type": "zip",
  5504. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/779797a47689d0bc1666e26f566cca44603e56fa",
  5505. "reference": "779797a47689d0bc1666e26f566cca44603e56fa",
  5506. "shasum": "",
  5507. "mirrors": [
  5508. {
  5509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5510. "preferred": true
  5511. }
  5512. ]
  5513. },
  5514. "require": {
  5515. "illuminate/auth": "^6.0|^7.0|^8.0",
  5516. "illuminate/container": "^6.0|^7.0|^8.0",
  5517. "illuminate/contracts": "^6.0|^7.0|^8.0",
  5518. "illuminate/database": "^6.0|^7.0|^8.0",
  5519. "php": "^7.2.5|^8.0"
  5520. },
  5521. "require-dev": {
  5522. "orchestra/testbench": "^4.0|^5.0|^6.0",
  5523. "phpunit/phpunit": "^8.0|^9.0",
  5524. "predis/predis": "^1.1"
  5525. },
  5526. "type": "library",
  5527. "extra": {
  5528. "laravel": {
  5529. "providers": [
  5530. "Spatie\\Permission\\PermissionServiceProvider"
  5531. ]
  5532. }
  5533. },
  5534. "autoload": {
  5535. "files": [
  5536. "src/helpers.php"
  5537. ],
  5538. "psr-4": {
  5539. "Spatie\\Permission\\": "src"
  5540. }
  5541. },
  5542. "notification-url": "https://packagist.org/downloads/",
  5543. "license": [
  5544. "MIT"
  5545. ],
  5546. "authors": [
  5547. {
  5548. "name": "Freek Van der Herten",
  5549. "email": "[email protected]",
  5550. "homepage": "https://spatie.be",
  5551. "role": "Developer"
  5552. }
  5553. ],
  5554. "description": "Permission handling for Laravel 6.0 and up",
  5555. "homepage": "https://github.com/spatie/laravel-permission",
  5556. "keywords": [
  5557. "acl",
  5558. "laravel",
  5559. "permission",
  5560. "permissions",
  5561. "rbac",
  5562. "roles",
  5563. "security",
  5564. "spatie"
  5565. ],
  5566. "support": {
  5567. "issues": "https://github.com/spatie/laravel-permission/issues",
  5568. "source": "https://github.com/spatie/laravel-permission/tree/4.4.3"
  5569. },
  5570. "funding": [
  5571. {
  5572. "url": "https://github.com/spatie",
  5573. "type": "github"
  5574. }
  5575. ],
  5576. "time": "2021-10-28T07:33:49+00:00"
  5577. },
  5578. {
  5579. "name": "srmklive/paypal",
  5580. "version": "1.10.0",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/srmklive/laravel-paypal.git",
  5584. "reference": "188bb21f06f58aa3ad3dd6a25e91a1fc34bff68c"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/188bb21f06f58aa3ad3dd6a25e91a1fc34bff68c",
  5589. "reference": "188bb21f06f58aa3ad3dd6a25e91a1fc34bff68c",
  5590. "shasum": "",
  5591. "mirrors": [
  5592. {
  5593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5594. "preferred": true
  5595. }
  5596. ]
  5597. },
  5598. "require": {
  5599. "guzzlehttp/guzzle": "~6.0|~7.0",
  5600. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0|~9.0",
  5601. "nesbot/carbon": "~1.0|~2.0"
  5602. },
  5603. "type": "library",
  5604. "extra": {
  5605. "laravel": {
  5606. "providers": [
  5607. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  5608. ],
  5609. "aliases": {
  5610. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  5611. }
  5612. }
  5613. },
  5614. "autoload": {
  5615. "psr-4": {
  5616. "Srmklive\\PayPal\\": "src/"
  5617. }
  5618. },
  5619. "notification-url": "https://packagist.org/downloads/",
  5620. "license": [
  5621. "MIT"
  5622. ],
  5623. "authors": [
  5624. {
  5625. "name": "Raza Mehdi",
  5626. "email": "[email protected]"
  5627. }
  5628. ],
  5629. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  5630. "keywords": [
  5631. "http",
  5632. "laravel paypal",
  5633. "paypal",
  5634. "rest",
  5635. "web service"
  5636. ],
  5637. "support": {
  5638. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  5639. "source": "https://github.com/srmklive/laravel-paypal/tree/1.10.0"
  5640. },
  5641. "time": "2022-03-12T11:36:35+00:00"
  5642. },
  5643. {
  5644. "name": "stripe/stripe-php",
  5645. "version": "v7.128.0",
  5646. "source": {
  5647. "type": "git",
  5648. "url": "https://github.com/stripe/stripe-php.git",
  5649. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e"
  5650. },
  5651. "dist": {
  5652. "type": "zip",
  5653. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c704949c49b72985c76cc61063aa26fefbd2724e",
  5654. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e",
  5655. "shasum": "",
  5656. "mirrors": [
  5657. {
  5658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5659. "preferred": true
  5660. }
  5661. ]
  5662. },
  5663. "require": {
  5664. "ext-curl": "*",
  5665. "ext-json": "*",
  5666. "ext-mbstring": "*",
  5667. "php": ">=5.6.0"
  5668. },
  5669. "require-dev": {
  5670. "friendsofphp/php-cs-fixer": "3.5.0",
  5671. "phpstan/phpstan": "^1.2",
  5672. "phpunit/phpunit": "^5.7 || ^9.0",
  5673. "squizlabs/php_codesniffer": "^3.3"
  5674. },
  5675. "type": "library",
  5676. "extra": {
  5677. "branch-alias": {
  5678. "dev-master": "2.0-dev"
  5679. }
  5680. },
  5681. "autoload": {
  5682. "psr-4": {
  5683. "Stripe\\": "lib/"
  5684. }
  5685. },
  5686. "notification-url": "https://packagist.org/downloads/",
  5687. "license": [
  5688. "MIT"
  5689. ],
  5690. "authors": [
  5691. {
  5692. "name": "Stripe and contributors",
  5693. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5694. }
  5695. ],
  5696. "description": "Stripe PHP Library",
  5697. "homepage": "https://stripe.com/",
  5698. "keywords": [
  5699. "api",
  5700. "payment processing",
  5701. "stripe"
  5702. ],
  5703. "support": {
  5704. "issues": "https://github.com/stripe/stripe-php/issues",
  5705. "source": "https://github.com/stripe/stripe-php/tree/v7.128.0"
  5706. },
  5707. "time": "2022-05-05T17:18:02+00:00"
  5708. },
  5709. {
  5710. "name": "swiftmailer/swiftmailer",
  5711. "version": "v6.3.0",
  5712. "source": {
  5713. "type": "git",
  5714. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5715. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5716. },
  5717. "dist": {
  5718. "type": "zip",
  5719. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5720. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5721. "shasum": "",
  5722. "mirrors": [
  5723. {
  5724. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5725. "preferred": true
  5726. }
  5727. ]
  5728. },
  5729. "require": {
  5730. "egulias/email-validator": "^2.0|^3.1",
  5731. "php": ">=7.0.0",
  5732. "symfony/polyfill-iconv": "^1.0",
  5733. "symfony/polyfill-intl-idn": "^1.10",
  5734. "symfony/polyfill-mbstring": "^1.0"
  5735. },
  5736. "require-dev": {
  5737. "mockery/mockery": "^1.0",
  5738. "symfony/phpunit-bridge": "^4.4|^5.4"
  5739. },
  5740. "suggest": {
  5741. "ext-intl": "Needed to support internationalized email addresses"
  5742. },
  5743. "type": "library",
  5744. "extra": {
  5745. "branch-alias": {
  5746. "dev-master": "6.2-dev"
  5747. }
  5748. },
  5749. "autoload": {
  5750. "files": [
  5751. "lib/swift_required.php"
  5752. ]
  5753. },
  5754. "notification-url": "https://packagist.org/downloads/",
  5755. "license": [
  5756. "MIT"
  5757. ],
  5758. "authors": [
  5759. {
  5760. "name": "Chris Corbyn"
  5761. },
  5762. {
  5763. "name": "Fabien Potencier",
  5764. "email": "[email protected]"
  5765. }
  5766. ],
  5767. "description": "Swiftmailer, free feature-rich PHP mailer",
  5768. "homepage": "https://swiftmailer.symfony.com",
  5769. "keywords": [
  5770. "email",
  5771. "mail",
  5772. "mailer"
  5773. ],
  5774. "support": {
  5775. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5776. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5777. },
  5778. "funding": [
  5779. {
  5780. "url": "https://github.com/fabpot",
  5781. "type": "github"
  5782. },
  5783. {
  5784. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5785. "type": "tidelift"
  5786. }
  5787. ],
  5788. "abandoned": "symfony/mailer",
  5789. "time": "2021-10-18T15:26:12+00:00"
  5790. },
  5791. {
  5792. "name": "symfony/console",
  5793. "version": "v5.4.10",
  5794. "source": {
  5795. "type": "git",
  5796. "url": "https://github.com/symfony/console.git",
  5797. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000"
  5798. },
  5799. "dist": {
  5800. "type": "zip",
  5801. "url": "https://api.github.com/repos/symfony/console/zipball/4d671ab4ddac94ee439ea73649c69d9d200b5000",
  5802. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000",
  5803. "shasum": "",
  5804. "mirrors": [
  5805. {
  5806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5807. "preferred": true
  5808. }
  5809. ]
  5810. },
  5811. "require": {
  5812. "php": ">=7.2.5",
  5813. "symfony/deprecation-contracts": "^2.1|^3",
  5814. "symfony/polyfill-mbstring": "~1.0",
  5815. "symfony/polyfill-php73": "^1.9",
  5816. "symfony/polyfill-php80": "^1.16",
  5817. "symfony/service-contracts": "^1.1|^2|^3",
  5818. "symfony/string": "^5.1|^6.0"
  5819. },
  5820. "conflict": {
  5821. "psr/log": ">=3",
  5822. "symfony/dependency-injection": "<4.4",
  5823. "symfony/dotenv": "<5.1",
  5824. "symfony/event-dispatcher": "<4.4",
  5825. "symfony/lock": "<4.4",
  5826. "symfony/process": "<4.4"
  5827. },
  5828. "provide": {
  5829. "psr/log-implementation": "1.0|2.0"
  5830. },
  5831. "require-dev": {
  5832. "psr/log": "^1|^2",
  5833. "symfony/config": "^4.4|^5.0|^6.0",
  5834. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5835. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5836. "symfony/lock": "^4.4|^5.0|^6.0",
  5837. "symfony/process": "^4.4|^5.0|^6.0",
  5838. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5839. },
  5840. "suggest": {
  5841. "psr/log": "For using the console logger",
  5842. "symfony/event-dispatcher": "",
  5843. "symfony/lock": "",
  5844. "symfony/process": ""
  5845. },
  5846. "type": "library",
  5847. "autoload": {
  5848. "psr-4": {
  5849. "Symfony\\Component\\Console\\": ""
  5850. },
  5851. "exclude-from-classmap": [
  5852. "/Tests/"
  5853. ]
  5854. },
  5855. "notification-url": "https://packagist.org/downloads/",
  5856. "license": [
  5857. "MIT"
  5858. ],
  5859. "authors": [
  5860. {
  5861. "name": "Fabien Potencier",
  5862. "email": "[email protected]"
  5863. },
  5864. {
  5865. "name": "Symfony Community",
  5866. "homepage": "https://symfony.com/contributors"
  5867. }
  5868. ],
  5869. "description": "Eases the creation of beautiful and testable command line interfaces",
  5870. "homepage": "https://symfony.com",
  5871. "keywords": [
  5872. "cli",
  5873. "command line",
  5874. "console",
  5875. "terminal"
  5876. ],
  5877. "support": {
  5878. "source": "https://github.com/symfony/console/tree/v5.4.10"
  5879. },
  5880. "funding": [
  5881. {
  5882. "url": "https://symfony.com/sponsor",
  5883. "type": "custom"
  5884. },
  5885. {
  5886. "url": "https://github.com/fabpot",
  5887. "type": "github"
  5888. },
  5889. {
  5890. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5891. "type": "tidelift"
  5892. }
  5893. ],
  5894. "time": "2022-06-26T13:00:04+00:00"
  5895. },
  5896. {
  5897. "name": "symfony/css-selector",
  5898. "version": "v5.4.3",
  5899. "source": {
  5900. "type": "git",
  5901. "url": "https://github.com/symfony/css-selector.git",
  5902. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  5903. },
  5904. "dist": {
  5905. "type": "zip",
  5906. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  5907. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  5908. "shasum": "",
  5909. "mirrors": [
  5910. {
  5911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5912. "preferred": true
  5913. }
  5914. ]
  5915. },
  5916. "require": {
  5917. "php": ">=7.2.5",
  5918. "symfony/polyfill-php80": "^1.16"
  5919. },
  5920. "type": "library",
  5921. "autoload": {
  5922. "psr-4": {
  5923. "Symfony\\Component\\CssSelector\\": ""
  5924. },
  5925. "exclude-from-classmap": [
  5926. "/Tests/"
  5927. ]
  5928. },
  5929. "notification-url": "https://packagist.org/downloads/",
  5930. "license": [
  5931. "MIT"
  5932. ],
  5933. "authors": [
  5934. {
  5935. "name": "Fabien Potencier",
  5936. "email": "[email protected]"
  5937. },
  5938. {
  5939. "name": "Jean-François Simon",
  5940. "email": "[email protected]"
  5941. },
  5942. {
  5943. "name": "Symfony Community",
  5944. "homepage": "https://symfony.com/contributors"
  5945. }
  5946. ],
  5947. "description": "Converts CSS selectors to XPath expressions",
  5948. "homepage": "https://symfony.com",
  5949. "support": {
  5950. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  5951. },
  5952. "funding": [
  5953. {
  5954. "url": "https://symfony.com/sponsor",
  5955. "type": "custom"
  5956. },
  5957. {
  5958. "url": "https://github.com/fabpot",
  5959. "type": "github"
  5960. },
  5961. {
  5962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5963. "type": "tidelift"
  5964. }
  5965. ],
  5966. "time": "2022-01-02T09:53:40+00:00"
  5967. },
  5968. {
  5969. "name": "symfony/deprecation-contracts",
  5970. "version": "v2.5.1",
  5971. "source": {
  5972. "type": "git",
  5973. "url": "https://github.com/symfony/deprecation-contracts.git",
  5974. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5975. },
  5976. "dist": {
  5977. "type": "zip",
  5978. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5979. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5980. "shasum": "",
  5981. "mirrors": [
  5982. {
  5983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5984. "preferred": true
  5985. }
  5986. ]
  5987. },
  5988. "require": {
  5989. "php": ">=7.1"
  5990. },
  5991. "type": "library",
  5992. "extra": {
  5993. "branch-alias": {
  5994. "dev-main": "2.5-dev"
  5995. },
  5996. "thanks": {
  5997. "name": "symfony/contracts",
  5998. "url": "https://github.com/symfony/contracts"
  5999. }
  6000. },
  6001. "autoload": {
  6002. "files": [
  6003. "function.php"
  6004. ]
  6005. },
  6006. "notification-url": "https://packagist.org/downloads/",
  6007. "license": [
  6008. "MIT"
  6009. ],
  6010. "authors": [
  6011. {
  6012. "name": "Nicolas Grekas",
  6013. "email": "[email protected]"
  6014. },
  6015. {
  6016. "name": "Symfony Community",
  6017. "homepage": "https://symfony.com/contributors"
  6018. }
  6019. ],
  6020. "description": "A generic function and convention to trigger deprecation notices",
  6021. "homepage": "https://symfony.com",
  6022. "support": {
  6023. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1"
  6024. },
  6025. "funding": [
  6026. {
  6027. "url": "https://symfony.com/sponsor",
  6028. "type": "custom"
  6029. },
  6030. {
  6031. "url": "https://github.com/fabpot",
  6032. "type": "github"
  6033. },
  6034. {
  6035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6036. "type": "tidelift"
  6037. }
  6038. ],
  6039. "time": "2022-01-02T09:53:40+00:00"
  6040. },
  6041. {
  6042. "name": "symfony/error-handler",
  6043. "version": "v5.4.9",
  6044. "source": {
  6045. "type": "git",
  6046. "url": "https://github.com/symfony/error-handler.git",
  6047. "reference": "c116cda1f51c678782768dce89a45f13c949455d"
  6048. },
  6049. "dist": {
  6050. "type": "zip",
  6051. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
  6052. "reference": "c116cda1f51c678782768dce89a45f13c949455d",
  6053. "shasum": "",
  6054. "mirrors": [
  6055. {
  6056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6057. "preferred": true
  6058. }
  6059. ]
  6060. },
  6061. "require": {
  6062. "php": ">=7.2.5",
  6063. "psr/log": "^1|^2|^3",
  6064. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6065. },
  6066. "require-dev": {
  6067. "symfony/deprecation-contracts": "^2.1|^3",
  6068. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6069. "symfony/serializer": "^4.4|^5.0|^6.0"
  6070. },
  6071. "bin": [
  6072. "Resources/bin/patch-type-declarations"
  6073. ],
  6074. "type": "library",
  6075. "autoload": {
  6076. "psr-4": {
  6077. "Symfony\\Component\\ErrorHandler\\": ""
  6078. },
  6079. "exclude-from-classmap": [
  6080. "/Tests/"
  6081. ]
  6082. },
  6083. "notification-url": "https://packagist.org/downloads/",
  6084. "license": [
  6085. "MIT"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "Fabien Potencier",
  6090. "email": "[email protected]"
  6091. },
  6092. {
  6093. "name": "Symfony Community",
  6094. "homepage": "https://symfony.com/contributors"
  6095. }
  6096. ],
  6097. "description": "Provides tools to manage errors and ease debugging PHP code",
  6098. "homepage": "https://symfony.com",
  6099. "support": {
  6100. "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
  6101. },
  6102. "funding": [
  6103. {
  6104. "url": "https://symfony.com/sponsor",
  6105. "type": "custom"
  6106. },
  6107. {
  6108. "url": "https://github.com/fabpot",
  6109. "type": "github"
  6110. },
  6111. {
  6112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6113. "type": "tidelift"
  6114. }
  6115. ],
  6116. "time": "2022-05-21T13:57:48+00:00"
  6117. },
  6118. {
  6119. "name": "symfony/event-dispatcher",
  6120. "version": "v5.4.9",
  6121. "source": {
  6122. "type": "git",
  6123. "url": "https://github.com/symfony/event-dispatcher.git",
  6124. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  6125. },
  6126. "dist": {
  6127. "type": "zip",
  6128. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  6129. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  6130. "shasum": "",
  6131. "mirrors": [
  6132. {
  6133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6134. "preferred": true
  6135. }
  6136. ]
  6137. },
  6138. "require": {
  6139. "php": ">=7.2.5",
  6140. "symfony/deprecation-contracts": "^2.1|^3",
  6141. "symfony/event-dispatcher-contracts": "^2|^3",
  6142. "symfony/polyfill-php80": "^1.16"
  6143. },
  6144. "conflict": {
  6145. "symfony/dependency-injection": "<4.4"
  6146. },
  6147. "provide": {
  6148. "psr/event-dispatcher-implementation": "1.0",
  6149. "symfony/event-dispatcher-implementation": "2.0"
  6150. },
  6151. "require-dev": {
  6152. "psr/log": "^1|^2|^3",
  6153. "symfony/config": "^4.4|^5.0|^6.0",
  6154. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6155. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6156. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6157. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6158. "symfony/service-contracts": "^1.1|^2|^3",
  6159. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  6160. },
  6161. "suggest": {
  6162. "symfony/dependency-injection": "",
  6163. "symfony/http-kernel": ""
  6164. },
  6165. "type": "library",
  6166. "autoload": {
  6167. "psr-4": {
  6168. "Symfony\\Component\\EventDispatcher\\": ""
  6169. },
  6170. "exclude-from-classmap": [
  6171. "/Tests/"
  6172. ]
  6173. },
  6174. "notification-url": "https://packagist.org/downloads/",
  6175. "license": [
  6176. "MIT"
  6177. ],
  6178. "authors": [
  6179. {
  6180. "name": "Fabien Potencier",
  6181. "email": "[email protected]"
  6182. },
  6183. {
  6184. "name": "Symfony Community",
  6185. "homepage": "https://symfony.com/contributors"
  6186. }
  6187. ],
  6188. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6189. "homepage": "https://symfony.com",
  6190. "support": {
  6191. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  6192. },
  6193. "funding": [
  6194. {
  6195. "url": "https://symfony.com/sponsor",
  6196. "type": "custom"
  6197. },
  6198. {
  6199. "url": "https://github.com/fabpot",
  6200. "type": "github"
  6201. },
  6202. {
  6203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6204. "type": "tidelift"
  6205. }
  6206. ],
  6207. "time": "2022-05-05T16:45:39+00:00"
  6208. },
  6209. {
  6210. "name": "symfony/event-dispatcher-contracts",
  6211. "version": "v2.5.1",
  6212. "source": {
  6213. "type": "git",
  6214. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6215. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  6216. },
  6217. "dist": {
  6218. "type": "zip",
  6219. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  6220. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  6221. "shasum": "",
  6222. "mirrors": [
  6223. {
  6224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6225. "preferred": true
  6226. }
  6227. ]
  6228. },
  6229. "require": {
  6230. "php": ">=7.2.5",
  6231. "psr/event-dispatcher": "^1"
  6232. },
  6233. "suggest": {
  6234. "symfony/event-dispatcher-implementation": ""
  6235. },
  6236. "type": "library",
  6237. "extra": {
  6238. "branch-alias": {
  6239. "dev-main": "2.5-dev"
  6240. },
  6241. "thanks": {
  6242. "name": "symfony/contracts",
  6243. "url": "https://github.com/symfony/contracts"
  6244. }
  6245. },
  6246. "autoload": {
  6247. "psr-4": {
  6248. "Symfony\\Contracts\\EventDispatcher\\": ""
  6249. }
  6250. },
  6251. "notification-url": "https://packagist.org/downloads/",
  6252. "license": [
  6253. "MIT"
  6254. ],
  6255. "authors": [
  6256. {
  6257. "name": "Nicolas Grekas",
  6258. "email": "[email protected]"
  6259. },
  6260. {
  6261. "name": "Symfony Community",
  6262. "homepage": "https://symfony.com/contributors"
  6263. }
  6264. ],
  6265. "description": "Generic abstractions related to dispatching event",
  6266. "homepage": "https://symfony.com",
  6267. "keywords": [
  6268. "abstractions",
  6269. "contracts",
  6270. "decoupling",
  6271. "interfaces",
  6272. "interoperability",
  6273. "standards"
  6274. ],
  6275. "support": {
  6276. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.1"
  6277. },
  6278. "funding": [
  6279. {
  6280. "url": "https://symfony.com/sponsor",
  6281. "type": "custom"
  6282. },
  6283. {
  6284. "url": "https://github.com/fabpot",
  6285. "type": "github"
  6286. },
  6287. {
  6288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6289. "type": "tidelift"
  6290. }
  6291. ],
  6292. "time": "2022-01-02T09:53:40+00:00"
  6293. },
  6294. {
  6295. "name": "symfony/finder",
  6296. "version": "v5.4.8",
  6297. "source": {
  6298. "type": "git",
  6299. "url": "https://github.com/symfony/finder.git",
  6300. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  6301. },
  6302. "dist": {
  6303. "type": "zip",
  6304. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  6305. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  6306. "shasum": "",
  6307. "mirrors": [
  6308. {
  6309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6310. "preferred": true
  6311. }
  6312. ]
  6313. },
  6314. "require": {
  6315. "php": ">=7.2.5",
  6316. "symfony/deprecation-contracts": "^2.1|^3",
  6317. "symfony/polyfill-php80": "^1.16"
  6318. },
  6319. "type": "library",
  6320. "autoload": {
  6321. "psr-4": {
  6322. "Symfony\\Component\\Finder\\": ""
  6323. },
  6324. "exclude-from-classmap": [
  6325. "/Tests/"
  6326. ]
  6327. },
  6328. "notification-url": "https://packagist.org/downloads/",
  6329. "license": [
  6330. "MIT"
  6331. ],
  6332. "authors": [
  6333. {
  6334. "name": "Fabien Potencier",
  6335. "email": "[email protected]"
  6336. },
  6337. {
  6338. "name": "Symfony Community",
  6339. "homepage": "https://symfony.com/contributors"
  6340. }
  6341. ],
  6342. "description": "Finds files and directories via an intuitive fluent interface",
  6343. "homepage": "https://symfony.com",
  6344. "support": {
  6345. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  6346. },
  6347. "funding": [
  6348. {
  6349. "url": "https://symfony.com/sponsor",
  6350. "type": "custom"
  6351. },
  6352. {
  6353. "url": "https://github.com/fabpot",
  6354. "type": "github"
  6355. },
  6356. {
  6357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6358. "type": "tidelift"
  6359. }
  6360. ],
  6361. "time": "2022-04-15T08:07:45+00:00"
  6362. },
  6363. {
  6364. "name": "symfony/http-foundation",
  6365. "version": "v5.4.10",
  6366. "source": {
  6367. "type": "git",
  6368. "url": "https://github.com/symfony/http-foundation.git",
  6369. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  6370. },
  6371. "dist": {
  6372. "type": "zip",
  6373. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  6374. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  6375. "shasum": "",
  6376. "mirrors": [
  6377. {
  6378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6379. "preferred": true
  6380. }
  6381. ]
  6382. },
  6383. "require": {
  6384. "php": ">=7.2.5",
  6385. "symfony/deprecation-contracts": "^2.1|^3",
  6386. "symfony/polyfill-mbstring": "~1.1",
  6387. "symfony/polyfill-php80": "^1.16"
  6388. },
  6389. "require-dev": {
  6390. "predis/predis": "~1.0",
  6391. "symfony/cache": "^4.4|^5.0|^6.0",
  6392. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6393. "symfony/mime": "^4.4|^5.0|^6.0"
  6394. },
  6395. "suggest": {
  6396. "symfony/mime": "To use the file extension guesser"
  6397. },
  6398. "type": "library",
  6399. "autoload": {
  6400. "psr-4": {
  6401. "Symfony\\Component\\HttpFoundation\\": ""
  6402. },
  6403. "exclude-from-classmap": [
  6404. "/Tests/"
  6405. ]
  6406. },
  6407. "notification-url": "https://packagist.org/downloads/",
  6408. "license": [
  6409. "MIT"
  6410. ],
  6411. "authors": [
  6412. {
  6413. "name": "Fabien Potencier",
  6414. "email": "[email protected]"
  6415. },
  6416. {
  6417. "name": "Symfony Community",
  6418. "homepage": "https://symfony.com/contributors"
  6419. }
  6420. ],
  6421. "description": "Defines an object-oriented layer for the HTTP specification",
  6422. "homepage": "https://symfony.com",
  6423. "support": {
  6424. "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
  6425. },
  6426. "funding": [
  6427. {
  6428. "url": "https://symfony.com/sponsor",
  6429. "type": "custom"
  6430. },
  6431. {
  6432. "url": "https://github.com/fabpot",
  6433. "type": "github"
  6434. },
  6435. {
  6436. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6437. "type": "tidelift"
  6438. }
  6439. ],
  6440. "time": "2022-06-19T13:13:40+00:00"
  6441. },
  6442. {
  6443. "name": "symfony/http-kernel",
  6444. "version": "v5.4.10",
  6445. "source": {
  6446. "type": "git",
  6447. "url": "https://github.com/symfony/http-kernel.git",
  6448. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948"
  6449. },
  6450. "dist": {
  6451. "type": "zip",
  6452. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/255ae3b0a488d78fbb34da23d3e0c059874b5948",
  6453. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948",
  6454. "shasum": "",
  6455. "mirrors": [
  6456. {
  6457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6458. "preferred": true
  6459. }
  6460. ]
  6461. },
  6462. "require": {
  6463. "php": ">=7.2.5",
  6464. "psr/log": "^1|^2",
  6465. "symfony/deprecation-contracts": "^2.1|^3",
  6466. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6467. "symfony/event-dispatcher": "^5.0|^6.0",
  6468. "symfony/http-foundation": "^5.3.7|^6.0",
  6469. "symfony/polyfill-ctype": "^1.8",
  6470. "symfony/polyfill-php73": "^1.9",
  6471. "symfony/polyfill-php80": "^1.16"
  6472. },
  6473. "conflict": {
  6474. "symfony/browser-kit": "<5.4",
  6475. "symfony/cache": "<5.0",
  6476. "symfony/config": "<5.0",
  6477. "symfony/console": "<4.4",
  6478. "symfony/dependency-injection": "<5.3",
  6479. "symfony/doctrine-bridge": "<5.0",
  6480. "symfony/form": "<5.0",
  6481. "symfony/http-client": "<5.0",
  6482. "symfony/mailer": "<5.0",
  6483. "symfony/messenger": "<5.0",
  6484. "symfony/translation": "<5.0",
  6485. "symfony/twig-bridge": "<5.0",
  6486. "symfony/validator": "<5.0",
  6487. "twig/twig": "<2.13"
  6488. },
  6489. "provide": {
  6490. "psr/log-implementation": "1.0|2.0"
  6491. },
  6492. "require-dev": {
  6493. "psr/cache": "^1.0|^2.0|^3.0",
  6494. "symfony/browser-kit": "^5.4|^6.0",
  6495. "symfony/config": "^5.0|^6.0",
  6496. "symfony/console": "^4.4|^5.0|^6.0",
  6497. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6498. "symfony/dependency-injection": "^5.3|^6.0",
  6499. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6500. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6501. "symfony/finder": "^4.4|^5.0|^6.0",
  6502. "symfony/http-client-contracts": "^1.1|^2|^3",
  6503. "symfony/process": "^4.4|^5.0|^6.0",
  6504. "symfony/routing": "^4.4|^5.0|^6.0",
  6505. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6506. "symfony/translation": "^4.4|^5.0|^6.0",
  6507. "symfony/translation-contracts": "^1.1|^2|^3",
  6508. "twig/twig": "^2.13|^3.0.4"
  6509. },
  6510. "suggest": {
  6511. "symfony/browser-kit": "",
  6512. "symfony/config": "",
  6513. "symfony/console": "",
  6514. "symfony/dependency-injection": ""
  6515. },
  6516. "type": "library",
  6517. "autoload": {
  6518. "psr-4": {
  6519. "Symfony\\Component\\HttpKernel\\": ""
  6520. },
  6521. "exclude-from-classmap": [
  6522. "/Tests/"
  6523. ]
  6524. },
  6525. "notification-url": "https://packagist.org/downloads/",
  6526. "license": [
  6527. "MIT"
  6528. ],
  6529. "authors": [
  6530. {
  6531. "name": "Fabien Potencier",
  6532. "email": "[email protected]"
  6533. },
  6534. {
  6535. "name": "Symfony Community",
  6536. "homepage": "https://symfony.com/contributors"
  6537. }
  6538. ],
  6539. "description": "Provides a structured process for converting a Request into a Response",
  6540. "homepage": "https://symfony.com",
  6541. "support": {
  6542. "source": "https://github.com/symfony/http-kernel/tree/v5.4.10"
  6543. },
  6544. "funding": [
  6545. {
  6546. "url": "https://symfony.com/sponsor",
  6547. "type": "custom"
  6548. },
  6549. {
  6550. "url": "https://github.com/fabpot",
  6551. "type": "github"
  6552. },
  6553. {
  6554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6555. "type": "tidelift"
  6556. }
  6557. ],
  6558. "time": "2022-06-26T16:57:59+00:00"
  6559. },
  6560. {
  6561. "name": "symfony/mime",
  6562. "version": "v5.4.10",
  6563. "source": {
  6564. "type": "git",
  6565. "url": "https://github.com/symfony/mime.git",
  6566. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc"
  6567. },
  6568. "dist": {
  6569. "type": "zip",
  6570. "url": "https://api.github.com/repos/symfony/mime/zipball/02265e1e5111c3cd7480387af25e82378b7ab9cc",
  6571. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc",
  6572. "shasum": "",
  6573. "mirrors": [
  6574. {
  6575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6576. "preferred": true
  6577. }
  6578. ]
  6579. },
  6580. "require": {
  6581. "php": ">=7.2.5",
  6582. "symfony/deprecation-contracts": "^2.1|^3",
  6583. "symfony/polyfill-intl-idn": "^1.10",
  6584. "symfony/polyfill-mbstring": "^1.0",
  6585. "symfony/polyfill-php80": "^1.16"
  6586. },
  6587. "conflict": {
  6588. "egulias/email-validator": "~3.0.0",
  6589. "phpdocumentor/reflection-docblock": "<3.2.2",
  6590. "phpdocumentor/type-resolver": "<1.4.0",
  6591. "symfony/mailer": "<4.4"
  6592. },
  6593. "require-dev": {
  6594. "egulias/email-validator": "^2.1.10|^3.1",
  6595. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6596. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6597. "symfony/property-access": "^4.4|^5.1|^6.0",
  6598. "symfony/property-info": "^4.4|^5.1|^6.0",
  6599. "symfony/serializer": "^5.2|^6.0"
  6600. },
  6601. "type": "library",
  6602. "autoload": {
  6603. "psr-4": {
  6604. "Symfony\\Component\\Mime\\": ""
  6605. },
  6606. "exclude-from-classmap": [
  6607. "/Tests/"
  6608. ]
  6609. },
  6610. "notification-url": "https://packagist.org/downloads/",
  6611. "license": [
  6612. "MIT"
  6613. ],
  6614. "authors": [
  6615. {
  6616. "name": "Fabien Potencier",
  6617. "email": "[email protected]"
  6618. },
  6619. {
  6620. "name": "Symfony Community",
  6621. "homepage": "https://symfony.com/contributors"
  6622. }
  6623. ],
  6624. "description": "Allows manipulating MIME messages",
  6625. "homepage": "https://symfony.com",
  6626. "keywords": [
  6627. "mime",
  6628. "mime-type"
  6629. ],
  6630. "support": {
  6631. "source": "https://github.com/symfony/mime/tree/v5.4.10"
  6632. },
  6633. "funding": [
  6634. {
  6635. "url": "https://symfony.com/sponsor",
  6636. "type": "custom"
  6637. },
  6638. {
  6639. "url": "https://github.com/fabpot",
  6640. "type": "github"
  6641. },
  6642. {
  6643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6644. "type": "tidelift"
  6645. }
  6646. ],
  6647. "time": "2022-06-09T12:22:40+00:00"
  6648. },
  6649. {
  6650. "name": "symfony/polyfill-ctype",
  6651. "version": "v1.26.0",
  6652. "source": {
  6653. "type": "git",
  6654. "url": "https://github.com/symfony/polyfill-ctype.git",
  6655. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  6656. },
  6657. "dist": {
  6658. "type": "zip",
  6659. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  6660. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  6661. "shasum": "",
  6662. "mirrors": [
  6663. {
  6664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6665. "preferred": true
  6666. }
  6667. ]
  6668. },
  6669. "require": {
  6670. "php": ">=7.1"
  6671. },
  6672. "provide": {
  6673. "ext-ctype": "*"
  6674. },
  6675. "suggest": {
  6676. "ext-ctype": "For best performance"
  6677. },
  6678. "type": "library",
  6679. "extra": {
  6680. "branch-alias": {
  6681. "dev-main": "1.26-dev"
  6682. },
  6683. "thanks": {
  6684. "name": "symfony/polyfill",
  6685. "url": "https://github.com/symfony/polyfill"
  6686. }
  6687. },
  6688. "autoload": {
  6689. "files": [
  6690. "bootstrap.php"
  6691. ],
  6692. "psr-4": {
  6693. "Symfony\\Polyfill\\Ctype\\": ""
  6694. }
  6695. },
  6696. "notification-url": "https://packagist.org/downloads/",
  6697. "license": [
  6698. "MIT"
  6699. ],
  6700. "authors": [
  6701. {
  6702. "name": "Gert de Pagter",
  6703. "email": "[email protected]"
  6704. },
  6705. {
  6706. "name": "Symfony Community",
  6707. "homepage": "https://symfony.com/contributors"
  6708. }
  6709. ],
  6710. "description": "Symfony polyfill for ctype functions",
  6711. "homepage": "https://symfony.com",
  6712. "keywords": [
  6713. "compatibility",
  6714. "ctype",
  6715. "polyfill",
  6716. "portable"
  6717. ],
  6718. "support": {
  6719. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  6720. },
  6721. "funding": [
  6722. {
  6723. "url": "https://symfony.com/sponsor",
  6724. "type": "custom"
  6725. },
  6726. {
  6727. "url": "https://github.com/fabpot",
  6728. "type": "github"
  6729. },
  6730. {
  6731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6732. "type": "tidelift"
  6733. }
  6734. ],
  6735. "time": "2022-05-24T11:49:31+00:00"
  6736. },
  6737. {
  6738. "name": "symfony/polyfill-iconv",
  6739. "version": "v1.26.0",
  6740. "source": {
  6741. "type": "git",
  6742. "url": "https://github.com/symfony/polyfill-iconv.git",
  6743. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  6744. },
  6745. "dist": {
  6746. "type": "zip",
  6747. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  6748. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  6749. "shasum": "",
  6750. "mirrors": [
  6751. {
  6752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6753. "preferred": true
  6754. }
  6755. ]
  6756. },
  6757. "require": {
  6758. "php": ">=7.1"
  6759. },
  6760. "provide": {
  6761. "ext-iconv": "*"
  6762. },
  6763. "suggest": {
  6764. "ext-iconv": "For best performance"
  6765. },
  6766. "type": "library",
  6767. "extra": {
  6768. "branch-alias": {
  6769. "dev-main": "1.26-dev"
  6770. },
  6771. "thanks": {
  6772. "name": "symfony/polyfill",
  6773. "url": "https://github.com/symfony/polyfill"
  6774. }
  6775. },
  6776. "autoload": {
  6777. "files": [
  6778. "bootstrap.php"
  6779. ],
  6780. "psr-4": {
  6781. "Symfony\\Polyfill\\Iconv\\": ""
  6782. }
  6783. },
  6784. "notification-url": "https://packagist.org/downloads/",
  6785. "license": [
  6786. "MIT"
  6787. ],
  6788. "authors": [
  6789. {
  6790. "name": "Nicolas Grekas",
  6791. "email": "[email protected]"
  6792. },
  6793. {
  6794. "name": "Symfony Community",
  6795. "homepage": "https://symfony.com/contributors"
  6796. }
  6797. ],
  6798. "description": "Symfony polyfill for the Iconv extension",
  6799. "homepage": "https://symfony.com",
  6800. "keywords": [
  6801. "compatibility",
  6802. "iconv",
  6803. "polyfill",
  6804. "portable",
  6805. "shim"
  6806. ],
  6807. "support": {
  6808. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  6809. },
  6810. "funding": [
  6811. {
  6812. "url": "https://symfony.com/sponsor",
  6813. "type": "custom"
  6814. },
  6815. {
  6816. "url": "https://github.com/fabpot",
  6817. "type": "github"
  6818. },
  6819. {
  6820. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6821. "type": "tidelift"
  6822. }
  6823. ],
  6824. "time": "2022-05-24T11:49:31+00:00"
  6825. },
  6826. {
  6827. "name": "symfony/polyfill-intl-grapheme",
  6828. "version": "v1.25.0",
  6829. "source": {
  6830. "type": "git",
  6831. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6832. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  6833. },
  6834. "dist": {
  6835. "type": "zip",
  6836. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  6837. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  6838. "shasum": "",
  6839. "mirrors": [
  6840. {
  6841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6842. "preferred": true
  6843. }
  6844. ]
  6845. },
  6846. "require": {
  6847. "php": ">=7.1"
  6848. },
  6849. "suggest": {
  6850. "ext-intl": "For best performance"
  6851. },
  6852. "type": "library",
  6853. "extra": {
  6854. "branch-alias": {
  6855. "dev-main": "1.23-dev"
  6856. },
  6857. "thanks": {
  6858. "name": "symfony/polyfill",
  6859. "url": "https://github.com/symfony/polyfill"
  6860. }
  6861. },
  6862. "autoload": {
  6863. "files": [
  6864. "bootstrap.php"
  6865. ],
  6866. "psr-4": {
  6867. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6868. }
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "MIT"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Nicolas Grekas",
  6877. "email": "[email protected]"
  6878. },
  6879. {
  6880. "name": "Symfony Community",
  6881. "homepage": "https://symfony.com/contributors"
  6882. }
  6883. ],
  6884. "description": "Symfony polyfill for intl's grapheme_* functions",
  6885. "homepage": "https://symfony.com",
  6886. "keywords": [
  6887. "compatibility",
  6888. "grapheme",
  6889. "intl",
  6890. "polyfill",
  6891. "portable",
  6892. "shim"
  6893. ],
  6894. "support": {
  6895. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
  6896. },
  6897. "funding": [
  6898. {
  6899. "url": "https://symfony.com/sponsor",
  6900. "type": "custom"
  6901. },
  6902. {
  6903. "url": "https://github.com/fabpot",
  6904. "type": "github"
  6905. },
  6906. {
  6907. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6908. "type": "tidelift"
  6909. }
  6910. ],
  6911. "time": "2021-11-23T21:10:46+00:00"
  6912. },
  6913. {
  6914. "name": "symfony/polyfill-intl-idn",
  6915. "version": "v1.25.0",
  6916. "source": {
  6917. "type": "git",
  6918. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6919. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  6920. },
  6921. "dist": {
  6922. "type": "zip",
  6923. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  6924. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  6925. "shasum": "",
  6926. "mirrors": [
  6927. {
  6928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6929. "preferred": true
  6930. }
  6931. ]
  6932. },
  6933. "require": {
  6934. "php": ">=7.1",
  6935. "symfony/polyfill-intl-normalizer": "^1.10",
  6936. "symfony/polyfill-php72": "^1.10"
  6937. },
  6938. "suggest": {
  6939. "ext-intl": "For best performance"
  6940. },
  6941. "type": "library",
  6942. "extra": {
  6943. "branch-alias": {
  6944. "dev-main": "1.23-dev"
  6945. },
  6946. "thanks": {
  6947. "name": "symfony/polyfill",
  6948. "url": "https://github.com/symfony/polyfill"
  6949. }
  6950. },
  6951. "autoload": {
  6952. "files": [
  6953. "bootstrap.php"
  6954. ],
  6955. "psr-4": {
  6956. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6957. }
  6958. },
  6959. "notification-url": "https://packagist.org/downloads/",
  6960. "license": [
  6961. "MIT"
  6962. ],
  6963. "authors": [
  6964. {
  6965. "name": "Laurent Bassin",
  6966. "email": "[email protected]"
  6967. },
  6968. {
  6969. "name": "Trevor Rowbotham",
  6970. "email": "[email protected]"
  6971. },
  6972. {
  6973. "name": "Symfony Community",
  6974. "homepage": "https://symfony.com/contributors"
  6975. }
  6976. ],
  6977. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6978. "homepage": "https://symfony.com",
  6979. "keywords": [
  6980. "compatibility",
  6981. "idn",
  6982. "intl",
  6983. "polyfill",
  6984. "portable",
  6985. "shim"
  6986. ],
  6987. "support": {
  6988. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0"
  6989. },
  6990. "funding": [
  6991. {
  6992. "url": "https://symfony.com/sponsor",
  6993. "type": "custom"
  6994. },
  6995. {
  6996. "url": "https://github.com/fabpot",
  6997. "type": "github"
  6998. },
  6999. {
  7000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7001. "type": "tidelift"
  7002. }
  7003. ],
  7004. "time": "2021-09-14T14:02:44+00:00"
  7005. },
  7006. {
  7007. "name": "symfony/polyfill-intl-normalizer",
  7008. "version": "v1.26.0",
  7009. "source": {
  7010. "type": "git",
  7011. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7012. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  7013. },
  7014. "dist": {
  7015. "type": "zip",
  7016. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  7017. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  7018. "shasum": "",
  7019. "mirrors": [
  7020. {
  7021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7022. "preferred": true
  7023. }
  7024. ]
  7025. },
  7026. "require": {
  7027. "php": ">=7.1"
  7028. },
  7029. "suggest": {
  7030. "ext-intl": "For best performance"
  7031. },
  7032. "type": "library",
  7033. "extra": {
  7034. "branch-alias": {
  7035. "dev-main": "1.26-dev"
  7036. },
  7037. "thanks": {
  7038. "name": "symfony/polyfill",
  7039. "url": "https://github.com/symfony/polyfill"
  7040. }
  7041. },
  7042. "autoload": {
  7043. "files": [
  7044. "bootstrap.php"
  7045. ],
  7046. "psr-4": {
  7047. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7048. },
  7049. "classmap": [
  7050. "Resources/stubs"
  7051. ]
  7052. },
  7053. "notification-url": "https://packagist.org/downloads/",
  7054. "license": [
  7055. "MIT"
  7056. ],
  7057. "authors": [
  7058. {
  7059. "name": "Nicolas Grekas",
  7060. "email": "[email protected]"
  7061. },
  7062. {
  7063. "name": "Symfony Community",
  7064. "homepage": "https://symfony.com/contributors"
  7065. }
  7066. ],
  7067. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7068. "homepage": "https://symfony.com",
  7069. "keywords": [
  7070. "compatibility",
  7071. "intl",
  7072. "normalizer",
  7073. "polyfill",
  7074. "portable",
  7075. "shim"
  7076. ],
  7077. "support": {
  7078. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  7079. },
  7080. "funding": [
  7081. {
  7082. "url": "https://symfony.com/sponsor",
  7083. "type": "custom"
  7084. },
  7085. {
  7086. "url": "https://github.com/fabpot",
  7087. "type": "github"
  7088. },
  7089. {
  7090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7091. "type": "tidelift"
  7092. }
  7093. ],
  7094. "time": "2022-05-24T11:49:31+00:00"
  7095. },
  7096. {
  7097. "name": "symfony/polyfill-mbstring",
  7098. "version": "v1.26.0",
  7099. "source": {
  7100. "type": "git",
  7101. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7102. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  7103. },
  7104. "dist": {
  7105. "type": "zip",
  7106. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  7107. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  7108. "shasum": "",
  7109. "mirrors": [
  7110. {
  7111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7112. "preferred": true
  7113. }
  7114. ]
  7115. },
  7116. "require": {
  7117. "php": ">=7.1"
  7118. },
  7119. "provide": {
  7120. "ext-mbstring": "*"
  7121. },
  7122. "suggest": {
  7123. "ext-mbstring": "For best performance"
  7124. },
  7125. "type": "library",
  7126. "extra": {
  7127. "branch-alias": {
  7128. "dev-main": "1.26-dev"
  7129. },
  7130. "thanks": {
  7131. "name": "symfony/polyfill",
  7132. "url": "https://github.com/symfony/polyfill"
  7133. }
  7134. },
  7135. "autoload": {
  7136. "files": [
  7137. "bootstrap.php"
  7138. ],
  7139. "psr-4": {
  7140. "Symfony\\Polyfill\\Mbstring\\": ""
  7141. }
  7142. },
  7143. "notification-url": "https://packagist.org/downloads/",
  7144. "license": [
  7145. "MIT"
  7146. ],
  7147. "authors": [
  7148. {
  7149. "name": "Nicolas Grekas",
  7150. "email": "[email protected]"
  7151. },
  7152. {
  7153. "name": "Symfony Community",
  7154. "homepage": "https://symfony.com/contributors"
  7155. }
  7156. ],
  7157. "description": "Symfony polyfill for the Mbstring extension",
  7158. "homepage": "https://symfony.com",
  7159. "keywords": [
  7160. "compatibility",
  7161. "mbstring",
  7162. "polyfill",
  7163. "portable",
  7164. "shim"
  7165. ],
  7166. "support": {
  7167. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  7168. },
  7169. "funding": [
  7170. {
  7171. "url": "https://symfony.com/sponsor",
  7172. "type": "custom"
  7173. },
  7174. {
  7175. "url": "https://github.com/fabpot",
  7176. "type": "github"
  7177. },
  7178. {
  7179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7180. "type": "tidelift"
  7181. }
  7182. ],
  7183. "time": "2022-05-24T11:49:31+00:00"
  7184. },
  7185. {
  7186. "name": "symfony/polyfill-php56",
  7187. "version": "v1.20.0",
  7188. "source": {
  7189. "type": "git",
  7190. "url": "https://github.com/symfony/polyfill-php56.git",
  7191. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  7192. },
  7193. "dist": {
  7194. "type": "zip",
  7195. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  7196. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  7197. "shasum": "",
  7198. "mirrors": [
  7199. {
  7200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7201. "preferred": true
  7202. }
  7203. ]
  7204. },
  7205. "require": {
  7206. "php": ">=7.1"
  7207. },
  7208. "type": "metapackage",
  7209. "extra": {
  7210. "branch-alias": {
  7211. "dev-main": "1.20-dev"
  7212. },
  7213. "thanks": {
  7214. "name": "symfony/polyfill",
  7215. "url": "https://github.com/symfony/polyfill"
  7216. }
  7217. },
  7218. "notification-url": "https://packagist.org/downloads/",
  7219. "license": [
  7220. "MIT"
  7221. ],
  7222. "authors": [
  7223. {
  7224. "name": "Nicolas Grekas",
  7225. "email": "[email protected]"
  7226. },
  7227. {
  7228. "name": "Symfony Community",
  7229. "homepage": "https://symfony.com/contributors"
  7230. }
  7231. ],
  7232. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  7233. "homepage": "https://symfony.com",
  7234. "keywords": [
  7235. "compatibility",
  7236. "polyfill",
  7237. "portable",
  7238. "shim"
  7239. ],
  7240. "support": {
  7241. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  7242. },
  7243. "funding": [
  7244. {
  7245. "url": "https://symfony.com/sponsor",
  7246. "type": "custom"
  7247. },
  7248. {
  7249. "url": "https://github.com/fabpot",
  7250. "type": "github"
  7251. },
  7252. {
  7253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7254. "type": "tidelift"
  7255. }
  7256. ],
  7257. "time": "2020-10-23T14:02:19+00:00"
  7258. },
  7259. {
  7260. "name": "symfony/polyfill-php72",
  7261. "version": "v1.26.0",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/symfony/polyfill-php72.git",
  7265. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  7270. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  7271. "shasum": "",
  7272. "mirrors": [
  7273. {
  7274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7275. "preferred": true
  7276. }
  7277. ]
  7278. },
  7279. "require": {
  7280. "php": ">=7.1"
  7281. },
  7282. "type": "library",
  7283. "extra": {
  7284. "branch-alias": {
  7285. "dev-main": "1.26-dev"
  7286. },
  7287. "thanks": {
  7288. "name": "symfony/polyfill",
  7289. "url": "https://github.com/symfony/polyfill"
  7290. }
  7291. },
  7292. "autoload": {
  7293. "files": [
  7294. "bootstrap.php"
  7295. ],
  7296. "psr-4": {
  7297. "Symfony\\Polyfill\\Php72\\": ""
  7298. }
  7299. },
  7300. "notification-url": "https://packagist.org/downloads/",
  7301. "license": [
  7302. "MIT"
  7303. ],
  7304. "authors": [
  7305. {
  7306. "name": "Nicolas Grekas",
  7307. "email": "[email protected]"
  7308. },
  7309. {
  7310. "name": "Symfony Community",
  7311. "homepage": "https://symfony.com/contributors"
  7312. }
  7313. ],
  7314. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7315. "homepage": "https://symfony.com",
  7316. "keywords": [
  7317. "compatibility",
  7318. "polyfill",
  7319. "portable",
  7320. "shim"
  7321. ],
  7322. "support": {
  7323. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  7324. },
  7325. "funding": [
  7326. {
  7327. "url": "https://symfony.com/sponsor",
  7328. "type": "custom"
  7329. },
  7330. {
  7331. "url": "https://github.com/fabpot",
  7332. "type": "github"
  7333. },
  7334. {
  7335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7336. "type": "tidelift"
  7337. }
  7338. ],
  7339. "time": "2022-05-24T11:49:31+00:00"
  7340. },
  7341. {
  7342. "name": "symfony/polyfill-php73",
  7343. "version": "v1.26.0",
  7344. "source": {
  7345. "type": "git",
  7346. "url": "https://github.com/symfony/polyfill-php73.git",
  7347. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  7348. },
  7349. "dist": {
  7350. "type": "zip",
  7351. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  7352. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  7353. "shasum": "",
  7354. "mirrors": [
  7355. {
  7356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7357. "preferred": true
  7358. }
  7359. ]
  7360. },
  7361. "require": {
  7362. "php": ">=7.1"
  7363. },
  7364. "type": "library",
  7365. "extra": {
  7366. "branch-alias": {
  7367. "dev-main": "1.26-dev"
  7368. },
  7369. "thanks": {
  7370. "name": "symfony/polyfill",
  7371. "url": "https://github.com/symfony/polyfill"
  7372. }
  7373. },
  7374. "autoload": {
  7375. "files": [
  7376. "bootstrap.php"
  7377. ],
  7378. "psr-4": {
  7379. "Symfony\\Polyfill\\Php73\\": ""
  7380. },
  7381. "classmap": [
  7382. "Resources/stubs"
  7383. ]
  7384. },
  7385. "notification-url": "https://packagist.org/downloads/",
  7386. "license": [
  7387. "MIT"
  7388. ],
  7389. "authors": [
  7390. {
  7391. "name": "Nicolas Grekas",
  7392. "email": "[email protected]"
  7393. },
  7394. {
  7395. "name": "Symfony Community",
  7396. "homepage": "https://symfony.com/contributors"
  7397. }
  7398. ],
  7399. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7400. "homepage": "https://symfony.com",
  7401. "keywords": [
  7402. "compatibility",
  7403. "polyfill",
  7404. "portable",
  7405. "shim"
  7406. ],
  7407. "support": {
  7408. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  7409. },
  7410. "funding": [
  7411. {
  7412. "url": "https://symfony.com/sponsor",
  7413. "type": "custom"
  7414. },
  7415. {
  7416. "url": "https://github.com/fabpot",
  7417. "type": "github"
  7418. },
  7419. {
  7420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7421. "type": "tidelift"
  7422. }
  7423. ],
  7424. "time": "2022-05-24T11:49:31+00:00"
  7425. },
  7426. {
  7427. "name": "symfony/polyfill-php80",
  7428. "version": "v1.26.0",
  7429. "source": {
  7430. "type": "git",
  7431. "url": "https://github.com/symfony/polyfill-php80.git",
  7432. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  7433. },
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  7437. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  7438. "shasum": "",
  7439. "mirrors": [
  7440. {
  7441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7442. "preferred": true
  7443. }
  7444. ]
  7445. },
  7446. "require": {
  7447. "php": ">=7.1"
  7448. },
  7449. "type": "library",
  7450. "extra": {
  7451. "branch-alias": {
  7452. "dev-main": "1.26-dev"
  7453. },
  7454. "thanks": {
  7455. "name": "symfony/polyfill",
  7456. "url": "https://github.com/symfony/polyfill"
  7457. }
  7458. },
  7459. "autoload": {
  7460. "files": [
  7461. "bootstrap.php"
  7462. ],
  7463. "psr-4": {
  7464. "Symfony\\Polyfill\\Php80\\": ""
  7465. },
  7466. "classmap": [
  7467. "Resources/stubs"
  7468. ]
  7469. },
  7470. "notification-url": "https://packagist.org/downloads/",
  7471. "license": [
  7472. "MIT"
  7473. ],
  7474. "authors": [
  7475. {
  7476. "name": "Ion Bazan",
  7477. "email": "[email protected]"
  7478. },
  7479. {
  7480. "name": "Nicolas Grekas",
  7481. "email": "[email protected]"
  7482. },
  7483. {
  7484. "name": "Symfony Community",
  7485. "homepage": "https://symfony.com/contributors"
  7486. }
  7487. ],
  7488. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7489. "homepage": "https://symfony.com",
  7490. "keywords": [
  7491. "compatibility",
  7492. "polyfill",
  7493. "portable",
  7494. "shim"
  7495. ],
  7496. "support": {
  7497. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  7498. },
  7499. "funding": [
  7500. {
  7501. "url": "https://symfony.com/sponsor",
  7502. "type": "custom"
  7503. },
  7504. {
  7505. "url": "https://github.com/fabpot",
  7506. "type": "github"
  7507. },
  7508. {
  7509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7510. "type": "tidelift"
  7511. }
  7512. ],
  7513. "time": "2022-05-10T07:21:04+00:00"
  7514. },
  7515. {
  7516. "name": "symfony/polyfill-php81",
  7517. "version": "v1.26.0",
  7518. "source": {
  7519. "type": "git",
  7520. "url": "https://github.com/symfony/polyfill-php81.git",
  7521. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  7522. },
  7523. "dist": {
  7524. "type": "zip",
  7525. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  7526. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  7527. "shasum": "",
  7528. "mirrors": [
  7529. {
  7530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7531. "preferred": true
  7532. }
  7533. ]
  7534. },
  7535. "require": {
  7536. "php": ">=7.1"
  7537. },
  7538. "type": "library",
  7539. "extra": {
  7540. "branch-alias": {
  7541. "dev-main": "1.26-dev"
  7542. },
  7543. "thanks": {
  7544. "name": "symfony/polyfill",
  7545. "url": "https://github.com/symfony/polyfill"
  7546. }
  7547. },
  7548. "autoload": {
  7549. "files": [
  7550. "bootstrap.php"
  7551. ],
  7552. "psr-4": {
  7553. "Symfony\\Polyfill\\Php81\\": ""
  7554. },
  7555. "classmap": [
  7556. "Resources/stubs"
  7557. ]
  7558. },
  7559. "notification-url": "https://packagist.org/downloads/",
  7560. "license": [
  7561. "MIT"
  7562. ],
  7563. "authors": [
  7564. {
  7565. "name": "Nicolas Grekas",
  7566. "email": "[email protected]"
  7567. },
  7568. {
  7569. "name": "Symfony Community",
  7570. "homepage": "https://symfony.com/contributors"
  7571. }
  7572. ],
  7573. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7574. "homepage": "https://symfony.com",
  7575. "keywords": [
  7576. "compatibility",
  7577. "polyfill",
  7578. "portable",
  7579. "shim"
  7580. ],
  7581. "support": {
  7582. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  7583. },
  7584. "funding": [
  7585. {
  7586. "url": "https://symfony.com/sponsor",
  7587. "type": "custom"
  7588. },
  7589. {
  7590. "url": "https://github.com/fabpot",
  7591. "type": "github"
  7592. },
  7593. {
  7594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7595. "type": "tidelift"
  7596. }
  7597. ],
  7598. "time": "2022-05-24T11:49:31+00:00"
  7599. },
  7600. {
  7601. "name": "symfony/process",
  7602. "version": "v5.4.8",
  7603. "source": {
  7604. "type": "git",
  7605. "url": "https://github.com/symfony/process.git",
  7606. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
  7607. },
  7608. "dist": {
  7609. "type": "zip",
  7610. "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  7611. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  7612. "shasum": "",
  7613. "mirrors": [
  7614. {
  7615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7616. "preferred": true
  7617. }
  7618. ]
  7619. },
  7620. "require": {
  7621. "php": ">=7.2.5",
  7622. "symfony/polyfill-php80": "^1.16"
  7623. },
  7624. "type": "library",
  7625. "autoload": {
  7626. "psr-4": {
  7627. "Symfony\\Component\\Process\\": ""
  7628. },
  7629. "exclude-from-classmap": [
  7630. "/Tests/"
  7631. ]
  7632. },
  7633. "notification-url": "https://packagist.org/downloads/",
  7634. "license": [
  7635. "MIT"
  7636. ],
  7637. "authors": [
  7638. {
  7639. "name": "Fabien Potencier",
  7640. "email": "[email protected]"
  7641. },
  7642. {
  7643. "name": "Symfony Community",
  7644. "homepage": "https://symfony.com/contributors"
  7645. }
  7646. ],
  7647. "description": "Executes commands in sub-processes",
  7648. "homepage": "https://symfony.com",
  7649. "support": {
  7650. "source": "https://github.com/symfony/process/tree/v5.4.8"
  7651. },
  7652. "funding": [
  7653. {
  7654. "url": "https://symfony.com/sponsor",
  7655. "type": "custom"
  7656. },
  7657. {
  7658. "url": "https://github.com/fabpot",
  7659. "type": "github"
  7660. },
  7661. {
  7662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7663. "type": "tidelift"
  7664. }
  7665. ],
  7666. "time": "2022-04-08T05:07:18+00:00"
  7667. },
  7668. {
  7669. "name": "symfony/routing",
  7670. "version": "v5.4.8",
  7671. "source": {
  7672. "type": "git",
  7673. "url": "https://github.com/symfony/routing.git",
  7674. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7"
  7675. },
  7676. "dist": {
  7677. "type": "zip",
  7678. "url": "https://api.github.com/repos/symfony/routing/zipball/e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  7679. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  7680. "shasum": "",
  7681. "mirrors": [
  7682. {
  7683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7684. "preferred": true
  7685. }
  7686. ]
  7687. },
  7688. "require": {
  7689. "php": ">=7.2.5",
  7690. "symfony/deprecation-contracts": "^2.1|^3",
  7691. "symfony/polyfill-php80": "^1.16"
  7692. },
  7693. "conflict": {
  7694. "doctrine/annotations": "<1.12",
  7695. "symfony/config": "<5.3",
  7696. "symfony/dependency-injection": "<4.4",
  7697. "symfony/yaml": "<4.4"
  7698. },
  7699. "require-dev": {
  7700. "doctrine/annotations": "^1.12",
  7701. "psr/log": "^1|^2|^3",
  7702. "symfony/config": "^5.3|^6.0",
  7703. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7704. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7705. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7706. "symfony/yaml": "^4.4|^5.0|^6.0"
  7707. },
  7708. "suggest": {
  7709. "symfony/config": "For using the all-in-one router or any loader",
  7710. "symfony/expression-language": "For using expression matching",
  7711. "symfony/http-foundation": "For using a Symfony Request object",
  7712. "symfony/yaml": "For using the YAML loader"
  7713. },
  7714. "type": "library",
  7715. "autoload": {
  7716. "psr-4": {
  7717. "Symfony\\Component\\Routing\\": ""
  7718. },
  7719. "exclude-from-classmap": [
  7720. "/Tests/"
  7721. ]
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "license": [
  7725. "MIT"
  7726. ],
  7727. "authors": [
  7728. {
  7729. "name": "Fabien Potencier",
  7730. "email": "[email protected]"
  7731. },
  7732. {
  7733. "name": "Symfony Community",
  7734. "homepage": "https://symfony.com/contributors"
  7735. }
  7736. ],
  7737. "description": "Maps an HTTP request to a set of configuration variables",
  7738. "homepage": "https://symfony.com",
  7739. "keywords": [
  7740. "router",
  7741. "routing",
  7742. "uri",
  7743. "url"
  7744. ],
  7745. "support": {
  7746. "source": "https://github.com/symfony/routing/tree/v5.4.8"
  7747. },
  7748. "funding": [
  7749. {
  7750. "url": "https://symfony.com/sponsor",
  7751. "type": "custom"
  7752. },
  7753. {
  7754. "url": "https://github.com/fabpot",
  7755. "type": "github"
  7756. },
  7757. {
  7758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7759. "type": "tidelift"
  7760. }
  7761. ],
  7762. "time": "2022-04-18T21:45:37+00:00"
  7763. },
  7764. {
  7765. "name": "symfony/service-contracts",
  7766. "version": "v2.5.1",
  7767. "source": {
  7768. "type": "git",
  7769. "url": "https://github.com/symfony/service-contracts.git",
  7770. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
  7771. },
  7772. "dist": {
  7773. "type": "zip",
  7774. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  7775. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  7776. "shasum": "",
  7777. "mirrors": [
  7778. {
  7779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7780. "preferred": true
  7781. }
  7782. ]
  7783. },
  7784. "require": {
  7785. "php": ">=7.2.5",
  7786. "psr/container": "^1.1",
  7787. "symfony/deprecation-contracts": "^2.1|^3"
  7788. },
  7789. "conflict": {
  7790. "ext-psr": "<1.1|>=2"
  7791. },
  7792. "suggest": {
  7793. "symfony/service-implementation": ""
  7794. },
  7795. "type": "library",
  7796. "extra": {
  7797. "branch-alias": {
  7798. "dev-main": "2.5-dev"
  7799. },
  7800. "thanks": {
  7801. "name": "symfony/contracts",
  7802. "url": "https://github.com/symfony/contracts"
  7803. }
  7804. },
  7805. "autoload": {
  7806. "psr-4": {
  7807. "Symfony\\Contracts\\Service\\": ""
  7808. }
  7809. },
  7810. "notification-url": "https://packagist.org/downloads/",
  7811. "license": [
  7812. "MIT"
  7813. ],
  7814. "authors": [
  7815. {
  7816. "name": "Nicolas Grekas",
  7817. "email": "[email protected]"
  7818. },
  7819. {
  7820. "name": "Symfony Community",
  7821. "homepage": "https://symfony.com/contributors"
  7822. }
  7823. ],
  7824. "description": "Generic abstractions related to writing services",
  7825. "homepage": "https://symfony.com",
  7826. "keywords": [
  7827. "abstractions",
  7828. "contracts",
  7829. "decoupling",
  7830. "interfaces",
  7831. "interoperability",
  7832. "standards"
  7833. ],
  7834. "support": {
  7835. "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
  7836. },
  7837. "funding": [
  7838. {
  7839. "url": "https://symfony.com/sponsor",
  7840. "type": "custom"
  7841. },
  7842. {
  7843. "url": "https://github.com/fabpot",
  7844. "type": "github"
  7845. },
  7846. {
  7847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7848. "type": "tidelift"
  7849. }
  7850. ],
  7851. "time": "2022-03-13T20:07:29+00:00"
  7852. },
  7853. {
  7854. "name": "symfony/string",
  7855. "version": "v5.4.10",
  7856. "source": {
  7857. "type": "git",
  7858. "url": "https://github.com/symfony/string.git",
  7859. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097"
  7860. },
  7861. "dist": {
  7862. "type": "zip",
  7863. "url": "https://api.github.com/repos/symfony/string/zipball/4432bc7df82a554b3e413a8570ce2fea90e94097",
  7864. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097",
  7865. "shasum": "",
  7866. "mirrors": [
  7867. {
  7868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7869. "preferred": true
  7870. }
  7871. ]
  7872. },
  7873. "require": {
  7874. "php": ">=7.2.5",
  7875. "symfony/polyfill-ctype": "~1.8",
  7876. "symfony/polyfill-intl-grapheme": "~1.0",
  7877. "symfony/polyfill-intl-normalizer": "~1.0",
  7878. "symfony/polyfill-mbstring": "~1.0",
  7879. "symfony/polyfill-php80": "~1.15"
  7880. },
  7881. "conflict": {
  7882. "symfony/translation-contracts": ">=3.0"
  7883. },
  7884. "require-dev": {
  7885. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7886. "symfony/http-client": "^4.4|^5.0|^6.0",
  7887. "symfony/translation-contracts": "^1.1|^2",
  7888. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7889. },
  7890. "type": "library",
  7891. "autoload": {
  7892. "files": [
  7893. "Resources/functions.php"
  7894. ],
  7895. "psr-4": {
  7896. "Symfony\\Component\\String\\": ""
  7897. },
  7898. "exclude-from-classmap": [
  7899. "/Tests/"
  7900. ]
  7901. },
  7902. "notification-url": "https://packagist.org/downloads/",
  7903. "license": [
  7904. "MIT"
  7905. ],
  7906. "authors": [
  7907. {
  7908. "name": "Nicolas Grekas",
  7909. "email": "[email protected]"
  7910. },
  7911. {
  7912. "name": "Symfony Community",
  7913. "homepage": "https://symfony.com/contributors"
  7914. }
  7915. ],
  7916. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7917. "homepage": "https://symfony.com",
  7918. "keywords": [
  7919. "grapheme",
  7920. "i18n",
  7921. "string",
  7922. "unicode",
  7923. "utf-8",
  7924. "utf8"
  7925. ],
  7926. "support": {
  7927. "source": "https://github.com/symfony/string/tree/v5.4.10"
  7928. },
  7929. "funding": [
  7930. {
  7931. "url": "https://symfony.com/sponsor",
  7932. "type": "custom"
  7933. },
  7934. {
  7935. "url": "https://github.com/fabpot",
  7936. "type": "github"
  7937. },
  7938. {
  7939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7940. "type": "tidelift"
  7941. }
  7942. ],
  7943. "time": "2022-06-26T15:57:47+00:00"
  7944. },
  7945. {
  7946. "name": "symfony/translation",
  7947. "version": "v5.4.9",
  7948. "source": {
  7949. "type": "git",
  7950. "url": "https://github.com/symfony/translation.git",
  7951. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca"
  7952. },
  7953. "dist": {
  7954. "type": "zip",
  7955. "url": "https://api.github.com/repos/symfony/translation/zipball/1639abc1177d26bcd4320e535e664cef067ab0ca",
  7956. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca",
  7957. "shasum": "",
  7958. "mirrors": [
  7959. {
  7960. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7961. "preferred": true
  7962. }
  7963. ]
  7964. },
  7965. "require": {
  7966. "php": ">=7.2.5",
  7967. "symfony/deprecation-contracts": "^2.1|^3",
  7968. "symfony/polyfill-mbstring": "~1.0",
  7969. "symfony/polyfill-php80": "^1.16",
  7970. "symfony/translation-contracts": "^2.3"
  7971. },
  7972. "conflict": {
  7973. "symfony/config": "<4.4",
  7974. "symfony/console": "<5.3",
  7975. "symfony/dependency-injection": "<5.0",
  7976. "symfony/http-kernel": "<5.0",
  7977. "symfony/twig-bundle": "<5.0",
  7978. "symfony/yaml": "<4.4"
  7979. },
  7980. "provide": {
  7981. "symfony/translation-implementation": "2.3"
  7982. },
  7983. "require-dev": {
  7984. "psr/log": "^1|^2|^3",
  7985. "symfony/config": "^4.4|^5.0|^6.0",
  7986. "symfony/console": "^5.4|^6.0",
  7987. "symfony/dependency-injection": "^5.0|^6.0",
  7988. "symfony/finder": "^4.4|^5.0|^6.0",
  7989. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7990. "symfony/http-kernel": "^5.0|^6.0",
  7991. "symfony/intl": "^4.4|^5.0|^6.0",
  7992. "symfony/polyfill-intl-icu": "^1.21",
  7993. "symfony/service-contracts": "^1.1.2|^2|^3",
  7994. "symfony/yaml": "^4.4|^5.0|^6.0"
  7995. },
  7996. "suggest": {
  7997. "psr/log-implementation": "To use logging capability in translator",
  7998. "symfony/config": "",
  7999. "symfony/yaml": ""
  8000. },
  8001. "type": "library",
  8002. "autoload": {
  8003. "files": [
  8004. "Resources/functions.php"
  8005. ],
  8006. "psr-4": {
  8007. "Symfony\\Component\\Translation\\": ""
  8008. },
  8009. "exclude-from-classmap": [
  8010. "/Tests/"
  8011. ]
  8012. },
  8013. "notification-url": "https://packagist.org/downloads/",
  8014. "license": [
  8015. "MIT"
  8016. ],
  8017. "authors": [
  8018. {
  8019. "name": "Fabien Potencier",
  8020. "email": "[email protected]"
  8021. },
  8022. {
  8023. "name": "Symfony Community",
  8024. "homepage": "https://symfony.com/contributors"
  8025. }
  8026. ],
  8027. "description": "Provides tools to internationalize your application",
  8028. "homepage": "https://symfony.com",
  8029. "support": {
  8030. "source": "https://github.com/symfony/translation/tree/v5.4.9"
  8031. },
  8032. "funding": [
  8033. {
  8034. "url": "https://symfony.com/sponsor",
  8035. "type": "custom"
  8036. },
  8037. {
  8038. "url": "https://github.com/fabpot",
  8039. "type": "github"
  8040. },
  8041. {
  8042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8043. "type": "tidelift"
  8044. }
  8045. ],
  8046. "time": "2022-05-06T12:33:37+00:00"
  8047. },
  8048. {
  8049. "name": "symfony/translation-contracts",
  8050. "version": "v2.5.1",
  8051. "source": {
  8052. "type": "git",
  8053. "url": "https://github.com/symfony/translation-contracts.git",
  8054. "reference": "1211df0afa701e45a04253110e959d4af4ef0f07"
  8055. },
  8056. "dist": {
  8057. "type": "zip",
  8058. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1211df0afa701e45a04253110e959d4af4ef0f07",
  8059. "reference": "1211df0afa701e45a04253110e959d4af4ef0f07",
  8060. "shasum": "",
  8061. "mirrors": [
  8062. {
  8063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8064. "preferred": true
  8065. }
  8066. ]
  8067. },
  8068. "require": {
  8069. "php": ">=7.2.5"
  8070. },
  8071. "suggest": {
  8072. "symfony/translation-implementation": ""
  8073. },
  8074. "type": "library",
  8075. "extra": {
  8076. "branch-alias": {
  8077. "dev-main": "2.5-dev"
  8078. },
  8079. "thanks": {
  8080. "name": "symfony/contracts",
  8081. "url": "https://github.com/symfony/contracts"
  8082. }
  8083. },
  8084. "autoload": {
  8085. "psr-4": {
  8086. "Symfony\\Contracts\\Translation\\": ""
  8087. }
  8088. },
  8089. "notification-url": "https://packagist.org/downloads/",
  8090. "license": [
  8091. "MIT"
  8092. ],
  8093. "authors": [
  8094. {
  8095. "name": "Nicolas Grekas",
  8096. "email": "[email protected]"
  8097. },
  8098. {
  8099. "name": "Symfony Community",
  8100. "homepage": "https://symfony.com/contributors"
  8101. }
  8102. ],
  8103. "description": "Generic abstractions related to translation",
  8104. "homepage": "https://symfony.com",
  8105. "keywords": [
  8106. "abstractions",
  8107. "contracts",
  8108. "decoupling",
  8109. "interfaces",
  8110. "interoperability",
  8111. "standards"
  8112. ],
  8113. "support": {
  8114. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.1"
  8115. },
  8116. "funding": [
  8117. {
  8118. "url": "https://symfony.com/sponsor",
  8119. "type": "custom"
  8120. },
  8121. {
  8122. "url": "https://github.com/fabpot",
  8123. "type": "github"
  8124. },
  8125. {
  8126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8127. "type": "tidelift"
  8128. }
  8129. ],
  8130. "time": "2022-01-02T09:53:40+00:00"
  8131. },
  8132. {
  8133. "name": "symfony/var-dumper",
  8134. "version": "v5.4.9",
  8135. "source": {
  8136. "type": "git",
  8137. "url": "https://github.com/symfony/var-dumper.git",
  8138. "reference": "af52239a330fafd192c773795520dc2dd62b5657"
  8139. },
  8140. "dist": {
  8141. "type": "zip",
  8142. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
  8143. "reference": "af52239a330fafd192c773795520dc2dd62b5657",
  8144. "shasum": "",
  8145. "mirrors": [
  8146. {
  8147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8148. "preferred": true
  8149. }
  8150. ]
  8151. },
  8152. "require": {
  8153. "php": ">=7.2.5",
  8154. "symfony/polyfill-mbstring": "~1.0",
  8155. "symfony/polyfill-php80": "^1.16"
  8156. },
  8157. "conflict": {
  8158. "phpunit/phpunit": "<5.4.3",
  8159. "symfony/console": "<4.4"
  8160. },
  8161. "require-dev": {
  8162. "ext-iconv": "*",
  8163. "symfony/console": "^4.4|^5.0|^6.0",
  8164. "symfony/process": "^4.4|^5.0|^6.0",
  8165. "symfony/uid": "^5.1|^6.0",
  8166. "twig/twig": "^2.13|^3.0.4"
  8167. },
  8168. "suggest": {
  8169. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8170. "ext-intl": "To show region name in time zone dump",
  8171. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8172. },
  8173. "bin": [
  8174. "Resources/bin/var-dump-server"
  8175. ],
  8176. "type": "library",
  8177. "autoload": {
  8178. "files": [
  8179. "Resources/functions/dump.php"
  8180. ],
  8181. "psr-4": {
  8182. "Symfony\\Component\\VarDumper\\": ""
  8183. },
  8184. "exclude-from-classmap": [
  8185. "/Tests/"
  8186. ]
  8187. },
  8188. "notification-url": "https://packagist.org/downloads/",
  8189. "license": [
  8190. "MIT"
  8191. ],
  8192. "authors": [
  8193. {
  8194. "name": "Nicolas Grekas",
  8195. "email": "[email protected]"
  8196. },
  8197. {
  8198. "name": "Symfony Community",
  8199. "homepage": "https://symfony.com/contributors"
  8200. }
  8201. ],
  8202. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8203. "homepage": "https://symfony.com",
  8204. "keywords": [
  8205. "debug",
  8206. "dump"
  8207. ],
  8208. "support": {
  8209. "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
  8210. },
  8211. "funding": [
  8212. {
  8213. "url": "https://symfony.com/sponsor",
  8214. "type": "custom"
  8215. },
  8216. {
  8217. "url": "https://github.com/fabpot",
  8218. "type": "github"
  8219. },
  8220. {
  8221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8222. "type": "tidelift"
  8223. }
  8224. ],
  8225. "time": "2022-05-21T10:24:18+00:00"
  8226. },
  8227. {
  8228. "name": "symfony/yaml",
  8229. "version": "v5.4.10",
  8230. "source": {
  8231. "type": "git",
  8232. "url": "https://github.com/symfony/yaml.git",
  8233. "reference": "04e42926429d9e8b39c174387ab990bf7817f7a2"
  8234. },
  8235. "dist": {
  8236. "type": "zip",
  8237. "url": "https://api.github.com/repos/symfony/yaml/zipball/04e42926429d9e8b39c174387ab990bf7817f7a2",
  8238. "reference": "04e42926429d9e8b39c174387ab990bf7817f7a2",
  8239. "shasum": "",
  8240. "mirrors": [
  8241. {
  8242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8243. "preferred": true
  8244. }
  8245. ]
  8246. },
  8247. "require": {
  8248. "php": ">=7.2.5",
  8249. "symfony/deprecation-contracts": "^2.1|^3",
  8250. "symfony/polyfill-ctype": "^1.8"
  8251. },
  8252. "conflict": {
  8253. "symfony/console": "<5.3"
  8254. },
  8255. "require-dev": {
  8256. "symfony/console": "^5.3|^6.0"
  8257. },
  8258. "suggest": {
  8259. "symfony/console": "For validating YAML files using the lint command"
  8260. },
  8261. "bin": [
  8262. "Resources/bin/yaml-lint"
  8263. ],
  8264. "type": "library",
  8265. "autoload": {
  8266. "psr-4": {
  8267. "Symfony\\Component\\Yaml\\": ""
  8268. },
  8269. "exclude-from-classmap": [
  8270. "/Tests/"
  8271. ]
  8272. },
  8273. "notification-url": "https://packagist.org/downloads/",
  8274. "license": [
  8275. "MIT"
  8276. ],
  8277. "authors": [
  8278. {
  8279. "name": "Fabien Potencier",
  8280. "email": "[email protected]"
  8281. },
  8282. {
  8283. "name": "Symfony Community",
  8284. "homepage": "https://symfony.com/contributors"
  8285. }
  8286. ],
  8287. "description": "Loads and dumps YAML files",
  8288. "homepage": "https://symfony.com",
  8289. "support": {
  8290. "source": "https://github.com/symfony/yaml/tree/v5.4.10"
  8291. },
  8292. "funding": [
  8293. {
  8294. "url": "https://symfony.com/sponsor",
  8295. "type": "custom"
  8296. },
  8297. {
  8298. "url": "https://github.com/fabpot",
  8299. "type": "github"
  8300. },
  8301. {
  8302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8303. "type": "tidelift"
  8304. }
  8305. ],
  8306. "time": "2022-06-20T11:50:59+00:00"
  8307. },
  8308. {
  8309. "name": "tijsverkoyen/css-to-inline-styles",
  8310. "version": "2.2.4",
  8311. "source": {
  8312. "type": "git",
  8313. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8314. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  8315. },
  8316. "dist": {
  8317. "type": "zip",
  8318. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  8319. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  8320. "shasum": "",
  8321. "mirrors": [
  8322. {
  8323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8324. "preferred": true
  8325. }
  8326. ]
  8327. },
  8328. "require": {
  8329. "ext-dom": "*",
  8330. "ext-libxml": "*",
  8331. "php": "^5.5 || ^7.0 || ^8.0",
  8332. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8333. },
  8334. "require-dev": {
  8335. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8336. },
  8337. "type": "library",
  8338. "extra": {
  8339. "branch-alias": {
  8340. "dev-master": "2.2.x-dev"
  8341. }
  8342. },
  8343. "autoload": {
  8344. "psr-4": {
  8345. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8346. }
  8347. },
  8348. "notification-url": "https://packagist.org/downloads/",
  8349. "license": [
  8350. "BSD-3-Clause"
  8351. ],
  8352. "authors": [
  8353. {
  8354. "name": "Tijs Verkoyen",
  8355. "email": "[email protected]",
  8356. "role": "Developer"
  8357. }
  8358. ],
  8359. "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.",
  8360. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8361. "support": {
  8362. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8363. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  8364. },
  8365. "time": "2021-12-08T09:12:39+00:00"
  8366. },
  8367. {
  8368. "name": "tymon/jwt-auth",
  8369. "version": "1.0.2",
  8370. "source": {
  8371. "type": "git",
  8372. "url": "https://github.com/tymondesigns/jwt-auth.git",
  8373. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  8374. },
  8375. "dist": {
  8376. "type": "zip",
  8377. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  8378. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  8379. "shasum": "",
  8380. "mirrors": [
  8381. {
  8382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8383. "preferred": true
  8384. }
  8385. ]
  8386. },
  8387. "require": {
  8388. "illuminate/auth": "^5.2|^6|^7|^8",
  8389. "illuminate/contracts": "^5.2|^6|^7|^8",
  8390. "illuminate/http": "^5.2|^6|^7|^8",
  8391. "illuminate/support": "^5.2|^6|^7|^8",
  8392. "lcobucci/jwt": "<3.4",
  8393. "namshi/jose": "^7.0",
  8394. "nesbot/carbon": "^1.0|^2.0",
  8395. "php": "^5.5.9|^7.0"
  8396. },
  8397. "require-dev": {
  8398. "illuminate/console": "^5.2|^6|^7|^8",
  8399. "illuminate/database": "^5.2|^6|^7|^8",
  8400. "illuminate/routing": "^5.2|^6|^7|^8",
  8401. "mockery/mockery": ">=0.9.9",
  8402. "phpunit/phpunit": "~4.8|~6.0"
  8403. },
  8404. "type": "library",
  8405. "extra": {
  8406. "branch-alias": {
  8407. "dev-develop": "1.0-dev"
  8408. },
  8409. "laravel": {
  8410. "aliases": {
  8411. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  8412. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  8413. },
  8414. "providers": [
  8415. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  8416. ]
  8417. }
  8418. },
  8419. "autoload": {
  8420. "psr-4": {
  8421. "Tymon\\JWTAuth\\": "src/"
  8422. }
  8423. },
  8424. "notification-url": "https://packagist.org/downloads/",
  8425. "license": [
  8426. "MIT"
  8427. ],
  8428. "authors": [
  8429. {
  8430. "name": "Sean Tymon",
  8431. "email": "[email protected]",
  8432. "homepage": "https://tymon.xyz",
  8433. "role": "Developer"
  8434. }
  8435. ],
  8436. "description": "JSON Web Token Authentication for Laravel and Lumen",
  8437. "homepage": "https://github.com/tymondesigns/jwt-auth",
  8438. "keywords": [
  8439. "Authentication",
  8440. "JSON Web Token",
  8441. "auth",
  8442. "jwt",
  8443. "laravel"
  8444. ],
  8445. "support": {
  8446. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  8447. "source": "https://github.com/tymondesigns/jwt-auth"
  8448. },
  8449. "funding": [
  8450. {
  8451. "url": "https://www.patreon.com/seantymon",
  8452. "type": "patreon"
  8453. }
  8454. ],
  8455. "time": "2020-11-27T12:32:42+00:00"
  8456. },
  8457. {
  8458. "name": "vlucas/phpdotenv",
  8459. "version": "v4.2.2",
  8460. "source": {
  8461. "type": "git",
  8462. "url": "https://github.com/vlucas/phpdotenv.git",
  8463. "reference": "77e974614d2ead521f18069dccc571696f52b8dc"
  8464. },
  8465. "dist": {
  8466. "type": "zip",
  8467. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/77e974614d2ead521f18069dccc571696f52b8dc",
  8468. "reference": "77e974614d2ead521f18069dccc571696f52b8dc",
  8469. "shasum": "",
  8470. "mirrors": [
  8471. {
  8472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8473. "preferred": true
  8474. }
  8475. ]
  8476. },
  8477. "require": {
  8478. "php": "^5.5.9 || ^7.0 || ^8.0",
  8479. "phpoption/phpoption": "^1.7.3",
  8480. "symfony/polyfill-ctype": "^1.17"
  8481. },
  8482. "require-dev": {
  8483. "bamarni/composer-bin-plugin": "^1.4.1",
  8484. "ext-filter": "*",
  8485. "ext-pcre": "*",
  8486. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  8487. },
  8488. "suggest": {
  8489. "ext-filter": "Required to use the boolean validator.",
  8490. "ext-pcre": "Required to use most of the library."
  8491. },
  8492. "type": "library",
  8493. "extra": {
  8494. "branch-alias": {
  8495. "dev-master": "4.2-dev"
  8496. }
  8497. },
  8498. "autoload": {
  8499. "psr-4": {
  8500. "Dotenv\\": "src/"
  8501. }
  8502. },
  8503. "notification-url": "https://packagist.org/downloads/",
  8504. "license": [
  8505. "BSD-3-Clause"
  8506. ],
  8507. "authors": [
  8508. {
  8509. "name": "Graham Campbell",
  8510. "email": "[email protected]",
  8511. "homepage": "https://github.com/GrahamCampbell"
  8512. },
  8513. {
  8514. "name": "Vance Lucas",
  8515. "email": "[email protected]",
  8516. "homepage": "https://github.com/vlucas"
  8517. }
  8518. ],
  8519. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8520. "keywords": [
  8521. "dotenv",
  8522. "env",
  8523. "environment"
  8524. ],
  8525. "support": {
  8526. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8527. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.2"
  8528. },
  8529. "funding": [
  8530. {
  8531. "url": "https://github.com/GrahamCampbell",
  8532. "type": "github"
  8533. },
  8534. {
  8535. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8536. "type": "tidelift"
  8537. }
  8538. ],
  8539. "time": "2021-12-12T23:07:53+00:00"
  8540. },
  8541. {
  8542. "name": "voku/portable-ascii",
  8543. "version": "1.6.1",
  8544. "source": {
  8545. "type": "git",
  8546. "url": "https://github.com/voku/portable-ascii.git",
  8547. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8548. },
  8549. "dist": {
  8550. "type": "zip",
  8551. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8552. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8553. "shasum": "",
  8554. "mirrors": [
  8555. {
  8556. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8557. "preferred": true
  8558. }
  8559. ]
  8560. },
  8561. "require": {
  8562. "php": ">=7.0.0"
  8563. },
  8564. "require-dev": {
  8565. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8566. },
  8567. "suggest": {
  8568. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8569. },
  8570. "type": "library",
  8571. "autoload": {
  8572. "psr-4": {
  8573. "voku\\": "src/voku/"
  8574. }
  8575. },
  8576. "notification-url": "https://packagist.org/downloads/",
  8577. "license": [
  8578. "MIT"
  8579. ],
  8580. "authors": [
  8581. {
  8582. "name": "Lars Moelleken",
  8583. "homepage": "http://www.moelleken.org/"
  8584. }
  8585. ],
  8586. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8587. "homepage": "https://github.com/voku/portable-ascii",
  8588. "keywords": [
  8589. "ascii",
  8590. "clean",
  8591. "php"
  8592. ],
  8593. "support": {
  8594. "issues": "https://github.com/voku/portable-ascii/issues",
  8595. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8596. },
  8597. "funding": [
  8598. {
  8599. "url": "https://www.paypal.me/moelleken",
  8600. "type": "custom"
  8601. },
  8602. {
  8603. "url": "https://github.com/voku",
  8604. "type": "github"
  8605. },
  8606. {
  8607. "url": "https://opencollective.com/portable-ascii",
  8608. "type": "open_collective"
  8609. },
  8610. {
  8611. "url": "https://www.patreon.com/voku",
  8612. "type": "patreon"
  8613. },
  8614. {
  8615. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8616. "type": "tidelift"
  8617. }
  8618. ],
  8619. "time": "2022-01-24T18:55:24+00:00"
  8620. },
  8621. {
  8622. "name": "xhat/payjs",
  8623. "version": "1.5.0",
  8624. "source": {
  8625. "type": "git",
  8626. "url": "https://github.com/xhat/payjs.git",
  8627. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  8628. },
  8629. "dist": {
  8630. "type": "zip",
  8631. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  8632. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  8633. "shasum": "",
  8634. "mirrors": [
  8635. {
  8636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8637. "preferred": true
  8638. }
  8639. ]
  8640. },
  8641. "type": "library",
  8642. "autoload": {
  8643. "psr-4": {
  8644. "Xhat\\Payjs\\": "src/"
  8645. }
  8646. },
  8647. "notification-url": "https://packagist.org/downloads/",
  8648. "license": [
  8649. "MIT"
  8650. ],
  8651. "authors": [
  8652. {
  8653. "name": "andy",
  8654. "email": "[email protected]"
  8655. }
  8656. ],
  8657. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  8658. "support": {
  8659. "issues": "https://github.com/xhat/payjs/issues",
  8660. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  8661. },
  8662. "funding": [
  8663. {
  8664. "url": "https://payjs.cn/sponsor/dajjxz",
  8665. "type": "custom"
  8666. }
  8667. ],
  8668. "time": "2020-09-11T06:02:42+00:00"
  8669. },
  8670. {
  8671. "name": "zbrettonye/geetest",
  8672. "version": "v1.2.0",
  8673. "source": {
  8674. "type": "git",
  8675. "url": "https://github.com/ZBrettonYe/geetest.git",
  8676. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  8677. },
  8678. "dist": {
  8679. "type": "zip",
  8680. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  8681. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  8682. "shasum": "",
  8683. "mirrors": [
  8684. {
  8685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8686. "preferred": true
  8687. }
  8688. ]
  8689. },
  8690. "require": {
  8691. "ext-json": "*",
  8692. "guzzlehttp/guzzle": "^6.3|^7.0",
  8693. "illuminate/routing": "^6|^7|^8",
  8694. "illuminate/support": "^6|^7|^8",
  8695. "php": "^7.2"
  8696. },
  8697. "require-dev": {
  8698. "mockery/mockery": "^1.3.1",
  8699. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  8700. },
  8701. "type": "library",
  8702. "extra": {
  8703. "laravel": {
  8704. "providers": [
  8705. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  8706. ],
  8707. "aliases": {
  8708. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  8709. }
  8710. }
  8711. },
  8712. "autoload": {
  8713. "psr-4": {
  8714. "ZBrettonYe\\Geetest\\": "src/"
  8715. }
  8716. },
  8717. "notification-url": "https://packagist.org/downloads/",
  8718. "license": [
  8719. "MIT"
  8720. ],
  8721. "authors": [
  8722. {
  8723. "name": "zbrettonye",
  8724. "email": "[email protected]"
  8725. }
  8726. ],
  8727. "description": "Geetest Package for Laravel6-8",
  8728. "keywords": [
  8729. "geetest",
  8730. "laravel"
  8731. ],
  8732. "support": {
  8733. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  8734. },
  8735. "time": "2020-10-13T20:15:36+00:00"
  8736. },
  8737. {
  8738. "name": "zbrettonye/hcaptcha",
  8739. "version": "V1.1.0",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  8743. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  8748. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  8749. "shasum": "",
  8750. "mirrors": [
  8751. {
  8752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8753. "preferred": true
  8754. }
  8755. ]
  8756. },
  8757. "require": {
  8758. "guzzlehttp/guzzle": "^6.2|^7.0",
  8759. "illuminate/support": "^6|^7|^8",
  8760. "php": "^7.2"
  8761. },
  8762. "require-dev": {
  8763. "phpunit/phpunit": "~4.8"
  8764. },
  8765. "type": "library",
  8766. "extra": {
  8767. "laravel": {
  8768. "providers": [
  8769. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  8770. ],
  8771. "aliases": {
  8772. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  8773. }
  8774. }
  8775. },
  8776. "autoload": {
  8777. "psr-4": {
  8778. "ZBrettonYe\\HCaptcha\\": "src/"
  8779. }
  8780. },
  8781. "notification-url": "https://packagist.org/downloads/",
  8782. "license": [
  8783. "MIT"
  8784. ],
  8785. "authors": [
  8786. {
  8787. "name": "zbrettonye",
  8788. "email": "[email protected]"
  8789. }
  8790. ],
  8791. "description": "hCaptcha For Laravel6~8",
  8792. "keywords": [
  8793. "captcha",
  8794. "hcaptcha",
  8795. "laravel"
  8796. ],
  8797. "support": {
  8798. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  8799. },
  8800. "time": "2020-10-13T21:22:51+00:00"
  8801. },
  8802. {
  8803. "name": "zbrettonye/no-captcha",
  8804. "version": "v1.1.1",
  8805. "source": {
  8806. "type": "git",
  8807. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  8808. "reference": "ed0beca675f63628e88e99821089628bd6ec26b9"
  8809. },
  8810. "dist": {
  8811. "type": "zip",
  8812. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/ed0beca675f63628e88e99821089628bd6ec26b9",
  8813. "reference": "ed0beca675f63628e88e99821089628bd6ec26b9",
  8814. "shasum": "",
  8815. "mirrors": [
  8816. {
  8817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8818. "preferred": true
  8819. }
  8820. ]
  8821. },
  8822. "require": {
  8823. "ext-json": "*",
  8824. "guzzlehttp/guzzle": "^6.2|^7.0",
  8825. "illuminate/support": "^6|^7|^8",
  8826. "php": "^7.2"
  8827. },
  8828. "require-dev": {
  8829. "phpunit/phpunit": "~4.8"
  8830. },
  8831. "type": "library",
  8832. "extra": {
  8833. "laravel": {
  8834. "providers": [
  8835. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  8836. ],
  8837. "aliases": {
  8838. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  8839. }
  8840. }
  8841. },
  8842. "autoload": {
  8843. "psr-4": {
  8844. "ZBrettonYe\\NoCaptcha\\": "src/"
  8845. }
  8846. },
  8847. "notification-url": "https://packagist.org/downloads/",
  8848. "license": [
  8849. "MIT"
  8850. ],
  8851. "authors": [
  8852. {
  8853. "name": "zbrettonye",
  8854. "email": "[email protected]"
  8855. }
  8856. ],
  8857. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  8858. "keywords": [
  8859. "captcha",
  8860. "laravel",
  8861. "no-captcha",
  8862. "recaptcha"
  8863. ],
  8864. "support": {
  8865. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.1"
  8866. },
  8867. "time": "2021-06-25T15:53:04+00:00"
  8868. },
  8869. {
  8870. "name": "zoujingli/ip2region",
  8871. "version": "v1.0.12",
  8872. "source": {
  8873. "type": "git",
  8874. "url": "https://github.com/zoujingli/ip2region.git",
  8875. "reference": "82cebc7a6be46524797454e98d3b165521065c26"
  8876. },
  8877. "dist": {
  8878. "type": "zip",
  8879. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/82cebc7a6be46524797454e98d3b165521065c26",
  8880. "reference": "82cebc7a6be46524797454e98d3b165521065c26",
  8881. "shasum": "",
  8882. "mirrors": [
  8883. {
  8884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8885. "preferred": true
  8886. }
  8887. ]
  8888. },
  8889. "require": {
  8890. "php": ">=5.3"
  8891. },
  8892. "type": "library",
  8893. "autoload": {
  8894. "classmap": [
  8895. "Ip2Region.php"
  8896. ]
  8897. },
  8898. "notification-url": "https://packagist.org/downloads/",
  8899. "license": [
  8900. "Apache-2.0"
  8901. ],
  8902. "authors": [
  8903. {
  8904. "name": "Anyon",
  8905. "email": "[email protected]",
  8906. "homepage": "http://ctolog.com"
  8907. }
  8908. ],
  8909. "description": "Ip2Region for PHP",
  8910. "homepage": "https://github.com/zoujingli/Ip2Region",
  8911. "keywords": [
  8912. "Ip2Region"
  8913. ],
  8914. "support": {
  8915. "issues": "https://github.com/zoujingli/ip2region/issues",
  8916. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.12"
  8917. },
  8918. "time": "2022-03-03T10:24:30+00:00"
  8919. }
  8920. ],
  8921. "packages-dev": [
  8922. {
  8923. "name": "arcanedev/laravel-lang",
  8924. "version": "8.2.0",
  8925. "source": {
  8926. "type": "git",
  8927. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  8928. "reference": "b9a4a6d21aec778befca7594d34b1748354f43a2"
  8929. },
  8930. "dist": {
  8931. "type": "zip",
  8932. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/b9a4a6d21aec778befca7594d34b1748354f43a2",
  8933. "reference": "b9a4a6d21aec778befca7594d34b1748354f43a2",
  8934. "shasum": "",
  8935. "mirrors": [
  8936. {
  8937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8938. "preferred": true
  8939. }
  8940. ]
  8941. },
  8942. "require": {
  8943. "arcanedev/support": "^7.1.2",
  8944. "caouecs/laravel-lang": "^7.0.1",
  8945. "php": "^7.2.5"
  8946. },
  8947. "require-dev": {
  8948. "mockery/mockery": "^1.3.1",
  8949. "orchestra/testbench": "^5.0",
  8950. "phpunit/phpunit": "^8.5"
  8951. },
  8952. "type": "library",
  8953. "extra": {
  8954. "laravel": {
  8955. "providers": [
  8956. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  8957. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  8958. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  8959. ]
  8960. }
  8961. },
  8962. "autoload": {
  8963. "psr-4": {
  8964. "Arcanedev\\LaravelLang\\": "src/"
  8965. }
  8966. },
  8967. "notification-url": "https://packagist.org/downloads/",
  8968. "license": [
  8969. "MIT"
  8970. ],
  8971. "authors": [
  8972. {
  8973. "name": "ARCANEDEV",
  8974. "email": "[email protected]",
  8975. "homepage": "https://github.com/arcanedev-maroc",
  8976. "role": "Developer"
  8977. }
  8978. ],
  8979. "description": "Translations manager and checker for Laravel based on 'caouecs/laravel-lang' package.",
  8980. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  8981. "keywords": [
  8982. "arcanedev",
  8983. "lang",
  8984. "languages",
  8985. "laravel",
  8986. "localisation",
  8987. "localization",
  8988. "trans",
  8989. "translations",
  8990. "validations"
  8991. ],
  8992. "support": {
  8993. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  8994. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  8995. },
  8996. "time": "2020-07-14T10:10:34+00:00"
  8997. },
  8998. {
  8999. "name": "barryvdh/laravel-debugbar",
  9000. "version": "v3.6.7",
  9001. "source": {
  9002. "type": "git",
  9003. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  9004. "reference": "b96f9820aaf1ff9afe945207883149e1c7afb298"
  9005. },
  9006. "dist": {
  9007. "type": "zip",
  9008. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/b96f9820aaf1ff9afe945207883149e1c7afb298",
  9009. "reference": "b96f9820aaf1ff9afe945207883149e1c7afb298",
  9010. "shasum": "",
  9011. "mirrors": [
  9012. {
  9013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9014. "preferred": true
  9015. }
  9016. ]
  9017. },
  9018. "require": {
  9019. "illuminate/routing": "^6|^7|^8|^9",
  9020. "illuminate/session": "^6|^7|^8|^9",
  9021. "illuminate/support": "^6|^7|^8|^9",
  9022. "maximebf/debugbar": "^1.17.2",
  9023. "php": ">=7.2",
  9024. "symfony/debug": "^4.3|^5|^6",
  9025. "symfony/finder": "^4.3|^5|^6"
  9026. },
  9027. "require-dev": {
  9028. "mockery/mockery": "^1.3.3",
  9029. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  9030. "phpunit/phpunit": "^8.5|^9.0",
  9031. "squizlabs/php_codesniffer": "^3.5"
  9032. },
  9033. "type": "library",
  9034. "extra": {
  9035. "branch-alias": {
  9036. "dev-master": "3.6-dev"
  9037. },
  9038. "laravel": {
  9039. "providers": [
  9040. "Barryvdh\\Debugbar\\ServiceProvider"
  9041. ],
  9042. "aliases": {
  9043. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  9044. }
  9045. }
  9046. },
  9047. "autoload": {
  9048. "files": [
  9049. "src/helpers.php"
  9050. ],
  9051. "psr-4": {
  9052. "Barryvdh\\Debugbar\\": "src/"
  9053. }
  9054. },
  9055. "notification-url": "https://packagist.org/downloads/",
  9056. "license": [
  9057. "MIT"
  9058. ],
  9059. "authors": [
  9060. {
  9061. "name": "Barry vd. Heuvel",
  9062. "email": "[email protected]"
  9063. }
  9064. ],
  9065. "description": "PHP Debugbar integration for Laravel",
  9066. "keywords": [
  9067. "debug",
  9068. "debugbar",
  9069. "laravel",
  9070. "profiler",
  9071. "webprofiler"
  9072. ],
  9073. "support": {
  9074. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  9075. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.7"
  9076. },
  9077. "funding": [
  9078. {
  9079. "url": "https://fruitcake.nl",
  9080. "type": "custom"
  9081. },
  9082. {
  9083. "url": "https://github.com/barryvdh",
  9084. "type": "github"
  9085. }
  9086. ],
  9087. "time": "2022-02-09T07:52:32+00:00"
  9088. },
  9089. {
  9090. "name": "barryvdh/laravel-ide-helper",
  9091. "version": "v2.8.2",
  9092. "source": {
  9093. "type": "git",
  9094. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  9095. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  9096. },
  9097. "dist": {
  9098. "type": "zip",
  9099. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  9100. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  9101. "shasum": "",
  9102. "mirrors": [
  9103. {
  9104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9105. "preferred": true
  9106. }
  9107. ]
  9108. },
  9109. "require": {
  9110. "barryvdh/reflection-docblock": "^2.0.6",
  9111. "composer/composer": "^1.6 || ^2",
  9112. "doctrine/dbal": "~2.3",
  9113. "ext-json": "*",
  9114. "illuminate/console": "^6 || ^7 || ^8",
  9115. "illuminate/filesystem": "^6 || ^7 || ^8",
  9116. "illuminate/support": "^6 || ^7 || ^8",
  9117. "php": ">=7.2",
  9118. "phpdocumentor/type-resolver": "^1.1.0"
  9119. },
  9120. "require-dev": {
  9121. "ext-pdo_sqlite": "*",
  9122. "friendsofphp/php-cs-fixer": "^2",
  9123. "illuminate/config": "^6 || ^7 || ^8",
  9124. "illuminate/view": "^6 || ^7 || ^8",
  9125. "mockery/mockery": "^1.3.3",
  9126. "orchestra/testbench": "^4 || ^5 || ^6",
  9127. "phpunit/phpunit": "^8.5 || ^9",
  9128. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  9129. "vimeo/psalm": "^3.12"
  9130. },
  9131. "type": "library",
  9132. "extra": {
  9133. "branch-alias": {
  9134. "dev-master": "2.8-dev"
  9135. },
  9136. "laravel": {
  9137. "providers": [
  9138. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  9139. ]
  9140. }
  9141. },
  9142. "autoload": {
  9143. "psr-4": {
  9144. "Barryvdh\\LaravelIdeHelper\\": "src"
  9145. }
  9146. },
  9147. "notification-url": "https://packagist.org/downloads/",
  9148. "license": [
  9149. "MIT"
  9150. ],
  9151. "authors": [
  9152. {
  9153. "name": "Barry vd. Heuvel",
  9154. "email": "[email protected]"
  9155. }
  9156. ],
  9157. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  9158. "keywords": [
  9159. "autocomplete",
  9160. "codeintel",
  9161. "helper",
  9162. "ide",
  9163. "laravel",
  9164. "netbeans",
  9165. "phpdoc",
  9166. "phpstorm",
  9167. "sublime"
  9168. ],
  9169. "support": {
  9170. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  9171. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  9172. },
  9173. "funding": [
  9174. {
  9175. "url": "https://github.com/barryvdh",
  9176. "type": "github"
  9177. }
  9178. ],
  9179. "time": "2020-12-06T08:55:05+00:00"
  9180. },
  9181. {
  9182. "name": "barryvdh/reflection-docblock",
  9183. "version": "v2.0.6",
  9184. "source": {
  9185. "type": "git",
  9186. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  9187. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  9188. },
  9189. "dist": {
  9190. "type": "zip",
  9191. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  9192. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  9193. "shasum": "",
  9194. "mirrors": [
  9195. {
  9196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9197. "preferred": true
  9198. }
  9199. ]
  9200. },
  9201. "require": {
  9202. "php": ">=5.3.3"
  9203. },
  9204. "require-dev": {
  9205. "phpunit/phpunit": "~4.0,<4.5"
  9206. },
  9207. "suggest": {
  9208. "dflydev/markdown": "~1.0",
  9209. "erusev/parsedown": "~1.0"
  9210. },
  9211. "type": "library",
  9212. "extra": {
  9213. "branch-alias": {
  9214. "dev-master": "2.0.x-dev"
  9215. }
  9216. },
  9217. "autoload": {
  9218. "psr-0": {
  9219. "Barryvdh": [
  9220. "src/"
  9221. ]
  9222. }
  9223. },
  9224. "notification-url": "https://packagist.org/downloads/",
  9225. "license": [
  9226. "MIT"
  9227. ],
  9228. "authors": [
  9229. {
  9230. "name": "Mike van Riel",
  9231. "email": "[email protected]"
  9232. }
  9233. ],
  9234. "support": {
  9235. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  9236. },
  9237. "time": "2018-12-13T10:34:14+00:00"
  9238. },
  9239. {
  9240. "name": "caouecs/laravel-lang",
  9241. "version": "7.0.3",
  9242. "source": {
  9243. "type": "git",
  9244. "url": "https://github.com/caouecs/lang.git",
  9245. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a"
  9246. },
  9247. "dist": {
  9248. "type": "zip",
  9249. "url": "https://api.github.com/repos/caouecs/lang/zipball/2cb9932f781415f1669ce27d29e5b86399ab164a",
  9250. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a",
  9251. "shasum": "",
  9252. "mirrors": [
  9253. {
  9254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9255. "preferred": true
  9256. }
  9257. ]
  9258. },
  9259. "require": {
  9260. "ext-json": "*"
  9261. },
  9262. "suggest": {
  9263. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  9264. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  9265. "overtrue/laravel-lang": "Command to add languages in your project"
  9266. },
  9267. "type": "library",
  9268. "notification-url": "https://packagist.org/downloads/",
  9269. "license": [
  9270. "MIT"
  9271. ],
  9272. "authors": [
  9273. {
  9274. "name": "caouecs",
  9275. "email": "[email protected]"
  9276. }
  9277. ],
  9278. "description": "Languages for Laravel",
  9279. "keywords": [
  9280. "lang",
  9281. "languages",
  9282. "laravel",
  9283. "lpm"
  9284. ],
  9285. "support": {
  9286. "source": "https://github.com/caouecs/lang/tree/7.0.3"
  9287. },
  9288. "abandoned": "https://github.com/Laravel-Lang/lang",
  9289. "time": "2020-08-23T08:17:21+00:00"
  9290. },
  9291. {
  9292. "name": "composer/composer",
  9293. "version": "2.3.7",
  9294. "source": {
  9295. "type": "git",
  9296. "url": "https://github.com/composer/composer.git",
  9297. "reference": "10cd375cf85dede2ff417ceab517ef9a0dc55407"
  9298. },
  9299. "dist": {
  9300. "type": "zip",
  9301. "url": "https://api.github.com/repos/composer/composer/zipball/10cd375cf85dede2ff417ceab517ef9a0dc55407",
  9302. "reference": "10cd375cf85dede2ff417ceab517ef9a0dc55407",
  9303. "shasum": "",
  9304. "mirrors": [
  9305. {
  9306. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9307. "preferred": true
  9308. }
  9309. ]
  9310. },
  9311. "require": {
  9312. "composer/ca-bundle": "^1.0",
  9313. "composer/metadata-minifier": "^1.0",
  9314. "composer/pcre": "^2 || ^3",
  9315. "composer/semver": "^3.0",
  9316. "composer/spdx-licenses": "^1.2",
  9317. "composer/xdebug-handler": "^2.0.2 || ^3.0.3",
  9318. "justinrainbow/json-schema": "^5.2.11",
  9319. "php": "^7.2.5 || ^8.0",
  9320. "psr/log": "^1.0 || ^2.0 || ^3.0",
  9321. "react/promise": "^2.8",
  9322. "seld/jsonlint": "^1.4",
  9323. "seld/phar-utils": "^1.2",
  9324. "symfony/console": "^5.4.7 || ^6.0.7",
  9325. "symfony/filesystem": "^5.4 || ^6.0",
  9326. "symfony/finder": "^5.4 || ^6.0",
  9327. "symfony/polyfill-php73": "^1.24",
  9328. "symfony/polyfill-php80": "^1.24",
  9329. "symfony/process": "^5.4 || ^6.0"
  9330. },
  9331. "require-dev": {
  9332. "phpstan/phpstan": "^1.4.1",
  9333. "phpstan/phpstan-deprecation-rules": "^1",
  9334. "phpstan/phpstan-phpunit": "^1.0",
  9335. "phpstan/phpstan-strict-rules": "^1",
  9336. "phpstan/phpstan-symfony": "^1.1",
  9337. "symfony/phpunit-bridge": "^6.0"
  9338. },
  9339. "suggest": {
  9340. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  9341. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  9342. "ext-zlib": "Allow gzip compression of HTTP requests"
  9343. },
  9344. "bin": [
  9345. "bin/composer"
  9346. ],
  9347. "type": "library",
  9348. "extra": {
  9349. "branch-alias": {
  9350. "dev-main": "2.3-dev"
  9351. },
  9352. "phpstan": {
  9353. "includes": [
  9354. "phpstan/rules.neon"
  9355. ]
  9356. }
  9357. },
  9358. "autoload": {
  9359. "psr-4": {
  9360. "Composer\\": "src/Composer"
  9361. }
  9362. },
  9363. "notification-url": "https://packagist.org/downloads/",
  9364. "license": [
  9365. "MIT"
  9366. ],
  9367. "authors": [
  9368. {
  9369. "name": "Nils Adermann",
  9370. "email": "[email protected]",
  9371. "homepage": "https://www.naderman.de"
  9372. },
  9373. {
  9374. "name": "Jordi Boggiano",
  9375. "email": "[email protected]",
  9376. "homepage": "https://seld.be"
  9377. }
  9378. ],
  9379. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  9380. "homepage": "https://getcomposer.org/",
  9381. "keywords": [
  9382. "autoload",
  9383. "dependency",
  9384. "package"
  9385. ],
  9386. "support": {
  9387. "irc": "ircs://irc.libera.chat:6697/composer",
  9388. "issues": "https://github.com/composer/composer/issues",
  9389. "source": "https://github.com/composer/composer/tree/2.3.7"
  9390. },
  9391. "funding": [
  9392. {
  9393. "url": "https://packagist.com",
  9394. "type": "custom"
  9395. },
  9396. {
  9397. "url": "https://github.com/composer",
  9398. "type": "github"
  9399. },
  9400. {
  9401. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9402. "type": "tidelift"
  9403. }
  9404. ],
  9405. "time": "2022-06-06T14:43:28+00:00"
  9406. },
  9407. {
  9408. "name": "composer/metadata-minifier",
  9409. "version": "1.0.0",
  9410. "source": {
  9411. "type": "git",
  9412. "url": "https://github.com/composer/metadata-minifier.git",
  9413. "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
  9414. },
  9415. "dist": {
  9416. "type": "zip",
  9417. "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
  9418. "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
  9419. "shasum": "",
  9420. "mirrors": [
  9421. {
  9422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9423. "preferred": true
  9424. }
  9425. ]
  9426. },
  9427. "require": {
  9428. "php": "^5.3.2 || ^7.0 || ^8.0"
  9429. },
  9430. "require-dev": {
  9431. "composer/composer": "^2",
  9432. "phpstan/phpstan": "^0.12.55",
  9433. "symfony/phpunit-bridge": "^4.2 || ^5"
  9434. },
  9435. "type": "library",
  9436. "extra": {
  9437. "branch-alias": {
  9438. "dev-main": "1.x-dev"
  9439. }
  9440. },
  9441. "autoload": {
  9442. "psr-4": {
  9443. "Composer\\MetadataMinifier\\": "src"
  9444. }
  9445. },
  9446. "notification-url": "https://packagist.org/downloads/",
  9447. "license": [
  9448. "MIT"
  9449. ],
  9450. "authors": [
  9451. {
  9452. "name": "Jordi Boggiano",
  9453. "email": "[email protected]",
  9454. "homepage": "http://seld.be"
  9455. }
  9456. ],
  9457. "description": "Small utility library that handles metadata minification and expansion.",
  9458. "keywords": [
  9459. "composer",
  9460. "compression"
  9461. ],
  9462. "support": {
  9463. "issues": "https://github.com/composer/metadata-minifier/issues",
  9464. "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
  9465. },
  9466. "funding": [
  9467. {
  9468. "url": "https://packagist.com",
  9469. "type": "custom"
  9470. },
  9471. {
  9472. "url": "https://github.com/composer",
  9473. "type": "github"
  9474. },
  9475. {
  9476. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9477. "type": "tidelift"
  9478. }
  9479. ],
  9480. "time": "2021-04-07T13:37:33+00:00"
  9481. },
  9482. {
  9483. "name": "composer/pcre",
  9484. "version": "2.0.0",
  9485. "source": {
  9486. "type": "git",
  9487. "url": "https://github.com/composer/pcre.git",
  9488. "reference": "c8e9d27cfc5ed22643c19c160455b473ffd8aabe"
  9489. },
  9490. "dist": {
  9491. "type": "zip",
  9492. "url": "https://api.github.com/repos/composer/pcre/zipball/c8e9d27cfc5ed22643c19c160455b473ffd8aabe",
  9493. "reference": "c8e9d27cfc5ed22643c19c160455b473ffd8aabe",
  9494. "shasum": "",
  9495. "mirrors": [
  9496. {
  9497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9498. "preferred": true
  9499. }
  9500. ]
  9501. },
  9502. "require": {
  9503. "php": "^7.2 || ^8.0"
  9504. },
  9505. "require-dev": {
  9506. "phpstan/phpstan": "^1.3",
  9507. "phpstan/phpstan-strict-rules": "^1.1",
  9508. "symfony/phpunit-bridge": "^5"
  9509. },
  9510. "type": "library",
  9511. "extra": {
  9512. "branch-alias": {
  9513. "dev-main": "2.x-dev"
  9514. }
  9515. },
  9516. "autoload": {
  9517. "psr-4": {
  9518. "Composer\\Pcre\\": "src"
  9519. }
  9520. },
  9521. "notification-url": "https://packagist.org/downloads/",
  9522. "license": [
  9523. "MIT"
  9524. ],
  9525. "authors": [
  9526. {
  9527. "name": "Jordi Boggiano",
  9528. "email": "[email protected]",
  9529. "homepage": "http://seld.be"
  9530. }
  9531. ],
  9532. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  9533. "keywords": [
  9534. "PCRE",
  9535. "preg",
  9536. "regex",
  9537. "regular expression"
  9538. ],
  9539. "support": {
  9540. "issues": "https://github.com/composer/pcre/issues",
  9541. "source": "https://github.com/composer/pcre/tree/2.0.0"
  9542. },
  9543. "funding": [
  9544. {
  9545. "url": "https://packagist.com",
  9546. "type": "custom"
  9547. },
  9548. {
  9549. "url": "https://github.com/composer",
  9550. "type": "github"
  9551. },
  9552. {
  9553. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9554. "type": "tidelift"
  9555. }
  9556. ],
  9557. "time": "2022-02-25T20:05:29+00:00"
  9558. },
  9559. {
  9560. "name": "composer/semver",
  9561. "version": "3.3.1",
  9562. "source": {
  9563. "type": "git",
  9564. "url": "https://github.com/composer/semver.git",
  9565. "reference": "5d8e574bb0e69188786b8ef77d43341222a41a71"
  9566. },
  9567. "dist": {
  9568. "type": "zip",
  9569. "url": "https://api.github.com/repos/composer/semver/zipball/5d8e574bb0e69188786b8ef77d43341222a41a71",
  9570. "reference": "5d8e574bb0e69188786b8ef77d43341222a41a71",
  9571. "shasum": "",
  9572. "mirrors": [
  9573. {
  9574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9575. "preferred": true
  9576. }
  9577. ]
  9578. },
  9579. "require": {
  9580. "php": "^5.3.2 || ^7.0 || ^8.0"
  9581. },
  9582. "require-dev": {
  9583. "phpstan/phpstan": "^1.4",
  9584. "symfony/phpunit-bridge": "^4.2 || ^5"
  9585. },
  9586. "type": "library",
  9587. "extra": {
  9588. "branch-alias": {
  9589. "dev-main": "3.x-dev"
  9590. }
  9591. },
  9592. "autoload": {
  9593. "psr-4": {
  9594. "Composer\\Semver\\": "src"
  9595. }
  9596. },
  9597. "notification-url": "https://packagist.org/downloads/",
  9598. "license": [
  9599. "MIT"
  9600. ],
  9601. "authors": [
  9602. {
  9603. "name": "Nils Adermann",
  9604. "email": "[email protected]",
  9605. "homepage": "http://www.naderman.de"
  9606. },
  9607. {
  9608. "name": "Jordi Boggiano",
  9609. "email": "[email protected]",
  9610. "homepage": "http://seld.be"
  9611. },
  9612. {
  9613. "name": "Rob Bast",
  9614. "email": "[email protected]",
  9615. "homepage": "http://robbast.nl"
  9616. }
  9617. ],
  9618. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  9619. "keywords": [
  9620. "semantic",
  9621. "semver",
  9622. "validation",
  9623. "versioning"
  9624. ],
  9625. "support": {
  9626. "irc": "irc://irc.freenode.org/composer",
  9627. "issues": "https://github.com/composer/semver/issues",
  9628. "source": "https://github.com/composer/semver/tree/3.3.1"
  9629. },
  9630. "funding": [
  9631. {
  9632. "url": "https://packagist.com",
  9633. "type": "custom"
  9634. },
  9635. {
  9636. "url": "https://github.com/composer",
  9637. "type": "github"
  9638. },
  9639. {
  9640. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9641. "type": "tidelift"
  9642. }
  9643. ],
  9644. "time": "2022-03-16T11:22:07+00:00"
  9645. },
  9646. {
  9647. "name": "composer/spdx-licenses",
  9648. "version": "1.5.7",
  9649. "source": {
  9650. "type": "git",
  9651. "url": "https://github.com/composer/spdx-licenses.git",
  9652. "reference": "c848241796da2abf65837d51dce1fae55a960149"
  9653. },
  9654. "dist": {
  9655. "type": "zip",
  9656. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149",
  9657. "reference": "c848241796da2abf65837d51dce1fae55a960149",
  9658. "shasum": "",
  9659. "mirrors": [
  9660. {
  9661. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9662. "preferred": true
  9663. }
  9664. ]
  9665. },
  9666. "require": {
  9667. "php": "^5.3.2 || ^7.0 || ^8.0"
  9668. },
  9669. "require-dev": {
  9670. "phpstan/phpstan": "^0.12.55",
  9671. "symfony/phpunit-bridge": "^4.2 || ^5"
  9672. },
  9673. "type": "library",
  9674. "extra": {
  9675. "branch-alias": {
  9676. "dev-main": "1.x-dev"
  9677. }
  9678. },
  9679. "autoload": {
  9680. "psr-4": {
  9681. "Composer\\Spdx\\": "src"
  9682. }
  9683. },
  9684. "notification-url": "https://packagist.org/downloads/",
  9685. "license": [
  9686. "MIT"
  9687. ],
  9688. "authors": [
  9689. {
  9690. "name": "Nils Adermann",
  9691. "email": "[email protected]",
  9692. "homepage": "http://www.naderman.de"
  9693. },
  9694. {
  9695. "name": "Jordi Boggiano",
  9696. "email": "[email protected]",
  9697. "homepage": "http://seld.be"
  9698. },
  9699. {
  9700. "name": "Rob Bast",
  9701. "email": "[email protected]",
  9702. "homepage": "http://robbast.nl"
  9703. }
  9704. ],
  9705. "description": "SPDX licenses list and validation library.",
  9706. "keywords": [
  9707. "license",
  9708. "spdx",
  9709. "validator"
  9710. ],
  9711. "support": {
  9712. "irc": "irc://irc.freenode.org/composer",
  9713. "issues": "https://github.com/composer/spdx-licenses/issues",
  9714. "source": "https://github.com/composer/spdx-licenses/tree/1.5.7"
  9715. },
  9716. "funding": [
  9717. {
  9718. "url": "https://packagist.com",
  9719. "type": "custom"
  9720. },
  9721. {
  9722. "url": "https://github.com/composer",
  9723. "type": "github"
  9724. },
  9725. {
  9726. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9727. "type": "tidelift"
  9728. }
  9729. ],
  9730. "time": "2022-05-23T07:37:50+00:00"
  9731. },
  9732. {
  9733. "name": "composer/xdebug-handler",
  9734. "version": "3.0.3",
  9735. "source": {
  9736. "type": "git",
  9737. "url": "https://github.com/composer/xdebug-handler.git",
  9738. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  9739. },
  9740. "dist": {
  9741. "type": "zip",
  9742. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  9743. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  9744. "shasum": "",
  9745. "mirrors": [
  9746. {
  9747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9748. "preferred": true
  9749. }
  9750. ]
  9751. },
  9752. "require": {
  9753. "composer/pcre": "^1 || ^2 || ^3",
  9754. "php": "^7.2.5 || ^8.0",
  9755. "psr/log": "^1 || ^2 || ^3"
  9756. },
  9757. "require-dev": {
  9758. "phpstan/phpstan": "^1.0",
  9759. "phpstan/phpstan-strict-rules": "^1.1",
  9760. "symfony/phpunit-bridge": "^6.0"
  9761. },
  9762. "type": "library",
  9763. "autoload": {
  9764. "psr-4": {
  9765. "Composer\\XdebugHandler\\": "src"
  9766. }
  9767. },
  9768. "notification-url": "https://packagist.org/downloads/",
  9769. "license": [
  9770. "MIT"
  9771. ],
  9772. "authors": [
  9773. {
  9774. "name": "John Stevenson",
  9775. "email": "[email protected]"
  9776. }
  9777. ],
  9778. "description": "Restarts a process without Xdebug.",
  9779. "keywords": [
  9780. "Xdebug",
  9781. "performance"
  9782. ],
  9783. "support": {
  9784. "irc": "irc://irc.freenode.org/composer",
  9785. "issues": "https://github.com/composer/xdebug-handler/issues",
  9786. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  9787. },
  9788. "funding": [
  9789. {
  9790. "url": "https://packagist.com",
  9791. "type": "custom"
  9792. },
  9793. {
  9794. "url": "https://github.com/composer",
  9795. "type": "github"
  9796. },
  9797. {
  9798. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9799. "type": "tidelift"
  9800. }
  9801. ],
  9802. "time": "2022-02-25T21:32:43+00:00"
  9803. },
  9804. {
  9805. "name": "doctrine/instantiator",
  9806. "version": "1.4.1",
  9807. "source": {
  9808. "type": "git",
  9809. "url": "https://github.com/doctrine/instantiator.git",
  9810. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  9811. },
  9812. "dist": {
  9813. "type": "zip",
  9814. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  9815. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  9816. "shasum": "",
  9817. "mirrors": [
  9818. {
  9819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9820. "preferred": true
  9821. }
  9822. ]
  9823. },
  9824. "require": {
  9825. "php": "^7.1 || ^8.0"
  9826. },
  9827. "require-dev": {
  9828. "doctrine/coding-standard": "^9",
  9829. "ext-pdo": "*",
  9830. "ext-phar": "*",
  9831. "phpbench/phpbench": "^0.16 || ^1",
  9832. "phpstan/phpstan": "^1.4",
  9833. "phpstan/phpstan-phpunit": "^1",
  9834. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  9835. "vimeo/psalm": "^4.22"
  9836. },
  9837. "type": "library",
  9838. "autoload": {
  9839. "psr-4": {
  9840. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9841. }
  9842. },
  9843. "notification-url": "https://packagist.org/downloads/",
  9844. "license": [
  9845. "MIT"
  9846. ],
  9847. "authors": [
  9848. {
  9849. "name": "Marco Pivetta",
  9850. "email": "[email protected]",
  9851. "homepage": "https://ocramius.github.io/"
  9852. }
  9853. ],
  9854. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9855. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  9856. "keywords": [
  9857. "constructor",
  9858. "instantiate"
  9859. ],
  9860. "support": {
  9861. "issues": "https://github.com/doctrine/instantiator/issues",
  9862. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  9863. },
  9864. "funding": [
  9865. {
  9866. "url": "https://www.doctrine-project.org/sponsorship.html",
  9867. "type": "custom"
  9868. },
  9869. {
  9870. "url": "https://www.patreon.com/phpdoctrine",
  9871. "type": "patreon"
  9872. },
  9873. {
  9874. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9875. "type": "tidelift"
  9876. }
  9877. ],
  9878. "time": "2022-03-03T08:28:38+00:00"
  9879. },
  9880. {
  9881. "name": "facade/flare-client-php",
  9882. "version": "1.9.1",
  9883. "source": {
  9884. "type": "git",
  9885. "url": "https://github.com/facade/flare-client-php.git",
  9886. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  9887. },
  9888. "dist": {
  9889. "type": "zip",
  9890. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  9891. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  9892. "shasum": "",
  9893. "mirrors": [
  9894. {
  9895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9896. "preferred": true
  9897. }
  9898. ]
  9899. },
  9900. "require": {
  9901. "facade/ignition-contracts": "~1.0",
  9902. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  9903. "php": "^7.1|^8.0",
  9904. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  9905. "symfony/mime": "^3.4|^4.0|^5.1",
  9906. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  9907. },
  9908. "require-dev": {
  9909. "friendsofphp/php-cs-fixer": "^2.14",
  9910. "phpunit/phpunit": "^7.5.16",
  9911. "spatie/phpunit-snapshot-assertions": "^2.0"
  9912. },
  9913. "type": "library",
  9914. "extra": {
  9915. "branch-alias": {
  9916. "dev-master": "1.0-dev"
  9917. }
  9918. },
  9919. "autoload": {
  9920. "files": [
  9921. "src/helpers.php"
  9922. ],
  9923. "psr-4": {
  9924. "Facade\\FlareClient\\": "src"
  9925. }
  9926. },
  9927. "notification-url": "https://packagist.org/downloads/",
  9928. "license": [
  9929. "MIT"
  9930. ],
  9931. "description": "Send PHP errors to Flare",
  9932. "homepage": "https://github.com/facade/flare-client-php",
  9933. "keywords": [
  9934. "exception",
  9935. "facade",
  9936. "flare",
  9937. "reporting"
  9938. ],
  9939. "support": {
  9940. "issues": "https://github.com/facade/flare-client-php/issues",
  9941. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  9942. },
  9943. "funding": [
  9944. {
  9945. "url": "https://github.com/spatie",
  9946. "type": "github"
  9947. }
  9948. ],
  9949. "time": "2021-09-13T12:16:46+00:00"
  9950. },
  9951. {
  9952. "name": "facade/ignition",
  9953. "version": "2.17.5",
  9954. "source": {
  9955. "type": "git",
  9956. "url": "https://github.com/facade/ignition.git",
  9957. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c"
  9958. },
  9959. "dist": {
  9960. "type": "zip",
  9961. "url": "https://api.github.com/repos/facade/ignition/zipball/1d71996f83c9a5a7807331b8986ac890352b7a0c",
  9962. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c",
  9963. "shasum": "",
  9964. "mirrors": [
  9965. {
  9966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9967. "preferred": true
  9968. }
  9969. ]
  9970. },
  9971. "require": {
  9972. "ext-curl": "*",
  9973. "ext-json": "*",
  9974. "ext-mbstring": "*",
  9975. "facade/flare-client-php": "^1.9.1",
  9976. "facade/ignition-contracts": "^1.0.2",
  9977. "illuminate/support": "^7.0|^8.0",
  9978. "monolog/monolog": "^2.0",
  9979. "php": "^7.2.5|^8.0",
  9980. "symfony/console": "^5.0",
  9981. "symfony/var-dumper": "^5.0"
  9982. },
  9983. "require-dev": {
  9984. "friendsofphp/php-cs-fixer": "^2.14",
  9985. "livewire/livewire": "^2.4",
  9986. "mockery/mockery": "^1.3",
  9987. "orchestra/testbench": "^5.0|^6.0",
  9988. "psalm/plugin-laravel": "^1.2"
  9989. },
  9990. "suggest": {
  9991. "laravel/telescope": "^3.1"
  9992. },
  9993. "type": "library",
  9994. "extra": {
  9995. "branch-alias": {
  9996. "dev-master": "2.x-dev"
  9997. },
  9998. "laravel": {
  9999. "providers": [
  10000. "Facade\\Ignition\\IgnitionServiceProvider"
  10001. ],
  10002. "aliases": {
  10003. "Flare": "Facade\\Ignition\\Facades\\Flare"
  10004. }
  10005. }
  10006. },
  10007. "autoload": {
  10008. "files": [
  10009. "src/helpers.php"
  10010. ],
  10011. "psr-4": {
  10012. "Facade\\Ignition\\": "src"
  10013. }
  10014. },
  10015. "notification-url": "https://packagist.org/downloads/",
  10016. "license": [
  10017. "MIT"
  10018. ],
  10019. "description": "A beautiful error page for Laravel applications.",
  10020. "homepage": "https://github.com/facade/ignition",
  10021. "keywords": [
  10022. "error",
  10023. "flare",
  10024. "laravel",
  10025. "page"
  10026. ],
  10027. "support": {
  10028. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10029. "forum": "https://twitter.com/flareappio",
  10030. "issues": "https://github.com/facade/ignition/issues",
  10031. "source": "https://github.com/facade/ignition"
  10032. },
  10033. "time": "2022-02-23T18:31:24+00:00"
  10034. },
  10035. {
  10036. "name": "facade/ignition-contracts",
  10037. "version": "1.0.2",
  10038. "source": {
  10039. "type": "git",
  10040. "url": "https://github.com/facade/ignition-contracts.git",
  10041. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  10042. },
  10043. "dist": {
  10044. "type": "zip",
  10045. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10046. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10047. "shasum": "",
  10048. "mirrors": [
  10049. {
  10050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10051. "preferred": true
  10052. }
  10053. ]
  10054. },
  10055. "require": {
  10056. "php": "^7.3|^8.0"
  10057. },
  10058. "require-dev": {
  10059. "friendsofphp/php-cs-fixer": "^v2.15.8",
  10060. "phpunit/phpunit": "^9.3.11",
  10061. "vimeo/psalm": "^3.17.1"
  10062. },
  10063. "type": "library",
  10064. "autoload": {
  10065. "psr-4": {
  10066. "Facade\\IgnitionContracts\\": "src"
  10067. }
  10068. },
  10069. "notification-url": "https://packagist.org/downloads/",
  10070. "license": [
  10071. "MIT"
  10072. ],
  10073. "authors": [
  10074. {
  10075. "name": "Freek Van der Herten",
  10076. "email": "[email protected]",
  10077. "homepage": "https://flareapp.io",
  10078. "role": "Developer"
  10079. }
  10080. ],
  10081. "description": "Solution contracts for Ignition",
  10082. "homepage": "https://github.com/facade/ignition-contracts",
  10083. "keywords": [
  10084. "contracts",
  10085. "flare",
  10086. "ignition"
  10087. ],
  10088. "support": {
  10089. "issues": "https://github.com/facade/ignition-contracts/issues",
  10090. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  10091. },
  10092. "time": "2020-10-16T08:27:54+00:00"
  10093. },
  10094. {
  10095. "name": "fakerphp/faker",
  10096. "version": "v1.19.0",
  10097. "source": {
  10098. "type": "git",
  10099. "url": "https://github.com/FakerPHP/Faker.git",
  10100. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  10101. },
  10102. "dist": {
  10103. "type": "zip",
  10104. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  10105. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  10106. "shasum": "",
  10107. "mirrors": [
  10108. {
  10109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10110. "preferred": true
  10111. }
  10112. ]
  10113. },
  10114. "require": {
  10115. "php": "^7.1 || ^8.0",
  10116. "psr/container": "^1.0 || ^2.0",
  10117. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  10118. },
  10119. "conflict": {
  10120. "fzaninotto/faker": "*"
  10121. },
  10122. "require-dev": {
  10123. "bamarni/composer-bin-plugin": "^1.4.1",
  10124. "doctrine/persistence": "^1.3 || ^2.0",
  10125. "ext-intl": "*",
  10126. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  10127. },
  10128. "suggest": {
  10129. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  10130. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  10131. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  10132. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  10133. "ext-mbstring": "Required for multibyte Unicode string functionality."
  10134. },
  10135. "type": "library",
  10136. "extra": {
  10137. "branch-alias": {
  10138. "dev-main": "v1.19-dev"
  10139. }
  10140. },
  10141. "autoload": {
  10142. "psr-4": {
  10143. "Faker\\": "src/Faker/"
  10144. }
  10145. },
  10146. "notification-url": "https://packagist.org/downloads/",
  10147. "license": [
  10148. "MIT"
  10149. ],
  10150. "authors": [
  10151. {
  10152. "name": "François Zaninotto"
  10153. }
  10154. ],
  10155. "description": "Faker is a PHP library that generates fake data for you.",
  10156. "keywords": [
  10157. "data",
  10158. "faker",
  10159. "fixtures"
  10160. ],
  10161. "support": {
  10162. "issues": "https://github.com/FakerPHP/Faker/issues",
  10163. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  10164. },
  10165. "time": "2022-02-02T17:38:57+00:00"
  10166. },
  10167. {
  10168. "name": "filp/whoops",
  10169. "version": "2.14.5",
  10170. "source": {
  10171. "type": "git",
  10172. "url": "https://github.com/filp/whoops.git",
  10173. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  10174. },
  10175. "dist": {
  10176. "type": "zip",
  10177. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10178. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10179. "shasum": "",
  10180. "mirrors": [
  10181. {
  10182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10183. "preferred": true
  10184. }
  10185. ]
  10186. },
  10187. "require": {
  10188. "php": "^5.5.9 || ^7.0 || ^8.0",
  10189. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  10190. },
  10191. "require-dev": {
  10192. "mockery/mockery": "^0.9 || ^1.0",
  10193. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  10194. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  10195. },
  10196. "suggest": {
  10197. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  10198. "whoops/soap": "Formats errors as SOAP responses"
  10199. },
  10200. "type": "library",
  10201. "extra": {
  10202. "branch-alias": {
  10203. "dev-master": "2.7-dev"
  10204. }
  10205. },
  10206. "autoload": {
  10207. "psr-4": {
  10208. "Whoops\\": "src/Whoops/"
  10209. }
  10210. },
  10211. "notification-url": "https://packagist.org/downloads/",
  10212. "license": [
  10213. "MIT"
  10214. ],
  10215. "authors": [
  10216. {
  10217. "name": "Filipe Dobreira",
  10218. "homepage": "https://github.com/filp",
  10219. "role": "Developer"
  10220. }
  10221. ],
  10222. "description": "php error handling for cool kids",
  10223. "homepage": "https://filp.github.io/whoops/",
  10224. "keywords": [
  10225. "error",
  10226. "exception",
  10227. "handling",
  10228. "library",
  10229. "throwable",
  10230. "whoops"
  10231. ],
  10232. "support": {
  10233. "issues": "https://github.com/filp/whoops/issues",
  10234. "source": "https://github.com/filp/whoops/tree/2.14.5"
  10235. },
  10236. "funding": [
  10237. {
  10238. "url": "https://github.com/denis-sokolov",
  10239. "type": "github"
  10240. }
  10241. ],
  10242. "time": "2022-01-07T12:00:00+00:00"
  10243. },
  10244. {
  10245. "name": "hamcrest/hamcrest-php",
  10246. "version": "v2.0.1",
  10247. "source": {
  10248. "type": "git",
  10249. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10250. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10251. },
  10252. "dist": {
  10253. "type": "zip",
  10254. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10255. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10256. "shasum": "",
  10257. "mirrors": [
  10258. {
  10259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10260. "preferred": true
  10261. }
  10262. ]
  10263. },
  10264. "require": {
  10265. "php": "^5.3|^7.0|^8.0"
  10266. },
  10267. "replace": {
  10268. "cordoval/hamcrest-php": "*",
  10269. "davedevelopment/hamcrest-php": "*",
  10270. "kodova/hamcrest-php": "*"
  10271. },
  10272. "require-dev": {
  10273. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10274. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10275. },
  10276. "type": "library",
  10277. "extra": {
  10278. "branch-alias": {
  10279. "dev-master": "2.1-dev"
  10280. }
  10281. },
  10282. "autoload": {
  10283. "classmap": [
  10284. "hamcrest"
  10285. ]
  10286. },
  10287. "notification-url": "https://packagist.org/downloads/",
  10288. "license": [
  10289. "BSD-3-Clause"
  10290. ],
  10291. "description": "This is the PHP port of Hamcrest Matchers",
  10292. "keywords": [
  10293. "test"
  10294. ],
  10295. "support": {
  10296. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10297. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10298. },
  10299. "time": "2020-07-09T08:09:16+00:00"
  10300. },
  10301. {
  10302. "name": "justinrainbow/json-schema",
  10303. "version": "5.2.12",
  10304. "source": {
  10305. "type": "git",
  10306. "url": "https://github.com/justinrainbow/json-schema.git",
  10307. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
  10308. },
  10309. "dist": {
  10310. "type": "zip",
  10311. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  10312. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  10313. "shasum": "",
  10314. "mirrors": [
  10315. {
  10316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10317. "preferred": true
  10318. }
  10319. ]
  10320. },
  10321. "require": {
  10322. "php": ">=5.3.3"
  10323. },
  10324. "require-dev": {
  10325. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  10326. "json-schema/json-schema-test-suite": "1.2.0",
  10327. "phpunit/phpunit": "^4.8.35"
  10328. },
  10329. "bin": [
  10330. "bin/validate-json"
  10331. ],
  10332. "type": "library",
  10333. "extra": {
  10334. "branch-alias": {
  10335. "dev-master": "5.0.x-dev"
  10336. }
  10337. },
  10338. "autoload": {
  10339. "psr-4": {
  10340. "JsonSchema\\": "src/JsonSchema/"
  10341. }
  10342. },
  10343. "notification-url": "https://packagist.org/downloads/",
  10344. "license": [
  10345. "MIT"
  10346. ],
  10347. "authors": [
  10348. {
  10349. "name": "Bruno Prieto Reis",
  10350. "email": "[email protected]"
  10351. },
  10352. {
  10353. "name": "Justin Rainbow",
  10354. "email": "[email protected]"
  10355. },
  10356. {
  10357. "name": "Igor Wiedler",
  10358. "email": "[email protected]"
  10359. },
  10360. {
  10361. "name": "Robert Schönthal",
  10362. "email": "[email protected]"
  10363. }
  10364. ],
  10365. "description": "A library to validate a json schema.",
  10366. "homepage": "https://github.com/justinrainbow/json-schema",
  10367. "keywords": [
  10368. "json",
  10369. "schema"
  10370. ],
  10371. "support": {
  10372. "issues": "https://github.com/justinrainbow/json-schema/issues",
  10373. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
  10374. },
  10375. "time": "2022-04-13T08:02:27+00:00"
  10376. },
  10377. {
  10378. "name": "laravel/telescope",
  10379. "version": "v3.5.1",
  10380. "source": {
  10381. "type": "git",
  10382. "url": "https://github.com/laravel/telescope.git",
  10383. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  10384. },
  10385. "dist": {
  10386. "type": "zip",
  10387. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  10388. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  10389. "shasum": "",
  10390. "mirrors": [
  10391. {
  10392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10393. "preferred": true
  10394. }
  10395. ]
  10396. },
  10397. "require": {
  10398. "ext-json": "*",
  10399. "laravel/framework": "^6.0|^7.0",
  10400. "moontoast/math": "^1.1",
  10401. "php": "^7.2",
  10402. "symfony/var-dumper": "^4.4|^5.0"
  10403. },
  10404. "require-dev": {
  10405. "ext-gd": "*",
  10406. "orchestra/testbench": "^4.0|^5.0"
  10407. },
  10408. "type": "library",
  10409. "extra": {
  10410. "branch-alias": {
  10411. "dev-master": "3.x-dev"
  10412. },
  10413. "laravel": {
  10414. "providers": [
  10415. "Laravel\\Telescope\\TelescopeServiceProvider"
  10416. ]
  10417. }
  10418. },
  10419. "autoload": {
  10420. "psr-4": {
  10421. "Laravel\\Telescope\\": "src/"
  10422. }
  10423. },
  10424. "notification-url": "https://packagist.org/downloads/",
  10425. "license": [
  10426. "MIT"
  10427. ],
  10428. "authors": [
  10429. {
  10430. "name": "Taylor Otwell",
  10431. "email": "[email protected]"
  10432. },
  10433. {
  10434. "name": "Mohamed Said",
  10435. "email": "[email protected]"
  10436. }
  10437. ],
  10438. "description": "An elegant debug assistant for the Laravel framework.",
  10439. "keywords": [
  10440. "debugging",
  10441. "laravel",
  10442. "monitoring"
  10443. ],
  10444. "support": {
  10445. "issues": "https://github.com/laravel/telescope/issues",
  10446. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  10447. },
  10448. "time": "2020-07-28T19:12:33+00:00"
  10449. },
  10450. {
  10451. "name": "maximebf/debugbar",
  10452. "version": "v1.18.0",
  10453. "source": {
  10454. "type": "git",
  10455. "url": "https://github.com/maximebf/php-debugbar.git",
  10456. "reference": "0d44b75f3b5d6d41ae83b79c7a4bceae7fbc78b6"
  10457. },
  10458. "dist": {
  10459. "type": "zip",
  10460. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/0d44b75f3b5d6d41ae83b79c7a4bceae7fbc78b6",
  10461. "reference": "0d44b75f3b5d6d41ae83b79c7a4bceae7fbc78b6",
  10462. "shasum": "",
  10463. "mirrors": [
  10464. {
  10465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10466. "preferred": true
  10467. }
  10468. ]
  10469. },
  10470. "require": {
  10471. "php": "^7.1|^8",
  10472. "psr/log": "^1|^2|^3",
  10473. "symfony/var-dumper": "^2.6|^3|^4|^5|^6"
  10474. },
  10475. "require-dev": {
  10476. "phpunit/phpunit": "^7.5.20 || ^9.4.2",
  10477. "twig/twig": "^1.38|^2.7|^3.0"
  10478. },
  10479. "suggest": {
  10480. "kriswallsmith/assetic": "The best way to manage assets",
  10481. "monolog/monolog": "Log using Monolog",
  10482. "predis/predis": "Redis storage"
  10483. },
  10484. "type": "library",
  10485. "extra": {
  10486. "branch-alias": {
  10487. "dev-master": "1.17-dev"
  10488. }
  10489. },
  10490. "autoload": {
  10491. "psr-4": {
  10492. "DebugBar\\": "src/DebugBar/"
  10493. }
  10494. },
  10495. "notification-url": "https://packagist.org/downloads/",
  10496. "license": [
  10497. "MIT"
  10498. ],
  10499. "authors": [
  10500. {
  10501. "name": "Maxime Bouroumeau-Fuseau",
  10502. "email": "[email protected]",
  10503. "homepage": "http://maximebf.com"
  10504. },
  10505. {
  10506. "name": "Barry vd. Heuvel",
  10507. "email": "[email protected]"
  10508. }
  10509. ],
  10510. "description": "Debug bar in the browser for php application",
  10511. "homepage": "https://github.com/maximebf/php-debugbar",
  10512. "keywords": [
  10513. "debug",
  10514. "debugbar"
  10515. ],
  10516. "support": {
  10517. "issues": "https://github.com/maximebf/php-debugbar/issues",
  10518. "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.0"
  10519. },
  10520. "time": "2021-12-27T18:49:48+00:00"
  10521. },
  10522. {
  10523. "name": "mockery/mockery",
  10524. "version": "1.5.0",
  10525. "source": {
  10526. "type": "git",
  10527. "url": "https://github.com/mockery/mockery.git",
  10528. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  10529. },
  10530. "dist": {
  10531. "type": "zip",
  10532. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  10533. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  10534. "shasum": "",
  10535. "mirrors": [
  10536. {
  10537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10538. "preferred": true
  10539. }
  10540. ]
  10541. },
  10542. "require": {
  10543. "hamcrest/hamcrest-php": "^2.0.1",
  10544. "lib-pcre": ">=7.0",
  10545. "php": "^7.3 || ^8.0"
  10546. },
  10547. "conflict": {
  10548. "phpunit/phpunit": "<8.0"
  10549. },
  10550. "require-dev": {
  10551. "phpunit/phpunit": "^8.5 || ^9.3"
  10552. },
  10553. "type": "library",
  10554. "extra": {
  10555. "branch-alias": {
  10556. "dev-master": "1.4.x-dev"
  10557. }
  10558. },
  10559. "autoload": {
  10560. "psr-0": {
  10561. "Mockery": "library/"
  10562. }
  10563. },
  10564. "notification-url": "https://packagist.org/downloads/",
  10565. "license": [
  10566. "BSD-3-Clause"
  10567. ],
  10568. "authors": [
  10569. {
  10570. "name": "Pádraic Brady",
  10571. "email": "[email protected]",
  10572. "homepage": "http://blog.astrumfutura.com"
  10573. },
  10574. {
  10575. "name": "Dave Marshall",
  10576. "email": "[email protected]",
  10577. "homepage": "http://davedevelopment.co.uk"
  10578. }
  10579. ],
  10580. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10581. "homepage": "https://github.com/mockery/mockery",
  10582. "keywords": [
  10583. "BDD",
  10584. "TDD",
  10585. "library",
  10586. "mock",
  10587. "mock objects",
  10588. "mockery",
  10589. "stub",
  10590. "test",
  10591. "test double",
  10592. "testing"
  10593. ],
  10594. "support": {
  10595. "issues": "https://github.com/mockery/mockery/issues",
  10596. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  10597. },
  10598. "time": "2022-01-20T13:18:17+00:00"
  10599. },
  10600. {
  10601. "name": "moontoast/math",
  10602. "version": "1.2.1",
  10603. "source": {
  10604. "type": "git",
  10605. "url": "https://github.com/ramsey/moontoast-math.git",
  10606. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  10607. },
  10608. "dist": {
  10609. "type": "zip",
  10610. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  10611. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  10612. "shasum": "",
  10613. "mirrors": [
  10614. {
  10615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10616. "preferred": true
  10617. }
  10618. ]
  10619. },
  10620. "require": {
  10621. "php": ">=5.3.3",
  10622. "phpseclib/bcmath_compat": ">=1.0.3"
  10623. },
  10624. "require-dev": {
  10625. "jakub-onderka/php-parallel-lint": "^0.9.0",
  10626. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  10627. "satooshi/php-coveralls": "^0.6.1",
  10628. "squizlabs/php_codesniffer": "^2.3"
  10629. },
  10630. "type": "library",
  10631. "autoload": {
  10632. "psr-4": {
  10633. "Moontoast\\Math\\": "src/Moontoast/Math",
  10634. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  10635. }
  10636. },
  10637. "notification-url": "https://packagist.org/downloads/",
  10638. "license": [
  10639. "Apache-2.0"
  10640. ],
  10641. "authors": [
  10642. {
  10643. "name": "Ben Ramsey",
  10644. "email": "[email protected]",
  10645. "homepage": "https://benramsey.com"
  10646. }
  10647. ],
  10648. "description": "A mathematics library, providing functionality for large numbers",
  10649. "homepage": "https://github.com/ramsey/moontoast-math",
  10650. "keywords": [
  10651. "bcmath",
  10652. "math"
  10653. ],
  10654. "support": {
  10655. "issues": "https://github.com/ramsey/moontoast-math/issues",
  10656. "source": "https://github.com/ramsey/moontoast-math"
  10657. },
  10658. "abandoned": "brick/math",
  10659. "time": "2020-01-05T04:49:34+00:00"
  10660. },
  10661. {
  10662. "name": "myclabs/deep-copy",
  10663. "version": "1.11.0",
  10664. "source": {
  10665. "type": "git",
  10666. "url": "https://github.com/myclabs/DeepCopy.git",
  10667. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  10668. },
  10669. "dist": {
  10670. "type": "zip",
  10671. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  10672. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  10673. "shasum": "",
  10674. "mirrors": [
  10675. {
  10676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10677. "preferred": true
  10678. }
  10679. ]
  10680. },
  10681. "require": {
  10682. "php": "^7.1 || ^8.0"
  10683. },
  10684. "conflict": {
  10685. "doctrine/collections": "<1.6.8",
  10686. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  10687. },
  10688. "require-dev": {
  10689. "doctrine/collections": "^1.6.8",
  10690. "doctrine/common": "^2.13.3 || ^3.2.2",
  10691. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10692. },
  10693. "type": "library",
  10694. "autoload": {
  10695. "files": [
  10696. "src/DeepCopy/deep_copy.php"
  10697. ],
  10698. "psr-4": {
  10699. "DeepCopy\\": "src/DeepCopy/"
  10700. }
  10701. },
  10702. "notification-url": "https://packagist.org/downloads/",
  10703. "license": [
  10704. "MIT"
  10705. ],
  10706. "description": "Create deep copies (clones) of your objects",
  10707. "keywords": [
  10708. "clone",
  10709. "copy",
  10710. "duplicate",
  10711. "object",
  10712. "object graph"
  10713. ],
  10714. "support": {
  10715. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10716. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  10717. },
  10718. "funding": [
  10719. {
  10720. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10721. "type": "tidelift"
  10722. }
  10723. ],
  10724. "time": "2022-03-03T13:19:32+00:00"
  10725. },
  10726. {
  10727. "name": "nunomaduro/collision",
  10728. "version": "v4.3.0",
  10729. "source": {
  10730. "type": "git",
  10731. "url": "https://github.com/nunomaduro/collision.git",
  10732. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  10733. },
  10734. "dist": {
  10735. "type": "zip",
  10736. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  10737. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  10738. "shasum": "",
  10739. "mirrors": [
  10740. {
  10741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10742. "preferred": true
  10743. }
  10744. ]
  10745. },
  10746. "require": {
  10747. "facade/ignition-contracts": "^1.0",
  10748. "filp/whoops": "^2.4",
  10749. "php": "^7.2.5 || ^8.0",
  10750. "symfony/console": "^5.0"
  10751. },
  10752. "require-dev": {
  10753. "facade/ignition": "^2.0",
  10754. "fideloper/proxy": "^4.2",
  10755. "friendsofphp/php-cs-fixer": "^2.16",
  10756. "fruitcake/laravel-cors": "^1.0",
  10757. "laravel/framework": "^7.0",
  10758. "laravel/tinker": "^2.0",
  10759. "nunomaduro/larastan": "^0.6",
  10760. "orchestra/testbench": "^5.0",
  10761. "phpstan/phpstan": "^0.12.3",
  10762. "phpunit/phpunit": "^8.5.1 || ^9.0"
  10763. },
  10764. "type": "library",
  10765. "extra": {
  10766. "laravel": {
  10767. "providers": [
  10768. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10769. ]
  10770. }
  10771. },
  10772. "autoload": {
  10773. "psr-4": {
  10774. "NunoMaduro\\Collision\\": "src/"
  10775. }
  10776. },
  10777. "notification-url": "https://packagist.org/downloads/",
  10778. "license": [
  10779. "MIT"
  10780. ],
  10781. "authors": [
  10782. {
  10783. "name": "Nuno Maduro",
  10784. "email": "[email protected]"
  10785. }
  10786. ],
  10787. "description": "Cli error handling for console/command-line PHP applications.",
  10788. "keywords": [
  10789. "artisan",
  10790. "cli",
  10791. "command-line",
  10792. "console",
  10793. "error",
  10794. "handling",
  10795. "laravel",
  10796. "laravel-zero",
  10797. "php",
  10798. "symfony"
  10799. ],
  10800. "support": {
  10801. "issues": "https://github.com/nunomaduro/collision/issues",
  10802. "source": "https://github.com/nunomaduro/collision"
  10803. },
  10804. "funding": [
  10805. {
  10806. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10807. "type": "custom"
  10808. },
  10809. {
  10810. "url": "https://github.com/nunomaduro",
  10811. "type": "github"
  10812. },
  10813. {
  10814. "url": "https://www.patreon.com/nunomaduro",
  10815. "type": "patreon"
  10816. }
  10817. ],
  10818. "time": "2020-10-29T15:12:23+00:00"
  10819. },
  10820. {
  10821. "name": "paragonie/constant_time_encoding",
  10822. "version": "v2.6.2",
  10823. "source": {
  10824. "type": "git",
  10825. "url": "https://github.com/paragonie/constant_time_encoding.git",
  10826. "reference": "c1b1d82d109846ba58a4664dc5480c69ad2fc097"
  10827. },
  10828. "dist": {
  10829. "type": "zip",
  10830. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/c1b1d82d109846ba58a4664dc5480c69ad2fc097",
  10831. "reference": "c1b1d82d109846ba58a4664dc5480c69ad2fc097",
  10832. "shasum": "",
  10833. "mirrors": [
  10834. {
  10835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10836. "preferred": true
  10837. }
  10838. ]
  10839. },
  10840. "require": {
  10841. "php": "^7|^8"
  10842. },
  10843. "require-dev": {
  10844. "phpunit/phpunit": "^6|^7|^8|^9",
  10845. "vimeo/psalm": "^1|^2|^3|^4"
  10846. },
  10847. "type": "library",
  10848. "autoload": {
  10849. "psr-4": {
  10850. "ParagonIE\\ConstantTime\\": "src/"
  10851. }
  10852. },
  10853. "notification-url": "https://packagist.org/downloads/",
  10854. "license": [
  10855. "MIT"
  10856. ],
  10857. "authors": [
  10858. {
  10859. "name": "Paragon Initiative Enterprises",
  10860. "email": "[email protected]",
  10861. "homepage": "https://paragonie.com",
  10862. "role": "Maintainer"
  10863. },
  10864. {
  10865. "name": "Steve 'Sc00bz' Thomas",
  10866. "email": "[email protected]",
  10867. "homepage": "https://www.tobtu.com",
  10868. "role": "Original Developer"
  10869. }
  10870. ],
  10871. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  10872. "keywords": [
  10873. "base16",
  10874. "base32",
  10875. "base32_decode",
  10876. "base32_encode",
  10877. "base64",
  10878. "base64_decode",
  10879. "base64_encode",
  10880. "bin2hex",
  10881. "encoding",
  10882. "hex",
  10883. "hex2bin",
  10884. "rfc4648"
  10885. ],
  10886. "support": {
  10887. "email": "[email protected]",
  10888. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  10889. "source": "https://github.com/paragonie/constant_time_encoding"
  10890. },
  10891. "time": "2022-06-13T05:29:16+00:00"
  10892. },
  10893. {
  10894. "name": "paragonie/random_compat",
  10895. "version": "v9.99.100",
  10896. "source": {
  10897. "type": "git",
  10898. "url": "https://github.com/paragonie/random_compat.git",
  10899. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  10900. },
  10901. "dist": {
  10902. "type": "zip",
  10903. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  10904. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  10905. "shasum": "",
  10906. "mirrors": [
  10907. {
  10908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10909. "preferred": true
  10910. }
  10911. ]
  10912. },
  10913. "require": {
  10914. "php": ">= 7"
  10915. },
  10916. "require-dev": {
  10917. "phpunit/phpunit": "4.*|5.*",
  10918. "vimeo/psalm": "^1"
  10919. },
  10920. "suggest": {
  10921. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  10922. },
  10923. "type": "library",
  10924. "notification-url": "https://packagist.org/downloads/",
  10925. "license": [
  10926. "MIT"
  10927. ],
  10928. "authors": [
  10929. {
  10930. "name": "Paragon Initiative Enterprises",
  10931. "email": "[email protected]",
  10932. "homepage": "https://paragonie.com"
  10933. }
  10934. ],
  10935. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  10936. "keywords": [
  10937. "csprng",
  10938. "polyfill",
  10939. "pseudorandom",
  10940. "random"
  10941. ],
  10942. "support": {
  10943. "email": "[email protected]",
  10944. "issues": "https://github.com/paragonie/random_compat/issues",
  10945. "source": "https://github.com/paragonie/random_compat"
  10946. },
  10947. "time": "2020-10-15T08:29:30+00:00"
  10948. },
  10949. {
  10950. "name": "phar-io/manifest",
  10951. "version": "2.0.3",
  10952. "source": {
  10953. "type": "git",
  10954. "url": "https://github.com/phar-io/manifest.git",
  10955. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  10956. },
  10957. "dist": {
  10958. "type": "zip",
  10959. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  10960. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  10961. "shasum": "",
  10962. "mirrors": [
  10963. {
  10964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10965. "preferred": true
  10966. }
  10967. ]
  10968. },
  10969. "require": {
  10970. "ext-dom": "*",
  10971. "ext-phar": "*",
  10972. "ext-xmlwriter": "*",
  10973. "phar-io/version": "^3.0.1",
  10974. "php": "^7.2 || ^8.0"
  10975. },
  10976. "type": "library",
  10977. "extra": {
  10978. "branch-alias": {
  10979. "dev-master": "2.0.x-dev"
  10980. }
  10981. },
  10982. "autoload": {
  10983. "classmap": [
  10984. "src/"
  10985. ]
  10986. },
  10987. "notification-url": "https://packagist.org/downloads/",
  10988. "license": [
  10989. "BSD-3-Clause"
  10990. ],
  10991. "authors": [
  10992. {
  10993. "name": "Arne Blankerts",
  10994. "email": "[email protected]",
  10995. "role": "Developer"
  10996. },
  10997. {
  10998. "name": "Sebastian Heuer",
  10999. "email": "[email protected]",
  11000. "role": "Developer"
  11001. },
  11002. {
  11003. "name": "Sebastian Bergmann",
  11004. "email": "[email protected]",
  11005. "role": "Developer"
  11006. }
  11007. ],
  11008. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11009. "support": {
  11010. "issues": "https://github.com/phar-io/manifest/issues",
  11011. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  11012. },
  11013. "time": "2021-07-20T11:28:43+00:00"
  11014. },
  11015. {
  11016. "name": "phar-io/version",
  11017. "version": "3.2.1",
  11018. "source": {
  11019. "type": "git",
  11020. "url": "https://github.com/phar-io/version.git",
  11021. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11022. },
  11023. "dist": {
  11024. "type": "zip",
  11025. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11026. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11027. "shasum": "",
  11028. "mirrors": [
  11029. {
  11030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11031. "preferred": true
  11032. }
  11033. ]
  11034. },
  11035. "require": {
  11036. "php": "^7.2 || ^8.0"
  11037. },
  11038. "type": "library",
  11039. "autoload": {
  11040. "classmap": [
  11041. "src/"
  11042. ]
  11043. },
  11044. "notification-url": "https://packagist.org/downloads/",
  11045. "license": [
  11046. "BSD-3-Clause"
  11047. ],
  11048. "authors": [
  11049. {
  11050. "name": "Arne Blankerts",
  11051. "email": "[email protected]",
  11052. "role": "Developer"
  11053. },
  11054. {
  11055. "name": "Sebastian Heuer",
  11056. "email": "[email protected]",
  11057. "role": "Developer"
  11058. },
  11059. {
  11060. "name": "Sebastian Bergmann",
  11061. "email": "[email protected]",
  11062. "role": "Developer"
  11063. }
  11064. ],
  11065. "description": "Library for handling version information and constraints",
  11066. "support": {
  11067. "issues": "https://github.com/phar-io/version/issues",
  11068. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11069. },
  11070. "time": "2022-02-21T01:04:05+00:00"
  11071. },
  11072. {
  11073. "name": "phpdocumentor/reflection-common",
  11074. "version": "2.2.0",
  11075. "source": {
  11076. "type": "git",
  11077. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  11078. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  11079. },
  11080. "dist": {
  11081. "type": "zip",
  11082. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  11083. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  11084. "shasum": "",
  11085. "mirrors": [
  11086. {
  11087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11088. "preferred": true
  11089. }
  11090. ]
  11091. },
  11092. "require": {
  11093. "php": "^7.2 || ^8.0"
  11094. },
  11095. "type": "library",
  11096. "extra": {
  11097. "branch-alias": {
  11098. "dev-2.x": "2.x-dev"
  11099. }
  11100. },
  11101. "autoload": {
  11102. "psr-4": {
  11103. "phpDocumentor\\Reflection\\": "src/"
  11104. }
  11105. },
  11106. "notification-url": "https://packagist.org/downloads/",
  11107. "license": [
  11108. "MIT"
  11109. ],
  11110. "authors": [
  11111. {
  11112. "name": "Jaap van Otterdijk",
  11113. "email": "[email protected]"
  11114. }
  11115. ],
  11116. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  11117. "homepage": "http://www.phpdoc.org",
  11118. "keywords": [
  11119. "FQSEN",
  11120. "phpDocumentor",
  11121. "phpdoc",
  11122. "reflection",
  11123. "static analysis"
  11124. ],
  11125. "support": {
  11126. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  11127. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  11128. },
  11129. "time": "2020-06-27T09:03:43+00:00"
  11130. },
  11131. {
  11132. "name": "phpdocumentor/reflection-docblock",
  11133. "version": "5.3.0",
  11134. "source": {
  11135. "type": "git",
  11136. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  11137. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  11138. },
  11139. "dist": {
  11140. "type": "zip",
  11141. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  11142. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  11143. "shasum": "",
  11144. "mirrors": [
  11145. {
  11146. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11147. "preferred": true
  11148. }
  11149. ]
  11150. },
  11151. "require": {
  11152. "ext-filter": "*",
  11153. "php": "^7.2 || ^8.0",
  11154. "phpdocumentor/reflection-common": "^2.2",
  11155. "phpdocumentor/type-resolver": "^1.3",
  11156. "webmozart/assert": "^1.9.1"
  11157. },
  11158. "require-dev": {
  11159. "mockery/mockery": "~1.3.2",
  11160. "psalm/phar": "^4.8"
  11161. },
  11162. "type": "library",
  11163. "extra": {
  11164. "branch-alias": {
  11165. "dev-master": "5.x-dev"
  11166. }
  11167. },
  11168. "autoload": {
  11169. "psr-4": {
  11170. "phpDocumentor\\Reflection\\": "src"
  11171. }
  11172. },
  11173. "notification-url": "https://packagist.org/downloads/",
  11174. "license": [
  11175. "MIT"
  11176. ],
  11177. "authors": [
  11178. {
  11179. "name": "Mike van Riel",
  11180. "email": "[email protected]"
  11181. },
  11182. {
  11183. "name": "Jaap van Otterdijk",
  11184. "email": "[email protected]"
  11185. }
  11186. ],
  11187. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  11188. "support": {
  11189. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  11190. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  11191. },
  11192. "time": "2021-10-19T17:43:47+00:00"
  11193. },
  11194. {
  11195. "name": "phpdocumentor/type-resolver",
  11196. "version": "1.6.1",
  11197. "source": {
  11198. "type": "git",
  11199. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  11200. "reference": "77a32518733312af16a44300404e945338981de3"
  11201. },
  11202. "dist": {
  11203. "type": "zip",
  11204. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  11205. "reference": "77a32518733312af16a44300404e945338981de3",
  11206. "shasum": "",
  11207. "mirrors": [
  11208. {
  11209. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11210. "preferred": true
  11211. }
  11212. ]
  11213. },
  11214. "require": {
  11215. "php": "^7.2 || ^8.0",
  11216. "phpdocumentor/reflection-common": "^2.0"
  11217. },
  11218. "require-dev": {
  11219. "ext-tokenizer": "*",
  11220. "psalm/phar": "^4.8"
  11221. },
  11222. "type": "library",
  11223. "extra": {
  11224. "branch-alias": {
  11225. "dev-1.x": "1.x-dev"
  11226. }
  11227. },
  11228. "autoload": {
  11229. "psr-4": {
  11230. "phpDocumentor\\Reflection\\": "src"
  11231. }
  11232. },
  11233. "notification-url": "https://packagist.org/downloads/",
  11234. "license": [
  11235. "MIT"
  11236. ],
  11237. "authors": [
  11238. {
  11239. "name": "Mike van Riel",
  11240. "email": "[email protected]"
  11241. }
  11242. ],
  11243. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  11244. "support": {
  11245. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  11246. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  11247. },
  11248. "time": "2022-03-15T21:29:03+00:00"
  11249. },
  11250. {
  11251. "name": "phpseclib/bcmath_compat",
  11252. "version": "2.0.1",
  11253. "source": {
  11254. "type": "git",
  11255. "url": "https://github.com/phpseclib/bcmath_compat.git",
  11256. "reference": "2ffea8bfe1702b4535a7b3c2649c4301968e9a3c"
  11257. },
  11258. "dist": {
  11259. "type": "zip",
  11260. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/2ffea8bfe1702b4535a7b3c2649c4301968e9a3c",
  11261. "reference": "2ffea8bfe1702b4535a7b3c2649c4301968e9a3c",
  11262. "shasum": "",
  11263. "mirrors": [
  11264. {
  11265. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11266. "preferred": true
  11267. }
  11268. ]
  11269. },
  11270. "require": {
  11271. "phpseclib/phpseclib": "^3.0"
  11272. },
  11273. "provide": {
  11274. "ext-bcmath": "8.1.0"
  11275. },
  11276. "require-dev": {
  11277. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  11278. "squizlabs/php_codesniffer": "^3.0"
  11279. },
  11280. "suggest": {
  11281. "ext-gmp": "Will enable faster math operations"
  11282. },
  11283. "type": "library",
  11284. "autoload": {
  11285. "files": [
  11286. "lib/bcmath.php"
  11287. ],
  11288. "psr-4": {
  11289. "bcmath_compat\\": "src"
  11290. }
  11291. },
  11292. "notification-url": "https://packagist.org/downloads/",
  11293. "license": [
  11294. "MIT"
  11295. ],
  11296. "authors": [
  11297. {
  11298. "name": "Jim Wigginton",
  11299. "email": "[email protected]",
  11300. "homepage": "http://phpseclib.sourceforge.net"
  11301. }
  11302. ],
  11303. "description": "PHP 5.x-8.x polyfill for bcmath extension",
  11304. "keywords": [
  11305. "BigInteger",
  11306. "bcmath",
  11307. "bigdecimal",
  11308. "math",
  11309. "polyfill"
  11310. ],
  11311. "support": {
  11312. "email": "[email protected]",
  11313. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  11314. "source": "https://github.com/phpseclib/bcmath_compat"
  11315. },
  11316. "time": "2021-12-16T02:35:52+00:00"
  11317. },
  11318. {
  11319. "name": "phpseclib/phpseclib",
  11320. "version": "3.0.14",
  11321. "source": {
  11322. "type": "git",
  11323. "url": "https://github.com/phpseclib/phpseclib.git",
  11324. "reference": "2f0b7af658cbea265cbb4a791d6c29a6613f98ef"
  11325. },
  11326. "dist": {
  11327. "type": "zip",
  11328. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/2f0b7af658cbea265cbb4a791d6c29a6613f98ef",
  11329. "reference": "2f0b7af658cbea265cbb4a791d6c29a6613f98ef",
  11330. "shasum": "",
  11331. "mirrors": [
  11332. {
  11333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11334. "preferred": true
  11335. }
  11336. ]
  11337. },
  11338. "require": {
  11339. "paragonie/constant_time_encoding": "^1|^2",
  11340. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  11341. "php": ">=5.6.1"
  11342. },
  11343. "require-dev": {
  11344. "phpunit/phpunit": "*"
  11345. },
  11346. "suggest": {
  11347. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  11348. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  11349. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  11350. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  11351. },
  11352. "type": "library",
  11353. "autoload": {
  11354. "files": [
  11355. "phpseclib/bootstrap.php"
  11356. ],
  11357. "psr-4": {
  11358. "phpseclib3\\": "phpseclib/"
  11359. }
  11360. },
  11361. "notification-url": "https://packagist.org/downloads/",
  11362. "license": [
  11363. "MIT"
  11364. ],
  11365. "authors": [
  11366. {
  11367. "name": "Jim Wigginton",
  11368. "email": "[email protected]",
  11369. "role": "Lead Developer"
  11370. },
  11371. {
  11372. "name": "Patrick Monnerat",
  11373. "email": "[email protected]",
  11374. "role": "Developer"
  11375. },
  11376. {
  11377. "name": "Andreas Fischer",
  11378. "email": "[email protected]",
  11379. "role": "Developer"
  11380. },
  11381. {
  11382. "name": "Hans-Jürgen Petrich",
  11383. "email": "[email protected]",
  11384. "role": "Developer"
  11385. },
  11386. {
  11387. "name": "Graham Campbell",
  11388. "email": "[email protected]",
  11389. "role": "Developer"
  11390. }
  11391. ],
  11392. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  11393. "homepage": "http://phpseclib.sourceforge.net",
  11394. "keywords": [
  11395. "BigInteger",
  11396. "aes",
  11397. "asn.1",
  11398. "asn1",
  11399. "blowfish",
  11400. "crypto",
  11401. "cryptography",
  11402. "encryption",
  11403. "rsa",
  11404. "security",
  11405. "sftp",
  11406. "signature",
  11407. "signing",
  11408. "ssh",
  11409. "twofish",
  11410. "x.509",
  11411. "x509"
  11412. ],
  11413. "support": {
  11414. "issues": "https://github.com/phpseclib/phpseclib/issues",
  11415. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.14"
  11416. },
  11417. "funding": [
  11418. {
  11419. "url": "https://github.com/terrafrost",
  11420. "type": "github"
  11421. },
  11422. {
  11423. "url": "https://www.patreon.com/phpseclib",
  11424. "type": "patreon"
  11425. },
  11426. {
  11427. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  11428. "type": "tidelift"
  11429. }
  11430. ],
  11431. "time": "2022-04-04T05:15:45+00:00"
  11432. },
  11433. {
  11434. "name": "phpspec/prophecy",
  11435. "version": "v1.15.0",
  11436. "source": {
  11437. "type": "git",
  11438. "url": "https://github.com/phpspec/prophecy.git",
  11439. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  11440. },
  11441. "dist": {
  11442. "type": "zip",
  11443. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11444. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11445. "shasum": "",
  11446. "mirrors": [
  11447. {
  11448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11449. "preferred": true
  11450. }
  11451. ]
  11452. },
  11453. "require": {
  11454. "doctrine/instantiator": "^1.2",
  11455. "php": "^7.2 || ~8.0, <8.2",
  11456. "phpdocumentor/reflection-docblock": "^5.2",
  11457. "sebastian/comparator": "^3.0 || ^4.0",
  11458. "sebastian/recursion-context": "^3.0 || ^4.0"
  11459. },
  11460. "require-dev": {
  11461. "phpspec/phpspec": "^6.0 || ^7.0",
  11462. "phpunit/phpunit": "^8.0 || ^9.0"
  11463. },
  11464. "type": "library",
  11465. "extra": {
  11466. "branch-alias": {
  11467. "dev-master": "1.x-dev"
  11468. }
  11469. },
  11470. "autoload": {
  11471. "psr-4": {
  11472. "Prophecy\\": "src/Prophecy"
  11473. }
  11474. },
  11475. "notification-url": "https://packagist.org/downloads/",
  11476. "license": [
  11477. "MIT"
  11478. ],
  11479. "authors": [
  11480. {
  11481. "name": "Konstantin Kudryashov",
  11482. "email": "[email protected]",
  11483. "homepage": "http://everzet.com"
  11484. },
  11485. {
  11486. "name": "Marcello Duarte",
  11487. "email": "[email protected]"
  11488. }
  11489. ],
  11490. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11491. "homepage": "https://github.com/phpspec/prophecy",
  11492. "keywords": [
  11493. "Double",
  11494. "Dummy",
  11495. "fake",
  11496. "mock",
  11497. "spy",
  11498. "stub"
  11499. ],
  11500. "support": {
  11501. "issues": "https://github.com/phpspec/prophecy/issues",
  11502. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  11503. },
  11504. "time": "2021-12-08T12:19:24+00:00"
  11505. },
  11506. {
  11507. "name": "phpunit/php-code-coverage",
  11508. "version": "9.2.15",
  11509. "source": {
  11510. "type": "git",
  11511. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11512. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  11513. },
  11514. "dist": {
  11515. "type": "zip",
  11516. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  11517. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  11518. "shasum": "",
  11519. "mirrors": [
  11520. {
  11521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11522. "preferred": true
  11523. }
  11524. ]
  11525. },
  11526. "require": {
  11527. "ext-dom": "*",
  11528. "ext-libxml": "*",
  11529. "ext-xmlwriter": "*",
  11530. "nikic/php-parser": "^4.13.0",
  11531. "php": ">=7.3",
  11532. "phpunit/php-file-iterator": "^3.0.3",
  11533. "phpunit/php-text-template": "^2.0.2",
  11534. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  11535. "sebastian/complexity": "^2.0",
  11536. "sebastian/environment": "^5.1.2",
  11537. "sebastian/lines-of-code": "^1.0.3",
  11538. "sebastian/version": "^3.0.1",
  11539. "theseer/tokenizer": "^1.2.0"
  11540. },
  11541. "require-dev": {
  11542. "phpunit/phpunit": "^9.3"
  11543. },
  11544. "suggest": {
  11545. "ext-pcov": "*",
  11546. "ext-xdebug": "*"
  11547. },
  11548. "type": "library",
  11549. "extra": {
  11550. "branch-alias": {
  11551. "dev-master": "9.2-dev"
  11552. }
  11553. },
  11554. "autoload": {
  11555. "classmap": [
  11556. "src/"
  11557. ]
  11558. },
  11559. "notification-url": "https://packagist.org/downloads/",
  11560. "license": [
  11561. "BSD-3-Clause"
  11562. ],
  11563. "authors": [
  11564. {
  11565. "name": "Sebastian Bergmann",
  11566. "email": "[email protected]",
  11567. "role": "lead"
  11568. }
  11569. ],
  11570. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11571. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11572. "keywords": [
  11573. "coverage",
  11574. "testing",
  11575. "xunit"
  11576. ],
  11577. "support": {
  11578. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11579. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  11580. },
  11581. "funding": [
  11582. {
  11583. "url": "https://github.com/sebastianbergmann",
  11584. "type": "github"
  11585. }
  11586. ],
  11587. "time": "2022-03-07T09:28:20+00:00"
  11588. },
  11589. {
  11590. "name": "phpunit/php-file-iterator",
  11591. "version": "3.0.6",
  11592. "source": {
  11593. "type": "git",
  11594. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11595. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11596. },
  11597. "dist": {
  11598. "type": "zip",
  11599. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11600. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11601. "shasum": "",
  11602. "mirrors": [
  11603. {
  11604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11605. "preferred": true
  11606. }
  11607. ]
  11608. },
  11609. "require": {
  11610. "php": ">=7.3"
  11611. },
  11612. "require-dev": {
  11613. "phpunit/phpunit": "^9.3"
  11614. },
  11615. "type": "library",
  11616. "extra": {
  11617. "branch-alias": {
  11618. "dev-master": "3.0-dev"
  11619. }
  11620. },
  11621. "autoload": {
  11622. "classmap": [
  11623. "src/"
  11624. ]
  11625. },
  11626. "notification-url": "https://packagist.org/downloads/",
  11627. "license": [
  11628. "BSD-3-Clause"
  11629. ],
  11630. "authors": [
  11631. {
  11632. "name": "Sebastian Bergmann",
  11633. "email": "[email protected]",
  11634. "role": "lead"
  11635. }
  11636. ],
  11637. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11638. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11639. "keywords": [
  11640. "filesystem",
  11641. "iterator"
  11642. ],
  11643. "support": {
  11644. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11645. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11646. },
  11647. "funding": [
  11648. {
  11649. "url": "https://github.com/sebastianbergmann",
  11650. "type": "github"
  11651. }
  11652. ],
  11653. "time": "2021-12-02T12:48:52+00:00"
  11654. },
  11655. {
  11656. "name": "phpunit/php-invoker",
  11657. "version": "3.1.1",
  11658. "source": {
  11659. "type": "git",
  11660. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11661. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11662. },
  11663. "dist": {
  11664. "type": "zip",
  11665. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11666. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11667. "shasum": "",
  11668. "mirrors": [
  11669. {
  11670. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11671. "preferred": true
  11672. }
  11673. ]
  11674. },
  11675. "require": {
  11676. "php": ">=7.3"
  11677. },
  11678. "require-dev": {
  11679. "ext-pcntl": "*",
  11680. "phpunit/phpunit": "^9.3"
  11681. },
  11682. "suggest": {
  11683. "ext-pcntl": "*"
  11684. },
  11685. "type": "library",
  11686. "extra": {
  11687. "branch-alias": {
  11688. "dev-master": "3.1-dev"
  11689. }
  11690. },
  11691. "autoload": {
  11692. "classmap": [
  11693. "src/"
  11694. ]
  11695. },
  11696. "notification-url": "https://packagist.org/downloads/",
  11697. "license": [
  11698. "BSD-3-Clause"
  11699. ],
  11700. "authors": [
  11701. {
  11702. "name": "Sebastian Bergmann",
  11703. "email": "[email protected]",
  11704. "role": "lead"
  11705. }
  11706. ],
  11707. "description": "Invoke callables with a timeout",
  11708. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11709. "keywords": [
  11710. "process"
  11711. ],
  11712. "support": {
  11713. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11714. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11715. },
  11716. "funding": [
  11717. {
  11718. "url": "https://github.com/sebastianbergmann",
  11719. "type": "github"
  11720. }
  11721. ],
  11722. "time": "2020-09-28T05:58:55+00:00"
  11723. },
  11724. {
  11725. "name": "phpunit/php-text-template",
  11726. "version": "2.0.4",
  11727. "source": {
  11728. "type": "git",
  11729. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11730. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  11731. },
  11732. "dist": {
  11733. "type": "zip",
  11734. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11735. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11736. "shasum": "",
  11737. "mirrors": [
  11738. {
  11739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11740. "preferred": true
  11741. }
  11742. ]
  11743. },
  11744. "require": {
  11745. "php": ">=7.3"
  11746. },
  11747. "require-dev": {
  11748. "phpunit/phpunit": "^9.3"
  11749. },
  11750. "type": "library",
  11751. "extra": {
  11752. "branch-alias": {
  11753. "dev-master": "2.0-dev"
  11754. }
  11755. },
  11756. "autoload": {
  11757. "classmap": [
  11758. "src/"
  11759. ]
  11760. },
  11761. "notification-url": "https://packagist.org/downloads/",
  11762. "license": [
  11763. "BSD-3-Clause"
  11764. ],
  11765. "authors": [
  11766. {
  11767. "name": "Sebastian Bergmann",
  11768. "email": "[email protected]",
  11769. "role": "lead"
  11770. }
  11771. ],
  11772. "description": "Simple template engine.",
  11773. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11774. "keywords": [
  11775. "template"
  11776. ],
  11777. "support": {
  11778. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11779. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  11780. },
  11781. "funding": [
  11782. {
  11783. "url": "https://github.com/sebastianbergmann",
  11784. "type": "github"
  11785. }
  11786. ],
  11787. "time": "2020-10-26T05:33:50+00:00"
  11788. },
  11789. {
  11790. "name": "phpunit/php-timer",
  11791. "version": "5.0.3",
  11792. "source": {
  11793. "type": "git",
  11794. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11795. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  11796. },
  11797. "dist": {
  11798. "type": "zip",
  11799. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11800. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11801. "shasum": "",
  11802. "mirrors": [
  11803. {
  11804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11805. "preferred": true
  11806. }
  11807. ]
  11808. },
  11809. "require": {
  11810. "php": ">=7.3"
  11811. },
  11812. "require-dev": {
  11813. "phpunit/phpunit": "^9.3"
  11814. },
  11815. "type": "library",
  11816. "extra": {
  11817. "branch-alias": {
  11818. "dev-master": "5.0-dev"
  11819. }
  11820. },
  11821. "autoload": {
  11822. "classmap": [
  11823. "src/"
  11824. ]
  11825. },
  11826. "notification-url": "https://packagist.org/downloads/",
  11827. "license": [
  11828. "BSD-3-Clause"
  11829. ],
  11830. "authors": [
  11831. {
  11832. "name": "Sebastian Bergmann",
  11833. "email": "[email protected]",
  11834. "role": "lead"
  11835. }
  11836. ],
  11837. "description": "Utility class for timing",
  11838. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11839. "keywords": [
  11840. "timer"
  11841. ],
  11842. "support": {
  11843. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11844. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  11845. },
  11846. "funding": [
  11847. {
  11848. "url": "https://github.com/sebastianbergmann",
  11849. "type": "github"
  11850. }
  11851. ],
  11852. "time": "2020-10-26T13:16:10+00:00"
  11853. },
  11854. {
  11855. "name": "phpunit/phpunit",
  11856. "version": "9.5.21",
  11857. "source": {
  11858. "type": "git",
  11859. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11860. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
  11861. },
  11862. "dist": {
  11863. "type": "zip",
  11864. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
  11865. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
  11866. "shasum": "",
  11867. "mirrors": [
  11868. {
  11869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11870. "preferred": true
  11871. }
  11872. ]
  11873. },
  11874. "require": {
  11875. "doctrine/instantiator": "^1.3.1",
  11876. "ext-dom": "*",
  11877. "ext-json": "*",
  11878. "ext-libxml": "*",
  11879. "ext-mbstring": "*",
  11880. "ext-xml": "*",
  11881. "ext-xmlwriter": "*",
  11882. "myclabs/deep-copy": "^1.10.1",
  11883. "phar-io/manifest": "^2.0.3",
  11884. "phar-io/version": "^3.0.2",
  11885. "php": ">=7.3",
  11886. "phpspec/prophecy": "^1.12.1",
  11887. "phpunit/php-code-coverage": "^9.2.13",
  11888. "phpunit/php-file-iterator": "^3.0.5",
  11889. "phpunit/php-invoker": "^3.1.1",
  11890. "phpunit/php-text-template": "^2.0.3",
  11891. "phpunit/php-timer": "^5.0.2",
  11892. "sebastian/cli-parser": "^1.0.1",
  11893. "sebastian/code-unit": "^1.0.6",
  11894. "sebastian/comparator": "^4.0.5",
  11895. "sebastian/diff": "^4.0.3",
  11896. "sebastian/environment": "^5.1.3",
  11897. "sebastian/exporter": "^4.0.3",
  11898. "sebastian/global-state": "^5.0.1",
  11899. "sebastian/object-enumerator": "^4.0.3",
  11900. "sebastian/resource-operations": "^3.0.3",
  11901. "sebastian/type": "^3.0",
  11902. "sebastian/version": "^3.0.2"
  11903. },
  11904. "require-dev": {
  11905. "phpspec/prophecy-phpunit": "^2.0.1"
  11906. },
  11907. "suggest": {
  11908. "ext-soap": "*",
  11909. "ext-xdebug": "*"
  11910. },
  11911. "bin": [
  11912. "phpunit"
  11913. ],
  11914. "type": "library",
  11915. "extra": {
  11916. "branch-alias": {
  11917. "dev-master": "9.5-dev"
  11918. }
  11919. },
  11920. "autoload": {
  11921. "files": [
  11922. "src/Framework/Assert/Functions.php"
  11923. ],
  11924. "classmap": [
  11925. "src/"
  11926. ]
  11927. },
  11928. "notification-url": "https://packagist.org/downloads/",
  11929. "license": [
  11930. "BSD-3-Clause"
  11931. ],
  11932. "authors": [
  11933. {
  11934. "name": "Sebastian Bergmann",
  11935. "email": "[email protected]",
  11936. "role": "lead"
  11937. }
  11938. ],
  11939. "description": "The PHP Unit Testing framework.",
  11940. "homepage": "https://phpunit.de/",
  11941. "keywords": [
  11942. "phpunit",
  11943. "testing",
  11944. "xunit"
  11945. ],
  11946. "support": {
  11947. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11948. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21"
  11949. },
  11950. "funding": [
  11951. {
  11952. "url": "https://phpunit.de/sponsors.html",
  11953. "type": "custom"
  11954. },
  11955. {
  11956. "url": "https://github.com/sebastianbergmann",
  11957. "type": "github"
  11958. }
  11959. ],
  11960. "time": "2022-06-19T12:14:25+00:00"
  11961. },
  11962. {
  11963. "name": "react/promise",
  11964. "version": "v2.9.0",
  11965. "source": {
  11966. "type": "git",
  11967. "url": "https://github.com/reactphp/promise.git",
  11968. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
  11969. },
  11970. "dist": {
  11971. "type": "zip",
  11972. "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  11973. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  11974. "shasum": "",
  11975. "mirrors": [
  11976. {
  11977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11978. "preferred": true
  11979. }
  11980. ]
  11981. },
  11982. "require": {
  11983. "php": ">=5.4.0"
  11984. },
  11985. "require-dev": {
  11986. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  11987. },
  11988. "type": "library",
  11989. "autoload": {
  11990. "files": [
  11991. "src/functions_include.php"
  11992. ],
  11993. "psr-4": {
  11994. "React\\Promise\\": "src/"
  11995. }
  11996. },
  11997. "notification-url": "https://packagist.org/downloads/",
  11998. "license": [
  11999. "MIT"
  12000. ],
  12001. "authors": [
  12002. {
  12003. "name": "Jan Sorgalla",
  12004. "email": "[email protected]",
  12005. "homepage": "https://sorgalla.com/"
  12006. },
  12007. {
  12008. "name": "Christian Lück",
  12009. "email": "[email protected]",
  12010. "homepage": "https://clue.engineering/"
  12011. },
  12012. {
  12013. "name": "Cees-Jan Kiewiet",
  12014. "email": "[email protected]",
  12015. "homepage": "https://wyrihaximus.net/"
  12016. },
  12017. {
  12018. "name": "Chris Boden",
  12019. "email": "[email protected]",
  12020. "homepage": "https://cboden.dev/"
  12021. }
  12022. ],
  12023. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  12024. "keywords": [
  12025. "promise",
  12026. "promises"
  12027. ],
  12028. "support": {
  12029. "issues": "https://github.com/reactphp/promise/issues",
  12030. "source": "https://github.com/reactphp/promise/tree/v2.9.0"
  12031. },
  12032. "funding": [
  12033. {
  12034. "url": "https://github.com/WyriHaximus",
  12035. "type": "github"
  12036. },
  12037. {
  12038. "url": "https://github.com/clue",
  12039. "type": "github"
  12040. }
  12041. ],
  12042. "time": "2022-02-11T10:27:51+00:00"
  12043. },
  12044. {
  12045. "name": "sebastian/cli-parser",
  12046. "version": "1.0.1",
  12047. "source": {
  12048. "type": "git",
  12049. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  12050. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  12051. },
  12052. "dist": {
  12053. "type": "zip",
  12054. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  12055. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  12056. "shasum": "",
  12057. "mirrors": [
  12058. {
  12059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12060. "preferred": true
  12061. }
  12062. ]
  12063. },
  12064. "require": {
  12065. "php": ">=7.3"
  12066. },
  12067. "require-dev": {
  12068. "phpunit/phpunit": "^9.3"
  12069. },
  12070. "type": "library",
  12071. "extra": {
  12072. "branch-alias": {
  12073. "dev-master": "1.0-dev"
  12074. }
  12075. },
  12076. "autoload": {
  12077. "classmap": [
  12078. "src/"
  12079. ]
  12080. },
  12081. "notification-url": "https://packagist.org/downloads/",
  12082. "license": [
  12083. "BSD-3-Clause"
  12084. ],
  12085. "authors": [
  12086. {
  12087. "name": "Sebastian Bergmann",
  12088. "email": "[email protected]",
  12089. "role": "lead"
  12090. }
  12091. ],
  12092. "description": "Library for parsing CLI options",
  12093. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  12094. "support": {
  12095. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  12096. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  12097. },
  12098. "funding": [
  12099. {
  12100. "url": "https://github.com/sebastianbergmann",
  12101. "type": "github"
  12102. }
  12103. ],
  12104. "time": "2020-09-28T06:08:49+00:00"
  12105. },
  12106. {
  12107. "name": "sebastian/code-unit",
  12108. "version": "1.0.8",
  12109. "source": {
  12110. "type": "git",
  12111. "url": "https://github.com/sebastianbergmann/code-unit.git",
  12112. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  12113. },
  12114. "dist": {
  12115. "type": "zip",
  12116. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  12117. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  12118. "shasum": "",
  12119. "mirrors": [
  12120. {
  12121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12122. "preferred": true
  12123. }
  12124. ]
  12125. },
  12126. "require": {
  12127. "php": ">=7.3"
  12128. },
  12129. "require-dev": {
  12130. "phpunit/phpunit": "^9.3"
  12131. },
  12132. "type": "library",
  12133. "extra": {
  12134. "branch-alias": {
  12135. "dev-master": "1.0-dev"
  12136. }
  12137. },
  12138. "autoload": {
  12139. "classmap": [
  12140. "src/"
  12141. ]
  12142. },
  12143. "notification-url": "https://packagist.org/downloads/",
  12144. "license": [
  12145. "BSD-3-Clause"
  12146. ],
  12147. "authors": [
  12148. {
  12149. "name": "Sebastian Bergmann",
  12150. "email": "[email protected]",
  12151. "role": "lead"
  12152. }
  12153. ],
  12154. "description": "Collection of value objects that represent the PHP code units",
  12155. "homepage": "https://github.com/sebastianbergmann/code-unit",
  12156. "support": {
  12157. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  12158. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  12159. },
  12160. "funding": [
  12161. {
  12162. "url": "https://github.com/sebastianbergmann",
  12163. "type": "github"
  12164. }
  12165. ],
  12166. "time": "2020-10-26T13:08:54+00:00"
  12167. },
  12168. {
  12169. "name": "sebastian/code-unit-reverse-lookup",
  12170. "version": "2.0.3",
  12171. "source": {
  12172. "type": "git",
  12173. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12174. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  12175. },
  12176. "dist": {
  12177. "type": "zip",
  12178. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12179. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12180. "shasum": "",
  12181. "mirrors": [
  12182. {
  12183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12184. "preferred": true
  12185. }
  12186. ]
  12187. },
  12188. "require": {
  12189. "php": ">=7.3"
  12190. },
  12191. "require-dev": {
  12192. "phpunit/phpunit": "^9.3"
  12193. },
  12194. "type": "library",
  12195. "extra": {
  12196. "branch-alias": {
  12197. "dev-master": "2.0-dev"
  12198. }
  12199. },
  12200. "autoload": {
  12201. "classmap": [
  12202. "src/"
  12203. ]
  12204. },
  12205. "notification-url": "https://packagist.org/downloads/",
  12206. "license": [
  12207. "BSD-3-Clause"
  12208. ],
  12209. "authors": [
  12210. {
  12211. "name": "Sebastian Bergmann",
  12212. "email": "[email protected]"
  12213. }
  12214. ],
  12215. "description": "Looks up which function or method a line of code belongs to",
  12216. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12217. "support": {
  12218. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  12219. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  12220. },
  12221. "funding": [
  12222. {
  12223. "url": "https://github.com/sebastianbergmann",
  12224. "type": "github"
  12225. }
  12226. ],
  12227. "time": "2020-09-28T05:30:19+00:00"
  12228. },
  12229. {
  12230. "name": "sebastian/comparator",
  12231. "version": "4.0.6",
  12232. "source": {
  12233. "type": "git",
  12234. "url": "https://github.com/sebastianbergmann/comparator.git",
  12235. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  12236. },
  12237. "dist": {
  12238. "type": "zip",
  12239. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  12240. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  12241. "shasum": "",
  12242. "mirrors": [
  12243. {
  12244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12245. "preferred": true
  12246. }
  12247. ]
  12248. },
  12249. "require": {
  12250. "php": ">=7.3",
  12251. "sebastian/diff": "^4.0",
  12252. "sebastian/exporter": "^4.0"
  12253. },
  12254. "require-dev": {
  12255. "phpunit/phpunit": "^9.3"
  12256. },
  12257. "type": "library",
  12258. "extra": {
  12259. "branch-alias": {
  12260. "dev-master": "4.0-dev"
  12261. }
  12262. },
  12263. "autoload": {
  12264. "classmap": [
  12265. "src/"
  12266. ]
  12267. },
  12268. "notification-url": "https://packagist.org/downloads/",
  12269. "license": [
  12270. "BSD-3-Clause"
  12271. ],
  12272. "authors": [
  12273. {
  12274. "name": "Sebastian Bergmann",
  12275. "email": "[email protected]"
  12276. },
  12277. {
  12278. "name": "Jeff Welch",
  12279. "email": "[email protected]"
  12280. },
  12281. {
  12282. "name": "Volker Dusch",
  12283. "email": "[email protected]"
  12284. },
  12285. {
  12286. "name": "Bernhard Schussek",
  12287. "email": "[email protected]"
  12288. }
  12289. ],
  12290. "description": "Provides the functionality to compare PHP values for equality",
  12291. "homepage": "https://github.com/sebastianbergmann/comparator",
  12292. "keywords": [
  12293. "comparator",
  12294. "compare",
  12295. "equality"
  12296. ],
  12297. "support": {
  12298. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12299. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  12300. },
  12301. "funding": [
  12302. {
  12303. "url": "https://github.com/sebastianbergmann",
  12304. "type": "github"
  12305. }
  12306. ],
  12307. "time": "2020-10-26T15:49:45+00:00"
  12308. },
  12309. {
  12310. "name": "sebastian/complexity",
  12311. "version": "2.0.2",
  12312. "source": {
  12313. "type": "git",
  12314. "url": "https://github.com/sebastianbergmann/complexity.git",
  12315. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  12316. },
  12317. "dist": {
  12318. "type": "zip",
  12319. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  12320. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  12321. "shasum": "",
  12322. "mirrors": [
  12323. {
  12324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12325. "preferred": true
  12326. }
  12327. ]
  12328. },
  12329. "require": {
  12330. "nikic/php-parser": "^4.7",
  12331. "php": ">=7.3"
  12332. },
  12333. "require-dev": {
  12334. "phpunit/phpunit": "^9.3"
  12335. },
  12336. "type": "library",
  12337. "extra": {
  12338. "branch-alias": {
  12339. "dev-master": "2.0-dev"
  12340. }
  12341. },
  12342. "autoload": {
  12343. "classmap": [
  12344. "src/"
  12345. ]
  12346. },
  12347. "notification-url": "https://packagist.org/downloads/",
  12348. "license": [
  12349. "BSD-3-Clause"
  12350. ],
  12351. "authors": [
  12352. {
  12353. "name": "Sebastian Bergmann",
  12354. "email": "[email protected]",
  12355. "role": "lead"
  12356. }
  12357. ],
  12358. "description": "Library for calculating the complexity of PHP code units",
  12359. "homepage": "https://github.com/sebastianbergmann/complexity",
  12360. "support": {
  12361. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  12362. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  12363. },
  12364. "funding": [
  12365. {
  12366. "url": "https://github.com/sebastianbergmann",
  12367. "type": "github"
  12368. }
  12369. ],
  12370. "time": "2020-10-26T15:52:27+00:00"
  12371. },
  12372. {
  12373. "name": "sebastian/diff",
  12374. "version": "4.0.4",
  12375. "source": {
  12376. "type": "git",
  12377. "url": "https://github.com/sebastianbergmann/diff.git",
  12378. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  12379. },
  12380. "dist": {
  12381. "type": "zip",
  12382. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12383. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12384. "shasum": "",
  12385. "mirrors": [
  12386. {
  12387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12388. "preferred": true
  12389. }
  12390. ]
  12391. },
  12392. "require": {
  12393. "php": ">=7.3"
  12394. },
  12395. "require-dev": {
  12396. "phpunit/phpunit": "^9.3",
  12397. "symfony/process": "^4.2 || ^5"
  12398. },
  12399. "type": "library",
  12400. "extra": {
  12401. "branch-alias": {
  12402. "dev-master": "4.0-dev"
  12403. }
  12404. },
  12405. "autoload": {
  12406. "classmap": [
  12407. "src/"
  12408. ]
  12409. },
  12410. "notification-url": "https://packagist.org/downloads/",
  12411. "license": [
  12412. "BSD-3-Clause"
  12413. ],
  12414. "authors": [
  12415. {
  12416. "name": "Sebastian Bergmann",
  12417. "email": "[email protected]"
  12418. },
  12419. {
  12420. "name": "Kore Nordmann",
  12421. "email": "[email protected]"
  12422. }
  12423. ],
  12424. "description": "Diff implementation",
  12425. "homepage": "https://github.com/sebastianbergmann/diff",
  12426. "keywords": [
  12427. "diff",
  12428. "udiff",
  12429. "unidiff",
  12430. "unified diff"
  12431. ],
  12432. "support": {
  12433. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12434. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  12435. },
  12436. "funding": [
  12437. {
  12438. "url": "https://github.com/sebastianbergmann",
  12439. "type": "github"
  12440. }
  12441. ],
  12442. "time": "2020-10-26T13:10:38+00:00"
  12443. },
  12444. {
  12445. "name": "sebastian/environment",
  12446. "version": "5.1.4",
  12447. "source": {
  12448. "type": "git",
  12449. "url": "https://github.com/sebastianbergmann/environment.git",
  12450. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  12451. },
  12452. "dist": {
  12453. "type": "zip",
  12454. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12455. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12456. "shasum": "",
  12457. "mirrors": [
  12458. {
  12459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12460. "preferred": true
  12461. }
  12462. ]
  12463. },
  12464. "require": {
  12465. "php": ">=7.3"
  12466. },
  12467. "require-dev": {
  12468. "phpunit/phpunit": "^9.3"
  12469. },
  12470. "suggest": {
  12471. "ext-posix": "*"
  12472. },
  12473. "type": "library",
  12474. "extra": {
  12475. "branch-alias": {
  12476. "dev-master": "5.1-dev"
  12477. }
  12478. },
  12479. "autoload": {
  12480. "classmap": [
  12481. "src/"
  12482. ]
  12483. },
  12484. "notification-url": "https://packagist.org/downloads/",
  12485. "license": [
  12486. "BSD-3-Clause"
  12487. ],
  12488. "authors": [
  12489. {
  12490. "name": "Sebastian Bergmann",
  12491. "email": "[email protected]"
  12492. }
  12493. ],
  12494. "description": "Provides functionality to handle HHVM/PHP environments",
  12495. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12496. "keywords": [
  12497. "Xdebug",
  12498. "environment",
  12499. "hhvm"
  12500. ],
  12501. "support": {
  12502. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12503. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  12504. },
  12505. "funding": [
  12506. {
  12507. "url": "https://github.com/sebastianbergmann",
  12508. "type": "github"
  12509. }
  12510. ],
  12511. "time": "2022-04-03T09:37:03+00:00"
  12512. },
  12513. {
  12514. "name": "sebastian/exporter",
  12515. "version": "4.0.4",
  12516. "source": {
  12517. "type": "git",
  12518. "url": "https://github.com/sebastianbergmann/exporter.git",
  12519. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  12520. },
  12521. "dist": {
  12522. "type": "zip",
  12523. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12524. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12525. "shasum": "",
  12526. "mirrors": [
  12527. {
  12528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12529. "preferred": true
  12530. }
  12531. ]
  12532. },
  12533. "require": {
  12534. "php": ">=7.3",
  12535. "sebastian/recursion-context": "^4.0"
  12536. },
  12537. "require-dev": {
  12538. "ext-mbstring": "*",
  12539. "phpunit/phpunit": "^9.3"
  12540. },
  12541. "type": "library",
  12542. "extra": {
  12543. "branch-alias": {
  12544. "dev-master": "4.0-dev"
  12545. }
  12546. },
  12547. "autoload": {
  12548. "classmap": [
  12549. "src/"
  12550. ]
  12551. },
  12552. "notification-url": "https://packagist.org/downloads/",
  12553. "license": [
  12554. "BSD-3-Clause"
  12555. ],
  12556. "authors": [
  12557. {
  12558. "name": "Sebastian Bergmann",
  12559. "email": "[email protected]"
  12560. },
  12561. {
  12562. "name": "Jeff Welch",
  12563. "email": "[email protected]"
  12564. },
  12565. {
  12566. "name": "Volker Dusch",
  12567. "email": "[email protected]"
  12568. },
  12569. {
  12570. "name": "Adam Harvey",
  12571. "email": "[email protected]"
  12572. },
  12573. {
  12574. "name": "Bernhard Schussek",
  12575. "email": "[email protected]"
  12576. }
  12577. ],
  12578. "description": "Provides the functionality to export PHP variables for visualization",
  12579. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12580. "keywords": [
  12581. "export",
  12582. "exporter"
  12583. ],
  12584. "support": {
  12585. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12586. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  12587. },
  12588. "funding": [
  12589. {
  12590. "url": "https://github.com/sebastianbergmann",
  12591. "type": "github"
  12592. }
  12593. ],
  12594. "time": "2021-11-11T14:18:36+00:00"
  12595. },
  12596. {
  12597. "name": "sebastian/global-state",
  12598. "version": "5.0.5",
  12599. "source": {
  12600. "type": "git",
  12601. "url": "https://github.com/sebastianbergmann/global-state.git",
  12602. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  12603. },
  12604. "dist": {
  12605. "type": "zip",
  12606. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12607. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12608. "shasum": "",
  12609. "mirrors": [
  12610. {
  12611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12612. "preferred": true
  12613. }
  12614. ]
  12615. },
  12616. "require": {
  12617. "php": ">=7.3",
  12618. "sebastian/object-reflector": "^2.0",
  12619. "sebastian/recursion-context": "^4.0"
  12620. },
  12621. "require-dev": {
  12622. "ext-dom": "*",
  12623. "phpunit/phpunit": "^9.3"
  12624. },
  12625. "suggest": {
  12626. "ext-uopz": "*"
  12627. },
  12628. "type": "library",
  12629. "extra": {
  12630. "branch-alias": {
  12631. "dev-master": "5.0-dev"
  12632. }
  12633. },
  12634. "autoload": {
  12635. "classmap": [
  12636. "src/"
  12637. ]
  12638. },
  12639. "notification-url": "https://packagist.org/downloads/",
  12640. "license": [
  12641. "BSD-3-Clause"
  12642. ],
  12643. "authors": [
  12644. {
  12645. "name": "Sebastian Bergmann",
  12646. "email": "[email protected]"
  12647. }
  12648. ],
  12649. "description": "Snapshotting of global state",
  12650. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12651. "keywords": [
  12652. "global state"
  12653. ],
  12654. "support": {
  12655. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12656. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  12657. },
  12658. "funding": [
  12659. {
  12660. "url": "https://github.com/sebastianbergmann",
  12661. "type": "github"
  12662. }
  12663. ],
  12664. "time": "2022-02-14T08:28:10+00:00"
  12665. },
  12666. {
  12667. "name": "sebastian/lines-of-code",
  12668. "version": "1.0.3",
  12669. "source": {
  12670. "type": "git",
  12671. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12672. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  12673. },
  12674. "dist": {
  12675. "type": "zip",
  12676. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12677. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12678. "shasum": "",
  12679. "mirrors": [
  12680. {
  12681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12682. "preferred": true
  12683. }
  12684. ]
  12685. },
  12686. "require": {
  12687. "nikic/php-parser": "^4.6",
  12688. "php": ">=7.3"
  12689. },
  12690. "require-dev": {
  12691. "phpunit/phpunit": "^9.3"
  12692. },
  12693. "type": "library",
  12694. "extra": {
  12695. "branch-alias": {
  12696. "dev-master": "1.0-dev"
  12697. }
  12698. },
  12699. "autoload": {
  12700. "classmap": [
  12701. "src/"
  12702. ]
  12703. },
  12704. "notification-url": "https://packagist.org/downloads/",
  12705. "license": [
  12706. "BSD-3-Clause"
  12707. ],
  12708. "authors": [
  12709. {
  12710. "name": "Sebastian Bergmann",
  12711. "email": "[email protected]",
  12712. "role": "lead"
  12713. }
  12714. ],
  12715. "description": "Library for counting the lines of code in PHP source code",
  12716. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12717. "support": {
  12718. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12719. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  12720. },
  12721. "funding": [
  12722. {
  12723. "url": "https://github.com/sebastianbergmann",
  12724. "type": "github"
  12725. }
  12726. ],
  12727. "time": "2020-11-28T06:42:11+00:00"
  12728. },
  12729. {
  12730. "name": "sebastian/object-enumerator",
  12731. "version": "4.0.4",
  12732. "source": {
  12733. "type": "git",
  12734. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12735. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12736. },
  12737. "dist": {
  12738. "type": "zip",
  12739. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12740. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12741. "shasum": "",
  12742. "mirrors": [
  12743. {
  12744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12745. "preferred": true
  12746. }
  12747. ]
  12748. },
  12749. "require": {
  12750. "php": ">=7.3",
  12751. "sebastian/object-reflector": "^2.0",
  12752. "sebastian/recursion-context": "^4.0"
  12753. },
  12754. "require-dev": {
  12755. "phpunit/phpunit": "^9.3"
  12756. },
  12757. "type": "library",
  12758. "extra": {
  12759. "branch-alias": {
  12760. "dev-master": "4.0-dev"
  12761. }
  12762. },
  12763. "autoload": {
  12764. "classmap": [
  12765. "src/"
  12766. ]
  12767. },
  12768. "notification-url": "https://packagist.org/downloads/",
  12769. "license": [
  12770. "BSD-3-Clause"
  12771. ],
  12772. "authors": [
  12773. {
  12774. "name": "Sebastian Bergmann",
  12775. "email": "[email protected]"
  12776. }
  12777. ],
  12778. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12779. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12780. "support": {
  12781. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12782. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12783. },
  12784. "funding": [
  12785. {
  12786. "url": "https://github.com/sebastianbergmann",
  12787. "type": "github"
  12788. }
  12789. ],
  12790. "time": "2020-10-26T13:12:34+00:00"
  12791. },
  12792. {
  12793. "name": "sebastian/object-reflector",
  12794. "version": "2.0.4",
  12795. "source": {
  12796. "type": "git",
  12797. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12798. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  12799. },
  12800. "dist": {
  12801. "type": "zip",
  12802. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12803. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12804. "shasum": "",
  12805. "mirrors": [
  12806. {
  12807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12808. "preferred": true
  12809. }
  12810. ]
  12811. },
  12812. "require": {
  12813. "php": ">=7.3"
  12814. },
  12815. "require-dev": {
  12816. "phpunit/phpunit": "^9.3"
  12817. },
  12818. "type": "library",
  12819. "extra": {
  12820. "branch-alias": {
  12821. "dev-master": "2.0-dev"
  12822. }
  12823. },
  12824. "autoload": {
  12825. "classmap": [
  12826. "src/"
  12827. ]
  12828. },
  12829. "notification-url": "https://packagist.org/downloads/",
  12830. "license": [
  12831. "BSD-3-Clause"
  12832. ],
  12833. "authors": [
  12834. {
  12835. "name": "Sebastian Bergmann",
  12836. "email": "[email protected]"
  12837. }
  12838. ],
  12839. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12840. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12841. "support": {
  12842. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12843. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  12844. },
  12845. "funding": [
  12846. {
  12847. "url": "https://github.com/sebastianbergmann",
  12848. "type": "github"
  12849. }
  12850. ],
  12851. "time": "2020-10-26T13:14:26+00:00"
  12852. },
  12853. {
  12854. "name": "sebastian/recursion-context",
  12855. "version": "4.0.4",
  12856. "source": {
  12857. "type": "git",
  12858. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12859. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  12860. },
  12861. "dist": {
  12862. "type": "zip",
  12863. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  12864. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  12865. "shasum": "",
  12866. "mirrors": [
  12867. {
  12868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12869. "preferred": true
  12870. }
  12871. ]
  12872. },
  12873. "require": {
  12874. "php": ">=7.3"
  12875. },
  12876. "require-dev": {
  12877. "phpunit/phpunit": "^9.3"
  12878. },
  12879. "type": "library",
  12880. "extra": {
  12881. "branch-alias": {
  12882. "dev-master": "4.0-dev"
  12883. }
  12884. },
  12885. "autoload": {
  12886. "classmap": [
  12887. "src/"
  12888. ]
  12889. },
  12890. "notification-url": "https://packagist.org/downloads/",
  12891. "license": [
  12892. "BSD-3-Clause"
  12893. ],
  12894. "authors": [
  12895. {
  12896. "name": "Sebastian Bergmann",
  12897. "email": "[email protected]"
  12898. },
  12899. {
  12900. "name": "Jeff Welch",
  12901. "email": "[email protected]"
  12902. },
  12903. {
  12904. "name": "Adam Harvey",
  12905. "email": "[email protected]"
  12906. }
  12907. ],
  12908. "description": "Provides functionality to recursively process PHP variables",
  12909. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12910. "support": {
  12911. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12912. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  12913. },
  12914. "funding": [
  12915. {
  12916. "url": "https://github.com/sebastianbergmann",
  12917. "type": "github"
  12918. }
  12919. ],
  12920. "time": "2020-10-26T13:17:30+00:00"
  12921. },
  12922. {
  12923. "name": "sebastian/resource-operations",
  12924. "version": "3.0.3",
  12925. "source": {
  12926. "type": "git",
  12927. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12928. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  12929. },
  12930. "dist": {
  12931. "type": "zip",
  12932. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12933. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12934. "shasum": "",
  12935. "mirrors": [
  12936. {
  12937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12938. "preferred": true
  12939. }
  12940. ]
  12941. },
  12942. "require": {
  12943. "php": ">=7.3"
  12944. },
  12945. "require-dev": {
  12946. "phpunit/phpunit": "^9.0"
  12947. },
  12948. "type": "library",
  12949. "extra": {
  12950. "branch-alias": {
  12951. "dev-master": "3.0-dev"
  12952. }
  12953. },
  12954. "autoload": {
  12955. "classmap": [
  12956. "src/"
  12957. ]
  12958. },
  12959. "notification-url": "https://packagist.org/downloads/",
  12960. "license": [
  12961. "BSD-3-Clause"
  12962. ],
  12963. "authors": [
  12964. {
  12965. "name": "Sebastian Bergmann",
  12966. "email": "[email protected]"
  12967. }
  12968. ],
  12969. "description": "Provides a list of PHP built-in functions that operate on resources",
  12970. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12971. "support": {
  12972. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  12973. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  12974. },
  12975. "funding": [
  12976. {
  12977. "url": "https://github.com/sebastianbergmann",
  12978. "type": "github"
  12979. }
  12980. ],
  12981. "time": "2020-09-28T06:45:17+00:00"
  12982. },
  12983. {
  12984. "name": "sebastian/type",
  12985. "version": "3.0.x-dev",
  12986. "source": {
  12987. "type": "git",
  12988. "url": "https://github.com/sebastianbergmann/type.git",
  12989. "reference": "afad3e987736f63bc54d7c923f0c1ebf247e8618"
  12990. },
  12991. "dist": {
  12992. "type": "zip",
  12993. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/afad3e987736f63bc54d7c923f0c1ebf247e8618",
  12994. "reference": "afad3e987736f63bc54d7c923f0c1ebf247e8618",
  12995. "shasum": "",
  12996. "mirrors": [
  12997. {
  12998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12999. "preferred": true
  13000. }
  13001. ]
  13002. },
  13003. "require": {
  13004. "php": ">=7.3"
  13005. },
  13006. "require-dev": {
  13007. "phpunit/phpunit": "^9.5"
  13008. },
  13009. "type": "library",
  13010. "extra": {
  13011. "branch-alias": {
  13012. "dev-master": "3.0-dev"
  13013. }
  13014. },
  13015. "autoload": {
  13016. "classmap": [
  13017. "src/"
  13018. ]
  13019. },
  13020. "notification-url": "https://packagist.org/downloads/",
  13021. "license": [
  13022. "BSD-3-Clause"
  13023. ],
  13024. "authors": [
  13025. {
  13026. "name": "Sebastian Bergmann",
  13027. "email": "[email protected]",
  13028. "role": "lead"
  13029. }
  13030. ],
  13031. "description": "Collection of value objects that represent the types of the PHP type system",
  13032. "homepage": "https://github.com/sebastianbergmann/type",
  13033. "support": {
  13034. "issues": "https://github.com/sebastianbergmann/type/issues",
  13035. "source": "https://github.com/sebastianbergmann/type/tree/3.0"
  13036. },
  13037. "funding": [
  13038. {
  13039. "url": "https://github.com/sebastianbergmann",
  13040. "type": "github"
  13041. }
  13042. ],
  13043. "time": "2022-03-27T17:35:59+00:00"
  13044. },
  13045. {
  13046. "name": "sebastian/version",
  13047. "version": "3.0.2",
  13048. "source": {
  13049. "type": "git",
  13050. "url": "https://github.com/sebastianbergmann/version.git",
  13051. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  13052. },
  13053. "dist": {
  13054. "type": "zip",
  13055. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  13056. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  13057. "shasum": "",
  13058. "mirrors": [
  13059. {
  13060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13061. "preferred": true
  13062. }
  13063. ]
  13064. },
  13065. "require": {
  13066. "php": ">=7.3"
  13067. },
  13068. "type": "library",
  13069. "extra": {
  13070. "branch-alias": {
  13071. "dev-master": "3.0-dev"
  13072. }
  13073. },
  13074. "autoload": {
  13075. "classmap": [
  13076. "src/"
  13077. ]
  13078. },
  13079. "notification-url": "https://packagist.org/downloads/",
  13080. "license": [
  13081. "BSD-3-Clause"
  13082. ],
  13083. "authors": [
  13084. {
  13085. "name": "Sebastian Bergmann",
  13086. "email": "[email protected]",
  13087. "role": "lead"
  13088. }
  13089. ],
  13090. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  13091. "homepage": "https://github.com/sebastianbergmann/version",
  13092. "support": {
  13093. "issues": "https://github.com/sebastianbergmann/version/issues",
  13094. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  13095. },
  13096. "funding": [
  13097. {
  13098. "url": "https://github.com/sebastianbergmann",
  13099. "type": "github"
  13100. }
  13101. ],
  13102. "time": "2020-09-28T06:39:44+00:00"
  13103. },
  13104. {
  13105. "name": "seld/jsonlint",
  13106. "version": "1.9.0",
  13107. "source": {
  13108. "type": "git",
  13109. "url": "https://github.com/Seldaek/jsonlint.git",
  13110. "reference": "4211420d25eba80712bff236a98960ef68b866b7"
  13111. },
  13112. "dist": {
  13113. "type": "zip",
  13114. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7",
  13115. "reference": "4211420d25eba80712bff236a98960ef68b866b7",
  13116. "shasum": "",
  13117. "mirrors": [
  13118. {
  13119. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13120. "preferred": true
  13121. }
  13122. ]
  13123. },
  13124. "require": {
  13125. "php": "^5.3 || ^7.0 || ^8.0"
  13126. },
  13127. "require-dev": {
  13128. "phpstan/phpstan": "^1.5",
  13129. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
  13130. },
  13131. "bin": [
  13132. "bin/jsonlint"
  13133. ],
  13134. "type": "library",
  13135. "autoload": {
  13136. "psr-4": {
  13137. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  13138. }
  13139. },
  13140. "notification-url": "https://packagist.org/downloads/",
  13141. "license": [
  13142. "MIT"
  13143. ],
  13144. "authors": [
  13145. {
  13146. "name": "Jordi Boggiano",
  13147. "email": "[email protected]",
  13148. "homepage": "http://seld.be"
  13149. }
  13150. ],
  13151. "description": "JSON Linter",
  13152. "keywords": [
  13153. "json",
  13154. "linter",
  13155. "parser",
  13156. "validator"
  13157. ],
  13158. "support": {
  13159. "issues": "https://github.com/Seldaek/jsonlint/issues",
  13160. "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0"
  13161. },
  13162. "funding": [
  13163. {
  13164. "url": "https://github.com/Seldaek",
  13165. "type": "github"
  13166. },
  13167. {
  13168. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  13169. "type": "tidelift"
  13170. }
  13171. ],
  13172. "time": "2022-04-01T13:37:23+00:00"
  13173. },
  13174. {
  13175. "name": "seld/phar-utils",
  13176. "version": "1.2.0",
  13177. "source": {
  13178. "type": "git",
  13179. "url": "https://github.com/Seldaek/phar-utils.git",
  13180. "reference": "9f3452c93ff423469c0d56450431562ca423dcee"
  13181. },
  13182. "dist": {
  13183. "type": "zip",
  13184. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/9f3452c93ff423469c0d56450431562ca423dcee",
  13185. "reference": "9f3452c93ff423469c0d56450431562ca423dcee",
  13186. "shasum": "",
  13187. "mirrors": [
  13188. {
  13189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13190. "preferred": true
  13191. }
  13192. ]
  13193. },
  13194. "require": {
  13195. "php": ">=5.3"
  13196. },
  13197. "type": "library",
  13198. "extra": {
  13199. "branch-alias": {
  13200. "dev-master": "1.x-dev"
  13201. }
  13202. },
  13203. "autoload": {
  13204. "psr-4": {
  13205. "Seld\\PharUtils\\": "src/"
  13206. }
  13207. },
  13208. "notification-url": "https://packagist.org/downloads/",
  13209. "license": [
  13210. "MIT"
  13211. ],
  13212. "authors": [
  13213. {
  13214. "name": "Jordi Boggiano",
  13215. "email": "[email protected]"
  13216. }
  13217. ],
  13218. "description": "PHAR file format utilities, for when PHP phars you up",
  13219. "keywords": [
  13220. "phar"
  13221. ],
  13222. "support": {
  13223. "issues": "https://github.com/Seldaek/phar-utils/issues",
  13224. "source": "https://github.com/Seldaek/phar-utils/tree/1.2.0"
  13225. },
  13226. "time": "2021-12-10T11:20:11+00:00"
  13227. },
  13228. {
  13229. "name": "symfony/debug",
  13230. "version": "v4.4.41",
  13231. "source": {
  13232. "type": "git",
  13233. "url": "https://github.com/symfony/debug.git",
  13234. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5"
  13235. },
  13236. "dist": {
  13237. "type": "zip",
  13238. "url": "https://api.github.com/repos/symfony/debug/zipball/6637e62480b60817b9a6984154a533e8e64c6bd5",
  13239. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5",
  13240. "shasum": "",
  13241. "mirrors": [
  13242. {
  13243. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13244. "preferred": true
  13245. }
  13246. ]
  13247. },
  13248. "require": {
  13249. "php": ">=7.1.3",
  13250. "psr/log": "^1|^2|^3"
  13251. },
  13252. "conflict": {
  13253. "symfony/http-kernel": "<3.4"
  13254. },
  13255. "require-dev": {
  13256. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  13257. },
  13258. "type": "library",
  13259. "autoload": {
  13260. "psr-4": {
  13261. "Symfony\\Component\\Debug\\": ""
  13262. },
  13263. "exclude-from-classmap": [
  13264. "/Tests/"
  13265. ]
  13266. },
  13267. "notification-url": "https://packagist.org/downloads/",
  13268. "license": [
  13269. "MIT"
  13270. ],
  13271. "authors": [
  13272. {
  13273. "name": "Fabien Potencier",
  13274. "email": "[email protected]"
  13275. },
  13276. {
  13277. "name": "Symfony Community",
  13278. "homepage": "https://symfony.com/contributors"
  13279. }
  13280. ],
  13281. "description": "Provides tools to ease debugging PHP code",
  13282. "homepage": "https://symfony.com",
  13283. "support": {
  13284. "source": "https://github.com/symfony/debug/tree/v4.4.41"
  13285. },
  13286. "funding": [
  13287. {
  13288. "url": "https://symfony.com/sponsor",
  13289. "type": "custom"
  13290. },
  13291. {
  13292. "url": "https://github.com/fabpot",
  13293. "type": "github"
  13294. },
  13295. {
  13296. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13297. "type": "tidelift"
  13298. }
  13299. ],
  13300. "time": "2022-04-12T15:19:55+00:00"
  13301. },
  13302. {
  13303. "name": "symfony/filesystem",
  13304. "version": "v5.4.9",
  13305. "source": {
  13306. "type": "git",
  13307. "url": "https://github.com/symfony/filesystem.git",
  13308. "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba"
  13309. },
  13310. "dist": {
  13311. "type": "zip",
  13312. "url": "https://api.github.com/repos/symfony/filesystem/zipball/36a017fa4cce1eff1b8e8129ff53513abcef05ba",
  13313. "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba",
  13314. "shasum": "",
  13315. "mirrors": [
  13316. {
  13317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13318. "preferred": true
  13319. }
  13320. ]
  13321. },
  13322. "require": {
  13323. "php": ">=7.2.5",
  13324. "symfony/polyfill-ctype": "~1.8",
  13325. "symfony/polyfill-mbstring": "~1.8",
  13326. "symfony/polyfill-php80": "^1.16"
  13327. },
  13328. "type": "library",
  13329. "autoload": {
  13330. "psr-4": {
  13331. "Symfony\\Component\\Filesystem\\": ""
  13332. },
  13333. "exclude-from-classmap": [
  13334. "/Tests/"
  13335. ]
  13336. },
  13337. "notification-url": "https://packagist.org/downloads/",
  13338. "license": [
  13339. "MIT"
  13340. ],
  13341. "authors": [
  13342. {
  13343. "name": "Fabien Potencier",
  13344. "email": "[email protected]"
  13345. },
  13346. {
  13347. "name": "Symfony Community",
  13348. "homepage": "https://symfony.com/contributors"
  13349. }
  13350. ],
  13351. "description": "Provides basic utilities for the filesystem",
  13352. "homepage": "https://symfony.com",
  13353. "support": {
  13354. "source": "https://github.com/symfony/filesystem/tree/v5.4.9"
  13355. },
  13356. "funding": [
  13357. {
  13358. "url": "https://symfony.com/sponsor",
  13359. "type": "custom"
  13360. },
  13361. {
  13362. "url": "https://github.com/fabpot",
  13363. "type": "github"
  13364. },
  13365. {
  13366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13367. "type": "tidelift"
  13368. }
  13369. ],
  13370. "time": "2022-05-20T13:55:35+00:00"
  13371. },
  13372. {
  13373. "name": "theseer/tokenizer",
  13374. "version": "1.2.1",
  13375. "source": {
  13376. "type": "git",
  13377. "url": "https://github.com/theseer/tokenizer.git",
  13378. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  13379. },
  13380. "dist": {
  13381. "type": "zip",
  13382. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  13383. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  13384. "shasum": "",
  13385. "mirrors": [
  13386. {
  13387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13388. "preferred": true
  13389. }
  13390. ]
  13391. },
  13392. "require": {
  13393. "ext-dom": "*",
  13394. "ext-tokenizer": "*",
  13395. "ext-xmlwriter": "*",
  13396. "php": "^7.2 || ^8.0"
  13397. },
  13398. "type": "library",
  13399. "autoload": {
  13400. "classmap": [
  13401. "src/"
  13402. ]
  13403. },
  13404. "notification-url": "https://packagist.org/downloads/",
  13405. "license": [
  13406. "BSD-3-Clause"
  13407. ],
  13408. "authors": [
  13409. {
  13410. "name": "Arne Blankerts",
  13411. "email": "[email protected]",
  13412. "role": "Developer"
  13413. }
  13414. ],
  13415. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13416. "support": {
  13417. "issues": "https://github.com/theseer/tokenizer/issues",
  13418. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  13419. },
  13420. "funding": [
  13421. {
  13422. "url": "https://github.com/theseer",
  13423. "type": "github"
  13424. }
  13425. ],
  13426. "time": "2021-07-28T10:34:58+00:00"
  13427. },
  13428. {
  13429. "name": "webmozart/assert",
  13430. "version": "1.10.0",
  13431. "source": {
  13432. "type": "git",
  13433. "url": "https://github.com/webmozarts/assert.git",
  13434. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  13435. },
  13436. "dist": {
  13437. "type": "zip",
  13438. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  13439. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  13440. "shasum": "",
  13441. "mirrors": [
  13442. {
  13443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13444. "preferred": true
  13445. }
  13446. ]
  13447. },
  13448. "require": {
  13449. "php": "^7.2 || ^8.0",
  13450. "symfony/polyfill-ctype": "^1.8"
  13451. },
  13452. "conflict": {
  13453. "phpstan/phpstan": "<0.12.20",
  13454. "vimeo/psalm": "<4.6.1 || 4.6.2"
  13455. },
  13456. "require-dev": {
  13457. "phpunit/phpunit": "^8.5.13"
  13458. },
  13459. "type": "library",
  13460. "extra": {
  13461. "branch-alias": {
  13462. "dev-master": "1.10-dev"
  13463. }
  13464. },
  13465. "autoload": {
  13466. "psr-4": {
  13467. "Webmozart\\Assert\\": "src/"
  13468. }
  13469. },
  13470. "notification-url": "https://packagist.org/downloads/",
  13471. "license": [
  13472. "MIT"
  13473. ],
  13474. "authors": [
  13475. {
  13476. "name": "Bernhard Schussek",
  13477. "email": "[email protected]"
  13478. }
  13479. ],
  13480. "description": "Assertions to validate method input/output with nice error messages.",
  13481. "keywords": [
  13482. "assert",
  13483. "check",
  13484. "validate"
  13485. ],
  13486. "support": {
  13487. "issues": "https://github.com/webmozarts/assert/issues",
  13488. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  13489. },
  13490. "time": "2021-03-09T10:59:23+00:00"
  13491. }
  13492. ],
  13493. "aliases": [],
  13494. "minimum-stability": "dev",
  13495. "stability-flags": [],
  13496. "prefer-stable": true,
  13497. "prefer-lowest": false,
  13498. "platform": {
  13499. "php": "^7.2.5",
  13500. "ext-dom": "*",
  13501. "ext-json": "*",
  13502. "ext-mbstring": "*",
  13503. "ext-openssl": "*",
  13504. "ext-simplexml": "*"
  13505. },
  13506. "platform-dev": [],
  13507. "plugin-api-version": "2.1.0"
  13508. }