composer.lock 428 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918
  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": "b0a56b10a59713f7e27ef7307eb4e527",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
  20. "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
  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. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^2.1",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  38. "squizlabs/php_codesniffer": "^3.4"
  39. },
  40. "suggest": {
  41. "ext-imagick": "to generate QR code images"
  42. },
  43. "type": "library",
  44. "autoload": {
  45. "psr-4": {
  46. "BaconQrCode\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "BSD-2-Clause"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Ben Scholzen 'DASPRiD'",
  56. "email": "mail@dasprids.de",
  57. "homepage": "https://dasprids.de/",
  58. "role": "Developer"
  59. }
  60. ],
  61. "description": "BaconQrCode is a QR code generator for PHP.",
  62. "homepage": "https://github.com/Bacon/BaconQrCode",
  63. "support": {
  64. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  65. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.7"
  66. },
  67. "time": "2022-03-14T02:02:36+00:00"
  68. },
  69. {
  70. "name": "barryvdh/laravel-ide-helper",
  71. "version": "v2.8.2",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  75. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  80. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  81. "shasum": "",
  82. "mirrors": [
  83. {
  84. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  85. "preferred": true
  86. }
  87. ]
  88. },
  89. "require": {
  90. "barryvdh/reflection-docblock": "^2.0.6",
  91. "composer/composer": "^1.6 || ^2",
  92. "doctrine/dbal": "~2.3",
  93. "ext-json": "*",
  94. "illuminate/console": "^6 || ^7 || ^8",
  95. "illuminate/filesystem": "^6 || ^7 || ^8",
  96. "illuminate/support": "^6 || ^7 || ^8",
  97. "php": ">=7.2",
  98. "phpdocumentor/type-resolver": "^1.1.0"
  99. },
  100. "require-dev": {
  101. "ext-pdo_sqlite": "*",
  102. "friendsofphp/php-cs-fixer": "^2",
  103. "illuminate/config": "^6 || ^7 || ^8",
  104. "illuminate/view": "^6 || ^7 || ^8",
  105. "mockery/mockery": "^1.3.3",
  106. "orchestra/testbench": "^4 || ^5 || ^6",
  107. "phpunit/phpunit": "^8.5 || ^9",
  108. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  109. "vimeo/psalm": "^3.12"
  110. },
  111. "type": "library",
  112. "extra": {
  113. "branch-alias": {
  114. "dev-master": "2.8-dev"
  115. },
  116. "laravel": {
  117. "providers": [
  118. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  119. ]
  120. }
  121. },
  122. "autoload": {
  123. "psr-4": {
  124. "Barryvdh\\LaravelIdeHelper\\": "src"
  125. }
  126. },
  127. "notification-url": "https://packagist.org/downloads/",
  128. "license": [
  129. "MIT"
  130. ],
  131. "authors": [
  132. {
  133. "name": "Barry vd. Heuvel",
  134. "email": "barryvdh@gmail.com"
  135. }
  136. ],
  137. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  138. "keywords": [
  139. "autocomplete",
  140. "codeintel",
  141. "helper",
  142. "ide",
  143. "laravel",
  144. "netbeans",
  145. "phpdoc",
  146. "phpstorm",
  147. "sublime"
  148. ],
  149. "support": {
  150. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  151. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  152. },
  153. "funding": [
  154. {
  155. "url": "https://github.com/barryvdh",
  156. "type": "github"
  157. }
  158. ],
  159. "time": "2020-12-06T08:55:05+00:00"
  160. },
  161. {
  162. "name": "barryvdh/reflection-docblock",
  163. "version": "v2.1.0",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  167. "reference": "bf44b757feb8ba1734659029357646466ded673e"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/bf44b757feb8ba1734659029357646466ded673e",
  172. "reference": "bf44b757feb8ba1734659029357646466ded673e",
  173. "shasum": "",
  174. "mirrors": [
  175. {
  176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  177. "preferred": true
  178. }
  179. ]
  180. },
  181. "require": {
  182. "php": ">=5.3.3"
  183. },
  184. "require-dev": {
  185. "phpunit/phpunit": "^8.5.14|^9"
  186. },
  187. "suggest": {
  188. "dflydev/markdown": "~1.0",
  189. "erusev/parsedown": "~1.0"
  190. },
  191. "type": "library",
  192. "extra": {
  193. "branch-alias": {
  194. "dev-master": "2.0.x-dev"
  195. }
  196. },
  197. "autoload": {
  198. "psr-0": {
  199. "Barryvdh": [
  200. "src/"
  201. ]
  202. }
  203. },
  204. "notification-url": "https://packagist.org/downloads/",
  205. "license": [
  206. "MIT"
  207. ],
  208. "authors": [
  209. {
  210. "name": "Mike van Riel",
  211. "email": "mike.vanriel@naenius.com"
  212. }
  213. ],
  214. "support": {
  215. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.0"
  216. },
  217. "time": "2022-10-31T15:35:43+00:00"
  218. },
  219. {
  220. "name": "composer/ca-bundle",
  221. "version": "1.3.3",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/composer/ca-bundle.git",
  225. "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/30897edbfb15e784fe55587b4f73ceefd3c4d98c",
  230. "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c",
  231. "shasum": "",
  232. "mirrors": [
  233. {
  234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  235. "preferred": true
  236. }
  237. ]
  238. },
  239. "require": {
  240. "ext-openssl": "*",
  241. "ext-pcre": "*",
  242. "php": "^5.3.2 || ^7.0 || ^8.0"
  243. },
  244. "require-dev": {
  245. "phpstan/phpstan": "^0.12.55",
  246. "psr/log": "^1.0",
  247. "symfony/phpunit-bridge": "^4.2 || ^5",
  248. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  249. },
  250. "type": "library",
  251. "extra": {
  252. "branch-alias": {
  253. "dev-main": "1.x-dev"
  254. }
  255. },
  256. "autoload": {
  257. "psr-4": {
  258. "Composer\\CaBundle\\": "src"
  259. }
  260. },
  261. "notification-url": "https://packagist.org/downloads/",
  262. "license": [
  263. "MIT"
  264. ],
  265. "authors": [
  266. {
  267. "name": "Jordi Boggiano",
  268. "email": "j.boggiano@seld.be",
  269. "homepage": "http://seld.be"
  270. }
  271. ],
  272. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  273. "keywords": [
  274. "cabundle",
  275. "cacert",
  276. "certificate",
  277. "ssl",
  278. "tls"
  279. ],
  280. "support": {
  281. "irc": "irc://irc.freenode.org/composer",
  282. "issues": "https://github.com/composer/ca-bundle/issues",
  283. "source": "https://github.com/composer/ca-bundle/tree/1.3.3"
  284. },
  285. "funding": [
  286. {
  287. "url": "https://packagist.com",
  288. "type": "custom"
  289. },
  290. {
  291. "url": "https://github.com/composer",
  292. "type": "github"
  293. },
  294. {
  295. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  296. "type": "tidelift"
  297. }
  298. ],
  299. "time": "2022-07-20T07:14:26+00:00"
  300. },
  301. {
  302. "name": "composer/composer",
  303. "version": "2.2.18",
  304. "source": {
  305. "type": "git",
  306. "url": "https://github.com/composer/composer.git",
  307. "reference": "84175907664ca8b73f73f4883e67e886dfefb9f5"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/composer/composer/zipball/84175907664ca8b73f73f4883e67e886dfefb9f5",
  312. "reference": "84175907664ca8b73f73f4883e67e886dfefb9f5",
  313. "shasum": "",
  314. "mirrors": [
  315. {
  316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  317. "preferred": true
  318. }
  319. ]
  320. },
  321. "require": {
  322. "composer/ca-bundle": "^1.0",
  323. "composer/metadata-minifier": "^1.0",
  324. "composer/pcre": "^1.0",
  325. "composer/semver": "^3.0",
  326. "composer/spdx-licenses": "^1.2",
  327. "composer/xdebug-handler": "^2.0 || ^3.0",
  328. "justinrainbow/json-schema": "^5.2.11",
  329. "php": "^5.3.2 || ^7.0 || ^8.0",
  330. "psr/log": "^1.0 || ^2.0",
  331. "react/promise": "^1.2 || ^2.7",
  332. "seld/jsonlint": "^1.4",
  333. "seld/phar-utils": "^1.0",
  334. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  335. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  336. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  337. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0"
  338. },
  339. "require-dev": {
  340. "phpspec/prophecy": "^1.10",
  341. "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0"
  342. },
  343. "suggest": {
  344. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  345. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  346. "ext-zlib": "Allow gzip compression of HTTP requests"
  347. },
  348. "bin": [
  349. "bin/composer"
  350. ],
  351. "type": "library",
  352. "extra": {
  353. "branch-alias": {
  354. "dev-main": "2.2-dev"
  355. }
  356. },
  357. "autoload": {
  358. "psr-4": {
  359. "Composer\\": "src/Composer"
  360. }
  361. },
  362. "notification-url": "https://packagist.org/downloads/",
  363. "license": [
  364. "MIT"
  365. ],
  366. "authors": [
  367. {
  368. "name": "Nils Adermann",
  369. "email": "naderman@naderman.de",
  370. "homepage": "https://www.naderman.de"
  371. },
  372. {
  373. "name": "Jordi Boggiano",
  374. "email": "j.boggiano@seld.be",
  375. "homepage": "https://seld.be"
  376. }
  377. ],
  378. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  379. "homepage": "https://getcomposer.org/",
  380. "keywords": [
  381. "autoload",
  382. "dependency",
  383. "package"
  384. ],
  385. "support": {
  386. "irc": "ircs://irc.libera.chat:6697/composer",
  387. "issues": "https://github.com/composer/composer/issues",
  388. "source": "https://github.com/composer/composer/tree/2.2.18"
  389. },
  390. "funding": [
  391. {
  392. "url": "https://packagist.com",
  393. "type": "custom"
  394. },
  395. {
  396. "url": "https://github.com/composer",
  397. "type": "github"
  398. },
  399. {
  400. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  401. "type": "tidelift"
  402. }
  403. ],
  404. "time": "2022-08-20T09:33:38+00:00"
  405. },
  406. {
  407. "name": "composer/metadata-minifier",
  408. "version": "1.0.0",
  409. "source": {
  410. "type": "git",
  411. "url": "https://github.com/composer/metadata-minifier.git",
  412. "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
  413. },
  414. "dist": {
  415. "type": "zip",
  416. "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
  417. "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
  418. "shasum": "",
  419. "mirrors": [
  420. {
  421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  422. "preferred": true
  423. }
  424. ]
  425. },
  426. "require": {
  427. "php": "^5.3.2 || ^7.0 || ^8.0"
  428. },
  429. "require-dev": {
  430. "composer/composer": "^2",
  431. "phpstan/phpstan": "^0.12.55",
  432. "symfony/phpunit-bridge": "^4.2 || ^5"
  433. },
  434. "type": "library",
  435. "extra": {
  436. "branch-alias": {
  437. "dev-main": "1.x-dev"
  438. }
  439. },
  440. "autoload": {
  441. "psr-4": {
  442. "Composer\\MetadataMinifier\\": "src"
  443. }
  444. },
  445. "notification-url": "https://packagist.org/downloads/",
  446. "license": [
  447. "MIT"
  448. ],
  449. "authors": [
  450. {
  451. "name": "Jordi Boggiano",
  452. "email": "j.boggiano@seld.be",
  453. "homepage": "http://seld.be"
  454. }
  455. ],
  456. "description": "Small utility library that handles metadata minification and expansion.",
  457. "keywords": [
  458. "composer",
  459. "compression"
  460. ],
  461. "support": {
  462. "issues": "https://github.com/composer/metadata-minifier/issues",
  463. "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
  464. },
  465. "funding": [
  466. {
  467. "url": "https://packagist.com",
  468. "type": "custom"
  469. },
  470. {
  471. "url": "https://github.com/composer",
  472. "type": "github"
  473. },
  474. {
  475. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  476. "type": "tidelift"
  477. }
  478. ],
  479. "time": "2021-04-07T13:37:33+00:00"
  480. },
  481. {
  482. "name": "composer/pcre",
  483. "version": "1.0.1",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/composer/pcre.git",
  487. "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/composer/pcre/zipball/67a32d7d6f9f560b726ab25a061b38ff3a80c560",
  492. "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560",
  493. "shasum": "",
  494. "mirrors": [
  495. {
  496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  497. "preferred": true
  498. }
  499. ]
  500. },
  501. "require": {
  502. "php": "^5.3.2 || ^7.0 || ^8.0"
  503. },
  504. "require-dev": {
  505. "phpstan/phpstan": "^1.3",
  506. "phpstan/phpstan-strict-rules": "^1.1",
  507. "symfony/phpunit-bridge": "^4.2 || ^5"
  508. },
  509. "type": "library",
  510. "extra": {
  511. "branch-alias": {
  512. "dev-main": "1.x-dev"
  513. }
  514. },
  515. "autoload": {
  516. "psr-4": {
  517. "Composer\\Pcre\\": "src"
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "authors": [
  525. {
  526. "name": "Jordi Boggiano",
  527. "email": "j.boggiano@seld.be",
  528. "homepage": "http://seld.be"
  529. }
  530. ],
  531. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  532. "keywords": [
  533. "PCRE",
  534. "preg",
  535. "regex",
  536. "regular expression"
  537. ],
  538. "support": {
  539. "issues": "https://github.com/composer/pcre/issues",
  540. "source": "https://github.com/composer/pcre/tree/1.0.1"
  541. },
  542. "funding": [
  543. {
  544. "url": "https://packagist.com",
  545. "type": "custom"
  546. },
  547. {
  548. "url": "https://github.com/composer",
  549. "type": "github"
  550. },
  551. {
  552. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  553. "type": "tidelift"
  554. }
  555. ],
  556. "time": "2022-01-21T20:24:37+00:00"
  557. },
  558. {
  559. "name": "composer/semver",
  560. "version": "3.3.2",
  561. "source": {
  562. "type": "git",
  563. "url": "https://github.com/composer/semver.git",
  564. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  565. },
  566. "dist": {
  567. "type": "zip",
  568. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  569. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  570. "shasum": "",
  571. "mirrors": [
  572. {
  573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  574. "preferred": true
  575. }
  576. ]
  577. },
  578. "require": {
  579. "php": "^5.3.2 || ^7.0 || ^8.0"
  580. },
  581. "require-dev": {
  582. "phpstan/phpstan": "^1.4",
  583. "symfony/phpunit-bridge": "^4.2 || ^5"
  584. },
  585. "type": "library",
  586. "extra": {
  587. "branch-alias": {
  588. "dev-main": "3.x-dev"
  589. }
  590. },
  591. "autoload": {
  592. "psr-4": {
  593. "Composer\\Semver\\": "src"
  594. }
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Nils Adermann",
  603. "email": "naderman@naderman.de",
  604. "homepage": "http://www.naderman.de"
  605. },
  606. {
  607. "name": "Jordi Boggiano",
  608. "email": "j.boggiano@seld.be",
  609. "homepage": "http://seld.be"
  610. },
  611. {
  612. "name": "Rob Bast",
  613. "email": "rob.bast@gmail.com",
  614. "homepage": "http://robbast.nl"
  615. }
  616. ],
  617. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  618. "keywords": [
  619. "semantic",
  620. "semver",
  621. "validation",
  622. "versioning"
  623. ],
  624. "support": {
  625. "irc": "irc://irc.freenode.org/composer",
  626. "issues": "https://github.com/composer/semver/issues",
  627. "source": "https://github.com/composer/semver/tree/3.3.2"
  628. },
  629. "funding": [
  630. {
  631. "url": "https://packagist.com",
  632. "type": "custom"
  633. },
  634. {
  635. "url": "https://github.com/composer",
  636. "type": "github"
  637. },
  638. {
  639. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  640. "type": "tidelift"
  641. }
  642. ],
  643. "time": "2022-04-01T19:23:25+00:00"
  644. },
  645. {
  646. "name": "composer/spdx-licenses",
  647. "version": "1.5.7",
  648. "source": {
  649. "type": "git",
  650. "url": "https://github.com/composer/spdx-licenses.git",
  651. "reference": "c848241796da2abf65837d51dce1fae55a960149"
  652. },
  653. "dist": {
  654. "type": "zip",
  655. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149",
  656. "reference": "c848241796da2abf65837d51dce1fae55a960149",
  657. "shasum": "",
  658. "mirrors": [
  659. {
  660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  661. "preferred": true
  662. }
  663. ]
  664. },
  665. "require": {
  666. "php": "^5.3.2 || ^7.0 || ^8.0"
  667. },
  668. "require-dev": {
  669. "phpstan/phpstan": "^0.12.55",
  670. "symfony/phpunit-bridge": "^4.2 || ^5"
  671. },
  672. "type": "library",
  673. "extra": {
  674. "branch-alias": {
  675. "dev-main": "1.x-dev"
  676. }
  677. },
  678. "autoload": {
  679. "psr-4": {
  680. "Composer\\Spdx\\": "src"
  681. }
  682. },
  683. "notification-url": "https://packagist.org/downloads/",
  684. "license": [
  685. "MIT"
  686. ],
  687. "authors": [
  688. {
  689. "name": "Nils Adermann",
  690. "email": "naderman@naderman.de",
  691. "homepage": "http://www.naderman.de"
  692. },
  693. {
  694. "name": "Jordi Boggiano",
  695. "email": "j.boggiano@seld.be",
  696. "homepage": "http://seld.be"
  697. },
  698. {
  699. "name": "Rob Bast",
  700. "email": "rob.bast@gmail.com",
  701. "homepage": "http://robbast.nl"
  702. }
  703. ],
  704. "description": "SPDX licenses list and validation library.",
  705. "keywords": [
  706. "license",
  707. "spdx",
  708. "validator"
  709. ],
  710. "support": {
  711. "irc": "irc://irc.freenode.org/composer",
  712. "issues": "https://github.com/composer/spdx-licenses/issues",
  713. "source": "https://github.com/composer/spdx-licenses/tree/1.5.7"
  714. },
  715. "funding": [
  716. {
  717. "url": "https://packagist.com",
  718. "type": "custom"
  719. },
  720. {
  721. "url": "https://github.com/composer",
  722. "type": "github"
  723. },
  724. {
  725. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  726. "type": "tidelift"
  727. }
  728. ],
  729. "time": "2022-05-23T07:37:50+00:00"
  730. },
  731. {
  732. "name": "composer/xdebug-handler",
  733. "version": "3.0.3",
  734. "source": {
  735. "type": "git",
  736. "url": "https://github.com/composer/xdebug-handler.git",
  737. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  738. },
  739. "dist": {
  740. "type": "zip",
  741. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  742. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  743. "shasum": "",
  744. "mirrors": [
  745. {
  746. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  747. "preferred": true
  748. }
  749. ]
  750. },
  751. "require": {
  752. "composer/pcre": "^1 || ^2 || ^3",
  753. "php": "^7.2.5 || ^8.0",
  754. "psr/log": "^1 || ^2 || ^3"
  755. },
  756. "require-dev": {
  757. "phpstan/phpstan": "^1.0",
  758. "phpstan/phpstan-strict-rules": "^1.1",
  759. "symfony/phpunit-bridge": "^6.0"
  760. },
  761. "type": "library",
  762. "autoload": {
  763. "psr-4": {
  764. "Composer\\XdebugHandler\\": "src"
  765. }
  766. },
  767. "notification-url": "https://packagist.org/downloads/",
  768. "license": [
  769. "MIT"
  770. ],
  771. "authors": [
  772. {
  773. "name": "John Stevenson",
  774. "email": "john-stevenson@blueyonder.co.uk"
  775. }
  776. ],
  777. "description": "Restarts a process without Xdebug.",
  778. "keywords": [
  779. "Xdebug",
  780. "performance"
  781. ],
  782. "support": {
  783. "irc": "irc://irc.freenode.org/composer",
  784. "issues": "https://github.com/composer/xdebug-handler/issues",
  785. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  786. },
  787. "funding": [
  788. {
  789. "url": "https://packagist.com",
  790. "type": "custom"
  791. },
  792. {
  793. "url": "https://github.com/composer",
  794. "type": "github"
  795. },
  796. {
  797. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  798. "type": "tidelift"
  799. }
  800. ],
  801. "time": "2022-02-25T21:32:43+00:00"
  802. },
  803. {
  804. "name": "dasprid/enum",
  805. "version": "1.0.3",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/DASPRiD/Enum.git",
  809. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  814. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  815. "shasum": "",
  816. "mirrors": [
  817. {
  818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  819. "preferred": true
  820. }
  821. ]
  822. },
  823. "require-dev": {
  824. "phpunit/phpunit": "^7 | ^8 | ^9",
  825. "squizlabs/php_codesniffer": "^3.4"
  826. },
  827. "type": "library",
  828. "autoload": {
  829. "psr-4": {
  830. "DASPRiD\\Enum\\": "src/"
  831. }
  832. },
  833. "notification-url": "https://packagist.org/downloads/",
  834. "license": [
  835. "BSD-2-Clause"
  836. ],
  837. "authors": [
  838. {
  839. "name": "Ben Scholzen 'DASPRiD'",
  840. "email": "mail@dasprids.de",
  841. "homepage": "https://dasprids.de/",
  842. "role": "Developer"
  843. }
  844. ],
  845. "description": "PHP 7.1 enum implementation",
  846. "keywords": [
  847. "enum",
  848. "map"
  849. ],
  850. "support": {
  851. "issues": "https://github.com/DASPRiD/Enum/issues",
  852. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  853. },
  854. "time": "2020-10-02T16:03:48+00:00"
  855. },
  856. {
  857. "name": "dingo/api",
  858. "version": "v2.4.7",
  859. "source": {
  860. "type": "git",
  861. "url": "https://github.com/dingo/api.git",
  862. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3"
  863. },
  864. "dist": {
  865. "type": "zip",
  866. "url": "https://api.github.com/repos/dingo/api/zipball/669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  867. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  868. "shasum": "",
  869. "mirrors": [
  870. {
  871. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  872. "preferred": true
  873. }
  874. ]
  875. },
  876. "require": {
  877. "dingo/blueprint": "^0.3",
  878. "illuminate/routing": "^5.5 || ^6.0",
  879. "illuminate/support": "^5.5 || ^6.0",
  880. "league/fractal": "^0.17",
  881. "php": "^7.1"
  882. },
  883. "require-dev": {
  884. "friendsofphp/php-cs-fixer": "~2",
  885. "illuminate/auth": "^5.5 || ^6.0",
  886. "illuminate/cache": "^5.5 || ^6.0",
  887. "illuminate/console": "^5.5 || ^6.0",
  888. "illuminate/database": "^5.5 || ^6.0",
  889. "illuminate/events": "^5.5 || ^6.0",
  890. "illuminate/filesystem": "^5.5 || ^6.0",
  891. "illuminate/log": "^5.5 || ^6.0",
  892. "illuminate/pagination": "^5.5 || ^6.0",
  893. "laravel/lumen-framework": "^5.5 || ^6.0",
  894. "mockery/mockery": "~1.0",
  895. "phpdocumentor/reflection-docblock": "3.3.2",
  896. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  897. "squizlabs/php_codesniffer": "~2.0",
  898. "tymon/jwt-auth": "1.0.*"
  899. },
  900. "suggest": {
  901. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  902. },
  903. "type": "library",
  904. "extra": {
  905. "branch-alias": {
  906. "dev-master": "2.0-dev"
  907. },
  908. "laravel": {
  909. "providers": [
  910. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  911. ],
  912. "aliases": {
  913. "API": "Dingo\\Api\\Facade\\API"
  914. }
  915. }
  916. },
  917. "autoload": {
  918. "psr-4": {
  919. "Dingo\\Api\\": "src/"
  920. },
  921. "files": [
  922. "src/helpers.php"
  923. ]
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "BSD-3-Clause"
  928. ],
  929. "authors": [
  930. {
  931. "name": "Jason Lewis",
  932. "email": "jason.lewis1991@gmail.com"
  933. }
  934. ],
  935. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  936. "keywords": [
  937. "api",
  938. "dingo",
  939. "laravel",
  940. "restful"
  941. ],
  942. "support": {
  943. "issues": "https://github.com/dingo/api/issues",
  944. "source": "https://github.com/dingo/api/tree/v2"
  945. },
  946. "abandoned": "api-ecosystem-for-laravel/dingo-api",
  947. "time": "2020-03-19T01:36:11+00:00"
  948. },
  949. {
  950. "name": "dingo/blueprint",
  951. "version": "v0.3.1",
  952. "source": {
  953. "type": "git",
  954. "url": "https://github.com/dingo/blueprint.git",
  955. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396"
  956. },
  957. "dist": {
  958. "type": "zip",
  959. "url": "https://api.github.com/repos/dingo/blueprint/zipball/45bbc59385310de7604e35ea4e27dc1756be9396",
  960. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396",
  961. "shasum": "",
  962. "mirrors": [
  963. {
  964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  965. "preferred": true
  966. }
  967. ]
  968. },
  969. "require": {
  970. "doctrine/annotations": "~1.2",
  971. "illuminate/filesystem": "^5.5 || ^6.0",
  972. "illuminate/support": "^5.5 || ^6.0",
  973. "php": "^7.1",
  974. "phpdocumentor/reflection-docblock": "^3.1|^4.1"
  975. },
  976. "require-dev": {
  977. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  978. "squizlabs/php_codesniffer": "~2.0"
  979. },
  980. "type": "library",
  981. "extra": {
  982. "branch-alias": {
  983. "dev-master": "0.2-dev"
  984. }
  985. },
  986. "autoload": {
  987. "psr-4": {
  988. "Dingo\\Blueprint\\": "src"
  989. }
  990. },
  991. "notification-url": "https://packagist.org/downloads/",
  992. "license": [
  993. "BSD-3-Clause"
  994. ],
  995. "authors": [
  996. {
  997. "name": "Jason Lewis",
  998. "email": "jason.lewis1991@gmail.com"
  999. }
  1000. ],
  1001. "description": "API Blueprint documentation generator.",
  1002. "keywords": [
  1003. "api",
  1004. "blueprint",
  1005. "dingo",
  1006. "docs",
  1007. "laravel"
  1008. ],
  1009. "support": {
  1010. "issues": "https://github.com/dingo/blueprint/issues",
  1011. "source": "https://github.com/dingo/blueprint/tree/v3.0.1"
  1012. },
  1013. "time": "2019-10-07T10:14:17+00:00"
  1014. },
  1015. {
  1016. "name": "doctrine/annotations",
  1017. "version": "1.13.3",
  1018. "source": {
  1019. "type": "git",
  1020. "url": "https://github.com/doctrine/annotations.git",
  1021. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1022. },
  1023. "dist": {
  1024. "type": "zip",
  1025. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1026. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1027. "shasum": "",
  1028. "mirrors": [
  1029. {
  1030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1031. "preferred": true
  1032. }
  1033. ]
  1034. },
  1035. "require": {
  1036. "doctrine/lexer": "1.*",
  1037. "ext-tokenizer": "*",
  1038. "php": "^7.1 || ^8.0",
  1039. "psr/cache": "^1 || ^2 || ^3"
  1040. },
  1041. "require-dev": {
  1042. "doctrine/cache": "^1.11 || ^2.0",
  1043. "doctrine/coding-standard": "^6.0 || ^8.1",
  1044. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1045. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1046. "symfony/cache": "^4.4 || ^5.2",
  1047. "vimeo/psalm": "^4.10"
  1048. },
  1049. "type": "library",
  1050. "autoload": {
  1051. "psr-4": {
  1052. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1053. }
  1054. },
  1055. "notification-url": "https://packagist.org/downloads/",
  1056. "license": [
  1057. "MIT"
  1058. ],
  1059. "authors": [
  1060. {
  1061. "name": "Guilherme Blanco",
  1062. "email": "guilhermeblanco@gmail.com"
  1063. },
  1064. {
  1065. "name": "Roman Borschel",
  1066. "email": "roman@code-factory.org"
  1067. },
  1068. {
  1069. "name": "Benjamin Eberlei",
  1070. "email": "kontakt@beberlei.de"
  1071. },
  1072. {
  1073. "name": "Jonathan Wage",
  1074. "email": "jonwage@gmail.com"
  1075. },
  1076. {
  1077. "name": "Johannes Schmitt",
  1078. "email": "schmittjoh@gmail.com"
  1079. }
  1080. ],
  1081. "description": "Docblock Annotations Parser",
  1082. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1083. "keywords": [
  1084. "annotations",
  1085. "docblock",
  1086. "parser"
  1087. ],
  1088. "support": {
  1089. "issues": "https://github.com/doctrine/annotations/issues",
  1090. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1091. },
  1092. "time": "2022-07-02T10:48:51+00:00"
  1093. },
  1094. {
  1095. "name": "doctrine/cache",
  1096. "version": "2.2.0",
  1097. "source": {
  1098. "type": "git",
  1099. "url": "https://github.com/doctrine/cache.git",
  1100. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1101. },
  1102. "dist": {
  1103. "type": "zip",
  1104. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1105. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1106. "shasum": "",
  1107. "mirrors": [
  1108. {
  1109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1110. "preferred": true
  1111. }
  1112. ]
  1113. },
  1114. "require": {
  1115. "php": "~7.1 || ^8.0"
  1116. },
  1117. "conflict": {
  1118. "doctrine/common": ">2.2,<2.4"
  1119. },
  1120. "require-dev": {
  1121. "cache/integration-tests": "dev-master",
  1122. "doctrine/coding-standard": "^9",
  1123. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1124. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1125. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1126. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1127. },
  1128. "type": "library",
  1129. "autoload": {
  1130. "psr-4": {
  1131. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1132. }
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Guilherme Blanco",
  1141. "email": "guilhermeblanco@gmail.com"
  1142. },
  1143. {
  1144. "name": "Roman Borschel",
  1145. "email": "roman@code-factory.org"
  1146. },
  1147. {
  1148. "name": "Benjamin Eberlei",
  1149. "email": "kontakt@beberlei.de"
  1150. },
  1151. {
  1152. "name": "Jonathan Wage",
  1153. "email": "jonwage@gmail.com"
  1154. },
  1155. {
  1156. "name": "Johannes Schmitt",
  1157. "email": "schmittjoh@gmail.com"
  1158. }
  1159. ],
  1160. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1161. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1162. "keywords": [
  1163. "abstraction",
  1164. "apcu",
  1165. "cache",
  1166. "caching",
  1167. "couchdb",
  1168. "memcached",
  1169. "php",
  1170. "redis",
  1171. "xcache"
  1172. ],
  1173. "support": {
  1174. "issues": "https://github.com/doctrine/cache/issues",
  1175. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1176. },
  1177. "funding": [
  1178. {
  1179. "url": "https://www.doctrine-project.org/sponsorship.html",
  1180. "type": "custom"
  1181. },
  1182. {
  1183. "url": "https://www.patreon.com/phpdoctrine",
  1184. "type": "patreon"
  1185. },
  1186. {
  1187. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1188. "type": "tidelift"
  1189. }
  1190. ],
  1191. "time": "2022-05-20T20:07:39+00:00"
  1192. },
  1193. {
  1194. "name": "doctrine/dbal",
  1195. "version": "2.13.9",
  1196. "source": {
  1197. "type": "git",
  1198. "url": "https://github.com/doctrine/dbal.git",
  1199. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8"
  1200. },
  1201. "dist": {
  1202. "type": "zip",
  1203. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  1204. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  1205. "shasum": "",
  1206. "mirrors": [
  1207. {
  1208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1209. "preferred": true
  1210. }
  1211. ]
  1212. },
  1213. "require": {
  1214. "doctrine/cache": "^1.0|^2.0",
  1215. "doctrine/deprecations": "^0.5.3|^1",
  1216. "doctrine/event-manager": "^1.0",
  1217. "ext-pdo": "*",
  1218. "php": "^7.1 || ^8"
  1219. },
  1220. "require-dev": {
  1221. "doctrine/coding-standard": "9.0.0",
  1222. "jetbrains/phpstorm-stubs": "2021.1",
  1223. "phpstan/phpstan": "1.4.6",
  1224. "phpunit/phpunit": "^7.5.20|^8.5|9.5.16",
  1225. "psalm/plugin-phpunit": "0.16.1",
  1226. "squizlabs/php_codesniffer": "3.6.2",
  1227. "symfony/cache": "^4.4",
  1228. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  1229. "vimeo/psalm": "4.22.0"
  1230. },
  1231. "suggest": {
  1232. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1233. },
  1234. "bin": [
  1235. "bin/doctrine-dbal"
  1236. ],
  1237. "type": "library",
  1238. "autoload": {
  1239. "psr-4": {
  1240. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  1241. }
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Guilherme Blanco",
  1250. "email": "guilhermeblanco@gmail.com"
  1251. },
  1252. {
  1253. "name": "Roman Borschel",
  1254. "email": "roman@code-factory.org"
  1255. },
  1256. {
  1257. "name": "Benjamin Eberlei",
  1258. "email": "kontakt@beberlei.de"
  1259. },
  1260. {
  1261. "name": "Jonathan Wage",
  1262. "email": "jonwage@gmail.com"
  1263. }
  1264. ],
  1265. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1266. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1267. "keywords": [
  1268. "abstraction",
  1269. "database",
  1270. "db2",
  1271. "dbal",
  1272. "mariadb",
  1273. "mssql",
  1274. "mysql",
  1275. "oci8",
  1276. "oracle",
  1277. "pdo",
  1278. "pgsql",
  1279. "postgresql",
  1280. "queryobject",
  1281. "sasql",
  1282. "sql",
  1283. "sqlanywhere",
  1284. "sqlite",
  1285. "sqlserver",
  1286. "sqlsrv"
  1287. ],
  1288. "support": {
  1289. "issues": "https://github.com/doctrine/dbal/issues",
  1290. "source": "https://github.com/doctrine/dbal/tree/2.13.9"
  1291. },
  1292. "funding": [
  1293. {
  1294. "url": "https://www.doctrine-project.org/sponsorship.html",
  1295. "type": "custom"
  1296. },
  1297. {
  1298. "url": "https://www.patreon.com/phpdoctrine",
  1299. "type": "patreon"
  1300. },
  1301. {
  1302. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1303. "type": "tidelift"
  1304. }
  1305. ],
  1306. "time": "2022-05-02T20:28:55+00:00"
  1307. },
  1308. {
  1309. "name": "doctrine/deprecations",
  1310. "version": "v1.0.0",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/doctrine/deprecations.git",
  1314. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1319. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1320. "shasum": "",
  1321. "mirrors": [
  1322. {
  1323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1324. "preferred": true
  1325. }
  1326. ]
  1327. },
  1328. "require": {
  1329. "php": "^7.1|^8.0"
  1330. },
  1331. "require-dev": {
  1332. "doctrine/coding-standard": "^9",
  1333. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  1334. "psr/log": "^1|^2|^3"
  1335. },
  1336. "suggest": {
  1337. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1338. },
  1339. "type": "library",
  1340. "autoload": {
  1341. "psr-4": {
  1342. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1343. }
  1344. },
  1345. "notification-url": "https://packagist.org/downloads/",
  1346. "license": [
  1347. "MIT"
  1348. ],
  1349. "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.",
  1350. "homepage": "https://www.doctrine-project.org/",
  1351. "support": {
  1352. "issues": "https://github.com/doctrine/deprecations/issues",
  1353. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  1354. },
  1355. "time": "2022-05-02T15:47:09+00:00"
  1356. },
  1357. {
  1358. "name": "doctrine/event-manager",
  1359. "version": "1.1.1",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/doctrine/event-manager.git",
  1363. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1368. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1369. "shasum": "",
  1370. "mirrors": [
  1371. {
  1372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1373. "preferred": true
  1374. }
  1375. ]
  1376. },
  1377. "require": {
  1378. "php": "^7.1 || ^8.0"
  1379. },
  1380. "conflict": {
  1381. "doctrine/common": "<2.9@dev"
  1382. },
  1383. "require-dev": {
  1384. "doctrine/coding-standard": "^6.0",
  1385. "phpunit/phpunit": "^7.0"
  1386. },
  1387. "type": "library",
  1388. "extra": {
  1389. "branch-alias": {
  1390. "dev-master": "1.0.x-dev"
  1391. }
  1392. },
  1393. "autoload": {
  1394. "psr-4": {
  1395. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1396. }
  1397. },
  1398. "notification-url": "https://packagist.org/downloads/",
  1399. "license": [
  1400. "MIT"
  1401. ],
  1402. "authors": [
  1403. {
  1404. "name": "Guilherme Blanco",
  1405. "email": "guilhermeblanco@gmail.com"
  1406. },
  1407. {
  1408. "name": "Roman Borschel",
  1409. "email": "roman@code-factory.org"
  1410. },
  1411. {
  1412. "name": "Benjamin Eberlei",
  1413. "email": "kontakt@beberlei.de"
  1414. },
  1415. {
  1416. "name": "Jonathan Wage",
  1417. "email": "jonwage@gmail.com"
  1418. },
  1419. {
  1420. "name": "Johannes Schmitt",
  1421. "email": "schmittjoh@gmail.com"
  1422. },
  1423. {
  1424. "name": "Marco Pivetta",
  1425. "email": "ocramius@gmail.com"
  1426. }
  1427. ],
  1428. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1429. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1430. "keywords": [
  1431. "event",
  1432. "event dispatcher",
  1433. "event manager",
  1434. "event system",
  1435. "events"
  1436. ],
  1437. "support": {
  1438. "issues": "https://github.com/doctrine/event-manager/issues",
  1439. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1440. },
  1441. "funding": [
  1442. {
  1443. "url": "https://www.doctrine-project.org/sponsorship.html",
  1444. "type": "custom"
  1445. },
  1446. {
  1447. "url": "https://www.patreon.com/phpdoctrine",
  1448. "type": "patreon"
  1449. },
  1450. {
  1451. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1452. "type": "tidelift"
  1453. }
  1454. ],
  1455. "time": "2020-05-29T18:28:51+00:00"
  1456. },
  1457. {
  1458. "name": "doctrine/inflector",
  1459. "version": "2.0.4",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "https://github.com/doctrine/inflector.git",
  1463. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1468. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1469. "shasum": "",
  1470. "mirrors": [
  1471. {
  1472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1473. "preferred": true
  1474. }
  1475. ]
  1476. },
  1477. "require": {
  1478. "php": "^7.2 || ^8.0"
  1479. },
  1480. "require-dev": {
  1481. "doctrine/coding-standard": "^8.2",
  1482. "phpstan/phpstan": "^0.12",
  1483. "phpstan/phpstan-phpunit": "^0.12",
  1484. "phpstan/phpstan-strict-rules": "^0.12",
  1485. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1486. "vimeo/psalm": "^4.10"
  1487. },
  1488. "type": "library",
  1489. "autoload": {
  1490. "psr-4": {
  1491. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1492. }
  1493. },
  1494. "notification-url": "https://packagist.org/downloads/",
  1495. "license": [
  1496. "MIT"
  1497. ],
  1498. "authors": [
  1499. {
  1500. "name": "Guilherme Blanco",
  1501. "email": "guilhermeblanco@gmail.com"
  1502. },
  1503. {
  1504. "name": "Roman Borschel",
  1505. "email": "roman@code-factory.org"
  1506. },
  1507. {
  1508. "name": "Benjamin Eberlei",
  1509. "email": "kontakt@beberlei.de"
  1510. },
  1511. {
  1512. "name": "Jonathan Wage",
  1513. "email": "jonwage@gmail.com"
  1514. },
  1515. {
  1516. "name": "Johannes Schmitt",
  1517. "email": "schmittjoh@gmail.com"
  1518. }
  1519. ],
  1520. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1521. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1522. "keywords": [
  1523. "inflection",
  1524. "inflector",
  1525. "lowercase",
  1526. "manipulation",
  1527. "php",
  1528. "plural",
  1529. "singular",
  1530. "strings",
  1531. "uppercase",
  1532. "words"
  1533. ],
  1534. "support": {
  1535. "issues": "https://github.com/doctrine/inflector/issues",
  1536. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1537. },
  1538. "funding": [
  1539. {
  1540. "url": "https://www.doctrine-project.org/sponsorship.html",
  1541. "type": "custom"
  1542. },
  1543. {
  1544. "url": "https://www.patreon.com/phpdoctrine",
  1545. "type": "patreon"
  1546. },
  1547. {
  1548. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1549. "type": "tidelift"
  1550. }
  1551. ],
  1552. "time": "2021-10-22T20:16:43+00:00"
  1553. },
  1554. {
  1555. "name": "doctrine/lexer",
  1556. "version": "1.2.3",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/doctrine/lexer.git",
  1560. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1565. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1566. "shasum": "",
  1567. "mirrors": [
  1568. {
  1569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1570. "preferred": true
  1571. }
  1572. ]
  1573. },
  1574. "require": {
  1575. "php": "^7.1 || ^8.0"
  1576. },
  1577. "require-dev": {
  1578. "doctrine/coding-standard": "^9.0",
  1579. "phpstan/phpstan": "^1.3",
  1580. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1581. "vimeo/psalm": "^4.11"
  1582. },
  1583. "type": "library",
  1584. "autoload": {
  1585. "psr-4": {
  1586. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1587. }
  1588. },
  1589. "notification-url": "https://packagist.org/downloads/",
  1590. "license": [
  1591. "MIT"
  1592. ],
  1593. "authors": [
  1594. {
  1595. "name": "Guilherme Blanco",
  1596. "email": "guilhermeblanco@gmail.com"
  1597. },
  1598. {
  1599. "name": "Roman Borschel",
  1600. "email": "roman@code-factory.org"
  1601. },
  1602. {
  1603. "name": "Johannes Schmitt",
  1604. "email": "schmittjoh@gmail.com"
  1605. }
  1606. ],
  1607. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1608. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1609. "keywords": [
  1610. "annotations",
  1611. "docblock",
  1612. "lexer",
  1613. "parser",
  1614. "php"
  1615. ],
  1616. "support": {
  1617. "issues": "https://github.com/doctrine/lexer/issues",
  1618. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1619. },
  1620. "funding": [
  1621. {
  1622. "url": "https://www.doctrine-project.org/sponsorship.html",
  1623. "type": "custom"
  1624. },
  1625. {
  1626. "url": "https://www.patreon.com/phpdoctrine",
  1627. "type": "patreon"
  1628. },
  1629. {
  1630. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1631. "type": "tidelift"
  1632. }
  1633. ],
  1634. "time": "2022-02-28T11:07:21+00:00"
  1635. },
  1636. {
  1637. "name": "dragonmantank/cron-expression",
  1638. "version": "v2.3.1",
  1639. "source": {
  1640. "type": "git",
  1641. "url": "https://github.com/dragonmantank/cron-expression.git",
  1642. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  1643. },
  1644. "dist": {
  1645. "type": "zip",
  1646. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  1647. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  1648. "shasum": "",
  1649. "mirrors": [
  1650. {
  1651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1652. "preferred": true
  1653. }
  1654. ]
  1655. },
  1656. "require": {
  1657. "php": "^7.0|^8.0"
  1658. },
  1659. "require-dev": {
  1660. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  1661. },
  1662. "type": "library",
  1663. "extra": {
  1664. "branch-alias": {
  1665. "dev-master": "2.3-dev"
  1666. }
  1667. },
  1668. "autoload": {
  1669. "psr-4": {
  1670. "Cron\\": "src/Cron/"
  1671. }
  1672. },
  1673. "notification-url": "https://packagist.org/downloads/",
  1674. "license": [
  1675. "MIT"
  1676. ],
  1677. "authors": [
  1678. {
  1679. "name": "Michael Dowling",
  1680. "email": "mtdowling@gmail.com",
  1681. "homepage": "https://github.com/mtdowling"
  1682. },
  1683. {
  1684. "name": "Chris Tankersley",
  1685. "email": "chris@ctankersley.com",
  1686. "homepage": "https://github.com/dragonmantank"
  1687. }
  1688. ],
  1689. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1690. "keywords": [
  1691. "cron",
  1692. "schedule"
  1693. ],
  1694. "support": {
  1695. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1696. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  1697. },
  1698. "funding": [
  1699. {
  1700. "url": "https://github.com/dragonmantank",
  1701. "type": "github"
  1702. }
  1703. ],
  1704. "time": "2020-10-13T00:52:37+00:00"
  1705. },
  1706. {
  1707. "name": "easywechat-composer/easywechat-composer",
  1708. "version": "1.4.1",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1712. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1717. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1718. "shasum": "",
  1719. "mirrors": [
  1720. {
  1721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1722. "preferred": true
  1723. }
  1724. ]
  1725. },
  1726. "require": {
  1727. "composer-plugin-api": "^1.0 || ^2.0",
  1728. "php": ">=7.0"
  1729. },
  1730. "require-dev": {
  1731. "composer/composer": "^1.0 || ^2.0",
  1732. "phpunit/phpunit": "^6.5 || ^7.0"
  1733. },
  1734. "type": "composer-plugin",
  1735. "extra": {
  1736. "class": "EasyWeChatComposer\\Plugin"
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "EasyWeChatComposer\\": "src/"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "张铭阳",
  1750. "email": "mingyoungcheung@gmail.com"
  1751. }
  1752. ],
  1753. "description": "The composer plugin for EasyWeChat",
  1754. "support": {
  1755. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1756. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1757. },
  1758. "time": "2021-07-05T04:03:22+00:00"
  1759. },
  1760. {
  1761. "name": "egulias/email-validator",
  1762. "version": "2.1.25",
  1763. "source": {
  1764. "type": "git",
  1765. "url": "https://github.com/egulias/EmailValidator.git",
  1766. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1767. },
  1768. "dist": {
  1769. "type": "zip",
  1770. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1771. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1772. "shasum": "",
  1773. "mirrors": [
  1774. {
  1775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1776. "preferred": true
  1777. }
  1778. ]
  1779. },
  1780. "require": {
  1781. "doctrine/lexer": "^1.0.1",
  1782. "php": ">=5.5",
  1783. "symfony/polyfill-intl-idn": "^1.10"
  1784. },
  1785. "require-dev": {
  1786. "dominicsayers/isemail": "^3.0.7",
  1787. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1788. "satooshi/php-coveralls": "^1.0.1"
  1789. },
  1790. "suggest": {
  1791. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1792. },
  1793. "type": "library",
  1794. "extra": {
  1795. "branch-alias": {
  1796. "dev-master": "2.1.x-dev"
  1797. }
  1798. },
  1799. "autoload": {
  1800. "psr-4": {
  1801. "Egulias\\EmailValidator\\": "src"
  1802. }
  1803. },
  1804. "notification-url": "https://packagist.org/downloads/",
  1805. "license": [
  1806. "MIT"
  1807. ],
  1808. "authors": [
  1809. {
  1810. "name": "Eduardo Gulias Davis"
  1811. }
  1812. ],
  1813. "description": "A library for validating emails against several RFCs",
  1814. "homepage": "https://github.com/egulias/EmailValidator",
  1815. "keywords": [
  1816. "email",
  1817. "emailvalidation",
  1818. "emailvalidator",
  1819. "validation",
  1820. "validator"
  1821. ],
  1822. "support": {
  1823. "issues": "https://github.com/egulias/EmailValidator/issues",
  1824. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1825. },
  1826. "funding": [
  1827. {
  1828. "url": "https://github.com/egulias",
  1829. "type": "github"
  1830. }
  1831. ],
  1832. "time": "2020-12-29T14:50:06+00:00"
  1833. },
  1834. {
  1835. "name": "endroid/qr-code",
  1836. "version": "3.9.7",
  1837. "source": {
  1838. "type": "git",
  1839. "url": "https://github.com/endroid/qr-code.git",
  1840. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  1841. },
  1842. "dist": {
  1843. "type": "zip",
  1844. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1845. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1846. "shasum": "",
  1847. "mirrors": [
  1848. {
  1849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1850. "preferred": true
  1851. }
  1852. ]
  1853. },
  1854. "require": {
  1855. "bacon/bacon-qr-code": "^2.0",
  1856. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  1857. "myclabs/php-enum": "^1.5",
  1858. "php": "^7.3||^8.0",
  1859. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1860. "symfony/property-access": "^3.4||^4.4||^5.0"
  1861. },
  1862. "require-dev": {
  1863. "endroid/quality": "^1.5.2",
  1864. "setasign/fpdf": "^1.8"
  1865. },
  1866. "suggest": {
  1867. "ext-gd": "Required for generating PNG images",
  1868. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1869. "setasign/fpdf": "Required to use the FPDF writer.",
  1870. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1871. },
  1872. "type": "library",
  1873. "extra": {
  1874. "branch-alias": {
  1875. "dev-master": "3.x-dev"
  1876. }
  1877. },
  1878. "autoload": {
  1879. "psr-4": {
  1880. "Endroid\\QrCode\\": "src/"
  1881. }
  1882. },
  1883. "notification-url": "https://packagist.org/downloads/",
  1884. "license": [
  1885. "MIT"
  1886. ],
  1887. "authors": [
  1888. {
  1889. "name": "Jeroen van den Enden",
  1890. "email": "info@endroid.nl"
  1891. }
  1892. ],
  1893. "description": "Endroid QR Code",
  1894. "homepage": "https://github.com/endroid/qr-code",
  1895. "keywords": [
  1896. "bundle",
  1897. "code",
  1898. "endroid",
  1899. "php",
  1900. "qr",
  1901. "qrcode"
  1902. ],
  1903. "support": {
  1904. "issues": "https://github.com/endroid/qr-code/issues",
  1905. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1906. },
  1907. "funding": [
  1908. {
  1909. "url": "https://github.com/endroid",
  1910. "type": "github"
  1911. }
  1912. ],
  1913. "time": "2021-04-20T19:10:54+00:00"
  1914. },
  1915. {
  1916. "name": "ezyang/htmlpurifier",
  1917. "version": "v4.16.0",
  1918. "source": {
  1919. "type": "git",
  1920. "url": "https://github.com/ezyang/htmlpurifier.git",
  1921. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1922. },
  1923. "dist": {
  1924. "type": "zip",
  1925. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1926. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1927. "shasum": "",
  1928. "mirrors": [
  1929. {
  1930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1931. "preferred": true
  1932. }
  1933. ]
  1934. },
  1935. "require": {
  1936. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  1937. },
  1938. "require-dev": {
  1939. "cerdic/css-tidy": "^1.7 || ^2.0",
  1940. "simpletest/simpletest": "dev-master"
  1941. },
  1942. "suggest": {
  1943. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1944. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1945. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1946. "ext-tidy": "Used for pretty-printing HTML"
  1947. },
  1948. "type": "library",
  1949. "autoload": {
  1950. "files": [
  1951. "library/HTMLPurifier.composer.php"
  1952. ],
  1953. "psr-0": {
  1954. "HTMLPurifier": "library/"
  1955. },
  1956. "exclude-from-classmap": [
  1957. "/library/HTMLPurifier/Language/"
  1958. ]
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "LGPL-2.1-or-later"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "Edward Z. Yang",
  1967. "email": "admin@htmlpurifier.org",
  1968. "homepage": "http://ezyang.com"
  1969. }
  1970. ],
  1971. "description": "Standards compliant HTML filter written in PHP",
  1972. "homepage": "http://htmlpurifier.org/",
  1973. "keywords": [
  1974. "html"
  1975. ],
  1976. "support": {
  1977. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1978. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1979. },
  1980. "time": "2022-09-18T07:06:19+00:00"
  1981. },
  1982. {
  1983. "name": "guzzlehttp/guzzle",
  1984. "version": "6.5.8",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/guzzle/guzzle.git",
  1988. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  1993. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  1994. "shasum": "",
  1995. "mirrors": [
  1996. {
  1997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1998. "preferred": true
  1999. }
  2000. ]
  2001. },
  2002. "require": {
  2003. "ext-json": "*",
  2004. "guzzlehttp/promises": "^1.0",
  2005. "guzzlehttp/psr7": "^1.9",
  2006. "php": ">=5.5",
  2007. "symfony/polyfill-intl-idn": "^1.17"
  2008. },
  2009. "require-dev": {
  2010. "ext-curl": "*",
  2011. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  2012. "psr/log": "^1.1"
  2013. },
  2014. "suggest": {
  2015. "psr/log": "Required for using the Log middleware"
  2016. },
  2017. "type": "library",
  2018. "extra": {
  2019. "branch-alias": {
  2020. "dev-master": "6.5-dev"
  2021. }
  2022. },
  2023. "autoload": {
  2024. "files": [
  2025. "src/functions_include.php"
  2026. ],
  2027. "psr-4": {
  2028. "GuzzleHttp\\": "src/"
  2029. }
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "MIT"
  2034. ],
  2035. "authors": [
  2036. {
  2037. "name": "Graham Campbell",
  2038. "email": "hello@gjcampbell.co.uk",
  2039. "homepage": "https://github.com/GrahamCampbell"
  2040. },
  2041. {
  2042. "name": "Michael Dowling",
  2043. "email": "mtdowling@gmail.com",
  2044. "homepage": "https://github.com/mtdowling"
  2045. },
  2046. {
  2047. "name": "Jeremy Lindblom",
  2048. "email": "jeremeamia@gmail.com",
  2049. "homepage": "https://github.com/jeremeamia"
  2050. },
  2051. {
  2052. "name": "George Mponos",
  2053. "email": "gmponos@gmail.com",
  2054. "homepage": "https://github.com/gmponos"
  2055. },
  2056. {
  2057. "name": "Tobias Nyholm",
  2058. "email": "tobias.nyholm@gmail.com",
  2059. "homepage": "https://github.com/Nyholm"
  2060. },
  2061. {
  2062. "name": "Márk Sági-Kazár",
  2063. "email": "mark.sagikazar@gmail.com",
  2064. "homepage": "https://github.com/sagikazarmark"
  2065. },
  2066. {
  2067. "name": "Tobias Schultze",
  2068. "email": "webmaster@tubo-world.de",
  2069. "homepage": "https://github.com/Tobion"
  2070. }
  2071. ],
  2072. "description": "Guzzle is a PHP HTTP client library",
  2073. "homepage": "http://guzzlephp.org/",
  2074. "keywords": [
  2075. "client",
  2076. "curl",
  2077. "framework",
  2078. "http",
  2079. "http client",
  2080. "rest",
  2081. "web service"
  2082. ],
  2083. "support": {
  2084. "issues": "https://github.com/guzzle/guzzle/issues",
  2085. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  2086. },
  2087. "funding": [
  2088. {
  2089. "url": "https://github.com/GrahamCampbell",
  2090. "type": "github"
  2091. },
  2092. {
  2093. "url": "https://github.com/Nyholm",
  2094. "type": "github"
  2095. },
  2096. {
  2097. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2098. "type": "tidelift"
  2099. }
  2100. ],
  2101. "time": "2022-06-20T22:16:07+00:00"
  2102. },
  2103. {
  2104. "name": "guzzlehttp/promises",
  2105. "version": "1.5.2",
  2106. "source": {
  2107. "type": "git",
  2108. "url": "https://github.com/guzzle/promises.git",
  2109. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  2110. },
  2111. "dist": {
  2112. "type": "zip",
  2113. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  2114. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  2115. "shasum": "",
  2116. "mirrors": [
  2117. {
  2118. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2119. "preferred": true
  2120. }
  2121. ]
  2122. },
  2123. "require": {
  2124. "php": ">=5.5"
  2125. },
  2126. "require-dev": {
  2127. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2128. },
  2129. "type": "library",
  2130. "extra": {
  2131. "branch-alias": {
  2132. "dev-master": "1.5-dev"
  2133. }
  2134. },
  2135. "autoload": {
  2136. "files": [
  2137. "src/functions_include.php"
  2138. ],
  2139. "psr-4": {
  2140. "GuzzleHttp\\Promise\\": "src/"
  2141. }
  2142. },
  2143. "notification-url": "https://packagist.org/downloads/",
  2144. "license": [
  2145. "MIT"
  2146. ],
  2147. "authors": [
  2148. {
  2149. "name": "Graham Campbell",
  2150. "email": "hello@gjcampbell.co.uk",
  2151. "homepage": "https://github.com/GrahamCampbell"
  2152. },
  2153. {
  2154. "name": "Michael Dowling",
  2155. "email": "mtdowling@gmail.com",
  2156. "homepage": "https://github.com/mtdowling"
  2157. },
  2158. {
  2159. "name": "Tobias Nyholm",
  2160. "email": "tobias.nyholm@gmail.com",
  2161. "homepage": "https://github.com/Nyholm"
  2162. },
  2163. {
  2164. "name": "Tobias Schultze",
  2165. "email": "webmaster@tubo-world.de",
  2166. "homepage": "https://github.com/Tobion"
  2167. }
  2168. ],
  2169. "description": "Guzzle promises library",
  2170. "keywords": [
  2171. "promise"
  2172. ],
  2173. "support": {
  2174. "issues": "https://github.com/guzzle/promises/issues",
  2175. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  2176. },
  2177. "funding": [
  2178. {
  2179. "url": "https://github.com/GrahamCampbell",
  2180. "type": "github"
  2181. },
  2182. {
  2183. "url": "https://github.com/Nyholm",
  2184. "type": "github"
  2185. },
  2186. {
  2187. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2188. "type": "tidelift"
  2189. }
  2190. ],
  2191. "time": "2022-08-28T14:55:35+00:00"
  2192. },
  2193. {
  2194. "name": "guzzlehttp/psr7",
  2195. "version": "1.9.0",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/guzzle/psr7.git",
  2199. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  2204. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  2205. "shasum": "",
  2206. "mirrors": [
  2207. {
  2208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2209. "preferred": true
  2210. }
  2211. ]
  2212. },
  2213. "require": {
  2214. "php": ">=5.4.0",
  2215. "psr/http-message": "~1.0",
  2216. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  2217. },
  2218. "provide": {
  2219. "psr/http-message-implementation": "1.0"
  2220. },
  2221. "require-dev": {
  2222. "ext-zlib": "*",
  2223. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  2224. },
  2225. "suggest": {
  2226. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2227. },
  2228. "type": "library",
  2229. "extra": {
  2230. "branch-alias": {
  2231. "dev-master": "1.9-dev"
  2232. }
  2233. },
  2234. "autoload": {
  2235. "files": [
  2236. "src/functions_include.php"
  2237. ],
  2238. "psr-4": {
  2239. "GuzzleHttp\\Psr7\\": "src/"
  2240. }
  2241. },
  2242. "notification-url": "https://packagist.org/downloads/",
  2243. "license": [
  2244. "MIT"
  2245. ],
  2246. "authors": [
  2247. {
  2248. "name": "Graham Campbell",
  2249. "email": "hello@gjcampbell.co.uk",
  2250. "homepage": "https://github.com/GrahamCampbell"
  2251. },
  2252. {
  2253. "name": "Michael Dowling",
  2254. "email": "mtdowling@gmail.com",
  2255. "homepage": "https://github.com/mtdowling"
  2256. },
  2257. {
  2258. "name": "George Mponos",
  2259. "email": "gmponos@gmail.com",
  2260. "homepage": "https://github.com/gmponos"
  2261. },
  2262. {
  2263. "name": "Tobias Nyholm",
  2264. "email": "tobias.nyholm@gmail.com",
  2265. "homepage": "https://github.com/Nyholm"
  2266. },
  2267. {
  2268. "name": "Márk Sági-Kazár",
  2269. "email": "mark.sagikazar@gmail.com",
  2270. "homepage": "https://github.com/sagikazarmark"
  2271. },
  2272. {
  2273. "name": "Tobias Schultze",
  2274. "email": "webmaster@tubo-world.de",
  2275. "homepage": "https://github.com/Tobion"
  2276. }
  2277. ],
  2278. "description": "PSR-7 message implementation that also provides common utility methods",
  2279. "keywords": [
  2280. "http",
  2281. "message",
  2282. "psr-7",
  2283. "request",
  2284. "response",
  2285. "stream",
  2286. "uri",
  2287. "url"
  2288. ],
  2289. "support": {
  2290. "issues": "https://github.com/guzzle/psr7/issues",
  2291. "source": "https://github.com/guzzle/psr7/tree/1.9.0"
  2292. },
  2293. "funding": [
  2294. {
  2295. "url": "https://github.com/GrahamCampbell",
  2296. "type": "github"
  2297. },
  2298. {
  2299. "url": "https://github.com/Nyholm",
  2300. "type": "github"
  2301. },
  2302. {
  2303. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2304. "type": "tidelift"
  2305. }
  2306. ],
  2307. "time": "2022-06-20T21:43:03+00:00"
  2308. },
  2309. {
  2310. "name": "illuminate/auth",
  2311. "version": "v6.20.44",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/illuminate/auth.git",
  2315. "reference": "7d18c9aa6507e0c0ab6ae1764c214f2461b05e16"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/illuminate/auth/zipball/7d18c9aa6507e0c0ab6ae1764c214f2461b05e16",
  2320. "reference": "7d18c9aa6507e0c0ab6ae1764c214f2461b05e16",
  2321. "shasum": "",
  2322. "mirrors": [
  2323. {
  2324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2325. "preferred": true
  2326. }
  2327. ]
  2328. },
  2329. "require": {
  2330. "illuminate/contracts": "^6.0",
  2331. "illuminate/http": "^6.0",
  2332. "illuminate/queue": "^6.0",
  2333. "illuminate/support": "^6.0",
  2334. "php": "^7.2.5|^8.0"
  2335. },
  2336. "suggest": {
  2337. "illuminate/console": "Required to use the auth:clear-resets command (^6.0).",
  2338. "illuminate/queue": "Required to fire login / logout events (^6.0).",
  2339. "illuminate/session": "Required to use the session based guard (^6.0)."
  2340. },
  2341. "type": "library",
  2342. "extra": {
  2343. "branch-alias": {
  2344. "dev-master": "6.x-dev"
  2345. }
  2346. },
  2347. "autoload": {
  2348. "psr-4": {
  2349. "Illuminate\\Auth\\": ""
  2350. }
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "MIT"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "Taylor Otwell",
  2359. "email": "taylor@laravel.com"
  2360. }
  2361. ],
  2362. "description": "The Illuminate Auth package.",
  2363. "homepage": "https://laravel.com",
  2364. "support": {
  2365. "issues": "https://github.com/laravel/framework/issues",
  2366. "source": "https://github.com/laravel/framework"
  2367. },
  2368. "time": "2020-10-27T15:05:51+00:00"
  2369. },
  2370. {
  2371. "name": "illuminate/broadcasting",
  2372. "version": "v6.20.44",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/illuminate/broadcasting.git",
  2376. "reference": "e176ec6c65fb4f9d62e501619a361fe5989123d0"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/e176ec6c65fb4f9d62e501619a361fe5989123d0",
  2381. "reference": "e176ec6c65fb4f9d62e501619a361fe5989123d0",
  2382. "shasum": "",
  2383. "mirrors": [
  2384. {
  2385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2386. "preferred": true
  2387. }
  2388. ]
  2389. },
  2390. "require": {
  2391. "ext-json": "*",
  2392. "illuminate/bus": "^6.0",
  2393. "illuminate/contracts": "^6.0",
  2394. "illuminate/queue": "^6.0",
  2395. "illuminate/support": "^6.0",
  2396. "php": "^7.2.5|^8.0",
  2397. "psr/log": "^1.0"
  2398. },
  2399. "suggest": {
  2400. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0)."
  2401. },
  2402. "type": "library",
  2403. "extra": {
  2404. "branch-alias": {
  2405. "dev-master": "6.x-dev"
  2406. }
  2407. },
  2408. "autoload": {
  2409. "psr-4": {
  2410. "Illuminate\\Broadcasting\\": ""
  2411. }
  2412. },
  2413. "notification-url": "https://packagist.org/downloads/",
  2414. "license": [
  2415. "MIT"
  2416. ],
  2417. "authors": [
  2418. {
  2419. "name": "Taylor Otwell",
  2420. "email": "taylor@laravel.com"
  2421. }
  2422. ],
  2423. "description": "The Illuminate Broadcasting package.",
  2424. "homepage": "https://laravel.com",
  2425. "support": {
  2426. "issues": "https://github.com/laravel/framework/issues",
  2427. "source": "https://github.com/laravel/framework"
  2428. },
  2429. "time": "2020-11-19T14:10:44+00:00"
  2430. },
  2431. {
  2432. "name": "illuminate/bus",
  2433. "version": "v6.20.44",
  2434. "source": {
  2435. "type": "git",
  2436. "url": "https://github.com/illuminate/bus.git",
  2437. "reference": "107fd91aa7bc121fef8b43fb51a5bdee19e77e94"
  2438. },
  2439. "dist": {
  2440. "type": "zip",
  2441. "url": "https://api.github.com/repos/illuminate/bus/zipball/107fd91aa7bc121fef8b43fb51a5bdee19e77e94",
  2442. "reference": "107fd91aa7bc121fef8b43fb51a5bdee19e77e94",
  2443. "shasum": "",
  2444. "mirrors": [
  2445. {
  2446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2447. "preferred": true
  2448. }
  2449. ]
  2450. },
  2451. "require": {
  2452. "illuminate/contracts": "^6.0",
  2453. "illuminate/pipeline": "^6.0",
  2454. "illuminate/support": "^6.0",
  2455. "php": "^7.2.5|^8.0"
  2456. },
  2457. "type": "library",
  2458. "extra": {
  2459. "branch-alias": {
  2460. "dev-master": "6.x-dev"
  2461. }
  2462. },
  2463. "autoload": {
  2464. "psr-4": {
  2465. "Illuminate\\Bus\\": ""
  2466. }
  2467. },
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "MIT"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "Taylor Otwell",
  2475. "email": "taylor@laravel.com"
  2476. }
  2477. ],
  2478. "description": "The Illuminate Bus package.",
  2479. "homepage": "https://laravel.com",
  2480. "support": {
  2481. "issues": "https://github.com/laravel/framework/issues",
  2482. "source": "https://github.com/laravel/framework"
  2483. },
  2484. "time": "2020-10-27T15:05:51+00:00"
  2485. },
  2486. {
  2487. "name": "illuminate/cache",
  2488. "version": "v6.20.44",
  2489. "source": {
  2490. "type": "git",
  2491. "url": "https://github.com/illuminate/cache.git",
  2492. "reference": "e2a8b917575fa7da7f6a5dac0d51da4b78b20090"
  2493. },
  2494. "dist": {
  2495. "type": "zip",
  2496. "url": "https://api.github.com/repos/illuminate/cache/zipball/e2a8b917575fa7da7f6a5dac0d51da4b78b20090",
  2497. "reference": "e2a8b917575fa7da7f6a5dac0d51da4b78b20090",
  2498. "shasum": "",
  2499. "mirrors": [
  2500. {
  2501. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2502. "preferred": true
  2503. }
  2504. ]
  2505. },
  2506. "require": {
  2507. "illuminate/contracts": "^6.0",
  2508. "illuminate/support": "^6.0",
  2509. "php": "^7.2.5|^8.0"
  2510. },
  2511. "suggest": {
  2512. "ext-memcached": "Required to use the memcache cache driver.",
  2513. "illuminate/database": "Required to use the database cache driver (^6.0).",
  2514. "illuminate/filesystem": "Required to use the file cache driver (^6.0).",
  2515. "illuminate/redis": "Required to use the redis cache driver (^6.0).",
  2516. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4)."
  2517. },
  2518. "type": "library",
  2519. "extra": {
  2520. "branch-alias": {
  2521. "dev-master": "6.x-dev"
  2522. }
  2523. },
  2524. "autoload": {
  2525. "psr-4": {
  2526. "Illuminate\\Cache\\": ""
  2527. }
  2528. },
  2529. "notification-url": "https://packagist.org/downloads/",
  2530. "license": [
  2531. "MIT"
  2532. ],
  2533. "authors": [
  2534. {
  2535. "name": "Taylor Otwell",
  2536. "email": "taylor@laravel.com"
  2537. }
  2538. ],
  2539. "description": "The Illuminate Cache package.",
  2540. "homepage": "https://laravel.com",
  2541. "support": {
  2542. "issues": "https://github.com/laravel/framework/issues",
  2543. "source": "https://github.com/laravel/framework"
  2544. },
  2545. "time": "2021-12-01T12:53:22+00:00"
  2546. },
  2547. {
  2548. "name": "illuminate/config",
  2549. "version": "v6.20.44",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://github.com/illuminate/config.git",
  2553. "reference": "e52084805fcfc0d36f891121dd14c64ce388a892"
  2554. },
  2555. "dist": {
  2556. "type": "zip",
  2557. "url": "https://api.github.com/repos/illuminate/config/zipball/e52084805fcfc0d36f891121dd14c64ce388a892",
  2558. "reference": "e52084805fcfc0d36f891121dd14c64ce388a892",
  2559. "shasum": "",
  2560. "mirrors": [
  2561. {
  2562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2563. "preferred": true
  2564. }
  2565. ]
  2566. },
  2567. "require": {
  2568. "illuminate/contracts": "^6.0",
  2569. "illuminate/support": "^6.0",
  2570. "php": "^7.2.5|^8.0"
  2571. },
  2572. "type": "library",
  2573. "extra": {
  2574. "branch-alias": {
  2575. "dev-master": "6.x-dev"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "psr-4": {
  2580. "Illuminate\\Config\\": ""
  2581. }
  2582. },
  2583. "notification-url": "https://packagist.org/downloads/",
  2584. "license": [
  2585. "MIT"
  2586. ],
  2587. "authors": [
  2588. {
  2589. "name": "Taylor Otwell",
  2590. "email": "taylor@laravel.com"
  2591. }
  2592. ],
  2593. "description": "The Illuminate Config package.",
  2594. "homepage": "https://laravel.com",
  2595. "support": {
  2596. "issues": "https://github.com/laravel/framework/issues",
  2597. "source": "https://github.com/laravel/framework"
  2598. },
  2599. "time": "2020-10-27T15:05:51+00:00"
  2600. },
  2601. {
  2602. "name": "illuminate/console",
  2603. "version": "v6.20.44",
  2604. "source": {
  2605. "type": "git",
  2606. "url": "https://github.com/illuminate/console.git",
  2607. "reference": "ab9e7fdececbdaedbc8594c211d00c18e9f98948"
  2608. },
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://api.github.com/repos/illuminate/console/zipball/ab9e7fdececbdaedbc8594c211d00c18e9f98948",
  2612. "reference": "ab9e7fdececbdaedbc8594c211d00c18e9f98948",
  2613. "shasum": "",
  2614. "mirrors": [
  2615. {
  2616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2617. "preferred": true
  2618. }
  2619. ]
  2620. },
  2621. "require": {
  2622. "illuminate/contracts": "^6.0",
  2623. "illuminate/support": "^6.0",
  2624. "php": "^7.2.5|^8.0",
  2625. "symfony/console": "^4.3.4",
  2626. "symfony/process": "^4.3.4"
  2627. },
  2628. "suggest": {
  2629. "dragonmantank/cron-expression": "Required to use scheduler (^2.3.1).",
  2630. "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^6.3.1|^7.0.1).",
  2631. "illuminate/bus": "Required to use the scheduled job dispatcher (^6.0)",
  2632. "illuminate/container": "Required to use the scheduler (^6.0)",
  2633. "illuminate/filesystem": "Required to use the generator command (^6.0)",
  2634. "illuminate/queue": "Required to use closures for scheduled jobs (^6.0)"
  2635. },
  2636. "type": "library",
  2637. "extra": {
  2638. "branch-alias": {
  2639. "dev-master": "6.x-dev"
  2640. }
  2641. },
  2642. "autoload": {
  2643. "psr-4": {
  2644. "Illuminate\\Console\\": ""
  2645. }
  2646. },
  2647. "notification-url": "https://packagist.org/downloads/",
  2648. "license": [
  2649. "MIT"
  2650. ],
  2651. "authors": [
  2652. {
  2653. "name": "Taylor Otwell",
  2654. "email": "taylor@laravel.com"
  2655. }
  2656. ],
  2657. "description": "The Illuminate Console package.",
  2658. "homepage": "https://laravel.com",
  2659. "support": {
  2660. "issues": "https://github.com/laravel/framework/issues",
  2661. "source": "https://github.com/laravel/framework"
  2662. },
  2663. "time": "2021-12-09T12:55:48+00:00"
  2664. },
  2665. {
  2666. "name": "illuminate/container",
  2667. "version": "v6.20.44",
  2668. "source": {
  2669. "type": "git",
  2670. "url": "https://github.com/illuminate/container.git",
  2671. "reference": "a3bf42e3cd9956774d5f8b0b7bbb612ed289e910"
  2672. },
  2673. "dist": {
  2674. "type": "zip",
  2675. "url": "https://api.github.com/repos/illuminate/container/zipball/a3bf42e3cd9956774d5f8b0b7bbb612ed289e910",
  2676. "reference": "a3bf42e3cd9956774d5f8b0b7bbb612ed289e910",
  2677. "shasum": "",
  2678. "mirrors": [
  2679. {
  2680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2681. "preferred": true
  2682. }
  2683. ]
  2684. },
  2685. "require": {
  2686. "illuminate/contracts": "^6.0",
  2687. "php": "^7.2.5|^8.0",
  2688. "psr/container": "^1.0"
  2689. },
  2690. "type": "library",
  2691. "extra": {
  2692. "branch-alias": {
  2693. "dev-master": "6.x-dev"
  2694. }
  2695. },
  2696. "autoload": {
  2697. "psr-4": {
  2698. "Illuminate\\Container\\": ""
  2699. }
  2700. },
  2701. "notification-url": "https://packagist.org/downloads/",
  2702. "license": [
  2703. "MIT"
  2704. ],
  2705. "authors": [
  2706. {
  2707. "name": "Taylor Otwell",
  2708. "email": "taylor@laravel.com"
  2709. }
  2710. ],
  2711. "description": "The Illuminate Container package.",
  2712. "homepage": "https://laravel.com",
  2713. "support": {
  2714. "issues": "https://github.com/laravel/framework/issues",
  2715. "source": "https://github.com/laravel/framework"
  2716. },
  2717. "time": "2021-09-09T13:53:17+00:00"
  2718. },
  2719. {
  2720. "name": "illuminate/contracts",
  2721. "version": "v6.20.44",
  2722. "source": {
  2723. "type": "git",
  2724. "url": "https://github.com/illuminate/contracts.git",
  2725. "reference": "2aeb1ea8985f7a79abaf7186234c94b543a04165"
  2726. },
  2727. "dist": {
  2728. "type": "zip",
  2729. "url": "https://api.github.com/repos/illuminate/contracts/zipball/2aeb1ea8985f7a79abaf7186234c94b543a04165",
  2730. "reference": "2aeb1ea8985f7a79abaf7186234c94b543a04165",
  2731. "shasum": "",
  2732. "mirrors": [
  2733. {
  2734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2735. "preferred": true
  2736. }
  2737. ]
  2738. },
  2739. "require": {
  2740. "php": "^7.2.5|^8.0",
  2741. "psr/container": "^1.0",
  2742. "psr/simple-cache": "^1.0"
  2743. },
  2744. "type": "library",
  2745. "extra": {
  2746. "branch-alias": {
  2747. "dev-master": "6.x-dev"
  2748. }
  2749. },
  2750. "autoload": {
  2751. "psr-4": {
  2752. "Illuminate\\Contracts\\": ""
  2753. }
  2754. },
  2755. "notification-url": "https://packagist.org/downloads/",
  2756. "license": [
  2757. "MIT"
  2758. ],
  2759. "authors": [
  2760. {
  2761. "name": "Taylor Otwell",
  2762. "email": "taylor@laravel.com"
  2763. }
  2764. ],
  2765. "description": "The Illuminate Contracts package.",
  2766. "homepage": "https://laravel.com",
  2767. "support": {
  2768. "issues": "https://github.com/laravel/framework/issues",
  2769. "source": "https://github.com/laravel/framework"
  2770. },
  2771. "time": "2021-12-01T12:53:22+00:00"
  2772. },
  2773. {
  2774. "name": "illuminate/database",
  2775. "version": "v6.20.44",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/illuminate/database.git",
  2779. "reference": "8eb6281d4109cebc993e0d541b671c4cdb5b3f2e"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/illuminate/database/zipball/8eb6281d4109cebc993e0d541b671c4cdb5b3f2e",
  2784. "reference": "8eb6281d4109cebc993e0d541b671c4cdb5b3f2e",
  2785. "shasum": "",
  2786. "mirrors": [
  2787. {
  2788. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2789. "preferred": true
  2790. }
  2791. ]
  2792. },
  2793. "require": {
  2794. "ext-json": "*",
  2795. "illuminate/container": "^6.0",
  2796. "illuminate/contracts": "^6.0",
  2797. "illuminate/support": "^6.0",
  2798. "php": "^7.2.5|^8.0"
  2799. },
  2800. "suggest": {
  2801. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2802. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2803. "illuminate/console": "Required to use the database commands (^6.0).",
  2804. "illuminate/events": "Required to use the observers with Eloquent (^6.0).",
  2805. "illuminate/filesystem": "Required to use the migrations (^6.0).",
  2806. "illuminate/pagination": "Required to paginate the result set (^6.0).",
  2807. "symfony/finder": "Required to use Eloquent model factories (^4.3.4)."
  2808. },
  2809. "type": "library",
  2810. "extra": {
  2811. "branch-alias": {
  2812. "dev-master": "6.x-dev"
  2813. }
  2814. },
  2815. "autoload": {
  2816. "psr-4": {
  2817. "Illuminate\\Database\\": ""
  2818. }
  2819. },
  2820. "notification-url": "https://packagist.org/downloads/",
  2821. "license": [
  2822. "MIT"
  2823. ],
  2824. "authors": [
  2825. {
  2826. "name": "Taylor Otwell",
  2827. "email": "taylor@laravel.com"
  2828. }
  2829. ],
  2830. "description": "The Illuminate Database package.",
  2831. "homepage": "https://laravel.com",
  2832. "keywords": [
  2833. "database",
  2834. "laravel",
  2835. "orm",
  2836. "sql"
  2837. ],
  2838. "support": {
  2839. "issues": "https://github.com/laravel/framework/issues",
  2840. "source": "https://github.com/laravel/framework"
  2841. },
  2842. "time": "2021-12-06T14:14:42+00:00"
  2843. },
  2844. {
  2845. "name": "illuminate/encryption",
  2846. "version": "v6.20.44",
  2847. "source": {
  2848. "type": "git",
  2849. "url": "https://github.com/illuminate/encryption.git",
  2850. "reference": "b31fbb8e8625c69c969a84482fbe395a59db4ae4"
  2851. },
  2852. "dist": {
  2853. "type": "zip",
  2854. "url": "https://api.github.com/repos/illuminate/encryption/zipball/b31fbb8e8625c69c969a84482fbe395a59db4ae4",
  2855. "reference": "b31fbb8e8625c69c969a84482fbe395a59db4ae4",
  2856. "shasum": "",
  2857. "mirrors": [
  2858. {
  2859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2860. "preferred": true
  2861. }
  2862. ]
  2863. },
  2864. "require": {
  2865. "ext-json": "*",
  2866. "ext-mbstring": "*",
  2867. "ext-openssl": "*",
  2868. "illuminate/contracts": "^6.0",
  2869. "illuminate/support": "^6.0",
  2870. "php": "^7.2.5|^8.0"
  2871. },
  2872. "type": "library",
  2873. "extra": {
  2874. "branch-alias": {
  2875. "dev-master": "6.x-dev"
  2876. }
  2877. },
  2878. "autoload": {
  2879. "psr-4": {
  2880. "Illuminate\\Encryption\\": ""
  2881. }
  2882. },
  2883. "notification-url": "https://packagist.org/downloads/",
  2884. "license": [
  2885. "MIT"
  2886. ],
  2887. "authors": [
  2888. {
  2889. "name": "Taylor Otwell",
  2890. "email": "taylor@laravel.com"
  2891. }
  2892. ],
  2893. "description": "The Illuminate Encryption package.",
  2894. "homepage": "https://laravel.com",
  2895. "support": {
  2896. "issues": "https://github.com/laravel/framework/issues",
  2897. "source": "https://github.com/laravel/framework"
  2898. },
  2899. "time": "2020-10-27T15:05:51+00:00"
  2900. },
  2901. {
  2902. "name": "illuminate/events",
  2903. "version": "v6.20.44",
  2904. "source": {
  2905. "type": "git",
  2906. "url": "https://github.com/illuminate/events.git",
  2907. "reference": "668581e3c31f9d499dc6919fe873003969a88e6c"
  2908. },
  2909. "dist": {
  2910. "type": "zip",
  2911. "url": "https://api.github.com/repos/illuminate/events/zipball/668581e3c31f9d499dc6919fe873003969a88e6c",
  2912. "reference": "668581e3c31f9d499dc6919fe873003969a88e6c",
  2913. "shasum": "",
  2914. "mirrors": [
  2915. {
  2916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2917. "preferred": true
  2918. }
  2919. ]
  2920. },
  2921. "require": {
  2922. "illuminate/container": "^6.0",
  2923. "illuminate/contracts": "^6.0",
  2924. "illuminate/support": "^6.0",
  2925. "php": "^7.2.5|^8.0"
  2926. },
  2927. "type": "library",
  2928. "extra": {
  2929. "branch-alias": {
  2930. "dev-master": "6.x-dev"
  2931. }
  2932. },
  2933. "autoload": {
  2934. "psr-4": {
  2935. "Illuminate\\Events\\": ""
  2936. }
  2937. },
  2938. "notification-url": "https://packagist.org/downloads/",
  2939. "license": [
  2940. "MIT"
  2941. ],
  2942. "authors": [
  2943. {
  2944. "name": "Taylor Otwell",
  2945. "email": "taylor@laravel.com"
  2946. }
  2947. ],
  2948. "description": "The Illuminate Events package.",
  2949. "homepage": "https://laravel.com",
  2950. "support": {
  2951. "issues": "https://github.com/laravel/framework/issues",
  2952. "source": "https://github.com/laravel/framework"
  2953. },
  2954. "time": "2020-10-27T15:05:51+00:00"
  2955. },
  2956. {
  2957. "name": "illuminate/filesystem",
  2958. "version": "v6.20.44",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/illuminate/filesystem.git",
  2962. "reference": "5355953da41db06aac064a3d08dfa1f9bafffd24"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/illuminate/filesystem/zipball/5355953da41db06aac064a3d08dfa1f9bafffd24",
  2967. "reference": "5355953da41db06aac064a3d08dfa1f9bafffd24",
  2968. "shasum": "",
  2969. "mirrors": [
  2970. {
  2971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2972. "preferred": true
  2973. }
  2974. ]
  2975. },
  2976. "require": {
  2977. "illuminate/contracts": "^6.0",
  2978. "illuminate/support": "^6.0",
  2979. "php": "^7.2.5|^8.0",
  2980. "symfony/finder": "^4.3.4"
  2981. },
  2982. "suggest": {
  2983. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2984. "league/flysystem": "Required to use the Flysystem local and FTP drivers (^1.1).",
  2985. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2986. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2987. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2988. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0)."
  2989. },
  2990. "type": "library",
  2991. "extra": {
  2992. "branch-alias": {
  2993. "dev-master": "6.x-dev"
  2994. }
  2995. },
  2996. "autoload": {
  2997. "psr-4": {
  2998. "Illuminate\\Filesystem\\": ""
  2999. }
  3000. },
  3001. "notification-url": "https://packagist.org/downloads/",
  3002. "license": [
  3003. "MIT"
  3004. ],
  3005. "authors": [
  3006. {
  3007. "name": "Taylor Otwell",
  3008. "email": "taylor@laravel.com"
  3009. }
  3010. ],
  3011. "description": "The Illuminate Filesystem package.",
  3012. "homepage": "https://laravel.com",
  3013. "support": {
  3014. "issues": "https://github.com/laravel/framework/issues",
  3015. "source": "https://github.com/laravel/framework"
  3016. },
  3017. "time": "2020-10-27T15:05:51+00:00"
  3018. },
  3019. {
  3020. "name": "illuminate/hashing",
  3021. "version": "v6.20.44",
  3022. "source": {
  3023. "type": "git",
  3024. "url": "https://github.com/illuminate/hashing.git",
  3025. "reference": "d1fcfd3acf9629708c00a6b4c946857a5f877bf2"
  3026. },
  3027. "dist": {
  3028. "type": "zip",
  3029. "url": "https://api.github.com/repos/illuminate/hashing/zipball/d1fcfd3acf9629708c00a6b4c946857a5f877bf2",
  3030. "reference": "d1fcfd3acf9629708c00a6b4c946857a5f877bf2",
  3031. "shasum": "",
  3032. "mirrors": [
  3033. {
  3034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3035. "preferred": true
  3036. }
  3037. ]
  3038. },
  3039. "require": {
  3040. "illuminate/contracts": "^6.0",
  3041. "illuminate/support": "^6.0",
  3042. "php": "^7.2.5|^8.0"
  3043. },
  3044. "type": "library",
  3045. "extra": {
  3046. "branch-alias": {
  3047. "dev-master": "6.x-dev"
  3048. }
  3049. },
  3050. "autoload": {
  3051. "psr-4": {
  3052. "Illuminate\\Hashing\\": ""
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "Taylor Otwell",
  3062. "email": "taylor@laravel.com"
  3063. }
  3064. ],
  3065. "description": "The Illuminate Hashing package.",
  3066. "homepage": "https://laravel.com",
  3067. "support": {
  3068. "issues": "https://github.com/laravel/framework/issues",
  3069. "source": "https://github.com/laravel/framework"
  3070. },
  3071. "time": "2020-10-27T15:05:51+00:00"
  3072. },
  3073. {
  3074. "name": "illuminate/http",
  3075. "version": "v6.20.44",
  3076. "source": {
  3077. "type": "git",
  3078. "url": "https://github.com/illuminate/http.git",
  3079. "reference": "c20a51c83af75a335b7e97beb168a860bfe2f929"
  3080. },
  3081. "dist": {
  3082. "type": "zip",
  3083. "url": "https://api.github.com/repos/illuminate/http/zipball/c20a51c83af75a335b7e97beb168a860bfe2f929",
  3084. "reference": "c20a51c83af75a335b7e97beb168a860bfe2f929",
  3085. "shasum": "",
  3086. "mirrors": [
  3087. {
  3088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3089. "preferred": true
  3090. }
  3091. ]
  3092. },
  3093. "require": {
  3094. "ext-json": "*",
  3095. "illuminate/session": "^6.0",
  3096. "illuminate/support": "^6.0",
  3097. "php": "^7.2.5|^8.0",
  3098. "symfony/http-foundation": "^4.3.4",
  3099. "symfony/http-kernel": "^4.3.4"
  3100. },
  3101. "suggest": {
  3102. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image()."
  3103. },
  3104. "type": "library",
  3105. "extra": {
  3106. "branch-alias": {
  3107. "dev-master": "6.x-dev"
  3108. }
  3109. },
  3110. "autoload": {
  3111. "psr-4": {
  3112. "Illuminate\\Http\\": ""
  3113. }
  3114. },
  3115. "notification-url": "https://packagist.org/downloads/",
  3116. "license": [
  3117. "MIT"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "Taylor Otwell",
  3122. "email": "taylor@laravel.com"
  3123. }
  3124. ],
  3125. "description": "The Illuminate Http package.",
  3126. "homepage": "https://laravel.com",
  3127. "support": {
  3128. "issues": "https://github.com/laravel/framework/issues",
  3129. "source": "https://github.com/laravel/framework"
  3130. },
  3131. "time": "2021-01-20T13:50:36+00:00"
  3132. },
  3133. {
  3134. "name": "illuminate/log",
  3135. "version": "v6.20.44",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://github.com/illuminate/log.git",
  3139. "reference": "b0ed1cc187f0249f5c851e901e0984b885f5de95"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://api.github.com/repos/illuminate/log/zipball/b0ed1cc187f0249f5c851e901e0984b885f5de95",
  3144. "reference": "b0ed1cc187f0249f5c851e901e0984b885f5de95",
  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. "illuminate/contracts": "^6.0",
  3155. "illuminate/support": "^6.0",
  3156. "monolog/monolog": "^1.12|^2.0",
  3157. "php": "^7.2.5|^8.0"
  3158. },
  3159. "type": "library",
  3160. "extra": {
  3161. "branch-alias": {
  3162. "dev-master": "6.x-dev"
  3163. }
  3164. },
  3165. "autoload": {
  3166. "psr-4": {
  3167. "Illuminate\\Log\\": ""
  3168. }
  3169. },
  3170. "notification-url": "https://packagist.org/downloads/",
  3171. "license": [
  3172. "MIT"
  3173. ],
  3174. "authors": [
  3175. {
  3176. "name": "Taylor Otwell",
  3177. "email": "taylor@laravel.com"
  3178. }
  3179. ],
  3180. "description": "The Illuminate Log package.",
  3181. "homepage": "https://laravel.com",
  3182. "support": {
  3183. "issues": "https://github.com/laravel/framework/issues",
  3184. "source": "https://github.com/laravel/framework"
  3185. },
  3186. "time": "2021-09-09T13:53:17+00:00"
  3187. },
  3188. {
  3189. "name": "illuminate/pagination",
  3190. "version": "v6.20.44",
  3191. "source": {
  3192. "type": "git",
  3193. "url": "https://github.com/illuminate/pagination.git",
  3194. "reference": "ebccd0aae58f205dc0a4ce95d8683a6c8eb14ecf"
  3195. },
  3196. "dist": {
  3197. "type": "zip",
  3198. "url": "https://api.github.com/repos/illuminate/pagination/zipball/ebccd0aae58f205dc0a4ce95d8683a6c8eb14ecf",
  3199. "reference": "ebccd0aae58f205dc0a4ce95d8683a6c8eb14ecf",
  3200. "shasum": "",
  3201. "mirrors": [
  3202. {
  3203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3204. "preferred": true
  3205. }
  3206. ]
  3207. },
  3208. "require": {
  3209. "ext-json": "*",
  3210. "illuminate/contracts": "^6.0",
  3211. "illuminate/support": "^6.0",
  3212. "php": "^7.2.5|^8.0"
  3213. },
  3214. "type": "library",
  3215. "extra": {
  3216. "branch-alias": {
  3217. "dev-master": "6.x-dev"
  3218. }
  3219. },
  3220. "autoload": {
  3221. "psr-4": {
  3222. "Illuminate\\Pagination\\": ""
  3223. }
  3224. },
  3225. "notification-url": "https://packagist.org/downloads/",
  3226. "license": [
  3227. "MIT"
  3228. ],
  3229. "authors": [
  3230. {
  3231. "name": "Taylor Otwell",
  3232. "email": "taylor@laravel.com"
  3233. }
  3234. ],
  3235. "description": "The Illuminate Pagination package.",
  3236. "homepage": "https://laravel.com",
  3237. "support": {
  3238. "issues": "https://github.com/laravel/framework/issues",
  3239. "source": "https://github.com/laravel/framework"
  3240. },
  3241. "time": "2021-09-08T12:07:35+00:00"
  3242. },
  3243. {
  3244. "name": "illuminate/pipeline",
  3245. "version": "v6.20.44",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://github.com/illuminate/pipeline.git",
  3249. "reference": "01063d3605efd22453316d771802cf5075ed848e"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/01063d3605efd22453316d771802cf5075ed848e",
  3254. "reference": "01063d3605efd22453316d771802cf5075ed848e",
  3255. "shasum": "",
  3256. "mirrors": [
  3257. {
  3258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3259. "preferred": true
  3260. }
  3261. ]
  3262. },
  3263. "require": {
  3264. "illuminate/contracts": "^6.0",
  3265. "illuminate/support": "^6.0",
  3266. "php": "^7.2.5|^8.0",
  3267. "symfony/debug": "^4.3.4"
  3268. },
  3269. "type": "library",
  3270. "extra": {
  3271. "branch-alias": {
  3272. "dev-master": "6.x-dev"
  3273. }
  3274. },
  3275. "autoload": {
  3276. "psr-4": {
  3277. "Illuminate\\Pipeline\\": ""
  3278. }
  3279. },
  3280. "notification-url": "https://packagist.org/downloads/",
  3281. "license": [
  3282. "MIT"
  3283. ],
  3284. "authors": [
  3285. {
  3286. "name": "Taylor Otwell",
  3287. "email": "taylor@laravel.com"
  3288. }
  3289. ],
  3290. "description": "The Illuminate Pipeline package.",
  3291. "homepage": "https://laravel.com",
  3292. "support": {
  3293. "issues": "https://github.com/laravel/framework/issues",
  3294. "source": "https://github.com/laravel/framework"
  3295. },
  3296. "time": "2020-10-27T15:05:51+00:00"
  3297. },
  3298. {
  3299. "name": "illuminate/queue",
  3300. "version": "v6.20.44",
  3301. "source": {
  3302. "type": "git",
  3303. "url": "https://github.com/illuminate/queue.git",
  3304. "reference": "527b06cb1400267367c14406669557800a095b35"
  3305. },
  3306. "dist": {
  3307. "type": "zip",
  3308. "url": "https://api.github.com/repos/illuminate/queue/zipball/527b06cb1400267367c14406669557800a095b35",
  3309. "reference": "527b06cb1400267367c14406669557800a095b35",
  3310. "shasum": "",
  3311. "mirrors": [
  3312. {
  3313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3314. "preferred": true
  3315. }
  3316. ]
  3317. },
  3318. "require": {
  3319. "ext-json": "*",
  3320. "illuminate/console": "^6.0",
  3321. "illuminate/container": "^6.0",
  3322. "illuminate/contracts": "^6.0",
  3323. "illuminate/database": "^6.0",
  3324. "illuminate/filesystem": "^6.0",
  3325. "illuminate/pipeline": "^6.0",
  3326. "illuminate/support": "^6.0",
  3327. "opis/closure": "^3.6",
  3328. "php": "^7.2.5|^8.0",
  3329. "symfony/debug": "^4.3.4",
  3330. "symfony/process": "^4.3.4"
  3331. },
  3332. "suggest": {
  3333. "aws/aws-sdk-php": "Required to use the SQS queue driver and DynamoDb failed job storage (^3.155).",
  3334. "ext-pcntl": "Required to use all features of the queue worker.",
  3335. "ext-posix": "Required to use all features of the queue worker.",
  3336. "illuminate/redis": "Required to use the Redis queue driver (^6.0).",
  3337. "pda/pheanstalk": "Required to use the Beanstalk queue driver (^4.0)."
  3338. },
  3339. "type": "library",
  3340. "extra": {
  3341. "branch-alias": {
  3342. "dev-master": "6.x-dev"
  3343. }
  3344. },
  3345. "autoload": {
  3346. "psr-4": {
  3347. "Illuminate\\Queue\\": ""
  3348. }
  3349. },
  3350. "notification-url": "https://packagist.org/downloads/",
  3351. "license": [
  3352. "MIT"
  3353. ],
  3354. "authors": [
  3355. {
  3356. "name": "Taylor Otwell",
  3357. "email": "taylor@laravel.com"
  3358. }
  3359. ],
  3360. "description": "The Illuminate Queue package.",
  3361. "homepage": "https://laravel.com",
  3362. "support": {
  3363. "issues": "https://github.com/laravel/framework/issues",
  3364. "source": "https://github.com/laravel/framework"
  3365. },
  3366. "time": "2021-09-08T12:07:35+00:00"
  3367. },
  3368. {
  3369. "name": "illuminate/redis",
  3370. "version": "v6.0.0",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/illuminate/redis.git",
  3374. "reference": "c5e0c8796e107df27190c11f42935f8776d6afa7"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/illuminate/redis/zipball/c5e0c8796e107df27190c11f42935f8776d6afa7",
  3379. "reference": "c5e0c8796e107df27190c11f42935f8776d6afa7",
  3380. "shasum": "",
  3381. "mirrors": [
  3382. {
  3383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3384. "preferred": true
  3385. }
  3386. ]
  3387. },
  3388. "require": {
  3389. "illuminate/contracts": "^6.0",
  3390. "illuminate/support": "^6.0",
  3391. "php": "^7.2"
  3392. },
  3393. "suggest": {
  3394. "ext-redis": "Required to use the phpredis connector.",
  3395. "predis/predis": "Required to use the predis connector (^1.0)."
  3396. },
  3397. "type": "library",
  3398. "extra": {
  3399. "branch-alias": {
  3400. "dev-master": "6.0-dev"
  3401. }
  3402. },
  3403. "autoload": {
  3404. "psr-4": {
  3405. "Illuminate\\Redis\\": ""
  3406. }
  3407. },
  3408. "notification-url": "https://packagist.org/downloads/",
  3409. "license": [
  3410. "MIT"
  3411. ],
  3412. "authors": [
  3413. {
  3414. "name": "Taylor Otwell",
  3415. "email": "taylor@laravel.com"
  3416. }
  3417. ],
  3418. "description": "The Illuminate Redis package.",
  3419. "homepage": "https://laravel.com",
  3420. "support": {
  3421. "issues": "https://github.com/laravel/framework/issues",
  3422. "source": "https://github.com/laravel/framework"
  3423. },
  3424. "time": "2019-09-03T11:25:18+00:00"
  3425. },
  3426. {
  3427. "name": "illuminate/routing",
  3428. "version": "v6.20.44",
  3429. "source": {
  3430. "type": "git",
  3431. "url": "https://github.com/illuminate/routing.git",
  3432. "reference": "4e9c499c206ba5dc2a17c78fe7205fdc0c88736d"
  3433. },
  3434. "dist": {
  3435. "type": "zip",
  3436. "url": "https://api.github.com/repos/illuminate/routing/zipball/4e9c499c206ba5dc2a17c78fe7205fdc0c88736d",
  3437. "reference": "4e9c499c206ba5dc2a17c78fe7205fdc0c88736d",
  3438. "shasum": "",
  3439. "mirrors": [
  3440. {
  3441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3442. "preferred": true
  3443. }
  3444. ]
  3445. },
  3446. "require": {
  3447. "ext-json": "*",
  3448. "illuminate/container": "^6.0",
  3449. "illuminate/contracts": "^6.0",
  3450. "illuminate/http": "^6.0",
  3451. "illuminate/pipeline": "^6.0",
  3452. "illuminate/session": "^6.0",
  3453. "illuminate/support": "^6.0",
  3454. "php": "^7.2.5|^8.0",
  3455. "symfony/debug": "^4.3.4",
  3456. "symfony/http-foundation": "^4.3.4",
  3457. "symfony/http-kernel": "^4.3.4",
  3458. "symfony/routing": "^4.3.4"
  3459. },
  3460. "suggest": {
  3461. "illuminate/console": "Required to use the make commands (^6.0).",
  3462. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3463. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2)."
  3464. },
  3465. "type": "library",
  3466. "extra": {
  3467. "branch-alias": {
  3468. "dev-master": "6.x-dev"
  3469. }
  3470. },
  3471. "autoload": {
  3472. "psr-4": {
  3473. "Illuminate\\Routing\\": ""
  3474. }
  3475. },
  3476. "notification-url": "https://packagist.org/downloads/",
  3477. "license": [
  3478. "MIT"
  3479. ],
  3480. "authors": [
  3481. {
  3482. "name": "Taylor Otwell",
  3483. "email": "taylor@laravel.com"
  3484. }
  3485. ],
  3486. "description": "The Illuminate Routing package.",
  3487. "homepage": "https://laravel.com",
  3488. "support": {
  3489. "issues": "https://github.com/laravel/framework/issues",
  3490. "source": "https://github.com/laravel/framework"
  3491. },
  3492. "time": "2021-07-23T12:54:40+00:00"
  3493. },
  3494. {
  3495. "name": "illuminate/session",
  3496. "version": "v6.20.44",
  3497. "source": {
  3498. "type": "git",
  3499. "url": "https://github.com/illuminate/session.git",
  3500. "reference": "3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03"
  3501. },
  3502. "dist": {
  3503. "type": "zip",
  3504. "url": "https://api.github.com/repos/illuminate/session/zipball/3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03",
  3505. "reference": "3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03",
  3506. "shasum": "",
  3507. "mirrors": [
  3508. {
  3509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3510. "preferred": true
  3511. }
  3512. ]
  3513. },
  3514. "require": {
  3515. "ext-json": "*",
  3516. "illuminate/contracts": "^6.0",
  3517. "illuminate/filesystem": "^6.0",
  3518. "illuminate/support": "^6.0",
  3519. "php": "^7.2.5|^8.0",
  3520. "symfony/finder": "^4.3.4",
  3521. "symfony/http-foundation": "^4.3.4"
  3522. },
  3523. "suggest": {
  3524. "illuminate/console": "Required to use the session:table command (^6.0)."
  3525. },
  3526. "type": "library",
  3527. "extra": {
  3528. "branch-alias": {
  3529. "dev-master": "6.x-dev"
  3530. }
  3531. },
  3532. "autoload": {
  3533. "psr-4": {
  3534. "Illuminate\\Session\\": ""
  3535. }
  3536. },
  3537. "notification-url": "https://packagist.org/downloads/",
  3538. "license": [
  3539. "MIT"
  3540. ],
  3541. "authors": [
  3542. {
  3543. "name": "Taylor Otwell",
  3544. "email": "taylor@laravel.com"
  3545. }
  3546. ],
  3547. "description": "The Illuminate Session package.",
  3548. "homepage": "https://laravel.com",
  3549. "support": {
  3550. "issues": "https://github.com/laravel/framework/issues",
  3551. "source": "https://github.com/laravel/framework"
  3552. },
  3553. "time": "2020-10-27T15:05:51+00:00"
  3554. },
  3555. {
  3556. "name": "illuminate/support",
  3557. "version": "v6.20.44",
  3558. "source": {
  3559. "type": "git",
  3560. "url": "https://github.com/illuminate/support.git",
  3561. "reference": "c625fd884620c41ea6c5d84ccdb6a39fe555282d"
  3562. },
  3563. "dist": {
  3564. "type": "zip",
  3565. "url": "https://api.github.com/repos/illuminate/support/zipball/c625fd884620c41ea6c5d84ccdb6a39fe555282d",
  3566. "reference": "c625fd884620c41ea6c5d84ccdb6a39fe555282d",
  3567. "shasum": "",
  3568. "mirrors": [
  3569. {
  3570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3571. "preferred": true
  3572. }
  3573. ]
  3574. },
  3575. "require": {
  3576. "doctrine/inflector": "^1.4|^2.0",
  3577. "ext-json": "*",
  3578. "ext-mbstring": "*",
  3579. "illuminate/contracts": "^6.0",
  3580. "nesbot/carbon": "^2.31",
  3581. "php": "^7.2.5|^8.0"
  3582. },
  3583. "conflict": {
  3584. "tightenco/collect": "<5.5.33"
  3585. },
  3586. "suggest": {
  3587. "illuminate/filesystem": "Required to use the composer class (^6.0).",
  3588. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  3589. "ramsey/uuid": "Required to use Str::uuid() (^3.7).",
  3590. "symfony/process": "Required to use the composer class (^4.3.4).",
  3591. "symfony/var-dumper": "Required to use the dd function (^4.3.4).",
  3592. "vlucas/phpdotenv": "Required to use the Env class and env helper (^3.3)."
  3593. },
  3594. "type": "library",
  3595. "extra": {
  3596. "branch-alias": {
  3597. "dev-master": "6.x-dev"
  3598. }
  3599. },
  3600. "autoload": {
  3601. "files": [
  3602. "helpers.php"
  3603. ],
  3604. "psr-4": {
  3605. "Illuminate\\Support\\": ""
  3606. }
  3607. },
  3608. "notification-url": "https://packagist.org/downloads/",
  3609. "license": [
  3610. "MIT"
  3611. ],
  3612. "authors": [
  3613. {
  3614. "name": "Taylor Otwell",
  3615. "email": "taylor@laravel.com"
  3616. }
  3617. ],
  3618. "description": "The Illuminate Support package.",
  3619. "homepage": "https://laravel.com",
  3620. "support": {
  3621. "issues": "https://github.com/laravel/framework/issues",
  3622. "source": "https://github.com/laravel/framework"
  3623. },
  3624. "time": "2021-09-08T12:07:35+00:00"
  3625. },
  3626. {
  3627. "name": "illuminate/translation",
  3628. "version": "v6.20.44",
  3629. "source": {
  3630. "type": "git",
  3631. "url": "https://github.com/illuminate/translation.git",
  3632. "reference": "717fad58c8451b86c7b5644bc652430a3369d7b3"
  3633. },
  3634. "dist": {
  3635. "type": "zip",
  3636. "url": "https://api.github.com/repos/illuminate/translation/zipball/717fad58c8451b86c7b5644bc652430a3369d7b3",
  3637. "reference": "717fad58c8451b86c7b5644bc652430a3369d7b3",
  3638. "shasum": "",
  3639. "mirrors": [
  3640. {
  3641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3642. "preferred": true
  3643. }
  3644. ]
  3645. },
  3646. "require": {
  3647. "ext-json": "*",
  3648. "illuminate/contracts": "^6.0",
  3649. "illuminate/filesystem": "^6.0",
  3650. "illuminate/support": "^6.0",
  3651. "php": "^7.2.5|^8.0"
  3652. },
  3653. "type": "library",
  3654. "extra": {
  3655. "branch-alias": {
  3656. "dev-master": "6.x-dev"
  3657. }
  3658. },
  3659. "autoload": {
  3660. "psr-4": {
  3661. "Illuminate\\Translation\\": ""
  3662. }
  3663. },
  3664. "notification-url": "https://packagist.org/downloads/",
  3665. "license": [
  3666. "MIT"
  3667. ],
  3668. "authors": [
  3669. {
  3670. "name": "Taylor Otwell",
  3671. "email": "taylor@laravel.com"
  3672. }
  3673. ],
  3674. "description": "The Illuminate Translation package.",
  3675. "homepage": "https://laravel.com",
  3676. "support": {
  3677. "issues": "https://github.com/laravel/framework/issues",
  3678. "source": "https://github.com/laravel/framework"
  3679. },
  3680. "time": "2020-10-27T15:05:51+00:00"
  3681. },
  3682. {
  3683. "name": "illuminate/validation",
  3684. "version": "v6.20.44",
  3685. "source": {
  3686. "type": "git",
  3687. "url": "https://github.com/illuminate/validation.git",
  3688. "reference": "934f75b6afd5b731881e3226df429470c62a9f3a"
  3689. },
  3690. "dist": {
  3691. "type": "zip",
  3692. "url": "https://api.github.com/repos/illuminate/validation/zipball/934f75b6afd5b731881e3226df429470c62a9f3a",
  3693. "reference": "934f75b6afd5b731881e3226df429470c62a9f3a",
  3694. "shasum": "",
  3695. "mirrors": [
  3696. {
  3697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3698. "preferred": true
  3699. }
  3700. ]
  3701. },
  3702. "require": {
  3703. "egulias/email-validator": "^2.1.10",
  3704. "ext-json": "*",
  3705. "illuminate/container": "^6.0",
  3706. "illuminate/contracts": "^6.0",
  3707. "illuminate/support": "^6.0",
  3708. "illuminate/translation": "^6.0",
  3709. "php": "^7.2.5|^8.0",
  3710. "symfony/http-foundation": "^4.3.4"
  3711. },
  3712. "suggest": {
  3713. "illuminate/database": "Required to use the database presence verifier (^6.0)."
  3714. },
  3715. "type": "library",
  3716. "extra": {
  3717. "branch-alias": {
  3718. "dev-master": "6.x-dev"
  3719. }
  3720. },
  3721. "autoload": {
  3722. "psr-4": {
  3723. "Illuminate\\Validation\\": ""
  3724. }
  3725. },
  3726. "notification-url": "https://packagist.org/downloads/",
  3727. "license": [
  3728. "MIT"
  3729. ],
  3730. "authors": [
  3731. {
  3732. "name": "Taylor Otwell",
  3733. "email": "taylor@laravel.com"
  3734. }
  3735. ],
  3736. "description": "The Illuminate Validation package.",
  3737. "homepage": "https://laravel.com",
  3738. "support": {
  3739. "issues": "https://github.com/laravel/framework/issues",
  3740. "source": "https://github.com/laravel/framework"
  3741. },
  3742. "time": "2022-01-06T14:39:02+00:00"
  3743. },
  3744. {
  3745. "name": "illuminate/view",
  3746. "version": "v6.20.44",
  3747. "source": {
  3748. "type": "git",
  3749. "url": "https://github.com/illuminate/view.git",
  3750. "reference": "3318d941e1c1a0f561bbd471426d042f7666e798"
  3751. },
  3752. "dist": {
  3753. "type": "zip",
  3754. "url": "https://api.github.com/repos/illuminate/view/zipball/3318d941e1c1a0f561bbd471426d042f7666e798",
  3755. "reference": "3318d941e1c1a0f561bbd471426d042f7666e798",
  3756. "shasum": "",
  3757. "mirrors": [
  3758. {
  3759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3760. "preferred": true
  3761. }
  3762. ]
  3763. },
  3764. "require": {
  3765. "ext-json": "*",
  3766. "illuminate/container": "^6.0",
  3767. "illuminate/contracts": "^6.0",
  3768. "illuminate/events": "^6.0",
  3769. "illuminate/filesystem": "^6.0",
  3770. "illuminate/support": "^6.0",
  3771. "php": "^7.2.5|^8.0",
  3772. "symfony/debug": "^4.3.4"
  3773. },
  3774. "type": "library",
  3775. "extra": {
  3776. "branch-alias": {
  3777. "dev-master": "6.x-dev"
  3778. }
  3779. },
  3780. "autoload": {
  3781. "psr-4": {
  3782. "Illuminate\\View\\": ""
  3783. }
  3784. },
  3785. "notification-url": "https://packagist.org/downloads/",
  3786. "license": [
  3787. "MIT"
  3788. ],
  3789. "authors": [
  3790. {
  3791. "name": "Taylor Otwell",
  3792. "email": "taylor@laravel.com"
  3793. }
  3794. ],
  3795. "description": "The Illuminate View package.",
  3796. "homepage": "https://laravel.com",
  3797. "support": {
  3798. "issues": "https://github.com/laravel/framework/issues",
  3799. "source": "https://github.com/laravel/framework"
  3800. },
  3801. "time": "2021-12-06T17:14:03+00:00"
  3802. },
  3803. {
  3804. "name": "intervention/image",
  3805. "version": "2.7.2",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://github.com/Intervention/image.git",
  3809. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  3814. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  3815. "shasum": "",
  3816. "mirrors": [
  3817. {
  3818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3819. "preferred": true
  3820. }
  3821. ]
  3822. },
  3823. "require": {
  3824. "ext-fileinfo": "*",
  3825. "guzzlehttp/psr7": "~1.1 || ^2.0",
  3826. "php": ">=5.4.0"
  3827. },
  3828. "require-dev": {
  3829. "mockery/mockery": "~0.9.2",
  3830. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  3831. },
  3832. "suggest": {
  3833. "ext-gd": "to use GD library based image processing.",
  3834. "ext-imagick": "to use Imagick based image processing.",
  3835. "intervention/imagecache": "Caching extension for the Intervention Image library"
  3836. },
  3837. "type": "library",
  3838. "extra": {
  3839. "branch-alias": {
  3840. "dev-master": "2.4-dev"
  3841. },
  3842. "laravel": {
  3843. "providers": [
  3844. "Intervention\\Image\\ImageServiceProvider"
  3845. ],
  3846. "aliases": {
  3847. "Image": "Intervention\\Image\\Facades\\Image"
  3848. }
  3849. }
  3850. },
  3851. "autoload": {
  3852. "psr-4": {
  3853. "Intervention\\Image\\": "src/Intervention/Image"
  3854. }
  3855. },
  3856. "notification-url": "https://packagist.org/downloads/",
  3857. "license": [
  3858. "MIT"
  3859. ],
  3860. "authors": [
  3861. {
  3862. "name": "Oliver Vogel",
  3863. "email": "oliver@intervention.io",
  3864. "homepage": "https://intervention.io/"
  3865. }
  3866. ],
  3867. "description": "Image handling and manipulation library with support for Laravel integration",
  3868. "homepage": "http://image.intervention.io/",
  3869. "keywords": [
  3870. "gd",
  3871. "image",
  3872. "imagick",
  3873. "laravel",
  3874. "thumbnail",
  3875. "watermark"
  3876. ],
  3877. "support": {
  3878. "issues": "https://github.com/Intervention/image/issues",
  3879. "source": "https://github.com/Intervention/image/tree/2.7.2"
  3880. },
  3881. "funding": [
  3882. {
  3883. "url": "https://paypal.me/interventionio",
  3884. "type": "custom"
  3885. },
  3886. {
  3887. "url": "https://github.com/Intervention",
  3888. "type": "github"
  3889. }
  3890. ],
  3891. "time": "2022-05-21T17:30:32+00:00"
  3892. },
  3893. {
  3894. "name": "jaybizzle/crawler-detect",
  3895. "version": "v1.2.112",
  3896. "source": {
  3897. "type": "git",
  3898. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  3899. "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f"
  3900. },
  3901. "dist": {
  3902. "type": "zip",
  3903. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f",
  3904. "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f",
  3905. "shasum": "",
  3906. "mirrors": [
  3907. {
  3908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3909. "preferred": true
  3910. }
  3911. ]
  3912. },
  3913. "require": {
  3914. "php": ">=5.3.0"
  3915. },
  3916. "require-dev": {
  3917. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  3918. },
  3919. "type": "library",
  3920. "autoload": {
  3921. "psr-4": {
  3922. "Jaybizzle\\CrawlerDetect\\": "src/"
  3923. }
  3924. },
  3925. "notification-url": "https://packagist.org/downloads/",
  3926. "license": [
  3927. "MIT"
  3928. ],
  3929. "authors": [
  3930. {
  3931. "name": "Mark Beech",
  3932. "email": "m@rkbee.ch",
  3933. "role": "Developer"
  3934. }
  3935. ],
  3936. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  3937. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  3938. "keywords": [
  3939. "crawler",
  3940. "crawler detect",
  3941. "crawler detector",
  3942. "crawlerdetect",
  3943. "php crawler detect"
  3944. ],
  3945. "support": {
  3946. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  3947. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.112"
  3948. },
  3949. "time": "2022-10-05T21:52:44+00:00"
  3950. },
  3951. {
  3952. "name": "jenssegers/agent",
  3953. "version": "v2.6.4",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://github.com/jenssegers/agent.git",
  3957. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  3962. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  3963. "shasum": "",
  3964. "mirrors": [
  3965. {
  3966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3967. "preferred": true
  3968. }
  3969. ]
  3970. },
  3971. "require": {
  3972. "jaybizzle/crawler-detect": "^1.2",
  3973. "mobiledetect/mobiledetectlib": "^2.7.6",
  3974. "php": ">=5.6"
  3975. },
  3976. "require-dev": {
  3977. "php-coveralls/php-coveralls": "^2.1",
  3978. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  3979. },
  3980. "suggest": {
  3981. "illuminate/support": "Required for laravel service providers"
  3982. },
  3983. "type": "library",
  3984. "extra": {
  3985. "branch-alias": {
  3986. "dev-master": "3.0-dev"
  3987. },
  3988. "laravel": {
  3989. "providers": [
  3990. "Jenssegers\\Agent\\AgentServiceProvider"
  3991. ],
  3992. "aliases": {
  3993. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  3994. }
  3995. }
  3996. },
  3997. "autoload": {
  3998. "psr-4": {
  3999. "Jenssegers\\Agent\\": "src/"
  4000. }
  4001. },
  4002. "notification-url": "https://packagist.org/downloads/",
  4003. "license": [
  4004. "MIT"
  4005. ],
  4006. "authors": [
  4007. {
  4008. "name": "Jens Segers",
  4009. "homepage": "https://jenssegers.com"
  4010. }
  4011. ],
  4012. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  4013. "homepage": "https://github.com/jenssegers/agent",
  4014. "keywords": [
  4015. "Agent",
  4016. "browser",
  4017. "desktop",
  4018. "laravel",
  4019. "mobile",
  4020. "platform",
  4021. "user agent",
  4022. "useragent"
  4023. ],
  4024. "support": {
  4025. "issues": "https://github.com/jenssegers/agent/issues",
  4026. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  4027. },
  4028. "funding": [
  4029. {
  4030. "url": "https://github.com/jenssegers",
  4031. "type": "github"
  4032. },
  4033. {
  4034. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  4035. "type": "tidelift"
  4036. }
  4037. ],
  4038. "time": "2020-06-13T08:05:20+00:00"
  4039. },
  4040. {
  4041. "name": "justinrainbow/json-schema",
  4042. "version": "5.2.12",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/justinrainbow/json-schema.git",
  4046. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  4051. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  4052. "shasum": "",
  4053. "mirrors": [
  4054. {
  4055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4056. "preferred": true
  4057. }
  4058. ]
  4059. },
  4060. "require": {
  4061. "php": ">=5.3.3"
  4062. },
  4063. "require-dev": {
  4064. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  4065. "json-schema/json-schema-test-suite": "1.2.0",
  4066. "phpunit/phpunit": "^4.8.35"
  4067. },
  4068. "bin": [
  4069. "bin/validate-json"
  4070. ],
  4071. "type": "library",
  4072. "extra": {
  4073. "branch-alias": {
  4074. "dev-master": "5.0.x-dev"
  4075. }
  4076. },
  4077. "autoload": {
  4078. "psr-4": {
  4079. "JsonSchema\\": "src/JsonSchema/"
  4080. }
  4081. },
  4082. "notification-url": "https://packagist.org/downloads/",
  4083. "license": [
  4084. "MIT"
  4085. ],
  4086. "authors": [
  4087. {
  4088. "name": "Bruno Prieto Reis",
  4089. "email": "bruno.p.reis@gmail.com"
  4090. },
  4091. {
  4092. "name": "Justin Rainbow",
  4093. "email": "justin.rainbow@gmail.com"
  4094. },
  4095. {
  4096. "name": "Igor Wiedler",
  4097. "email": "igor@wiedler.ch"
  4098. },
  4099. {
  4100. "name": "Robert Schönthal",
  4101. "email": "seroscho@googlemail.com"
  4102. }
  4103. ],
  4104. "description": "A library to validate a json schema.",
  4105. "homepage": "https://github.com/justinrainbow/json-schema",
  4106. "keywords": [
  4107. "json",
  4108. "schema"
  4109. ],
  4110. "support": {
  4111. "issues": "https://github.com/justinrainbow/json-schema/issues",
  4112. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
  4113. },
  4114. "time": "2022-04-13T08:02:27+00:00"
  4115. },
  4116. {
  4117. "name": "khanamiryan/qrcode-detector-decoder",
  4118. "version": "1.0.6",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  4122. "reference": "45326fb83a2a375065dbb3a134b5b8a5872da569"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/45326fb83a2a375065dbb3a134b5b8a5872da569",
  4127. "reference": "45326fb83a2a375065dbb3a134b5b8a5872da569",
  4128. "shasum": "",
  4129. "mirrors": [
  4130. {
  4131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4132. "preferred": true
  4133. }
  4134. ]
  4135. },
  4136. "require": {
  4137. "php": ">=5.6"
  4138. },
  4139. "require-dev": {
  4140. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0",
  4141. "rector/rector": "^0.13.6",
  4142. "symplify/easy-coding-standard": "^11.0"
  4143. },
  4144. "type": "library",
  4145. "autoload": {
  4146. "files": [
  4147. "lib/Common/customFunctions.php"
  4148. ],
  4149. "psr-4": {
  4150. "Zxing\\": "lib/"
  4151. }
  4152. },
  4153. "notification-url": "https://packagist.org/downloads/",
  4154. "license": [
  4155. "MIT",
  4156. "Apache-2.0"
  4157. ],
  4158. "authors": [
  4159. {
  4160. "name": "Ashot Khanamiryan",
  4161. "email": "a.khanamiryan@gmail.com",
  4162. "homepage": "https://github.com/khanamiryan",
  4163. "role": "Developer"
  4164. }
  4165. ],
  4166. "description": "QR code decoder / reader",
  4167. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  4168. "keywords": [
  4169. "barcode",
  4170. "qr",
  4171. "zxing"
  4172. ],
  4173. "support": {
  4174. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  4175. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.6"
  4176. },
  4177. "time": "2022-06-29T09:25:13+00:00"
  4178. },
  4179. {
  4180. "name": "laravel/lumen-framework",
  4181. "version": "v6.3.5",
  4182. "source": {
  4183. "type": "git",
  4184. "url": "https://github.com/laravel/lumen-framework.git",
  4185. "reference": "74d61ebf4f022a874bcea560054a2a2050d0e75d"
  4186. },
  4187. "dist": {
  4188. "type": "zip",
  4189. "url": "https://api.github.com/repos/laravel/lumen-framework/zipball/74d61ebf4f022a874bcea560054a2a2050d0e75d",
  4190. "reference": "74d61ebf4f022a874bcea560054a2a2050d0e75d",
  4191. "shasum": "",
  4192. "mirrors": [
  4193. {
  4194. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4195. "preferred": true
  4196. }
  4197. ]
  4198. },
  4199. "require": {
  4200. "dragonmantank/cron-expression": "^2.0",
  4201. "illuminate/auth": "^6.0",
  4202. "illuminate/broadcasting": "^6.0",
  4203. "illuminate/bus": "^6.0",
  4204. "illuminate/cache": "^6.0",
  4205. "illuminate/config": "^6.0",
  4206. "illuminate/container": "^6.0",
  4207. "illuminate/contracts": "^6.0",
  4208. "illuminate/database": "^6.0",
  4209. "illuminate/encryption": "^6.0",
  4210. "illuminate/events": "^6.0",
  4211. "illuminate/filesystem": "^6.0",
  4212. "illuminate/hashing": "^6.0",
  4213. "illuminate/http": "^6.0",
  4214. "illuminate/log": "^6.0",
  4215. "illuminate/pagination": "^6.0",
  4216. "illuminate/pipeline": "^6.0",
  4217. "illuminate/queue": "^6.0",
  4218. "illuminate/support": "^6.0",
  4219. "illuminate/translation": "^6.0",
  4220. "illuminate/validation": "^6.0",
  4221. "illuminate/view": "^6.0",
  4222. "nikic/fast-route": "^1.3",
  4223. "php": "^7.2",
  4224. "symfony/http-foundation": "^4.3",
  4225. "symfony/http-kernel": "^4.3",
  4226. "symfony/var-dumper": "^4.3",
  4227. "vlucas/phpdotenv": "^3.3"
  4228. },
  4229. "require-dev": {
  4230. "mockery/mockery": "^1.0",
  4231. "phpunit/phpunit": "^7.5|^8.0"
  4232. },
  4233. "suggest": {
  4234. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  4235. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  4236. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2)."
  4237. },
  4238. "type": "library",
  4239. "extra": {
  4240. "branch-alias": {
  4241. "dev-master": "6.x-dev"
  4242. }
  4243. },
  4244. "autoload": {
  4245. "files": [
  4246. "src/helpers.php"
  4247. ],
  4248. "psr-4": {
  4249. "Laravel\\Lumen\\": "src/"
  4250. }
  4251. },
  4252. "notification-url": "https://packagist.org/downloads/",
  4253. "license": [
  4254. "MIT"
  4255. ],
  4256. "authors": [
  4257. {
  4258. "name": "Taylor Otwell",
  4259. "email": "taylorotwell@gmail.com"
  4260. }
  4261. ],
  4262. "description": "The Laravel Lumen Framework.",
  4263. "homepage": "https://lumen.laravel.com",
  4264. "keywords": [
  4265. "framework",
  4266. "laravel",
  4267. "lumen"
  4268. ],
  4269. "support": {
  4270. "issues": "https://github.com/laravel/lumen-framework/issues",
  4271. "source": "https://github.com/laravel/lumen-framework"
  4272. },
  4273. "time": "2020-03-13T20:24:43+00:00"
  4274. },
  4275. {
  4276. "name": "lcobucci/jwt",
  4277. "version": "3.3.3",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://github.com/lcobucci/jwt.git",
  4281. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  4286. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  4287. "shasum": "",
  4288. "mirrors": [
  4289. {
  4290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4291. "preferred": true
  4292. }
  4293. ]
  4294. },
  4295. "require": {
  4296. "ext-mbstring": "*",
  4297. "ext-openssl": "*",
  4298. "php": "^5.6 || ^7.0"
  4299. },
  4300. "require-dev": {
  4301. "mikey179/vfsstream": "~1.5",
  4302. "phpmd/phpmd": "~2.2",
  4303. "phpunit/php-invoker": "~1.1",
  4304. "phpunit/phpunit": "^5.7 || ^7.3",
  4305. "squizlabs/php_codesniffer": "~2.3"
  4306. },
  4307. "type": "library",
  4308. "extra": {
  4309. "branch-alias": {
  4310. "dev-master": "3.1-dev"
  4311. }
  4312. },
  4313. "autoload": {
  4314. "psr-4": {
  4315. "Lcobucci\\JWT\\": "src"
  4316. }
  4317. },
  4318. "notification-url": "https://packagist.org/downloads/",
  4319. "license": [
  4320. "BSD-3-Clause"
  4321. ],
  4322. "authors": [
  4323. {
  4324. "name": "Luís Otávio Cobucci Oblonczyk",
  4325. "email": "lcobucci@gmail.com",
  4326. "role": "Developer"
  4327. }
  4328. ],
  4329. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  4330. "keywords": [
  4331. "JWS",
  4332. "jwt"
  4333. ],
  4334. "support": {
  4335. "issues": "https://github.com/lcobucci/jwt/issues",
  4336. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  4337. },
  4338. "funding": [
  4339. {
  4340. "url": "https://github.com/lcobucci",
  4341. "type": "github"
  4342. },
  4343. {
  4344. "url": "https://www.patreon.com/lcobucci",
  4345. "type": "patreon"
  4346. }
  4347. ],
  4348. "time": "2020-08-20T13:22:28+00:00"
  4349. },
  4350. {
  4351. "name": "league/flysystem",
  4352. "version": "1.1.10",
  4353. "source": {
  4354. "type": "git",
  4355. "url": "https://github.com/thephpleague/flysystem.git",
  4356. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  4357. },
  4358. "dist": {
  4359. "type": "zip",
  4360. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  4361. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  4362. "shasum": "",
  4363. "mirrors": [
  4364. {
  4365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4366. "preferred": true
  4367. }
  4368. ]
  4369. },
  4370. "require": {
  4371. "ext-fileinfo": "*",
  4372. "league/mime-type-detection": "^1.3",
  4373. "php": "^7.2.5 || ^8.0"
  4374. },
  4375. "conflict": {
  4376. "league/flysystem-sftp": "<1.0.6"
  4377. },
  4378. "require-dev": {
  4379. "phpspec/prophecy": "^1.11.1",
  4380. "phpunit/phpunit": "^8.5.8"
  4381. },
  4382. "suggest": {
  4383. "ext-ftp": "Allows you to use FTP server storage",
  4384. "ext-openssl": "Allows you to use FTPS server storage",
  4385. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  4386. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  4387. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  4388. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  4389. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  4390. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  4391. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  4392. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  4393. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  4394. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  4395. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  4396. },
  4397. "type": "library",
  4398. "extra": {
  4399. "branch-alias": {
  4400. "dev-master": "1.1-dev"
  4401. }
  4402. },
  4403. "autoload": {
  4404. "psr-4": {
  4405. "League\\Flysystem\\": "src/"
  4406. }
  4407. },
  4408. "notification-url": "https://packagist.org/downloads/",
  4409. "license": [
  4410. "MIT"
  4411. ],
  4412. "authors": [
  4413. {
  4414. "name": "Frank de Jonge",
  4415. "email": "info@frenky.net"
  4416. }
  4417. ],
  4418. "description": "Filesystem abstraction: Many filesystems, one API.",
  4419. "keywords": [
  4420. "Cloud Files",
  4421. "WebDAV",
  4422. "abstraction",
  4423. "aws",
  4424. "cloud",
  4425. "copy.com",
  4426. "dropbox",
  4427. "file systems",
  4428. "files",
  4429. "filesystem",
  4430. "filesystems",
  4431. "ftp",
  4432. "rackspace",
  4433. "remote",
  4434. "s3",
  4435. "sftp",
  4436. "storage"
  4437. ],
  4438. "support": {
  4439. "issues": "https://github.com/thephpleague/flysystem/issues",
  4440. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  4441. },
  4442. "funding": [
  4443. {
  4444. "url": "https://offset.earth/frankdejonge",
  4445. "type": "other"
  4446. }
  4447. ],
  4448. "time": "2022-10-04T09:16:37+00:00"
  4449. },
  4450. {
  4451. "name": "league/fractal",
  4452. "version": "0.17.0",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://github.com/thephpleague/fractal.git",
  4456. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  4461. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  4462. "shasum": "",
  4463. "mirrors": [
  4464. {
  4465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4466. "preferred": true
  4467. }
  4468. ]
  4469. },
  4470. "require": {
  4471. "php": ">=5.4"
  4472. },
  4473. "require-dev": {
  4474. "doctrine/orm": "^2.5",
  4475. "illuminate/contracts": "~5.0",
  4476. "mockery/mockery": "~0.9",
  4477. "pagerfanta/pagerfanta": "~1.0.0",
  4478. "phpunit/phpunit": "~4.0",
  4479. "squizlabs/php_codesniffer": "~1.5",
  4480. "zendframework/zend-paginator": "~2.3"
  4481. },
  4482. "suggest": {
  4483. "illuminate/pagination": "The Illuminate Pagination component.",
  4484. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  4485. "zendframework/zend-paginator": "Zend Framework Paginator"
  4486. },
  4487. "type": "library",
  4488. "extra": {
  4489. "branch-alias": {
  4490. "dev-master": "0.13-dev"
  4491. }
  4492. },
  4493. "autoload": {
  4494. "psr-4": {
  4495. "League\\Fractal\\": "src"
  4496. }
  4497. },
  4498. "notification-url": "https://packagist.org/downloads/",
  4499. "license": [
  4500. "MIT"
  4501. ],
  4502. "authors": [
  4503. {
  4504. "name": "Phil Sturgeon",
  4505. "email": "me@philsturgeon.uk",
  4506. "homepage": "http://philsturgeon.uk/",
  4507. "role": "Developer"
  4508. }
  4509. ],
  4510. "description": "Handle the output of complex data structures ready for API output.",
  4511. "homepage": "http://fractal.thephpleague.com/",
  4512. "keywords": [
  4513. "api",
  4514. "json",
  4515. "league",
  4516. "rest"
  4517. ],
  4518. "support": {
  4519. "issues": "https://github.com/thephpleague/fractal/issues",
  4520. "source": "https://github.com/thephpleague/fractal/tree/master"
  4521. },
  4522. "time": "2017-06-12T11:04:56+00:00"
  4523. },
  4524. {
  4525. "name": "league/mime-type-detection",
  4526. "version": "1.11.0",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4530. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  4535. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  4536. "shasum": "",
  4537. "mirrors": [
  4538. {
  4539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4540. "preferred": true
  4541. }
  4542. ]
  4543. },
  4544. "require": {
  4545. "ext-fileinfo": "*",
  4546. "php": "^7.2 || ^8.0"
  4547. },
  4548. "require-dev": {
  4549. "friendsofphp/php-cs-fixer": "^3.2",
  4550. "phpstan/phpstan": "^0.12.68",
  4551. "phpunit/phpunit": "^8.5.8 || ^9.3"
  4552. },
  4553. "type": "library",
  4554. "autoload": {
  4555. "psr-4": {
  4556. "League\\MimeTypeDetection\\": "src"
  4557. }
  4558. },
  4559. "notification-url": "https://packagist.org/downloads/",
  4560. "license": [
  4561. "MIT"
  4562. ],
  4563. "authors": [
  4564. {
  4565. "name": "Frank de Jonge",
  4566. "email": "info@frankdejonge.nl"
  4567. }
  4568. ],
  4569. "description": "Mime-type detection for Flysystem",
  4570. "support": {
  4571. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4572. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  4573. },
  4574. "funding": [
  4575. {
  4576. "url": "https://github.com/frankdejonge",
  4577. "type": "github"
  4578. },
  4579. {
  4580. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4581. "type": "tidelift"
  4582. }
  4583. ],
  4584. "time": "2022-04-17T13:12:02+00:00"
  4585. },
  4586. {
  4587. "name": "maatwebsite/excel",
  4588. "version": "3.1.43",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  4592. "reference": "3c5b95478fb6f76b9a6ab527d54afbb3afbda611"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/3c5b95478fb6f76b9a6ab527d54afbb3afbda611",
  4597. "reference": "3c5b95478fb6f76b9a6ab527d54afbb3afbda611",
  4598. "shasum": "",
  4599. "mirrors": [
  4600. {
  4601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4602. "preferred": true
  4603. }
  4604. ]
  4605. },
  4606. "require": {
  4607. "ext-json": "*",
  4608. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0",
  4609. "php": "^7.0|^8.0",
  4610. "phpoffice/phpspreadsheet": "^1.18",
  4611. "psr/simple-cache": "^1.0|^2.0"
  4612. },
  4613. "require-dev": {
  4614. "orchestra/testbench": "^6.0|^7.0",
  4615. "predis/predis": "^1.1"
  4616. },
  4617. "type": "library",
  4618. "extra": {
  4619. "laravel": {
  4620. "providers": [
  4621. "Maatwebsite\\Excel\\ExcelServiceProvider"
  4622. ],
  4623. "aliases": {
  4624. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  4625. }
  4626. }
  4627. },
  4628. "autoload": {
  4629. "psr-4": {
  4630. "Maatwebsite\\Excel\\": "src/"
  4631. }
  4632. },
  4633. "notification-url": "https://packagist.org/downloads/",
  4634. "license": [
  4635. "MIT"
  4636. ],
  4637. "authors": [
  4638. {
  4639. "name": "Patrick Brouwers",
  4640. "email": "patrick@spartner.nl"
  4641. }
  4642. ],
  4643. "description": "Supercharged Excel exports and imports in Laravel",
  4644. "keywords": [
  4645. "PHPExcel",
  4646. "batch",
  4647. "csv",
  4648. "excel",
  4649. "export",
  4650. "import",
  4651. "laravel",
  4652. "php",
  4653. "phpspreadsheet"
  4654. ],
  4655. "support": {
  4656. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  4657. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.43"
  4658. },
  4659. "funding": [
  4660. {
  4661. "url": "https://laravel-excel.com/commercial-support",
  4662. "type": "custom"
  4663. },
  4664. {
  4665. "url": "https://github.com/patrickbrouwers",
  4666. "type": "github"
  4667. }
  4668. ],
  4669. "time": "2022-10-03T11:50:29+00:00"
  4670. },
  4671. {
  4672. "name": "maennchen/zipstream-php",
  4673. "version": "2.1.0",
  4674. "source": {
  4675. "type": "git",
  4676. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  4677. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  4678. },
  4679. "dist": {
  4680. "type": "zip",
  4681. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  4682. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  4683. "shasum": "",
  4684. "mirrors": [
  4685. {
  4686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4687. "preferred": true
  4688. }
  4689. ]
  4690. },
  4691. "require": {
  4692. "myclabs/php-enum": "^1.5",
  4693. "php": ">= 7.1",
  4694. "psr/http-message": "^1.0",
  4695. "symfony/polyfill-mbstring": "^1.0"
  4696. },
  4697. "require-dev": {
  4698. "ext-zip": "*",
  4699. "guzzlehttp/guzzle": ">= 6.3",
  4700. "mikey179/vfsstream": "^1.6",
  4701. "phpunit/phpunit": ">= 7.5"
  4702. },
  4703. "type": "library",
  4704. "autoload": {
  4705. "psr-4": {
  4706. "ZipStream\\": "src/"
  4707. }
  4708. },
  4709. "notification-url": "https://packagist.org/downloads/",
  4710. "license": [
  4711. "MIT"
  4712. ],
  4713. "authors": [
  4714. {
  4715. "name": "Paul Duncan",
  4716. "email": "pabs@pablotron.org"
  4717. },
  4718. {
  4719. "name": "Jonatan Männchen",
  4720. "email": "jonatan@maennchen.ch"
  4721. },
  4722. {
  4723. "name": "Jesse Donat",
  4724. "email": "donatj@gmail.com"
  4725. },
  4726. {
  4727. "name": "András Kolesár",
  4728. "email": "kolesar@kolesar.hu"
  4729. }
  4730. ],
  4731. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  4732. "keywords": [
  4733. "stream",
  4734. "zip"
  4735. ],
  4736. "support": {
  4737. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  4738. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0"
  4739. },
  4740. "funding": [
  4741. {
  4742. "url": "https://github.com/maennchen",
  4743. "type": "github"
  4744. },
  4745. {
  4746. "url": "https://opencollective.com/zipstream",
  4747. "type": "open_collective"
  4748. }
  4749. ],
  4750. "time": "2020-05-30T13:11:16+00:00"
  4751. },
  4752. {
  4753. "name": "markbaker/complex",
  4754. "version": "3.0.2",
  4755. "source": {
  4756. "type": "git",
  4757. "url": "https://github.com/MarkBaker/PHPComplex.git",
  4758. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  4759. },
  4760. "dist": {
  4761. "type": "zip",
  4762. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4763. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4764. "shasum": "",
  4765. "mirrors": [
  4766. {
  4767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4768. "preferred": true
  4769. }
  4770. ]
  4771. },
  4772. "require": {
  4773. "php": "^7.2 || ^8.0"
  4774. },
  4775. "require-dev": {
  4776. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4777. "phpcompatibility/php-compatibility": "^9.3",
  4778. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4779. "squizlabs/php_codesniffer": "^3.7"
  4780. },
  4781. "type": "library",
  4782. "autoload": {
  4783. "psr-4": {
  4784. "Complex\\": "classes/src/"
  4785. }
  4786. },
  4787. "notification-url": "https://packagist.org/downloads/",
  4788. "license": [
  4789. "MIT"
  4790. ],
  4791. "authors": [
  4792. {
  4793. "name": "Mark Baker",
  4794. "email": "mark@lange.demon.co.uk"
  4795. }
  4796. ],
  4797. "description": "PHP Class for working with complex numbers",
  4798. "homepage": "https://github.com/MarkBaker/PHPComplex",
  4799. "keywords": [
  4800. "complex",
  4801. "mathematics"
  4802. ],
  4803. "support": {
  4804. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  4805. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  4806. },
  4807. "time": "2022-12-06T16:21:08+00:00"
  4808. },
  4809. {
  4810. "name": "markbaker/matrix",
  4811. "version": "3.0.1",
  4812. "source": {
  4813. "type": "git",
  4814. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  4815. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  4816. },
  4817. "dist": {
  4818. "type": "zip",
  4819. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  4820. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  4821. "shasum": "",
  4822. "mirrors": [
  4823. {
  4824. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4825. "preferred": true
  4826. }
  4827. ]
  4828. },
  4829. "require": {
  4830. "php": "^7.1 || ^8.0"
  4831. },
  4832. "require-dev": {
  4833. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4834. "phpcompatibility/php-compatibility": "^9.3",
  4835. "phpdocumentor/phpdocumentor": "2.*",
  4836. "phploc/phploc": "^4.0",
  4837. "phpmd/phpmd": "2.*",
  4838. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4839. "sebastian/phpcpd": "^4.0",
  4840. "squizlabs/php_codesniffer": "^3.7"
  4841. },
  4842. "type": "library",
  4843. "autoload": {
  4844. "psr-4": {
  4845. "Matrix\\": "classes/src/"
  4846. }
  4847. },
  4848. "notification-url": "https://packagist.org/downloads/",
  4849. "license": [
  4850. "MIT"
  4851. ],
  4852. "authors": [
  4853. {
  4854. "name": "Mark Baker",
  4855. "email": "mark@demon-angel.eu"
  4856. }
  4857. ],
  4858. "description": "PHP Class for working with matrices",
  4859. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  4860. "keywords": [
  4861. "mathematics",
  4862. "matrix",
  4863. "vector"
  4864. ],
  4865. "support": {
  4866. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  4867. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  4868. },
  4869. "time": "2022-12-02T22:17:43+00:00"
  4870. },
  4871. {
  4872. "name": "mobiledetect/mobiledetectlib",
  4873. "version": "2.8.41",
  4874. "source": {
  4875. "type": "git",
  4876. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  4877. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1"
  4878. },
  4879. "dist": {
  4880. "type": "zip",
  4881. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  4882. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  4883. "shasum": "",
  4884. "mirrors": [
  4885. {
  4886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4887. "preferred": true
  4888. }
  4889. ]
  4890. },
  4891. "require": {
  4892. "php": ">=5.0.0"
  4893. },
  4894. "require-dev": {
  4895. "phpunit/phpunit": "~4.8.35||~5.7"
  4896. },
  4897. "type": "library",
  4898. "autoload": {
  4899. "psr-0": {
  4900. "Detection": "namespaced/"
  4901. },
  4902. "classmap": [
  4903. "Mobile_Detect.php"
  4904. ]
  4905. },
  4906. "notification-url": "https://packagist.org/downloads/",
  4907. "license": [
  4908. "MIT"
  4909. ],
  4910. "authors": [
  4911. {
  4912. "name": "Serban Ghita",
  4913. "email": "serbanghita@gmail.com",
  4914. "homepage": "http://mobiledetect.net",
  4915. "role": "Developer"
  4916. }
  4917. ],
  4918. "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.",
  4919. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  4920. "keywords": [
  4921. "detect mobile devices",
  4922. "mobile",
  4923. "mobile detect",
  4924. "mobile detector",
  4925. "php mobile detect"
  4926. ],
  4927. "support": {
  4928. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  4929. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.41"
  4930. },
  4931. "time": "2022-11-08T18:31:26+00:00"
  4932. },
  4933. {
  4934. "name": "monolog/monolog",
  4935. "version": "2.8.0",
  4936. "source": {
  4937. "type": "git",
  4938. "url": "https://github.com/Seldaek/monolog.git",
  4939. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  4940. },
  4941. "dist": {
  4942. "type": "zip",
  4943. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  4944. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  4945. "shasum": "",
  4946. "mirrors": [
  4947. {
  4948. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4949. "preferred": true
  4950. }
  4951. ]
  4952. },
  4953. "require": {
  4954. "php": ">=7.2",
  4955. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4956. },
  4957. "provide": {
  4958. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4959. },
  4960. "require-dev": {
  4961. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4962. "doctrine/couchdb": "~1.0@dev",
  4963. "elasticsearch/elasticsearch": "^7 || ^8",
  4964. "ext-json": "*",
  4965. "graylog2/gelf-php": "^1.4.2",
  4966. "guzzlehttp/guzzle": "^7.4",
  4967. "guzzlehttp/psr7": "^2.2",
  4968. "mongodb/mongodb": "^1.8",
  4969. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4970. "phpspec/prophecy": "^1.15",
  4971. "phpstan/phpstan": "^0.12.91",
  4972. "phpunit/phpunit": "^8.5.14",
  4973. "predis/predis": "^1.1 || ^2.0",
  4974. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4975. "ruflin/elastica": "^7",
  4976. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4977. "symfony/mailer": "^5.4 || ^6",
  4978. "symfony/mime": "^5.4 || ^6"
  4979. },
  4980. "suggest": {
  4981. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4982. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4983. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4984. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4985. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4986. "ext-mbstring": "Allow to work properly with unicode symbols",
  4987. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4988. "ext-openssl": "Required to send log messages using SSL",
  4989. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4990. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4991. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4992. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4993. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4994. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4995. },
  4996. "type": "library",
  4997. "extra": {
  4998. "branch-alias": {
  4999. "dev-main": "2.x-dev"
  5000. }
  5001. },
  5002. "autoload": {
  5003. "psr-4": {
  5004. "Monolog\\": "src/Monolog"
  5005. }
  5006. },
  5007. "notification-url": "https://packagist.org/downloads/",
  5008. "license": [
  5009. "MIT"
  5010. ],
  5011. "authors": [
  5012. {
  5013. "name": "Jordi Boggiano",
  5014. "email": "j.boggiano@seld.be",
  5015. "homepage": "https://seld.be"
  5016. }
  5017. ],
  5018. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5019. "homepage": "https://github.com/Seldaek/monolog",
  5020. "keywords": [
  5021. "log",
  5022. "logging",
  5023. "psr-3"
  5024. ],
  5025. "support": {
  5026. "issues": "https://github.com/Seldaek/monolog/issues",
  5027. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  5028. },
  5029. "funding": [
  5030. {
  5031. "url": "https://github.com/Seldaek",
  5032. "type": "github"
  5033. },
  5034. {
  5035. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5036. "type": "tidelift"
  5037. }
  5038. ],
  5039. "time": "2022-07-24T11:55:47+00:00"
  5040. },
  5041. {
  5042. "name": "myclabs/php-enum",
  5043. "version": "1.6.6",
  5044. "source": {
  5045. "type": "git",
  5046. "url": "https://github.com/myclabs/php-enum.git",
  5047. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e"
  5048. },
  5049. "dist": {
  5050. "type": "zip",
  5051. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  5052. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  5053. "shasum": "",
  5054. "mirrors": [
  5055. {
  5056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5057. "preferred": true
  5058. }
  5059. ]
  5060. },
  5061. "require": {
  5062. "ext-json": "*",
  5063. "php": ">=5.4"
  5064. },
  5065. "require-dev": {
  5066. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  5067. "squizlabs/php_codesniffer": "1.*"
  5068. },
  5069. "type": "library",
  5070. "autoload": {
  5071. "psr-4": {
  5072. "MyCLabs\\Enum\\": "src/"
  5073. }
  5074. },
  5075. "notification-url": "https://packagist.org/downloads/",
  5076. "license": [
  5077. "MIT"
  5078. ],
  5079. "authors": [
  5080. {
  5081. "name": "PHP Enum contributors",
  5082. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  5083. }
  5084. ],
  5085. "description": "PHP Enum implementation",
  5086. "homepage": "http://github.com/myclabs/php-enum",
  5087. "keywords": [
  5088. "enum"
  5089. ],
  5090. "support": {
  5091. "issues": "https://github.com/myclabs/php-enum/issues",
  5092. "source": "https://github.com/myclabs/php-enum/tree/master"
  5093. },
  5094. "time": "2019-02-04T21:18:49+00:00"
  5095. },
  5096. {
  5097. "name": "namshi/jose",
  5098. "version": "7.2.3",
  5099. "source": {
  5100. "type": "git",
  5101. "url": "https://github.com/namshi/jose.git",
  5102. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  5103. },
  5104. "dist": {
  5105. "type": "zip",
  5106. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  5107. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  5108. "shasum": "",
  5109. "mirrors": [
  5110. {
  5111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5112. "preferred": true
  5113. }
  5114. ]
  5115. },
  5116. "require": {
  5117. "ext-date": "*",
  5118. "ext-hash": "*",
  5119. "ext-json": "*",
  5120. "ext-pcre": "*",
  5121. "ext-spl": "*",
  5122. "php": ">=5.5",
  5123. "symfony/polyfill-php56": "^1.0"
  5124. },
  5125. "require-dev": {
  5126. "phpseclib/phpseclib": "^2.0",
  5127. "phpunit/phpunit": "^4.5|^5.0",
  5128. "satooshi/php-coveralls": "^1.0"
  5129. },
  5130. "suggest": {
  5131. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  5132. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  5133. },
  5134. "type": "library",
  5135. "autoload": {
  5136. "psr-4": {
  5137. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  5138. }
  5139. },
  5140. "notification-url": "https://packagist.org/downloads/",
  5141. "license": [
  5142. "MIT"
  5143. ],
  5144. "authors": [
  5145. {
  5146. "name": "Alessandro Nadalin",
  5147. "email": "alessandro.nadalin@gmail.com"
  5148. },
  5149. {
  5150. "name": "Alessandro Cinelli (cirpo)",
  5151. "email": "alessandro.cinelli@gmail.com"
  5152. }
  5153. ],
  5154. "description": "JSON Object Signing and Encryption library for PHP.",
  5155. "keywords": [
  5156. "JSON Web Signature",
  5157. "JSON Web Token",
  5158. "JWS",
  5159. "json",
  5160. "jwt",
  5161. "token"
  5162. ],
  5163. "support": {
  5164. "issues": "https://github.com/namshi/jose/issues",
  5165. "source": "https://github.com/namshi/jose/tree/master"
  5166. },
  5167. "time": "2016-12-05T07:27:31+00:00"
  5168. },
  5169. {
  5170. "name": "nesbot/carbon",
  5171. "version": "2.64.0",
  5172. "source": {
  5173. "type": "git",
  5174. "url": "https://github.com/briannesbitt/Carbon.git",
  5175. "reference": "889546413c97de2d05063b8cb7b193c2531ea211"
  5176. },
  5177. "dist": {
  5178. "type": "zip",
  5179. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/889546413c97de2d05063b8cb7b193c2531ea211",
  5180. "reference": "889546413c97de2d05063b8cb7b193c2531ea211",
  5181. "shasum": "",
  5182. "mirrors": [
  5183. {
  5184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5185. "preferred": true
  5186. }
  5187. ]
  5188. },
  5189. "require": {
  5190. "ext-json": "*",
  5191. "php": "^7.1.8 || ^8.0",
  5192. "symfony/polyfill-mbstring": "^1.0",
  5193. "symfony/polyfill-php80": "^1.16",
  5194. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5195. },
  5196. "require-dev": {
  5197. "doctrine/dbal": "^2.0 || ^3.1.4",
  5198. "doctrine/orm": "^2.7",
  5199. "friendsofphp/php-cs-fixer": "^3.0",
  5200. "kylekatarnls/multi-tester": "^2.0",
  5201. "ondrejmirtes/better-reflection": "*",
  5202. "phpmd/phpmd": "^2.9",
  5203. "phpstan/extension-installer": "^1.0",
  5204. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5205. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5206. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5207. "squizlabs/php_codesniffer": "^3.4"
  5208. },
  5209. "bin": [
  5210. "bin/carbon"
  5211. ],
  5212. "type": "library",
  5213. "extra": {
  5214. "branch-alias": {
  5215. "dev-3.x": "3.x-dev",
  5216. "dev-master": "2.x-dev"
  5217. },
  5218. "laravel": {
  5219. "providers": [
  5220. "Carbon\\Laravel\\ServiceProvider"
  5221. ]
  5222. },
  5223. "phpstan": {
  5224. "includes": [
  5225. "extension.neon"
  5226. ]
  5227. }
  5228. },
  5229. "autoload": {
  5230. "psr-4": {
  5231. "Carbon\\": "src/Carbon/"
  5232. }
  5233. },
  5234. "notification-url": "https://packagist.org/downloads/",
  5235. "license": [
  5236. "MIT"
  5237. ],
  5238. "authors": [
  5239. {
  5240. "name": "Brian Nesbitt",
  5241. "email": "brian@nesbot.com",
  5242. "homepage": "https://markido.com"
  5243. },
  5244. {
  5245. "name": "kylekatarnls",
  5246. "homepage": "https://github.com/kylekatarnls"
  5247. }
  5248. ],
  5249. "description": "An API extension for DateTime that supports 281 different languages.",
  5250. "homepage": "https://carbon.nesbot.com",
  5251. "keywords": [
  5252. "date",
  5253. "datetime",
  5254. "time"
  5255. ],
  5256. "support": {
  5257. "docs": "https://carbon.nesbot.com/docs",
  5258. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5259. "source": "https://github.com/briannesbitt/Carbon"
  5260. },
  5261. "funding": [
  5262. {
  5263. "url": "https://github.com/sponsors/kylekatarnls",
  5264. "type": "github"
  5265. },
  5266. {
  5267. "url": "https://opencollective.com/Carbon#sponsor",
  5268. "type": "opencollective"
  5269. },
  5270. {
  5271. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5272. "type": "tidelift"
  5273. }
  5274. ],
  5275. "time": "2022-11-26T17:36:00+00:00"
  5276. },
  5277. {
  5278. "name": "nikic/fast-route",
  5279. "version": "v1.3.0",
  5280. "source": {
  5281. "type": "git",
  5282. "url": "https://github.com/nikic/FastRoute.git",
  5283. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5284. },
  5285. "dist": {
  5286. "type": "zip",
  5287. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5288. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5289. "shasum": "",
  5290. "mirrors": [
  5291. {
  5292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5293. "preferred": true
  5294. }
  5295. ]
  5296. },
  5297. "require": {
  5298. "php": ">=5.4.0"
  5299. },
  5300. "require-dev": {
  5301. "phpunit/phpunit": "^4.8.35|~5.7"
  5302. },
  5303. "type": "library",
  5304. "autoload": {
  5305. "files": [
  5306. "src/functions.php"
  5307. ],
  5308. "psr-4": {
  5309. "FastRoute\\": "src/"
  5310. }
  5311. },
  5312. "notification-url": "https://packagist.org/downloads/",
  5313. "license": [
  5314. "BSD-3-Clause"
  5315. ],
  5316. "authors": [
  5317. {
  5318. "name": "Nikita Popov",
  5319. "email": "nikic@php.net"
  5320. }
  5321. ],
  5322. "description": "Fast request router for PHP",
  5323. "keywords": [
  5324. "router",
  5325. "routing"
  5326. ],
  5327. "support": {
  5328. "issues": "https://github.com/nikic/FastRoute/issues",
  5329. "source": "https://github.com/nikic/FastRoute/tree/master"
  5330. },
  5331. "time": "2018-02-13T20:26:39+00:00"
  5332. },
  5333. {
  5334. "name": "opis/closure",
  5335. "version": "3.6.3",
  5336. "source": {
  5337. "type": "git",
  5338. "url": "https://github.com/opis/closure.git",
  5339. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  5340. },
  5341. "dist": {
  5342. "type": "zip",
  5343. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  5344. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  5345. "shasum": "",
  5346. "mirrors": [
  5347. {
  5348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5349. "preferred": true
  5350. }
  5351. ]
  5352. },
  5353. "require": {
  5354. "php": "^5.4 || ^7.0 || ^8.0"
  5355. },
  5356. "require-dev": {
  5357. "jeremeamia/superclosure": "^2.0",
  5358. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5359. },
  5360. "type": "library",
  5361. "extra": {
  5362. "branch-alias": {
  5363. "dev-master": "3.6.x-dev"
  5364. }
  5365. },
  5366. "autoload": {
  5367. "files": [
  5368. "functions.php"
  5369. ],
  5370. "psr-4": {
  5371. "Opis\\Closure\\": "src/"
  5372. }
  5373. },
  5374. "notification-url": "https://packagist.org/downloads/",
  5375. "license": [
  5376. "MIT"
  5377. ],
  5378. "authors": [
  5379. {
  5380. "name": "Marius Sarca",
  5381. "email": "marius.sarca@gmail.com"
  5382. },
  5383. {
  5384. "name": "Sorin Sarca",
  5385. "email": "sarca_sorin@hotmail.com"
  5386. }
  5387. ],
  5388. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  5389. "homepage": "https://opis.io/closure",
  5390. "keywords": [
  5391. "anonymous functions",
  5392. "closure",
  5393. "function",
  5394. "serializable",
  5395. "serialization",
  5396. "serialize"
  5397. ],
  5398. "support": {
  5399. "issues": "https://github.com/opis/closure/issues",
  5400. "source": "https://github.com/opis/closure/tree/3.6.3"
  5401. },
  5402. "time": "2022-01-27T09:35:39+00:00"
  5403. },
  5404. {
  5405. "name": "overtrue/easy-sms",
  5406. "version": "1.3.2",
  5407. "source": {
  5408. "type": "git",
  5409. "url": "https://github.com/overtrue/easy-sms.git",
  5410. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  5411. },
  5412. "dist": {
  5413. "type": "zip",
  5414. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  5415. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  5416. "shasum": "",
  5417. "mirrors": [
  5418. {
  5419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5420. "preferred": true
  5421. }
  5422. ]
  5423. },
  5424. "require": {
  5425. "ext-json": "*",
  5426. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5427. "php": ">=5.6"
  5428. },
  5429. "require-dev": {
  5430. "mockery/mockery": "1.3.1",
  5431. "phpunit/phpunit": "^5.7 || ^7.5"
  5432. },
  5433. "type": "library",
  5434. "autoload": {
  5435. "psr-4": {
  5436. "Overtrue\\EasySms\\": "src"
  5437. }
  5438. },
  5439. "notification-url": "https://packagist.org/downloads/",
  5440. "license": [
  5441. "MIT"
  5442. ],
  5443. "authors": [
  5444. {
  5445. "name": "overtrue",
  5446. "email": "i@overtrue.me"
  5447. }
  5448. ],
  5449. "description": "The easiest way to send short message.",
  5450. "support": {
  5451. "issues": "https://github.com/overtrue/easy-sms/issues",
  5452. "source": "https://github.com/overtrue/easy-sms/tree/1.3.2"
  5453. },
  5454. "time": "2021-01-22T06:52:59+00:00"
  5455. },
  5456. {
  5457. "name": "overtrue/laravel-wechat",
  5458. "version": "5.1.0",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://github.com/overtrue/laravel-wechat.git",
  5462. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  5467. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  5468. "shasum": "",
  5469. "mirrors": [
  5470. {
  5471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5472. "preferred": true
  5473. }
  5474. ]
  5475. },
  5476. "require": {
  5477. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  5478. "overtrue/wechat": "^4.0"
  5479. },
  5480. "require-dev": {
  5481. "friendsofphp/php-cs-fixer": "^2.16",
  5482. "laravel/framework": "^8.5"
  5483. },
  5484. "type": "library",
  5485. "extra": {
  5486. "laravel": {
  5487. "providers": [
  5488. "Overtrue\\LaravelWeChat\\ServiceProvider"
  5489. ],
  5490. "aliases": {
  5491. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  5492. }
  5493. }
  5494. },
  5495. "autoload": {
  5496. "psr-4": {
  5497. "Overtrue\\LaravelWeChat\\": "src/"
  5498. }
  5499. },
  5500. "notification-url": "https://packagist.org/downloads/",
  5501. "license": [
  5502. "MIT"
  5503. ],
  5504. "authors": [
  5505. {
  5506. "name": "overtrue",
  5507. "email": "anzhengchao@gmail.com"
  5508. }
  5509. ],
  5510. "description": "微信 SDK for Laravel",
  5511. "keywords": [
  5512. "laravel",
  5513. "sdk",
  5514. "wechat",
  5515. "weixin"
  5516. ],
  5517. "support": {
  5518. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  5519. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  5520. },
  5521. "time": "2020-09-27T08:32:30+00:00"
  5522. },
  5523. {
  5524. "name": "overtrue/socialite",
  5525. "version": "2.0.24",
  5526. "source": {
  5527. "type": "git",
  5528. "url": "https://github.com/overtrue/socialite.git",
  5529. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  5530. },
  5531. "dist": {
  5532. "type": "zip",
  5533. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  5534. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  5535. "shasum": "",
  5536. "mirrors": [
  5537. {
  5538. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5539. "preferred": true
  5540. }
  5541. ]
  5542. },
  5543. "require": {
  5544. "ext-json": "*",
  5545. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  5546. "php": ">=5.6",
  5547. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  5548. },
  5549. "require-dev": {
  5550. "mockery/mockery": "~1.2",
  5551. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  5552. },
  5553. "type": "library",
  5554. "autoload": {
  5555. "psr-4": {
  5556. "Overtrue\\Socialite\\": "src/"
  5557. }
  5558. },
  5559. "notification-url": "https://packagist.org/downloads/",
  5560. "license": [
  5561. "MIT"
  5562. ],
  5563. "authors": [
  5564. {
  5565. "name": "overtrue",
  5566. "email": "anzhengchao@gmail.com"
  5567. }
  5568. ],
  5569. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  5570. "keywords": [
  5571. "login",
  5572. "oauth",
  5573. "qq",
  5574. "social",
  5575. "wechat",
  5576. "weibo"
  5577. ],
  5578. "support": {
  5579. "issues": "https://github.com/overtrue/socialite/issues",
  5580. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  5581. },
  5582. "funding": [
  5583. {
  5584. "url": "https://www.patreon.com/overtrue",
  5585. "type": "patreon"
  5586. }
  5587. ],
  5588. "time": "2021-05-13T16:04:48+00:00"
  5589. },
  5590. {
  5591. "name": "overtrue/wechat",
  5592. "version": "4.6.0",
  5593. "source": {
  5594. "type": "git",
  5595. "url": "https://github.com/w7corp/easywechat.git",
  5596. "reference": "52af4cbe777cd4aea307beafa0a4518c347467b1"
  5597. },
  5598. "dist": {
  5599. "type": "zip",
  5600. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/52af4cbe777cd4aea307beafa0a4518c347467b1",
  5601. "reference": "52af4cbe777cd4aea307beafa0a4518c347467b1",
  5602. "shasum": "",
  5603. "mirrors": [
  5604. {
  5605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5606. "preferred": true
  5607. }
  5608. ]
  5609. },
  5610. "require": {
  5611. "easywechat-composer/easywechat-composer": "^1.1",
  5612. "ext-fileinfo": "*",
  5613. "ext-openssl": "*",
  5614. "ext-simplexml": "*",
  5615. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5616. "monolog/monolog": "^1.22 || ^2.0",
  5617. "overtrue/socialite": "~2.0",
  5618. "php": ">=7.2",
  5619. "pimple/pimple": "^3.0",
  5620. "psr/simple-cache": "^1.0",
  5621. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  5622. "symfony/event-dispatcher": "^4.3 || ^5.0",
  5623. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  5624. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  5625. },
  5626. "require-dev": {
  5627. "friendsofphp/php-cs-fixer": "^2.15",
  5628. "mikey179/vfsstream": "^1.6",
  5629. "mockery/mockery": "^1.2.3",
  5630. "phpstan/phpstan": "^0.12.0",
  5631. "phpunit/phpunit": "^7.5"
  5632. },
  5633. "type": "library",
  5634. "autoload": {
  5635. "files": [
  5636. "src/Kernel/Support/Helpers.php",
  5637. "src/Kernel/Helpers.php"
  5638. ],
  5639. "psr-4": {
  5640. "EasyWeChat\\": "src/"
  5641. }
  5642. },
  5643. "notification-url": "https://packagist.org/downloads/",
  5644. "license": [
  5645. "MIT"
  5646. ],
  5647. "authors": [
  5648. {
  5649. "name": "overtrue",
  5650. "email": "anzhengchao@gmail.com"
  5651. }
  5652. ],
  5653. "description": "微信SDK",
  5654. "keywords": [
  5655. "easywechat",
  5656. "sdk",
  5657. "wechat",
  5658. "weixin",
  5659. "weixin-sdk"
  5660. ],
  5661. "support": {
  5662. "issues": "https://github.com/w7corp/easywechat/issues",
  5663. "source": "https://github.com/w7corp/easywechat/tree/4.6.0"
  5664. },
  5665. "funding": [
  5666. {
  5667. "url": "https://github.com/overtrue",
  5668. "type": "github"
  5669. }
  5670. ],
  5671. "abandoned": "w7corp/easywechat",
  5672. "time": "2022-08-24T07:30:42+00:00"
  5673. },
  5674. {
  5675. "name": "phpdocumentor/reflection-common",
  5676. "version": "2.2.0",
  5677. "source": {
  5678. "type": "git",
  5679. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5680. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5681. },
  5682. "dist": {
  5683. "type": "zip",
  5684. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5685. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5686. "shasum": "",
  5687. "mirrors": [
  5688. {
  5689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5690. "preferred": true
  5691. }
  5692. ]
  5693. },
  5694. "require": {
  5695. "php": "^7.2 || ^8.0"
  5696. },
  5697. "type": "library",
  5698. "extra": {
  5699. "branch-alias": {
  5700. "dev-2.x": "2.x-dev"
  5701. }
  5702. },
  5703. "autoload": {
  5704. "psr-4": {
  5705. "phpDocumentor\\Reflection\\": "src/"
  5706. }
  5707. },
  5708. "notification-url": "https://packagist.org/downloads/",
  5709. "license": [
  5710. "MIT"
  5711. ],
  5712. "authors": [
  5713. {
  5714. "name": "Jaap van Otterdijk",
  5715. "email": "opensource@ijaap.nl"
  5716. }
  5717. ],
  5718. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5719. "homepage": "http://www.phpdoc.org",
  5720. "keywords": [
  5721. "FQSEN",
  5722. "phpDocumentor",
  5723. "phpdoc",
  5724. "reflection",
  5725. "static analysis"
  5726. ],
  5727. "support": {
  5728. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5729. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5730. },
  5731. "time": "2020-06-27T09:03:43+00:00"
  5732. },
  5733. {
  5734. "name": "phpdocumentor/reflection-docblock",
  5735. "version": "4.3.4",
  5736. "source": {
  5737. "type": "git",
  5738. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5739. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  5740. },
  5741. "dist": {
  5742. "type": "zip",
  5743. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  5744. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  5745. "shasum": "",
  5746. "mirrors": [
  5747. {
  5748. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5749. "preferred": true
  5750. }
  5751. ]
  5752. },
  5753. "require": {
  5754. "php": "^7.0",
  5755. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  5756. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  5757. "webmozart/assert": "^1.0"
  5758. },
  5759. "require-dev": {
  5760. "doctrine/instantiator": "^1.0.5",
  5761. "mockery/mockery": "^1.0",
  5762. "phpdocumentor/type-resolver": "0.4.*",
  5763. "phpunit/phpunit": "^6.4"
  5764. },
  5765. "type": "library",
  5766. "extra": {
  5767. "branch-alias": {
  5768. "dev-master": "4.x-dev"
  5769. }
  5770. },
  5771. "autoload": {
  5772. "psr-4": {
  5773. "phpDocumentor\\Reflection\\": [
  5774. "src/"
  5775. ]
  5776. }
  5777. },
  5778. "notification-url": "https://packagist.org/downloads/",
  5779. "license": [
  5780. "MIT"
  5781. ],
  5782. "authors": [
  5783. {
  5784. "name": "Mike van Riel",
  5785. "email": "me@mikevanriel.com"
  5786. }
  5787. ],
  5788. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5789. "support": {
  5790. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5791. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/release/4.x"
  5792. },
  5793. "time": "2019-12-28T18:55:12+00:00"
  5794. },
  5795. {
  5796. "name": "phpdocumentor/type-resolver",
  5797. "version": "1.6.1",
  5798. "source": {
  5799. "type": "git",
  5800. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5801. "reference": "77a32518733312af16a44300404e945338981de3"
  5802. },
  5803. "dist": {
  5804. "type": "zip",
  5805. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  5806. "reference": "77a32518733312af16a44300404e945338981de3",
  5807. "shasum": "",
  5808. "mirrors": [
  5809. {
  5810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5811. "preferred": true
  5812. }
  5813. ]
  5814. },
  5815. "require": {
  5816. "php": "^7.2 || ^8.0",
  5817. "phpdocumentor/reflection-common": "^2.0"
  5818. },
  5819. "require-dev": {
  5820. "ext-tokenizer": "*",
  5821. "psalm/phar": "^4.8"
  5822. },
  5823. "type": "library",
  5824. "extra": {
  5825. "branch-alias": {
  5826. "dev-1.x": "1.x-dev"
  5827. }
  5828. },
  5829. "autoload": {
  5830. "psr-4": {
  5831. "phpDocumentor\\Reflection\\": "src"
  5832. }
  5833. },
  5834. "notification-url": "https://packagist.org/downloads/",
  5835. "license": [
  5836. "MIT"
  5837. ],
  5838. "authors": [
  5839. {
  5840. "name": "Mike van Riel",
  5841. "email": "me@mikevanriel.com"
  5842. }
  5843. ],
  5844. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5845. "support": {
  5846. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5847. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  5848. },
  5849. "time": "2022-03-15T21:29:03+00:00"
  5850. },
  5851. {
  5852. "name": "phpoffice/phpspreadsheet",
  5853. "version": "1.25.2",
  5854. "source": {
  5855. "type": "git",
  5856. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  5857. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5"
  5858. },
  5859. "dist": {
  5860. "type": "zip",
  5861. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  5862. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  5863. "shasum": "",
  5864. "mirrors": [
  5865. {
  5866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5867. "preferred": true
  5868. }
  5869. ]
  5870. },
  5871. "require": {
  5872. "ext-ctype": "*",
  5873. "ext-dom": "*",
  5874. "ext-fileinfo": "*",
  5875. "ext-gd": "*",
  5876. "ext-iconv": "*",
  5877. "ext-libxml": "*",
  5878. "ext-mbstring": "*",
  5879. "ext-simplexml": "*",
  5880. "ext-xml": "*",
  5881. "ext-xmlreader": "*",
  5882. "ext-xmlwriter": "*",
  5883. "ext-zip": "*",
  5884. "ext-zlib": "*",
  5885. "ezyang/htmlpurifier": "^4.15",
  5886. "maennchen/zipstream-php": "^2.1",
  5887. "markbaker/complex": "^3.0",
  5888. "markbaker/matrix": "^3.0",
  5889. "php": "^7.3 || ^8.0",
  5890. "psr/http-client": "^1.0",
  5891. "psr/http-factory": "^1.0",
  5892. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  5893. },
  5894. "require-dev": {
  5895. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  5896. "dompdf/dompdf": "^1.0 || ^2.0",
  5897. "friendsofphp/php-cs-fixer": "^3.2",
  5898. "mitoteam/jpgraph": "10.2.4",
  5899. "mpdf/mpdf": "8.1.1",
  5900. "phpcompatibility/php-compatibility": "^9.3",
  5901. "phpstan/phpstan": "^1.1",
  5902. "phpstan/phpstan-phpunit": "^1.0",
  5903. "phpunit/phpunit": "^8.5 || ^9.0",
  5904. "squizlabs/php_codesniffer": "^3.7",
  5905. "tecnickcom/tcpdf": "6.5"
  5906. },
  5907. "suggest": {
  5908. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  5909. "ext-intl": "PHP Internationalization Functions",
  5910. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  5911. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  5912. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  5913. },
  5914. "type": "library",
  5915. "autoload": {
  5916. "psr-4": {
  5917. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  5918. }
  5919. },
  5920. "notification-url": "https://packagist.org/downloads/",
  5921. "license": [
  5922. "MIT"
  5923. ],
  5924. "authors": [
  5925. {
  5926. "name": "Maarten Balliauw",
  5927. "homepage": "https://blog.maartenballiauw.be"
  5928. },
  5929. {
  5930. "name": "Mark Baker",
  5931. "homepage": "https://markbakeruk.net"
  5932. },
  5933. {
  5934. "name": "Franck Lefevre",
  5935. "homepage": "https://rootslabs.net"
  5936. },
  5937. {
  5938. "name": "Erik Tilt"
  5939. },
  5940. {
  5941. "name": "Adrien Crivelli"
  5942. }
  5943. ],
  5944. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  5945. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  5946. "keywords": [
  5947. "OpenXML",
  5948. "excel",
  5949. "gnumeric",
  5950. "ods",
  5951. "php",
  5952. "spreadsheet",
  5953. "xls",
  5954. "xlsx"
  5955. ],
  5956. "support": {
  5957. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  5958. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.25.2"
  5959. },
  5960. "time": "2022-09-25T17:21:01+00:00"
  5961. },
  5962. {
  5963. "name": "phpoption/phpoption",
  5964. "version": "1.8.1",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/schmittjoh/php-option.git",
  5968. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5973. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5974. "shasum": "",
  5975. "mirrors": [
  5976. {
  5977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5978. "preferred": true
  5979. }
  5980. ]
  5981. },
  5982. "require": {
  5983. "php": "^7.0 || ^8.0"
  5984. },
  5985. "require-dev": {
  5986. "bamarni/composer-bin-plugin": "^1.4.1",
  5987. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  5988. },
  5989. "type": "library",
  5990. "extra": {
  5991. "branch-alias": {
  5992. "dev-master": "1.8-dev"
  5993. }
  5994. },
  5995. "autoload": {
  5996. "psr-4": {
  5997. "PhpOption\\": "src/PhpOption/"
  5998. }
  5999. },
  6000. "notification-url": "https://packagist.org/downloads/",
  6001. "license": [
  6002. "Apache-2.0"
  6003. ],
  6004. "authors": [
  6005. {
  6006. "name": "Johannes M. Schmitt",
  6007. "email": "schmittjoh@gmail.com",
  6008. "homepage": "https://github.com/schmittjoh"
  6009. },
  6010. {
  6011. "name": "Graham Campbell",
  6012. "email": "hello@gjcampbell.co.uk",
  6013. "homepage": "https://github.com/GrahamCampbell"
  6014. }
  6015. ],
  6016. "description": "Option Type for PHP",
  6017. "keywords": [
  6018. "language",
  6019. "option",
  6020. "php",
  6021. "type"
  6022. ],
  6023. "support": {
  6024. "issues": "https://github.com/schmittjoh/php-option/issues",
  6025. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  6026. },
  6027. "funding": [
  6028. {
  6029. "url": "https://github.com/GrahamCampbell",
  6030. "type": "github"
  6031. },
  6032. {
  6033. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6034. "type": "tidelift"
  6035. }
  6036. ],
  6037. "time": "2021-12-04T23:24:31+00:00"
  6038. },
  6039. {
  6040. "name": "pimple/pimple",
  6041. "version": "v3.5.0",
  6042. "source": {
  6043. "type": "git",
  6044. "url": "https://github.com/silexphp/Pimple.git",
  6045. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  6046. },
  6047. "dist": {
  6048. "type": "zip",
  6049. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  6050. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  6051. "shasum": "",
  6052. "mirrors": [
  6053. {
  6054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6055. "preferred": true
  6056. }
  6057. ]
  6058. },
  6059. "require": {
  6060. "php": ">=7.2.5",
  6061. "psr/container": "^1.1 || ^2.0"
  6062. },
  6063. "require-dev": {
  6064. "symfony/phpunit-bridge": "^5.4@dev"
  6065. },
  6066. "type": "library",
  6067. "extra": {
  6068. "branch-alias": {
  6069. "dev-master": "3.4.x-dev"
  6070. }
  6071. },
  6072. "autoload": {
  6073. "psr-0": {
  6074. "Pimple": "src/"
  6075. }
  6076. },
  6077. "notification-url": "https://packagist.org/downloads/",
  6078. "license": [
  6079. "MIT"
  6080. ],
  6081. "authors": [
  6082. {
  6083. "name": "Fabien Potencier",
  6084. "email": "fabien@symfony.com"
  6085. }
  6086. ],
  6087. "description": "Pimple, a simple Dependency Injection Container",
  6088. "homepage": "https://pimple.symfony.com",
  6089. "keywords": [
  6090. "container",
  6091. "dependency injection"
  6092. ],
  6093. "support": {
  6094. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  6095. },
  6096. "time": "2021-10-28T11:13:42+00:00"
  6097. },
  6098. {
  6099. "name": "psr/cache",
  6100. "version": "1.0.1",
  6101. "source": {
  6102. "type": "git",
  6103. "url": "https://github.com/php-fig/cache.git",
  6104. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  6105. },
  6106. "dist": {
  6107. "type": "zip",
  6108. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  6109. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  6110. "shasum": "",
  6111. "mirrors": [
  6112. {
  6113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6114. "preferred": true
  6115. }
  6116. ]
  6117. },
  6118. "require": {
  6119. "php": ">=5.3.0"
  6120. },
  6121. "type": "library",
  6122. "extra": {
  6123. "branch-alias": {
  6124. "dev-master": "1.0.x-dev"
  6125. }
  6126. },
  6127. "autoload": {
  6128. "psr-4": {
  6129. "Psr\\Cache\\": "src/"
  6130. }
  6131. },
  6132. "notification-url": "https://packagist.org/downloads/",
  6133. "license": [
  6134. "MIT"
  6135. ],
  6136. "authors": [
  6137. {
  6138. "name": "PHP-FIG",
  6139. "homepage": "http://www.php-fig.org/"
  6140. }
  6141. ],
  6142. "description": "Common interface for caching libraries",
  6143. "keywords": [
  6144. "cache",
  6145. "psr",
  6146. "psr-6"
  6147. ],
  6148. "support": {
  6149. "source": "https://github.com/php-fig/cache/tree/master"
  6150. },
  6151. "time": "2016-08-06T20:24:11+00:00"
  6152. },
  6153. {
  6154. "name": "psr/container",
  6155. "version": "1.1.1",
  6156. "source": {
  6157. "type": "git",
  6158. "url": "https://github.com/php-fig/container.git",
  6159. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  6160. },
  6161. "dist": {
  6162. "type": "zip",
  6163. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  6164. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  6165. "shasum": "",
  6166. "mirrors": [
  6167. {
  6168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6169. "preferred": true
  6170. }
  6171. ]
  6172. },
  6173. "require": {
  6174. "php": ">=7.2.0"
  6175. },
  6176. "type": "library",
  6177. "autoload": {
  6178. "psr-4": {
  6179. "Psr\\Container\\": "src/"
  6180. }
  6181. },
  6182. "notification-url": "https://packagist.org/downloads/",
  6183. "license": [
  6184. "MIT"
  6185. ],
  6186. "authors": [
  6187. {
  6188. "name": "PHP-FIG",
  6189. "homepage": "https://www.php-fig.org/"
  6190. }
  6191. ],
  6192. "description": "Common Container Interface (PHP FIG PSR-11)",
  6193. "homepage": "https://github.com/php-fig/container",
  6194. "keywords": [
  6195. "PSR-11",
  6196. "container",
  6197. "container-interface",
  6198. "container-interop",
  6199. "psr"
  6200. ],
  6201. "support": {
  6202. "issues": "https://github.com/php-fig/container/issues",
  6203. "source": "https://github.com/php-fig/container/tree/1.1.1"
  6204. },
  6205. "time": "2021-03-05T17:36:06+00:00"
  6206. },
  6207. {
  6208. "name": "psr/http-client",
  6209. "version": "1.0.1",
  6210. "source": {
  6211. "type": "git",
  6212. "url": "https://github.com/php-fig/http-client.git",
  6213. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  6214. },
  6215. "dist": {
  6216. "type": "zip",
  6217. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  6218. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  6219. "shasum": "",
  6220. "mirrors": [
  6221. {
  6222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6223. "preferred": true
  6224. }
  6225. ]
  6226. },
  6227. "require": {
  6228. "php": "^7.0 || ^8.0",
  6229. "psr/http-message": "^1.0"
  6230. },
  6231. "type": "library",
  6232. "extra": {
  6233. "branch-alias": {
  6234. "dev-master": "1.0.x-dev"
  6235. }
  6236. },
  6237. "autoload": {
  6238. "psr-4": {
  6239. "Psr\\Http\\Client\\": "src/"
  6240. }
  6241. },
  6242. "notification-url": "https://packagist.org/downloads/",
  6243. "license": [
  6244. "MIT"
  6245. ],
  6246. "authors": [
  6247. {
  6248. "name": "PHP-FIG",
  6249. "homepage": "http://www.php-fig.org/"
  6250. }
  6251. ],
  6252. "description": "Common interface for HTTP clients",
  6253. "homepage": "https://github.com/php-fig/http-client",
  6254. "keywords": [
  6255. "http",
  6256. "http-client",
  6257. "psr",
  6258. "psr-18"
  6259. ],
  6260. "support": {
  6261. "source": "https://github.com/php-fig/http-client/tree/master"
  6262. },
  6263. "time": "2020-06-29T06:28:15+00:00"
  6264. },
  6265. {
  6266. "name": "psr/http-factory",
  6267. "version": "1.0.1",
  6268. "source": {
  6269. "type": "git",
  6270. "url": "https://github.com/php-fig/http-factory.git",
  6271. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  6272. },
  6273. "dist": {
  6274. "type": "zip",
  6275. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  6276. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  6277. "shasum": "",
  6278. "mirrors": [
  6279. {
  6280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6281. "preferred": true
  6282. }
  6283. ]
  6284. },
  6285. "require": {
  6286. "php": ">=7.0.0",
  6287. "psr/http-message": "^1.0"
  6288. },
  6289. "type": "library",
  6290. "extra": {
  6291. "branch-alias": {
  6292. "dev-master": "1.0.x-dev"
  6293. }
  6294. },
  6295. "autoload": {
  6296. "psr-4": {
  6297. "Psr\\Http\\Message\\": "src/"
  6298. }
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "MIT"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "PHP-FIG",
  6307. "homepage": "http://www.php-fig.org/"
  6308. }
  6309. ],
  6310. "description": "Common interfaces for PSR-7 HTTP message factories",
  6311. "keywords": [
  6312. "factory",
  6313. "http",
  6314. "message",
  6315. "psr",
  6316. "psr-17",
  6317. "psr-7",
  6318. "request",
  6319. "response"
  6320. ],
  6321. "support": {
  6322. "source": "https://github.com/php-fig/http-factory/tree/master"
  6323. },
  6324. "time": "2019-04-30T12:38:16+00:00"
  6325. },
  6326. {
  6327. "name": "psr/http-message",
  6328. "version": "1.0.1",
  6329. "source": {
  6330. "type": "git",
  6331. "url": "https://github.com/php-fig/http-message.git",
  6332. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  6333. },
  6334. "dist": {
  6335. "type": "zip",
  6336. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  6337. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  6338. "shasum": "",
  6339. "mirrors": [
  6340. {
  6341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6342. "preferred": true
  6343. }
  6344. ]
  6345. },
  6346. "require": {
  6347. "php": ">=5.3.0"
  6348. },
  6349. "type": "library",
  6350. "extra": {
  6351. "branch-alias": {
  6352. "dev-master": "1.0.x-dev"
  6353. }
  6354. },
  6355. "autoload": {
  6356. "psr-4": {
  6357. "Psr\\Http\\Message\\": "src/"
  6358. }
  6359. },
  6360. "notification-url": "https://packagist.org/downloads/",
  6361. "license": [
  6362. "MIT"
  6363. ],
  6364. "authors": [
  6365. {
  6366. "name": "PHP-FIG",
  6367. "homepage": "http://www.php-fig.org/"
  6368. }
  6369. ],
  6370. "description": "Common interface for HTTP messages",
  6371. "homepage": "https://github.com/php-fig/http-message",
  6372. "keywords": [
  6373. "http",
  6374. "http-message",
  6375. "psr",
  6376. "psr-7",
  6377. "request",
  6378. "response"
  6379. ],
  6380. "support": {
  6381. "source": "https://github.com/php-fig/http-message/tree/master"
  6382. },
  6383. "time": "2016-08-06T14:39:51+00:00"
  6384. },
  6385. {
  6386. "name": "psr/log",
  6387. "version": "1.1.4",
  6388. "source": {
  6389. "type": "git",
  6390. "url": "https://github.com/php-fig/log.git",
  6391. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  6392. },
  6393. "dist": {
  6394. "type": "zip",
  6395. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  6396. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  6397. "shasum": "",
  6398. "mirrors": [
  6399. {
  6400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6401. "preferred": true
  6402. }
  6403. ]
  6404. },
  6405. "require": {
  6406. "php": ">=5.3.0"
  6407. },
  6408. "type": "library",
  6409. "extra": {
  6410. "branch-alias": {
  6411. "dev-master": "1.1.x-dev"
  6412. }
  6413. },
  6414. "autoload": {
  6415. "psr-4": {
  6416. "Psr\\Log\\": "Psr/Log/"
  6417. }
  6418. },
  6419. "notification-url": "https://packagist.org/downloads/",
  6420. "license": [
  6421. "MIT"
  6422. ],
  6423. "authors": [
  6424. {
  6425. "name": "PHP-FIG",
  6426. "homepage": "https://www.php-fig.org/"
  6427. }
  6428. ],
  6429. "description": "Common interface for logging libraries",
  6430. "homepage": "https://github.com/php-fig/log",
  6431. "keywords": [
  6432. "log",
  6433. "psr",
  6434. "psr-3"
  6435. ],
  6436. "support": {
  6437. "source": "https://github.com/php-fig/log/tree/1.1.4"
  6438. },
  6439. "time": "2021-05-03T11:20:27+00:00"
  6440. },
  6441. {
  6442. "name": "psr/simple-cache",
  6443. "version": "1.0.1",
  6444. "source": {
  6445. "type": "git",
  6446. "url": "https://github.com/php-fig/simple-cache.git",
  6447. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  6448. },
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6452. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6453. "shasum": "",
  6454. "mirrors": [
  6455. {
  6456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6457. "preferred": true
  6458. }
  6459. ]
  6460. },
  6461. "require": {
  6462. "php": ">=5.3.0"
  6463. },
  6464. "type": "library",
  6465. "extra": {
  6466. "branch-alias": {
  6467. "dev-master": "1.0.x-dev"
  6468. }
  6469. },
  6470. "autoload": {
  6471. "psr-4": {
  6472. "Psr\\SimpleCache\\": "src/"
  6473. }
  6474. },
  6475. "notification-url": "https://packagist.org/downloads/",
  6476. "license": [
  6477. "MIT"
  6478. ],
  6479. "authors": [
  6480. {
  6481. "name": "PHP-FIG",
  6482. "homepage": "http://www.php-fig.org/"
  6483. }
  6484. ],
  6485. "description": "Common interfaces for simple caching",
  6486. "keywords": [
  6487. "cache",
  6488. "caching",
  6489. "psr",
  6490. "psr-16",
  6491. "simple-cache"
  6492. ],
  6493. "support": {
  6494. "source": "https://github.com/php-fig/simple-cache/tree/master"
  6495. },
  6496. "time": "2017-10-23T01:57:42+00:00"
  6497. },
  6498. {
  6499. "name": "qiniu/php-sdk",
  6500. "version": "v7.7.0",
  6501. "source": {
  6502. "type": "git",
  6503. "url": "https://github.com/qiniu/php-sdk.git",
  6504. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1"
  6505. },
  6506. "dist": {
  6507. "type": "zip",
  6508. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  6509. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  6510. "shasum": "",
  6511. "mirrors": [
  6512. {
  6513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6514. "preferred": true
  6515. }
  6516. ]
  6517. },
  6518. "require": {
  6519. "myclabs/php-enum": "1.6.6",
  6520. "php": ">=5.3.3"
  6521. },
  6522. "require-dev": {
  6523. "paragonie/random_compat": ">=2",
  6524. "phpunit/phpunit": "~4.0",
  6525. "squizlabs/php_codesniffer": "~3.6"
  6526. },
  6527. "type": "library",
  6528. "autoload": {
  6529. "files": [
  6530. "src/Qiniu/functions.php"
  6531. ],
  6532. "psr-4": {
  6533. "Qiniu\\": "src/Qiniu"
  6534. }
  6535. },
  6536. "notification-url": "https://packagist.org/downloads/",
  6537. "license": [
  6538. "MIT"
  6539. ],
  6540. "authors": [
  6541. {
  6542. "name": "Qiniu",
  6543. "email": "sdk@qiniu.com",
  6544. "homepage": "http://www.qiniu.com"
  6545. }
  6546. ],
  6547. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  6548. "homepage": "http://developer.qiniu.com/",
  6549. "keywords": [
  6550. "cloud",
  6551. "qiniu",
  6552. "sdk",
  6553. "storage"
  6554. ],
  6555. "support": {
  6556. "issues": "https://github.com/qiniu/php-sdk/issues",
  6557. "source": "https://github.com/qiniu/php-sdk/tree/v7.7.0"
  6558. },
  6559. "time": "2022-09-02T10:53:05+00:00"
  6560. },
  6561. {
  6562. "name": "ralouphie/getallheaders",
  6563. "version": "3.0.3",
  6564. "source": {
  6565. "type": "git",
  6566. "url": "https://github.com/ralouphie/getallheaders.git",
  6567. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6568. },
  6569. "dist": {
  6570. "type": "zip",
  6571. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6572. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6573. "shasum": "",
  6574. "mirrors": [
  6575. {
  6576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6577. "preferred": true
  6578. }
  6579. ]
  6580. },
  6581. "require": {
  6582. "php": ">=5.6"
  6583. },
  6584. "require-dev": {
  6585. "php-coveralls/php-coveralls": "^2.1",
  6586. "phpunit/phpunit": "^5 || ^6.5"
  6587. },
  6588. "type": "library",
  6589. "autoload": {
  6590. "files": [
  6591. "src/getallheaders.php"
  6592. ]
  6593. },
  6594. "notification-url": "https://packagist.org/downloads/",
  6595. "license": [
  6596. "MIT"
  6597. ],
  6598. "authors": [
  6599. {
  6600. "name": "Ralph Khattar",
  6601. "email": "ralph.khattar@gmail.com"
  6602. }
  6603. ],
  6604. "description": "A polyfill for getallheaders.",
  6605. "support": {
  6606. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6607. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6608. },
  6609. "time": "2019-03-08T08:55:37+00:00"
  6610. },
  6611. {
  6612. "name": "react/promise",
  6613. "version": "v2.9.0",
  6614. "source": {
  6615. "type": "git",
  6616. "url": "https://github.com/reactphp/promise.git",
  6617. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
  6618. },
  6619. "dist": {
  6620. "type": "zip",
  6621. "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  6622. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  6623. "shasum": "",
  6624. "mirrors": [
  6625. {
  6626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6627. "preferred": true
  6628. }
  6629. ]
  6630. },
  6631. "require": {
  6632. "php": ">=5.4.0"
  6633. },
  6634. "require-dev": {
  6635. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  6636. },
  6637. "type": "library",
  6638. "autoload": {
  6639. "files": [
  6640. "src/functions_include.php"
  6641. ],
  6642. "psr-4": {
  6643. "React\\Promise\\": "src/"
  6644. }
  6645. },
  6646. "notification-url": "https://packagist.org/downloads/",
  6647. "license": [
  6648. "MIT"
  6649. ],
  6650. "authors": [
  6651. {
  6652. "name": "Jan Sorgalla",
  6653. "email": "jsorgalla@gmail.com",
  6654. "homepage": "https://sorgalla.com/"
  6655. },
  6656. {
  6657. "name": "Christian Lück",
  6658. "email": "christian@clue.engineering",
  6659. "homepage": "https://clue.engineering/"
  6660. },
  6661. {
  6662. "name": "Cees-Jan Kiewiet",
  6663. "email": "reactphp@ceesjankiewiet.nl",
  6664. "homepage": "https://wyrihaximus.net/"
  6665. },
  6666. {
  6667. "name": "Chris Boden",
  6668. "email": "cboden@gmail.com",
  6669. "homepage": "https://cboden.dev/"
  6670. }
  6671. ],
  6672. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  6673. "keywords": [
  6674. "promise",
  6675. "promises"
  6676. ],
  6677. "support": {
  6678. "issues": "https://github.com/reactphp/promise/issues",
  6679. "source": "https://github.com/reactphp/promise/tree/v2.9.0"
  6680. },
  6681. "funding": [
  6682. {
  6683. "url": "https://github.com/WyriHaximus",
  6684. "type": "github"
  6685. },
  6686. {
  6687. "url": "https://github.com/clue",
  6688. "type": "github"
  6689. }
  6690. ],
  6691. "time": "2022-02-11T10:27:51+00:00"
  6692. },
  6693. {
  6694. "name": "seld/jsonlint",
  6695. "version": "1.9.0",
  6696. "source": {
  6697. "type": "git",
  6698. "url": "https://github.com/Seldaek/jsonlint.git",
  6699. "reference": "4211420d25eba80712bff236a98960ef68b866b7"
  6700. },
  6701. "dist": {
  6702. "type": "zip",
  6703. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7",
  6704. "reference": "4211420d25eba80712bff236a98960ef68b866b7",
  6705. "shasum": "",
  6706. "mirrors": [
  6707. {
  6708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6709. "preferred": true
  6710. }
  6711. ]
  6712. },
  6713. "require": {
  6714. "php": "^5.3 || ^7.0 || ^8.0"
  6715. },
  6716. "require-dev": {
  6717. "phpstan/phpstan": "^1.5",
  6718. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
  6719. },
  6720. "bin": [
  6721. "bin/jsonlint"
  6722. ],
  6723. "type": "library",
  6724. "autoload": {
  6725. "psr-4": {
  6726. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  6727. }
  6728. },
  6729. "notification-url": "https://packagist.org/downloads/",
  6730. "license": [
  6731. "MIT"
  6732. ],
  6733. "authors": [
  6734. {
  6735. "name": "Jordi Boggiano",
  6736. "email": "j.boggiano@seld.be",
  6737. "homepage": "http://seld.be"
  6738. }
  6739. ],
  6740. "description": "JSON Linter",
  6741. "keywords": [
  6742. "json",
  6743. "linter",
  6744. "parser",
  6745. "validator"
  6746. ],
  6747. "support": {
  6748. "issues": "https://github.com/Seldaek/jsonlint/issues",
  6749. "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0"
  6750. },
  6751. "funding": [
  6752. {
  6753. "url": "https://github.com/Seldaek",
  6754. "type": "github"
  6755. },
  6756. {
  6757. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  6758. "type": "tidelift"
  6759. }
  6760. ],
  6761. "time": "2022-04-01T13:37:23+00:00"
  6762. },
  6763. {
  6764. "name": "seld/phar-utils",
  6765. "version": "1.2.1",
  6766. "source": {
  6767. "type": "git",
  6768. "url": "https://github.com/Seldaek/phar-utils.git",
  6769. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c"
  6770. },
  6771. "dist": {
  6772. "type": "zip",
  6773. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  6774. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  6775. "shasum": "",
  6776. "mirrors": [
  6777. {
  6778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6779. "preferred": true
  6780. }
  6781. ]
  6782. },
  6783. "require": {
  6784. "php": ">=5.3"
  6785. },
  6786. "type": "library",
  6787. "extra": {
  6788. "branch-alias": {
  6789. "dev-master": "1.x-dev"
  6790. }
  6791. },
  6792. "autoload": {
  6793. "psr-4": {
  6794. "Seld\\PharUtils\\": "src/"
  6795. }
  6796. },
  6797. "notification-url": "https://packagist.org/downloads/",
  6798. "license": [
  6799. "MIT"
  6800. ],
  6801. "authors": [
  6802. {
  6803. "name": "Jordi Boggiano",
  6804. "email": "j.boggiano@seld.be"
  6805. }
  6806. ],
  6807. "description": "PHAR file format utilities, for when PHP phars you up",
  6808. "keywords": [
  6809. "phar"
  6810. ],
  6811. "support": {
  6812. "issues": "https://github.com/Seldaek/phar-utils/issues",
  6813. "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1"
  6814. },
  6815. "time": "2022-08-31T10:31:18+00:00"
  6816. },
  6817. {
  6818. "name": "symfony/cache",
  6819. "version": "v5.4.15",
  6820. "source": {
  6821. "type": "git",
  6822. "url": "https://github.com/symfony/cache.git",
  6823. "reference": "60e87188abbacd29ccde44d69c5392a33e888e98"
  6824. },
  6825. "dist": {
  6826. "type": "zip",
  6827. "url": "https://api.github.com/repos/symfony/cache/zipball/60e87188abbacd29ccde44d69c5392a33e888e98",
  6828. "reference": "60e87188abbacd29ccde44d69c5392a33e888e98",
  6829. "shasum": "",
  6830. "mirrors": [
  6831. {
  6832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6833. "preferred": true
  6834. }
  6835. ]
  6836. },
  6837. "require": {
  6838. "php": ">=7.2.5",
  6839. "psr/cache": "^1.0|^2.0",
  6840. "psr/log": "^1.1|^2|^3",
  6841. "symfony/cache-contracts": "^1.1.7|^2",
  6842. "symfony/deprecation-contracts": "^2.1|^3",
  6843. "symfony/polyfill-php73": "^1.9",
  6844. "symfony/polyfill-php80": "^1.16",
  6845. "symfony/service-contracts": "^1.1|^2|^3",
  6846. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6847. },
  6848. "conflict": {
  6849. "doctrine/dbal": "<2.13.1",
  6850. "symfony/dependency-injection": "<4.4",
  6851. "symfony/http-kernel": "<4.4",
  6852. "symfony/var-dumper": "<4.4"
  6853. },
  6854. "provide": {
  6855. "psr/cache-implementation": "1.0|2.0",
  6856. "psr/simple-cache-implementation": "1.0|2.0",
  6857. "symfony/cache-implementation": "1.0|2.0"
  6858. },
  6859. "require-dev": {
  6860. "cache/integration-tests": "dev-master",
  6861. "doctrine/cache": "^1.6|^2.0",
  6862. "doctrine/dbal": "^2.13.1|^3.0",
  6863. "predis/predis": "^1.1",
  6864. "psr/simple-cache": "^1.0|^2.0",
  6865. "symfony/config": "^4.4|^5.0|^6.0",
  6866. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6867. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6868. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6869. "symfony/messenger": "^4.4|^5.0|^6.0",
  6870. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6871. },
  6872. "type": "library",
  6873. "autoload": {
  6874. "psr-4": {
  6875. "Symfony\\Component\\Cache\\": ""
  6876. },
  6877. "exclude-from-classmap": [
  6878. "/Tests/"
  6879. ]
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Nicolas Grekas",
  6888. "email": "p@tchwork.com"
  6889. },
  6890. {
  6891. "name": "Symfony Community",
  6892. "homepage": "https://symfony.com/contributors"
  6893. }
  6894. ],
  6895. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6896. "homepage": "https://symfony.com",
  6897. "keywords": [
  6898. "caching",
  6899. "psr6"
  6900. ],
  6901. "support": {
  6902. "source": "https://github.com/symfony/cache/tree/v5.4.15"
  6903. },
  6904. "funding": [
  6905. {
  6906. "url": "https://symfony.com/sponsor",
  6907. "type": "custom"
  6908. },
  6909. {
  6910. "url": "https://github.com/fabpot",
  6911. "type": "github"
  6912. },
  6913. {
  6914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6915. "type": "tidelift"
  6916. }
  6917. ],
  6918. "time": "2022-10-27T07:55:40+00:00"
  6919. },
  6920. {
  6921. "name": "symfony/cache-contracts",
  6922. "version": "v2.5.2",
  6923. "source": {
  6924. "type": "git",
  6925. "url": "https://github.com/symfony/cache-contracts.git",
  6926. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  6927. },
  6928. "dist": {
  6929. "type": "zip",
  6930. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  6931. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  6932. "shasum": "",
  6933. "mirrors": [
  6934. {
  6935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6936. "preferred": true
  6937. }
  6938. ]
  6939. },
  6940. "require": {
  6941. "php": ">=7.2.5",
  6942. "psr/cache": "^1.0|^2.0|^3.0"
  6943. },
  6944. "suggest": {
  6945. "symfony/cache-implementation": ""
  6946. },
  6947. "type": "library",
  6948. "extra": {
  6949. "branch-alias": {
  6950. "dev-main": "2.5-dev"
  6951. },
  6952. "thanks": {
  6953. "name": "symfony/contracts",
  6954. "url": "https://github.com/symfony/contracts"
  6955. }
  6956. },
  6957. "autoload": {
  6958. "psr-4": {
  6959. "Symfony\\Contracts\\Cache\\": ""
  6960. }
  6961. },
  6962. "notification-url": "https://packagist.org/downloads/",
  6963. "license": [
  6964. "MIT"
  6965. ],
  6966. "authors": [
  6967. {
  6968. "name": "Nicolas Grekas",
  6969. "email": "p@tchwork.com"
  6970. },
  6971. {
  6972. "name": "Symfony Community",
  6973. "homepage": "https://symfony.com/contributors"
  6974. }
  6975. ],
  6976. "description": "Generic abstractions related to caching",
  6977. "homepage": "https://symfony.com",
  6978. "keywords": [
  6979. "abstractions",
  6980. "contracts",
  6981. "decoupling",
  6982. "interfaces",
  6983. "interoperability",
  6984. "standards"
  6985. ],
  6986. "support": {
  6987. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  6988. },
  6989. "funding": [
  6990. {
  6991. "url": "https://symfony.com/sponsor",
  6992. "type": "custom"
  6993. },
  6994. {
  6995. "url": "https://github.com/fabpot",
  6996. "type": "github"
  6997. },
  6998. {
  6999. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7000. "type": "tidelift"
  7001. }
  7002. ],
  7003. "time": "2022-01-02T09:53:40+00:00"
  7004. },
  7005. {
  7006. "name": "symfony/console",
  7007. "version": "v4.4.49",
  7008. "source": {
  7009. "type": "git",
  7010. "url": "https://github.com/symfony/console.git",
  7011. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  7012. },
  7013. "dist": {
  7014. "type": "zip",
  7015. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7016. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7017. "shasum": "",
  7018. "mirrors": [
  7019. {
  7020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7021. "preferred": true
  7022. }
  7023. ]
  7024. },
  7025. "require": {
  7026. "php": ">=7.1.3",
  7027. "symfony/polyfill-mbstring": "~1.0",
  7028. "symfony/polyfill-php73": "^1.8",
  7029. "symfony/polyfill-php80": "^1.16",
  7030. "symfony/service-contracts": "^1.1|^2"
  7031. },
  7032. "conflict": {
  7033. "psr/log": ">=3",
  7034. "symfony/dependency-injection": "<3.4",
  7035. "symfony/event-dispatcher": "<4.3|>=5",
  7036. "symfony/lock": "<4.4",
  7037. "symfony/process": "<3.3"
  7038. },
  7039. "provide": {
  7040. "psr/log-implementation": "1.0|2.0"
  7041. },
  7042. "require-dev": {
  7043. "psr/log": "^1|^2",
  7044. "symfony/config": "^3.4|^4.0|^5.0",
  7045. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7046. "symfony/event-dispatcher": "^4.3",
  7047. "symfony/lock": "^4.4|^5.0",
  7048. "symfony/process": "^3.4|^4.0|^5.0",
  7049. "symfony/var-dumper": "^4.3|^5.0"
  7050. },
  7051. "suggest": {
  7052. "psr/log": "For using the console logger",
  7053. "symfony/event-dispatcher": "",
  7054. "symfony/lock": "",
  7055. "symfony/process": ""
  7056. },
  7057. "type": "library",
  7058. "autoload": {
  7059. "psr-4": {
  7060. "Symfony\\Component\\Console\\": ""
  7061. },
  7062. "exclude-from-classmap": [
  7063. "/Tests/"
  7064. ]
  7065. },
  7066. "notification-url": "https://packagist.org/downloads/",
  7067. "license": [
  7068. "MIT"
  7069. ],
  7070. "authors": [
  7071. {
  7072. "name": "Fabien Potencier",
  7073. "email": "fabien@symfony.com"
  7074. },
  7075. {
  7076. "name": "Symfony Community",
  7077. "homepage": "https://symfony.com/contributors"
  7078. }
  7079. ],
  7080. "description": "Eases the creation of beautiful and testable command line interfaces",
  7081. "homepage": "https://symfony.com",
  7082. "support": {
  7083. "source": "https://github.com/symfony/console/tree/v4.4.49"
  7084. },
  7085. "funding": [
  7086. {
  7087. "url": "https://symfony.com/sponsor",
  7088. "type": "custom"
  7089. },
  7090. {
  7091. "url": "https://github.com/fabpot",
  7092. "type": "github"
  7093. },
  7094. {
  7095. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7096. "type": "tidelift"
  7097. }
  7098. ],
  7099. "time": "2022-11-05T17:10:16+00:00"
  7100. },
  7101. {
  7102. "name": "symfony/debug",
  7103. "version": "v4.4.41",
  7104. "source": {
  7105. "type": "git",
  7106. "url": "https://github.com/symfony/debug.git",
  7107. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5"
  7108. },
  7109. "dist": {
  7110. "type": "zip",
  7111. "url": "https://api.github.com/repos/symfony/debug/zipball/6637e62480b60817b9a6984154a533e8e64c6bd5",
  7112. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5",
  7113. "shasum": "",
  7114. "mirrors": [
  7115. {
  7116. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7117. "preferred": true
  7118. }
  7119. ]
  7120. },
  7121. "require": {
  7122. "php": ">=7.1.3",
  7123. "psr/log": "^1|^2|^3"
  7124. },
  7125. "conflict": {
  7126. "symfony/http-kernel": "<3.4"
  7127. },
  7128. "require-dev": {
  7129. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  7130. },
  7131. "type": "library",
  7132. "autoload": {
  7133. "psr-4": {
  7134. "Symfony\\Component\\Debug\\": ""
  7135. },
  7136. "exclude-from-classmap": [
  7137. "/Tests/"
  7138. ]
  7139. },
  7140. "notification-url": "https://packagist.org/downloads/",
  7141. "license": [
  7142. "MIT"
  7143. ],
  7144. "authors": [
  7145. {
  7146. "name": "Fabien Potencier",
  7147. "email": "fabien@symfony.com"
  7148. },
  7149. {
  7150. "name": "Symfony Community",
  7151. "homepage": "https://symfony.com/contributors"
  7152. }
  7153. ],
  7154. "description": "Provides tools to ease debugging PHP code",
  7155. "homepage": "https://symfony.com",
  7156. "support": {
  7157. "source": "https://github.com/symfony/debug/tree/v4.4.41"
  7158. },
  7159. "funding": [
  7160. {
  7161. "url": "https://symfony.com/sponsor",
  7162. "type": "custom"
  7163. },
  7164. {
  7165. "url": "https://github.com/fabpot",
  7166. "type": "github"
  7167. },
  7168. {
  7169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7170. "type": "tidelift"
  7171. }
  7172. ],
  7173. "abandoned": "symfony/error-handler",
  7174. "time": "2022-04-12T15:19:55+00:00"
  7175. },
  7176. {
  7177. "name": "symfony/deprecation-contracts",
  7178. "version": "v2.5.2",
  7179. "source": {
  7180. "type": "git",
  7181. "url": "https://github.com/symfony/deprecation-contracts.git",
  7182. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  7183. },
  7184. "dist": {
  7185. "type": "zip",
  7186. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  7187. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  7188. "shasum": "",
  7189. "mirrors": [
  7190. {
  7191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7192. "preferred": true
  7193. }
  7194. ]
  7195. },
  7196. "require": {
  7197. "php": ">=7.1"
  7198. },
  7199. "type": "library",
  7200. "extra": {
  7201. "branch-alias": {
  7202. "dev-main": "2.5-dev"
  7203. },
  7204. "thanks": {
  7205. "name": "symfony/contracts",
  7206. "url": "https://github.com/symfony/contracts"
  7207. }
  7208. },
  7209. "autoload": {
  7210. "files": [
  7211. "function.php"
  7212. ]
  7213. },
  7214. "notification-url": "https://packagist.org/downloads/",
  7215. "license": [
  7216. "MIT"
  7217. ],
  7218. "authors": [
  7219. {
  7220. "name": "Nicolas Grekas",
  7221. "email": "p@tchwork.com"
  7222. },
  7223. {
  7224. "name": "Symfony Community",
  7225. "homepage": "https://symfony.com/contributors"
  7226. }
  7227. ],
  7228. "description": "A generic function and convention to trigger deprecation notices",
  7229. "homepage": "https://symfony.com",
  7230. "support": {
  7231. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  7232. },
  7233. "funding": [
  7234. {
  7235. "url": "https://symfony.com/sponsor",
  7236. "type": "custom"
  7237. },
  7238. {
  7239. "url": "https://github.com/fabpot",
  7240. "type": "github"
  7241. },
  7242. {
  7243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7244. "type": "tidelift"
  7245. }
  7246. ],
  7247. "time": "2022-01-02T09:53:40+00:00"
  7248. },
  7249. {
  7250. "name": "symfony/error-handler",
  7251. "version": "v4.4.44",
  7252. "source": {
  7253. "type": "git",
  7254. "url": "https://github.com/symfony/error-handler.git",
  7255. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  7256. },
  7257. "dist": {
  7258. "type": "zip",
  7259. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  7260. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  7261. "shasum": "",
  7262. "mirrors": [
  7263. {
  7264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7265. "preferred": true
  7266. }
  7267. ]
  7268. },
  7269. "require": {
  7270. "php": ">=7.1.3",
  7271. "psr/log": "^1|^2|^3",
  7272. "symfony/debug": "^4.4.5",
  7273. "symfony/var-dumper": "^4.4|^5.0"
  7274. },
  7275. "require-dev": {
  7276. "symfony/http-kernel": "^4.4|^5.0",
  7277. "symfony/serializer": "^4.4|^5.0"
  7278. },
  7279. "type": "library",
  7280. "autoload": {
  7281. "psr-4": {
  7282. "Symfony\\Component\\ErrorHandler\\": ""
  7283. },
  7284. "exclude-from-classmap": [
  7285. "/Tests/"
  7286. ]
  7287. },
  7288. "notification-url": "https://packagist.org/downloads/",
  7289. "license": [
  7290. "MIT"
  7291. ],
  7292. "authors": [
  7293. {
  7294. "name": "Fabien Potencier",
  7295. "email": "fabien@symfony.com"
  7296. },
  7297. {
  7298. "name": "Symfony Community",
  7299. "homepage": "https://symfony.com/contributors"
  7300. }
  7301. ],
  7302. "description": "Provides tools to manage errors and ease debugging PHP code",
  7303. "homepage": "https://symfony.com",
  7304. "support": {
  7305. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  7306. },
  7307. "funding": [
  7308. {
  7309. "url": "https://symfony.com/sponsor",
  7310. "type": "custom"
  7311. },
  7312. {
  7313. "url": "https://github.com/fabpot",
  7314. "type": "github"
  7315. },
  7316. {
  7317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7318. "type": "tidelift"
  7319. }
  7320. ],
  7321. "time": "2022-07-28T16:29:46+00:00"
  7322. },
  7323. {
  7324. "name": "symfony/event-dispatcher",
  7325. "version": "v4.4.44",
  7326. "source": {
  7327. "type": "git",
  7328. "url": "https://github.com/symfony/event-dispatcher.git",
  7329. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  7330. },
  7331. "dist": {
  7332. "type": "zip",
  7333. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  7334. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  7335. "shasum": "",
  7336. "mirrors": [
  7337. {
  7338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7339. "preferred": true
  7340. }
  7341. ]
  7342. },
  7343. "require": {
  7344. "php": ">=7.1.3",
  7345. "symfony/event-dispatcher-contracts": "^1.1",
  7346. "symfony/polyfill-php80": "^1.16"
  7347. },
  7348. "conflict": {
  7349. "symfony/dependency-injection": "<3.4"
  7350. },
  7351. "provide": {
  7352. "psr/event-dispatcher-implementation": "1.0",
  7353. "symfony/event-dispatcher-implementation": "1.1"
  7354. },
  7355. "require-dev": {
  7356. "psr/log": "^1|^2|^3",
  7357. "symfony/config": "^3.4|^4.0|^5.0",
  7358. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7359. "symfony/error-handler": "~3.4|~4.4",
  7360. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7361. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  7362. "symfony/service-contracts": "^1.1|^2",
  7363. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  7364. },
  7365. "suggest": {
  7366. "symfony/dependency-injection": "",
  7367. "symfony/http-kernel": ""
  7368. },
  7369. "type": "library",
  7370. "autoload": {
  7371. "psr-4": {
  7372. "Symfony\\Component\\EventDispatcher\\": ""
  7373. },
  7374. "exclude-from-classmap": [
  7375. "/Tests/"
  7376. ]
  7377. },
  7378. "notification-url": "https://packagist.org/downloads/",
  7379. "license": [
  7380. "MIT"
  7381. ],
  7382. "authors": [
  7383. {
  7384. "name": "Fabien Potencier",
  7385. "email": "fabien@symfony.com"
  7386. },
  7387. {
  7388. "name": "Symfony Community",
  7389. "homepage": "https://symfony.com/contributors"
  7390. }
  7391. ],
  7392. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7393. "homepage": "https://symfony.com",
  7394. "support": {
  7395. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  7396. },
  7397. "funding": [
  7398. {
  7399. "url": "https://symfony.com/sponsor",
  7400. "type": "custom"
  7401. },
  7402. {
  7403. "url": "https://github.com/fabpot",
  7404. "type": "github"
  7405. },
  7406. {
  7407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7408. "type": "tidelift"
  7409. }
  7410. ],
  7411. "time": "2022-07-20T09:59:04+00:00"
  7412. },
  7413. {
  7414. "name": "symfony/event-dispatcher-contracts",
  7415. "version": "v1.1.13",
  7416. "source": {
  7417. "type": "git",
  7418. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7419. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  7420. },
  7421. "dist": {
  7422. "type": "zip",
  7423. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  7424. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  7425. "shasum": "",
  7426. "mirrors": [
  7427. {
  7428. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7429. "preferred": true
  7430. }
  7431. ]
  7432. },
  7433. "require": {
  7434. "php": ">=7.1.3"
  7435. },
  7436. "suggest": {
  7437. "psr/event-dispatcher": "",
  7438. "symfony/event-dispatcher-implementation": ""
  7439. },
  7440. "type": "library",
  7441. "extra": {
  7442. "branch-alias": {
  7443. "dev-main": "1.1-dev"
  7444. },
  7445. "thanks": {
  7446. "name": "symfony/contracts",
  7447. "url": "https://github.com/symfony/contracts"
  7448. }
  7449. },
  7450. "autoload": {
  7451. "psr-4": {
  7452. "Symfony\\Contracts\\EventDispatcher\\": ""
  7453. }
  7454. },
  7455. "notification-url": "https://packagist.org/downloads/",
  7456. "license": [
  7457. "MIT"
  7458. ],
  7459. "authors": [
  7460. {
  7461. "name": "Nicolas Grekas",
  7462. "email": "p@tchwork.com"
  7463. },
  7464. {
  7465. "name": "Symfony Community",
  7466. "homepage": "https://symfony.com/contributors"
  7467. }
  7468. ],
  7469. "description": "Generic abstractions related to dispatching event",
  7470. "homepage": "https://symfony.com",
  7471. "keywords": [
  7472. "abstractions",
  7473. "contracts",
  7474. "decoupling",
  7475. "interfaces",
  7476. "interoperability",
  7477. "standards"
  7478. ],
  7479. "support": {
  7480. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  7481. },
  7482. "funding": [
  7483. {
  7484. "url": "https://symfony.com/sponsor",
  7485. "type": "custom"
  7486. },
  7487. {
  7488. "url": "https://github.com/fabpot",
  7489. "type": "github"
  7490. },
  7491. {
  7492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7493. "type": "tidelift"
  7494. }
  7495. ],
  7496. "time": "2022-01-02T09:41:36+00:00"
  7497. },
  7498. {
  7499. "name": "symfony/filesystem",
  7500. "version": "v5.4.13",
  7501. "source": {
  7502. "type": "git",
  7503. "url": "https://github.com/symfony/filesystem.git",
  7504. "reference": "ac09569844a9109a5966b9438fc29113ce77cf51"
  7505. },
  7506. "dist": {
  7507. "type": "zip",
  7508. "url": "https://api.github.com/repos/symfony/filesystem/zipball/ac09569844a9109a5966b9438fc29113ce77cf51",
  7509. "reference": "ac09569844a9109a5966b9438fc29113ce77cf51",
  7510. "shasum": "",
  7511. "mirrors": [
  7512. {
  7513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7514. "preferred": true
  7515. }
  7516. ]
  7517. },
  7518. "require": {
  7519. "php": ">=7.2.5",
  7520. "symfony/polyfill-ctype": "~1.8",
  7521. "symfony/polyfill-mbstring": "~1.8",
  7522. "symfony/polyfill-php80": "^1.16"
  7523. },
  7524. "type": "library",
  7525. "autoload": {
  7526. "psr-4": {
  7527. "Symfony\\Component\\Filesystem\\": ""
  7528. },
  7529. "exclude-from-classmap": [
  7530. "/Tests/"
  7531. ]
  7532. },
  7533. "notification-url": "https://packagist.org/downloads/",
  7534. "license": [
  7535. "MIT"
  7536. ],
  7537. "authors": [
  7538. {
  7539. "name": "Fabien Potencier",
  7540. "email": "fabien@symfony.com"
  7541. },
  7542. {
  7543. "name": "Symfony Community",
  7544. "homepage": "https://symfony.com/contributors"
  7545. }
  7546. ],
  7547. "description": "Provides basic utilities for the filesystem",
  7548. "homepage": "https://symfony.com",
  7549. "support": {
  7550. "source": "https://github.com/symfony/filesystem/tree/v5.4.13"
  7551. },
  7552. "funding": [
  7553. {
  7554. "url": "https://symfony.com/sponsor",
  7555. "type": "custom"
  7556. },
  7557. {
  7558. "url": "https://github.com/fabpot",
  7559. "type": "github"
  7560. },
  7561. {
  7562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7563. "type": "tidelift"
  7564. }
  7565. ],
  7566. "time": "2022-09-21T19:53:16+00:00"
  7567. },
  7568. {
  7569. "name": "symfony/finder",
  7570. "version": "v4.4.44",
  7571. "source": {
  7572. "type": "git",
  7573. "url": "https://github.com/symfony/finder.git",
  7574. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  7575. },
  7576. "dist": {
  7577. "type": "zip",
  7578. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  7579. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  7580. "shasum": "",
  7581. "mirrors": [
  7582. {
  7583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7584. "preferred": true
  7585. }
  7586. ]
  7587. },
  7588. "require": {
  7589. "php": ">=7.1.3",
  7590. "symfony/polyfill-php80": "^1.16"
  7591. },
  7592. "type": "library",
  7593. "autoload": {
  7594. "psr-4": {
  7595. "Symfony\\Component\\Finder\\": ""
  7596. },
  7597. "exclude-from-classmap": [
  7598. "/Tests/"
  7599. ]
  7600. },
  7601. "notification-url": "https://packagist.org/downloads/",
  7602. "license": [
  7603. "MIT"
  7604. ],
  7605. "authors": [
  7606. {
  7607. "name": "Fabien Potencier",
  7608. "email": "fabien@symfony.com"
  7609. },
  7610. {
  7611. "name": "Symfony Community",
  7612. "homepage": "https://symfony.com/contributors"
  7613. }
  7614. ],
  7615. "description": "Finds files and directories via an intuitive fluent interface",
  7616. "homepage": "https://symfony.com",
  7617. "support": {
  7618. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  7619. },
  7620. "funding": [
  7621. {
  7622. "url": "https://symfony.com/sponsor",
  7623. "type": "custom"
  7624. },
  7625. {
  7626. "url": "https://github.com/fabpot",
  7627. "type": "github"
  7628. },
  7629. {
  7630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7631. "type": "tidelift"
  7632. }
  7633. ],
  7634. "time": "2022-07-29T07:35:46+00:00"
  7635. },
  7636. {
  7637. "name": "symfony/http-client-contracts",
  7638. "version": "v2.5.2",
  7639. "source": {
  7640. "type": "git",
  7641. "url": "https://github.com/symfony/http-client-contracts.git",
  7642. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70"
  7643. },
  7644. "dist": {
  7645. "type": "zip",
  7646. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  7647. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  7648. "shasum": "",
  7649. "mirrors": [
  7650. {
  7651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7652. "preferred": true
  7653. }
  7654. ]
  7655. },
  7656. "require": {
  7657. "php": ">=7.2.5"
  7658. },
  7659. "suggest": {
  7660. "symfony/http-client-implementation": ""
  7661. },
  7662. "type": "library",
  7663. "extra": {
  7664. "branch-alias": {
  7665. "dev-main": "2.5-dev"
  7666. },
  7667. "thanks": {
  7668. "name": "symfony/contracts",
  7669. "url": "https://github.com/symfony/contracts"
  7670. }
  7671. },
  7672. "autoload": {
  7673. "psr-4": {
  7674. "Symfony\\Contracts\\HttpClient\\": ""
  7675. }
  7676. },
  7677. "notification-url": "https://packagist.org/downloads/",
  7678. "license": [
  7679. "MIT"
  7680. ],
  7681. "authors": [
  7682. {
  7683. "name": "Nicolas Grekas",
  7684. "email": "p@tchwork.com"
  7685. },
  7686. {
  7687. "name": "Symfony Community",
  7688. "homepage": "https://symfony.com/contributors"
  7689. }
  7690. ],
  7691. "description": "Generic abstractions related to HTTP clients",
  7692. "homepage": "https://symfony.com",
  7693. "keywords": [
  7694. "abstractions",
  7695. "contracts",
  7696. "decoupling",
  7697. "interfaces",
  7698. "interoperability",
  7699. "standards"
  7700. ],
  7701. "support": {
  7702. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2"
  7703. },
  7704. "funding": [
  7705. {
  7706. "url": "https://symfony.com/sponsor",
  7707. "type": "custom"
  7708. },
  7709. {
  7710. "url": "https://github.com/fabpot",
  7711. "type": "github"
  7712. },
  7713. {
  7714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7715. "type": "tidelift"
  7716. }
  7717. ],
  7718. "time": "2022-04-12T15:48:08+00:00"
  7719. },
  7720. {
  7721. "name": "symfony/http-foundation",
  7722. "version": "v4.4.49",
  7723. "source": {
  7724. "type": "git",
  7725. "url": "https://github.com/symfony/http-foundation.git",
  7726. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  7727. },
  7728. "dist": {
  7729. "type": "zip",
  7730. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  7731. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  7732. "shasum": "",
  7733. "mirrors": [
  7734. {
  7735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7736. "preferred": true
  7737. }
  7738. ]
  7739. },
  7740. "require": {
  7741. "php": ">=7.1.3",
  7742. "symfony/mime": "^4.3|^5.0",
  7743. "symfony/polyfill-mbstring": "~1.1",
  7744. "symfony/polyfill-php80": "^1.16"
  7745. },
  7746. "require-dev": {
  7747. "predis/predis": "~1.0",
  7748. "symfony/expression-language": "^3.4|^4.0|^5.0"
  7749. },
  7750. "type": "library",
  7751. "autoload": {
  7752. "psr-4": {
  7753. "Symfony\\Component\\HttpFoundation\\": ""
  7754. },
  7755. "exclude-from-classmap": [
  7756. "/Tests/"
  7757. ]
  7758. },
  7759. "notification-url": "https://packagist.org/downloads/",
  7760. "license": [
  7761. "MIT"
  7762. ],
  7763. "authors": [
  7764. {
  7765. "name": "Fabien Potencier",
  7766. "email": "fabien@symfony.com"
  7767. },
  7768. {
  7769. "name": "Symfony Community",
  7770. "homepage": "https://symfony.com/contributors"
  7771. }
  7772. ],
  7773. "description": "Defines an object-oriented layer for the HTTP specification",
  7774. "homepage": "https://symfony.com",
  7775. "support": {
  7776. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  7777. },
  7778. "funding": [
  7779. {
  7780. "url": "https://symfony.com/sponsor",
  7781. "type": "custom"
  7782. },
  7783. {
  7784. "url": "https://github.com/fabpot",
  7785. "type": "github"
  7786. },
  7787. {
  7788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7789. "type": "tidelift"
  7790. }
  7791. ],
  7792. "time": "2022-11-04T16:17:57+00:00"
  7793. },
  7794. {
  7795. "name": "symfony/http-kernel",
  7796. "version": "v4.4.49",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/symfony/http-kernel.git",
  7800. "reference": "4e36db8103062c62b3882b1bd297b02de6b021c4"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4e36db8103062c62b3882b1bd297b02de6b021c4",
  7805. "reference": "4e36db8103062c62b3882b1bd297b02de6b021c4",
  7806. "shasum": "",
  7807. "mirrors": [
  7808. {
  7809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7810. "preferred": true
  7811. }
  7812. ]
  7813. },
  7814. "require": {
  7815. "php": ">=7.1.3",
  7816. "psr/log": "^1|^2",
  7817. "symfony/error-handler": "^4.4",
  7818. "symfony/event-dispatcher": "^4.4",
  7819. "symfony/http-client-contracts": "^1.1|^2",
  7820. "symfony/http-foundation": "^4.4.30|^5.3.7",
  7821. "symfony/polyfill-ctype": "^1.8",
  7822. "symfony/polyfill-php73": "^1.9",
  7823. "symfony/polyfill-php80": "^1.16"
  7824. },
  7825. "conflict": {
  7826. "symfony/browser-kit": "<4.3",
  7827. "symfony/config": "<3.4",
  7828. "symfony/console": ">=5",
  7829. "symfony/dependency-injection": "<4.3",
  7830. "symfony/translation": "<4.2",
  7831. "twig/twig": "<1.43|<2.13,>=2"
  7832. },
  7833. "provide": {
  7834. "psr/log-implementation": "1.0|2.0"
  7835. },
  7836. "require-dev": {
  7837. "psr/cache": "^1.0|^2.0|^3.0",
  7838. "symfony/browser-kit": "^4.3|^5.0",
  7839. "symfony/config": "^3.4|^4.0|^5.0",
  7840. "symfony/console": "^3.4|^4.0",
  7841. "symfony/css-selector": "^3.4|^4.0|^5.0",
  7842. "symfony/dependency-injection": "^4.3|^5.0",
  7843. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  7844. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7845. "symfony/finder": "^3.4|^4.0|^5.0",
  7846. "symfony/process": "^3.4|^4.0|^5.0",
  7847. "symfony/routing": "^3.4|^4.0|^5.0",
  7848. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  7849. "symfony/templating": "^3.4|^4.0|^5.0",
  7850. "symfony/translation": "^4.2|^5.0",
  7851. "symfony/translation-contracts": "^1.1|^2",
  7852. "twig/twig": "^1.43|^2.13|^3.0.4"
  7853. },
  7854. "suggest": {
  7855. "symfony/browser-kit": "",
  7856. "symfony/config": "",
  7857. "symfony/console": "",
  7858. "symfony/dependency-injection": ""
  7859. },
  7860. "type": "library",
  7861. "autoload": {
  7862. "psr-4": {
  7863. "Symfony\\Component\\HttpKernel\\": ""
  7864. },
  7865. "exclude-from-classmap": [
  7866. "/Tests/"
  7867. ]
  7868. },
  7869. "notification-url": "https://packagist.org/downloads/",
  7870. "license": [
  7871. "MIT"
  7872. ],
  7873. "authors": [
  7874. {
  7875. "name": "Fabien Potencier",
  7876. "email": "fabien@symfony.com"
  7877. },
  7878. {
  7879. "name": "Symfony Community",
  7880. "homepage": "https://symfony.com/contributors"
  7881. }
  7882. ],
  7883. "description": "Provides a structured process for converting a Request into a Response",
  7884. "homepage": "https://symfony.com",
  7885. "support": {
  7886. "source": "https://github.com/symfony/http-kernel/tree/v4.4.49"
  7887. },
  7888. "funding": [
  7889. {
  7890. "url": "https://symfony.com/sponsor",
  7891. "type": "custom"
  7892. },
  7893. {
  7894. "url": "https://github.com/fabpot",
  7895. "type": "github"
  7896. },
  7897. {
  7898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7899. "type": "tidelift"
  7900. }
  7901. ],
  7902. "time": "2022-11-28T17:58:43+00:00"
  7903. },
  7904. {
  7905. "name": "symfony/mime",
  7906. "version": "v5.4.16",
  7907. "source": {
  7908. "type": "git",
  7909. "url": "https://github.com/symfony/mime.git",
  7910. "reference": "46eeedb08f0832b1b61a84c612d945fc85ee4734"
  7911. },
  7912. "dist": {
  7913. "type": "zip",
  7914. "url": "https://api.github.com/repos/symfony/mime/zipball/46eeedb08f0832b1b61a84c612d945fc85ee4734",
  7915. "reference": "46eeedb08f0832b1b61a84c612d945fc85ee4734",
  7916. "shasum": "",
  7917. "mirrors": [
  7918. {
  7919. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7920. "preferred": true
  7921. }
  7922. ]
  7923. },
  7924. "require": {
  7925. "php": ">=7.2.5",
  7926. "symfony/deprecation-contracts": "^2.1|^3",
  7927. "symfony/polyfill-intl-idn": "^1.10",
  7928. "symfony/polyfill-mbstring": "^1.0",
  7929. "symfony/polyfill-php80": "^1.16"
  7930. },
  7931. "conflict": {
  7932. "egulias/email-validator": "~3.0.0",
  7933. "phpdocumentor/reflection-docblock": "<3.2.2",
  7934. "phpdocumentor/type-resolver": "<1.4.0",
  7935. "symfony/mailer": "<4.4",
  7936. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  7937. },
  7938. "require-dev": {
  7939. "egulias/email-validator": "^2.1.10|^3.1",
  7940. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7941. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7942. "symfony/property-access": "^4.4|^5.1|^6.0",
  7943. "symfony/property-info": "^4.4|^5.1|^6.0",
  7944. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  7945. },
  7946. "type": "library",
  7947. "autoload": {
  7948. "psr-4": {
  7949. "Symfony\\Component\\Mime\\": ""
  7950. },
  7951. "exclude-from-classmap": [
  7952. "/Tests/"
  7953. ]
  7954. },
  7955. "notification-url": "https://packagist.org/downloads/",
  7956. "license": [
  7957. "MIT"
  7958. ],
  7959. "authors": [
  7960. {
  7961. "name": "Fabien Potencier",
  7962. "email": "fabien@symfony.com"
  7963. },
  7964. {
  7965. "name": "Symfony Community",
  7966. "homepage": "https://symfony.com/contributors"
  7967. }
  7968. ],
  7969. "description": "Allows manipulating MIME messages",
  7970. "homepage": "https://symfony.com",
  7971. "keywords": [
  7972. "mime",
  7973. "mime-type"
  7974. ],
  7975. "support": {
  7976. "source": "https://github.com/symfony/mime/tree/v5.4.16"
  7977. },
  7978. "funding": [
  7979. {
  7980. "url": "https://symfony.com/sponsor",
  7981. "type": "custom"
  7982. },
  7983. {
  7984. "url": "https://github.com/fabpot",
  7985. "type": "github"
  7986. },
  7987. {
  7988. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7989. "type": "tidelift"
  7990. }
  7991. ],
  7992. "time": "2022-11-26T16:45:22+00:00"
  7993. },
  7994. {
  7995. "name": "symfony/options-resolver",
  7996. "version": "v5.4.11",
  7997. "source": {
  7998. "type": "git",
  7999. "url": "https://github.com/symfony/options-resolver.git",
  8000. "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690"
  8001. },
  8002. "dist": {
  8003. "type": "zip",
  8004. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/54f14e36aa73cb8f7261d7686691fd4d75ea2690",
  8005. "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690",
  8006. "shasum": "",
  8007. "mirrors": [
  8008. {
  8009. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8010. "preferred": true
  8011. }
  8012. ]
  8013. },
  8014. "require": {
  8015. "php": ">=7.2.5",
  8016. "symfony/deprecation-contracts": "^2.1|^3",
  8017. "symfony/polyfill-php73": "~1.0",
  8018. "symfony/polyfill-php80": "^1.16"
  8019. },
  8020. "type": "library",
  8021. "autoload": {
  8022. "psr-4": {
  8023. "Symfony\\Component\\OptionsResolver\\": ""
  8024. },
  8025. "exclude-from-classmap": [
  8026. "/Tests/"
  8027. ]
  8028. },
  8029. "notification-url": "https://packagist.org/downloads/",
  8030. "license": [
  8031. "MIT"
  8032. ],
  8033. "authors": [
  8034. {
  8035. "name": "Fabien Potencier",
  8036. "email": "fabien@symfony.com"
  8037. },
  8038. {
  8039. "name": "Symfony Community",
  8040. "homepage": "https://symfony.com/contributors"
  8041. }
  8042. ],
  8043. "description": "Provides an improved replacement for the array_replace PHP function",
  8044. "homepage": "https://symfony.com",
  8045. "keywords": [
  8046. "config",
  8047. "configuration",
  8048. "options"
  8049. ],
  8050. "support": {
  8051. "source": "https://github.com/symfony/options-resolver/tree/v5.4.11"
  8052. },
  8053. "funding": [
  8054. {
  8055. "url": "https://symfony.com/sponsor",
  8056. "type": "custom"
  8057. },
  8058. {
  8059. "url": "https://github.com/fabpot",
  8060. "type": "github"
  8061. },
  8062. {
  8063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8064. "type": "tidelift"
  8065. }
  8066. ],
  8067. "time": "2022-07-20T13:00:38+00:00"
  8068. },
  8069. {
  8070. "name": "symfony/polyfill-ctype",
  8071. "version": "v1.27.0",
  8072. "source": {
  8073. "type": "git",
  8074. "url": "https://github.com/symfony/polyfill-ctype.git",
  8075. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  8076. },
  8077. "dist": {
  8078. "type": "zip",
  8079. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  8080. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  8081. "shasum": "",
  8082. "mirrors": [
  8083. {
  8084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8085. "preferred": true
  8086. }
  8087. ]
  8088. },
  8089. "require": {
  8090. "php": ">=7.1"
  8091. },
  8092. "provide": {
  8093. "ext-ctype": "*"
  8094. },
  8095. "suggest": {
  8096. "ext-ctype": "For best performance"
  8097. },
  8098. "type": "library",
  8099. "extra": {
  8100. "branch-alias": {
  8101. "dev-main": "1.27-dev"
  8102. },
  8103. "thanks": {
  8104. "name": "symfony/polyfill",
  8105. "url": "https://github.com/symfony/polyfill"
  8106. }
  8107. },
  8108. "autoload": {
  8109. "files": [
  8110. "bootstrap.php"
  8111. ],
  8112. "psr-4": {
  8113. "Symfony\\Polyfill\\Ctype\\": ""
  8114. }
  8115. },
  8116. "notification-url": "https://packagist.org/downloads/",
  8117. "license": [
  8118. "MIT"
  8119. ],
  8120. "authors": [
  8121. {
  8122. "name": "Gert de Pagter",
  8123. "email": "BackEndTea@gmail.com"
  8124. },
  8125. {
  8126. "name": "Symfony Community",
  8127. "homepage": "https://symfony.com/contributors"
  8128. }
  8129. ],
  8130. "description": "Symfony polyfill for ctype functions",
  8131. "homepage": "https://symfony.com",
  8132. "keywords": [
  8133. "compatibility",
  8134. "ctype",
  8135. "polyfill",
  8136. "portable"
  8137. ],
  8138. "support": {
  8139. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  8140. },
  8141. "funding": [
  8142. {
  8143. "url": "https://symfony.com/sponsor",
  8144. "type": "custom"
  8145. },
  8146. {
  8147. "url": "https://github.com/fabpot",
  8148. "type": "github"
  8149. },
  8150. {
  8151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8152. "type": "tidelift"
  8153. }
  8154. ],
  8155. "time": "2022-11-03T14:55:06+00:00"
  8156. },
  8157. {
  8158. "name": "symfony/polyfill-intl-grapheme",
  8159. "version": "v1.27.0",
  8160. "source": {
  8161. "type": "git",
  8162. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8163. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  8164. },
  8165. "dist": {
  8166. "type": "zip",
  8167. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  8168. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  8169. "shasum": "",
  8170. "mirrors": [
  8171. {
  8172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8173. "preferred": true
  8174. }
  8175. ]
  8176. },
  8177. "require": {
  8178. "php": ">=7.1"
  8179. },
  8180. "suggest": {
  8181. "ext-intl": "For best performance"
  8182. },
  8183. "type": "library",
  8184. "extra": {
  8185. "branch-alias": {
  8186. "dev-main": "1.27-dev"
  8187. },
  8188. "thanks": {
  8189. "name": "symfony/polyfill",
  8190. "url": "https://github.com/symfony/polyfill"
  8191. }
  8192. },
  8193. "autoload": {
  8194. "files": [
  8195. "bootstrap.php"
  8196. ],
  8197. "psr-4": {
  8198. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8199. }
  8200. },
  8201. "notification-url": "https://packagist.org/downloads/",
  8202. "license": [
  8203. "MIT"
  8204. ],
  8205. "authors": [
  8206. {
  8207. "name": "Nicolas Grekas",
  8208. "email": "p@tchwork.com"
  8209. },
  8210. {
  8211. "name": "Symfony Community",
  8212. "homepage": "https://symfony.com/contributors"
  8213. }
  8214. ],
  8215. "description": "Symfony polyfill for intl's grapheme_* functions",
  8216. "homepage": "https://symfony.com",
  8217. "keywords": [
  8218. "compatibility",
  8219. "grapheme",
  8220. "intl",
  8221. "polyfill",
  8222. "portable",
  8223. "shim"
  8224. ],
  8225. "support": {
  8226. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  8227. },
  8228. "funding": [
  8229. {
  8230. "url": "https://symfony.com/sponsor",
  8231. "type": "custom"
  8232. },
  8233. {
  8234. "url": "https://github.com/fabpot",
  8235. "type": "github"
  8236. },
  8237. {
  8238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8239. "type": "tidelift"
  8240. }
  8241. ],
  8242. "time": "2022-11-03T14:55:06+00:00"
  8243. },
  8244. {
  8245. "name": "symfony/polyfill-intl-idn",
  8246. "version": "v1.27.0",
  8247. "source": {
  8248. "type": "git",
  8249. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8250. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  8251. },
  8252. "dist": {
  8253. "type": "zip",
  8254. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  8255. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  8256. "shasum": "",
  8257. "mirrors": [
  8258. {
  8259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8260. "preferred": true
  8261. }
  8262. ]
  8263. },
  8264. "require": {
  8265. "php": ">=7.1",
  8266. "symfony/polyfill-intl-normalizer": "^1.10",
  8267. "symfony/polyfill-php72": "^1.10"
  8268. },
  8269. "suggest": {
  8270. "ext-intl": "For best performance"
  8271. },
  8272. "type": "library",
  8273. "extra": {
  8274. "branch-alias": {
  8275. "dev-main": "1.27-dev"
  8276. },
  8277. "thanks": {
  8278. "name": "symfony/polyfill",
  8279. "url": "https://github.com/symfony/polyfill"
  8280. }
  8281. },
  8282. "autoload": {
  8283. "files": [
  8284. "bootstrap.php"
  8285. ],
  8286. "psr-4": {
  8287. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8288. }
  8289. },
  8290. "notification-url": "https://packagist.org/downloads/",
  8291. "license": [
  8292. "MIT"
  8293. ],
  8294. "authors": [
  8295. {
  8296. "name": "Laurent Bassin",
  8297. "email": "laurent@bassin.info"
  8298. },
  8299. {
  8300. "name": "Trevor Rowbotham",
  8301. "email": "trevor.rowbotham@pm.me"
  8302. },
  8303. {
  8304. "name": "Symfony Community",
  8305. "homepage": "https://symfony.com/contributors"
  8306. }
  8307. ],
  8308. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8309. "homepage": "https://symfony.com",
  8310. "keywords": [
  8311. "compatibility",
  8312. "idn",
  8313. "intl",
  8314. "polyfill",
  8315. "portable",
  8316. "shim"
  8317. ],
  8318. "support": {
  8319. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  8320. },
  8321. "funding": [
  8322. {
  8323. "url": "https://symfony.com/sponsor",
  8324. "type": "custom"
  8325. },
  8326. {
  8327. "url": "https://github.com/fabpot",
  8328. "type": "github"
  8329. },
  8330. {
  8331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8332. "type": "tidelift"
  8333. }
  8334. ],
  8335. "time": "2022-11-03T14:55:06+00:00"
  8336. },
  8337. {
  8338. "name": "symfony/polyfill-intl-normalizer",
  8339. "version": "v1.27.0",
  8340. "source": {
  8341. "type": "git",
  8342. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8343. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  8344. },
  8345. "dist": {
  8346. "type": "zip",
  8347. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  8348. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  8349. "shasum": "",
  8350. "mirrors": [
  8351. {
  8352. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8353. "preferred": true
  8354. }
  8355. ]
  8356. },
  8357. "require": {
  8358. "php": ">=7.1"
  8359. },
  8360. "suggest": {
  8361. "ext-intl": "For best performance"
  8362. },
  8363. "type": "library",
  8364. "extra": {
  8365. "branch-alias": {
  8366. "dev-main": "1.27-dev"
  8367. },
  8368. "thanks": {
  8369. "name": "symfony/polyfill",
  8370. "url": "https://github.com/symfony/polyfill"
  8371. }
  8372. },
  8373. "autoload": {
  8374. "files": [
  8375. "bootstrap.php"
  8376. ],
  8377. "psr-4": {
  8378. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8379. },
  8380. "classmap": [
  8381. "Resources/stubs"
  8382. ]
  8383. },
  8384. "notification-url": "https://packagist.org/downloads/",
  8385. "license": [
  8386. "MIT"
  8387. ],
  8388. "authors": [
  8389. {
  8390. "name": "Nicolas Grekas",
  8391. "email": "p@tchwork.com"
  8392. },
  8393. {
  8394. "name": "Symfony Community",
  8395. "homepage": "https://symfony.com/contributors"
  8396. }
  8397. ],
  8398. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8399. "homepage": "https://symfony.com",
  8400. "keywords": [
  8401. "compatibility",
  8402. "intl",
  8403. "normalizer",
  8404. "polyfill",
  8405. "portable",
  8406. "shim"
  8407. ],
  8408. "support": {
  8409. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  8410. },
  8411. "funding": [
  8412. {
  8413. "url": "https://symfony.com/sponsor",
  8414. "type": "custom"
  8415. },
  8416. {
  8417. "url": "https://github.com/fabpot",
  8418. "type": "github"
  8419. },
  8420. {
  8421. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8422. "type": "tidelift"
  8423. }
  8424. ],
  8425. "time": "2022-11-03T14:55:06+00:00"
  8426. },
  8427. {
  8428. "name": "symfony/polyfill-mbstring",
  8429. "version": "v1.27.0",
  8430. "source": {
  8431. "type": "git",
  8432. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8433. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  8434. },
  8435. "dist": {
  8436. "type": "zip",
  8437. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  8438. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  8439. "shasum": "",
  8440. "mirrors": [
  8441. {
  8442. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8443. "preferred": true
  8444. }
  8445. ]
  8446. },
  8447. "require": {
  8448. "php": ">=7.1"
  8449. },
  8450. "provide": {
  8451. "ext-mbstring": "*"
  8452. },
  8453. "suggest": {
  8454. "ext-mbstring": "For best performance"
  8455. },
  8456. "type": "library",
  8457. "extra": {
  8458. "branch-alias": {
  8459. "dev-main": "1.27-dev"
  8460. },
  8461. "thanks": {
  8462. "name": "symfony/polyfill",
  8463. "url": "https://github.com/symfony/polyfill"
  8464. }
  8465. },
  8466. "autoload": {
  8467. "files": [
  8468. "bootstrap.php"
  8469. ],
  8470. "psr-4": {
  8471. "Symfony\\Polyfill\\Mbstring\\": ""
  8472. }
  8473. },
  8474. "notification-url": "https://packagist.org/downloads/",
  8475. "license": [
  8476. "MIT"
  8477. ],
  8478. "authors": [
  8479. {
  8480. "name": "Nicolas Grekas",
  8481. "email": "p@tchwork.com"
  8482. },
  8483. {
  8484. "name": "Symfony Community",
  8485. "homepage": "https://symfony.com/contributors"
  8486. }
  8487. ],
  8488. "description": "Symfony polyfill for the Mbstring extension",
  8489. "homepage": "https://symfony.com",
  8490. "keywords": [
  8491. "compatibility",
  8492. "mbstring",
  8493. "polyfill",
  8494. "portable",
  8495. "shim"
  8496. ],
  8497. "support": {
  8498. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  8499. },
  8500. "funding": [
  8501. {
  8502. "url": "https://symfony.com/sponsor",
  8503. "type": "custom"
  8504. },
  8505. {
  8506. "url": "https://github.com/fabpot",
  8507. "type": "github"
  8508. },
  8509. {
  8510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8511. "type": "tidelift"
  8512. }
  8513. ],
  8514. "time": "2022-11-03T14:55:06+00:00"
  8515. },
  8516. {
  8517. "name": "symfony/polyfill-php56",
  8518. "version": "v1.20.0",
  8519. "source": {
  8520. "type": "git",
  8521. "url": "https://github.com/symfony/polyfill-php56.git",
  8522. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  8523. },
  8524. "dist": {
  8525. "type": "zip",
  8526. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8527. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8528. "shasum": "",
  8529. "mirrors": [
  8530. {
  8531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8532. "preferred": true
  8533. }
  8534. ]
  8535. },
  8536. "require": {
  8537. "php": ">=7.1"
  8538. },
  8539. "type": "metapackage",
  8540. "extra": {
  8541. "branch-alias": {
  8542. "dev-main": "1.20-dev"
  8543. },
  8544. "thanks": {
  8545. "name": "symfony/polyfill",
  8546. "url": "https://github.com/symfony/polyfill"
  8547. }
  8548. },
  8549. "notification-url": "https://packagist.org/downloads/",
  8550. "license": [
  8551. "MIT"
  8552. ],
  8553. "authors": [
  8554. {
  8555. "name": "Nicolas Grekas",
  8556. "email": "p@tchwork.com"
  8557. },
  8558. {
  8559. "name": "Symfony Community",
  8560. "homepage": "https://symfony.com/contributors"
  8561. }
  8562. ],
  8563. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8564. "homepage": "https://symfony.com",
  8565. "keywords": [
  8566. "compatibility",
  8567. "polyfill",
  8568. "portable",
  8569. "shim"
  8570. ],
  8571. "support": {
  8572. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  8573. },
  8574. "funding": [
  8575. {
  8576. "url": "https://symfony.com/sponsor",
  8577. "type": "custom"
  8578. },
  8579. {
  8580. "url": "https://github.com/fabpot",
  8581. "type": "github"
  8582. },
  8583. {
  8584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8585. "type": "tidelift"
  8586. }
  8587. ],
  8588. "time": "2020-10-23T14:02:19+00:00"
  8589. },
  8590. {
  8591. "name": "symfony/polyfill-php72",
  8592. "version": "v1.27.0",
  8593. "source": {
  8594. "type": "git",
  8595. "url": "https://github.com/symfony/polyfill-php72.git",
  8596. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  8597. },
  8598. "dist": {
  8599. "type": "zip",
  8600. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  8601. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  8602. "shasum": "",
  8603. "mirrors": [
  8604. {
  8605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8606. "preferred": true
  8607. }
  8608. ]
  8609. },
  8610. "require": {
  8611. "php": ">=7.1"
  8612. },
  8613. "type": "library",
  8614. "extra": {
  8615. "branch-alias": {
  8616. "dev-main": "1.27-dev"
  8617. },
  8618. "thanks": {
  8619. "name": "symfony/polyfill",
  8620. "url": "https://github.com/symfony/polyfill"
  8621. }
  8622. },
  8623. "autoload": {
  8624. "files": [
  8625. "bootstrap.php"
  8626. ],
  8627. "psr-4": {
  8628. "Symfony\\Polyfill\\Php72\\": ""
  8629. }
  8630. },
  8631. "notification-url": "https://packagist.org/downloads/",
  8632. "license": [
  8633. "MIT"
  8634. ],
  8635. "authors": [
  8636. {
  8637. "name": "Nicolas Grekas",
  8638. "email": "p@tchwork.com"
  8639. },
  8640. {
  8641. "name": "Symfony Community",
  8642. "homepage": "https://symfony.com/contributors"
  8643. }
  8644. ],
  8645. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8646. "homepage": "https://symfony.com",
  8647. "keywords": [
  8648. "compatibility",
  8649. "polyfill",
  8650. "portable",
  8651. "shim"
  8652. ],
  8653. "support": {
  8654. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  8655. },
  8656. "funding": [
  8657. {
  8658. "url": "https://symfony.com/sponsor",
  8659. "type": "custom"
  8660. },
  8661. {
  8662. "url": "https://github.com/fabpot",
  8663. "type": "github"
  8664. },
  8665. {
  8666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8667. "type": "tidelift"
  8668. }
  8669. ],
  8670. "time": "2022-11-03T14:55:06+00:00"
  8671. },
  8672. {
  8673. "name": "symfony/polyfill-php73",
  8674. "version": "v1.27.0",
  8675. "source": {
  8676. "type": "git",
  8677. "url": "https://github.com/symfony/polyfill-php73.git",
  8678. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  8679. },
  8680. "dist": {
  8681. "type": "zip",
  8682. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  8683. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  8684. "shasum": "",
  8685. "mirrors": [
  8686. {
  8687. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8688. "preferred": true
  8689. }
  8690. ]
  8691. },
  8692. "require": {
  8693. "php": ">=7.1"
  8694. },
  8695. "type": "library",
  8696. "extra": {
  8697. "branch-alias": {
  8698. "dev-main": "1.27-dev"
  8699. },
  8700. "thanks": {
  8701. "name": "symfony/polyfill",
  8702. "url": "https://github.com/symfony/polyfill"
  8703. }
  8704. },
  8705. "autoload": {
  8706. "files": [
  8707. "bootstrap.php"
  8708. ],
  8709. "psr-4": {
  8710. "Symfony\\Polyfill\\Php73\\": ""
  8711. },
  8712. "classmap": [
  8713. "Resources/stubs"
  8714. ]
  8715. },
  8716. "notification-url": "https://packagist.org/downloads/",
  8717. "license": [
  8718. "MIT"
  8719. ],
  8720. "authors": [
  8721. {
  8722. "name": "Nicolas Grekas",
  8723. "email": "p@tchwork.com"
  8724. },
  8725. {
  8726. "name": "Symfony Community",
  8727. "homepage": "https://symfony.com/contributors"
  8728. }
  8729. ],
  8730. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  8731. "homepage": "https://symfony.com",
  8732. "keywords": [
  8733. "compatibility",
  8734. "polyfill",
  8735. "portable",
  8736. "shim"
  8737. ],
  8738. "support": {
  8739. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  8740. },
  8741. "funding": [
  8742. {
  8743. "url": "https://symfony.com/sponsor",
  8744. "type": "custom"
  8745. },
  8746. {
  8747. "url": "https://github.com/fabpot",
  8748. "type": "github"
  8749. },
  8750. {
  8751. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8752. "type": "tidelift"
  8753. }
  8754. ],
  8755. "time": "2022-11-03T14:55:06+00:00"
  8756. },
  8757. {
  8758. "name": "symfony/polyfill-php80",
  8759. "version": "v1.27.0",
  8760. "source": {
  8761. "type": "git",
  8762. "url": "https://github.com/symfony/polyfill-php80.git",
  8763. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  8764. },
  8765. "dist": {
  8766. "type": "zip",
  8767. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  8768. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  8769. "shasum": "",
  8770. "mirrors": [
  8771. {
  8772. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8773. "preferred": true
  8774. }
  8775. ]
  8776. },
  8777. "require": {
  8778. "php": ">=7.1"
  8779. },
  8780. "type": "library",
  8781. "extra": {
  8782. "branch-alias": {
  8783. "dev-main": "1.27-dev"
  8784. },
  8785. "thanks": {
  8786. "name": "symfony/polyfill",
  8787. "url": "https://github.com/symfony/polyfill"
  8788. }
  8789. },
  8790. "autoload": {
  8791. "files": [
  8792. "bootstrap.php"
  8793. ],
  8794. "psr-4": {
  8795. "Symfony\\Polyfill\\Php80\\": ""
  8796. },
  8797. "classmap": [
  8798. "Resources/stubs"
  8799. ]
  8800. },
  8801. "notification-url": "https://packagist.org/downloads/",
  8802. "license": [
  8803. "MIT"
  8804. ],
  8805. "authors": [
  8806. {
  8807. "name": "Ion Bazan",
  8808. "email": "ion.bazan@gmail.com"
  8809. },
  8810. {
  8811. "name": "Nicolas Grekas",
  8812. "email": "p@tchwork.com"
  8813. },
  8814. {
  8815. "name": "Symfony Community",
  8816. "homepage": "https://symfony.com/contributors"
  8817. }
  8818. ],
  8819. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8820. "homepage": "https://symfony.com",
  8821. "keywords": [
  8822. "compatibility",
  8823. "polyfill",
  8824. "portable",
  8825. "shim"
  8826. ],
  8827. "support": {
  8828. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  8829. },
  8830. "funding": [
  8831. {
  8832. "url": "https://symfony.com/sponsor",
  8833. "type": "custom"
  8834. },
  8835. {
  8836. "url": "https://github.com/fabpot",
  8837. "type": "github"
  8838. },
  8839. {
  8840. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8841. "type": "tidelift"
  8842. }
  8843. ],
  8844. "time": "2022-11-03T14:55:06+00:00"
  8845. },
  8846. {
  8847. "name": "symfony/process",
  8848. "version": "v4.4.44",
  8849. "source": {
  8850. "type": "git",
  8851. "url": "https://github.com/symfony/process.git",
  8852. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  8853. },
  8854. "dist": {
  8855. "type": "zip",
  8856. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  8857. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  8858. "shasum": "",
  8859. "mirrors": [
  8860. {
  8861. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8862. "preferred": true
  8863. }
  8864. ]
  8865. },
  8866. "require": {
  8867. "php": ">=7.1.3",
  8868. "symfony/polyfill-php80": "^1.16"
  8869. },
  8870. "type": "library",
  8871. "autoload": {
  8872. "psr-4": {
  8873. "Symfony\\Component\\Process\\": ""
  8874. },
  8875. "exclude-from-classmap": [
  8876. "/Tests/"
  8877. ]
  8878. },
  8879. "notification-url": "https://packagist.org/downloads/",
  8880. "license": [
  8881. "MIT"
  8882. ],
  8883. "authors": [
  8884. {
  8885. "name": "Fabien Potencier",
  8886. "email": "fabien@symfony.com"
  8887. },
  8888. {
  8889. "name": "Symfony Community",
  8890. "homepage": "https://symfony.com/contributors"
  8891. }
  8892. ],
  8893. "description": "Executes commands in sub-processes",
  8894. "homepage": "https://symfony.com",
  8895. "support": {
  8896. "source": "https://github.com/symfony/process/tree/v4.4.44"
  8897. },
  8898. "funding": [
  8899. {
  8900. "url": "https://symfony.com/sponsor",
  8901. "type": "custom"
  8902. },
  8903. {
  8904. "url": "https://github.com/fabpot",
  8905. "type": "github"
  8906. },
  8907. {
  8908. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8909. "type": "tidelift"
  8910. }
  8911. ],
  8912. "time": "2022-06-27T13:16:42+00:00"
  8913. },
  8914. {
  8915. "name": "symfony/property-access",
  8916. "version": "v5.4.15",
  8917. "source": {
  8918. "type": "git",
  8919. "url": "https://github.com/symfony/property-access.git",
  8920. "reference": "0f3e8f40a1d3da90f674b3dd772e4777ccde4273"
  8921. },
  8922. "dist": {
  8923. "type": "zip",
  8924. "url": "https://api.github.com/repos/symfony/property-access/zipball/0f3e8f40a1d3da90f674b3dd772e4777ccde4273",
  8925. "reference": "0f3e8f40a1d3da90f674b3dd772e4777ccde4273",
  8926. "shasum": "",
  8927. "mirrors": [
  8928. {
  8929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8930. "preferred": true
  8931. }
  8932. ]
  8933. },
  8934. "require": {
  8935. "php": ">=7.2.5",
  8936. "symfony/deprecation-contracts": "^2.1|^3",
  8937. "symfony/polyfill-php80": "^1.16",
  8938. "symfony/property-info": "^5.2|^6.0"
  8939. },
  8940. "require-dev": {
  8941. "symfony/cache": "^4.4|^5.0|^6.0"
  8942. },
  8943. "suggest": {
  8944. "psr/cache-implementation": "To cache access methods."
  8945. },
  8946. "type": "library",
  8947. "autoload": {
  8948. "psr-4": {
  8949. "Symfony\\Component\\PropertyAccess\\": ""
  8950. },
  8951. "exclude-from-classmap": [
  8952. "/Tests/"
  8953. ]
  8954. },
  8955. "notification-url": "https://packagist.org/downloads/",
  8956. "license": [
  8957. "MIT"
  8958. ],
  8959. "authors": [
  8960. {
  8961. "name": "Fabien Potencier",
  8962. "email": "fabien@symfony.com"
  8963. },
  8964. {
  8965. "name": "Symfony Community",
  8966. "homepage": "https://symfony.com/contributors"
  8967. }
  8968. ],
  8969. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  8970. "homepage": "https://symfony.com",
  8971. "keywords": [
  8972. "access",
  8973. "array",
  8974. "extraction",
  8975. "index",
  8976. "injection",
  8977. "object",
  8978. "property",
  8979. "property path",
  8980. "reflection"
  8981. ],
  8982. "support": {
  8983. "source": "https://github.com/symfony/property-access/tree/v5.4.15"
  8984. },
  8985. "funding": [
  8986. {
  8987. "url": "https://symfony.com/sponsor",
  8988. "type": "custom"
  8989. },
  8990. {
  8991. "url": "https://github.com/fabpot",
  8992. "type": "github"
  8993. },
  8994. {
  8995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8996. "type": "tidelift"
  8997. }
  8998. ],
  8999. "time": "2022-10-27T07:55:40+00:00"
  9000. },
  9001. {
  9002. "name": "symfony/property-info",
  9003. "version": "v5.4.16",
  9004. "source": {
  9005. "type": "git",
  9006. "url": "https://github.com/symfony/property-info.git",
  9007. "reference": "9dd148c4fbfc231fa4bff00def8dc16a2cd89944"
  9008. },
  9009. "dist": {
  9010. "type": "zip",
  9011. "url": "https://api.github.com/repos/symfony/property-info/zipball/9dd148c4fbfc231fa4bff00def8dc16a2cd89944",
  9012. "reference": "9dd148c4fbfc231fa4bff00def8dc16a2cd89944",
  9013. "shasum": "",
  9014. "mirrors": [
  9015. {
  9016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9017. "preferred": true
  9018. }
  9019. ]
  9020. },
  9021. "require": {
  9022. "php": ">=7.2.5",
  9023. "symfony/deprecation-contracts": "^2.1|^3",
  9024. "symfony/polyfill-php80": "^1.16",
  9025. "symfony/string": "^5.1|^6.0"
  9026. },
  9027. "conflict": {
  9028. "phpdocumentor/reflection-docblock": "<3.2.2",
  9029. "phpdocumentor/type-resolver": "<1.4.0",
  9030. "symfony/dependency-injection": "<4.4"
  9031. },
  9032. "require-dev": {
  9033. "doctrine/annotations": "^1.10.4",
  9034. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  9035. "phpstan/phpdoc-parser": "^1.0",
  9036. "symfony/cache": "^4.4|^5.0|^6.0",
  9037. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9038. "symfony/serializer": "^4.4|^5.0|^6.0"
  9039. },
  9040. "suggest": {
  9041. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  9042. "psr/cache-implementation": "To cache results",
  9043. "symfony/doctrine-bridge": "To use Doctrine metadata",
  9044. "symfony/serializer": "To use Serializer metadata"
  9045. },
  9046. "type": "library",
  9047. "autoload": {
  9048. "psr-4": {
  9049. "Symfony\\Component\\PropertyInfo\\": ""
  9050. },
  9051. "exclude-from-classmap": [
  9052. "/Tests/"
  9053. ]
  9054. },
  9055. "notification-url": "https://packagist.org/downloads/",
  9056. "license": [
  9057. "MIT"
  9058. ],
  9059. "authors": [
  9060. {
  9061. "name": "Kévin Dunglas",
  9062. "email": "dunglas@gmail.com"
  9063. },
  9064. {
  9065. "name": "Symfony Community",
  9066. "homepage": "https://symfony.com/contributors"
  9067. }
  9068. ],
  9069. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  9070. "homepage": "https://symfony.com",
  9071. "keywords": [
  9072. "doctrine",
  9073. "phpdoc",
  9074. "property",
  9075. "symfony",
  9076. "type",
  9077. "validator"
  9078. ],
  9079. "support": {
  9080. "source": "https://github.com/symfony/property-info/tree/v5.4.16"
  9081. },
  9082. "funding": [
  9083. {
  9084. "url": "https://symfony.com/sponsor",
  9085. "type": "custom"
  9086. },
  9087. {
  9088. "url": "https://github.com/fabpot",
  9089. "type": "github"
  9090. },
  9091. {
  9092. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9093. "type": "tidelift"
  9094. }
  9095. ],
  9096. "time": "2022-11-19T17:41:50+00:00"
  9097. },
  9098. {
  9099. "name": "symfony/psr-http-message-bridge",
  9100. "version": "v2.1.3",
  9101. "source": {
  9102. "type": "git",
  9103. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9104. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840"
  9105. },
  9106. "dist": {
  9107. "type": "zip",
  9108. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  9109. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  9110. "shasum": "",
  9111. "mirrors": [
  9112. {
  9113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9114. "preferred": true
  9115. }
  9116. ]
  9117. },
  9118. "require": {
  9119. "php": ">=7.1",
  9120. "psr/http-message": "^1.0",
  9121. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9122. },
  9123. "require-dev": {
  9124. "nyholm/psr7": "^1.1",
  9125. "psr/log": "^1.1 || ^2 || ^3",
  9126. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9127. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9128. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9129. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9130. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9131. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9132. },
  9133. "suggest": {
  9134. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9135. },
  9136. "type": "symfony-bridge",
  9137. "extra": {
  9138. "branch-alias": {
  9139. "dev-main": "2.1-dev"
  9140. }
  9141. },
  9142. "autoload": {
  9143. "psr-4": {
  9144. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9145. },
  9146. "exclude-from-classmap": [
  9147. "/Tests/"
  9148. ]
  9149. },
  9150. "notification-url": "https://packagist.org/downloads/",
  9151. "license": [
  9152. "MIT"
  9153. ],
  9154. "authors": [
  9155. {
  9156. "name": "Fabien Potencier",
  9157. "email": "fabien@symfony.com"
  9158. },
  9159. {
  9160. "name": "Symfony Community",
  9161. "homepage": "http://symfony.com/contributors"
  9162. }
  9163. ],
  9164. "description": "PSR HTTP message bridge",
  9165. "homepage": "http://symfony.com",
  9166. "keywords": [
  9167. "http",
  9168. "http-message",
  9169. "psr-17",
  9170. "psr-7"
  9171. ],
  9172. "support": {
  9173. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9174. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.3"
  9175. },
  9176. "funding": [
  9177. {
  9178. "url": "https://symfony.com/sponsor",
  9179. "type": "custom"
  9180. },
  9181. {
  9182. "url": "https://github.com/fabpot",
  9183. "type": "github"
  9184. },
  9185. {
  9186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9187. "type": "tidelift"
  9188. }
  9189. ],
  9190. "time": "2022-09-05T10:34:54+00:00"
  9191. },
  9192. {
  9193. "name": "symfony/routing",
  9194. "version": "v4.4.44",
  9195. "source": {
  9196. "type": "git",
  9197. "url": "https://github.com/symfony/routing.git",
  9198. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  9199. },
  9200. "dist": {
  9201. "type": "zip",
  9202. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9203. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9204. "shasum": "",
  9205. "mirrors": [
  9206. {
  9207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9208. "preferred": true
  9209. }
  9210. ]
  9211. },
  9212. "require": {
  9213. "php": ">=7.1.3",
  9214. "symfony/polyfill-php80": "^1.16"
  9215. },
  9216. "conflict": {
  9217. "symfony/config": "<4.2",
  9218. "symfony/dependency-injection": "<3.4",
  9219. "symfony/yaml": "<3.4"
  9220. },
  9221. "require-dev": {
  9222. "doctrine/annotations": "^1.10.4",
  9223. "psr/log": "^1|^2|^3",
  9224. "symfony/config": "^4.2|^5.0",
  9225. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9226. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9227. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9228. "symfony/yaml": "^3.4|^4.0|^5.0"
  9229. },
  9230. "suggest": {
  9231. "doctrine/annotations": "For using the annotation loader",
  9232. "symfony/config": "For using the all-in-one router or any loader",
  9233. "symfony/expression-language": "For using expression matching",
  9234. "symfony/http-foundation": "For using a Symfony Request object",
  9235. "symfony/yaml": "For using the YAML loader"
  9236. },
  9237. "type": "library",
  9238. "autoload": {
  9239. "psr-4": {
  9240. "Symfony\\Component\\Routing\\": ""
  9241. },
  9242. "exclude-from-classmap": [
  9243. "/Tests/"
  9244. ]
  9245. },
  9246. "notification-url": "https://packagist.org/downloads/",
  9247. "license": [
  9248. "MIT"
  9249. ],
  9250. "authors": [
  9251. {
  9252. "name": "Fabien Potencier",
  9253. "email": "fabien@symfony.com"
  9254. },
  9255. {
  9256. "name": "Symfony Community",
  9257. "homepage": "https://symfony.com/contributors"
  9258. }
  9259. ],
  9260. "description": "Maps an HTTP request to a set of configuration variables",
  9261. "homepage": "https://symfony.com",
  9262. "keywords": [
  9263. "router",
  9264. "routing",
  9265. "uri",
  9266. "url"
  9267. ],
  9268. "support": {
  9269. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  9270. },
  9271. "funding": [
  9272. {
  9273. "url": "https://symfony.com/sponsor",
  9274. "type": "custom"
  9275. },
  9276. {
  9277. "url": "https://github.com/fabpot",
  9278. "type": "github"
  9279. },
  9280. {
  9281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9282. "type": "tidelift"
  9283. }
  9284. ],
  9285. "time": "2022-07-20T09:59:04+00:00"
  9286. },
  9287. {
  9288. "name": "symfony/service-contracts",
  9289. "version": "v2.5.2",
  9290. "source": {
  9291. "type": "git",
  9292. "url": "https://github.com/symfony/service-contracts.git",
  9293. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  9294. },
  9295. "dist": {
  9296. "type": "zip",
  9297. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9298. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9299. "shasum": "",
  9300. "mirrors": [
  9301. {
  9302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9303. "preferred": true
  9304. }
  9305. ]
  9306. },
  9307. "require": {
  9308. "php": ">=7.2.5",
  9309. "psr/container": "^1.1",
  9310. "symfony/deprecation-contracts": "^2.1|^3"
  9311. },
  9312. "conflict": {
  9313. "ext-psr": "<1.1|>=2"
  9314. },
  9315. "suggest": {
  9316. "symfony/service-implementation": ""
  9317. },
  9318. "type": "library",
  9319. "extra": {
  9320. "branch-alias": {
  9321. "dev-main": "2.5-dev"
  9322. },
  9323. "thanks": {
  9324. "name": "symfony/contracts",
  9325. "url": "https://github.com/symfony/contracts"
  9326. }
  9327. },
  9328. "autoload": {
  9329. "psr-4": {
  9330. "Symfony\\Contracts\\Service\\": ""
  9331. }
  9332. },
  9333. "notification-url": "https://packagist.org/downloads/",
  9334. "license": [
  9335. "MIT"
  9336. ],
  9337. "authors": [
  9338. {
  9339. "name": "Nicolas Grekas",
  9340. "email": "p@tchwork.com"
  9341. },
  9342. {
  9343. "name": "Symfony Community",
  9344. "homepage": "https://symfony.com/contributors"
  9345. }
  9346. ],
  9347. "description": "Generic abstractions related to writing services",
  9348. "homepage": "https://symfony.com",
  9349. "keywords": [
  9350. "abstractions",
  9351. "contracts",
  9352. "decoupling",
  9353. "interfaces",
  9354. "interoperability",
  9355. "standards"
  9356. ],
  9357. "support": {
  9358. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  9359. },
  9360. "funding": [
  9361. {
  9362. "url": "https://symfony.com/sponsor",
  9363. "type": "custom"
  9364. },
  9365. {
  9366. "url": "https://github.com/fabpot",
  9367. "type": "github"
  9368. },
  9369. {
  9370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9371. "type": "tidelift"
  9372. }
  9373. ],
  9374. "time": "2022-05-30T19:17:29+00:00"
  9375. },
  9376. {
  9377. "name": "symfony/string",
  9378. "version": "v5.4.15",
  9379. "source": {
  9380. "type": "git",
  9381. "url": "https://github.com/symfony/string.git",
  9382. "reference": "571334ce9f687e3e6af72db4d3b2a9431e4fd9ed"
  9383. },
  9384. "dist": {
  9385. "type": "zip",
  9386. "url": "https://api.github.com/repos/symfony/string/zipball/571334ce9f687e3e6af72db4d3b2a9431e4fd9ed",
  9387. "reference": "571334ce9f687e3e6af72db4d3b2a9431e4fd9ed",
  9388. "shasum": "",
  9389. "mirrors": [
  9390. {
  9391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9392. "preferred": true
  9393. }
  9394. ]
  9395. },
  9396. "require": {
  9397. "php": ">=7.2.5",
  9398. "symfony/polyfill-ctype": "~1.8",
  9399. "symfony/polyfill-intl-grapheme": "~1.0",
  9400. "symfony/polyfill-intl-normalizer": "~1.0",
  9401. "symfony/polyfill-mbstring": "~1.0",
  9402. "symfony/polyfill-php80": "~1.15"
  9403. },
  9404. "conflict": {
  9405. "symfony/translation-contracts": ">=3.0"
  9406. },
  9407. "require-dev": {
  9408. "symfony/error-handler": "^4.4|^5.0|^6.0",
  9409. "symfony/http-client": "^4.4|^5.0|^6.0",
  9410. "symfony/translation-contracts": "^1.1|^2",
  9411. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  9412. },
  9413. "type": "library",
  9414. "autoload": {
  9415. "files": [
  9416. "Resources/functions.php"
  9417. ],
  9418. "psr-4": {
  9419. "Symfony\\Component\\String\\": ""
  9420. },
  9421. "exclude-from-classmap": [
  9422. "/Tests/"
  9423. ]
  9424. },
  9425. "notification-url": "https://packagist.org/downloads/",
  9426. "license": [
  9427. "MIT"
  9428. ],
  9429. "authors": [
  9430. {
  9431. "name": "Nicolas Grekas",
  9432. "email": "p@tchwork.com"
  9433. },
  9434. {
  9435. "name": "Symfony Community",
  9436. "homepage": "https://symfony.com/contributors"
  9437. }
  9438. ],
  9439. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9440. "homepage": "https://symfony.com",
  9441. "keywords": [
  9442. "grapheme",
  9443. "i18n",
  9444. "string",
  9445. "unicode",
  9446. "utf-8",
  9447. "utf8"
  9448. ],
  9449. "support": {
  9450. "source": "https://github.com/symfony/string/tree/v5.4.15"
  9451. },
  9452. "funding": [
  9453. {
  9454. "url": "https://symfony.com/sponsor",
  9455. "type": "custom"
  9456. },
  9457. {
  9458. "url": "https://github.com/fabpot",
  9459. "type": "github"
  9460. },
  9461. {
  9462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9463. "type": "tidelift"
  9464. }
  9465. ],
  9466. "time": "2022-10-05T15:16:54+00:00"
  9467. },
  9468. {
  9469. "name": "symfony/translation",
  9470. "version": "v4.4.47",
  9471. "source": {
  9472. "type": "git",
  9473. "url": "https://github.com/symfony/translation.git",
  9474. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  9475. },
  9476. "dist": {
  9477. "type": "zip",
  9478. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9479. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9480. "shasum": "",
  9481. "mirrors": [
  9482. {
  9483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9484. "preferred": true
  9485. }
  9486. ]
  9487. },
  9488. "require": {
  9489. "php": ">=7.1.3",
  9490. "symfony/polyfill-mbstring": "~1.0",
  9491. "symfony/polyfill-php80": "^1.16",
  9492. "symfony/translation-contracts": "^1.1.6|^2"
  9493. },
  9494. "conflict": {
  9495. "symfony/config": "<3.4",
  9496. "symfony/dependency-injection": "<3.4",
  9497. "symfony/http-kernel": "<4.4",
  9498. "symfony/yaml": "<3.4"
  9499. },
  9500. "provide": {
  9501. "symfony/translation-implementation": "1.0|2.0"
  9502. },
  9503. "require-dev": {
  9504. "psr/log": "^1|^2|^3",
  9505. "symfony/config": "^3.4|^4.0|^5.0",
  9506. "symfony/console": "^3.4|^4.0|^5.0",
  9507. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9508. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  9509. "symfony/http-kernel": "^4.4",
  9510. "symfony/intl": "^3.4|^4.0|^5.0",
  9511. "symfony/service-contracts": "^1.1.2|^2",
  9512. "symfony/yaml": "^3.4|^4.0|^5.0"
  9513. },
  9514. "suggest": {
  9515. "psr/log-implementation": "To use logging capability in translator",
  9516. "symfony/config": "",
  9517. "symfony/yaml": ""
  9518. },
  9519. "type": "library",
  9520. "autoload": {
  9521. "psr-4": {
  9522. "Symfony\\Component\\Translation\\": ""
  9523. },
  9524. "exclude-from-classmap": [
  9525. "/Tests/"
  9526. ]
  9527. },
  9528. "notification-url": "https://packagist.org/downloads/",
  9529. "license": [
  9530. "MIT"
  9531. ],
  9532. "authors": [
  9533. {
  9534. "name": "Fabien Potencier",
  9535. "email": "fabien@symfony.com"
  9536. },
  9537. {
  9538. "name": "Symfony Community",
  9539. "homepage": "https://symfony.com/contributors"
  9540. }
  9541. ],
  9542. "description": "Provides tools to internationalize your application",
  9543. "homepage": "https://symfony.com",
  9544. "support": {
  9545. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  9546. },
  9547. "funding": [
  9548. {
  9549. "url": "https://symfony.com/sponsor",
  9550. "type": "custom"
  9551. },
  9552. {
  9553. "url": "https://github.com/fabpot",
  9554. "type": "github"
  9555. },
  9556. {
  9557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9558. "type": "tidelift"
  9559. }
  9560. ],
  9561. "time": "2022-10-03T15:15:11+00:00"
  9562. },
  9563. {
  9564. "name": "symfony/translation-contracts",
  9565. "version": "v2.5.2",
  9566. "source": {
  9567. "type": "git",
  9568. "url": "https://github.com/symfony/translation-contracts.git",
  9569. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  9570. },
  9571. "dist": {
  9572. "type": "zip",
  9573. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  9574. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  9575. "shasum": "",
  9576. "mirrors": [
  9577. {
  9578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9579. "preferred": true
  9580. }
  9581. ]
  9582. },
  9583. "require": {
  9584. "php": ">=7.2.5"
  9585. },
  9586. "suggest": {
  9587. "symfony/translation-implementation": ""
  9588. },
  9589. "type": "library",
  9590. "extra": {
  9591. "branch-alias": {
  9592. "dev-main": "2.5-dev"
  9593. },
  9594. "thanks": {
  9595. "name": "symfony/contracts",
  9596. "url": "https://github.com/symfony/contracts"
  9597. }
  9598. },
  9599. "autoload": {
  9600. "psr-4": {
  9601. "Symfony\\Contracts\\Translation\\": ""
  9602. }
  9603. },
  9604. "notification-url": "https://packagist.org/downloads/",
  9605. "license": [
  9606. "MIT"
  9607. ],
  9608. "authors": [
  9609. {
  9610. "name": "Nicolas Grekas",
  9611. "email": "p@tchwork.com"
  9612. },
  9613. {
  9614. "name": "Symfony Community",
  9615. "homepage": "https://symfony.com/contributors"
  9616. }
  9617. ],
  9618. "description": "Generic abstractions related to translation",
  9619. "homepage": "https://symfony.com",
  9620. "keywords": [
  9621. "abstractions",
  9622. "contracts",
  9623. "decoupling",
  9624. "interfaces",
  9625. "interoperability",
  9626. "standards"
  9627. ],
  9628. "support": {
  9629. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  9630. },
  9631. "funding": [
  9632. {
  9633. "url": "https://symfony.com/sponsor",
  9634. "type": "custom"
  9635. },
  9636. {
  9637. "url": "https://github.com/fabpot",
  9638. "type": "github"
  9639. },
  9640. {
  9641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9642. "type": "tidelift"
  9643. }
  9644. ],
  9645. "time": "2022-06-27T16:58:25+00:00"
  9646. },
  9647. {
  9648. "name": "symfony/var-dumper",
  9649. "version": "v4.4.47",
  9650. "source": {
  9651. "type": "git",
  9652. "url": "https://github.com/symfony/var-dumper.git",
  9653. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9654. },
  9655. "dist": {
  9656. "type": "zip",
  9657. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9658. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9659. "shasum": "",
  9660. "mirrors": [
  9661. {
  9662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9663. "preferred": true
  9664. }
  9665. ]
  9666. },
  9667. "require": {
  9668. "php": ">=7.1.3",
  9669. "symfony/polyfill-mbstring": "~1.0",
  9670. "symfony/polyfill-php72": "~1.5",
  9671. "symfony/polyfill-php80": "^1.16"
  9672. },
  9673. "conflict": {
  9674. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9675. "symfony/console": "<3.4"
  9676. },
  9677. "require-dev": {
  9678. "ext-iconv": "*",
  9679. "symfony/console": "^3.4|^4.0|^5.0",
  9680. "symfony/process": "^4.4|^5.0",
  9681. "twig/twig": "^1.43|^2.13|^3.0.4"
  9682. },
  9683. "suggest": {
  9684. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9685. "ext-intl": "To show region name in time zone dump",
  9686. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9687. },
  9688. "bin": [
  9689. "Resources/bin/var-dump-server"
  9690. ],
  9691. "type": "library",
  9692. "autoload": {
  9693. "files": [
  9694. "Resources/functions/dump.php"
  9695. ],
  9696. "psr-4": {
  9697. "Symfony\\Component\\VarDumper\\": ""
  9698. },
  9699. "exclude-from-classmap": [
  9700. "/Tests/"
  9701. ]
  9702. },
  9703. "notification-url": "https://packagist.org/downloads/",
  9704. "license": [
  9705. "MIT"
  9706. ],
  9707. "authors": [
  9708. {
  9709. "name": "Nicolas Grekas",
  9710. "email": "p@tchwork.com"
  9711. },
  9712. {
  9713. "name": "Symfony Community",
  9714. "homepage": "https://symfony.com/contributors"
  9715. }
  9716. ],
  9717. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9718. "homepage": "https://symfony.com",
  9719. "keywords": [
  9720. "debug",
  9721. "dump"
  9722. ],
  9723. "support": {
  9724. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9725. },
  9726. "funding": [
  9727. {
  9728. "url": "https://symfony.com/sponsor",
  9729. "type": "custom"
  9730. },
  9731. {
  9732. "url": "https://github.com/fabpot",
  9733. "type": "github"
  9734. },
  9735. {
  9736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9737. "type": "tidelift"
  9738. }
  9739. ],
  9740. "time": "2022-10-03T15:15:11+00:00"
  9741. },
  9742. {
  9743. "name": "symfony/var-exporter",
  9744. "version": "v5.4.10",
  9745. "source": {
  9746. "type": "git",
  9747. "url": "https://github.com/symfony/var-exporter.git",
  9748. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340"
  9749. },
  9750. "dist": {
  9751. "type": "zip",
  9752. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  9753. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  9754. "shasum": "",
  9755. "mirrors": [
  9756. {
  9757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9758. "preferred": true
  9759. }
  9760. ]
  9761. },
  9762. "require": {
  9763. "php": ">=7.2.5",
  9764. "symfony/polyfill-php80": "^1.16"
  9765. },
  9766. "require-dev": {
  9767. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  9768. },
  9769. "type": "library",
  9770. "autoload": {
  9771. "psr-4": {
  9772. "Symfony\\Component\\VarExporter\\": ""
  9773. },
  9774. "exclude-from-classmap": [
  9775. "/Tests/"
  9776. ]
  9777. },
  9778. "notification-url": "https://packagist.org/downloads/",
  9779. "license": [
  9780. "MIT"
  9781. ],
  9782. "authors": [
  9783. {
  9784. "name": "Nicolas Grekas",
  9785. "email": "p@tchwork.com"
  9786. },
  9787. {
  9788. "name": "Symfony Community",
  9789. "homepage": "https://symfony.com/contributors"
  9790. }
  9791. ],
  9792. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9793. "homepage": "https://symfony.com",
  9794. "keywords": [
  9795. "clone",
  9796. "construct",
  9797. "export",
  9798. "hydrate",
  9799. "instantiate",
  9800. "serialize"
  9801. ],
  9802. "support": {
  9803. "source": "https://github.com/symfony/var-exporter/tree/v5.4.10"
  9804. },
  9805. "funding": [
  9806. {
  9807. "url": "https://symfony.com/sponsor",
  9808. "type": "custom"
  9809. },
  9810. {
  9811. "url": "https://github.com/fabpot",
  9812. "type": "github"
  9813. },
  9814. {
  9815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9816. "type": "tidelift"
  9817. }
  9818. ],
  9819. "time": "2022-05-27T12:56:18+00:00"
  9820. },
  9821. {
  9822. "name": "tencentcloud/tencentcloud-sdk-php",
  9823. "version": "3.0.782",
  9824. "source": {
  9825. "type": "git",
  9826. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  9827. "reference": "e29935822bda0d413c81f4d970f4d3d54aff41fe"
  9828. },
  9829. "dist": {
  9830. "type": "zip",
  9831. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/e29935822bda0d413c81f4d970f4d3d54aff41fe",
  9832. "reference": "e29935822bda0d413c81f4d970f4d3d54aff41fe",
  9833. "shasum": "",
  9834. "mirrors": [
  9835. {
  9836. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9837. "preferred": true
  9838. }
  9839. ]
  9840. },
  9841. "require": {
  9842. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  9843. "php": ">=5.6.0"
  9844. },
  9845. "type": "library",
  9846. "autoload": {
  9847. "psr-4": {
  9848. "TencentCloud\\": "./src/TencentCloud"
  9849. },
  9850. "classmap": [
  9851. "src/QcloudApi/QcloudApi.php"
  9852. ]
  9853. },
  9854. "notification-url": "https://packagist.org/downloads/",
  9855. "license": [
  9856. "Apache-2.0"
  9857. ],
  9858. "authors": [
  9859. {
  9860. "name": "coolli",
  9861. "email": "tencentcloudapi@tencent.com",
  9862. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  9863. "role": "Developer"
  9864. }
  9865. ],
  9866. "description": "TencentCloudApi php sdk",
  9867. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  9868. "support": {
  9869. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  9870. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.782"
  9871. },
  9872. "time": "2022-12-07T00:15:00+00:00"
  9873. },
  9874. {
  9875. "name": "tymon/jwt-auth",
  9876. "version": "1.0.0-rc.5",
  9877. "source": {
  9878. "type": "git",
  9879. "url": "https://github.com/tymondesigns/jwt-auth.git",
  9880. "reference": "103739700dc0358039a33b5bc91247570bb83529"
  9881. },
  9882. "dist": {
  9883. "type": "zip",
  9884. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/103739700dc0358039a33b5bc91247570bb83529",
  9885. "reference": "103739700dc0358039a33b5bc91247570bb83529",
  9886. "shasum": "",
  9887. "mirrors": [
  9888. {
  9889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9890. "preferred": true
  9891. }
  9892. ]
  9893. },
  9894. "require": {
  9895. "illuminate/auth": "^5.1|^6",
  9896. "illuminate/contracts": "^5.1|^6",
  9897. "illuminate/http": "^5.1|^6",
  9898. "illuminate/support": "^5.1|^6",
  9899. "lcobucci/jwt": "^3.2",
  9900. "namshi/jose": "^7.0",
  9901. "nesbot/carbon": "^1.0|^2.0",
  9902. "php": "^5.5.9|^7.0"
  9903. },
  9904. "require-dev": {
  9905. "cartalyst/sentinel": "^2|^3",
  9906. "illuminate/console": "^5.1|^6",
  9907. "illuminate/database": "^5.1|^6",
  9908. "illuminate/routing": "^5.1|^6",
  9909. "mockery/mockery": ">=0.9.9",
  9910. "phpunit/phpunit": "~4.8|~6.0"
  9911. },
  9912. "type": "library",
  9913. "extra": {
  9914. "branch-alias": {
  9915. "dev-develop": "1.0-dev"
  9916. },
  9917. "laravel": {
  9918. "aliases": {
  9919. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  9920. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  9921. },
  9922. "providers": [
  9923. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  9924. ]
  9925. }
  9926. },
  9927. "autoload": {
  9928. "psr-4": {
  9929. "Tymon\\JWTAuth\\": "src/"
  9930. }
  9931. },
  9932. "notification-url": "https://packagist.org/downloads/",
  9933. "license": [
  9934. "MIT"
  9935. ],
  9936. "authors": [
  9937. {
  9938. "name": "Sean Tymon",
  9939. "email": "tymon148@gmail.com",
  9940. "homepage": "https://tymon.xyz",
  9941. "role": "Developer"
  9942. }
  9943. ],
  9944. "description": "JSON Web Token Authentication for Laravel and Lumen",
  9945. "homepage": "https://github.com/tymondesigns/jwt-auth",
  9946. "keywords": [
  9947. "Authentication",
  9948. "JSON Web Token",
  9949. "auth",
  9950. "jwt",
  9951. "laravel"
  9952. ],
  9953. "support": {
  9954. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  9955. "source": "https://github.com/tymondesigns/jwt-auth"
  9956. },
  9957. "time": "2019-09-09T03:33:47+00:00"
  9958. },
  9959. {
  9960. "name": "vlucas/phpdotenv",
  9961. "version": "v3.6.10",
  9962. "source": {
  9963. "type": "git",
  9964. "url": "https://github.com/vlucas/phpdotenv.git",
  9965. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e"
  9966. },
  9967. "dist": {
  9968. "type": "zip",
  9969. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/5b547cdb25825f10251370f57ba5d9d924e6f68e",
  9970. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e",
  9971. "shasum": "",
  9972. "mirrors": [
  9973. {
  9974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9975. "preferred": true
  9976. }
  9977. ]
  9978. },
  9979. "require": {
  9980. "php": "^5.4 || ^7.0 || ^8.0",
  9981. "phpoption/phpoption": "^1.5.2",
  9982. "symfony/polyfill-ctype": "^1.17"
  9983. },
  9984. "require-dev": {
  9985. "ext-filter": "*",
  9986. "ext-pcre": "*",
  9987. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  9988. },
  9989. "suggest": {
  9990. "ext-filter": "Required to use the boolean validator.",
  9991. "ext-pcre": "Required to use most of the library."
  9992. },
  9993. "type": "library",
  9994. "extra": {
  9995. "branch-alias": {
  9996. "dev-master": "3.6-dev"
  9997. }
  9998. },
  9999. "autoload": {
  10000. "psr-4": {
  10001. "Dotenv\\": "src/"
  10002. }
  10003. },
  10004. "notification-url": "https://packagist.org/downloads/",
  10005. "license": [
  10006. "BSD-3-Clause"
  10007. ],
  10008. "authors": [
  10009. {
  10010. "name": "Graham Campbell",
  10011. "email": "hello@gjcampbell.co.uk",
  10012. "homepage": "https://github.com/GrahamCampbell"
  10013. },
  10014. {
  10015. "name": "Vance Lucas",
  10016. "email": "vance@vancelucas.com",
  10017. "homepage": "https://github.com/vlucas"
  10018. }
  10019. ],
  10020. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10021. "keywords": [
  10022. "dotenv",
  10023. "env",
  10024. "environment"
  10025. ],
  10026. "support": {
  10027. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10028. "source": "https://github.com/vlucas/phpdotenv/tree/v3.6.10"
  10029. },
  10030. "funding": [
  10031. {
  10032. "url": "https://github.com/GrahamCampbell",
  10033. "type": "github"
  10034. },
  10035. {
  10036. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10037. "type": "tidelift"
  10038. }
  10039. ],
  10040. "time": "2021-12-12T23:02:06+00:00"
  10041. },
  10042. {
  10043. "name": "webmozart/assert",
  10044. "version": "1.11.0",
  10045. "source": {
  10046. "type": "git",
  10047. "url": "https://github.com/webmozarts/assert.git",
  10048. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10049. },
  10050. "dist": {
  10051. "type": "zip",
  10052. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10053. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10054. "shasum": "",
  10055. "mirrors": [
  10056. {
  10057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10058. "preferred": true
  10059. }
  10060. ]
  10061. },
  10062. "require": {
  10063. "ext-ctype": "*",
  10064. "php": "^7.2 || ^8.0"
  10065. },
  10066. "conflict": {
  10067. "phpstan/phpstan": "<0.12.20",
  10068. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10069. },
  10070. "require-dev": {
  10071. "phpunit/phpunit": "^8.5.13"
  10072. },
  10073. "type": "library",
  10074. "extra": {
  10075. "branch-alias": {
  10076. "dev-master": "1.10-dev"
  10077. }
  10078. },
  10079. "autoload": {
  10080. "psr-4": {
  10081. "Webmozart\\Assert\\": "src/"
  10082. }
  10083. },
  10084. "notification-url": "https://packagist.org/downloads/",
  10085. "license": [
  10086. "MIT"
  10087. ],
  10088. "authors": [
  10089. {
  10090. "name": "Bernhard Schussek",
  10091. "email": "bschussek@gmail.com"
  10092. }
  10093. ],
  10094. "description": "Assertions to validate method input/output with nice error messages.",
  10095. "keywords": [
  10096. "assert",
  10097. "check",
  10098. "validate"
  10099. ],
  10100. "support": {
  10101. "issues": "https://github.com/webmozarts/assert/issues",
  10102. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10103. },
  10104. "time": "2022-06-03T18:03:27+00:00"
  10105. },
  10106. {
  10107. "name": "wubuwei/php-apple-signin",
  10108. "version": "2.0.1",
  10109. "source": {
  10110. "type": "git",
  10111. "url": "https://github.com/wubuwei/php-apple-signin.git",
  10112. "reference": "5d0e75b30f78179ed63fda3f527195ac8b404458"
  10113. },
  10114. "dist": {
  10115. "type": "zip",
  10116. "url": "https://api.github.com/repos/wubuwei/php-apple-signin/zipball/5d0e75b30f78179ed63fda3f527195ac8b404458",
  10117. "reference": "5d0e75b30f78179ed63fda3f527195ac8b404458",
  10118. "shasum": "",
  10119. "mirrors": [
  10120. {
  10121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10122. "preferred": true
  10123. }
  10124. ]
  10125. },
  10126. "type": "library",
  10127. "autoload": {
  10128. "psr-4": {
  10129. "AppleSignIn\\": ""
  10130. }
  10131. },
  10132. "notification-url": "https://packagist.org/downloads/",
  10133. "license": [
  10134. "MIT"
  10135. ],
  10136. "authors": [
  10137. {
  10138. "name": "wubuwei",
  10139. "email": "wubuwei.dev@gmail.com",
  10140. "role": "Developer"
  10141. }
  10142. ],
  10143. "description": "A simple library to decode and parse Apple Sign In client tokens.",
  10144. "keywords": [
  10145. "JWK",
  10146. "apple",
  10147. "in",
  10148. "ios",
  10149. "jwt",
  10150. "php",
  10151. "sign"
  10152. ],
  10153. "support": {
  10154. "source": "https://github.com/wubuwei/php-apple-signin/tree/master"
  10155. },
  10156. "time": "2020-04-24T10:09:03+00:00"
  10157. }
  10158. ],
  10159. "packages-dev": [
  10160. {
  10161. "name": "doctrine/instantiator",
  10162. "version": "1.4.1",
  10163. "source": {
  10164. "type": "git",
  10165. "url": "https://github.com/doctrine/instantiator.git",
  10166. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  10167. },
  10168. "dist": {
  10169. "type": "zip",
  10170. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  10171. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  10172. "shasum": "",
  10173. "mirrors": [
  10174. {
  10175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10176. "preferred": true
  10177. }
  10178. ]
  10179. },
  10180. "require": {
  10181. "php": "^7.1 || ^8.0"
  10182. },
  10183. "require-dev": {
  10184. "doctrine/coding-standard": "^9",
  10185. "ext-pdo": "*",
  10186. "ext-phar": "*",
  10187. "phpbench/phpbench": "^0.16 || ^1",
  10188. "phpstan/phpstan": "^1.4",
  10189. "phpstan/phpstan-phpunit": "^1",
  10190. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  10191. "vimeo/psalm": "^4.22"
  10192. },
  10193. "type": "library",
  10194. "autoload": {
  10195. "psr-4": {
  10196. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10197. }
  10198. },
  10199. "notification-url": "https://packagist.org/downloads/",
  10200. "license": [
  10201. "MIT"
  10202. ],
  10203. "authors": [
  10204. {
  10205. "name": "Marco Pivetta",
  10206. "email": "ocramius@gmail.com",
  10207. "homepage": "https://ocramius.github.io/"
  10208. }
  10209. ],
  10210. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10211. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  10212. "keywords": [
  10213. "constructor",
  10214. "instantiate"
  10215. ],
  10216. "support": {
  10217. "issues": "https://github.com/doctrine/instantiator/issues",
  10218. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  10219. },
  10220. "funding": [
  10221. {
  10222. "url": "https://www.doctrine-project.org/sponsorship.html",
  10223. "type": "custom"
  10224. },
  10225. {
  10226. "url": "https://www.patreon.com/phpdoctrine",
  10227. "type": "patreon"
  10228. },
  10229. {
  10230. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  10231. "type": "tidelift"
  10232. }
  10233. ],
  10234. "time": "2022-03-03T08:28:38+00:00"
  10235. },
  10236. {
  10237. "name": "fzaninotto/faker",
  10238. "version": "v1.9.2",
  10239. "source": {
  10240. "type": "git",
  10241. "url": "https://github.com/fzaninotto/Faker.git",
  10242. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  10243. },
  10244. "dist": {
  10245. "type": "zip",
  10246. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  10247. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  10248. "shasum": "",
  10249. "mirrors": [
  10250. {
  10251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10252. "preferred": true
  10253. }
  10254. ]
  10255. },
  10256. "require": {
  10257. "php": "^5.3.3 || ^7.0"
  10258. },
  10259. "require-dev": {
  10260. "ext-intl": "*",
  10261. "phpunit/phpunit": "^4.8.35 || ^5.7",
  10262. "squizlabs/php_codesniffer": "^2.9.2"
  10263. },
  10264. "type": "library",
  10265. "extra": {
  10266. "branch-alias": {
  10267. "dev-master": "1.9-dev"
  10268. }
  10269. },
  10270. "autoload": {
  10271. "psr-4": {
  10272. "Faker\\": "src/Faker/"
  10273. }
  10274. },
  10275. "notification-url": "https://packagist.org/downloads/",
  10276. "license": [
  10277. "MIT"
  10278. ],
  10279. "authors": [
  10280. {
  10281. "name": "François Zaninotto"
  10282. }
  10283. ],
  10284. "description": "Faker is a PHP library that generates fake data for you.",
  10285. "keywords": [
  10286. "data",
  10287. "faker",
  10288. "fixtures"
  10289. ],
  10290. "support": {
  10291. "issues": "https://github.com/fzaninotto/Faker/issues",
  10292. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  10293. },
  10294. "abandoned": true,
  10295. "time": "2020-12-11T09:56:16+00:00"
  10296. },
  10297. {
  10298. "name": "hamcrest/hamcrest-php",
  10299. "version": "v2.0.1",
  10300. "source": {
  10301. "type": "git",
  10302. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10303. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10304. },
  10305. "dist": {
  10306. "type": "zip",
  10307. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10308. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10309. "shasum": "",
  10310. "mirrors": [
  10311. {
  10312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10313. "preferred": true
  10314. }
  10315. ]
  10316. },
  10317. "require": {
  10318. "php": "^5.3|^7.0|^8.0"
  10319. },
  10320. "replace": {
  10321. "cordoval/hamcrest-php": "*",
  10322. "davedevelopment/hamcrest-php": "*",
  10323. "kodova/hamcrest-php": "*"
  10324. },
  10325. "require-dev": {
  10326. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10327. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10328. },
  10329. "type": "library",
  10330. "extra": {
  10331. "branch-alias": {
  10332. "dev-master": "2.1-dev"
  10333. }
  10334. },
  10335. "autoload": {
  10336. "classmap": [
  10337. "hamcrest"
  10338. ]
  10339. },
  10340. "notification-url": "https://packagist.org/downloads/",
  10341. "license": [
  10342. "BSD-3-Clause"
  10343. ],
  10344. "description": "This is the PHP port of Hamcrest Matchers",
  10345. "keywords": [
  10346. "test"
  10347. ],
  10348. "support": {
  10349. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10350. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10351. },
  10352. "time": "2020-07-09T08:09:16+00:00"
  10353. },
  10354. {
  10355. "name": "mockery/mockery",
  10356. "version": "1.5.1",
  10357. "source": {
  10358. "type": "git",
  10359. "url": "https://github.com/mockery/mockery.git",
  10360. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  10361. },
  10362. "dist": {
  10363. "type": "zip",
  10364. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  10365. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  10366. "shasum": "",
  10367. "mirrors": [
  10368. {
  10369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10370. "preferred": true
  10371. }
  10372. ]
  10373. },
  10374. "require": {
  10375. "hamcrest/hamcrest-php": "^2.0.1",
  10376. "lib-pcre": ">=7.0",
  10377. "php": "^7.3 || ^8.0"
  10378. },
  10379. "conflict": {
  10380. "phpunit/phpunit": "<8.0"
  10381. },
  10382. "require-dev": {
  10383. "phpunit/phpunit": "^8.5 || ^9.3"
  10384. },
  10385. "type": "library",
  10386. "extra": {
  10387. "branch-alias": {
  10388. "dev-master": "1.4.x-dev"
  10389. }
  10390. },
  10391. "autoload": {
  10392. "psr-0": {
  10393. "Mockery": "library/"
  10394. }
  10395. },
  10396. "notification-url": "https://packagist.org/downloads/",
  10397. "license": [
  10398. "BSD-3-Clause"
  10399. ],
  10400. "authors": [
  10401. {
  10402. "name": "Pádraic Brady",
  10403. "email": "padraic.brady@gmail.com",
  10404. "homepage": "http://blog.astrumfutura.com"
  10405. },
  10406. {
  10407. "name": "Dave Marshall",
  10408. "email": "dave.marshall@atstsolutions.co.uk",
  10409. "homepage": "http://davedevelopment.co.uk"
  10410. }
  10411. ],
  10412. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10413. "homepage": "https://github.com/mockery/mockery",
  10414. "keywords": [
  10415. "BDD",
  10416. "TDD",
  10417. "library",
  10418. "mock",
  10419. "mock objects",
  10420. "mockery",
  10421. "stub",
  10422. "test",
  10423. "test double",
  10424. "testing"
  10425. ],
  10426. "support": {
  10427. "issues": "https://github.com/mockery/mockery/issues",
  10428. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  10429. },
  10430. "time": "2022-09-07T15:32:08+00:00"
  10431. },
  10432. {
  10433. "name": "myclabs/deep-copy",
  10434. "version": "1.11.0",
  10435. "source": {
  10436. "type": "git",
  10437. "url": "https://github.com/myclabs/DeepCopy.git",
  10438. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  10439. },
  10440. "dist": {
  10441. "type": "zip",
  10442. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  10443. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  10444. "shasum": "",
  10445. "mirrors": [
  10446. {
  10447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10448. "preferred": true
  10449. }
  10450. ]
  10451. },
  10452. "require": {
  10453. "php": "^7.1 || ^8.0"
  10454. },
  10455. "conflict": {
  10456. "doctrine/collections": "<1.6.8",
  10457. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  10458. },
  10459. "require-dev": {
  10460. "doctrine/collections": "^1.6.8",
  10461. "doctrine/common": "^2.13.3 || ^3.2.2",
  10462. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10463. },
  10464. "type": "library",
  10465. "autoload": {
  10466. "files": [
  10467. "src/DeepCopy/deep_copy.php"
  10468. ],
  10469. "psr-4": {
  10470. "DeepCopy\\": "src/DeepCopy/"
  10471. }
  10472. },
  10473. "notification-url": "https://packagist.org/downloads/",
  10474. "license": [
  10475. "MIT"
  10476. ],
  10477. "description": "Create deep copies (clones) of your objects",
  10478. "keywords": [
  10479. "clone",
  10480. "copy",
  10481. "duplicate",
  10482. "object",
  10483. "object graph"
  10484. ],
  10485. "support": {
  10486. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10487. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  10488. },
  10489. "funding": [
  10490. {
  10491. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10492. "type": "tidelift"
  10493. }
  10494. ],
  10495. "time": "2022-03-03T13:19:32+00:00"
  10496. },
  10497. {
  10498. "name": "phar-io/manifest",
  10499. "version": "2.0.3",
  10500. "source": {
  10501. "type": "git",
  10502. "url": "https://github.com/phar-io/manifest.git",
  10503. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  10504. },
  10505. "dist": {
  10506. "type": "zip",
  10507. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  10508. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  10509. "shasum": "",
  10510. "mirrors": [
  10511. {
  10512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10513. "preferred": true
  10514. }
  10515. ]
  10516. },
  10517. "require": {
  10518. "ext-dom": "*",
  10519. "ext-phar": "*",
  10520. "ext-xmlwriter": "*",
  10521. "phar-io/version": "^3.0.1",
  10522. "php": "^7.2 || ^8.0"
  10523. },
  10524. "type": "library",
  10525. "extra": {
  10526. "branch-alias": {
  10527. "dev-master": "2.0.x-dev"
  10528. }
  10529. },
  10530. "autoload": {
  10531. "classmap": [
  10532. "src/"
  10533. ]
  10534. },
  10535. "notification-url": "https://packagist.org/downloads/",
  10536. "license": [
  10537. "BSD-3-Clause"
  10538. ],
  10539. "authors": [
  10540. {
  10541. "name": "Arne Blankerts",
  10542. "email": "arne@blankerts.de",
  10543. "role": "Developer"
  10544. },
  10545. {
  10546. "name": "Sebastian Heuer",
  10547. "email": "sebastian@phpeople.de",
  10548. "role": "Developer"
  10549. },
  10550. {
  10551. "name": "Sebastian Bergmann",
  10552. "email": "sebastian@phpunit.de",
  10553. "role": "Developer"
  10554. }
  10555. ],
  10556. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10557. "support": {
  10558. "issues": "https://github.com/phar-io/manifest/issues",
  10559. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  10560. },
  10561. "time": "2021-07-20T11:28:43+00:00"
  10562. },
  10563. {
  10564. "name": "phar-io/version",
  10565. "version": "3.2.1",
  10566. "source": {
  10567. "type": "git",
  10568. "url": "https://github.com/phar-io/version.git",
  10569. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10570. },
  10571. "dist": {
  10572. "type": "zip",
  10573. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10574. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10575. "shasum": "",
  10576. "mirrors": [
  10577. {
  10578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10579. "preferred": true
  10580. }
  10581. ]
  10582. },
  10583. "require": {
  10584. "php": "^7.2 || ^8.0"
  10585. },
  10586. "type": "library",
  10587. "autoload": {
  10588. "classmap": [
  10589. "src/"
  10590. ]
  10591. },
  10592. "notification-url": "https://packagist.org/downloads/",
  10593. "license": [
  10594. "BSD-3-Clause"
  10595. ],
  10596. "authors": [
  10597. {
  10598. "name": "Arne Blankerts",
  10599. "email": "arne@blankerts.de",
  10600. "role": "Developer"
  10601. },
  10602. {
  10603. "name": "Sebastian Heuer",
  10604. "email": "sebastian@phpeople.de",
  10605. "role": "Developer"
  10606. },
  10607. {
  10608. "name": "Sebastian Bergmann",
  10609. "email": "sebastian@phpunit.de",
  10610. "role": "Developer"
  10611. }
  10612. ],
  10613. "description": "Library for handling version information and constraints",
  10614. "support": {
  10615. "issues": "https://github.com/phar-io/version/issues",
  10616. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10617. },
  10618. "time": "2022-02-21T01:04:05+00:00"
  10619. },
  10620. {
  10621. "name": "phpunit/php-code-coverage",
  10622. "version": "7.0.15",
  10623. "source": {
  10624. "type": "git",
  10625. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10626. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  10627. },
  10628. "dist": {
  10629. "type": "zip",
  10630. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  10631. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  10632. "shasum": "",
  10633. "mirrors": [
  10634. {
  10635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10636. "preferred": true
  10637. }
  10638. ]
  10639. },
  10640. "require": {
  10641. "ext-dom": "*",
  10642. "ext-xmlwriter": "*",
  10643. "php": ">=7.2",
  10644. "phpunit/php-file-iterator": "^2.0.2",
  10645. "phpunit/php-text-template": "^1.2.1",
  10646. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  10647. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  10648. "sebastian/environment": "^4.2.2",
  10649. "sebastian/version": "^2.0.1",
  10650. "theseer/tokenizer": "^1.1.3"
  10651. },
  10652. "require-dev": {
  10653. "phpunit/phpunit": "^8.2.2"
  10654. },
  10655. "suggest": {
  10656. "ext-xdebug": "^2.7.2"
  10657. },
  10658. "type": "library",
  10659. "extra": {
  10660. "branch-alias": {
  10661. "dev-master": "7.0-dev"
  10662. }
  10663. },
  10664. "autoload": {
  10665. "classmap": [
  10666. "src/"
  10667. ]
  10668. },
  10669. "notification-url": "https://packagist.org/downloads/",
  10670. "license": [
  10671. "BSD-3-Clause"
  10672. ],
  10673. "authors": [
  10674. {
  10675. "name": "Sebastian Bergmann",
  10676. "email": "sebastian@phpunit.de",
  10677. "role": "lead"
  10678. }
  10679. ],
  10680. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10681. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10682. "keywords": [
  10683. "coverage",
  10684. "testing",
  10685. "xunit"
  10686. ],
  10687. "support": {
  10688. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10689. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  10690. },
  10691. "funding": [
  10692. {
  10693. "url": "https://github.com/sebastianbergmann",
  10694. "type": "github"
  10695. }
  10696. ],
  10697. "time": "2021-07-26T12:20:09+00:00"
  10698. },
  10699. {
  10700. "name": "phpunit/php-file-iterator",
  10701. "version": "2.0.5",
  10702. "source": {
  10703. "type": "git",
  10704. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10705. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
  10706. },
  10707. "dist": {
  10708. "type": "zip",
  10709. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  10710. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  10711. "shasum": "",
  10712. "mirrors": [
  10713. {
  10714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10715. "preferred": true
  10716. }
  10717. ]
  10718. },
  10719. "require": {
  10720. "php": ">=7.1"
  10721. },
  10722. "require-dev": {
  10723. "phpunit/phpunit": "^8.5"
  10724. },
  10725. "type": "library",
  10726. "extra": {
  10727. "branch-alias": {
  10728. "dev-master": "2.0.x-dev"
  10729. }
  10730. },
  10731. "autoload": {
  10732. "classmap": [
  10733. "src/"
  10734. ]
  10735. },
  10736. "notification-url": "https://packagist.org/downloads/",
  10737. "license": [
  10738. "BSD-3-Clause"
  10739. ],
  10740. "authors": [
  10741. {
  10742. "name": "Sebastian Bergmann",
  10743. "email": "sebastian@phpunit.de",
  10744. "role": "lead"
  10745. }
  10746. ],
  10747. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10748. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10749. "keywords": [
  10750. "filesystem",
  10751. "iterator"
  10752. ],
  10753. "support": {
  10754. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10755. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5"
  10756. },
  10757. "funding": [
  10758. {
  10759. "url": "https://github.com/sebastianbergmann",
  10760. "type": "github"
  10761. }
  10762. ],
  10763. "time": "2021-12-02T12:42:26+00:00"
  10764. },
  10765. {
  10766. "name": "phpunit/php-text-template",
  10767. "version": "1.2.1",
  10768. "source": {
  10769. "type": "git",
  10770. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10771. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  10772. },
  10773. "dist": {
  10774. "type": "zip",
  10775. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10776. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10777. "shasum": "",
  10778. "mirrors": [
  10779. {
  10780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10781. "preferred": true
  10782. }
  10783. ]
  10784. },
  10785. "require": {
  10786. "php": ">=5.3.3"
  10787. },
  10788. "type": "library",
  10789. "autoload": {
  10790. "classmap": [
  10791. "src/"
  10792. ]
  10793. },
  10794. "notification-url": "https://packagist.org/downloads/",
  10795. "license": [
  10796. "BSD-3-Clause"
  10797. ],
  10798. "authors": [
  10799. {
  10800. "name": "Sebastian Bergmann",
  10801. "email": "sebastian@phpunit.de",
  10802. "role": "lead"
  10803. }
  10804. ],
  10805. "description": "Simple template engine.",
  10806. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10807. "keywords": [
  10808. "template"
  10809. ],
  10810. "support": {
  10811. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10812. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  10813. },
  10814. "time": "2015-06-21T13:50:34+00:00"
  10815. },
  10816. {
  10817. "name": "phpunit/php-timer",
  10818. "version": "2.1.3",
  10819. "source": {
  10820. "type": "git",
  10821. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10822. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  10823. },
  10824. "dist": {
  10825. "type": "zip",
  10826. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  10827. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  10828. "shasum": "",
  10829. "mirrors": [
  10830. {
  10831. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10832. "preferred": true
  10833. }
  10834. ]
  10835. },
  10836. "require": {
  10837. "php": ">=7.1"
  10838. },
  10839. "require-dev": {
  10840. "phpunit/phpunit": "^8.5"
  10841. },
  10842. "type": "library",
  10843. "extra": {
  10844. "branch-alias": {
  10845. "dev-master": "2.1-dev"
  10846. }
  10847. },
  10848. "autoload": {
  10849. "classmap": [
  10850. "src/"
  10851. ]
  10852. },
  10853. "notification-url": "https://packagist.org/downloads/",
  10854. "license": [
  10855. "BSD-3-Clause"
  10856. ],
  10857. "authors": [
  10858. {
  10859. "name": "Sebastian Bergmann",
  10860. "email": "sebastian@phpunit.de",
  10861. "role": "lead"
  10862. }
  10863. ],
  10864. "description": "Utility class for timing",
  10865. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10866. "keywords": [
  10867. "timer"
  10868. ],
  10869. "support": {
  10870. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10871. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  10872. },
  10873. "funding": [
  10874. {
  10875. "url": "https://github.com/sebastianbergmann",
  10876. "type": "github"
  10877. }
  10878. ],
  10879. "time": "2020-11-30T08:20:02+00:00"
  10880. },
  10881. {
  10882. "name": "phpunit/php-token-stream",
  10883. "version": "4.0.4",
  10884. "source": {
  10885. "type": "git",
  10886. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  10887. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  10888. },
  10889. "dist": {
  10890. "type": "zip",
  10891. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  10892. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  10893. "shasum": "",
  10894. "mirrors": [
  10895. {
  10896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10897. "preferred": true
  10898. }
  10899. ]
  10900. },
  10901. "require": {
  10902. "ext-tokenizer": "*",
  10903. "php": "^7.3 || ^8.0"
  10904. },
  10905. "require-dev": {
  10906. "phpunit/phpunit": "^9.0"
  10907. },
  10908. "type": "library",
  10909. "extra": {
  10910. "branch-alias": {
  10911. "dev-master": "4.0-dev"
  10912. }
  10913. },
  10914. "autoload": {
  10915. "classmap": [
  10916. "src/"
  10917. ]
  10918. },
  10919. "notification-url": "https://packagist.org/downloads/",
  10920. "license": [
  10921. "BSD-3-Clause"
  10922. ],
  10923. "authors": [
  10924. {
  10925. "name": "Sebastian Bergmann",
  10926. "email": "sebastian@phpunit.de"
  10927. }
  10928. ],
  10929. "description": "Wrapper around PHP's tokenizer extension.",
  10930. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  10931. "keywords": [
  10932. "tokenizer"
  10933. ],
  10934. "support": {
  10935. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  10936. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  10937. },
  10938. "funding": [
  10939. {
  10940. "url": "https://github.com/sebastianbergmann",
  10941. "type": "github"
  10942. }
  10943. ],
  10944. "abandoned": true,
  10945. "time": "2020-08-04T08:28:15+00:00"
  10946. },
  10947. {
  10948. "name": "phpunit/phpunit",
  10949. "version": "8.5.30",
  10950. "source": {
  10951. "type": "git",
  10952. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10953. "reference": "4fd448df9affda65a5faa58f8b93087d415216ce"
  10954. },
  10955. "dist": {
  10956. "type": "zip",
  10957. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4fd448df9affda65a5faa58f8b93087d415216ce",
  10958. "reference": "4fd448df9affda65a5faa58f8b93087d415216ce",
  10959. "shasum": "",
  10960. "mirrors": [
  10961. {
  10962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10963. "preferred": true
  10964. }
  10965. ]
  10966. },
  10967. "require": {
  10968. "doctrine/instantiator": "^1.3.1",
  10969. "ext-dom": "*",
  10970. "ext-json": "*",
  10971. "ext-libxml": "*",
  10972. "ext-mbstring": "*",
  10973. "ext-xml": "*",
  10974. "ext-xmlwriter": "*",
  10975. "myclabs/deep-copy": "^1.10.0",
  10976. "phar-io/manifest": "^2.0.3",
  10977. "phar-io/version": "^3.0.2",
  10978. "php": ">=7.2",
  10979. "phpunit/php-code-coverage": "^7.0.12",
  10980. "phpunit/php-file-iterator": "^2.0.4",
  10981. "phpunit/php-text-template": "^1.2.1",
  10982. "phpunit/php-timer": "^2.1.2",
  10983. "sebastian/comparator": "^3.0.5",
  10984. "sebastian/diff": "^3.0.2",
  10985. "sebastian/environment": "^4.2.3",
  10986. "sebastian/exporter": "^3.1.5",
  10987. "sebastian/global-state": "^3.0.0",
  10988. "sebastian/object-enumerator": "^3.0.3",
  10989. "sebastian/resource-operations": "^2.0.1",
  10990. "sebastian/type": "^1.1.3",
  10991. "sebastian/version": "^2.0.1"
  10992. },
  10993. "suggest": {
  10994. "ext-soap": "*",
  10995. "ext-xdebug": "*",
  10996. "phpunit/php-invoker": "^2.0.0"
  10997. },
  10998. "bin": [
  10999. "phpunit"
  11000. ],
  11001. "type": "library",
  11002. "extra": {
  11003. "branch-alias": {
  11004. "dev-master": "8.5-dev"
  11005. }
  11006. },
  11007. "autoload": {
  11008. "classmap": [
  11009. "src/"
  11010. ]
  11011. },
  11012. "notification-url": "https://packagist.org/downloads/",
  11013. "license": [
  11014. "BSD-3-Clause"
  11015. ],
  11016. "authors": [
  11017. {
  11018. "name": "Sebastian Bergmann",
  11019. "email": "sebastian@phpunit.de",
  11020. "role": "lead"
  11021. }
  11022. ],
  11023. "description": "The PHP Unit Testing framework.",
  11024. "homepage": "https://phpunit.de/",
  11025. "keywords": [
  11026. "phpunit",
  11027. "testing",
  11028. "xunit"
  11029. ],
  11030. "support": {
  11031. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11032. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.30"
  11033. },
  11034. "funding": [
  11035. {
  11036. "url": "https://phpunit.de/sponsors.html",
  11037. "type": "custom"
  11038. },
  11039. {
  11040. "url": "https://github.com/sebastianbergmann",
  11041. "type": "github"
  11042. },
  11043. {
  11044. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11045. "type": "tidelift"
  11046. }
  11047. ],
  11048. "time": "2022-09-25T03:43:00+00:00"
  11049. },
  11050. {
  11051. "name": "sebastian/code-unit-reverse-lookup",
  11052. "version": "1.0.2",
  11053. "source": {
  11054. "type": "git",
  11055. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11056. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  11057. },
  11058. "dist": {
  11059. "type": "zip",
  11060. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  11061. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  11062. "shasum": "",
  11063. "mirrors": [
  11064. {
  11065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11066. "preferred": true
  11067. }
  11068. ]
  11069. },
  11070. "require": {
  11071. "php": ">=5.6"
  11072. },
  11073. "require-dev": {
  11074. "phpunit/phpunit": "^8.5"
  11075. },
  11076. "type": "library",
  11077. "extra": {
  11078. "branch-alias": {
  11079. "dev-master": "1.0.x-dev"
  11080. }
  11081. },
  11082. "autoload": {
  11083. "classmap": [
  11084. "src/"
  11085. ]
  11086. },
  11087. "notification-url": "https://packagist.org/downloads/",
  11088. "license": [
  11089. "BSD-3-Clause"
  11090. ],
  11091. "authors": [
  11092. {
  11093. "name": "Sebastian Bergmann",
  11094. "email": "sebastian@phpunit.de"
  11095. }
  11096. ],
  11097. "description": "Looks up which function or method a line of code belongs to",
  11098. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11099. "support": {
  11100. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11101. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  11102. },
  11103. "funding": [
  11104. {
  11105. "url": "https://github.com/sebastianbergmann",
  11106. "type": "github"
  11107. }
  11108. ],
  11109. "time": "2020-11-30T08:15:22+00:00"
  11110. },
  11111. {
  11112. "name": "sebastian/comparator",
  11113. "version": "3.0.5",
  11114. "source": {
  11115. "type": "git",
  11116. "url": "https://github.com/sebastianbergmann/comparator.git",
  11117. "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770"
  11118. },
  11119. "dist": {
  11120. "type": "zip",
  11121. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1dc7ceb4a24aede938c7af2a9ed1de09609ca770",
  11122. "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770",
  11123. "shasum": "",
  11124. "mirrors": [
  11125. {
  11126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11127. "preferred": true
  11128. }
  11129. ]
  11130. },
  11131. "require": {
  11132. "php": ">=7.1",
  11133. "sebastian/diff": "^3.0",
  11134. "sebastian/exporter": "^3.1"
  11135. },
  11136. "require-dev": {
  11137. "phpunit/phpunit": "^8.5"
  11138. },
  11139. "type": "library",
  11140. "extra": {
  11141. "branch-alias": {
  11142. "dev-master": "3.0-dev"
  11143. }
  11144. },
  11145. "autoload": {
  11146. "classmap": [
  11147. "src/"
  11148. ]
  11149. },
  11150. "notification-url": "https://packagist.org/downloads/",
  11151. "license": [
  11152. "BSD-3-Clause"
  11153. ],
  11154. "authors": [
  11155. {
  11156. "name": "Sebastian Bergmann",
  11157. "email": "sebastian@phpunit.de"
  11158. },
  11159. {
  11160. "name": "Jeff Welch",
  11161. "email": "whatthejeff@gmail.com"
  11162. },
  11163. {
  11164. "name": "Volker Dusch",
  11165. "email": "github@wallbash.com"
  11166. },
  11167. {
  11168. "name": "Bernhard Schussek",
  11169. "email": "bschussek@2bepublished.at"
  11170. }
  11171. ],
  11172. "description": "Provides the functionality to compare PHP values for equality",
  11173. "homepage": "https://github.com/sebastianbergmann/comparator",
  11174. "keywords": [
  11175. "comparator",
  11176. "compare",
  11177. "equality"
  11178. ],
  11179. "support": {
  11180. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11181. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.5"
  11182. },
  11183. "funding": [
  11184. {
  11185. "url": "https://github.com/sebastianbergmann",
  11186. "type": "github"
  11187. }
  11188. ],
  11189. "time": "2022-09-14T12:31:48+00:00"
  11190. },
  11191. {
  11192. "name": "sebastian/diff",
  11193. "version": "3.0.3",
  11194. "source": {
  11195. "type": "git",
  11196. "url": "https://github.com/sebastianbergmann/diff.git",
  11197. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  11198. },
  11199. "dist": {
  11200. "type": "zip",
  11201. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  11202. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  11203. "shasum": "",
  11204. "mirrors": [
  11205. {
  11206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11207. "preferred": true
  11208. }
  11209. ]
  11210. },
  11211. "require": {
  11212. "php": ">=7.1"
  11213. },
  11214. "require-dev": {
  11215. "phpunit/phpunit": "^7.5 || ^8.0",
  11216. "symfony/process": "^2 || ^3.3 || ^4"
  11217. },
  11218. "type": "library",
  11219. "extra": {
  11220. "branch-alias": {
  11221. "dev-master": "3.0-dev"
  11222. }
  11223. },
  11224. "autoload": {
  11225. "classmap": [
  11226. "src/"
  11227. ]
  11228. },
  11229. "notification-url": "https://packagist.org/downloads/",
  11230. "license": [
  11231. "BSD-3-Clause"
  11232. ],
  11233. "authors": [
  11234. {
  11235. "name": "Sebastian Bergmann",
  11236. "email": "sebastian@phpunit.de"
  11237. },
  11238. {
  11239. "name": "Kore Nordmann",
  11240. "email": "mail@kore-nordmann.de"
  11241. }
  11242. ],
  11243. "description": "Diff implementation",
  11244. "homepage": "https://github.com/sebastianbergmann/diff",
  11245. "keywords": [
  11246. "diff",
  11247. "udiff",
  11248. "unidiff",
  11249. "unified diff"
  11250. ],
  11251. "support": {
  11252. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11253. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  11254. },
  11255. "funding": [
  11256. {
  11257. "url": "https://github.com/sebastianbergmann",
  11258. "type": "github"
  11259. }
  11260. ],
  11261. "time": "2020-11-30T07:59:04+00:00"
  11262. },
  11263. {
  11264. "name": "sebastian/environment",
  11265. "version": "4.2.4",
  11266. "source": {
  11267. "type": "git",
  11268. "url": "https://github.com/sebastianbergmann/environment.git",
  11269. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  11270. },
  11271. "dist": {
  11272. "type": "zip",
  11273. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  11274. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  11275. "shasum": "",
  11276. "mirrors": [
  11277. {
  11278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11279. "preferred": true
  11280. }
  11281. ]
  11282. },
  11283. "require": {
  11284. "php": ">=7.1"
  11285. },
  11286. "require-dev": {
  11287. "phpunit/phpunit": "^7.5"
  11288. },
  11289. "suggest": {
  11290. "ext-posix": "*"
  11291. },
  11292. "type": "library",
  11293. "extra": {
  11294. "branch-alias": {
  11295. "dev-master": "4.2-dev"
  11296. }
  11297. },
  11298. "autoload": {
  11299. "classmap": [
  11300. "src/"
  11301. ]
  11302. },
  11303. "notification-url": "https://packagist.org/downloads/",
  11304. "license": [
  11305. "BSD-3-Clause"
  11306. ],
  11307. "authors": [
  11308. {
  11309. "name": "Sebastian Bergmann",
  11310. "email": "sebastian@phpunit.de"
  11311. }
  11312. ],
  11313. "description": "Provides functionality to handle HHVM/PHP environments",
  11314. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11315. "keywords": [
  11316. "Xdebug",
  11317. "environment",
  11318. "hhvm"
  11319. ],
  11320. "support": {
  11321. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11322. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  11323. },
  11324. "funding": [
  11325. {
  11326. "url": "https://github.com/sebastianbergmann",
  11327. "type": "github"
  11328. }
  11329. ],
  11330. "time": "2020-11-30T07:53:42+00:00"
  11331. },
  11332. {
  11333. "name": "sebastian/exporter",
  11334. "version": "3.1.5",
  11335. "source": {
  11336. "type": "git",
  11337. "url": "https://github.com/sebastianbergmann/exporter.git",
  11338. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6"
  11339. },
  11340. "dist": {
  11341. "type": "zip",
  11342. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/73a9676f2833b9a7c36968f9d882589cd75511e6",
  11343. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6",
  11344. "shasum": "",
  11345. "mirrors": [
  11346. {
  11347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11348. "preferred": true
  11349. }
  11350. ]
  11351. },
  11352. "require": {
  11353. "php": ">=7.0",
  11354. "sebastian/recursion-context": "^3.0"
  11355. },
  11356. "require-dev": {
  11357. "ext-mbstring": "*",
  11358. "phpunit/phpunit": "^8.5"
  11359. },
  11360. "type": "library",
  11361. "extra": {
  11362. "branch-alias": {
  11363. "dev-master": "3.1.x-dev"
  11364. }
  11365. },
  11366. "autoload": {
  11367. "classmap": [
  11368. "src/"
  11369. ]
  11370. },
  11371. "notification-url": "https://packagist.org/downloads/",
  11372. "license": [
  11373. "BSD-3-Clause"
  11374. ],
  11375. "authors": [
  11376. {
  11377. "name": "Sebastian Bergmann",
  11378. "email": "sebastian@phpunit.de"
  11379. },
  11380. {
  11381. "name": "Jeff Welch",
  11382. "email": "whatthejeff@gmail.com"
  11383. },
  11384. {
  11385. "name": "Volker Dusch",
  11386. "email": "github@wallbash.com"
  11387. },
  11388. {
  11389. "name": "Adam Harvey",
  11390. "email": "aharvey@php.net"
  11391. },
  11392. {
  11393. "name": "Bernhard Schussek",
  11394. "email": "bschussek@gmail.com"
  11395. }
  11396. ],
  11397. "description": "Provides the functionality to export PHP variables for visualization",
  11398. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11399. "keywords": [
  11400. "export",
  11401. "exporter"
  11402. ],
  11403. "support": {
  11404. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11405. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.5"
  11406. },
  11407. "funding": [
  11408. {
  11409. "url": "https://github.com/sebastianbergmann",
  11410. "type": "github"
  11411. }
  11412. ],
  11413. "time": "2022-09-14T06:00:17+00:00"
  11414. },
  11415. {
  11416. "name": "sebastian/global-state",
  11417. "version": "3.0.2",
  11418. "source": {
  11419. "type": "git",
  11420. "url": "https://github.com/sebastianbergmann/global-state.git",
  11421. "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921"
  11422. },
  11423. "dist": {
  11424. "type": "zip",
  11425. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/de036ec91d55d2a9e0db2ba975b512cdb1c23921",
  11426. "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921",
  11427. "shasum": "",
  11428. "mirrors": [
  11429. {
  11430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11431. "preferred": true
  11432. }
  11433. ]
  11434. },
  11435. "require": {
  11436. "php": ">=7.2",
  11437. "sebastian/object-reflector": "^1.1.1",
  11438. "sebastian/recursion-context": "^3.0"
  11439. },
  11440. "require-dev": {
  11441. "ext-dom": "*",
  11442. "phpunit/phpunit": "^8.0"
  11443. },
  11444. "suggest": {
  11445. "ext-uopz": "*"
  11446. },
  11447. "type": "library",
  11448. "extra": {
  11449. "branch-alias": {
  11450. "dev-master": "3.0-dev"
  11451. }
  11452. },
  11453. "autoload": {
  11454. "classmap": [
  11455. "src/"
  11456. ]
  11457. },
  11458. "notification-url": "https://packagist.org/downloads/",
  11459. "license": [
  11460. "BSD-3-Clause"
  11461. ],
  11462. "authors": [
  11463. {
  11464. "name": "Sebastian Bergmann",
  11465. "email": "sebastian@phpunit.de"
  11466. }
  11467. ],
  11468. "description": "Snapshotting of global state",
  11469. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11470. "keywords": [
  11471. "global state"
  11472. ],
  11473. "support": {
  11474. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11475. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.2"
  11476. },
  11477. "funding": [
  11478. {
  11479. "url": "https://github.com/sebastianbergmann",
  11480. "type": "github"
  11481. }
  11482. ],
  11483. "time": "2022-02-10T06:55:38+00:00"
  11484. },
  11485. {
  11486. "name": "sebastian/object-enumerator",
  11487. "version": "3.0.4",
  11488. "source": {
  11489. "type": "git",
  11490. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11491. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  11492. },
  11493. "dist": {
  11494. "type": "zip",
  11495. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  11496. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  11497. "shasum": "",
  11498. "mirrors": [
  11499. {
  11500. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11501. "preferred": true
  11502. }
  11503. ]
  11504. },
  11505. "require": {
  11506. "php": ">=7.0",
  11507. "sebastian/object-reflector": "^1.1.1",
  11508. "sebastian/recursion-context": "^3.0"
  11509. },
  11510. "require-dev": {
  11511. "phpunit/phpunit": "^6.0"
  11512. },
  11513. "type": "library",
  11514. "extra": {
  11515. "branch-alias": {
  11516. "dev-master": "3.0.x-dev"
  11517. }
  11518. },
  11519. "autoload": {
  11520. "classmap": [
  11521. "src/"
  11522. ]
  11523. },
  11524. "notification-url": "https://packagist.org/downloads/",
  11525. "license": [
  11526. "BSD-3-Clause"
  11527. ],
  11528. "authors": [
  11529. {
  11530. "name": "Sebastian Bergmann",
  11531. "email": "sebastian@phpunit.de"
  11532. }
  11533. ],
  11534. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11535. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11536. "support": {
  11537. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11538. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  11539. },
  11540. "funding": [
  11541. {
  11542. "url": "https://github.com/sebastianbergmann",
  11543. "type": "github"
  11544. }
  11545. ],
  11546. "time": "2020-11-30T07:40:27+00:00"
  11547. },
  11548. {
  11549. "name": "sebastian/object-reflector",
  11550. "version": "1.1.2",
  11551. "source": {
  11552. "type": "git",
  11553. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11554. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  11555. },
  11556. "dist": {
  11557. "type": "zip",
  11558. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  11559. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  11560. "shasum": "",
  11561. "mirrors": [
  11562. {
  11563. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11564. "preferred": true
  11565. }
  11566. ]
  11567. },
  11568. "require": {
  11569. "php": ">=7.0"
  11570. },
  11571. "require-dev": {
  11572. "phpunit/phpunit": "^6.0"
  11573. },
  11574. "type": "library",
  11575. "extra": {
  11576. "branch-alias": {
  11577. "dev-master": "1.1-dev"
  11578. }
  11579. },
  11580. "autoload": {
  11581. "classmap": [
  11582. "src/"
  11583. ]
  11584. },
  11585. "notification-url": "https://packagist.org/downloads/",
  11586. "license": [
  11587. "BSD-3-Clause"
  11588. ],
  11589. "authors": [
  11590. {
  11591. "name": "Sebastian Bergmann",
  11592. "email": "sebastian@phpunit.de"
  11593. }
  11594. ],
  11595. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11596. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11597. "support": {
  11598. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11599. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  11600. },
  11601. "funding": [
  11602. {
  11603. "url": "https://github.com/sebastianbergmann",
  11604. "type": "github"
  11605. }
  11606. ],
  11607. "time": "2020-11-30T07:37:18+00:00"
  11608. },
  11609. {
  11610. "name": "sebastian/recursion-context",
  11611. "version": "3.0.1",
  11612. "source": {
  11613. "type": "git",
  11614. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11615. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  11616. },
  11617. "dist": {
  11618. "type": "zip",
  11619. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  11620. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  11621. "shasum": "",
  11622. "mirrors": [
  11623. {
  11624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11625. "preferred": true
  11626. }
  11627. ]
  11628. },
  11629. "require": {
  11630. "php": ">=7.0"
  11631. },
  11632. "require-dev": {
  11633. "phpunit/phpunit": "^6.0"
  11634. },
  11635. "type": "library",
  11636. "extra": {
  11637. "branch-alias": {
  11638. "dev-master": "3.0.x-dev"
  11639. }
  11640. },
  11641. "autoload": {
  11642. "classmap": [
  11643. "src/"
  11644. ]
  11645. },
  11646. "notification-url": "https://packagist.org/downloads/",
  11647. "license": [
  11648. "BSD-3-Clause"
  11649. ],
  11650. "authors": [
  11651. {
  11652. "name": "Sebastian Bergmann",
  11653. "email": "sebastian@phpunit.de"
  11654. },
  11655. {
  11656. "name": "Jeff Welch",
  11657. "email": "whatthejeff@gmail.com"
  11658. },
  11659. {
  11660. "name": "Adam Harvey",
  11661. "email": "aharvey@php.net"
  11662. }
  11663. ],
  11664. "description": "Provides functionality to recursively process PHP variables",
  11665. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11666. "support": {
  11667. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11668. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  11669. },
  11670. "funding": [
  11671. {
  11672. "url": "https://github.com/sebastianbergmann",
  11673. "type": "github"
  11674. }
  11675. ],
  11676. "time": "2020-11-30T07:34:24+00:00"
  11677. },
  11678. {
  11679. "name": "sebastian/resource-operations",
  11680. "version": "2.0.2",
  11681. "source": {
  11682. "type": "git",
  11683. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11684. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  11685. },
  11686. "dist": {
  11687. "type": "zip",
  11688. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  11689. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  11690. "shasum": "",
  11691. "mirrors": [
  11692. {
  11693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11694. "preferred": true
  11695. }
  11696. ]
  11697. },
  11698. "require": {
  11699. "php": ">=7.1"
  11700. },
  11701. "type": "library",
  11702. "extra": {
  11703. "branch-alias": {
  11704. "dev-master": "2.0-dev"
  11705. }
  11706. },
  11707. "autoload": {
  11708. "classmap": [
  11709. "src/"
  11710. ]
  11711. },
  11712. "notification-url": "https://packagist.org/downloads/",
  11713. "license": [
  11714. "BSD-3-Clause"
  11715. ],
  11716. "authors": [
  11717. {
  11718. "name": "Sebastian Bergmann",
  11719. "email": "sebastian@phpunit.de"
  11720. }
  11721. ],
  11722. "description": "Provides a list of PHP built-in functions that operate on resources",
  11723. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11724. "support": {
  11725. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11726. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  11727. },
  11728. "funding": [
  11729. {
  11730. "url": "https://github.com/sebastianbergmann",
  11731. "type": "github"
  11732. }
  11733. ],
  11734. "time": "2020-11-30T07:30:19+00:00"
  11735. },
  11736. {
  11737. "name": "sebastian/type",
  11738. "version": "1.1.4",
  11739. "source": {
  11740. "type": "git",
  11741. "url": "https://github.com/sebastianbergmann/type.git",
  11742. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  11743. },
  11744. "dist": {
  11745. "type": "zip",
  11746. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  11747. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  11748. "shasum": "",
  11749. "mirrors": [
  11750. {
  11751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11752. "preferred": true
  11753. }
  11754. ]
  11755. },
  11756. "require": {
  11757. "php": ">=7.2"
  11758. },
  11759. "require-dev": {
  11760. "phpunit/phpunit": "^8.2"
  11761. },
  11762. "type": "library",
  11763. "extra": {
  11764. "branch-alias": {
  11765. "dev-master": "1.1-dev"
  11766. }
  11767. },
  11768. "autoload": {
  11769. "classmap": [
  11770. "src/"
  11771. ]
  11772. },
  11773. "notification-url": "https://packagist.org/downloads/",
  11774. "license": [
  11775. "BSD-3-Clause"
  11776. ],
  11777. "authors": [
  11778. {
  11779. "name": "Sebastian Bergmann",
  11780. "email": "sebastian@phpunit.de",
  11781. "role": "lead"
  11782. }
  11783. ],
  11784. "description": "Collection of value objects that represent the types of the PHP type system",
  11785. "homepage": "https://github.com/sebastianbergmann/type",
  11786. "support": {
  11787. "issues": "https://github.com/sebastianbergmann/type/issues",
  11788. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  11789. },
  11790. "funding": [
  11791. {
  11792. "url": "https://github.com/sebastianbergmann",
  11793. "type": "github"
  11794. }
  11795. ],
  11796. "time": "2020-11-30T07:25:11+00:00"
  11797. },
  11798. {
  11799. "name": "sebastian/version",
  11800. "version": "2.0.1",
  11801. "source": {
  11802. "type": "git",
  11803. "url": "https://github.com/sebastianbergmann/version.git",
  11804. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  11805. },
  11806. "dist": {
  11807. "type": "zip",
  11808. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  11809. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  11810. "shasum": "",
  11811. "mirrors": [
  11812. {
  11813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11814. "preferred": true
  11815. }
  11816. ]
  11817. },
  11818. "require": {
  11819. "php": ">=5.6"
  11820. },
  11821. "type": "library",
  11822. "extra": {
  11823. "branch-alias": {
  11824. "dev-master": "2.0.x-dev"
  11825. }
  11826. },
  11827. "autoload": {
  11828. "classmap": [
  11829. "src/"
  11830. ]
  11831. },
  11832. "notification-url": "https://packagist.org/downloads/",
  11833. "license": [
  11834. "BSD-3-Clause"
  11835. ],
  11836. "authors": [
  11837. {
  11838. "name": "Sebastian Bergmann",
  11839. "email": "sebastian@phpunit.de",
  11840. "role": "lead"
  11841. }
  11842. ],
  11843. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11844. "homepage": "https://github.com/sebastianbergmann/version",
  11845. "support": {
  11846. "issues": "https://github.com/sebastianbergmann/version/issues",
  11847. "source": "https://github.com/sebastianbergmann/version/tree/master"
  11848. },
  11849. "time": "2016-10-03T07:35:21+00:00"
  11850. },
  11851. {
  11852. "name": "theseer/tokenizer",
  11853. "version": "1.2.1",
  11854. "source": {
  11855. "type": "git",
  11856. "url": "https://github.com/theseer/tokenizer.git",
  11857. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11858. },
  11859. "dist": {
  11860. "type": "zip",
  11861. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11862. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11863. "shasum": "",
  11864. "mirrors": [
  11865. {
  11866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11867. "preferred": true
  11868. }
  11869. ]
  11870. },
  11871. "require": {
  11872. "ext-dom": "*",
  11873. "ext-tokenizer": "*",
  11874. "ext-xmlwriter": "*",
  11875. "php": "^7.2 || ^8.0"
  11876. },
  11877. "type": "library",
  11878. "autoload": {
  11879. "classmap": [
  11880. "src/"
  11881. ]
  11882. },
  11883. "notification-url": "https://packagist.org/downloads/",
  11884. "license": [
  11885. "BSD-3-Clause"
  11886. ],
  11887. "authors": [
  11888. {
  11889. "name": "Arne Blankerts",
  11890. "email": "arne@blankerts.de",
  11891. "role": "Developer"
  11892. }
  11893. ],
  11894. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11895. "support": {
  11896. "issues": "https://github.com/theseer/tokenizer/issues",
  11897. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11898. },
  11899. "funding": [
  11900. {
  11901. "url": "https://github.com/theseer",
  11902. "type": "github"
  11903. }
  11904. ],
  11905. "time": "2021-07-28T10:34:58+00:00"
  11906. }
  11907. ],
  11908. "aliases": [],
  11909. "minimum-stability": "dev",
  11910. "stability-flags": [],
  11911. "prefer-stable": true,
  11912. "prefer-lowest": false,
  11913. "platform": {
  11914. "php": "^7.2"
  11915. },
  11916. "platform-dev": [],
  11917. "plugin-api-version": "2.3.0"
  11918. }