composer.lock 394 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910
  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": "5aa84bafb50877789241669eba4e846b",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.2|^8.0",
  31. "symfony/http-foundation": "^4|^5|^6",
  32. "symfony/http-kernel": "^4|^5|^6"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^7|^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.1-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  68. },
  69. "time": "2022-01-18T09:12:03+00:00"
  70. },
  71. {
  72. "name": "box/spout",
  73. "version": "v3.3.0",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/box/spout.git",
  77. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  82. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "ext-dom": "*",
  93. "ext-xmlreader": "*",
  94. "ext-zip": "*",
  95. "php": ">=7.2.0"
  96. },
  97. "require-dev": {
  98. "friendsofphp/php-cs-fixer": "^2",
  99. "phpunit/phpunit": "^8"
  100. },
  101. "suggest": {
  102. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  103. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  104. },
  105. "type": "library",
  106. "extra": {
  107. "branch-alias": {
  108. "dev-master": "3.1.x-dev"
  109. }
  110. },
  111. "autoload": {
  112. "psr-4": {
  113. "Box\\Spout\\": "src/Spout"
  114. }
  115. },
  116. "notification-url": "https://packagist.org/downloads/",
  117. "license": [
  118. "Apache-2.0"
  119. ],
  120. "authors": [
  121. {
  122. "name": "Adrien Loison",
  123. "email": "adrien@box.com"
  124. }
  125. ],
  126. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  127. "homepage": "https://www.github.com/box/spout",
  128. "keywords": [
  129. "OOXML",
  130. "csv",
  131. "excel",
  132. "memory",
  133. "odf",
  134. "ods",
  135. "office",
  136. "open",
  137. "php",
  138. "read",
  139. "scale",
  140. "spreadsheet",
  141. "stream",
  142. "write",
  143. "xlsx"
  144. ],
  145. "support": {
  146. "issues": "https://github.com/box/spout/issues",
  147. "source": "https://github.com/box/spout/tree/v3.3.0"
  148. },
  149. "abandoned": true,
  150. "time": "2021-05-14T21:18:09+00:00"
  151. },
  152. {
  153. "name": "brick/math",
  154. "version": "0.9.3",
  155. "source": {
  156. "type": "git",
  157. "url": "https://github.com/brick/math.git",
  158. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  159. },
  160. "dist": {
  161. "type": "zip",
  162. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  163. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  164. "shasum": "",
  165. "mirrors": [
  166. {
  167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  168. "preferred": true
  169. }
  170. ]
  171. },
  172. "require": {
  173. "ext-json": "*",
  174. "php": "^7.1 || ^8.0"
  175. },
  176. "require-dev": {
  177. "php-coveralls/php-coveralls": "^2.2",
  178. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  179. "vimeo/psalm": "4.9.2"
  180. },
  181. "type": "library",
  182. "autoload": {
  183. "psr-4": {
  184. "Brick\\Math\\": "src/"
  185. }
  186. },
  187. "notification-url": "https://packagist.org/downloads/",
  188. "license": [
  189. "MIT"
  190. ],
  191. "description": "Arbitrary-precision arithmetic library",
  192. "keywords": [
  193. "Arbitrary-precision",
  194. "BigInteger",
  195. "BigRational",
  196. "arithmetic",
  197. "bigdecimal",
  198. "bignum",
  199. "brick",
  200. "math"
  201. ],
  202. "support": {
  203. "issues": "https://github.com/brick/math/issues",
  204. "source": "https://github.com/brick/math/tree/0.9.3"
  205. },
  206. "funding": [
  207. {
  208. "url": "https://github.com/BenMorel",
  209. "type": "github"
  210. },
  211. {
  212. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  213. "type": "tidelift"
  214. }
  215. ],
  216. "time": "2021-08-15T20:50:18+00:00"
  217. },
  218. {
  219. "name": "composer/semver",
  220. "version": "3.3.2",
  221. "source": {
  222. "type": "git",
  223. "url": "https://github.com/composer/semver.git",
  224. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  225. },
  226. "dist": {
  227. "type": "zip",
  228. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  229. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  230. "shasum": "",
  231. "mirrors": [
  232. {
  233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  234. "preferred": true
  235. }
  236. ]
  237. },
  238. "require": {
  239. "php": "^5.3.2 || ^7.0 || ^8.0"
  240. },
  241. "require-dev": {
  242. "phpstan/phpstan": "^1.4",
  243. "symfony/phpunit-bridge": "^4.2 || ^5"
  244. },
  245. "type": "library",
  246. "extra": {
  247. "branch-alias": {
  248. "dev-main": "3.x-dev"
  249. }
  250. },
  251. "autoload": {
  252. "psr-4": {
  253. "Composer\\Semver\\": "src"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "MIT"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Nils Adermann",
  263. "email": "naderman@naderman.de",
  264. "homepage": "http://www.naderman.de"
  265. },
  266. {
  267. "name": "Jordi Boggiano",
  268. "email": "j.boggiano@seld.be",
  269. "homepage": "http://seld.be"
  270. },
  271. {
  272. "name": "Rob Bast",
  273. "email": "rob.bast@gmail.com",
  274. "homepage": "http://robbast.nl"
  275. }
  276. ],
  277. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  278. "keywords": [
  279. "semantic",
  280. "semver",
  281. "validation",
  282. "versioning"
  283. ],
  284. "support": {
  285. "irc": "irc://irc.freenode.org/composer",
  286. "issues": "https://github.com/composer/semver/issues",
  287. "source": "https://github.com/composer/semver/tree/3.3.2"
  288. },
  289. "funding": [
  290. {
  291. "url": "https://packagist.com",
  292. "type": "custom"
  293. },
  294. {
  295. "url": "https://github.com/composer",
  296. "type": "github"
  297. },
  298. {
  299. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  300. "type": "tidelift"
  301. }
  302. ],
  303. "time": "2022-04-01T19:23:25+00:00"
  304. },
  305. {
  306. "name": "dingo/api",
  307. "version": "v3.0.8",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/dingo/api.git",
  311. "reference": "42b6afa6e20a27f938a45e676665e57d26422cea"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/dingo/api/zipball/42b6afa6e20a27f938a45e676665e57d26422cea",
  316. "reference": "42b6afa6e20a27f938a45e676665e57d26422cea",
  317. "shasum": "",
  318. "mirrors": [
  319. {
  320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  321. "preferred": true
  322. }
  323. ]
  324. },
  325. "require": {
  326. "dingo/blueprint": "^0.4",
  327. "illuminate/routing": "^7.0|^8.0",
  328. "illuminate/support": "^7.0|^8.0",
  329. "league/fractal": "^0.19",
  330. "php": "^7.2.5|^8.0"
  331. },
  332. "require-dev": {
  333. "friendsofphp/php-cs-fixer": "~2",
  334. "illuminate/auth": "^7.0|^8.0",
  335. "illuminate/cache": "^7.0|^8.0",
  336. "illuminate/console": "^7.0|^8.0",
  337. "illuminate/database": "^7.0|^8.0",
  338. "illuminate/events": "^7.0|^8.0",
  339. "illuminate/filesystem": "^7.0|^8.0",
  340. "illuminate/log": "^7.0|^8.0",
  341. "illuminate/pagination": "^7.0|^8.0",
  342. "laravel/lumen-framework": "^7.0|^8.0",
  343. "mockery/mockery": "~1.0",
  344. "phpunit/phpunit": "^8.5|^9.0",
  345. "squizlabs/php_codesniffer": "~2.0",
  346. "tymon/jwt-auth": "1.0.*"
  347. },
  348. "suggest": {
  349. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  350. },
  351. "type": "library",
  352. "extra": {
  353. "branch-alias": {
  354. "dev-master": "2.0-dev"
  355. },
  356. "laravel": {
  357. "providers": [
  358. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  359. ],
  360. "aliases": {
  361. "API": "Dingo\\Api\\Facade\\API"
  362. }
  363. }
  364. },
  365. "autoload": {
  366. "psr-4": {
  367. "Dingo\\Api\\": "src/"
  368. },
  369. "files": [
  370. "src/helpers.php"
  371. ]
  372. },
  373. "notification-url": "https://packagist.org/downloads/",
  374. "license": [
  375. "BSD-3-Clause"
  376. ],
  377. "authors": [
  378. {
  379. "name": "Jason Lewis",
  380. "email": "jason.lewis1991@gmail.com"
  381. }
  382. ],
  383. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  384. "keywords": [
  385. "api",
  386. "dingo",
  387. "laravel",
  388. "restful"
  389. ],
  390. "support": {
  391. "issues": "https://github.com/dingo/api/issues",
  392. "source": "https://github.com/dingo/api/tree/v3.0.8"
  393. },
  394. "abandoned": "api-ecosystem-for-laravel/dingo-api",
  395. "time": "2022-01-27T15:11:20+00:00"
  396. },
  397. {
  398. "name": "dingo/blueprint",
  399. "version": "v0.4.3",
  400. "source": {
  401. "type": "git",
  402. "url": "https://github.com/dingo/blueprint.git",
  403. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88"
  404. },
  405. "dist": {
  406. "type": "zip",
  407. "url": "https://api.github.com/repos/dingo/blueprint/zipball/e3a8f19ae10716670079c3c162540756dbd20a88",
  408. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88",
  409. "shasum": "",
  410. "mirrors": [
  411. {
  412. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  413. "preferred": true
  414. }
  415. ]
  416. },
  417. "require": {
  418. "doctrine/annotations": "~1.2",
  419. "illuminate/filesystem": "^7.0|^8.0",
  420. "illuminate/support": "^7.0|^8.0",
  421. "php": "^7.2.5|^8.0",
  422. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  423. },
  424. "require-dev": {
  425. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  426. "squizlabs/php_codesniffer": "~2.0"
  427. },
  428. "type": "library",
  429. "extra": {
  430. "branch-alias": {
  431. "dev-master": "0.2-dev"
  432. }
  433. },
  434. "autoload": {
  435. "psr-4": {
  436. "Dingo\\Blueprint\\": "src"
  437. }
  438. },
  439. "notification-url": "https://packagist.org/downloads/",
  440. "license": [
  441. "BSD-3-Clause"
  442. ],
  443. "authors": [
  444. {
  445. "name": "Jason Lewis",
  446. "email": "jason.lewis1991@gmail.com"
  447. }
  448. ],
  449. "description": "API Blueprint documentation generator.",
  450. "keywords": [
  451. "api",
  452. "blueprint",
  453. "dingo",
  454. "docs",
  455. "laravel"
  456. ],
  457. "support": {
  458. "issues": "https://github.com/dingo/blueprint/issues",
  459. "source": "https://github.com/dingo/blueprint/tree/v0.4.3"
  460. },
  461. "time": "2021-04-30T11:20:38+00:00"
  462. },
  463. {
  464. "name": "doctrine/annotations",
  465. "version": "1.14.3",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/doctrine/annotations.git",
  469. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  474. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  475. "shasum": "",
  476. "mirrors": [
  477. {
  478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  479. "preferred": true
  480. }
  481. ]
  482. },
  483. "require": {
  484. "doctrine/lexer": "^1 || ^2",
  485. "ext-tokenizer": "*",
  486. "php": "^7.1 || ^8.0",
  487. "psr/cache": "^1 || ^2 || ^3"
  488. },
  489. "require-dev": {
  490. "doctrine/cache": "^1.11 || ^2.0",
  491. "doctrine/coding-standard": "^9 || ^10",
  492. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  493. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  494. "symfony/cache": "^4.4 || ^5.4 || ^6",
  495. "vimeo/psalm": "^4.10"
  496. },
  497. "suggest": {
  498. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  499. },
  500. "type": "library",
  501. "autoload": {
  502. "psr-4": {
  503. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  504. }
  505. },
  506. "notification-url": "https://packagist.org/downloads/",
  507. "license": [
  508. "MIT"
  509. ],
  510. "authors": [
  511. {
  512. "name": "Guilherme Blanco",
  513. "email": "guilhermeblanco@gmail.com"
  514. },
  515. {
  516. "name": "Roman Borschel",
  517. "email": "roman@code-factory.org"
  518. },
  519. {
  520. "name": "Benjamin Eberlei",
  521. "email": "kontakt@beberlei.de"
  522. },
  523. {
  524. "name": "Jonathan Wage",
  525. "email": "jonwage@gmail.com"
  526. },
  527. {
  528. "name": "Johannes Schmitt",
  529. "email": "schmittjoh@gmail.com"
  530. }
  531. ],
  532. "description": "Docblock Annotations Parser",
  533. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  534. "keywords": [
  535. "annotations",
  536. "docblock",
  537. "parser"
  538. ],
  539. "support": {
  540. "issues": "https://github.com/doctrine/annotations/issues",
  541. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  542. },
  543. "time": "2023-02-01T09:20:38+00:00"
  544. },
  545. {
  546. "name": "doctrine/inflector",
  547. "version": "2.0.4",
  548. "source": {
  549. "type": "git",
  550. "url": "https://github.com/doctrine/inflector.git",
  551. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  552. },
  553. "dist": {
  554. "type": "zip",
  555. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  556. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  557. "shasum": "",
  558. "mirrors": [
  559. {
  560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  561. "preferred": true
  562. }
  563. ]
  564. },
  565. "require": {
  566. "php": "^7.2 || ^8.0"
  567. },
  568. "require-dev": {
  569. "doctrine/coding-standard": "^8.2",
  570. "phpstan/phpstan": "^0.12",
  571. "phpstan/phpstan-phpunit": "^0.12",
  572. "phpstan/phpstan-strict-rules": "^0.12",
  573. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  574. "vimeo/psalm": "^4.10"
  575. },
  576. "type": "library",
  577. "autoload": {
  578. "psr-4": {
  579. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  580. }
  581. },
  582. "notification-url": "https://packagist.org/downloads/",
  583. "license": [
  584. "MIT"
  585. ],
  586. "authors": [
  587. {
  588. "name": "Guilherme Blanco",
  589. "email": "guilhermeblanco@gmail.com"
  590. },
  591. {
  592. "name": "Roman Borschel",
  593. "email": "roman@code-factory.org"
  594. },
  595. {
  596. "name": "Benjamin Eberlei",
  597. "email": "kontakt@beberlei.de"
  598. },
  599. {
  600. "name": "Jonathan Wage",
  601. "email": "jonwage@gmail.com"
  602. },
  603. {
  604. "name": "Johannes Schmitt",
  605. "email": "schmittjoh@gmail.com"
  606. }
  607. ],
  608. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  609. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  610. "keywords": [
  611. "inflection",
  612. "inflector",
  613. "lowercase",
  614. "manipulation",
  615. "php",
  616. "plural",
  617. "singular",
  618. "strings",
  619. "uppercase",
  620. "words"
  621. ],
  622. "support": {
  623. "issues": "https://github.com/doctrine/inflector/issues",
  624. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  625. },
  626. "funding": [
  627. {
  628. "url": "https://www.doctrine-project.org/sponsorship.html",
  629. "type": "custom"
  630. },
  631. {
  632. "url": "https://www.patreon.com/phpdoctrine",
  633. "type": "patreon"
  634. },
  635. {
  636. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  637. "type": "tidelift"
  638. }
  639. ],
  640. "time": "2021-10-22T20:16:43+00:00"
  641. },
  642. {
  643. "name": "doctrine/lexer",
  644. "version": "1.2.3",
  645. "source": {
  646. "type": "git",
  647. "url": "https://github.com/doctrine/lexer.git",
  648. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  649. },
  650. "dist": {
  651. "type": "zip",
  652. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  653. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  654. "shasum": "",
  655. "mirrors": [
  656. {
  657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  658. "preferred": true
  659. }
  660. ]
  661. },
  662. "require": {
  663. "php": "^7.1 || ^8.0"
  664. },
  665. "require-dev": {
  666. "doctrine/coding-standard": "^9.0",
  667. "phpstan/phpstan": "^1.3",
  668. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  669. "vimeo/psalm": "^4.11"
  670. },
  671. "type": "library",
  672. "autoload": {
  673. "psr-4": {
  674. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Guilherme Blanco",
  684. "email": "guilhermeblanco@gmail.com"
  685. },
  686. {
  687. "name": "Roman Borschel",
  688. "email": "roman@code-factory.org"
  689. },
  690. {
  691. "name": "Johannes Schmitt",
  692. "email": "schmittjoh@gmail.com"
  693. }
  694. ],
  695. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  696. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  697. "keywords": [
  698. "annotations",
  699. "docblock",
  700. "lexer",
  701. "parser",
  702. "php"
  703. ],
  704. "support": {
  705. "issues": "https://github.com/doctrine/lexer/issues",
  706. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  707. },
  708. "funding": [
  709. {
  710. "url": "https://www.doctrine-project.org/sponsorship.html",
  711. "type": "custom"
  712. },
  713. {
  714. "url": "https://www.patreon.com/phpdoctrine",
  715. "type": "patreon"
  716. },
  717. {
  718. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  719. "type": "tidelift"
  720. }
  721. ],
  722. "time": "2022-02-28T11:07:21+00:00"
  723. },
  724. {
  725. "name": "dragonmantank/cron-expression",
  726. "version": "v3.3.1",
  727. "source": {
  728. "type": "git",
  729. "url": "https://github.com/dragonmantank/cron-expression.git",
  730. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  731. },
  732. "dist": {
  733. "type": "zip",
  734. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  735. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  736. "shasum": "",
  737. "mirrors": [
  738. {
  739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  740. "preferred": true
  741. }
  742. ]
  743. },
  744. "require": {
  745. "php": "^7.2|^8.0",
  746. "webmozart/assert": "^1.0"
  747. },
  748. "replace": {
  749. "mtdowling/cron-expression": "^1.0"
  750. },
  751. "require-dev": {
  752. "phpstan/extension-installer": "^1.0",
  753. "phpstan/phpstan": "^1.0",
  754. "phpstan/phpstan-webmozart-assert": "^1.0",
  755. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  756. },
  757. "type": "library",
  758. "autoload": {
  759. "psr-4": {
  760. "Cron\\": "src/Cron/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Chris Tankersley",
  770. "email": "chris@ctankersley.com",
  771. "homepage": "https://github.com/dragonmantank"
  772. }
  773. ],
  774. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  775. "keywords": [
  776. "cron",
  777. "schedule"
  778. ],
  779. "support": {
  780. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  781. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  782. },
  783. "funding": [
  784. {
  785. "url": "https://github.com/dragonmantank",
  786. "type": "github"
  787. }
  788. ],
  789. "time": "2022-01-18T15:43:28+00:00"
  790. },
  791. {
  792. "name": "easywechat-composer/easywechat-composer",
  793. "version": "1.4.1",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/mingyoung/easywechat-composer.git",
  797. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  802. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  803. "shasum": "",
  804. "mirrors": [
  805. {
  806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  807. "preferred": true
  808. }
  809. ]
  810. },
  811. "require": {
  812. "composer-plugin-api": "^1.0 || ^2.0",
  813. "php": ">=7.0"
  814. },
  815. "require-dev": {
  816. "composer/composer": "^1.0 || ^2.0",
  817. "phpunit/phpunit": "^6.5 || ^7.0"
  818. },
  819. "type": "composer-plugin",
  820. "extra": {
  821. "class": "EasyWeChatComposer\\Plugin"
  822. },
  823. "autoload": {
  824. "psr-4": {
  825. "EasyWeChatComposer\\": "src/"
  826. }
  827. },
  828. "notification-url": "https://packagist.org/downloads/",
  829. "license": [
  830. "MIT"
  831. ],
  832. "authors": [
  833. {
  834. "name": "张铭阳",
  835. "email": "mingyoungcheung@gmail.com"
  836. }
  837. ],
  838. "description": "The composer plugin for EasyWeChat",
  839. "support": {
  840. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  841. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  842. },
  843. "time": "2021-07-05T04:03:22+00:00"
  844. },
  845. {
  846. "name": "egulias/email-validator",
  847. "version": "2.1.25",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/egulias/EmailValidator.git",
  851. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  856. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  857. "shasum": "",
  858. "mirrors": [
  859. {
  860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  861. "preferred": true
  862. }
  863. ]
  864. },
  865. "require": {
  866. "doctrine/lexer": "^1.0.1",
  867. "php": ">=5.5",
  868. "symfony/polyfill-intl-idn": "^1.10"
  869. },
  870. "require-dev": {
  871. "dominicsayers/isemail": "^3.0.7",
  872. "phpunit/phpunit": "^4.8.36|^7.5.15",
  873. "satooshi/php-coveralls": "^1.0.1"
  874. },
  875. "suggest": {
  876. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  877. },
  878. "type": "library",
  879. "extra": {
  880. "branch-alias": {
  881. "dev-master": "2.1.x-dev"
  882. }
  883. },
  884. "autoload": {
  885. "psr-4": {
  886. "Egulias\\EmailValidator\\": "src"
  887. }
  888. },
  889. "notification-url": "https://packagist.org/downloads/",
  890. "license": [
  891. "MIT"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Eduardo Gulias Davis"
  896. }
  897. ],
  898. "description": "A library for validating emails against several RFCs",
  899. "homepage": "https://github.com/egulias/EmailValidator",
  900. "keywords": [
  901. "email",
  902. "emailvalidation",
  903. "emailvalidator",
  904. "validation",
  905. "validator"
  906. ],
  907. "support": {
  908. "issues": "https://github.com/egulias/EmailValidator/issues",
  909. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  910. },
  911. "funding": [
  912. {
  913. "url": "https://github.com/egulias",
  914. "type": "github"
  915. }
  916. ],
  917. "time": "2020-12-29T14:50:06+00:00"
  918. },
  919. {
  920. "name": "ezyang/htmlpurifier",
  921. "version": "v4.16.0",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/ezyang/htmlpurifier.git",
  925. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  930. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  931. "shasum": "",
  932. "mirrors": [
  933. {
  934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  935. "preferred": true
  936. }
  937. ]
  938. },
  939. "require": {
  940. "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"
  941. },
  942. "require-dev": {
  943. "cerdic/css-tidy": "^1.7 || ^2.0",
  944. "simpletest/simpletest": "dev-master"
  945. },
  946. "suggest": {
  947. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  948. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  949. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  950. "ext-tidy": "Used for pretty-printing HTML"
  951. },
  952. "type": "library",
  953. "autoload": {
  954. "files": [
  955. "library/HTMLPurifier.composer.php"
  956. ],
  957. "psr-0": {
  958. "HTMLPurifier": "library/"
  959. },
  960. "exclude-from-classmap": [
  961. "/library/HTMLPurifier/Language/"
  962. ]
  963. },
  964. "notification-url": "https://packagist.org/downloads/",
  965. "license": [
  966. "LGPL-2.1-or-later"
  967. ],
  968. "authors": [
  969. {
  970. "name": "Edward Z. Yang",
  971. "email": "admin@htmlpurifier.org",
  972. "homepage": "http://ezyang.com"
  973. }
  974. ],
  975. "description": "Standards compliant HTML filter written in PHP",
  976. "homepage": "http://htmlpurifier.org/",
  977. "keywords": [
  978. "html"
  979. ],
  980. "support": {
  981. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  982. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  983. },
  984. "time": "2022-09-18T07:06:19+00:00"
  985. },
  986. {
  987. "name": "fruitcake/laravel-cors",
  988. "version": "v2.2.0",
  989. "source": {
  990. "type": "git",
  991. "url": "https://github.com/fruitcake/laravel-cors.git",
  992. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  993. },
  994. "dist": {
  995. "type": "zip",
  996. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  997. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  998. "shasum": "",
  999. "mirrors": [
  1000. {
  1001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1002. "preferred": true
  1003. }
  1004. ]
  1005. },
  1006. "require": {
  1007. "asm89/stack-cors": "^2.0.1",
  1008. "illuminate/contracts": "^6|^7|^8|^9",
  1009. "illuminate/support": "^6|^7|^8|^9",
  1010. "php": ">=7.2"
  1011. },
  1012. "require-dev": {
  1013. "laravel/framework": "^6|^7.24|^8",
  1014. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1015. "phpunit/phpunit": "^6|^7|^8|^9",
  1016. "squizlabs/php_codesniffer": "^3.5"
  1017. },
  1018. "type": "library",
  1019. "extra": {
  1020. "branch-alias": {
  1021. "dev-master": "2.1-dev"
  1022. },
  1023. "laravel": {
  1024. "providers": [
  1025. "Fruitcake\\Cors\\CorsServiceProvider"
  1026. ]
  1027. }
  1028. },
  1029. "autoload": {
  1030. "psr-4": {
  1031. "Fruitcake\\Cors\\": "src/"
  1032. }
  1033. },
  1034. "notification-url": "https://packagist.org/downloads/",
  1035. "license": [
  1036. "MIT"
  1037. ],
  1038. "authors": [
  1039. {
  1040. "name": "Fruitcake",
  1041. "homepage": "https://fruitcake.nl"
  1042. },
  1043. {
  1044. "name": "Barry vd. Heuvel",
  1045. "email": "barryvdh@gmail.com"
  1046. }
  1047. ],
  1048. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1049. "keywords": [
  1050. "api",
  1051. "cors",
  1052. "crossdomain",
  1053. "laravel"
  1054. ],
  1055. "support": {
  1056. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1057. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1058. },
  1059. "funding": [
  1060. {
  1061. "url": "https://fruitcake.nl",
  1062. "type": "custom"
  1063. },
  1064. {
  1065. "url": "https://github.com/barryvdh",
  1066. "type": "github"
  1067. }
  1068. ],
  1069. "abandoned": true,
  1070. "time": "2022-02-23T14:25:13+00:00"
  1071. },
  1072. {
  1073. "name": "graham-campbell/result-type",
  1074. "version": "v1.1.0",
  1075. "source": {
  1076. "type": "git",
  1077. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1078. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
  1079. },
  1080. "dist": {
  1081. "type": "zip",
  1082. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
  1083. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
  1084. "shasum": "",
  1085. "mirrors": [
  1086. {
  1087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1088. "preferred": true
  1089. }
  1090. ]
  1091. },
  1092. "require": {
  1093. "php": "^7.2.5 || ^8.0",
  1094. "phpoption/phpoption": "^1.9"
  1095. },
  1096. "require-dev": {
  1097. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  1098. },
  1099. "type": "library",
  1100. "autoload": {
  1101. "psr-4": {
  1102. "GrahamCampbell\\ResultType\\": "src/"
  1103. }
  1104. },
  1105. "notification-url": "https://packagist.org/downloads/",
  1106. "license": [
  1107. "MIT"
  1108. ],
  1109. "authors": [
  1110. {
  1111. "name": "Graham Campbell",
  1112. "email": "hello@gjcampbell.co.uk",
  1113. "homepage": "https://github.com/GrahamCampbell"
  1114. }
  1115. ],
  1116. "description": "An Implementation Of The Result Type",
  1117. "keywords": [
  1118. "Graham Campbell",
  1119. "GrahamCampbell",
  1120. "Result Type",
  1121. "Result-Type",
  1122. "result"
  1123. ],
  1124. "support": {
  1125. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1126. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
  1127. },
  1128. "funding": [
  1129. {
  1130. "url": "https://github.com/GrahamCampbell",
  1131. "type": "github"
  1132. },
  1133. {
  1134. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1135. "type": "tidelift"
  1136. }
  1137. ],
  1138. "time": "2022-07-30T15:56:11+00:00"
  1139. },
  1140. {
  1141. "name": "guzzlehttp/guzzle",
  1142. "version": "7.5.0",
  1143. "source": {
  1144. "type": "git",
  1145. "url": "https://github.com/guzzle/guzzle.git",
  1146. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  1147. },
  1148. "dist": {
  1149. "type": "zip",
  1150. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1151. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1152. "shasum": "",
  1153. "mirrors": [
  1154. {
  1155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1156. "preferred": true
  1157. }
  1158. ]
  1159. },
  1160. "require": {
  1161. "ext-json": "*",
  1162. "guzzlehttp/promises": "^1.5",
  1163. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1164. "php": "^7.2.5 || ^8.0",
  1165. "psr/http-client": "^1.0",
  1166. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1167. },
  1168. "provide": {
  1169. "psr/http-client-implementation": "1.0"
  1170. },
  1171. "require-dev": {
  1172. "bamarni/composer-bin-plugin": "^1.8.1",
  1173. "ext-curl": "*",
  1174. "php-http/client-integration-tests": "^3.0",
  1175. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1176. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1177. },
  1178. "suggest": {
  1179. "ext-curl": "Required for CURL handler support",
  1180. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1181. "psr/log": "Required for using the Log middleware"
  1182. },
  1183. "type": "library",
  1184. "extra": {
  1185. "bamarni-bin": {
  1186. "bin-links": true,
  1187. "forward-command": false
  1188. },
  1189. "branch-alias": {
  1190. "dev-master": "7.5-dev"
  1191. }
  1192. },
  1193. "autoload": {
  1194. "files": [
  1195. "src/functions_include.php"
  1196. ],
  1197. "psr-4": {
  1198. "GuzzleHttp\\": "src/"
  1199. }
  1200. },
  1201. "notification-url": "https://packagist.org/downloads/",
  1202. "license": [
  1203. "MIT"
  1204. ],
  1205. "authors": [
  1206. {
  1207. "name": "Graham Campbell",
  1208. "email": "hello@gjcampbell.co.uk",
  1209. "homepage": "https://github.com/GrahamCampbell"
  1210. },
  1211. {
  1212. "name": "Michael Dowling",
  1213. "email": "mtdowling@gmail.com",
  1214. "homepage": "https://github.com/mtdowling"
  1215. },
  1216. {
  1217. "name": "Jeremy Lindblom",
  1218. "email": "jeremeamia@gmail.com",
  1219. "homepage": "https://github.com/jeremeamia"
  1220. },
  1221. {
  1222. "name": "George Mponos",
  1223. "email": "gmponos@gmail.com",
  1224. "homepage": "https://github.com/gmponos"
  1225. },
  1226. {
  1227. "name": "Tobias Nyholm",
  1228. "email": "tobias.nyholm@gmail.com",
  1229. "homepage": "https://github.com/Nyholm"
  1230. },
  1231. {
  1232. "name": "Márk Sági-Kazár",
  1233. "email": "mark.sagikazar@gmail.com",
  1234. "homepage": "https://github.com/sagikazarmark"
  1235. },
  1236. {
  1237. "name": "Tobias Schultze",
  1238. "email": "webmaster@tubo-world.de",
  1239. "homepage": "https://github.com/Tobion"
  1240. }
  1241. ],
  1242. "description": "Guzzle is a PHP HTTP client library",
  1243. "keywords": [
  1244. "client",
  1245. "curl",
  1246. "framework",
  1247. "http",
  1248. "http client",
  1249. "psr-18",
  1250. "psr-7",
  1251. "rest",
  1252. "web service"
  1253. ],
  1254. "support": {
  1255. "issues": "https://github.com/guzzle/guzzle/issues",
  1256. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  1257. },
  1258. "funding": [
  1259. {
  1260. "url": "https://github.com/GrahamCampbell",
  1261. "type": "github"
  1262. },
  1263. {
  1264. "url": "https://github.com/Nyholm",
  1265. "type": "github"
  1266. },
  1267. {
  1268. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1269. "type": "tidelift"
  1270. }
  1271. ],
  1272. "time": "2022-08-28T15:39:27+00:00"
  1273. },
  1274. {
  1275. "name": "guzzlehttp/promises",
  1276. "version": "1.5.2",
  1277. "source": {
  1278. "type": "git",
  1279. "url": "https://github.com/guzzle/promises.git",
  1280. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  1281. },
  1282. "dist": {
  1283. "type": "zip",
  1284. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  1285. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  1286. "shasum": "",
  1287. "mirrors": [
  1288. {
  1289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1290. "preferred": true
  1291. }
  1292. ]
  1293. },
  1294. "require": {
  1295. "php": ">=5.5"
  1296. },
  1297. "require-dev": {
  1298. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1299. },
  1300. "type": "library",
  1301. "extra": {
  1302. "branch-alias": {
  1303. "dev-master": "1.5-dev"
  1304. }
  1305. },
  1306. "autoload": {
  1307. "files": [
  1308. "src/functions_include.php"
  1309. ],
  1310. "psr-4": {
  1311. "GuzzleHttp\\Promise\\": "src/"
  1312. }
  1313. },
  1314. "notification-url": "https://packagist.org/downloads/",
  1315. "license": [
  1316. "MIT"
  1317. ],
  1318. "authors": [
  1319. {
  1320. "name": "Graham Campbell",
  1321. "email": "hello@gjcampbell.co.uk",
  1322. "homepage": "https://github.com/GrahamCampbell"
  1323. },
  1324. {
  1325. "name": "Michael Dowling",
  1326. "email": "mtdowling@gmail.com",
  1327. "homepage": "https://github.com/mtdowling"
  1328. },
  1329. {
  1330. "name": "Tobias Nyholm",
  1331. "email": "tobias.nyholm@gmail.com",
  1332. "homepage": "https://github.com/Nyholm"
  1333. },
  1334. {
  1335. "name": "Tobias Schultze",
  1336. "email": "webmaster@tubo-world.de",
  1337. "homepage": "https://github.com/Tobion"
  1338. }
  1339. ],
  1340. "description": "Guzzle promises library",
  1341. "keywords": [
  1342. "promise"
  1343. ],
  1344. "support": {
  1345. "issues": "https://github.com/guzzle/promises/issues",
  1346. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1347. },
  1348. "funding": [
  1349. {
  1350. "url": "https://github.com/GrahamCampbell",
  1351. "type": "github"
  1352. },
  1353. {
  1354. "url": "https://github.com/Nyholm",
  1355. "type": "github"
  1356. },
  1357. {
  1358. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1359. "type": "tidelift"
  1360. }
  1361. ],
  1362. "time": "2022-08-28T14:55:35+00:00"
  1363. },
  1364. {
  1365. "name": "guzzlehttp/psr7",
  1366. "version": "2.4.3",
  1367. "source": {
  1368. "type": "git",
  1369. "url": "https://github.com/guzzle/psr7.git",
  1370. "reference": "67c26b443f348a51926030c83481b85718457d3d"
  1371. },
  1372. "dist": {
  1373. "type": "zip",
  1374. "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
  1375. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  1376. "shasum": "",
  1377. "mirrors": [
  1378. {
  1379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1380. "preferred": true
  1381. }
  1382. ]
  1383. },
  1384. "require": {
  1385. "php": "^7.2.5 || ^8.0",
  1386. "psr/http-factory": "^1.0",
  1387. "psr/http-message": "^1.0",
  1388. "ralouphie/getallheaders": "^3.0"
  1389. },
  1390. "provide": {
  1391. "psr/http-factory-implementation": "1.0",
  1392. "psr/http-message-implementation": "1.0"
  1393. },
  1394. "require-dev": {
  1395. "bamarni/composer-bin-plugin": "^1.8.1",
  1396. "http-interop/http-factory-tests": "^0.9",
  1397. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1398. },
  1399. "suggest": {
  1400. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1401. },
  1402. "type": "library",
  1403. "extra": {
  1404. "bamarni-bin": {
  1405. "bin-links": true,
  1406. "forward-command": false
  1407. },
  1408. "branch-alias": {
  1409. "dev-master": "2.4-dev"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "psr-4": {
  1414. "GuzzleHttp\\Psr7\\": "src/"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "authors": [
  1422. {
  1423. "name": "Graham Campbell",
  1424. "email": "hello@gjcampbell.co.uk",
  1425. "homepage": "https://github.com/GrahamCampbell"
  1426. },
  1427. {
  1428. "name": "Michael Dowling",
  1429. "email": "mtdowling@gmail.com",
  1430. "homepage": "https://github.com/mtdowling"
  1431. },
  1432. {
  1433. "name": "George Mponos",
  1434. "email": "gmponos@gmail.com",
  1435. "homepage": "https://github.com/gmponos"
  1436. },
  1437. {
  1438. "name": "Tobias Nyholm",
  1439. "email": "tobias.nyholm@gmail.com",
  1440. "homepage": "https://github.com/Nyholm"
  1441. },
  1442. {
  1443. "name": "Márk Sági-Kazár",
  1444. "email": "mark.sagikazar@gmail.com",
  1445. "homepage": "https://github.com/sagikazarmark"
  1446. },
  1447. {
  1448. "name": "Tobias Schultze",
  1449. "email": "webmaster@tubo-world.de",
  1450. "homepage": "https://github.com/Tobion"
  1451. },
  1452. {
  1453. "name": "Márk Sági-Kazár",
  1454. "email": "mark.sagikazar@gmail.com",
  1455. "homepage": "https://sagikazarmark.hu"
  1456. }
  1457. ],
  1458. "description": "PSR-7 message implementation that also provides common utility methods",
  1459. "keywords": [
  1460. "http",
  1461. "message",
  1462. "psr-7",
  1463. "request",
  1464. "response",
  1465. "stream",
  1466. "uri",
  1467. "url"
  1468. ],
  1469. "support": {
  1470. "issues": "https://github.com/guzzle/psr7/issues",
  1471. "source": "https://github.com/guzzle/psr7/tree/2.4.3"
  1472. },
  1473. "funding": [
  1474. {
  1475. "url": "https://github.com/GrahamCampbell",
  1476. "type": "github"
  1477. },
  1478. {
  1479. "url": "https://github.com/Nyholm",
  1480. "type": "github"
  1481. },
  1482. {
  1483. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1484. "type": "tidelift"
  1485. }
  1486. ],
  1487. "time": "2022-10-26T14:07:24+00:00"
  1488. },
  1489. {
  1490. "name": "james-heinrich/getid3",
  1491. "version": "v1.9.22",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/JamesHeinrich/getID3.git",
  1495. "reference": "45f20faa0f0a24489740392c5b512ddcc36deccd"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/JamesHeinrich/getID3/zipball/45f20faa0f0a24489740392c5b512ddcc36deccd",
  1500. "reference": "45f20faa0f0a24489740392c5b512ddcc36deccd",
  1501. "shasum": "",
  1502. "mirrors": [
  1503. {
  1504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1505. "preferred": true
  1506. }
  1507. ]
  1508. },
  1509. "require": {
  1510. "php": ">=5.3.0"
  1511. },
  1512. "require-dev": {
  1513. "php-parallel-lint/php-parallel-lint": "^1.0"
  1514. },
  1515. "suggest": {
  1516. "ext-SimpleXML": "SimpleXML extension is required to analyze RIFF/WAV/BWF audio files (also requires `ext-libxml`).",
  1517. "ext-com_dotnet": "COM extension is required when loading files larger than 2GB on Windows.",
  1518. "ext-ctype": "ctype extension is required when loading files larger than 2GB on 32-bit PHP (also on 64-bit PHP on Windows) or executing `getid3_lib::CopyTagsToComments`.",
  1519. "ext-dba": "DBA extension is required to use the DBA database as a cache storage.",
  1520. "ext-exif": "EXIF extension is required for graphic modules.",
  1521. "ext-iconv": "iconv extension is required to work with different character sets (when `ext-mbstring` is not available).",
  1522. "ext-json": "JSON extension is required to analyze Apple Quicktime videos.",
  1523. "ext-libxml": "libxml extension is required to analyze RIFF/WAV/BWF audio files.",
  1524. "ext-mbstring": "mbstring extension is required to work with different character sets.",
  1525. "ext-mysql": "MySQL extension is required to use the MySQL database as a cache storage (deprecated in PHP 5.5, removed in PHP >= 7.0, use `ext-mysqli` instead).",
  1526. "ext-mysqli": "MySQLi extension is required to use the MySQL database as a cache storage.",
  1527. "ext-rar": "RAR extension is required for RAR archive module.",
  1528. "ext-sqlite3": "SQLite3 extension is required to use the SQLite3 database as a cache storage.",
  1529. "ext-xml": "XML extension is required for graphic modules to analyze the XML metadata.",
  1530. "ext-zlib": "Zlib extension is required for archive modules and compressed metadata."
  1531. },
  1532. "type": "library",
  1533. "extra": {
  1534. "branch-alias": {
  1535. "dev-master": "1.9.x-dev"
  1536. }
  1537. },
  1538. "autoload": {
  1539. "classmap": [
  1540. "getid3/"
  1541. ]
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "GPL-1.0-or-later",
  1546. "LGPL-3.0-only",
  1547. "MPL-2.0"
  1548. ],
  1549. "description": "PHP script that extracts useful information from popular multimedia file formats",
  1550. "homepage": "https://www.getid3.org/",
  1551. "keywords": [
  1552. "codecs",
  1553. "php",
  1554. "tags"
  1555. ],
  1556. "support": {
  1557. "issues": "https://github.com/JamesHeinrich/getID3/issues",
  1558. "source": "https://github.com/JamesHeinrich/getID3/tree/v1.9.22"
  1559. },
  1560. "time": "2022-09-29T16:41:13+00:00"
  1561. },
  1562. {
  1563. "name": "jaybizzle/crawler-detect",
  1564. "version": "v1.2.112",
  1565. "source": {
  1566. "type": "git",
  1567. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1568. "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f"
  1569. },
  1570. "dist": {
  1571. "type": "zip",
  1572. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f",
  1573. "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f",
  1574. "shasum": "",
  1575. "mirrors": [
  1576. {
  1577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1578. "preferred": true
  1579. }
  1580. ]
  1581. },
  1582. "require": {
  1583. "php": ">=5.3.0"
  1584. },
  1585. "require-dev": {
  1586. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  1587. },
  1588. "type": "library",
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Jaybizzle\\CrawlerDetect\\": "src/"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Mark Beech",
  1601. "email": "m@rkbee.ch",
  1602. "role": "Developer"
  1603. }
  1604. ],
  1605. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1606. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1607. "keywords": [
  1608. "crawler",
  1609. "crawler detect",
  1610. "crawler detector",
  1611. "crawlerdetect",
  1612. "php crawler detect"
  1613. ],
  1614. "support": {
  1615. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1616. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.112"
  1617. },
  1618. "time": "2022-10-05T21:52:44+00:00"
  1619. },
  1620. {
  1621. "name": "jenssegers/agent",
  1622. "version": "v2.6.4",
  1623. "source": {
  1624. "type": "git",
  1625. "url": "https://github.com/jenssegers/agent.git",
  1626. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1627. },
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1631. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1632. "shasum": "",
  1633. "mirrors": [
  1634. {
  1635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1636. "preferred": true
  1637. }
  1638. ]
  1639. },
  1640. "require": {
  1641. "jaybizzle/crawler-detect": "^1.2",
  1642. "mobiledetect/mobiledetectlib": "^2.7.6",
  1643. "php": ">=5.6"
  1644. },
  1645. "require-dev": {
  1646. "php-coveralls/php-coveralls": "^2.1",
  1647. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1648. },
  1649. "suggest": {
  1650. "illuminate/support": "Required for laravel service providers"
  1651. },
  1652. "type": "library",
  1653. "extra": {
  1654. "branch-alias": {
  1655. "dev-master": "3.0-dev"
  1656. },
  1657. "laravel": {
  1658. "providers": [
  1659. "Jenssegers\\Agent\\AgentServiceProvider"
  1660. ],
  1661. "aliases": {
  1662. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1663. }
  1664. }
  1665. },
  1666. "autoload": {
  1667. "psr-4": {
  1668. "Jenssegers\\Agent\\": "src/"
  1669. }
  1670. },
  1671. "notification-url": "https://packagist.org/downloads/",
  1672. "license": [
  1673. "MIT"
  1674. ],
  1675. "authors": [
  1676. {
  1677. "name": "Jens Segers",
  1678. "homepage": "https://jenssegers.com"
  1679. }
  1680. ],
  1681. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1682. "homepage": "https://github.com/jenssegers/agent",
  1683. "keywords": [
  1684. "Agent",
  1685. "browser",
  1686. "desktop",
  1687. "laravel",
  1688. "mobile",
  1689. "platform",
  1690. "user agent",
  1691. "useragent"
  1692. ],
  1693. "support": {
  1694. "issues": "https://github.com/jenssegers/agent/issues",
  1695. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1696. },
  1697. "funding": [
  1698. {
  1699. "url": "https://github.com/jenssegers",
  1700. "type": "github"
  1701. },
  1702. {
  1703. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1704. "type": "tidelift"
  1705. }
  1706. ],
  1707. "time": "2020-06-13T08:05:20+00:00"
  1708. },
  1709. {
  1710. "name": "jxlwqq/id-validator",
  1711. "version": "1.4.33",
  1712. "source": {
  1713. "type": "git",
  1714. "url": "https://github.com/jxlwqq/id-validator.git",
  1715. "reference": "2884acaebc6149aeeb4444a90afad8614135f577"
  1716. },
  1717. "dist": {
  1718. "type": "zip",
  1719. "url": "https://api.github.com/repos/jxlwqq/id-validator/zipball/2884acaebc6149aeeb4444a90afad8614135f577",
  1720. "reference": "2884acaebc6149aeeb4444a90afad8614135f577",
  1721. "shasum": "",
  1722. "mirrors": [
  1723. {
  1724. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1725. "preferred": true
  1726. }
  1727. ]
  1728. },
  1729. "require": {
  1730. "php": ">=5.6.0"
  1731. },
  1732. "require-dev": {
  1733. "phpunit/phpunit": ">=5.6"
  1734. },
  1735. "type": "library",
  1736. "autoload": {
  1737. "psr-4": {
  1738. "Jxlwqq\\IdValidator\\": "src/"
  1739. }
  1740. },
  1741. "notification-url": "https://packagist.org/downloads/",
  1742. "license": [
  1743. "MIT"
  1744. ],
  1745. "authors": [
  1746. {
  1747. "name": "jxlwqq",
  1748. "email": "jxlwqq@gmail.com",
  1749. "homepage": "https://jxlwqq.github.io"
  1750. }
  1751. ],
  1752. "description": "Chinese Mainland Personal ID Card Validation",
  1753. "support": {
  1754. "issues": "https://github.com/jxlwqq/id-validator/issues",
  1755. "source": "https://github.com/jxlwqq/id-validator/tree/1.4.33"
  1756. },
  1757. "time": "2021-12-10T06:39:36+00:00"
  1758. },
  1759. {
  1760. "name": "laravel/framework",
  1761. "version": "v8.83.27",
  1762. "source": {
  1763. "type": "git",
  1764. "url": "https://github.com/laravel/framework.git",
  1765. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  1766. },
  1767. "dist": {
  1768. "type": "zip",
  1769. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1770. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1771. "shasum": "",
  1772. "mirrors": [
  1773. {
  1774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1775. "preferred": true
  1776. }
  1777. ]
  1778. },
  1779. "require": {
  1780. "doctrine/inflector": "^1.4|^2.0",
  1781. "dragonmantank/cron-expression": "^3.0.2",
  1782. "egulias/email-validator": "^2.1.10",
  1783. "ext-json": "*",
  1784. "ext-mbstring": "*",
  1785. "ext-openssl": "*",
  1786. "laravel/serializable-closure": "^1.0",
  1787. "league/commonmark": "^1.3|^2.0.2",
  1788. "league/flysystem": "^1.1",
  1789. "monolog/monolog": "^2.0",
  1790. "nesbot/carbon": "^2.53.1",
  1791. "opis/closure": "^3.6",
  1792. "php": "^7.3|^8.0",
  1793. "psr/container": "^1.0",
  1794. "psr/log": "^1.0|^2.0",
  1795. "psr/simple-cache": "^1.0",
  1796. "ramsey/uuid": "^4.2.2",
  1797. "swiftmailer/swiftmailer": "^6.3",
  1798. "symfony/console": "^5.4",
  1799. "symfony/error-handler": "^5.4",
  1800. "symfony/finder": "^5.4",
  1801. "symfony/http-foundation": "^5.4",
  1802. "symfony/http-kernel": "^5.4",
  1803. "symfony/mime": "^5.4",
  1804. "symfony/process": "^5.4",
  1805. "symfony/routing": "^5.4",
  1806. "symfony/var-dumper": "^5.4",
  1807. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1808. "vlucas/phpdotenv": "^5.4.1",
  1809. "voku/portable-ascii": "^1.6.1"
  1810. },
  1811. "conflict": {
  1812. "tightenco/collect": "<5.5.33"
  1813. },
  1814. "provide": {
  1815. "psr/container-implementation": "1.0",
  1816. "psr/simple-cache-implementation": "1.0"
  1817. },
  1818. "replace": {
  1819. "illuminate/auth": "self.version",
  1820. "illuminate/broadcasting": "self.version",
  1821. "illuminate/bus": "self.version",
  1822. "illuminate/cache": "self.version",
  1823. "illuminate/collections": "self.version",
  1824. "illuminate/config": "self.version",
  1825. "illuminate/console": "self.version",
  1826. "illuminate/container": "self.version",
  1827. "illuminate/contracts": "self.version",
  1828. "illuminate/cookie": "self.version",
  1829. "illuminate/database": "self.version",
  1830. "illuminate/encryption": "self.version",
  1831. "illuminate/events": "self.version",
  1832. "illuminate/filesystem": "self.version",
  1833. "illuminate/hashing": "self.version",
  1834. "illuminate/http": "self.version",
  1835. "illuminate/log": "self.version",
  1836. "illuminate/macroable": "self.version",
  1837. "illuminate/mail": "self.version",
  1838. "illuminate/notifications": "self.version",
  1839. "illuminate/pagination": "self.version",
  1840. "illuminate/pipeline": "self.version",
  1841. "illuminate/queue": "self.version",
  1842. "illuminate/redis": "self.version",
  1843. "illuminate/routing": "self.version",
  1844. "illuminate/session": "self.version",
  1845. "illuminate/support": "self.version",
  1846. "illuminate/testing": "self.version",
  1847. "illuminate/translation": "self.version",
  1848. "illuminate/validation": "self.version",
  1849. "illuminate/view": "self.version"
  1850. },
  1851. "require-dev": {
  1852. "aws/aws-sdk-php": "^3.198.1",
  1853. "doctrine/dbal": "^2.13.3|^3.1.4",
  1854. "filp/whoops": "^2.14.3",
  1855. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1856. "league/flysystem-cached-adapter": "^1.0",
  1857. "mockery/mockery": "^1.4.4",
  1858. "orchestra/testbench-core": "^6.27",
  1859. "pda/pheanstalk": "^4.0",
  1860. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1861. "predis/predis": "^1.1.9",
  1862. "symfony/cache": "^5.4"
  1863. },
  1864. "suggest": {
  1865. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1866. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1867. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1868. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1869. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1870. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1871. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1872. "ext-memcached": "Required to use the memcache cache driver.",
  1873. "ext-pcntl": "Required to use all features of the queue worker.",
  1874. "ext-posix": "Required to use all features of the queue worker.",
  1875. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1876. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1877. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1878. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1879. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1880. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1881. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1882. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1883. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1884. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1885. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1886. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1887. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1888. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1889. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1890. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1891. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1892. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1893. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1894. },
  1895. "type": "library",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-master": "8.x-dev"
  1899. }
  1900. },
  1901. "autoload": {
  1902. "files": [
  1903. "src/Illuminate/Collections/helpers.php",
  1904. "src/Illuminate/Events/functions.php",
  1905. "src/Illuminate/Foundation/helpers.php",
  1906. "src/Illuminate/Support/helpers.php"
  1907. ],
  1908. "psr-4": {
  1909. "Illuminate\\": "src/Illuminate/",
  1910. "Illuminate\\Support\\": [
  1911. "src/Illuminate/Macroable/",
  1912. "src/Illuminate/Collections/"
  1913. ]
  1914. }
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Taylor Otwell",
  1923. "email": "taylor@laravel.com"
  1924. }
  1925. ],
  1926. "description": "The Laravel Framework.",
  1927. "homepage": "https://laravel.com",
  1928. "keywords": [
  1929. "framework",
  1930. "laravel"
  1931. ],
  1932. "support": {
  1933. "issues": "https://github.com/laravel/framework/issues",
  1934. "source": "https://github.com/laravel/framework"
  1935. },
  1936. "time": "2022-12-08T15:28:55+00:00"
  1937. },
  1938. {
  1939. "name": "laravel/sanctum",
  1940. "version": "v2.15.1",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/laravel/sanctum.git",
  1944. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  1949. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  1950. "shasum": "",
  1951. "mirrors": [
  1952. {
  1953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1954. "preferred": true
  1955. }
  1956. ]
  1957. },
  1958. "require": {
  1959. "ext-json": "*",
  1960. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  1961. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  1962. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  1963. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  1964. "php": "^7.2|^8.0"
  1965. },
  1966. "require-dev": {
  1967. "mockery/mockery": "^1.0",
  1968. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  1969. "phpunit/phpunit": "^8.0|^9.3"
  1970. },
  1971. "type": "library",
  1972. "extra": {
  1973. "branch-alias": {
  1974. "dev-master": "2.x-dev"
  1975. },
  1976. "laravel": {
  1977. "providers": [
  1978. "Laravel\\Sanctum\\SanctumServiceProvider"
  1979. ]
  1980. }
  1981. },
  1982. "autoload": {
  1983. "psr-4": {
  1984. "Laravel\\Sanctum\\": "src/"
  1985. }
  1986. },
  1987. "notification-url": "https://packagist.org/downloads/",
  1988. "license": [
  1989. "MIT"
  1990. ],
  1991. "authors": [
  1992. {
  1993. "name": "Taylor Otwell",
  1994. "email": "taylor@laravel.com"
  1995. }
  1996. ],
  1997. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1998. "keywords": [
  1999. "auth",
  2000. "laravel",
  2001. "sanctum"
  2002. ],
  2003. "support": {
  2004. "issues": "https://github.com/laravel/sanctum/issues",
  2005. "source": "https://github.com/laravel/sanctum"
  2006. },
  2007. "time": "2022-04-08T13:39:49+00:00"
  2008. },
  2009. {
  2010. "name": "laravel/serializable-closure",
  2011. "version": "v1.2.2",
  2012. "source": {
  2013. "type": "git",
  2014. "url": "https://github.com/laravel/serializable-closure.git",
  2015. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae"
  2016. },
  2017. "dist": {
  2018. "type": "zip",
  2019. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae",
  2020. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae",
  2021. "shasum": "",
  2022. "mirrors": [
  2023. {
  2024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2025. "preferred": true
  2026. }
  2027. ]
  2028. },
  2029. "require": {
  2030. "php": "^7.3|^8.0"
  2031. },
  2032. "require-dev": {
  2033. "nesbot/carbon": "^2.61",
  2034. "pestphp/pest": "^1.21.3",
  2035. "phpstan/phpstan": "^1.8.2",
  2036. "symfony/var-dumper": "^5.4.11"
  2037. },
  2038. "type": "library",
  2039. "extra": {
  2040. "branch-alias": {
  2041. "dev-master": "1.x-dev"
  2042. }
  2043. },
  2044. "autoload": {
  2045. "psr-4": {
  2046. "Laravel\\SerializableClosure\\": "src/"
  2047. }
  2048. },
  2049. "notification-url": "https://packagist.org/downloads/",
  2050. "license": [
  2051. "MIT"
  2052. ],
  2053. "authors": [
  2054. {
  2055. "name": "Taylor Otwell",
  2056. "email": "taylor@laravel.com"
  2057. },
  2058. {
  2059. "name": "Nuno Maduro",
  2060. "email": "nuno@laravel.com"
  2061. }
  2062. ],
  2063. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2064. "keywords": [
  2065. "closure",
  2066. "laravel",
  2067. "serializable"
  2068. ],
  2069. "support": {
  2070. "issues": "https://github.com/laravel/serializable-closure/issues",
  2071. "source": "https://github.com/laravel/serializable-closure"
  2072. },
  2073. "time": "2022-09-08T13:45:54+00:00"
  2074. },
  2075. {
  2076. "name": "laravel/tinker",
  2077. "version": "v2.8.1",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/laravel/tinker.git",
  2081. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2086. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2087. "shasum": "",
  2088. "mirrors": [
  2089. {
  2090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2091. "preferred": true
  2092. }
  2093. ]
  2094. },
  2095. "require": {
  2096. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2097. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2098. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2099. "php": "^7.2.5|^8.0",
  2100. "psy/psysh": "^0.10.4|^0.11.1",
  2101. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2102. },
  2103. "require-dev": {
  2104. "mockery/mockery": "~1.3.3|^1.4.2",
  2105. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2106. },
  2107. "suggest": {
  2108. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2109. },
  2110. "type": "library",
  2111. "extra": {
  2112. "branch-alias": {
  2113. "dev-master": "2.x-dev"
  2114. },
  2115. "laravel": {
  2116. "providers": [
  2117. "Laravel\\Tinker\\TinkerServiceProvider"
  2118. ]
  2119. }
  2120. },
  2121. "autoload": {
  2122. "psr-4": {
  2123. "Laravel\\Tinker\\": "src/"
  2124. }
  2125. },
  2126. "notification-url": "https://packagist.org/downloads/",
  2127. "license": [
  2128. "MIT"
  2129. ],
  2130. "authors": [
  2131. {
  2132. "name": "Taylor Otwell",
  2133. "email": "taylor@laravel.com"
  2134. }
  2135. ],
  2136. "description": "Powerful REPL for the Laravel framework.",
  2137. "keywords": [
  2138. "REPL",
  2139. "Tinker",
  2140. "laravel",
  2141. "psysh"
  2142. ],
  2143. "support": {
  2144. "issues": "https://github.com/laravel/tinker/issues",
  2145. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  2146. },
  2147. "time": "2023-02-15T16:40:09+00:00"
  2148. },
  2149. {
  2150. "name": "lcobucci/jwt",
  2151. "version": "3.3.3",
  2152. "source": {
  2153. "type": "git",
  2154. "url": "https://github.com/lcobucci/jwt.git",
  2155. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2156. },
  2157. "dist": {
  2158. "type": "zip",
  2159. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2160. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2161. "shasum": "",
  2162. "mirrors": [
  2163. {
  2164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2165. "preferred": true
  2166. }
  2167. ]
  2168. },
  2169. "require": {
  2170. "ext-mbstring": "*",
  2171. "ext-openssl": "*",
  2172. "php": "^5.6 || ^7.0"
  2173. },
  2174. "require-dev": {
  2175. "mikey179/vfsstream": "~1.5",
  2176. "phpmd/phpmd": "~2.2",
  2177. "phpunit/php-invoker": "~1.1",
  2178. "phpunit/phpunit": "^5.7 || ^7.3",
  2179. "squizlabs/php_codesniffer": "~2.3"
  2180. },
  2181. "type": "library",
  2182. "extra": {
  2183. "branch-alias": {
  2184. "dev-master": "3.1-dev"
  2185. }
  2186. },
  2187. "autoload": {
  2188. "psr-4": {
  2189. "Lcobucci\\JWT\\": "src"
  2190. }
  2191. },
  2192. "notification-url": "https://packagist.org/downloads/",
  2193. "license": [
  2194. "BSD-3-Clause"
  2195. ],
  2196. "authors": [
  2197. {
  2198. "name": "Luís Otávio Cobucci Oblonczyk",
  2199. "email": "lcobucci@gmail.com",
  2200. "role": "Developer"
  2201. }
  2202. ],
  2203. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2204. "keywords": [
  2205. "JWS",
  2206. "jwt"
  2207. ],
  2208. "support": {
  2209. "issues": "https://github.com/lcobucci/jwt/issues",
  2210. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2211. },
  2212. "funding": [
  2213. {
  2214. "url": "https://github.com/lcobucci",
  2215. "type": "github"
  2216. },
  2217. {
  2218. "url": "https://www.patreon.com/lcobucci",
  2219. "type": "patreon"
  2220. }
  2221. ],
  2222. "time": "2020-08-20T13:22:28+00:00"
  2223. },
  2224. {
  2225. "name": "league/commonmark",
  2226. "version": "1.6.7",
  2227. "source": {
  2228. "type": "git",
  2229. "url": "https://github.com/thephpleague/commonmark.git",
  2230. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  2231. },
  2232. "dist": {
  2233. "type": "zip",
  2234. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2235. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2236. "shasum": "",
  2237. "mirrors": [
  2238. {
  2239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2240. "preferred": true
  2241. }
  2242. ]
  2243. },
  2244. "require": {
  2245. "ext-mbstring": "*",
  2246. "php": "^7.1 || ^8.0"
  2247. },
  2248. "conflict": {
  2249. "scrutinizer/ocular": "1.7.*"
  2250. },
  2251. "require-dev": {
  2252. "cebe/markdown": "~1.0",
  2253. "commonmark/commonmark.js": "0.29.2",
  2254. "erusev/parsedown": "~1.0",
  2255. "ext-json": "*",
  2256. "github/gfm": "0.29.0",
  2257. "michelf/php-markdown": "~1.4",
  2258. "mikehaertl/php-shellcommand": "^1.4",
  2259. "phpstan/phpstan": "^0.12.90",
  2260. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2261. "scrutinizer/ocular": "^1.5",
  2262. "symfony/finder": "^4.2"
  2263. },
  2264. "bin": [
  2265. "bin/commonmark"
  2266. ],
  2267. "type": "library",
  2268. "autoload": {
  2269. "psr-4": {
  2270. "League\\CommonMark\\": "src"
  2271. }
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "BSD-3-Clause"
  2276. ],
  2277. "authors": [
  2278. {
  2279. "name": "Colin O'Dell",
  2280. "email": "colinodell@gmail.com",
  2281. "homepage": "https://www.colinodell.com",
  2282. "role": "Lead Developer"
  2283. }
  2284. ],
  2285. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2286. "homepage": "https://commonmark.thephpleague.com",
  2287. "keywords": [
  2288. "commonmark",
  2289. "flavored",
  2290. "gfm",
  2291. "github",
  2292. "github-flavored",
  2293. "markdown",
  2294. "md",
  2295. "parser"
  2296. ],
  2297. "support": {
  2298. "docs": "https://commonmark.thephpleague.com/",
  2299. "issues": "https://github.com/thephpleague/commonmark/issues",
  2300. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2301. "source": "https://github.com/thephpleague/commonmark"
  2302. },
  2303. "funding": [
  2304. {
  2305. "url": "https://www.colinodell.com/sponsor",
  2306. "type": "custom"
  2307. },
  2308. {
  2309. "url": "https://www.paypal.me/colinpodell/10.00",
  2310. "type": "custom"
  2311. },
  2312. {
  2313. "url": "https://github.com/colinodell",
  2314. "type": "github"
  2315. },
  2316. {
  2317. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2318. "type": "tidelift"
  2319. }
  2320. ],
  2321. "time": "2022-01-13T17:18:13+00:00"
  2322. },
  2323. {
  2324. "name": "league/flysystem",
  2325. "version": "1.1.10",
  2326. "source": {
  2327. "type": "git",
  2328. "url": "https://github.com/thephpleague/flysystem.git",
  2329. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2330. },
  2331. "dist": {
  2332. "type": "zip",
  2333. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2334. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2335. "shasum": "",
  2336. "mirrors": [
  2337. {
  2338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2339. "preferred": true
  2340. }
  2341. ]
  2342. },
  2343. "require": {
  2344. "ext-fileinfo": "*",
  2345. "league/mime-type-detection": "^1.3",
  2346. "php": "^7.2.5 || ^8.0"
  2347. },
  2348. "conflict": {
  2349. "league/flysystem-sftp": "<1.0.6"
  2350. },
  2351. "require-dev": {
  2352. "phpspec/prophecy": "^1.11.1",
  2353. "phpunit/phpunit": "^8.5.8"
  2354. },
  2355. "suggest": {
  2356. "ext-ftp": "Allows you to use FTP server storage",
  2357. "ext-openssl": "Allows you to use FTPS server storage",
  2358. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2359. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2360. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2361. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2362. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2363. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2364. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2365. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2366. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2367. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2368. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2369. },
  2370. "type": "library",
  2371. "extra": {
  2372. "branch-alias": {
  2373. "dev-master": "1.1-dev"
  2374. }
  2375. },
  2376. "autoload": {
  2377. "psr-4": {
  2378. "League\\Flysystem\\": "src/"
  2379. }
  2380. },
  2381. "notification-url": "https://packagist.org/downloads/",
  2382. "license": [
  2383. "MIT"
  2384. ],
  2385. "authors": [
  2386. {
  2387. "name": "Frank de Jonge",
  2388. "email": "info@frenky.net"
  2389. }
  2390. ],
  2391. "description": "Filesystem abstraction: Many filesystems, one API.",
  2392. "keywords": [
  2393. "Cloud Files",
  2394. "WebDAV",
  2395. "abstraction",
  2396. "aws",
  2397. "cloud",
  2398. "copy.com",
  2399. "dropbox",
  2400. "file systems",
  2401. "files",
  2402. "filesystem",
  2403. "filesystems",
  2404. "ftp",
  2405. "rackspace",
  2406. "remote",
  2407. "s3",
  2408. "sftp",
  2409. "storage"
  2410. ],
  2411. "support": {
  2412. "issues": "https://github.com/thephpleague/flysystem/issues",
  2413. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2414. },
  2415. "funding": [
  2416. {
  2417. "url": "https://offset.earth/frankdejonge",
  2418. "type": "other"
  2419. }
  2420. ],
  2421. "time": "2022-10-04T09:16:37+00:00"
  2422. },
  2423. {
  2424. "name": "league/fractal",
  2425. "version": "0.19.2",
  2426. "source": {
  2427. "type": "git",
  2428. "url": "https://github.com/thephpleague/fractal.git",
  2429. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  2430. },
  2431. "dist": {
  2432. "type": "zip",
  2433. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  2434. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  2435. "shasum": "",
  2436. "mirrors": [
  2437. {
  2438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2439. "preferred": true
  2440. }
  2441. ]
  2442. },
  2443. "require": {
  2444. "php": ">=5.4"
  2445. },
  2446. "require-dev": {
  2447. "doctrine/orm": "^2.5",
  2448. "illuminate/contracts": "~5.0",
  2449. "mockery/mockery": "~0.9",
  2450. "pagerfanta/pagerfanta": "~1.0.0",
  2451. "phpunit/phpunit": "^4.8.35 || ^7.5",
  2452. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  2453. "zendframework/zend-paginator": "~2.3"
  2454. },
  2455. "suggest": {
  2456. "illuminate/pagination": "The Illuminate Pagination component.",
  2457. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  2458. "zendframework/zend-paginator": "Zend Framework Paginator"
  2459. },
  2460. "type": "library",
  2461. "extra": {
  2462. "branch-alias": {
  2463. "dev-master": "0.13-dev"
  2464. }
  2465. },
  2466. "autoload": {
  2467. "psr-4": {
  2468. "League\\Fractal\\": "src"
  2469. }
  2470. },
  2471. "notification-url": "https://packagist.org/downloads/",
  2472. "license": [
  2473. "MIT"
  2474. ],
  2475. "authors": [
  2476. {
  2477. "name": "Phil Sturgeon",
  2478. "email": "me@philsturgeon.uk",
  2479. "homepage": "http://philsturgeon.uk/",
  2480. "role": "Developer"
  2481. }
  2482. ],
  2483. "description": "Handle the output of complex data structures ready for API output.",
  2484. "homepage": "http://fractal.thephpleague.com/",
  2485. "keywords": [
  2486. "api",
  2487. "json",
  2488. "league",
  2489. "rest"
  2490. ],
  2491. "support": {
  2492. "issues": "https://github.com/thephpleague/fractal/issues",
  2493. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  2494. },
  2495. "time": "2020-01-24T23:17:29+00:00"
  2496. },
  2497. {
  2498. "name": "league/mime-type-detection",
  2499. "version": "1.11.0",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2503. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2508. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2509. "shasum": "",
  2510. "mirrors": [
  2511. {
  2512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2513. "preferred": true
  2514. }
  2515. ]
  2516. },
  2517. "require": {
  2518. "ext-fileinfo": "*",
  2519. "php": "^7.2 || ^8.0"
  2520. },
  2521. "require-dev": {
  2522. "friendsofphp/php-cs-fixer": "^3.2",
  2523. "phpstan/phpstan": "^0.12.68",
  2524. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2525. },
  2526. "type": "library",
  2527. "autoload": {
  2528. "psr-4": {
  2529. "League\\MimeTypeDetection\\": "src"
  2530. }
  2531. },
  2532. "notification-url": "https://packagist.org/downloads/",
  2533. "license": [
  2534. "MIT"
  2535. ],
  2536. "authors": [
  2537. {
  2538. "name": "Frank de Jonge",
  2539. "email": "info@frankdejonge.nl"
  2540. }
  2541. ],
  2542. "description": "Mime-type detection for Flysystem",
  2543. "support": {
  2544. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2545. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2546. },
  2547. "funding": [
  2548. {
  2549. "url": "https://github.com/frankdejonge",
  2550. "type": "github"
  2551. },
  2552. {
  2553. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2554. "type": "tidelift"
  2555. }
  2556. ],
  2557. "time": "2022-04-17T13:12:02+00:00"
  2558. },
  2559. {
  2560. "name": "maatwebsite/excel",
  2561. "version": "3.1.48",
  2562. "source": {
  2563. "type": "git",
  2564. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  2565. "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9"
  2566. },
  2567. "dist": {
  2568. "type": "zip",
  2569. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d0fe2a1d195960c7af7bf0de760582da02a34b9",
  2570. "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9",
  2571. "shasum": "",
  2572. "mirrors": [
  2573. {
  2574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2575. "preferred": true
  2576. }
  2577. ]
  2578. },
  2579. "require": {
  2580. "composer/semver": "^3.3",
  2581. "ext-json": "*",
  2582. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0",
  2583. "php": "^7.0|^8.0",
  2584. "phpoffice/phpspreadsheet": "^1.18",
  2585. "psr/simple-cache": "^1.0|^2.0|^3.0"
  2586. },
  2587. "require-dev": {
  2588. "orchestra/testbench": "^6.0|^7.0|^8.0",
  2589. "predis/predis": "^1.1"
  2590. },
  2591. "type": "library",
  2592. "extra": {
  2593. "laravel": {
  2594. "providers": [
  2595. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2596. ],
  2597. "aliases": {
  2598. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2599. }
  2600. }
  2601. },
  2602. "autoload": {
  2603. "psr-4": {
  2604. "Maatwebsite\\Excel\\": "src/"
  2605. }
  2606. },
  2607. "notification-url": "https://packagist.org/downloads/",
  2608. "license": [
  2609. "MIT"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "Patrick Brouwers",
  2614. "email": "patrick@spartner.nl"
  2615. }
  2616. ],
  2617. "description": "Supercharged Excel exports and imports in Laravel",
  2618. "keywords": [
  2619. "PHPExcel",
  2620. "batch",
  2621. "csv",
  2622. "excel",
  2623. "export",
  2624. "import",
  2625. "laravel",
  2626. "php",
  2627. "phpspreadsheet"
  2628. ],
  2629. "support": {
  2630. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  2631. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.48"
  2632. },
  2633. "funding": [
  2634. {
  2635. "url": "https://laravel-excel.com/commercial-support",
  2636. "type": "custom"
  2637. },
  2638. {
  2639. "url": "https://github.com/patrickbrouwers",
  2640. "type": "github"
  2641. }
  2642. ],
  2643. "time": "2023-02-22T21:01:38+00:00"
  2644. },
  2645. {
  2646. "name": "maennchen/zipstream-php",
  2647. "version": "2.1.0",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2651. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2656. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2657. "shasum": "",
  2658. "mirrors": [
  2659. {
  2660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2661. "preferred": true
  2662. }
  2663. ]
  2664. },
  2665. "require": {
  2666. "myclabs/php-enum": "^1.5",
  2667. "php": ">= 7.1",
  2668. "psr/http-message": "^1.0",
  2669. "symfony/polyfill-mbstring": "^1.0"
  2670. },
  2671. "require-dev": {
  2672. "ext-zip": "*",
  2673. "guzzlehttp/guzzle": ">= 6.3",
  2674. "mikey179/vfsstream": "^1.6",
  2675. "phpunit/phpunit": ">= 7.5"
  2676. },
  2677. "type": "library",
  2678. "autoload": {
  2679. "psr-4": {
  2680. "ZipStream\\": "src/"
  2681. }
  2682. },
  2683. "notification-url": "https://packagist.org/downloads/",
  2684. "license": [
  2685. "MIT"
  2686. ],
  2687. "authors": [
  2688. {
  2689. "name": "Paul Duncan",
  2690. "email": "pabs@pablotron.org"
  2691. },
  2692. {
  2693. "name": "Jonatan Männchen",
  2694. "email": "jonatan@maennchen.ch"
  2695. },
  2696. {
  2697. "name": "Jesse Donat",
  2698. "email": "donatj@gmail.com"
  2699. },
  2700. {
  2701. "name": "András Kolesár",
  2702. "email": "kolesar@kolesar.hu"
  2703. }
  2704. ],
  2705. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2706. "keywords": [
  2707. "stream",
  2708. "zip"
  2709. ],
  2710. "support": {
  2711. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2712. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0"
  2713. },
  2714. "funding": [
  2715. {
  2716. "url": "https://github.com/maennchen",
  2717. "type": "github"
  2718. },
  2719. {
  2720. "url": "https://opencollective.com/zipstream",
  2721. "type": "open_collective"
  2722. }
  2723. ],
  2724. "time": "2020-05-30T13:11:16+00:00"
  2725. },
  2726. {
  2727. "name": "markbaker/complex",
  2728. "version": "3.0.2",
  2729. "source": {
  2730. "type": "git",
  2731. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2732. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2733. },
  2734. "dist": {
  2735. "type": "zip",
  2736. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2737. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2738. "shasum": "",
  2739. "mirrors": [
  2740. {
  2741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2742. "preferred": true
  2743. }
  2744. ]
  2745. },
  2746. "require": {
  2747. "php": "^7.2 || ^8.0"
  2748. },
  2749. "require-dev": {
  2750. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2751. "phpcompatibility/php-compatibility": "^9.3",
  2752. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2753. "squizlabs/php_codesniffer": "^3.7"
  2754. },
  2755. "type": "library",
  2756. "autoload": {
  2757. "psr-4": {
  2758. "Complex\\": "classes/src/"
  2759. }
  2760. },
  2761. "notification-url": "https://packagist.org/downloads/",
  2762. "license": [
  2763. "MIT"
  2764. ],
  2765. "authors": [
  2766. {
  2767. "name": "Mark Baker",
  2768. "email": "mark@lange.demon.co.uk"
  2769. }
  2770. ],
  2771. "description": "PHP Class for working with complex numbers",
  2772. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2773. "keywords": [
  2774. "complex",
  2775. "mathematics"
  2776. ],
  2777. "support": {
  2778. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2779. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2780. },
  2781. "time": "2022-12-06T16:21:08+00:00"
  2782. },
  2783. {
  2784. "name": "markbaker/matrix",
  2785. "version": "3.0.1",
  2786. "source": {
  2787. "type": "git",
  2788. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2789. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2790. },
  2791. "dist": {
  2792. "type": "zip",
  2793. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2794. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2795. "shasum": "",
  2796. "mirrors": [
  2797. {
  2798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2799. "preferred": true
  2800. }
  2801. ]
  2802. },
  2803. "require": {
  2804. "php": "^7.1 || ^8.0"
  2805. },
  2806. "require-dev": {
  2807. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2808. "phpcompatibility/php-compatibility": "^9.3",
  2809. "phpdocumentor/phpdocumentor": "2.*",
  2810. "phploc/phploc": "^4.0",
  2811. "phpmd/phpmd": "2.*",
  2812. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2813. "sebastian/phpcpd": "^4.0",
  2814. "squizlabs/php_codesniffer": "^3.7"
  2815. },
  2816. "type": "library",
  2817. "autoload": {
  2818. "psr-4": {
  2819. "Matrix\\": "classes/src/"
  2820. }
  2821. },
  2822. "notification-url": "https://packagist.org/downloads/",
  2823. "license": [
  2824. "MIT"
  2825. ],
  2826. "authors": [
  2827. {
  2828. "name": "Mark Baker",
  2829. "email": "mark@demon-angel.eu"
  2830. }
  2831. ],
  2832. "description": "PHP Class for working with matrices",
  2833. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2834. "keywords": [
  2835. "mathematics",
  2836. "matrix",
  2837. "vector"
  2838. ],
  2839. "support": {
  2840. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2841. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2842. },
  2843. "time": "2022-12-02T22:17:43+00:00"
  2844. },
  2845. {
  2846. "name": "mobiledetect/mobiledetectlib",
  2847. "version": "2.8.41",
  2848. "source": {
  2849. "type": "git",
  2850. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2851. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1"
  2852. },
  2853. "dist": {
  2854. "type": "zip",
  2855. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  2856. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  2857. "shasum": "",
  2858. "mirrors": [
  2859. {
  2860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2861. "preferred": true
  2862. }
  2863. ]
  2864. },
  2865. "require": {
  2866. "php": ">=5.0.0"
  2867. },
  2868. "require-dev": {
  2869. "phpunit/phpunit": "~4.8.35||~5.7"
  2870. },
  2871. "type": "library",
  2872. "autoload": {
  2873. "psr-0": {
  2874. "Detection": "namespaced/"
  2875. },
  2876. "classmap": [
  2877. "Mobile_Detect.php"
  2878. ]
  2879. },
  2880. "notification-url": "https://packagist.org/downloads/",
  2881. "license": [
  2882. "MIT"
  2883. ],
  2884. "authors": [
  2885. {
  2886. "name": "Serban Ghita",
  2887. "email": "serbanghita@gmail.com",
  2888. "homepage": "http://mobiledetect.net",
  2889. "role": "Developer"
  2890. }
  2891. ],
  2892. "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.",
  2893. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2894. "keywords": [
  2895. "detect mobile devices",
  2896. "mobile",
  2897. "mobile detect",
  2898. "mobile detector",
  2899. "php mobile detect"
  2900. ],
  2901. "support": {
  2902. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  2903. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.41"
  2904. },
  2905. "time": "2022-11-08T18:31:26+00:00"
  2906. },
  2907. {
  2908. "name": "monolog/monolog",
  2909. "version": "2.9.0",
  2910. "source": {
  2911. "type": "git",
  2912. "url": "https://github.com/Seldaek/monolog.git",
  2913. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb"
  2914. },
  2915. "dist": {
  2916. "type": "zip",
  2917. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  2918. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  2919. "shasum": "",
  2920. "mirrors": [
  2921. {
  2922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2923. "preferred": true
  2924. }
  2925. ]
  2926. },
  2927. "require": {
  2928. "php": ">=7.2",
  2929. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2930. },
  2931. "provide": {
  2932. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2933. },
  2934. "require-dev": {
  2935. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2936. "doctrine/couchdb": "~1.0@dev",
  2937. "elasticsearch/elasticsearch": "^7 || ^8",
  2938. "ext-json": "*",
  2939. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2940. "guzzlehttp/guzzle": "^7.4",
  2941. "guzzlehttp/psr7": "^2.2",
  2942. "mongodb/mongodb": "^1.8",
  2943. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2944. "phpspec/prophecy": "^1.15",
  2945. "phpstan/phpstan": "^0.12.91",
  2946. "phpunit/phpunit": "^8.5.14",
  2947. "predis/predis": "^1.1 || ^2.0",
  2948. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2949. "ruflin/elastica": "^7",
  2950. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2951. "symfony/mailer": "^5.4 || ^6",
  2952. "symfony/mime": "^5.4 || ^6"
  2953. },
  2954. "suggest": {
  2955. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2956. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2957. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2958. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2959. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2960. "ext-mbstring": "Allow to work properly with unicode symbols",
  2961. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2962. "ext-openssl": "Required to send log messages using SSL",
  2963. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2964. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2965. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2966. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2967. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2968. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2969. },
  2970. "type": "library",
  2971. "extra": {
  2972. "branch-alias": {
  2973. "dev-main": "2.x-dev"
  2974. }
  2975. },
  2976. "autoload": {
  2977. "psr-4": {
  2978. "Monolog\\": "src/Monolog"
  2979. }
  2980. },
  2981. "notification-url": "https://packagist.org/downloads/",
  2982. "license": [
  2983. "MIT"
  2984. ],
  2985. "authors": [
  2986. {
  2987. "name": "Jordi Boggiano",
  2988. "email": "j.boggiano@seld.be",
  2989. "homepage": "https://seld.be"
  2990. }
  2991. ],
  2992. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2993. "homepage": "https://github.com/Seldaek/monolog",
  2994. "keywords": [
  2995. "log",
  2996. "logging",
  2997. "psr-3"
  2998. ],
  2999. "support": {
  3000. "issues": "https://github.com/Seldaek/monolog/issues",
  3001. "source": "https://github.com/Seldaek/monolog/tree/2.9.0"
  3002. },
  3003. "funding": [
  3004. {
  3005. "url": "https://github.com/Seldaek",
  3006. "type": "github"
  3007. },
  3008. {
  3009. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3010. "type": "tidelift"
  3011. }
  3012. ],
  3013. "time": "2023-02-05T13:07:32+00:00"
  3014. },
  3015. {
  3016. "name": "myclabs/php-enum",
  3017. "version": "1.6.6",
  3018. "source": {
  3019. "type": "git",
  3020. "url": "https://github.com/myclabs/php-enum.git",
  3021. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e"
  3022. },
  3023. "dist": {
  3024. "type": "zip",
  3025. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  3026. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  3027. "shasum": "",
  3028. "mirrors": [
  3029. {
  3030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3031. "preferred": true
  3032. }
  3033. ]
  3034. },
  3035. "require": {
  3036. "ext-json": "*",
  3037. "php": ">=5.4"
  3038. },
  3039. "require-dev": {
  3040. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  3041. "squizlabs/php_codesniffer": "1.*"
  3042. },
  3043. "type": "library",
  3044. "autoload": {
  3045. "psr-4": {
  3046. "MyCLabs\\Enum\\": "src/"
  3047. }
  3048. },
  3049. "notification-url": "https://packagist.org/downloads/",
  3050. "license": [
  3051. "MIT"
  3052. ],
  3053. "authors": [
  3054. {
  3055. "name": "PHP Enum contributors",
  3056. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3057. }
  3058. ],
  3059. "description": "PHP Enum implementation",
  3060. "homepage": "http://github.com/myclabs/php-enum",
  3061. "keywords": [
  3062. "enum"
  3063. ],
  3064. "support": {
  3065. "issues": "https://github.com/myclabs/php-enum/issues",
  3066. "source": "https://github.com/myclabs/php-enum/tree/master"
  3067. },
  3068. "time": "2019-02-04T21:18:49+00:00"
  3069. },
  3070. {
  3071. "name": "namshi/jose",
  3072. "version": "7.2.3",
  3073. "source": {
  3074. "type": "git",
  3075. "url": "https://github.com/namshi/jose.git",
  3076. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3077. },
  3078. "dist": {
  3079. "type": "zip",
  3080. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3081. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3082. "shasum": "",
  3083. "mirrors": [
  3084. {
  3085. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3086. "preferred": true
  3087. }
  3088. ]
  3089. },
  3090. "require": {
  3091. "ext-date": "*",
  3092. "ext-hash": "*",
  3093. "ext-json": "*",
  3094. "ext-pcre": "*",
  3095. "ext-spl": "*",
  3096. "php": ">=5.5",
  3097. "symfony/polyfill-php56": "^1.0"
  3098. },
  3099. "require-dev": {
  3100. "phpseclib/phpseclib": "^2.0",
  3101. "phpunit/phpunit": "^4.5|^5.0",
  3102. "satooshi/php-coveralls": "^1.0"
  3103. },
  3104. "suggest": {
  3105. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3106. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3107. },
  3108. "type": "library",
  3109. "autoload": {
  3110. "psr-4": {
  3111. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3112. }
  3113. },
  3114. "notification-url": "https://packagist.org/downloads/",
  3115. "license": [
  3116. "MIT"
  3117. ],
  3118. "authors": [
  3119. {
  3120. "name": "Alessandro Nadalin",
  3121. "email": "alessandro.nadalin@gmail.com"
  3122. },
  3123. {
  3124. "name": "Alessandro Cinelli (cirpo)",
  3125. "email": "alessandro.cinelli@gmail.com"
  3126. }
  3127. ],
  3128. "description": "JSON Object Signing and Encryption library for PHP.",
  3129. "keywords": [
  3130. "JSON Web Signature",
  3131. "JSON Web Token",
  3132. "JWS",
  3133. "json",
  3134. "jwt",
  3135. "token"
  3136. ],
  3137. "support": {
  3138. "issues": "https://github.com/namshi/jose/issues",
  3139. "source": "https://github.com/namshi/jose/tree/master"
  3140. },
  3141. "time": "2016-12-05T07:27:31+00:00"
  3142. },
  3143. {
  3144. "name": "nesbot/carbon",
  3145. "version": "2.66.0",
  3146. "source": {
  3147. "type": "git",
  3148. "url": "https://github.com/briannesbitt/Carbon.git",
  3149. "reference": "496712849902241f04902033b0441b269effe001"
  3150. },
  3151. "dist": {
  3152. "type": "zip",
  3153. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  3154. "reference": "496712849902241f04902033b0441b269effe001",
  3155. "shasum": "",
  3156. "mirrors": [
  3157. {
  3158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3159. "preferred": true
  3160. }
  3161. ]
  3162. },
  3163. "require": {
  3164. "ext-json": "*",
  3165. "php": "^7.1.8 || ^8.0",
  3166. "symfony/polyfill-mbstring": "^1.0",
  3167. "symfony/polyfill-php80": "^1.16",
  3168. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3169. },
  3170. "require-dev": {
  3171. "doctrine/dbal": "^2.0 || ^3.1.4",
  3172. "doctrine/orm": "^2.7",
  3173. "friendsofphp/php-cs-fixer": "^3.0",
  3174. "kylekatarnls/multi-tester": "^2.0",
  3175. "ondrejmirtes/better-reflection": "*",
  3176. "phpmd/phpmd": "^2.9",
  3177. "phpstan/extension-installer": "^1.0",
  3178. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3179. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3180. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3181. "squizlabs/php_codesniffer": "^3.4"
  3182. },
  3183. "bin": [
  3184. "bin/carbon"
  3185. ],
  3186. "type": "library",
  3187. "extra": {
  3188. "branch-alias": {
  3189. "dev-3.x": "3.x-dev",
  3190. "dev-master": "2.x-dev"
  3191. },
  3192. "laravel": {
  3193. "providers": [
  3194. "Carbon\\Laravel\\ServiceProvider"
  3195. ]
  3196. },
  3197. "phpstan": {
  3198. "includes": [
  3199. "extension.neon"
  3200. ]
  3201. }
  3202. },
  3203. "autoload": {
  3204. "psr-4": {
  3205. "Carbon\\": "src/Carbon/"
  3206. }
  3207. },
  3208. "notification-url": "https://packagist.org/downloads/",
  3209. "license": [
  3210. "MIT"
  3211. ],
  3212. "authors": [
  3213. {
  3214. "name": "Brian Nesbitt",
  3215. "email": "brian@nesbot.com",
  3216. "homepage": "https://markido.com"
  3217. },
  3218. {
  3219. "name": "kylekatarnls",
  3220. "homepage": "https://github.com/kylekatarnls"
  3221. }
  3222. ],
  3223. "description": "An API extension for DateTime that supports 281 different languages.",
  3224. "homepage": "https://carbon.nesbot.com",
  3225. "keywords": [
  3226. "date",
  3227. "datetime",
  3228. "time"
  3229. ],
  3230. "support": {
  3231. "docs": "https://carbon.nesbot.com/docs",
  3232. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3233. "source": "https://github.com/briannesbitt/Carbon"
  3234. },
  3235. "funding": [
  3236. {
  3237. "url": "https://github.com/sponsors/kylekatarnls",
  3238. "type": "github"
  3239. },
  3240. {
  3241. "url": "https://opencollective.com/Carbon#sponsor",
  3242. "type": "opencollective"
  3243. },
  3244. {
  3245. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3246. "type": "tidelift"
  3247. }
  3248. ],
  3249. "time": "2023-01-29T18:53:47+00:00"
  3250. },
  3251. {
  3252. "name": "nikic/php-parser",
  3253. "version": "v4.15.4",
  3254. "source": {
  3255. "type": "git",
  3256. "url": "https://github.com/nikic/PHP-Parser.git",
  3257. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  3258. },
  3259. "dist": {
  3260. "type": "zip",
  3261. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3262. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3263. "shasum": "",
  3264. "mirrors": [
  3265. {
  3266. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3267. "preferred": true
  3268. }
  3269. ]
  3270. },
  3271. "require": {
  3272. "ext-tokenizer": "*",
  3273. "php": ">=7.0"
  3274. },
  3275. "require-dev": {
  3276. "ircmaxell/php-yacc": "^0.0.7",
  3277. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3278. },
  3279. "bin": [
  3280. "bin/php-parse"
  3281. ],
  3282. "type": "library",
  3283. "extra": {
  3284. "branch-alias": {
  3285. "dev-master": "4.9-dev"
  3286. }
  3287. },
  3288. "autoload": {
  3289. "psr-4": {
  3290. "PhpParser\\": "lib/PhpParser"
  3291. }
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "BSD-3-Clause"
  3296. ],
  3297. "authors": [
  3298. {
  3299. "name": "Nikita Popov"
  3300. }
  3301. ],
  3302. "description": "A PHP parser written in PHP",
  3303. "keywords": [
  3304. "parser",
  3305. "php"
  3306. ],
  3307. "support": {
  3308. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3309. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  3310. },
  3311. "time": "2023-03-05T19:49:14+00:00"
  3312. },
  3313. {
  3314. "name": "nwidart/laravel-modules",
  3315. "version": "v8.3.0",
  3316. "source": {
  3317. "type": "git",
  3318. "url": "https://github.com/nWidart/laravel-modules.git",
  3319. "reference": "ee06dc0ac019cc392bd66a1c3e6cec0412fcc52d"
  3320. },
  3321. "dist": {
  3322. "type": "zip",
  3323. "url": "https://api.github.com/repos/nWidart/laravel-modules/zipball/ee06dc0ac019cc392bd66a1c3e6cec0412fcc52d",
  3324. "reference": "ee06dc0ac019cc392bd66a1c3e6cec0412fcc52d",
  3325. "shasum": "",
  3326. "mirrors": [
  3327. {
  3328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3329. "preferred": true
  3330. }
  3331. ]
  3332. },
  3333. "require": {
  3334. "ext-json": "*",
  3335. "php": ">=7.3"
  3336. },
  3337. "require-dev": {
  3338. "friendsofphp/php-cs-fixer": "^2.16",
  3339. "laravel/framework": "^8.0",
  3340. "mockery/mockery": "~1.0",
  3341. "orchestra/testbench": "^6.2",
  3342. "phpstan/phpstan": "^0.12.14",
  3343. "phpunit/phpunit": "^8.5",
  3344. "spatie/phpunit-snapshot-assertions": "^2.1.0|^4.2"
  3345. },
  3346. "type": "library",
  3347. "extra": {
  3348. "laravel": {
  3349. "providers": [
  3350. "Nwidart\\Modules\\LaravelModulesServiceProvider"
  3351. ],
  3352. "aliases": {
  3353. "Module": "Nwidart\\Modules\\Facades\\Module"
  3354. }
  3355. },
  3356. "branch-alias": {
  3357. "dev-master": "8.0-dev"
  3358. }
  3359. },
  3360. "autoload": {
  3361. "files": [
  3362. "src/helpers.php"
  3363. ],
  3364. "psr-4": {
  3365. "Nwidart\\Modules\\": "src"
  3366. }
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "Nicolas Widart",
  3375. "email": "n.widart@gmail.com",
  3376. "homepage": "https://nicolaswidart.com",
  3377. "role": "Developer"
  3378. }
  3379. ],
  3380. "description": "Laravel Module management",
  3381. "keywords": [
  3382. "laravel",
  3383. "module",
  3384. "modules",
  3385. "nwidart",
  3386. "rad"
  3387. ],
  3388. "support": {
  3389. "issues": "https://github.com/nWidart/laravel-modules/issues",
  3390. "source": "https://github.com/nWidart/laravel-modules/tree/v8.3.0"
  3391. },
  3392. "funding": [
  3393. {
  3394. "url": "https://github.com/nwidart",
  3395. "type": "github"
  3396. }
  3397. ],
  3398. "time": "2022-02-10T20:30:19+00:00"
  3399. },
  3400. {
  3401. "name": "opis/closure",
  3402. "version": "3.6.3",
  3403. "source": {
  3404. "type": "git",
  3405. "url": "https://github.com/opis/closure.git",
  3406. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3407. },
  3408. "dist": {
  3409. "type": "zip",
  3410. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3411. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3412. "shasum": "",
  3413. "mirrors": [
  3414. {
  3415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3416. "preferred": true
  3417. }
  3418. ]
  3419. },
  3420. "require": {
  3421. "php": "^5.4 || ^7.0 || ^8.0"
  3422. },
  3423. "require-dev": {
  3424. "jeremeamia/superclosure": "^2.0",
  3425. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3426. },
  3427. "type": "library",
  3428. "extra": {
  3429. "branch-alias": {
  3430. "dev-master": "3.6.x-dev"
  3431. }
  3432. },
  3433. "autoload": {
  3434. "files": [
  3435. "functions.php"
  3436. ],
  3437. "psr-4": {
  3438. "Opis\\Closure\\": "src/"
  3439. }
  3440. },
  3441. "notification-url": "https://packagist.org/downloads/",
  3442. "license": [
  3443. "MIT"
  3444. ],
  3445. "authors": [
  3446. {
  3447. "name": "Marius Sarca",
  3448. "email": "marius.sarca@gmail.com"
  3449. },
  3450. {
  3451. "name": "Sorin Sarca",
  3452. "email": "sarca_sorin@hotmail.com"
  3453. }
  3454. ],
  3455. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3456. "homepage": "https://opis.io/closure",
  3457. "keywords": [
  3458. "anonymous functions",
  3459. "closure",
  3460. "function",
  3461. "serializable",
  3462. "serialization",
  3463. "serialize"
  3464. ],
  3465. "support": {
  3466. "issues": "https://github.com/opis/closure/issues",
  3467. "source": "https://github.com/opis/closure/tree/3.6.3"
  3468. },
  3469. "time": "2022-01-27T09:35:39+00:00"
  3470. },
  3471. {
  3472. "name": "overtrue/laravel-wechat",
  3473. "version": "5.1.0",
  3474. "source": {
  3475. "type": "git",
  3476. "url": "https://github.com/overtrue/laravel-wechat.git",
  3477. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  3478. },
  3479. "dist": {
  3480. "type": "zip",
  3481. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  3482. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  3483. "shasum": "",
  3484. "mirrors": [
  3485. {
  3486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3487. "preferred": true
  3488. }
  3489. ]
  3490. },
  3491. "require": {
  3492. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  3493. "overtrue/wechat": "^4.0"
  3494. },
  3495. "require-dev": {
  3496. "friendsofphp/php-cs-fixer": "^2.16",
  3497. "laravel/framework": "^8.5"
  3498. },
  3499. "type": "library",
  3500. "extra": {
  3501. "laravel": {
  3502. "providers": [
  3503. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3504. ],
  3505. "aliases": {
  3506. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  3507. }
  3508. }
  3509. },
  3510. "autoload": {
  3511. "psr-4": {
  3512. "Overtrue\\LaravelWeChat\\": "src/"
  3513. }
  3514. },
  3515. "notification-url": "https://packagist.org/downloads/",
  3516. "license": [
  3517. "MIT"
  3518. ],
  3519. "authors": [
  3520. {
  3521. "name": "overtrue",
  3522. "email": "anzhengchao@gmail.com"
  3523. }
  3524. ],
  3525. "description": "微信 SDK for Laravel",
  3526. "keywords": [
  3527. "laravel",
  3528. "sdk",
  3529. "wechat",
  3530. "weixin"
  3531. ],
  3532. "support": {
  3533. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3534. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  3535. },
  3536. "time": "2020-09-27T08:32:30+00:00"
  3537. },
  3538. {
  3539. "name": "overtrue/socialite",
  3540. "version": "2.0.24",
  3541. "source": {
  3542. "type": "git",
  3543. "url": "https://github.com/overtrue/socialite.git",
  3544. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  3545. },
  3546. "dist": {
  3547. "type": "zip",
  3548. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  3549. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  3550. "shasum": "",
  3551. "mirrors": [
  3552. {
  3553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3554. "preferred": true
  3555. }
  3556. ]
  3557. },
  3558. "require": {
  3559. "ext-json": "*",
  3560. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  3561. "php": ">=5.6",
  3562. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  3563. },
  3564. "require-dev": {
  3565. "mockery/mockery": "~1.2",
  3566. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  3567. },
  3568. "type": "library",
  3569. "autoload": {
  3570. "psr-4": {
  3571. "Overtrue\\Socialite\\": "src/"
  3572. }
  3573. },
  3574. "notification-url": "https://packagist.org/downloads/",
  3575. "license": [
  3576. "MIT"
  3577. ],
  3578. "authors": [
  3579. {
  3580. "name": "overtrue",
  3581. "email": "anzhengchao@gmail.com"
  3582. }
  3583. ],
  3584. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  3585. "keywords": [
  3586. "login",
  3587. "oauth",
  3588. "qq",
  3589. "social",
  3590. "wechat",
  3591. "weibo"
  3592. ],
  3593. "support": {
  3594. "issues": "https://github.com/overtrue/socialite/issues",
  3595. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  3596. },
  3597. "funding": [
  3598. {
  3599. "url": "https://www.patreon.com/overtrue",
  3600. "type": "patreon"
  3601. }
  3602. ],
  3603. "time": "2021-05-13T16:04:48+00:00"
  3604. },
  3605. {
  3606. "name": "overtrue/wechat",
  3607. "version": "4.6.0",
  3608. "source": {
  3609. "type": "git",
  3610. "url": "https://github.com/w7corp/easywechat.git",
  3611. "reference": "52af4cbe777cd4aea307beafa0a4518c347467b1"
  3612. },
  3613. "dist": {
  3614. "type": "zip",
  3615. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/52af4cbe777cd4aea307beafa0a4518c347467b1",
  3616. "reference": "52af4cbe777cd4aea307beafa0a4518c347467b1",
  3617. "shasum": "",
  3618. "mirrors": [
  3619. {
  3620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3621. "preferred": true
  3622. }
  3623. ]
  3624. },
  3625. "require": {
  3626. "easywechat-composer/easywechat-composer": "^1.1",
  3627. "ext-fileinfo": "*",
  3628. "ext-openssl": "*",
  3629. "ext-simplexml": "*",
  3630. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3631. "monolog/monolog": "^1.22 || ^2.0",
  3632. "overtrue/socialite": "~2.0",
  3633. "php": ">=7.2",
  3634. "pimple/pimple": "^3.0",
  3635. "psr/simple-cache": "^1.0",
  3636. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  3637. "symfony/event-dispatcher": "^4.3 || ^5.0",
  3638. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  3639. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  3640. },
  3641. "require-dev": {
  3642. "friendsofphp/php-cs-fixer": "^2.15",
  3643. "mikey179/vfsstream": "^1.6",
  3644. "mockery/mockery": "^1.2.3",
  3645. "phpstan/phpstan": "^0.12.0",
  3646. "phpunit/phpunit": "^7.5"
  3647. },
  3648. "type": "library",
  3649. "autoload": {
  3650. "files": [
  3651. "src/Kernel/Support/Helpers.php",
  3652. "src/Kernel/Helpers.php"
  3653. ],
  3654. "psr-4": {
  3655. "EasyWeChat\\": "src/"
  3656. }
  3657. },
  3658. "notification-url": "https://packagist.org/downloads/",
  3659. "license": [
  3660. "MIT"
  3661. ],
  3662. "authors": [
  3663. {
  3664. "name": "overtrue",
  3665. "email": "anzhengchao@gmail.com"
  3666. }
  3667. ],
  3668. "description": "微信SDK",
  3669. "keywords": [
  3670. "easywechat",
  3671. "sdk",
  3672. "wechat",
  3673. "weixin",
  3674. "weixin-sdk"
  3675. ],
  3676. "support": {
  3677. "issues": "https://github.com/w7corp/easywechat/issues",
  3678. "source": "https://github.com/w7corp/easywechat/tree/4.6.0"
  3679. },
  3680. "funding": [
  3681. {
  3682. "url": "https://github.com/overtrue",
  3683. "type": "github"
  3684. }
  3685. ],
  3686. "abandoned": "w7corp/easywechat",
  3687. "time": "2022-08-24T07:30:42+00:00"
  3688. },
  3689. {
  3690. "name": "phpdocumentor/reflection-common",
  3691. "version": "2.2.0",
  3692. "source": {
  3693. "type": "git",
  3694. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3695. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3696. },
  3697. "dist": {
  3698. "type": "zip",
  3699. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3700. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3701. "shasum": "",
  3702. "mirrors": [
  3703. {
  3704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3705. "preferred": true
  3706. }
  3707. ]
  3708. },
  3709. "require": {
  3710. "php": "^7.2 || ^8.0"
  3711. },
  3712. "type": "library",
  3713. "extra": {
  3714. "branch-alias": {
  3715. "dev-2.x": "2.x-dev"
  3716. }
  3717. },
  3718. "autoload": {
  3719. "psr-4": {
  3720. "phpDocumentor\\Reflection\\": "src/"
  3721. }
  3722. },
  3723. "notification-url": "https://packagist.org/downloads/",
  3724. "license": [
  3725. "MIT"
  3726. ],
  3727. "authors": [
  3728. {
  3729. "name": "Jaap van Otterdijk",
  3730. "email": "opensource@ijaap.nl"
  3731. }
  3732. ],
  3733. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3734. "homepage": "http://www.phpdoc.org",
  3735. "keywords": [
  3736. "FQSEN",
  3737. "phpDocumentor",
  3738. "phpdoc",
  3739. "reflection",
  3740. "static analysis"
  3741. ],
  3742. "support": {
  3743. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3744. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3745. },
  3746. "time": "2020-06-27T09:03:43+00:00"
  3747. },
  3748. {
  3749. "name": "phpdocumentor/reflection-docblock",
  3750. "version": "5.3.0",
  3751. "source": {
  3752. "type": "git",
  3753. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3754. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  3755. },
  3756. "dist": {
  3757. "type": "zip",
  3758. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  3759. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  3760. "shasum": "",
  3761. "mirrors": [
  3762. {
  3763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3764. "preferred": true
  3765. }
  3766. ]
  3767. },
  3768. "require": {
  3769. "ext-filter": "*",
  3770. "php": "^7.2 || ^8.0",
  3771. "phpdocumentor/reflection-common": "^2.2",
  3772. "phpdocumentor/type-resolver": "^1.3",
  3773. "webmozart/assert": "^1.9.1"
  3774. },
  3775. "require-dev": {
  3776. "mockery/mockery": "~1.3.2",
  3777. "psalm/phar": "^4.8"
  3778. },
  3779. "type": "library",
  3780. "extra": {
  3781. "branch-alias": {
  3782. "dev-master": "5.x-dev"
  3783. }
  3784. },
  3785. "autoload": {
  3786. "psr-4": {
  3787. "phpDocumentor\\Reflection\\": "src"
  3788. }
  3789. },
  3790. "notification-url": "https://packagist.org/downloads/",
  3791. "license": [
  3792. "MIT"
  3793. ],
  3794. "authors": [
  3795. {
  3796. "name": "Mike van Riel",
  3797. "email": "me@mikevanriel.com"
  3798. },
  3799. {
  3800. "name": "Jaap van Otterdijk",
  3801. "email": "account@ijaap.nl"
  3802. }
  3803. ],
  3804. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3805. "support": {
  3806. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3807. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  3808. },
  3809. "time": "2021-10-19T17:43:47+00:00"
  3810. },
  3811. {
  3812. "name": "phpdocumentor/type-resolver",
  3813. "version": "1.6.1",
  3814. "source": {
  3815. "type": "git",
  3816. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3817. "reference": "77a32518733312af16a44300404e945338981de3"
  3818. },
  3819. "dist": {
  3820. "type": "zip",
  3821. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  3822. "reference": "77a32518733312af16a44300404e945338981de3",
  3823. "shasum": "",
  3824. "mirrors": [
  3825. {
  3826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3827. "preferred": true
  3828. }
  3829. ]
  3830. },
  3831. "require": {
  3832. "php": "^7.2 || ^8.0",
  3833. "phpdocumentor/reflection-common": "^2.0"
  3834. },
  3835. "require-dev": {
  3836. "ext-tokenizer": "*",
  3837. "psalm/phar": "^4.8"
  3838. },
  3839. "type": "library",
  3840. "extra": {
  3841. "branch-alias": {
  3842. "dev-1.x": "1.x-dev"
  3843. }
  3844. },
  3845. "autoload": {
  3846. "psr-4": {
  3847. "phpDocumentor\\Reflection\\": "src"
  3848. }
  3849. },
  3850. "notification-url": "https://packagist.org/downloads/",
  3851. "license": [
  3852. "MIT"
  3853. ],
  3854. "authors": [
  3855. {
  3856. "name": "Mike van Riel",
  3857. "email": "me@mikevanriel.com"
  3858. }
  3859. ],
  3860. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3861. "support": {
  3862. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3863. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  3864. },
  3865. "time": "2022-03-15T21:29:03+00:00"
  3866. },
  3867. {
  3868. "name": "phpoffice/phpspreadsheet",
  3869. "version": "1.25.2",
  3870. "source": {
  3871. "type": "git",
  3872. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3873. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5"
  3874. },
  3875. "dist": {
  3876. "type": "zip",
  3877. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  3878. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  3879. "shasum": "",
  3880. "mirrors": [
  3881. {
  3882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3883. "preferred": true
  3884. }
  3885. ]
  3886. },
  3887. "require": {
  3888. "ext-ctype": "*",
  3889. "ext-dom": "*",
  3890. "ext-fileinfo": "*",
  3891. "ext-gd": "*",
  3892. "ext-iconv": "*",
  3893. "ext-libxml": "*",
  3894. "ext-mbstring": "*",
  3895. "ext-simplexml": "*",
  3896. "ext-xml": "*",
  3897. "ext-xmlreader": "*",
  3898. "ext-xmlwriter": "*",
  3899. "ext-zip": "*",
  3900. "ext-zlib": "*",
  3901. "ezyang/htmlpurifier": "^4.15",
  3902. "maennchen/zipstream-php": "^2.1",
  3903. "markbaker/complex": "^3.0",
  3904. "markbaker/matrix": "^3.0",
  3905. "php": "^7.3 || ^8.0",
  3906. "psr/http-client": "^1.0",
  3907. "psr/http-factory": "^1.0",
  3908. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3909. },
  3910. "require-dev": {
  3911. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3912. "dompdf/dompdf": "^1.0 || ^2.0",
  3913. "friendsofphp/php-cs-fixer": "^3.2",
  3914. "mitoteam/jpgraph": "10.2.4",
  3915. "mpdf/mpdf": "8.1.1",
  3916. "phpcompatibility/php-compatibility": "^9.3",
  3917. "phpstan/phpstan": "^1.1",
  3918. "phpstan/phpstan-phpunit": "^1.0",
  3919. "phpunit/phpunit": "^8.5 || ^9.0",
  3920. "squizlabs/php_codesniffer": "^3.7",
  3921. "tecnickcom/tcpdf": "6.5"
  3922. },
  3923. "suggest": {
  3924. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3925. "ext-intl": "PHP Internationalization Functions",
  3926. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3927. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3928. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3929. },
  3930. "type": "library",
  3931. "autoload": {
  3932. "psr-4": {
  3933. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3934. }
  3935. },
  3936. "notification-url": "https://packagist.org/downloads/",
  3937. "license": [
  3938. "MIT"
  3939. ],
  3940. "authors": [
  3941. {
  3942. "name": "Maarten Balliauw",
  3943. "homepage": "https://blog.maartenballiauw.be"
  3944. },
  3945. {
  3946. "name": "Mark Baker",
  3947. "homepage": "https://markbakeruk.net"
  3948. },
  3949. {
  3950. "name": "Franck Lefevre",
  3951. "homepage": "https://rootslabs.net"
  3952. },
  3953. {
  3954. "name": "Erik Tilt"
  3955. },
  3956. {
  3957. "name": "Adrien Crivelli"
  3958. }
  3959. ],
  3960. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3961. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3962. "keywords": [
  3963. "OpenXML",
  3964. "excel",
  3965. "gnumeric",
  3966. "ods",
  3967. "php",
  3968. "spreadsheet",
  3969. "xls",
  3970. "xlsx"
  3971. ],
  3972. "support": {
  3973. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3974. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.25.2"
  3975. },
  3976. "time": "2022-09-25T17:21:01+00:00"
  3977. },
  3978. {
  3979. "name": "phpoption/phpoption",
  3980. "version": "1.9.1",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://github.com/schmittjoh/php-option.git",
  3984. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3989. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3990. "shasum": "",
  3991. "mirrors": [
  3992. {
  3993. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3994. "preferred": true
  3995. }
  3996. ]
  3997. },
  3998. "require": {
  3999. "php": "^7.2.5 || ^8.0"
  4000. },
  4001. "require-dev": {
  4002. "bamarni/composer-bin-plugin": "^1.8.2",
  4003. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  4004. },
  4005. "type": "library",
  4006. "extra": {
  4007. "bamarni-bin": {
  4008. "bin-links": true,
  4009. "forward-command": true
  4010. },
  4011. "branch-alias": {
  4012. "dev-master": "1.9-dev"
  4013. }
  4014. },
  4015. "autoload": {
  4016. "psr-4": {
  4017. "PhpOption\\": "src/PhpOption/"
  4018. }
  4019. },
  4020. "notification-url": "https://packagist.org/downloads/",
  4021. "license": [
  4022. "Apache-2.0"
  4023. ],
  4024. "authors": [
  4025. {
  4026. "name": "Johannes M. Schmitt",
  4027. "email": "schmittjoh@gmail.com",
  4028. "homepage": "https://github.com/schmittjoh"
  4029. },
  4030. {
  4031. "name": "Graham Campbell",
  4032. "email": "hello@gjcampbell.co.uk",
  4033. "homepage": "https://github.com/GrahamCampbell"
  4034. }
  4035. ],
  4036. "description": "Option Type for PHP",
  4037. "keywords": [
  4038. "language",
  4039. "option",
  4040. "php",
  4041. "type"
  4042. ],
  4043. "support": {
  4044. "issues": "https://github.com/schmittjoh/php-option/issues",
  4045. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  4046. },
  4047. "funding": [
  4048. {
  4049. "url": "https://github.com/GrahamCampbell",
  4050. "type": "github"
  4051. },
  4052. {
  4053. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4054. "type": "tidelift"
  4055. }
  4056. ],
  4057. "time": "2023-02-25T19:38:58+00:00"
  4058. },
  4059. {
  4060. "name": "pimple/pimple",
  4061. "version": "v3.5.0",
  4062. "source": {
  4063. "type": "git",
  4064. "url": "https://github.com/silexphp/Pimple.git",
  4065. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  4066. },
  4067. "dist": {
  4068. "type": "zip",
  4069. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4070. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4071. "shasum": "",
  4072. "mirrors": [
  4073. {
  4074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4075. "preferred": true
  4076. }
  4077. ]
  4078. },
  4079. "require": {
  4080. "php": ">=7.2.5",
  4081. "psr/container": "^1.1 || ^2.0"
  4082. },
  4083. "require-dev": {
  4084. "symfony/phpunit-bridge": "^5.4@dev"
  4085. },
  4086. "type": "library",
  4087. "extra": {
  4088. "branch-alias": {
  4089. "dev-master": "3.4.x-dev"
  4090. }
  4091. },
  4092. "autoload": {
  4093. "psr-0": {
  4094. "Pimple": "src/"
  4095. }
  4096. },
  4097. "notification-url": "https://packagist.org/downloads/",
  4098. "license": [
  4099. "MIT"
  4100. ],
  4101. "authors": [
  4102. {
  4103. "name": "Fabien Potencier",
  4104. "email": "fabien@symfony.com"
  4105. }
  4106. ],
  4107. "description": "Pimple, a simple Dependency Injection Container",
  4108. "homepage": "https://pimple.symfony.com",
  4109. "keywords": [
  4110. "container",
  4111. "dependency injection"
  4112. ],
  4113. "support": {
  4114. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  4115. },
  4116. "time": "2021-10-28T11:13:42+00:00"
  4117. },
  4118. {
  4119. "name": "psr/cache",
  4120. "version": "1.0.1",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/php-fig/cache.git",
  4124. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4129. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4130. "shasum": "",
  4131. "mirrors": [
  4132. {
  4133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4134. "preferred": true
  4135. }
  4136. ]
  4137. },
  4138. "require": {
  4139. "php": ">=5.3.0"
  4140. },
  4141. "type": "library",
  4142. "extra": {
  4143. "branch-alias": {
  4144. "dev-master": "1.0.x-dev"
  4145. }
  4146. },
  4147. "autoload": {
  4148. "psr-4": {
  4149. "Psr\\Cache\\": "src/"
  4150. }
  4151. },
  4152. "notification-url": "https://packagist.org/downloads/",
  4153. "license": [
  4154. "MIT"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "PHP-FIG",
  4159. "homepage": "http://www.php-fig.org/"
  4160. }
  4161. ],
  4162. "description": "Common interface for caching libraries",
  4163. "keywords": [
  4164. "cache",
  4165. "psr",
  4166. "psr-6"
  4167. ],
  4168. "support": {
  4169. "source": "https://github.com/php-fig/cache/tree/master"
  4170. },
  4171. "time": "2016-08-06T20:24:11+00:00"
  4172. },
  4173. {
  4174. "name": "psr/container",
  4175. "version": "1.1.1",
  4176. "source": {
  4177. "type": "git",
  4178. "url": "https://github.com/php-fig/container.git",
  4179. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4180. },
  4181. "dist": {
  4182. "type": "zip",
  4183. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4184. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4185. "shasum": "",
  4186. "mirrors": [
  4187. {
  4188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4189. "preferred": true
  4190. }
  4191. ]
  4192. },
  4193. "require": {
  4194. "php": ">=7.2.0"
  4195. },
  4196. "type": "library",
  4197. "autoload": {
  4198. "psr-4": {
  4199. "Psr\\Container\\": "src/"
  4200. }
  4201. },
  4202. "notification-url": "https://packagist.org/downloads/",
  4203. "license": [
  4204. "MIT"
  4205. ],
  4206. "authors": [
  4207. {
  4208. "name": "PHP-FIG",
  4209. "homepage": "https://www.php-fig.org/"
  4210. }
  4211. ],
  4212. "description": "Common Container Interface (PHP FIG PSR-11)",
  4213. "homepage": "https://github.com/php-fig/container",
  4214. "keywords": [
  4215. "PSR-11",
  4216. "container",
  4217. "container-interface",
  4218. "container-interop",
  4219. "psr"
  4220. ],
  4221. "support": {
  4222. "issues": "https://github.com/php-fig/container/issues",
  4223. "source": "https://github.com/php-fig/container/tree/1.1.1"
  4224. },
  4225. "time": "2021-03-05T17:36:06+00:00"
  4226. },
  4227. {
  4228. "name": "psr/event-dispatcher",
  4229. "version": "1.0.0",
  4230. "source": {
  4231. "type": "git",
  4232. "url": "https://github.com/php-fig/event-dispatcher.git",
  4233. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4234. },
  4235. "dist": {
  4236. "type": "zip",
  4237. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4238. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4239. "shasum": "",
  4240. "mirrors": [
  4241. {
  4242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4243. "preferred": true
  4244. }
  4245. ]
  4246. },
  4247. "require": {
  4248. "php": ">=7.2.0"
  4249. },
  4250. "type": "library",
  4251. "extra": {
  4252. "branch-alias": {
  4253. "dev-master": "1.0.x-dev"
  4254. }
  4255. },
  4256. "autoload": {
  4257. "psr-4": {
  4258. "Psr\\EventDispatcher\\": "src/"
  4259. }
  4260. },
  4261. "notification-url": "https://packagist.org/downloads/",
  4262. "license": [
  4263. "MIT"
  4264. ],
  4265. "authors": [
  4266. {
  4267. "name": "PHP-FIG",
  4268. "homepage": "http://www.php-fig.org/"
  4269. }
  4270. ],
  4271. "description": "Standard interfaces for event handling.",
  4272. "keywords": [
  4273. "events",
  4274. "psr",
  4275. "psr-14"
  4276. ],
  4277. "support": {
  4278. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4279. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4280. },
  4281. "time": "2019-01-08T18:20:26+00:00"
  4282. },
  4283. {
  4284. "name": "psr/http-client",
  4285. "version": "1.0.1",
  4286. "source": {
  4287. "type": "git",
  4288. "url": "https://github.com/php-fig/http-client.git",
  4289. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4290. },
  4291. "dist": {
  4292. "type": "zip",
  4293. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4294. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4295. "shasum": "",
  4296. "mirrors": [
  4297. {
  4298. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4299. "preferred": true
  4300. }
  4301. ]
  4302. },
  4303. "require": {
  4304. "php": "^7.0 || ^8.0",
  4305. "psr/http-message": "^1.0"
  4306. },
  4307. "type": "library",
  4308. "extra": {
  4309. "branch-alias": {
  4310. "dev-master": "1.0.x-dev"
  4311. }
  4312. },
  4313. "autoload": {
  4314. "psr-4": {
  4315. "Psr\\Http\\Client\\": "src/"
  4316. }
  4317. },
  4318. "notification-url": "https://packagist.org/downloads/",
  4319. "license": [
  4320. "MIT"
  4321. ],
  4322. "authors": [
  4323. {
  4324. "name": "PHP-FIG",
  4325. "homepage": "http://www.php-fig.org/"
  4326. }
  4327. ],
  4328. "description": "Common interface for HTTP clients",
  4329. "homepage": "https://github.com/php-fig/http-client",
  4330. "keywords": [
  4331. "http",
  4332. "http-client",
  4333. "psr",
  4334. "psr-18"
  4335. ],
  4336. "support": {
  4337. "source": "https://github.com/php-fig/http-client/tree/master"
  4338. },
  4339. "time": "2020-06-29T06:28:15+00:00"
  4340. },
  4341. {
  4342. "name": "psr/http-factory",
  4343. "version": "1.0.1",
  4344. "source": {
  4345. "type": "git",
  4346. "url": "https://github.com/php-fig/http-factory.git",
  4347. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4348. },
  4349. "dist": {
  4350. "type": "zip",
  4351. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4352. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4353. "shasum": "",
  4354. "mirrors": [
  4355. {
  4356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4357. "preferred": true
  4358. }
  4359. ]
  4360. },
  4361. "require": {
  4362. "php": ">=7.0.0",
  4363. "psr/http-message": "^1.0"
  4364. },
  4365. "type": "library",
  4366. "extra": {
  4367. "branch-alias": {
  4368. "dev-master": "1.0.x-dev"
  4369. }
  4370. },
  4371. "autoload": {
  4372. "psr-4": {
  4373. "Psr\\Http\\Message\\": "src/"
  4374. }
  4375. },
  4376. "notification-url": "https://packagist.org/downloads/",
  4377. "license": [
  4378. "MIT"
  4379. ],
  4380. "authors": [
  4381. {
  4382. "name": "PHP-FIG",
  4383. "homepage": "http://www.php-fig.org/"
  4384. }
  4385. ],
  4386. "description": "Common interfaces for PSR-7 HTTP message factories",
  4387. "keywords": [
  4388. "factory",
  4389. "http",
  4390. "message",
  4391. "psr",
  4392. "psr-17",
  4393. "psr-7",
  4394. "request",
  4395. "response"
  4396. ],
  4397. "support": {
  4398. "source": "https://github.com/php-fig/http-factory/tree/master"
  4399. },
  4400. "time": "2019-04-30T12:38:16+00:00"
  4401. },
  4402. {
  4403. "name": "psr/http-message",
  4404. "version": "1.0.1",
  4405. "source": {
  4406. "type": "git",
  4407. "url": "https://github.com/php-fig/http-message.git",
  4408. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4409. },
  4410. "dist": {
  4411. "type": "zip",
  4412. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4413. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4414. "shasum": "",
  4415. "mirrors": [
  4416. {
  4417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4418. "preferred": true
  4419. }
  4420. ]
  4421. },
  4422. "require": {
  4423. "php": ">=5.3.0"
  4424. },
  4425. "type": "library",
  4426. "extra": {
  4427. "branch-alias": {
  4428. "dev-master": "1.0.x-dev"
  4429. }
  4430. },
  4431. "autoload": {
  4432. "psr-4": {
  4433. "Psr\\Http\\Message\\": "src/"
  4434. }
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "MIT"
  4439. ],
  4440. "authors": [
  4441. {
  4442. "name": "PHP-FIG",
  4443. "homepage": "http://www.php-fig.org/"
  4444. }
  4445. ],
  4446. "description": "Common interface for HTTP messages",
  4447. "homepage": "https://github.com/php-fig/http-message",
  4448. "keywords": [
  4449. "http",
  4450. "http-message",
  4451. "psr",
  4452. "psr-7",
  4453. "request",
  4454. "response"
  4455. ],
  4456. "support": {
  4457. "source": "https://github.com/php-fig/http-message/tree/master"
  4458. },
  4459. "time": "2016-08-06T14:39:51+00:00"
  4460. },
  4461. {
  4462. "name": "psr/log",
  4463. "version": "1.1.4",
  4464. "source": {
  4465. "type": "git",
  4466. "url": "https://github.com/php-fig/log.git",
  4467. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4468. },
  4469. "dist": {
  4470. "type": "zip",
  4471. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4472. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4473. "shasum": "",
  4474. "mirrors": [
  4475. {
  4476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4477. "preferred": true
  4478. }
  4479. ]
  4480. },
  4481. "require": {
  4482. "php": ">=5.3.0"
  4483. },
  4484. "type": "library",
  4485. "extra": {
  4486. "branch-alias": {
  4487. "dev-master": "1.1.x-dev"
  4488. }
  4489. },
  4490. "autoload": {
  4491. "psr-4": {
  4492. "Psr\\Log\\": "Psr/Log/"
  4493. }
  4494. },
  4495. "notification-url": "https://packagist.org/downloads/",
  4496. "license": [
  4497. "MIT"
  4498. ],
  4499. "authors": [
  4500. {
  4501. "name": "PHP-FIG",
  4502. "homepage": "https://www.php-fig.org/"
  4503. }
  4504. ],
  4505. "description": "Common interface for logging libraries",
  4506. "homepage": "https://github.com/php-fig/log",
  4507. "keywords": [
  4508. "log",
  4509. "psr",
  4510. "psr-3"
  4511. ],
  4512. "support": {
  4513. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4514. },
  4515. "time": "2021-05-03T11:20:27+00:00"
  4516. },
  4517. {
  4518. "name": "psr/simple-cache",
  4519. "version": "1.0.1",
  4520. "source": {
  4521. "type": "git",
  4522. "url": "https://github.com/php-fig/simple-cache.git",
  4523. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4524. },
  4525. "dist": {
  4526. "type": "zip",
  4527. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4528. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4529. "shasum": "",
  4530. "mirrors": [
  4531. {
  4532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4533. "preferred": true
  4534. }
  4535. ]
  4536. },
  4537. "require": {
  4538. "php": ">=5.3.0"
  4539. },
  4540. "type": "library",
  4541. "extra": {
  4542. "branch-alias": {
  4543. "dev-master": "1.0.x-dev"
  4544. }
  4545. },
  4546. "autoload": {
  4547. "psr-4": {
  4548. "Psr\\SimpleCache\\": "src/"
  4549. }
  4550. },
  4551. "notification-url": "https://packagist.org/downloads/",
  4552. "license": [
  4553. "MIT"
  4554. ],
  4555. "authors": [
  4556. {
  4557. "name": "PHP-FIG",
  4558. "homepage": "http://www.php-fig.org/"
  4559. }
  4560. ],
  4561. "description": "Common interfaces for simple caching",
  4562. "keywords": [
  4563. "cache",
  4564. "caching",
  4565. "psr",
  4566. "psr-16",
  4567. "simple-cache"
  4568. ],
  4569. "support": {
  4570. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4571. },
  4572. "time": "2017-10-23T01:57:42+00:00"
  4573. },
  4574. {
  4575. "name": "psy/psysh",
  4576. "version": "v0.11.11",
  4577. "source": {
  4578. "type": "git",
  4579. "url": "https://github.com/bobthecow/psysh.git",
  4580. "reference": "ba67f2d26278ec9266a5cfe0acba33a8ca1277ae"
  4581. },
  4582. "dist": {
  4583. "type": "zip",
  4584. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/ba67f2d26278ec9266a5cfe0acba33a8ca1277ae",
  4585. "reference": "ba67f2d26278ec9266a5cfe0acba33a8ca1277ae",
  4586. "shasum": "",
  4587. "mirrors": [
  4588. {
  4589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4590. "preferred": true
  4591. }
  4592. ]
  4593. },
  4594. "require": {
  4595. "ext-json": "*",
  4596. "ext-tokenizer": "*",
  4597. "nikic/php-parser": "^4.0 || ^3.1",
  4598. "php": "^8.0 || ^7.0.8",
  4599. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4600. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4601. },
  4602. "conflict": {
  4603. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4604. },
  4605. "require-dev": {
  4606. "bamarni/composer-bin-plugin": "^1.2"
  4607. },
  4608. "suggest": {
  4609. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4610. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4611. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4612. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4613. },
  4614. "bin": [
  4615. "bin/psysh"
  4616. ],
  4617. "type": "library",
  4618. "extra": {
  4619. "branch-alias": {
  4620. "dev-main": "0.11.x-dev"
  4621. }
  4622. },
  4623. "autoload": {
  4624. "files": [
  4625. "src/functions.php"
  4626. ],
  4627. "psr-4": {
  4628. "Psy\\": "src/"
  4629. }
  4630. },
  4631. "notification-url": "https://packagist.org/downloads/",
  4632. "license": [
  4633. "MIT"
  4634. ],
  4635. "authors": [
  4636. {
  4637. "name": "Justin Hileman",
  4638. "email": "justin@justinhileman.info",
  4639. "homepage": "http://justinhileman.com"
  4640. }
  4641. ],
  4642. "description": "An interactive shell for modern PHP.",
  4643. "homepage": "http://psysh.org",
  4644. "keywords": [
  4645. "REPL",
  4646. "console",
  4647. "interactive",
  4648. "shell"
  4649. ],
  4650. "support": {
  4651. "issues": "https://github.com/bobthecow/psysh/issues",
  4652. "source": "https://github.com/bobthecow/psysh/tree/v0.11.11"
  4653. },
  4654. "time": "2023-01-23T16:14:59+00:00"
  4655. },
  4656. {
  4657. "name": "qiniu/php-sdk",
  4658. "version": "v7.7.0",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://github.com/qiniu/php-sdk.git",
  4662. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  4667. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  4668. "shasum": "",
  4669. "mirrors": [
  4670. {
  4671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4672. "preferred": true
  4673. }
  4674. ]
  4675. },
  4676. "require": {
  4677. "myclabs/php-enum": "1.6.6",
  4678. "php": ">=5.3.3"
  4679. },
  4680. "require-dev": {
  4681. "paragonie/random_compat": ">=2",
  4682. "phpunit/phpunit": "~4.0",
  4683. "squizlabs/php_codesniffer": "~3.6"
  4684. },
  4685. "type": "library",
  4686. "autoload": {
  4687. "files": [
  4688. "src/Qiniu/functions.php"
  4689. ],
  4690. "psr-4": {
  4691. "Qiniu\\": "src/Qiniu"
  4692. }
  4693. },
  4694. "notification-url": "https://packagist.org/downloads/",
  4695. "license": [
  4696. "MIT"
  4697. ],
  4698. "authors": [
  4699. {
  4700. "name": "Qiniu",
  4701. "email": "sdk@qiniu.com",
  4702. "homepage": "http://www.qiniu.com"
  4703. }
  4704. ],
  4705. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  4706. "homepage": "http://developer.qiniu.com/",
  4707. "keywords": [
  4708. "cloud",
  4709. "qiniu",
  4710. "sdk",
  4711. "storage"
  4712. ],
  4713. "support": {
  4714. "issues": "https://github.com/qiniu/php-sdk/issues",
  4715. "source": "https://github.com/qiniu/php-sdk/tree/v7.7.0"
  4716. },
  4717. "time": "2022-09-02T10:53:05+00:00"
  4718. },
  4719. {
  4720. "name": "ralouphie/getallheaders",
  4721. "version": "3.0.3",
  4722. "source": {
  4723. "type": "git",
  4724. "url": "https://github.com/ralouphie/getallheaders.git",
  4725. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4726. },
  4727. "dist": {
  4728. "type": "zip",
  4729. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4730. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4731. "shasum": "",
  4732. "mirrors": [
  4733. {
  4734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4735. "preferred": true
  4736. }
  4737. ]
  4738. },
  4739. "require": {
  4740. "php": ">=5.6"
  4741. },
  4742. "require-dev": {
  4743. "php-coveralls/php-coveralls": "^2.1",
  4744. "phpunit/phpunit": "^5 || ^6.5"
  4745. },
  4746. "type": "library",
  4747. "autoload": {
  4748. "files": [
  4749. "src/getallheaders.php"
  4750. ]
  4751. },
  4752. "notification-url": "https://packagist.org/downloads/",
  4753. "license": [
  4754. "MIT"
  4755. ],
  4756. "authors": [
  4757. {
  4758. "name": "Ralph Khattar",
  4759. "email": "ralph.khattar@gmail.com"
  4760. }
  4761. ],
  4762. "description": "A polyfill for getallheaders.",
  4763. "support": {
  4764. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4765. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4766. },
  4767. "time": "2019-03-08T08:55:37+00:00"
  4768. },
  4769. {
  4770. "name": "ramsey/collection",
  4771. "version": "1.2.2",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://github.com/ramsey/collection.git",
  4775. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4780. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4781. "shasum": "",
  4782. "mirrors": [
  4783. {
  4784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4785. "preferred": true
  4786. }
  4787. ]
  4788. },
  4789. "require": {
  4790. "php": "^7.3 || ^8",
  4791. "symfony/polyfill-php81": "^1.23"
  4792. },
  4793. "require-dev": {
  4794. "captainhook/captainhook": "^5.3",
  4795. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4796. "ergebnis/composer-normalize": "^2.6",
  4797. "fakerphp/faker": "^1.5",
  4798. "hamcrest/hamcrest-php": "^2",
  4799. "jangregor/phpstan-prophecy": "^0.8",
  4800. "mockery/mockery": "^1.3",
  4801. "phpspec/prophecy-phpunit": "^2.0",
  4802. "phpstan/extension-installer": "^1",
  4803. "phpstan/phpstan": "^0.12.32",
  4804. "phpstan/phpstan-mockery": "^0.12.5",
  4805. "phpstan/phpstan-phpunit": "^0.12.11",
  4806. "phpunit/phpunit": "^8.5 || ^9",
  4807. "psy/psysh": "^0.10.4",
  4808. "slevomat/coding-standard": "^6.3",
  4809. "squizlabs/php_codesniffer": "^3.5",
  4810. "vimeo/psalm": "^4.4"
  4811. },
  4812. "type": "library",
  4813. "autoload": {
  4814. "psr-4": {
  4815. "Ramsey\\Collection\\": "src/"
  4816. }
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "MIT"
  4821. ],
  4822. "authors": [
  4823. {
  4824. "name": "Ben Ramsey",
  4825. "email": "ben@benramsey.com",
  4826. "homepage": "https://benramsey.com"
  4827. }
  4828. ],
  4829. "description": "A PHP library for representing and manipulating collections.",
  4830. "keywords": [
  4831. "array",
  4832. "collection",
  4833. "hash",
  4834. "map",
  4835. "queue",
  4836. "set"
  4837. ],
  4838. "support": {
  4839. "issues": "https://github.com/ramsey/collection/issues",
  4840. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  4841. },
  4842. "funding": [
  4843. {
  4844. "url": "https://github.com/ramsey",
  4845. "type": "github"
  4846. },
  4847. {
  4848. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4849. "type": "tidelift"
  4850. }
  4851. ],
  4852. "time": "2021-10-10T03:01:02+00:00"
  4853. },
  4854. {
  4855. "name": "ramsey/uuid",
  4856. "version": "4.2.3",
  4857. "source": {
  4858. "type": "git",
  4859. "url": "https://github.com/ramsey/uuid.git",
  4860. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4861. },
  4862. "dist": {
  4863. "type": "zip",
  4864. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4865. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4866. "shasum": "",
  4867. "mirrors": [
  4868. {
  4869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4870. "preferred": true
  4871. }
  4872. ]
  4873. },
  4874. "require": {
  4875. "brick/math": "^0.8 || ^0.9",
  4876. "ext-json": "*",
  4877. "php": "^7.2 || ^8.0",
  4878. "ramsey/collection": "^1.0",
  4879. "symfony/polyfill-ctype": "^1.8",
  4880. "symfony/polyfill-php80": "^1.14"
  4881. },
  4882. "replace": {
  4883. "rhumsaa/uuid": "self.version"
  4884. },
  4885. "require-dev": {
  4886. "captainhook/captainhook": "^5.10",
  4887. "captainhook/plugin-composer": "^5.3",
  4888. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4889. "doctrine/annotations": "^1.8",
  4890. "ergebnis/composer-normalize": "^2.15",
  4891. "mockery/mockery": "^1.3",
  4892. "moontoast/math": "^1.1",
  4893. "paragonie/random-lib": "^2",
  4894. "php-mock/php-mock": "^2.2",
  4895. "php-mock/php-mock-mockery": "^1.3",
  4896. "php-parallel-lint/php-parallel-lint": "^1.1",
  4897. "phpbench/phpbench": "^1.0",
  4898. "phpstan/extension-installer": "^1.0",
  4899. "phpstan/phpstan": "^0.12",
  4900. "phpstan/phpstan-mockery": "^0.12",
  4901. "phpstan/phpstan-phpunit": "^0.12",
  4902. "phpunit/phpunit": "^8.5 || ^9",
  4903. "slevomat/coding-standard": "^7.0",
  4904. "squizlabs/php_codesniffer": "^3.5",
  4905. "vimeo/psalm": "^4.9"
  4906. },
  4907. "suggest": {
  4908. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4909. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4910. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4911. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4912. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4913. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4914. },
  4915. "type": "library",
  4916. "extra": {
  4917. "branch-alias": {
  4918. "dev-main": "4.x-dev"
  4919. },
  4920. "captainhook": {
  4921. "force-install": true
  4922. }
  4923. },
  4924. "autoload": {
  4925. "files": [
  4926. "src/functions.php"
  4927. ],
  4928. "psr-4": {
  4929. "Ramsey\\Uuid\\": "src/"
  4930. }
  4931. },
  4932. "notification-url": "https://packagist.org/downloads/",
  4933. "license": [
  4934. "MIT"
  4935. ],
  4936. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4937. "keywords": [
  4938. "guid",
  4939. "identifier",
  4940. "uuid"
  4941. ],
  4942. "support": {
  4943. "issues": "https://github.com/ramsey/uuid/issues",
  4944. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4945. },
  4946. "funding": [
  4947. {
  4948. "url": "https://github.com/ramsey",
  4949. "type": "github"
  4950. },
  4951. {
  4952. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4953. "type": "tidelift"
  4954. }
  4955. ],
  4956. "time": "2021-09-25T23:10:38+00:00"
  4957. },
  4958. {
  4959. "name": "rap2hpoutre/fast-excel",
  4960. "version": "v3.2.0",
  4961. "source": {
  4962. "type": "git",
  4963. "url": "https://github.com/rap2hpoutre/fast-excel.git",
  4964. "reference": "28183f3a90179386bfadcd0083129c247ce49fbe"
  4965. },
  4966. "dist": {
  4967. "type": "zip",
  4968. "url": "https://api.github.com/repos/rap2hpoutre/fast-excel/zipball/28183f3a90179386bfadcd0083129c247ce49fbe",
  4969. "reference": "28183f3a90179386bfadcd0083129c247ce49fbe",
  4970. "shasum": "",
  4971. "mirrors": [
  4972. {
  4973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4974. "preferred": true
  4975. }
  4976. ]
  4977. },
  4978. "require": {
  4979. "box/spout": "^3",
  4980. "illuminate/support": "5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0|^9.0",
  4981. "php": "^7.1|^8.0"
  4982. },
  4983. "require-dev": {
  4984. "illuminate/database": "^6.20.12 || ^7.30.4 || ^8.24.0|^9.0",
  4985. "phpunit/phpunit": "^9.5"
  4986. },
  4987. "type": "library",
  4988. "extra": {
  4989. "laravel": {
  4990. "providers": [
  4991. "Rap2hpoutre\\FastExcel\\Providers\\FastExcelServiceProvider"
  4992. ]
  4993. }
  4994. },
  4995. "autoload": {
  4996. "files": [
  4997. "src/functions/fastexcel.php"
  4998. ],
  4999. "psr-4": {
  5000. "Rap2hpoutre\\FastExcel\\": "src/"
  5001. }
  5002. },
  5003. "notification-url": "https://packagist.org/downloads/",
  5004. "license": [
  5005. "MIT"
  5006. ],
  5007. "authors": [
  5008. {
  5009. "name": "rap2h",
  5010. "email": "raphaelht@gmail.com"
  5011. }
  5012. ],
  5013. "description": "Fast Excel import/export for Laravel",
  5014. "keywords": [
  5015. "csv",
  5016. "excel",
  5017. "laravel",
  5018. "xls",
  5019. "xlsx"
  5020. ],
  5021. "support": {
  5022. "issues": "https://github.com/rap2hpoutre/fast-excel/issues",
  5023. "source": "https://github.com/rap2hpoutre/fast-excel/tree/v3.2.0"
  5024. },
  5025. "time": "2022-02-09T16:04:44+00:00"
  5026. },
  5027. {
  5028. "name": "swiftmailer/swiftmailer",
  5029. "version": "v6.3.0",
  5030. "source": {
  5031. "type": "git",
  5032. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5033. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5034. },
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5038. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5039. "shasum": "",
  5040. "mirrors": [
  5041. {
  5042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5043. "preferred": true
  5044. }
  5045. ]
  5046. },
  5047. "require": {
  5048. "egulias/email-validator": "^2.0|^3.1",
  5049. "php": ">=7.0.0",
  5050. "symfony/polyfill-iconv": "^1.0",
  5051. "symfony/polyfill-intl-idn": "^1.10",
  5052. "symfony/polyfill-mbstring": "^1.0"
  5053. },
  5054. "require-dev": {
  5055. "mockery/mockery": "^1.0",
  5056. "symfony/phpunit-bridge": "^4.4|^5.4"
  5057. },
  5058. "suggest": {
  5059. "ext-intl": "Needed to support internationalized email addresses"
  5060. },
  5061. "type": "library",
  5062. "extra": {
  5063. "branch-alias": {
  5064. "dev-master": "6.2-dev"
  5065. }
  5066. },
  5067. "autoload": {
  5068. "files": [
  5069. "lib/swift_required.php"
  5070. ]
  5071. },
  5072. "notification-url": "https://packagist.org/downloads/",
  5073. "license": [
  5074. "MIT"
  5075. ],
  5076. "authors": [
  5077. {
  5078. "name": "Chris Corbyn"
  5079. },
  5080. {
  5081. "name": "Fabien Potencier",
  5082. "email": "fabien@symfony.com"
  5083. }
  5084. ],
  5085. "description": "Swiftmailer, free feature-rich PHP mailer",
  5086. "homepage": "https://swiftmailer.symfony.com",
  5087. "keywords": [
  5088. "email",
  5089. "mail",
  5090. "mailer"
  5091. ],
  5092. "support": {
  5093. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5094. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5095. },
  5096. "funding": [
  5097. {
  5098. "url": "https://github.com/fabpot",
  5099. "type": "github"
  5100. },
  5101. {
  5102. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5103. "type": "tidelift"
  5104. }
  5105. ],
  5106. "abandoned": "symfony/mailer",
  5107. "time": "2021-10-18T15:26:12+00:00"
  5108. },
  5109. {
  5110. "name": "symfony/cache",
  5111. "version": "v5.4.21",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://github.com/symfony/cache.git",
  5115. "reference": "32cab695bf99c63aff7d27ac67919944c00530ed"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://api.github.com/repos/symfony/cache/zipball/32cab695bf99c63aff7d27ac67919944c00530ed",
  5120. "reference": "32cab695bf99c63aff7d27ac67919944c00530ed",
  5121. "shasum": "",
  5122. "mirrors": [
  5123. {
  5124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5125. "preferred": true
  5126. }
  5127. ]
  5128. },
  5129. "require": {
  5130. "php": ">=7.2.5",
  5131. "psr/cache": "^1.0|^2.0",
  5132. "psr/log": "^1.1|^2|^3",
  5133. "symfony/cache-contracts": "^1.1.7|^2",
  5134. "symfony/deprecation-contracts": "^2.1|^3",
  5135. "symfony/polyfill-php73": "^1.9",
  5136. "symfony/polyfill-php80": "^1.16",
  5137. "symfony/service-contracts": "^1.1|^2|^3",
  5138. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  5139. },
  5140. "conflict": {
  5141. "doctrine/dbal": "<2.13.1",
  5142. "symfony/dependency-injection": "<4.4",
  5143. "symfony/http-kernel": "<4.4",
  5144. "symfony/var-dumper": "<4.4"
  5145. },
  5146. "provide": {
  5147. "psr/cache-implementation": "1.0|2.0",
  5148. "psr/simple-cache-implementation": "1.0|2.0",
  5149. "symfony/cache-implementation": "1.0|2.0"
  5150. },
  5151. "require-dev": {
  5152. "cache/integration-tests": "dev-master",
  5153. "doctrine/cache": "^1.6|^2.0",
  5154. "doctrine/dbal": "^2.13.1|^3.0",
  5155. "predis/predis": "^1.1",
  5156. "psr/simple-cache": "^1.0|^2.0",
  5157. "symfony/config": "^4.4|^5.0|^6.0",
  5158. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5159. "symfony/filesystem": "^4.4|^5.0|^6.0",
  5160. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5161. "symfony/messenger": "^4.4|^5.0|^6.0",
  5162. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5163. },
  5164. "type": "library",
  5165. "autoload": {
  5166. "psr-4": {
  5167. "Symfony\\Component\\Cache\\": ""
  5168. },
  5169. "exclude-from-classmap": [
  5170. "/Tests/"
  5171. ]
  5172. },
  5173. "notification-url": "https://packagist.org/downloads/",
  5174. "license": [
  5175. "MIT"
  5176. ],
  5177. "authors": [
  5178. {
  5179. "name": "Nicolas Grekas",
  5180. "email": "p@tchwork.com"
  5181. },
  5182. {
  5183. "name": "Symfony Community",
  5184. "homepage": "https://symfony.com/contributors"
  5185. }
  5186. ],
  5187. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5188. "homepage": "https://symfony.com",
  5189. "keywords": [
  5190. "caching",
  5191. "psr6"
  5192. ],
  5193. "support": {
  5194. "source": "https://github.com/symfony/cache/tree/v5.4.21"
  5195. },
  5196. "funding": [
  5197. {
  5198. "url": "https://symfony.com/sponsor",
  5199. "type": "custom"
  5200. },
  5201. {
  5202. "url": "https://github.com/fabpot",
  5203. "type": "github"
  5204. },
  5205. {
  5206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5207. "type": "tidelift"
  5208. }
  5209. ],
  5210. "time": "2023-02-21T12:11:13+00:00"
  5211. },
  5212. {
  5213. "name": "symfony/cache-contracts",
  5214. "version": "v2.5.2",
  5215. "source": {
  5216. "type": "git",
  5217. "url": "https://github.com/symfony/cache-contracts.git",
  5218. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  5219. },
  5220. "dist": {
  5221. "type": "zip",
  5222. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  5223. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  5224. "shasum": "",
  5225. "mirrors": [
  5226. {
  5227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5228. "preferred": true
  5229. }
  5230. ]
  5231. },
  5232. "require": {
  5233. "php": ">=7.2.5",
  5234. "psr/cache": "^1.0|^2.0|^3.0"
  5235. },
  5236. "suggest": {
  5237. "symfony/cache-implementation": ""
  5238. },
  5239. "type": "library",
  5240. "extra": {
  5241. "branch-alias": {
  5242. "dev-main": "2.5-dev"
  5243. },
  5244. "thanks": {
  5245. "name": "symfony/contracts",
  5246. "url": "https://github.com/symfony/contracts"
  5247. }
  5248. },
  5249. "autoload": {
  5250. "psr-4": {
  5251. "Symfony\\Contracts\\Cache\\": ""
  5252. }
  5253. },
  5254. "notification-url": "https://packagist.org/downloads/",
  5255. "license": [
  5256. "MIT"
  5257. ],
  5258. "authors": [
  5259. {
  5260. "name": "Nicolas Grekas",
  5261. "email": "p@tchwork.com"
  5262. },
  5263. {
  5264. "name": "Symfony Community",
  5265. "homepage": "https://symfony.com/contributors"
  5266. }
  5267. ],
  5268. "description": "Generic abstractions related to caching",
  5269. "homepage": "https://symfony.com",
  5270. "keywords": [
  5271. "abstractions",
  5272. "contracts",
  5273. "decoupling",
  5274. "interfaces",
  5275. "interoperability",
  5276. "standards"
  5277. ],
  5278. "support": {
  5279. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  5280. },
  5281. "funding": [
  5282. {
  5283. "url": "https://symfony.com/sponsor",
  5284. "type": "custom"
  5285. },
  5286. {
  5287. "url": "https://github.com/fabpot",
  5288. "type": "github"
  5289. },
  5290. {
  5291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5292. "type": "tidelift"
  5293. }
  5294. ],
  5295. "time": "2022-01-02T09:53:40+00:00"
  5296. },
  5297. {
  5298. "name": "symfony/console",
  5299. "version": "v5.4.21",
  5300. "source": {
  5301. "type": "git",
  5302. "url": "https://github.com/symfony/console.git",
  5303. "reference": "c77433ddc6cdc689caf48065d9ea22ca0853fbd9"
  5304. },
  5305. "dist": {
  5306. "type": "zip",
  5307. "url": "https://api.github.com/repos/symfony/console/zipball/c77433ddc6cdc689caf48065d9ea22ca0853fbd9",
  5308. "reference": "c77433ddc6cdc689caf48065d9ea22ca0853fbd9",
  5309. "shasum": "",
  5310. "mirrors": [
  5311. {
  5312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5313. "preferred": true
  5314. }
  5315. ]
  5316. },
  5317. "require": {
  5318. "php": ">=7.2.5",
  5319. "symfony/deprecation-contracts": "^2.1|^3",
  5320. "symfony/polyfill-mbstring": "~1.0",
  5321. "symfony/polyfill-php73": "^1.9",
  5322. "symfony/polyfill-php80": "^1.16",
  5323. "symfony/service-contracts": "^1.1|^2|^3",
  5324. "symfony/string": "^5.1|^6.0"
  5325. },
  5326. "conflict": {
  5327. "psr/log": ">=3",
  5328. "symfony/dependency-injection": "<4.4",
  5329. "symfony/dotenv": "<5.1",
  5330. "symfony/event-dispatcher": "<4.4",
  5331. "symfony/lock": "<4.4",
  5332. "symfony/process": "<4.4"
  5333. },
  5334. "provide": {
  5335. "psr/log-implementation": "1.0|2.0"
  5336. },
  5337. "require-dev": {
  5338. "psr/log": "^1|^2",
  5339. "symfony/config": "^4.4|^5.0|^6.0",
  5340. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5341. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5342. "symfony/lock": "^4.4|^5.0|^6.0",
  5343. "symfony/process": "^4.4|^5.0|^6.0",
  5344. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5345. },
  5346. "suggest": {
  5347. "psr/log": "For using the console logger",
  5348. "symfony/event-dispatcher": "",
  5349. "symfony/lock": "",
  5350. "symfony/process": ""
  5351. },
  5352. "type": "library",
  5353. "autoload": {
  5354. "psr-4": {
  5355. "Symfony\\Component\\Console\\": ""
  5356. },
  5357. "exclude-from-classmap": [
  5358. "/Tests/"
  5359. ]
  5360. },
  5361. "notification-url": "https://packagist.org/downloads/",
  5362. "license": [
  5363. "MIT"
  5364. ],
  5365. "authors": [
  5366. {
  5367. "name": "Fabien Potencier",
  5368. "email": "fabien@symfony.com"
  5369. },
  5370. {
  5371. "name": "Symfony Community",
  5372. "homepage": "https://symfony.com/contributors"
  5373. }
  5374. ],
  5375. "description": "Eases the creation of beautiful and testable command line interfaces",
  5376. "homepage": "https://symfony.com",
  5377. "keywords": [
  5378. "cli",
  5379. "command line",
  5380. "console",
  5381. "terminal"
  5382. ],
  5383. "support": {
  5384. "source": "https://github.com/symfony/console/tree/v5.4.21"
  5385. },
  5386. "funding": [
  5387. {
  5388. "url": "https://symfony.com/sponsor",
  5389. "type": "custom"
  5390. },
  5391. {
  5392. "url": "https://github.com/fabpot",
  5393. "type": "github"
  5394. },
  5395. {
  5396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5397. "type": "tidelift"
  5398. }
  5399. ],
  5400. "time": "2023-02-25T16:59:41+00:00"
  5401. },
  5402. {
  5403. "name": "symfony/css-selector",
  5404. "version": "v5.4.21",
  5405. "source": {
  5406. "type": "git",
  5407. "url": "https://github.com/symfony/css-selector.git",
  5408. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d"
  5409. },
  5410. "dist": {
  5411. "type": "zip",
  5412. "url": "https://api.github.com/repos/symfony/css-selector/zipball/95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  5413. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  5414. "shasum": "",
  5415. "mirrors": [
  5416. {
  5417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5418. "preferred": true
  5419. }
  5420. ]
  5421. },
  5422. "require": {
  5423. "php": ">=7.2.5",
  5424. "symfony/polyfill-php80": "^1.16"
  5425. },
  5426. "type": "library",
  5427. "autoload": {
  5428. "psr-4": {
  5429. "Symfony\\Component\\CssSelector\\": ""
  5430. },
  5431. "exclude-from-classmap": [
  5432. "/Tests/"
  5433. ]
  5434. },
  5435. "notification-url": "https://packagist.org/downloads/",
  5436. "license": [
  5437. "MIT"
  5438. ],
  5439. "authors": [
  5440. {
  5441. "name": "Fabien Potencier",
  5442. "email": "fabien@symfony.com"
  5443. },
  5444. {
  5445. "name": "Jean-François Simon",
  5446. "email": "jeanfrancois.simon@sensiolabs.com"
  5447. },
  5448. {
  5449. "name": "Symfony Community",
  5450. "homepage": "https://symfony.com/contributors"
  5451. }
  5452. ],
  5453. "description": "Converts CSS selectors to XPath expressions",
  5454. "homepage": "https://symfony.com",
  5455. "support": {
  5456. "source": "https://github.com/symfony/css-selector/tree/v5.4.21"
  5457. },
  5458. "funding": [
  5459. {
  5460. "url": "https://symfony.com/sponsor",
  5461. "type": "custom"
  5462. },
  5463. {
  5464. "url": "https://github.com/fabpot",
  5465. "type": "github"
  5466. },
  5467. {
  5468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5469. "type": "tidelift"
  5470. }
  5471. ],
  5472. "time": "2023-02-14T08:03:56+00:00"
  5473. },
  5474. {
  5475. "name": "symfony/deprecation-contracts",
  5476. "version": "v2.5.2",
  5477. "source": {
  5478. "type": "git",
  5479. "url": "https://github.com/symfony/deprecation-contracts.git",
  5480. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5481. },
  5482. "dist": {
  5483. "type": "zip",
  5484. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5485. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5486. "shasum": "",
  5487. "mirrors": [
  5488. {
  5489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5490. "preferred": true
  5491. }
  5492. ]
  5493. },
  5494. "require": {
  5495. "php": ">=7.1"
  5496. },
  5497. "type": "library",
  5498. "extra": {
  5499. "branch-alias": {
  5500. "dev-main": "2.5-dev"
  5501. },
  5502. "thanks": {
  5503. "name": "symfony/contracts",
  5504. "url": "https://github.com/symfony/contracts"
  5505. }
  5506. },
  5507. "autoload": {
  5508. "files": [
  5509. "function.php"
  5510. ]
  5511. },
  5512. "notification-url": "https://packagist.org/downloads/",
  5513. "license": [
  5514. "MIT"
  5515. ],
  5516. "authors": [
  5517. {
  5518. "name": "Nicolas Grekas",
  5519. "email": "p@tchwork.com"
  5520. },
  5521. {
  5522. "name": "Symfony Community",
  5523. "homepage": "https://symfony.com/contributors"
  5524. }
  5525. ],
  5526. "description": "A generic function and convention to trigger deprecation notices",
  5527. "homepage": "https://symfony.com",
  5528. "support": {
  5529. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  5530. },
  5531. "funding": [
  5532. {
  5533. "url": "https://symfony.com/sponsor",
  5534. "type": "custom"
  5535. },
  5536. {
  5537. "url": "https://github.com/fabpot",
  5538. "type": "github"
  5539. },
  5540. {
  5541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5542. "type": "tidelift"
  5543. }
  5544. ],
  5545. "time": "2022-01-02T09:53:40+00:00"
  5546. },
  5547. {
  5548. "name": "symfony/error-handler",
  5549. "version": "v5.4.21",
  5550. "source": {
  5551. "type": "git",
  5552. "url": "https://github.com/symfony/error-handler.git",
  5553. "reference": "56a94aa8cb5a5fbc411551d8d014a296b5456549"
  5554. },
  5555. "dist": {
  5556. "type": "zip",
  5557. "url": "https://api.github.com/repos/symfony/error-handler/zipball/56a94aa8cb5a5fbc411551d8d014a296b5456549",
  5558. "reference": "56a94aa8cb5a5fbc411551d8d014a296b5456549",
  5559. "shasum": "",
  5560. "mirrors": [
  5561. {
  5562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5563. "preferred": true
  5564. }
  5565. ]
  5566. },
  5567. "require": {
  5568. "php": ">=7.2.5",
  5569. "psr/log": "^1|^2|^3",
  5570. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5571. },
  5572. "require-dev": {
  5573. "symfony/deprecation-contracts": "^2.1|^3",
  5574. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5575. "symfony/serializer": "^4.4|^5.0|^6.0"
  5576. },
  5577. "bin": [
  5578. "Resources/bin/patch-type-declarations"
  5579. ],
  5580. "type": "library",
  5581. "autoload": {
  5582. "psr-4": {
  5583. "Symfony\\Component\\ErrorHandler\\": ""
  5584. },
  5585. "exclude-from-classmap": [
  5586. "/Tests/"
  5587. ]
  5588. },
  5589. "notification-url": "https://packagist.org/downloads/",
  5590. "license": [
  5591. "MIT"
  5592. ],
  5593. "authors": [
  5594. {
  5595. "name": "Fabien Potencier",
  5596. "email": "fabien@symfony.com"
  5597. },
  5598. {
  5599. "name": "Symfony Community",
  5600. "homepage": "https://symfony.com/contributors"
  5601. }
  5602. ],
  5603. "description": "Provides tools to manage errors and ease debugging PHP code",
  5604. "homepage": "https://symfony.com",
  5605. "support": {
  5606. "source": "https://github.com/symfony/error-handler/tree/v5.4.21"
  5607. },
  5608. "funding": [
  5609. {
  5610. "url": "https://symfony.com/sponsor",
  5611. "type": "custom"
  5612. },
  5613. {
  5614. "url": "https://github.com/fabpot",
  5615. "type": "github"
  5616. },
  5617. {
  5618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5619. "type": "tidelift"
  5620. }
  5621. ],
  5622. "time": "2023-02-14T08:03:56+00:00"
  5623. },
  5624. {
  5625. "name": "symfony/event-dispatcher",
  5626. "version": "v5.4.21",
  5627. "source": {
  5628. "type": "git",
  5629. "url": "https://github.com/symfony/event-dispatcher.git",
  5630. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a"
  5631. },
  5632. "dist": {
  5633. "type": "zip",
  5634. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f0ae1383a8285dfc6752b8d8602790953118ff5a",
  5635. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a",
  5636. "shasum": "",
  5637. "mirrors": [
  5638. {
  5639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5640. "preferred": true
  5641. }
  5642. ]
  5643. },
  5644. "require": {
  5645. "php": ">=7.2.5",
  5646. "symfony/deprecation-contracts": "^2.1|^3",
  5647. "symfony/event-dispatcher-contracts": "^2|^3",
  5648. "symfony/polyfill-php80": "^1.16"
  5649. },
  5650. "conflict": {
  5651. "symfony/dependency-injection": "<4.4"
  5652. },
  5653. "provide": {
  5654. "psr/event-dispatcher-implementation": "1.0",
  5655. "symfony/event-dispatcher-implementation": "2.0"
  5656. },
  5657. "require-dev": {
  5658. "psr/log": "^1|^2|^3",
  5659. "symfony/config": "^4.4|^5.0|^6.0",
  5660. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5661. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5662. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5663. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5664. "symfony/service-contracts": "^1.1|^2|^3",
  5665. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5666. },
  5667. "suggest": {
  5668. "symfony/dependency-injection": "",
  5669. "symfony/http-kernel": ""
  5670. },
  5671. "type": "library",
  5672. "autoload": {
  5673. "psr-4": {
  5674. "Symfony\\Component\\EventDispatcher\\": ""
  5675. },
  5676. "exclude-from-classmap": [
  5677. "/Tests/"
  5678. ]
  5679. },
  5680. "notification-url": "https://packagist.org/downloads/",
  5681. "license": [
  5682. "MIT"
  5683. ],
  5684. "authors": [
  5685. {
  5686. "name": "Fabien Potencier",
  5687. "email": "fabien@symfony.com"
  5688. },
  5689. {
  5690. "name": "Symfony Community",
  5691. "homepage": "https://symfony.com/contributors"
  5692. }
  5693. ],
  5694. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5695. "homepage": "https://symfony.com",
  5696. "support": {
  5697. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.21"
  5698. },
  5699. "funding": [
  5700. {
  5701. "url": "https://symfony.com/sponsor",
  5702. "type": "custom"
  5703. },
  5704. {
  5705. "url": "https://github.com/fabpot",
  5706. "type": "github"
  5707. },
  5708. {
  5709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5710. "type": "tidelift"
  5711. }
  5712. ],
  5713. "time": "2023-02-14T08:03:56+00:00"
  5714. },
  5715. {
  5716. "name": "symfony/event-dispatcher-contracts",
  5717. "version": "v2.5.2",
  5718. "source": {
  5719. "type": "git",
  5720. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5721. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5722. },
  5723. "dist": {
  5724. "type": "zip",
  5725. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5726. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5727. "shasum": "",
  5728. "mirrors": [
  5729. {
  5730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5731. "preferred": true
  5732. }
  5733. ]
  5734. },
  5735. "require": {
  5736. "php": ">=7.2.5",
  5737. "psr/event-dispatcher": "^1"
  5738. },
  5739. "suggest": {
  5740. "symfony/event-dispatcher-implementation": ""
  5741. },
  5742. "type": "library",
  5743. "extra": {
  5744. "branch-alias": {
  5745. "dev-main": "2.5-dev"
  5746. },
  5747. "thanks": {
  5748. "name": "symfony/contracts",
  5749. "url": "https://github.com/symfony/contracts"
  5750. }
  5751. },
  5752. "autoload": {
  5753. "psr-4": {
  5754. "Symfony\\Contracts\\EventDispatcher\\": ""
  5755. }
  5756. },
  5757. "notification-url": "https://packagist.org/downloads/",
  5758. "license": [
  5759. "MIT"
  5760. ],
  5761. "authors": [
  5762. {
  5763. "name": "Nicolas Grekas",
  5764. "email": "p@tchwork.com"
  5765. },
  5766. {
  5767. "name": "Symfony Community",
  5768. "homepage": "https://symfony.com/contributors"
  5769. }
  5770. ],
  5771. "description": "Generic abstractions related to dispatching event",
  5772. "homepage": "https://symfony.com",
  5773. "keywords": [
  5774. "abstractions",
  5775. "contracts",
  5776. "decoupling",
  5777. "interfaces",
  5778. "interoperability",
  5779. "standards"
  5780. ],
  5781. "support": {
  5782. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  5783. },
  5784. "funding": [
  5785. {
  5786. "url": "https://symfony.com/sponsor",
  5787. "type": "custom"
  5788. },
  5789. {
  5790. "url": "https://github.com/fabpot",
  5791. "type": "github"
  5792. },
  5793. {
  5794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5795. "type": "tidelift"
  5796. }
  5797. ],
  5798. "time": "2022-01-02T09:53:40+00:00"
  5799. },
  5800. {
  5801. "name": "symfony/finder",
  5802. "version": "v5.4.21",
  5803. "source": {
  5804. "type": "git",
  5805. "url": "https://github.com/symfony/finder.git",
  5806. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19"
  5807. },
  5808. "dist": {
  5809. "type": "zip",
  5810. "url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19",
  5811. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19",
  5812. "shasum": "",
  5813. "mirrors": [
  5814. {
  5815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5816. "preferred": true
  5817. }
  5818. ]
  5819. },
  5820. "require": {
  5821. "php": ">=7.2.5",
  5822. "symfony/deprecation-contracts": "^2.1|^3",
  5823. "symfony/polyfill-php80": "^1.16"
  5824. },
  5825. "type": "library",
  5826. "autoload": {
  5827. "psr-4": {
  5828. "Symfony\\Component\\Finder\\": ""
  5829. },
  5830. "exclude-from-classmap": [
  5831. "/Tests/"
  5832. ]
  5833. },
  5834. "notification-url": "https://packagist.org/downloads/",
  5835. "license": [
  5836. "MIT"
  5837. ],
  5838. "authors": [
  5839. {
  5840. "name": "Fabien Potencier",
  5841. "email": "fabien@symfony.com"
  5842. },
  5843. {
  5844. "name": "Symfony Community",
  5845. "homepage": "https://symfony.com/contributors"
  5846. }
  5847. ],
  5848. "description": "Finds files and directories via an intuitive fluent interface",
  5849. "homepage": "https://symfony.com",
  5850. "support": {
  5851. "source": "https://github.com/symfony/finder/tree/v5.4.21"
  5852. },
  5853. "funding": [
  5854. {
  5855. "url": "https://symfony.com/sponsor",
  5856. "type": "custom"
  5857. },
  5858. {
  5859. "url": "https://github.com/fabpot",
  5860. "type": "github"
  5861. },
  5862. {
  5863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5864. "type": "tidelift"
  5865. }
  5866. ],
  5867. "time": "2023-02-16T09:33:00+00:00"
  5868. },
  5869. {
  5870. "name": "symfony/http-foundation",
  5871. "version": "v5.4.21",
  5872. "source": {
  5873. "type": "git",
  5874. "url": "https://github.com/symfony/http-foundation.git",
  5875. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf"
  5876. },
  5877. "dist": {
  5878. "type": "zip",
  5879. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3bb6ee5582366c4176d5ce596b380117c8200bbf",
  5880. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf",
  5881. "shasum": "",
  5882. "mirrors": [
  5883. {
  5884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5885. "preferred": true
  5886. }
  5887. ]
  5888. },
  5889. "require": {
  5890. "php": ">=7.2.5",
  5891. "symfony/deprecation-contracts": "^2.1|^3",
  5892. "symfony/polyfill-mbstring": "~1.1",
  5893. "symfony/polyfill-php80": "^1.16"
  5894. },
  5895. "require-dev": {
  5896. "predis/predis": "~1.0",
  5897. "symfony/cache": "^4.4|^5.0|^6.0",
  5898. "symfony/dependency-injection": "^5.4|^6.0",
  5899. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5900. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5901. "symfony/mime": "^4.4|^5.0|^6.0",
  5902. "symfony/rate-limiter": "^5.2|^6.0"
  5903. },
  5904. "suggest": {
  5905. "symfony/mime": "To use the file extension guesser"
  5906. },
  5907. "type": "library",
  5908. "autoload": {
  5909. "psr-4": {
  5910. "Symfony\\Component\\HttpFoundation\\": ""
  5911. },
  5912. "exclude-from-classmap": [
  5913. "/Tests/"
  5914. ]
  5915. },
  5916. "notification-url": "https://packagist.org/downloads/",
  5917. "license": [
  5918. "MIT"
  5919. ],
  5920. "authors": [
  5921. {
  5922. "name": "Fabien Potencier",
  5923. "email": "fabien@symfony.com"
  5924. },
  5925. {
  5926. "name": "Symfony Community",
  5927. "homepage": "https://symfony.com/contributors"
  5928. }
  5929. ],
  5930. "description": "Defines an object-oriented layer for the HTTP specification",
  5931. "homepage": "https://symfony.com",
  5932. "support": {
  5933. "source": "https://github.com/symfony/http-foundation/tree/v5.4.21"
  5934. },
  5935. "funding": [
  5936. {
  5937. "url": "https://symfony.com/sponsor",
  5938. "type": "custom"
  5939. },
  5940. {
  5941. "url": "https://github.com/fabpot",
  5942. "type": "github"
  5943. },
  5944. {
  5945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5946. "type": "tidelift"
  5947. }
  5948. ],
  5949. "time": "2023-02-17T21:35:35+00:00"
  5950. },
  5951. {
  5952. "name": "symfony/http-kernel",
  5953. "version": "v5.4.21",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://github.com/symfony/http-kernel.git",
  5957. "reference": "09c19fc7e4218fbcf73fe0330eea38d66064b775"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/09c19fc7e4218fbcf73fe0330eea38d66064b775",
  5962. "reference": "09c19fc7e4218fbcf73fe0330eea38d66064b775",
  5963. "shasum": "",
  5964. "mirrors": [
  5965. {
  5966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5967. "preferred": true
  5968. }
  5969. ]
  5970. },
  5971. "require": {
  5972. "php": ">=7.2.5",
  5973. "psr/log": "^1|^2",
  5974. "symfony/deprecation-contracts": "^2.1|^3",
  5975. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5976. "symfony/event-dispatcher": "^5.0|^6.0",
  5977. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5978. "symfony/polyfill-ctype": "^1.8",
  5979. "symfony/polyfill-php73": "^1.9",
  5980. "symfony/polyfill-php80": "^1.16"
  5981. },
  5982. "conflict": {
  5983. "symfony/browser-kit": "<5.4",
  5984. "symfony/cache": "<5.0",
  5985. "symfony/config": "<5.0",
  5986. "symfony/console": "<4.4",
  5987. "symfony/dependency-injection": "<5.3",
  5988. "symfony/doctrine-bridge": "<5.0",
  5989. "symfony/form": "<5.0",
  5990. "symfony/http-client": "<5.0",
  5991. "symfony/mailer": "<5.0",
  5992. "symfony/messenger": "<5.0",
  5993. "symfony/translation": "<5.0",
  5994. "symfony/twig-bridge": "<5.0",
  5995. "symfony/validator": "<5.0",
  5996. "twig/twig": "<2.13"
  5997. },
  5998. "provide": {
  5999. "psr/log-implementation": "1.0|2.0"
  6000. },
  6001. "require-dev": {
  6002. "psr/cache": "^1.0|^2.0|^3.0",
  6003. "symfony/browser-kit": "^5.4|^6.0",
  6004. "symfony/config": "^5.0|^6.0",
  6005. "symfony/console": "^4.4|^5.0|^6.0",
  6006. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6007. "symfony/dependency-injection": "^5.3|^6.0",
  6008. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6009. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6010. "symfony/finder": "^4.4|^5.0|^6.0",
  6011. "symfony/http-client-contracts": "^1.1|^2|^3",
  6012. "symfony/process": "^4.4|^5.0|^6.0",
  6013. "symfony/routing": "^4.4|^5.0|^6.0",
  6014. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6015. "symfony/translation": "^4.4|^5.0|^6.0",
  6016. "symfony/translation-contracts": "^1.1|^2|^3",
  6017. "twig/twig": "^2.13|^3.0.4"
  6018. },
  6019. "suggest": {
  6020. "symfony/browser-kit": "",
  6021. "symfony/config": "",
  6022. "symfony/console": "",
  6023. "symfony/dependency-injection": ""
  6024. },
  6025. "type": "library",
  6026. "autoload": {
  6027. "psr-4": {
  6028. "Symfony\\Component\\HttpKernel\\": ""
  6029. },
  6030. "exclude-from-classmap": [
  6031. "/Tests/"
  6032. ]
  6033. },
  6034. "notification-url": "https://packagist.org/downloads/",
  6035. "license": [
  6036. "MIT"
  6037. ],
  6038. "authors": [
  6039. {
  6040. "name": "Fabien Potencier",
  6041. "email": "fabien@symfony.com"
  6042. },
  6043. {
  6044. "name": "Symfony Community",
  6045. "homepage": "https://symfony.com/contributors"
  6046. }
  6047. ],
  6048. "description": "Provides a structured process for converting a Request into a Response",
  6049. "homepage": "https://symfony.com",
  6050. "support": {
  6051. "source": "https://github.com/symfony/http-kernel/tree/v5.4.21"
  6052. },
  6053. "funding": [
  6054. {
  6055. "url": "https://symfony.com/sponsor",
  6056. "type": "custom"
  6057. },
  6058. {
  6059. "url": "https://github.com/fabpot",
  6060. "type": "github"
  6061. },
  6062. {
  6063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6064. "type": "tidelift"
  6065. }
  6066. ],
  6067. "time": "2023-02-28T13:19:09+00:00"
  6068. },
  6069. {
  6070. "name": "symfony/mime",
  6071. "version": "v5.4.21",
  6072. "source": {
  6073. "type": "git",
  6074. "url": "https://github.com/symfony/mime.git",
  6075. "reference": "ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd"
  6076. },
  6077. "dist": {
  6078. "type": "zip",
  6079. "url": "https://api.github.com/repos/symfony/mime/zipball/ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd",
  6080. "reference": "ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd",
  6081. "shasum": "",
  6082. "mirrors": [
  6083. {
  6084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6085. "preferred": true
  6086. }
  6087. ]
  6088. },
  6089. "require": {
  6090. "php": ">=7.2.5",
  6091. "symfony/deprecation-contracts": "^2.1|^3",
  6092. "symfony/polyfill-intl-idn": "^1.10",
  6093. "symfony/polyfill-mbstring": "^1.0",
  6094. "symfony/polyfill-php80": "^1.16"
  6095. },
  6096. "conflict": {
  6097. "egulias/email-validator": "~3.0.0",
  6098. "phpdocumentor/reflection-docblock": "<3.2.2",
  6099. "phpdocumentor/type-resolver": "<1.4.0",
  6100. "symfony/mailer": "<4.4",
  6101. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  6102. },
  6103. "require-dev": {
  6104. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6105. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6106. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6107. "symfony/property-access": "^4.4|^5.1|^6.0",
  6108. "symfony/property-info": "^4.4|^5.1|^6.0",
  6109. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  6110. },
  6111. "type": "library",
  6112. "autoload": {
  6113. "psr-4": {
  6114. "Symfony\\Component\\Mime\\": ""
  6115. },
  6116. "exclude-from-classmap": [
  6117. "/Tests/"
  6118. ]
  6119. },
  6120. "notification-url": "https://packagist.org/downloads/",
  6121. "license": [
  6122. "MIT"
  6123. ],
  6124. "authors": [
  6125. {
  6126. "name": "Fabien Potencier",
  6127. "email": "fabien@symfony.com"
  6128. },
  6129. {
  6130. "name": "Symfony Community",
  6131. "homepage": "https://symfony.com/contributors"
  6132. }
  6133. ],
  6134. "description": "Allows manipulating MIME messages",
  6135. "homepage": "https://symfony.com",
  6136. "keywords": [
  6137. "mime",
  6138. "mime-type"
  6139. ],
  6140. "support": {
  6141. "source": "https://github.com/symfony/mime/tree/v5.4.21"
  6142. },
  6143. "funding": [
  6144. {
  6145. "url": "https://symfony.com/sponsor",
  6146. "type": "custom"
  6147. },
  6148. {
  6149. "url": "https://github.com/fabpot",
  6150. "type": "github"
  6151. },
  6152. {
  6153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6154. "type": "tidelift"
  6155. }
  6156. ],
  6157. "time": "2023-02-21T19:46:44+00:00"
  6158. },
  6159. {
  6160. "name": "symfony/polyfill-ctype",
  6161. "version": "v1.27.0",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://github.com/symfony/polyfill-ctype.git",
  6165. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  6166. },
  6167. "dist": {
  6168. "type": "zip",
  6169. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  6170. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  6171. "shasum": "",
  6172. "mirrors": [
  6173. {
  6174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6175. "preferred": true
  6176. }
  6177. ]
  6178. },
  6179. "require": {
  6180. "php": ">=7.1"
  6181. },
  6182. "provide": {
  6183. "ext-ctype": "*"
  6184. },
  6185. "suggest": {
  6186. "ext-ctype": "For best performance"
  6187. },
  6188. "type": "library",
  6189. "extra": {
  6190. "branch-alias": {
  6191. "dev-main": "1.27-dev"
  6192. },
  6193. "thanks": {
  6194. "name": "symfony/polyfill",
  6195. "url": "https://github.com/symfony/polyfill"
  6196. }
  6197. },
  6198. "autoload": {
  6199. "files": [
  6200. "bootstrap.php"
  6201. ],
  6202. "psr-4": {
  6203. "Symfony\\Polyfill\\Ctype\\": ""
  6204. }
  6205. },
  6206. "notification-url": "https://packagist.org/downloads/",
  6207. "license": [
  6208. "MIT"
  6209. ],
  6210. "authors": [
  6211. {
  6212. "name": "Gert de Pagter",
  6213. "email": "BackEndTea@gmail.com"
  6214. },
  6215. {
  6216. "name": "Symfony Community",
  6217. "homepage": "https://symfony.com/contributors"
  6218. }
  6219. ],
  6220. "description": "Symfony polyfill for ctype functions",
  6221. "homepage": "https://symfony.com",
  6222. "keywords": [
  6223. "compatibility",
  6224. "ctype",
  6225. "polyfill",
  6226. "portable"
  6227. ],
  6228. "support": {
  6229. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  6230. },
  6231. "funding": [
  6232. {
  6233. "url": "https://symfony.com/sponsor",
  6234. "type": "custom"
  6235. },
  6236. {
  6237. "url": "https://github.com/fabpot",
  6238. "type": "github"
  6239. },
  6240. {
  6241. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6242. "type": "tidelift"
  6243. }
  6244. ],
  6245. "time": "2022-11-03T14:55:06+00:00"
  6246. },
  6247. {
  6248. "name": "symfony/polyfill-iconv",
  6249. "version": "v1.27.0",
  6250. "source": {
  6251. "type": "git",
  6252. "url": "https://github.com/symfony/polyfill-iconv.git",
  6253. "reference": "927013f3aac555983a5059aada98e1907d842695"
  6254. },
  6255. "dist": {
  6256. "type": "zip",
  6257. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  6258. "reference": "927013f3aac555983a5059aada98e1907d842695",
  6259. "shasum": "",
  6260. "mirrors": [
  6261. {
  6262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6263. "preferred": true
  6264. }
  6265. ]
  6266. },
  6267. "require": {
  6268. "php": ">=7.1"
  6269. },
  6270. "provide": {
  6271. "ext-iconv": "*"
  6272. },
  6273. "suggest": {
  6274. "ext-iconv": "For best performance"
  6275. },
  6276. "type": "library",
  6277. "extra": {
  6278. "branch-alias": {
  6279. "dev-main": "1.27-dev"
  6280. },
  6281. "thanks": {
  6282. "name": "symfony/polyfill",
  6283. "url": "https://github.com/symfony/polyfill"
  6284. }
  6285. },
  6286. "autoload": {
  6287. "files": [
  6288. "bootstrap.php"
  6289. ],
  6290. "psr-4": {
  6291. "Symfony\\Polyfill\\Iconv\\": ""
  6292. }
  6293. },
  6294. "notification-url": "https://packagist.org/downloads/",
  6295. "license": [
  6296. "MIT"
  6297. ],
  6298. "authors": [
  6299. {
  6300. "name": "Nicolas Grekas",
  6301. "email": "p@tchwork.com"
  6302. },
  6303. {
  6304. "name": "Symfony Community",
  6305. "homepage": "https://symfony.com/contributors"
  6306. }
  6307. ],
  6308. "description": "Symfony polyfill for the Iconv extension",
  6309. "homepage": "https://symfony.com",
  6310. "keywords": [
  6311. "compatibility",
  6312. "iconv",
  6313. "polyfill",
  6314. "portable",
  6315. "shim"
  6316. ],
  6317. "support": {
  6318. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  6319. },
  6320. "funding": [
  6321. {
  6322. "url": "https://symfony.com/sponsor",
  6323. "type": "custom"
  6324. },
  6325. {
  6326. "url": "https://github.com/fabpot",
  6327. "type": "github"
  6328. },
  6329. {
  6330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6331. "type": "tidelift"
  6332. }
  6333. ],
  6334. "time": "2022-11-03T14:55:06+00:00"
  6335. },
  6336. {
  6337. "name": "symfony/polyfill-intl-grapheme",
  6338. "version": "v1.27.0",
  6339. "source": {
  6340. "type": "git",
  6341. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6342. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  6343. },
  6344. "dist": {
  6345. "type": "zip",
  6346. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  6347. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  6348. "shasum": "",
  6349. "mirrors": [
  6350. {
  6351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6352. "preferred": true
  6353. }
  6354. ]
  6355. },
  6356. "require": {
  6357. "php": ">=7.1"
  6358. },
  6359. "suggest": {
  6360. "ext-intl": "For best performance"
  6361. },
  6362. "type": "library",
  6363. "extra": {
  6364. "branch-alias": {
  6365. "dev-main": "1.27-dev"
  6366. },
  6367. "thanks": {
  6368. "name": "symfony/polyfill",
  6369. "url": "https://github.com/symfony/polyfill"
  6370. }
  6371. },
  6372. "autoload": {
  6373. "files": [
  6374. "bootstrap.php"
  6375. ],
  6376. "psr-4": {
  6377. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6378. }
  6379. },
  6380. "notification-url": "https://packagist.org/downloads/",
  6381. "license": [
  6382. "MIT"
  6383. ],
  6384. "authors": [
  6385. {
  6386. "name": "Nicolas Grekas",
  6387. "email": "p@tchwork.com"
  6388. },
  6389. {
  6390. "name": "Symfony Community",
  6391. "homepage": "https://symfony.com/contributors"
  6392. }
  6393. ],
  6394. "description": "Symfony polyfill for intl's grapheme_* functions",
  6395. "homepage": "https://symfony.com",
  6396. "keywords": [
  6397. "compatibility",
  6398. "grapheme",
  6399. "intl",
  6400. "polyfill",
  6401. "portable",
  6402. "shim"
  6403. ],
  6404. "support": {
  6405. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  6406. },
  6407. "funding": [
  6408. {
  6409. "url": "https://symfony.com/sponsor",
  6410. "type": "custom"
  6411. },
  6412. {
  6413. "url": "https://github.com/fabpot",
  6414. "type": "github"
  6415. },
  6416. {
  6417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6418. "type": "tidelift"
  6419. }
  6420. ],
  6421. "time": "2022-11-03T14:55:06+00:00"
  6422. },
  6423. {
  6424. "name": "symfony/polyfill-intl-idn",
  6425. "version": "v1.27.0",
  6426. "source": {
  6427. "type": "git",
  6428. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6429. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  6430. },
  6431. "dist": {
  6432. "type": "zip",
  6433. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  6434. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  6435. "shasum": "",
  6436. "mirrors": [
  6437. {
  6438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6439. "preferred": true
  6440. }
  6441. ]
  6442. },
  6443. "require": {
  6444. "php": ">=7.1",
  6445. "symfony/polyfill-intl-normalizer": "^1.10",
  6446. "symfony/polyfill-php72": "^1.10"
  6447. },
  6448. "suggest": {
  6449. "ext-intl": "For best performance"
  6450. },
  6451. "type": "library",
  6452. "extra": {
  6453. "branch-alias": {
  6454. "dev-main": "1.27-dev"
  6455. },
  6456. "thanks": {
  6457. "name": "symfony/polyfill",
  6458. "url": "https://github.com/symfony/polyfill"
  6459. }
  6460. },
  6461. "autoload": {
  6462. "files": [
  6463. "bootstrap.php"
  6464. ],
  6465. "psr-4": {
  6466. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6467. }
  6468. },
  6469. "notification-url": "https://packagist.org/downloads/",
  6470. "license": [
  6471. "MIT"
  6472. ],
  6473. "authors": [
  6474. {
  6475. "name": "Laurent Bassin",
  6476. "email": "laurent@bassin.info"
  6477. },
  6478. {
  6479. "name": "Trevor Rowbotham",
  6480. "email": "trevor.rowbotham@pm.me"
  6481. },
  6482. {
  6483. "name": "Symfony Community",
  6484. "homepage": "https://symfony.com/contributors"
  6485. }
  6486. ],
  6487. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6488. "homepage": "https://symfony.com",
  6489. "keywords": [
  6490. "compatibility",
  6491. "idn",
  6492. "intl",
  6493. "polyfill",
  6494. "portable",
  6495. "shim"
  6496. ],
  6497. "support": {
  6498. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  6499. },
  6500. "funding": [
  6501. {
  6502. "url": "https://symfony.com/sponsor",
  6503. "type": "custom"
  6504. },
  6505. {
  6506. "url": "https://github.com/fabpot",
  6507. "type": "github"
  6508. },
  6509. {
  6510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6511. "type": "tidelift"
  6512. }
  6513. ],
  6514. "time": "2022-11-03T14:55:06+00:00"
  6515. },
  6516. {
  6517. "name": "symfony/polyfill-intl-normalizer",
  6518. "version": "v1.27.0",
  6519. "source": {
  6520. "type": "git",
  6521. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6522. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  6523. },
  6524. "dist": {
  6525. "type": "zip",
  6526. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6527. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6528. "shasum": "",
  6529. "mirrors": [
  6530. {
  6531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6532. "preferred": true
  6533. }
  6534. ]
  6535. },
  6536. "require": {
  6537. "php": ">=7.1"
  6538. },
  6539. "suggest": {
  6540. "ext-intl": "For best performance"
  6541. },
  6542. "type": "library",
  6543. "extra": {
  6544. "branch-alias": {
  6545. "dev-main": "1.27-dev"
  6546. },
  6547. "thanks": {
  6548. "name": "symfony/polyfill",
  6549. "url": "https://github.com/symfony/polyfill"
  6550. }
  6551. },
  6552. "autoload": {
  6553. "files": [
  6554. "bootstrap.php"
  6555. ],
  6556. "psr-4": {
  6557. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6558. },
  6559. "classmap": [
  6560. "Resources/stubs"
  6561. ]
  6562. },
  6563. "notification-url": "https://packagist.org/downloads/",
  6564. "license": [
  6565. "MIT"
  6566. ],
  6567. "authors": [
  6568. {
  6569. "name": "Nicolas Grekas",
  6570. "email": "p@tchwork.com"
  6571. },
  6572. {
  6573. "name": "Symfony Community",
  6574. "homepage": "https://symfony.com/contributors"
  6575. }
  6576. ],
  6577. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6578. "homepage": "https://symfony.com",
  6579. "keywords": [
  6580. "compatibility",
  6581. "intl",
  6582. "normalizer",
  6583. "polyfill",
  6584. "portable",
  6585. "shim"
  6586. ],
  6587. "support": {
  6588. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  6589. },
  6590. "funding": [
  6591. {
  6592. "url": "https://symfony.com/sponsor",
  6593. "type": "custom"
  6594. },
  6595. {
  6596. "url": "https://github.com/fabpot",
  6597. "type": "github"
  6598. },
  6599. {
  6600. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6601. "type": "tidelift"
  6602. }
  6603. ],
  6604. "time": "2022-11-03T14:55:06+00:00"
  6605. },
  6606. {
  6607. "name": "symfony/polyfill-mbstring",
  6608. "version": "v1.27.0",
  6609. "source": {
  6610. "type": "git",
  6611. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6612. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  6613. },
  6614. "dist": {
  6615. "type": "zip",
  6616. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6617. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6618. "shasum": "",
  6619. "mirrors": [
  6620. {
  6621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6622. "preferred": true
  6623. }
  6624. ]
  6625. },
  6626. "require": {
  6627. "php": ">=7.1"
  6628. },
  6629. "provide": {
  6630. "ext-mbstring": "*"
  6631. },
  6632. "suggest": {
  6633. "ext-mbstring": "For best performance"
  6634. },
  6635. "type": "library",
  6636. "extra": {
  6637. "branch-alias": {
  6638. "dev-main": "1.27-dev"
  6639. },
  6640. "thanks": {
  6641. "name": "symfony/polyfill",
  6642. "url": "https://github.com/symfony/polyfill"
  6643. }
  6644. },
  6645. "autoload": {
  6646. "files": [
  6647. "bootstrap.php"
  6648. ],
  6649. "psr-4": {
  6650. "Symfony\\Polyfill\\Mbstring\\": ""
  6651. }
  6652. },
  6653. "notification-url": "https://packagist.org/downloads/",
  6654. "license": [
  6655. "MIT"
  6656. ],
  6657. "authors": [
  6658. {
  6659. "name": "Nicolas Grekas",
  6660. "email": "p@tchwork.com"
  6661. },
  6662. {
  6663. "name": "Symfony Community",
  6664. "homepage": "https://symfony.com/contributors"
  6665. }
  6666. ],
  6667. "description": "Symfony polyfill for the Mbstring extension",
  6668. "homepage": "https://symfony.com",
  6669. "keywords": [
  6670. "compatibility",
  6671. "mbstring",
  6672. "polyfill",
  6673. "portable",
  6674. "shim"
  6675. ],
  6676. "support": {
  6677. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  6678. },
  6679. "funding": [
  6680. {
  6681. "url": "https://symfony.com/sponsor",
  6682. "type": "custom"
  6683. },
  6684. {
  6685. "url": "https://github.com/fabpot",
  6686. "type": "github"
  6687. },
  6688. {
  6689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6690. "type": "tidelift"
  6691. }
  6692. ],
  6693. "time": "2022-11-03T14:55:06+00:00"
  6694. },
  6695. {
  6696. "name": "symfony/polyfill-php56",
  6697. "version": "v1.20.0",
  6698. "source": {
  6699. "type": "git",
  6700. "url": "https://github.com/symfony/polyfill-php56.git",
  6701. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6702. },
  6703. "dist": {
  6704. "type": "zip",
  6705. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6706. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6707. "shasum": "",
  6708. "mirrors": [
  6709. {
  6710. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6711. "preferred": true
  6712. }
  6713. ]
  6714. },
  6715. "require": {
  6716. "php": ">=7.1"
  6717. },
  6718. "type": "metapackage",
  6719. "extra": {
  6720. "branch-alias": {
  6721. "dev-main": "1.20-dev"
  6722. },
  6723. "thanks": {
  6724. "name": "symfony/polyfill",
  6725. "url": "https://github.com/symfony/polyfill"
  6726. }
  6727. },
  6728. "notification-url": "https://packagist.org/downloads/",
  6729. "license": [
  6730. "MIT"
  6731. ],
  6732. "authors": [
  6733. {
  6734. "name": "Nicolas Grekas",
  6735. "email": "p@tchwork.com"
  6736. },
  6737. {
  6738. "name": "Symfony Community",
  6739. "homepage": "https://symfony.com/contributors"
  6740. }
  6741. ],
  6742. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6743. "homepage": "https://symfony.com",
  6744. "keywords": [
  6745. "compatibility",
  6746. "polyfill",
  6747. "portable",
  6748. "shim"
  6749. ],
  6750. "support": {
  6751. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  6752. },
  6753. "funding": [
  6754. {
  6755. "url": "https://symfony.com/sponsor",
  6756. "type": "custom"
  6757. },
  6758. {
  6759. "url": "https://github.com/fabpot",
  6760. "type": "github"
  6761. },
  6762. {
  6763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6764. "type": "tidelift"
  6765. }
  6766. ],
  6767. "time": "2020-10-23T14:02:19+00:00"
  6768. },
  6769. {
  6770. "name": "symfony/polyfill-php72",
  6771. "version": "v1.27.0",
  6772. "source": {
  6773. "type": "git",
  6774. "url": "https://github.com/symfony/polyfill-php72.git",
  6775. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  6776. },
  6777. "dist": {
  6778. "type": "zip",
  6779. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  6780. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  6781. "shasum": "",
  6782. "mirrors": [
  6783. {
  6784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6785. "preferred": true
  6786. }
  6787. ]
  6788. },
  6789. "require": {
  6790. "php": ">=7.1"
  6791. },
  6792. "type": "library",
  6793. "extra": {
  6794. "branch-alias": {
  6795. "dev-main": "1.27-dev"
  6796. },
  6797. "thanks": {
  6798. "name": "symfony/polyfill",
  6799. "url": "https://github.com/symfony/polyfill"
  6800. }
  6801. },
  6802. "autoload": {
  6803. "files": [
  6804. "bootstrap.php"
  6805. ],
  6806. "psr-4": {
  6807. "Symfony\\Polyfill\\Php72\\": ""
  6808. }
  6809. },
  6810. "notification-url": "https://packagist.org/downloads/",
  6811. "license": [
  6812. "MIT"
  6813. ],
  6814. "authors": [
  6815. {
  6816. "name": "Nicolas Grekas",
  6817. "email": "p@tchwork.com"
  6818. },
  6819. {
  6820. "name": "Symfony Community",
  6821. "homepage": "https://symfony.com/contributors"
  6822. }
  6823. ],
  6824. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6825. "homepage": "https://symfony.com",
  6826. "keywords": [
  6827. "compatibility",
  6828. "polyfill",
  6829. "portable",
  6830. "shim"
  6831. ],
  6832. "support": {
  6833. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  6834. },
  6835. "funding": [
  6836. {
  6837. "url": "https://symfony.com/sponsor",
  6838. "type": "custom"
  6839. },
  6840. {
  6841. "url": "https://github.com/fabpot",
  6842. "type": "github"
  6843. },
  6844. {
  6845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6846. "type": "tidelift"
  6847. }
  6848. ],
  6849. "time": "2022-11-03T14:55:06+00:00"
  6850. },
  6851. {
  6852. "name": "symfony/polyfill-php73",
  6853. "version": "v1.27.0",
  6854. "source": {
  6855. "type": "git",
  6856. "url": "https://github.com/symfony/polyfill-php73.git",
  6857. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  6858. },
  6859. "dist": {
  6860. "type": "zip",
  6861. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  6862. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  6863. "shasum": "",
  6864. "mirrors": [
  6865. {
  6866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6867. "preferred": true
  6868. }
  6869. ]
  6870. },
  6871. "require": {
  6872. "php": ">=7.1"
  6873. },
  6874. "type": "library",
  6875. "extra": {
  6876. "branch-alias": {
  6877. "dev-main": "1.27-dev"
  6878. },
  6879. "thanks": {
  6880. "name": "symfony/polyfill",
  6881. "url": "https://github.com/symfony/polyfill"
  6882. }
  6883. },
  6884. "autoload": {
  6885. "files": [
  6886. "bootstrap.php"
  6887. ],
  6888. "psr-4": {
  6889. "Symfony\\Polyfill\\Php73\\": ""
  6890. },
  6891. "classmap": [
  6892. "Resources/stubs"
  6893. ]
  6894. },
  6895. "notification-url": "https://packagist.org/downloads/",
  6896. "license": [
  6897. "MIT"
  6898. ],
  6899. "authors": [
  6900. {
  6901. "name": "Nicolas Grekas",
  6902. "email": "p@tchwork.com"
  6903. },
  6904. {
  6905. "name": "Symfony Community",
  6906. "homepage": "https://symfony.com/contributors"
  6907. }
  6908. ],
  6909. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6910. "homepage": "https://symfony.com",
  6911. "keywords": [
  6912. "compatibility",
  6913. "polyfill",
  6914. "portable",
  6915. "shim"
  6916. ],
  6917. "support": {
  6918. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  6919. },
  6920. "funding": [
  6921. {
  6922. "url": "https://symfony.com/sponsor",
  6923. "type": "custom"
  6924. },
  6925. {
  6926. "url": "https://github.com/fabpot",
  6927. "type": "github"
  6928. },
  6929. {
  6930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6931. "type": "tidelift"
  6932. }
  6933. ],
  6934. "time": "2022-11-03T14:55:06+00:00"
  6935. },
  6936. {
  6937. "name": "symfony/polyfill-php80",
  6938. "version": "v1.27.0",
  6939. "source": {
  6940. "type": "git",
  6941. "url": "https://github.com/symfony/polyfill-php80.git",
  6942. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  6943. },
  6944. "dist": {
  6945. "type": "zip",
  6946. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6947. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6948. "shasum": "",
  6949. "mirrors": [
  6950. {
  6951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6952. "preferred": true
  6953. }
  6954. ]
  6955. },
  6956. "require": {
  6957. "php": ">=7.1"
  6958. },
  6959. "type": "library",
  6960. "extra": {
  6961. "branch-alias": {
  6962. "dev-main": "1.27-dev"
  6963. },
  6964. "thanks": {
  6965. "name": "symfony/polyfill",
  6966. "url": "https://github.com/symfony/polyfill"
  6967. }
  6968. },
  6969. "autoload": {
  6970. "files": [
  6971. "bootstrap.php"
  6972. ],
  6973. "psr-4": {
  6974. "Symfony\\Polyfill\\Php80\\": ""
  6975. },
  6976. "classmap": [
  6977. "Resources/stubs"
  6978. ]
  6979. },
  6980. "notification-url": "https://packagist.org/downloads/",
  6981. "license": [
  6982. "MIT"
  6983. ],
  6984. "authors": [
  6985. {
  6986. "name": "Ion Bazan",
  6987. "email": "ion.bazan@gmail.com"
  6988. },
  6989. {
  6990. "name": "Nicolas Grekas",
  6991. "email": "p@tchwork.com"
  6992. },
  6993. {
  6994. "name": "Symfony Community",
  6995. "homepage": "https://symfony.com/contributors"
  6996. }
  6997. ],
  6998. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6999. "homepage": "https://symfony.com",
  7000. "keywords": [
  7001. "compatibility",
  7002. "polyfill",
  7003. "portable",
  7004. "shim"
  7005. ],
  7006. "support": {
  7007. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  7008. },
  7009. "funding": [
  7010. {
  7011. "url": "https://symfony.com/sponsor",
  7012. "type": "custom"
  7013. },
  7014. {
  7015. "url": "https://github.com/fabpot",
  7016. "type": "github"
  7017. },
  7018. {
  7019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7020. "type": "tidelift"
  7021. }
  7022. ],
  7023. "time": "2022-11-03T14:55:06+00:00"
  7024. },
  7025. {
  7026. "name": "symfony/polyfill-php81",
  7027. "version": "v1.27.0",
  7028. "source": {
  7029. "type": "git",
  7030. "url": "https://github.com/symfony/polyfill-php81.git",
  7031. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  7032. },
  7033. "dist": {
  7034. "type": "zip",
  7035. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  7036. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  7037. "shasum": "",
  7038. "mirrors": [
  7039. {
  7040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7041. "preferred": true
  7042. }
  7043. ]
  7044. },
  7045. "require": {
  7046. "php": ">=7.1"
  7047. },
  7048. "type": "library",
  7049. "extra": {
  7050. "branch-alias": {
  7051. "dev-main": "1.27-dev"
  7052. },
  7053. "thanks": {
  7054. "name": "symfony/polyfill",
  7055. "url": "https://github.com/symfony/polyfill"
  7056. }
  7057. },
  7058. "autoload": {
  7059. "files": [
  7060. "bootstrap.php"
  7061. ],
  7062. "psr-4": {
  7063. "Symfony\\Polyfill\\Php81\\": ""
  7064. },
  7065. "classmap": [
  7066. "Resources/stubs"
  7067. ]
  7068. },
  7069. "notification-url": "https://packagist.org/downloads/",
  7070. "license": [
  7071. "MIT"
  7072. ],
  7073. "authors": [
  7074. {
  7075. "name": "Nicolas Grekas",
  7076. "email": "p@tchwork.com"
  7077. },
  7078. {
  7079. "name": "Symfony Community",
  7080. "homepage": "https://symfony.com/contributors"
  7081. }
  7082. ],
  7083. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7084. "homepage": "https://symfony.com",
  7085. "keywords": [
  7086. "compatibility",
  7087. "polyfill",
  7088. "portable",
  7089. "shim"
  7090. ],
  7091. "support": {
  7092. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  7093. },
  7094. "funding": [
  7095. {
  7096. "url": "https://symfony.com/sponsor",
  7097. "type": "custom"
  7098. },
  7099. {
  7100. "url": "https://github.com/fabpot",
  7101. "type": "github"
  7102. },
  7103. {
  7104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7105. "type": "tidelift"
  7106. }
  7107. ],
  7108. "time": "2022-11-03T14:55:06+00:00"
  7109. },
  7110. {
  7111. "name": "symfony/process",
  7112. "version": "v5.4.21",
  7113. "source": {
  7114. "type": "git",
  7115. "url": "https://github.com/symfony/process.git",
  7116. "reference": "d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd"
  7117. },
  7118. "dist": {
  7119. "type": "zip",
  7120. "url": "https://api.github.com/repos/symfony/process/zipball/d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd",
  7121. "reference": "d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd",
  7122. "shasum": "",
  7123. "mirrors": [
  7124. {
  7125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7126. "preferred": true
  7127. }
  7128. ]
  7129. },
  7130. "require": {
  7131. "php": ">=7.2.5",
  7132. "symfony/polyfill-php80": "^1.16"
  7133. },
  7134. "type": "library",
  7135. "autoload": {
  7136. "psr-4": {
  7137. "Symfony\\Component\\Process\\": ""
  7138. },
  7139. "exclude-from-classmap": [
  7140. "/Tests/"
  7141. ]
  7142. },
  7143. "notification-url": "https://packagist.org/downloads/",
  7144. "license": [
  7145. "MIT"
  7146. ],
  7147. "authors": [
  7148. {
  7149. "name": "Fabien Potencier",
  7150. "email": "fabien@symfony.com"
  7151. },
  7152. {
  7153. "name": "Symfony Community",
  7154. "homepage": "https://symfony.com/contributors"
  7155. }
  7156. ],
  7157. "description": "Executes commands in sub-processes",
  7158. "homepage": "https://symfony.com",
  7159. "support": {
  7160. "source": "https://github.com/symfony/process/tree/v5.4.21"
  7161. },
  7162. "funding": [
  7163. {
  7164. "url": "https://symfony.com/sponsor",
  7165. "type": "custom"
  7166. },
  7167. {
  7168. "url": "https://github.com/fabpot",
  7169. "type": "github"
  7170. },
  7171. {
  7172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7173. "type": "tidelift"
  7174. }
  7175. ],
  7176. "time": "2023-02-21T19:46:44+00:00"
  7177. },
  7178. {
  7179. "name": "symfony/psr-http-message-bridge",
  7180. "version": "v2.1.3",
  7181. "source": {
  7182. "type": "git",
  7183. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7184. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840"
  7185. },
  7186. "dist": {
  7187. "type": "zip",
  7188. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  7189. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  7190. "shasum": "",
  7191. "mirrors": [
  7192. {
  7193. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7194. "preferred": true
  7195. }
  7196. ]
  7197. },
  7198. "require": {
  7199. "php": ">=7.1",
  7200. "psr/http-message": "^1.0",
  7201. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  7202. },
  7203. "require-dev": {
  7204. "nyholm/psr7": "^1.1",
  7205. "psr/log": "^1.1 || ^2 || ^3",
  7206. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  7207. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7208. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  7209. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7210. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7211. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  7212. },
  7213. "suggest": {
  7214. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7215. },
  7216. "type": "symfony-bridge",
  7217. "extra": {
  7218. "branch-alias": {
  7219. "dev-main": "2.1-dev"
  7220. }
  7221. },
  7222. "autoload": {
  7223. "psr-4": {
  7224. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7225. },
  7226. "exclude-from-classmap": [
  7227. "/Tests/"
  7228. ]
  7229. },
  7230. "notification-url": "https://packagist.org/downloads/",
  7231. "license": [
  7232. "MIT"
  7233. ],
  7234. "authors": [
  7235. {
  7236. "name": "Fabien Potencier",
  7237. "email": "fabien@symfony.com"
  7238. },
  7239. {
  7240. "name": "Symfony Community",
  7241. "homepage": "http://symfony.com/contributors"
  7242. }
  7243. ],
  7244. "description": "PSR HTTP message bridge",
  7245. "homepage": "http://symfony.com",
  7246. "keywords": [
  7247. "http",
  7248. "http-message",
  7249. "psr-17",
  7250. "psr-7"
  7251. ],
  7252. "support": {
  7253. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  7254. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.3"
  7255. },
  7256. "funding": [
  7257. {
  7258. "url": "https://symfony.com/sponsor",
  7259. "type": "custom"
  7260. },
  7261. {
  7262. "url": "https://github.com/fabpot",
  7263. "type": "github"
  7264. },
  7265. {
  7266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7267. "type": "tidelift"
  7268. }
  7269. ],
  7270. "time": "2022-09-05T10:34:54+00:00"
  7271. },
  7272. {
  7273. "name": "symfony/routing",
  7274. "version": "v5.4.21",
  7275. "source": {
  7276. "type": "git",
  7277. "url": "https://github.com/symfony/routing.git",
  7278. "reference": "2ea0f3049076e8ef96eab203a809d6b2332f0361"
  7279. },
  7280. "dist": {
  7281. "type": "zip",
  7282. "url": "https://api.github.com/repos/symfony/routing/zipball/2ea0f3049076e8ef96eab203a809d6b2332f0361",
  7283. "reference": "2ea0f3049076e8ef96eab203a809d6b2332f0361",
  7284. "shasum": "",
  7285. "mirrors": [
  7286. {
  7287. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7288. "preferred": true
  7289. }
  7290. ]
  7291. },
  7292. "require": {
  7293. "php": ">=7.2.5",
  7294. "symfony/deprecation-contracts": "^2.1|^3",
  7295. "symfony/polyfill-php80": "^1.16"
  7296. },
  7297. "conflict": {
  7298. "doctrine/annotations": "<1.12",
  7299. "symfony/config": "<5.3",
  7300. "symfony/dependency-injection": "<4.4",
  7301. "symfony/yaml": "<4.4"
  7302. },
  7303. "require-dev": {
  7304. "doctrine/annotations": "^1.12|^2",
  7305. "psr/log": "^1|^2|^3",
  7306. "symfony/config": "^5.3|^6.0",
  7307. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7308. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7309. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7310. "symfony/yaml": "^4.4|^5.0|^6.0"
  7311. },
  7312. "suggest": {
  7313. "symfony/config": "For using the all-in-one router or any loader",
  7314. "symfony/expression-language": "For using expression matching",
  7315. "symfony/http-foundation": "For using a Symfony Request object",
  7316. "symfony/yaml": "For using the YAML loader"
  7317. },
  7318. "type": "library",
  7319. "autoload": {
  7320. "psr-4": {
  7321. "Symfony\\Component\\Routing\\": ""
  7322. },
  7323. "exclude-from-classmap": [
  7324. "/Tests/"
  7325. ]
  7326. },
  7327. "notification-url": "https://packagist.org/downloads/",
  7328. "license": [
  7329. "MIT"
  7330. ],
  7331. "authors": [
  7332. {
  7333. "name": "Fabien Potencier",
  7334. "email": "fabien@symfony.com"
  7335. },
  7336. {
  7337. "name": "Symfony Community",
  7338. "homepage": "https://symfony.com/contributors"
  7339. }
  7340. ],
  7341. "description": "Maps an HTTP request to a set of configuration variables",
  7342. "homepage": "https://symfony.com",
  7343. "keywords": [
  7344. "router",
  7345. "routing",
  7346. "uri",
  7347. "url"
  7348. ],
  7349. "support": {
  7350. "source": "https://github.com/symfony/routing/tree/v5.4.21"
  7351. },
  7352. "funding": [
  7353. {
  7354. "url": "https://symfony.com/sponsor",
  7355. "type": "custom"
  7356. },
  7357. {
  7358. "url": "https://github.com/fabpot",
  7359. "type": "github"
  7360. },
  7361. {
  7362. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7363. "type": "tidelift"
  7364. }
  7365. ],
  7366. "time": "2023-02-16T09:33:00+00:00"
  7367. },
  7368. {
  7369. "name": "symfony/service-contracts",
  7370. "version": "v2.5.2",
  7371. "source": {
  7372. "type": "git",
  7373. "url": "https://github.com/symfony/service-contracts.git",
  7374. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7375. },
  7376. "dist": {
  7377. "type": "zip",
  7378. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7379. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7380. "shasum": "",
  7381. "mirrors": [
  7382. {
  7383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7384. "preferred": true
  7385. }
  7386. ]
  7387. },
  7388. "require": {
  7389. "php": ">=7.2.5",
  7390. "psr/container": "^1.1",
  7391. "symfony/deprecation-contracts": "^2.1|^3"
  7392. },
  7393. "conflict": {
  7394. "ext-psr": "<1.1|>=2"
  7395. },
  7396. "suggest": {
  7397. "symfony/service-implementation": ""
  7398. },
  7399. "type": "library",
  7400. "extra": {
  7401. "branch-alias": {
  7402. "dev-main": "2.5-dev"
  7403. },
  7404. "thanks": {
  7405. "name": "symfony/contracts",
  7406. "url": "https://github.com/symfony/contracts"
  7407. }
  7408. },
  7409. "autoload": {
  7410. "psr-4": {
  7411. "Symfony\\Contracts\\Service\\": ""
  7412. }
  7413. },
  7414. "notification-url": "https://packagist.org/downloads/",
  7415. "license": [
  7416. "MIT"
  7417. ],
  7418. "authors": [
  7419. {
  7420. "name": "Nicolas Grekas",
  7421. "email": "p@tchwork.com"
  7422. },
  7423. {
  7424. "name": "Symfony Community",
  7425. "homepage": "https://symfony.com/contributors"
  7426. }
  7427. ],
  7428. "description": "Generic abstractions related to writing services",
  7429. "homepage": "https://symfony.com",
  7430. "keywords": [
  7431. "abstractions",
  7432. "contracts",
  7433. "decoupling",
  7434. "interfaces",
  7435. "interoperability",
  7436. "standards"
  7437. ],
  7438. "support": {
  7439. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7440. },
  7441. "funding": [
  7442. {
  7443. "url": "https://symfony.com/sponsor",
  7444. "type": "custom"
  7445. },
  7446. {
  7447. "url": "https://github.com/fabpot",
  7448. "type": "github"
  7449. },
  7450. {
  7451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7452. "type": "tidelift"
  7453. }
  7454. ],
  7455. "time": "2022-05-30T19:17:29+00:00"
  7456. },
  7457. {
  7458. "name": "symfony/string",
  7459. "version": "v5.4.21",
  7460. "source": {
  7461. "type": "git",
  7462. "url": "https://github.com/symfony/string.git",
  7463. "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f"
  7464. },
  7465. "dist": {
  7466. "type": "zip",
  7467. "url": "https://api.github.com/repos/symfony/string/zipball/edac10d167b78b1d90f46a80320d632de0bd9f2f",
  7468. "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f",
  7469. "shasum": "",
  7470. "mirrors": [
  7471. {
  7472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7473. "preferred": true
  7474. }
  7475. ]
  7476. },
  7477. "require": {
  7478. "php": ">=7.2.5",
  7479. "symfony/polyfill-ctype": "~1.8",
  7480. "symfony/polyfill-intl-grapheme": "~1.0",
  7481. "symfony/polyfill-intl-normalizer": "~1.0",
  7482. "symfony/polyfill-mbstring": "~1.0",
  7483. "symfony/polyfill-php80": "~1.15"
  7484. },
  7485. "conflict": {
  7486. "symfony/translation-contracts": ">=3.0"
  7487. },
  7488. "require-dev": {
  7489. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7490. "symfony/http-client": "^4.4|^5.0|^6.0",
  7491. "symfony/translation-contracts": "^1.1|^2",
  7492. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7493. },
  7494. "type": "library",
  7495. "autoload": {
  7496. "files": [
  7497. "Resources/functions.php"
  7498. ],
  7499. "psr-4": {
  7500. "Symfony\\Component\\String\\": ""
  7501. },
  7502. "exclude-from-classmap": [
  7503. "/Tests/"
  7504. ]
  7505. },
  7506. "notification-url": "https://packagist.org/downloads/",
  7507. "license": [
  7508. "MIT"
  7509. ],
  7510. "authors": [
  7511. {
  7512. "name": "Nicolas Grekas",
  7513. "email": "p@tchwork.com"
  7514. },
  7515. {
  7516. "name": "Symfony Community",
  7517. "homepage": "https://symfony.com/contributors"
  7518. }
  7519. ],
  7520. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7521. "homepage": "https://symfony.com",
  7522. "keywords": [
  7523. "grapheme",
  7524. "i18n",
  7525. "string",
  7526. "unicode",
  7527. "utf-8",
  7528. "utf8"
  7529. ],
  7530. "support": {
  7531. "source": "https://github.com/symfony/string/tree/v5.4.21"
  7532. },
  7533. "funding": [
  7534. {
  7535. "url": "https://symfony.com/sponsor",
  7536. "type": "custom"
  7537. },
  7538. {
  7539. "url": "https://github.com/fabpot",
  7540. "type": "github"
  7541. },
  7542. {
  7543. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7544. "type": "tidelift"
  7545. }
  7546. ],
  7547. "time": "2023-02-22T08:00:55+00:00"
  7548. },
  7549. {
  7550. "name": "symfony/translation",
  7551. "version": "v5.4.21",
  7552. "source": {
  7553. "type": "git",
  7554. "url": "https://github.com/symfony/translation.git",
  7555. "reference": "6996affeea65705086939894b77110e9a7f80874"
  7556. },
  7557. "dist": {
  7558. "type": "zip",
  7559. "url": "https://api.github.com/repos/symfony/translation/zipball/6996affeea65705086939894b77110e9a7f80874",
  7560. "reference": "6996affeea65705086939894b77110e9a7f80874",
  7561. "shasum": "",
  7562. "mirrors": [
  7563. {
  7564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7565. "preferred": true
  7566. }
  7567. ]
  7568. },
  7569. "require": {
  7570. "php": ">=7.2.5",
  7571. "symfony/deprecation-contracts": "^2.1|^3",
  7572. "symfony/polyfill-mbstring": "~1.0",
  7573. "symfony/polyfill-php80": "^1.16",
  7574. "symfony/translation-contracts": "^2.3"
  7575. },
  7576. "conflict": {
  7577. "symfony/config": "<4.4",
  7578. "symfony/console": "<5.3",
  7579. "symfony/dependency-injection": "<5.0",
  7580. "symfony/http-kernel": "<5.0",
  7581. "symfony/twig-bundle": "<5.0",
  7582. "symfony/yaml": "<4.4"
  7583. },
  7584. "provide": {
  7585. "symfony/translation-implementation": "2.3"
  7586. },
  7587. "require-dev": {
  7588. "psr/log": "^1|^2|^3",
  7589. "symfony/config": "^4.4|^5.0|^6.0",
  7590. "symfony/console": "^5.4|^6.0",
  7591. "symfony/dependency-injection": "^5.0|^6.0",
  7592. "symfony/finder": "^4.4|^5.0|^6.0",
  7593. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7594. "symfony/http-kernel": "^5.0|^6.0",
  7595. "symfony/intl": "^4.4|^5.0|^6.0",
  7596. "symfony/polyfill-intl-icu": "^1.21",
  7597. "symfony/service-contracts": "^1.1.2|^2|^3",
  7598. "symfony/yaml": "^4.4|^5.0|^6.0"
  7599. },
  7600. "suggest": {
  7601. "psr/log-implementation": "To use logging capability in translator",
  7602. "symfony/config": "",
  7603. "symfony/yaml": ""
  7604. },
  7605. "type": "library",
  7606. "autoload": {
  7607. "files": [
  7608. "Resources/functions.php"
  7609. ],
  7610. "psr-4": {
  7611. "Symfony\\Component\\Translation\\": ""
  7612. },
  7613. "exclude-from-classmap": [
  7614. "/Tests/"
  7615. ]
  7616. },
  7617. "notification-url": "https://packagist.org/downloads/",
  7618. "license": [
  7619. "MIT"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "Fabien Potencier",
  7624. "email": "fabien@symfony.com"
  7625. },
  7626. {
  7627. "name": "Symfony Community",
  7628. "homepage": "https://symfony.com/contributors"
  7629. }
  7630. ],
  7631. "description": "Provides tools to internationalize your application",
  7632. "homepage": "https://symfony.com",
  7633. "support": {
  7634. "source": "https://github.com/symfony/translation/tree/v5.4.21"
  7635. },
  7636. "funding": [
  7637. {
  7638. "url": "https://symfony.com/sponsor",
  7639. "type": "custom"
  7640. },
  7641. {
  7642. "url": "https://github.com/fabpot",
  7643. "type": "github"
  7644. },
  7645. {
  7646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7647. "type": "tidelift"
  7648. }
  7649. ],
  7650. "time": "2023-02-21T19:46:44+00:00"
  7651. },
  7652. {
  7653. "name": "symfony/translation-contracts",
  7654. "version": "v2.5.2",
  7655. "source": {
  7656. "type": "git",
  7657. "url": "https://github.com/symfony/translation-contracts.git",
  7658. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  7659. },
  7660. "dist": {
  7661. "type": "zip",
  7662. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7663. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7664. "shasum": "",
  7665. "mirrors": [
  7666. {
  7667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7668. "preferred": true
  7669. }
  7670. ]
  7671. },
  7672. "require": {
  7673. "php": ">=7.2.5"
  7674. },
  7675. "suggest": {
  7676. "symfony/translation-implementation": ""
  7677. },
  7678. "type": "library",
  7679. "extra": {
  7680. "branch-alias": {
  7681. "dev-main": "2.5-dev"
  7682. },
  7683. "thanks": {
  7684. "name": "symfony/contracts",
  7685. "url": "https://github.com/symfony/contracts"
  7686. }
  7687. },
  7688. "autoload": {
  7689. "psr-4": {
  7690. "Symfony\\Contracts\\Translation\\": ""
  7691. }
  7692. },
  7693. "notification-url": "https://packagist.org/downloads/",
  7694. "license": [
  7695. "MIT"
  7696. ],
  7697. "authors": [
  7698. {
  7699. "name": "Nicolas Grekas",
  7700. "email": "p@tchwork.com"
  7701. },
  7702. {
  7703. "name": "Symfony Community",
  7704. "homepage": "https://symfony.com/contributors"
  7705. }
  7706. ],
  7707. "description": "Generic abstractions related to translation",
  7708. "homepage": "https://symfony.com",
  7709. "keywords": [
  7710. "abstractions",
  7711. "contracts",
  7712. "decoupling",
  7713. "interfaces",
  7714. "interoperability",
  7715. "standards"
  7716. ],
  7717. "support": {
  7718. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  7719. },
  7720. "funding": [
  7721. {
  7722. "url": "https://symfony.com/sponsor",
  7723. "type": "custom"
  7724. },
  7725. {
  7726. "url": "https://github.com/fabpot",
  7727. "type": "github"
  7728. },
  7729. {
  7730. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7731. "type": "tidelift"
  7732. }
  7733. ],
  7734. "time": "2022-06-27T16:58:25+00:00"
  7735. },
  7736. {
  7737. "name": "symfony/var-dumper",
  7738. "version": "v5.4.21",
  7739. "source": {
  7740. "type": "git",
  7741. "url": "https://github.com/symfony/var-dumper.git",
  7742. "reference": "6c5ac3a1be8b849d59a1a77877ee110e1b55eb74"
  7743. },
  7744. "dist": {
  7745. "type": "zip",
  7746. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6c5ac3a1be8b849d59a1a77877ee110e1b55eb74",
  7747. "reference": "6c5ac3a1be8b849d59a1a77877ee110e1b55eb74",
  7748. "shasum": "",
  7749. "mirrors": [
  7750. {
  7751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7752. "preferred": true
  7753. }
  7754. ]
  7755. },
  7756. "require": {
  7757. "php": ">=7.2.5",
  7758. "symfony/polyfill-mbstring": "~1.0",
  7759. "symfony/polyfill-php80": "^1.16"
  7760. },
  7761. "conflict": {
  7762. "phpunit/phpunit": "<5.4.3",
  7763. "symfony/console": "<4.4"
  7764. },
  7765. "require-dev": {
  7766. "ext-iconv": "*",
  7767. "symfony/console": "^4.4|^5.0|^6.0",
  7768. "symfony/process": "^4.4|^5.0|^6.0",
  7769. "symfony/uid": "^5.1|^6.0",
  7770. "twig/twig": "^2.13|^3.0.4"
  7771. },
  7772. "suggest": {
  7773. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7774. "ext-intl": "To show region name in time zone dump",
  7775. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7776. },
  7777. "bin": [
  7778. "Resources/bin/var-dump-server"
  7779. ],
  7780. "type": "library",
  7781. "autoload": {
  7782. "files": [
  7783. "Resources/functions/dump.php"
  7784. ],
  7785. "psr-4": {
  7786. "Symfony\\Component\\VarDumper\\": ""
  7787. },
  7788. "exclude-from-classmap": [
  7789. "/Tests/"
  7790. ]
  7791. },
  7792. "notification-url": "https://packagist.org/downloads/",
  7793. "license": [
  7794. "MIT"
  7795. ],
  7796. "authors": [
  7797. {
  7798. "name": "Nicolas Grekas",
  7799. "email": "p@tchwork.com"
  7800. },
  7801. {
  7802. "name": "Symfony Community",
  7803. "homepage": "https://symfony.com/contributors"
  7804. }
  7805. ],
  7806. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7807. "homepage": "https://symfony.com",
  7808. "keywords": [
  7809. "debug",
  7810. "dump"
  7811. ],
  7812. "support": {
  7813. "source": "https://github.com/symfony/var-dumper/tree/v5.4.21"
  7814. },
  7815. "funding": [
  7816. {
  7817. "url": "https://symfony.com/sponsor",
  7818. "type": "custom"
  7819. },
  7820. {
  7821. "url": "https://github.com/fabpot",
  7822. "type": "github"
  7823. },
  7824. {
  7825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7826. "type": "tidelift"
  7827. }
  7828. ],
  7829. "time": "2023-02-23T10:00:28+00:00"
  7830. },
  7831. {
  7832. "name": "symfony/var-exporter",
  7833. "version": "v5.4.21",
  7834. "source": {
  7835. "type": "git",
  7836. "url": "https://github.com/symfony/var-exporter.git",
  7837. "reference": "be74908a6942fdd331554b3cec27ff41b45ccad4"
  7838. },
  7839. "dist": {
  7840. "type": "zip",
  7841. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/be74908a6942fdd331554b3cec27ff41b45ccad4",
  7842. "reference": "be74908a6942fdd331554b3cec27ff41b45ccad4",
  7843. "shasum": "",
  7844. "mirrors": [
  7845. {
  7846. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7847. "preferred": true
  7848. }
  7849. ]
  7850. },
  7851. "require": {
  7852. "php": ">=7.2.5",
  7853. "symfony/polyfill-php80": "^1.16"
  7854. },
  7855. "require-dev": {
  7856. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7857. },
  7858. "type": "library",
  7859. "autoload": {
  7860. "psr-4": {
  7861. "Symfony\\Component\\VarExporter\\": ""
  7862. },
  7863. "exclude-from-classmap": [
  7864. "/Tests/"
  7865. ]
  7866. },
  7867. "notification-url": "https://packagist.org/downloads/",
  7868. "license": [
  7869. "MIT"
  7870. ],
  7871. "authors": [
  7872. {
  7873. "name": "Nicolas Grekas",
  7874. "email": "p@tchwork.com"
  7875. },
  7876. {
  7877. "name": "Symfony Community",
  7878. "homepage": "https://symfony.com/contributors"
  7879. }
  7880. ],
  7881. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7882. "homepage": "https://symfony.com",
  7883. "keywords": [
  7884. "clone",
  7885. "construct",
  7886. "export",
  7887. "hydrate",
  7888. "instantiate",
  7889. "serialize"
  7890. ],
  7891. "support": {
  7892. "source": "https://github.com/symfony/var-exporter/tree/v5.4.21"
  7893. },
  7894. "funding": [
  7895. {
  7896. "url": "https://symfony.com/sponsor",
  7897. "type": "custom"
  7898. },
  7899. {
  7900. "url": "https://github.com/fabpot",
  7901. "type": "github"
  7902. },
  7903. {
  7904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7905. "type": "tidelift"
  7906. }
  7907. ],
  7908. "time": "2023-02-21T19:46:44+00:00"
  7909. },
  7910. {
  7911. "name": "tencentcloud/tencentcloud-sdk-php",
  7912. "version": "3.0.841",
  7913. "source": {
  7914. "type": "git",
  7915. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  7916. "reference": "2e1e3494880dce11de07c8aa691d1bac40d1a2cf"
  7917. },
  7918. "dist": {
  7919. "type": "zip",
  7920. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/2e1e3494880dce11de07c8aa691d1bac40d1a2cf",
  7921. "reference": "2e1e3494880dce11de07c8aa691d1bac40d1a2cf",
  7922. "shasum": "",
  7923. "mirrors": [
  7924. {
  7925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7926. "preferred": true
  7927. }
  7928. ]
  7929. },
  7930. "require": {
  7931. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  7932. "php": ">=5.6.0"
  7933. },
  7934. "require-dev": {
  7935. "phpunit/phpunit": "^9.5"
  7936. },
  7937. "type": "library",
  7938. "autoload": {
  7939. "psr-4": {
  7940. "TencentCloud\\": "./src/TencentCloud"
  7941. },
  7942. "classmap": [
  7943. "src/QcloudApi/QcloudApi.php"
  7944. ]
  7945. },
  7946. "notification-url": "https://packagist.org/downloads/",
  7947. "license": [
  7948. "Apache-2.0"
  7949. ],
  7950. "authors": [
  7951. {
  7952. "name": "coolli",
  7953. "email": "tencentcloudapi@tencent.com",
  7954. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7955. "role": "Developer"
  7956. }
  7957. ],
  7958. "description": "TencentCloudApi php sdk",
  7959. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  7960. "support": {
  7961. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  7962. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.841"
  7963. },
  7964. "time": "2023-03-10T02:05:06+00:00"
  7965. },
  7966. {
  7967. "name": "tijsverkoyen/css-to-inline-styles",
  7968. "version": "2.2.6",
  7969. "source": {
  7970. "type": "git",
  7971. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7972. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7973. },
  7974. "dist": {
  7975. "type": "zip",
  7976. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7977. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7978. "shasum": "",
  7979. "mirrors": [
  7980. {
  7981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7982. "preferred": true
  7983. }
  7984. ]
  7985. },
  7986. "require": {
  7987. "ext-dom": "*",
  7988. "ext-libxml": "*",
  7989. "php": "^5.5 || ^7.0 || ^8.0",
  7990. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7991. },
  7992. "require-dev": {
  7993. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7994. },
  7995. "type": "library",
  7996. "extra": {
  7997. "branch-alias": {
  7998. "dev-master": "2.2.x-dev"
  7999. }
  8000. },
  8001. "autoload": {
  8002. "psr-4": {
  8003. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8004. }
  8005. },
  8006. "notification-url": "https://packagist.org/downloads/",
  8007. "license": [
  8008. "BSD-3-Clause"
  8009. ],
  8010. "authors": [
  8011. {
  8012. "name": "Tijs Verkoyen",
  8013. "email": "css_to_inline_styles@verkoyen.eu",
  8014. "role": "Developer"
  8015. }
  8016. ],
  8017. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  8018. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8019. "support": {
  8020. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8021. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  8022. },
  8023. "time": "2023-01-03T09:29:04+00:00"
  8024. },
  8025. {
  8026. "name": "tymon/jwt-auth",
  8027. "version": "1.0.2",
  8028. "source": {
  8029. "type": "git",
  8030. "url": "https://github.com/tymondesigns/jwt-auth.git",
  8031. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  8032. },
  8033. "dist": {
  8034. "type": "zip",
  8035. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  8036. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  8037. "shasum": "",
  8038. "mirrors": [
  8039. {
  8040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8041. "preferred": true
  8042. }
  8043. ]
  8044. },
  8045. "require": {
  8046. "illuminate/auth": "^5.2|^6|^7|^8",
  8047. "illuminate/contracts": "^5.2|^6|^7|^8",
  8048. "illuminate/http": "^5.2|^6|^7|^8",
  8049. "illuminate/support": "^5.2|^6|^7|^8",
  8050. "lcobucci/jwt": "<3.4",
  8051. "namshi/jose": "^7.0",
  8052. "nesbot/carbon": "^1.0|^2.0",
  8053. "php": "^5.5.9|^7.0"
  8054. },
  8055. "require-dev": {
  8056. "illuminate/console": "^5.2|^6|^7|^8",
  8057. "illuminate/database": "^5.2|^6|^7|^8",
  8058. "illuminate/routing": "^5.2|^6|^7|^8",
  8059. "mockery/mockery": ">=0.9.9",
  8060. "phpunit/phpunit": "~4.8|~6.0"
  8061. },
  8062. "type": "library",
  8063. "extra": {
  8064. "branch-alias": {
  8065. "dev-develop": "1.0-dev"
  8066. },
  8067. "laravel": {
  8068. "aliases": {
  8069. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  8070. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  8071. },
  8072. "providers": [
  8073. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  8074. ]
  8075. }
  8076. },
  8077. "autoload": {
  8078. "psr-4": {
  8079. "Tymon\\JWTAuth\\": "src/"
  8080. }
  8081. },
  8082. "notification-url": "https://packagist.org/downloads/",
  8083. "license": [
  8084. "MIT"
  8085. ],
  8086. "authors": [
  8087. {
  8088. "name": "Sean Tymon",
  8089. "email": "tymon148@gmail.com",
  8090. "homepage": "https://tymon.xyz",
  8091. "role": "Developer"
  8092. }
  8093. ],
  8094. "description": "JSON Web Token Authentication for Laravel and Lumen",
  8095. "homepage": "https://github.com/tymondesigns/jwt-auth",
  8096. "keywords": [
  8097. "Authentication",
  8098. "JSON Web Token",
  8099. "auth",
  8100. "jwt",
  8101. "laravel"
  8102. ],
  8103. "support": {
  8104. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  8105. "source": "https://github.com/tymondesigns/jwt-auth"
  8106. },
  8107. "funding": [
  8108. {
  8109. "url": "https://www.patreon.com/seantymon",
  8110. "type": "patreon"
  8111. }
  8112. ],
  8113. "time": "2020-11-27T12:32:42+00:00"
  8114. },
  8115. {
  8116. "name": "vlucas/phpdotenv",
  8117. "version": "v5.4.1",
  8118. "source": {
  8119. "type": "git",
  8120. "url": "https://github.com/vlucas/phpdotenv.git",
  8121. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  8122. },
  8123. "dist": {
  8124. "type": "zip",
  8125. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  8126. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  8127. "shasum": "",
  8128. "mirrors": [
  8129. {
  8130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8131. "preferred": true
  8132. }
  8133. ]
  8134. },
  8135. "require": {
  8136. "ext-pcre": "*",
  8137. "graham-campbell/result-type": "^1.0.2",
  8138. "php": "^7.1.3 || ^8.0",
  8139. "phpoption/phpoption": "^1.8",
  8140. "symfony/polyfill-ctype": "^1.23",
  8141. "symfony/polyfill-mbstring": "^1.23.1",
  8142. "symfony/polyfill-php80": "^1.23.1"
  8143. },
  8144. "require-dev": {
  8145. "bamarni/composer-bin-plugin": "^1.4.1",
  8146. "ext-filter": "*",
  8147. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  8148. },
  8149. "suggest": {
  8150. "ext-filter": "Required to use the boolean validator."
  8151. },
  8152. "type": "library",
  8153. "extra": {
  8154. "branch-alias": {
  8155. "dev-master": "5.4-dev"
  8156. }
  8157. },
  8158. "autoload": {
  8159. "psr-4": {
  8160. "Dotenv\\": "src/"
  8161. }
  8162. },
  8163. "notification-url": "https://packagist.org/downloads/",
  8164. "license": [
  8165. "BSD-3-Clause"
  8166. ],
  8167. "authors": [
  8168. {
  8169. "name": "Graham Campbell",
  8170. "email": "hello@gjcampbell.co.uk",
  8171. "homepage": "https://github.com/GrahamCampbell"
  8172. },
  8173. {
  8174. "name": "Vance Lucas",
  8175. "email": "vance@vancelucas.com",
  8176. "homepage": "https://github.com/vlucas"
  8177. }
  8178. ],
  8179. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8180. "keywords": [
  8181. "dotenv",
  8182. "env",
  8183. "environment"
  8184. ],
  8185. "support": {
  8186. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8187. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  8188. },
  8189. "funding": [
  8190. {
  8191. "url": "https://github.com/GrahamCampbell",
  8192. "type": "github"
  8193. },
  8194. {
  8195. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8196. "type": "tidelift"
  8197. }
  8198. ],
  8199. "time": "2021-12-12T23:22:04+00:00"
  8200. },
  8201. {
  8202. "name": "voku/portable-ascii",
  8203. "version": "1.6.1",
  8204. "source": {
  8205. "type": "git",
  8206. "url": "https://github.com/voku/portable-ascii.git",
  8207. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8208. },
  8209. "dist": {
  8210. "type": "zip",
  8211. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8212. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8213. "shasum": "",
  8214. "mirrors": [
  8215. {
  8216. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8217. "preferred": true
  8218. }
  8219. ]
  8220. },
  8221. "require": {
  8222. "php": ">=7.0.0"
  8223. },
  8224. "require-dev": {
  8225. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8226. },
  8227. "suggest": {
  8228. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8229. },
  8230. "type": "library",
  8231. "autoload": {
  8232. "psr-4": {
  8233. "voku\\": "src/voku/"
  8234. }
  8235. },
  8236. "notification-url": "https://packagist.org/downloads/",
  8237. "license": [
  8238. "MIT"
  8239. ],
  8240. "authors": [
  8241. {
  8242. "name": "Lars Moelleken",
  8243. "homepage": "http://www.moelleken.org/"
  8244. }
  8245. ],
  8246. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8247. "homepage": "https://github.com/voku/portable-ascii",
  8248. "keywords": [
  8249. "ascii",
  8250. "clean",
  8251. "php"
  8252. ],
  8253. "support": {
  8254. "issues": "https://github.com/voku/portable-ascii/issues",
  8255. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8256. },
  8257. "funding": [
  8258. {
  8259. "url": "https://www.paypal.me/moelleken",
  8260. "type": "custom"
  8261. },
  8262. {
  8263. "url": "https://github.com/voku",
  8264. "type": "github"
  8265. },
  8266. {
  8267. "url": "https://opencollective.com/portable-ascii",
  8268. "type": "open_collective"
  8269. },
  8270. {
  8271. "url": "https://www.patreon.com/voku",
  8272. "type": "patreon"
  8273. },
  8274. {
  8275. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8276. "type": "tidelift"
  8277. }
  8278. ],
  8279. "time": "2022-01-24T18:55:24+00:00"
  8280. },
  8281. {
  8282. "name": "webmozart/assert",
  8283. "version": "1.11.0",
  8284. "source": {
  8285. "type": "git",
  8286. "url": "https://github.com/webmozarts/assert.git",
  8287. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8288. },
  8289. "dist": {
  8290. "type": "zip",
  8291. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8292. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8293. "shasum": "",
  8294. "mirrors": [
  8295. {
  8296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8297. "preferred": true
  8298. }
  8299. ]
  8300. },
  8301. "require": {
  8302. "ext-ctype": "*",
  8303. "php": "^7.2 || ^8.0"
  8304. },
  8305. "conflict": {
  8306. "phpstan/phpstan": "<0.12.20",
  8307. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8308. },
  8309. "require-dev": {
  8310. "phpunit/phpunit": "^8.5.13"
  8311. },
  8312. "type": "library",
  8313. "extra": {
  8314. "branch-alias": {
  8315. "dev-master": "1.10-dev"
  8316. }
  8317. },
  8318. "autoload": {
  8319. "psr-4": {
  8320. "Webmozart\\Assert\\": "src/"
  8321. }
  8322. },
  8323. "notification-url": "https://packagist.org/downloads/",
  8324. "license": [
  8325. "MIT"
  8326. ],
  8327. "authors": [
  8328. {
  8329. "name": "Bernhard Schussek",
  8330. "email": "bschussek@gmail.com"
  8331. }
  8332. ],
  8333. "description": "Assertions to validate method input/output with nice error messages.",
  8334. "keywords": [
  8335. "assert",
  8336. "check",
  8337. "validate"
  8338. ],
  8339. "support": {
  8340. "issues": "https://github.com/webmozarts/assert/issues",
  8341. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8342. },
  8343. "time": "2022-06-03T18:03:27+00:00"
  8344. },
  8345. {
  8346. "name": "zhuzhichao/ip-location-zh",
  8347. "version": "v2.4.4",
  8348. "source": {
  8349. "type": "git",
  8350. "url": "https://github.com/zhuzhichao/ip-location-zh.git",
  8351. "reference": "d3c2b4cb0d3da79a609bd402938a2a0ffa079c5f"
  8352. },
  8353. "dist": {
  8354. "type": "zip",
  8355. "url": "https://api.github.com/repos/zhuzhichao/ip-location-zh/zipball/d3c2b4cb0d3da79a609bd402938a2a0ffa079c5f",
  8356. "reference": "d3c2b4cb0d3da79a609bd402938a2a0ffa079c5f",
  8357. "shasum": "",
  8358. "mirrors": [
  8359. {
  8360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8361. "preferred": true
  8362. }
  8363. ]
  8364. },
  8365. "require-dev": {
  8366. "phpunit/phpunit": "^4.0"
  8367. },
  8368. "type": "library",
  8369. "extra": {
  8370. "laravel": {
  8371. "aliases": {
  8372. "Ip": "Zhuzhichao\\IpLocationZh\\Ip"
  8373. }
  8374. }
  8375. },
  8376. "autoload": {
  8377. "psr-4": {
  8378. "Zhuzhichao\\IpLocationZh\\": "src/"
  8379. }
  8380. },
  8381. "notification-url": "https://packagist.org/downloads/",
  8382. "license": [
  8383. "MIT"
  8384. ],
  8385. "authors": [
  8386. {
  8387. "name": "zhuzhichao",
  8388. "email": "me@zhuzhichao.com"
  8389. }
  8390. ],
  8391. "description": "get the ip's location info with Chinese",
  8392. "keywords": [
  8393. "Chinese",
  8394. "IP",
  8395. "location"
  8396. ],
  8397. "support": {
  8398. "issues": "https://github.com/zhuzhichao/ip-location-zh/issues",
  8399. "source": "https://github.com/zhuzhichao/ip-location-zh/tree/master"
  8400. },
  8401. "time": "2019-11-14T05:42:33+00:00"
  8402. }
  8403. ],
  8404. "packages-dev": [
  8405. {
  8406. "name": "doctrine/instantiator",
  8407. "version": "1.5.0",
  8408. "source": {
  8409. "type": "git",
  8410. "url": "https://github.com/doctrine/instantiator.git",
  8411. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8412. },
  8413. "dist": {
  8414. "type": "zip",
  8415. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8416. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8417. "shasum": "",
  8418. "mirrors": [
  8419. {
  8420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8421. "preferred": true
  8422. }
  8423. ]
  8424. },
  8425. "require": {
  8426. "php": "^7.1 || ^8.0"
  8427. },
  8428. "require-dev": {
  8429. "doctrine/coding-standard": "^9 || ^11",
  8430. "ext-pdo": "*",
  8431. "ext-phar": "*",
  8432. "phpbench/phpbench": "^0.16 || ^1",
  8433. "phpstan/phpstan": "^1.4",
  8434. "phpstan/phpstan-phpunit": "^1",
  8435. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8436. "vimeo/psalm": "^4.30 || ^5.4"
  8437. },
  8438. "type": "library",
  8439. "autoload": {
  8440. "psr-4": {
  8441. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8442. }
  8443. },
  8444. "notification-url": "https://packagist.org/downloads/",
  8445. "license": [
  8446. "MIT"
  8447. ],
  8448. "authors": [
  8449. {
  8450. "name": "Marco Pivetta",
  8451. "email": "ocramius@gmail.com",
  8452. "homepage": "https://ocramius.github.io/"
  8453. }
  8454. ],
  8455. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8456. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8457. "keywords": [
  8458. "constructor",
  8459. "instantiate"
  8460. ],
  8461. "support": {
  8462. "issues": "https://github.com/doctrine/instantiator/issues",
  8463. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8464. },
  8465. "funding": [
  8466. {
  8467. "url": "https://www.doctrine-project.org/sponsorship.html",
  8468. "type": "custom"
  8469. },
  8470. {
  8471. "url": "https://www.patreon.com/phpdoctrine",
  8472. "type": "patreon"
  8473. },
  8474. {
  8475. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8476. "type": "tidelift"
  8477. }
  8478. ],
  8479. "time": "2022-12-30T00:15:36+00:00"
  8480. },
  8481. {
  8482. "name": "facade/flare-client-php",
  8483. "version": "1.10.0",
  8484. "source": {
  8485. "type": "git",
  8486. "url": "https://github.com/facade/flare-client-php.git",
  8487. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8488. },
  8489. "dist": {
  8490. "type": "zip",
  8491. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8492. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8493. "shasum": "",
  8494. "mirrors": [
  8495. {
  8496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8497. "preferred": true
  8498. }
  8499. ]
  8500. },
  8501. "require": {
  8502. "facade/ignition-contracts": "~1.0",
  8503. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8504. "php": "^7.1|^8.0",
  8505. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8506. "symfony/mime": "^3.4|^4.0|^5.1",
  8507. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8508. },
  8509. "require-dev": {
  8510. "friendsofphp/php-cs-fixer": "^2.14",
  8511. "phpunit/phpunit": "^7.5",
  8512. "spatie/phpunit-snapshot-assertions": "^2.0"
  8513. },
  8514. "type": "library",
  8515. "extra": {
  8516. "branch-alias": {
  8517. "dev-master": "1.0-dev"
  8518. }
  8519. },
  8520. "autoload": {
  8521. "files": [
  8522. "src/helpers.php"
  8523. ],
  8524. "psr-4": {
  8525. "Facade\\FlareClient\\": "src"
  8526. }
  8527. },
  8528. "notification-url": "https://packagist.org/downloads/",
  8529. "license": [
  8530. "MIT"
  8531. ],
  8532. "description": "Send PHP errors to Flare",
  8533. "homepage": "https://github.com/facade/flare-client-php",
  8534. "keywords": [
  8535. "exception",
  8536. "facade",
  8537. "flare",
  8538. "reporting"
  8539. ],
  8540. "support": {
  8541. "issues": "https://github.com/facade/flare-client-php/issues",
  8542. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8543. },
  8544. "funding": [
  8545. {
  8546. "url": "https://github.com/spatie",
  8547. "type": "github"
  8548. }
  8549. ],
  8550. "time": "2022-08-09T11:23:57+00:00"
  8551. },
  8552. {
  8553. "name": "facade/ignition",
  8554. "version": "2.17.7",
  8555. "source": {
  8556. "type": "git",
  8557. "url": "https://github.com/facade/ignition.git",
  8558. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8559. },
  8560. "dist": {
  8561. "type": "zip",
  8562. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8563. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8564. "shasum": "",
  8565. "mirrors": [
  8566. {
  8567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8568. "preferred": true
  8569. }
  8570. ]
  8571. },
  8572. "require": {
  8573. "ext-curl": "*",
  8574. "ext-json": "*",
  8575. "ext-mbstring": "*",
  8576. "facade/flare-client-php": "^1.9.1",
  8577. "facade/ignition-contracts": "^1.0.2",
  8578. "illuminate/support": "^7.0|^8.0",
  8579. "monolog/monolog": "^2.0",
  8580. "php": "^7.2.5|^8.0",
  8581. "symfony/console": "^5.0",
  8582. "symfony/var-dumper": "^5.0"
  8583. },
  8584. "require-dev": {
  8585. "friendsofphp/php-cs-fixer": "^2.14",
  8586. "livewire/livewire": "^2.4",
  8587. "mockery/mockery": "^1.3",
  8588. "orchestra/testbench": "^5.0|^6.0",
  8589. "psalm/plugin-laravel": "^1.2"
  8590. },
  8591. "suggest": {
  8592. "laravel/telescope": "^3.1"
  8593. },
  8594. "type": "library",
  8595. "extra": {
  8596. "branch-alias": {
  8597. "dev-master": "2.x-dev"
  8598. },
  8599. "laravel": {
  8600. "providers": [
  8601. "Facade\\Ignition\\IgnitionServiceProvider"
  8602. ],
  8603. "aliases": {
  8604. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8605. }
  8606. }
  8607. },
  8608. "autoload": {
  8609. "files": [
  8610. "src/helpers.php"
  8611. ],
  8612. "psr-4": {
  8613. "Facade\\Ignition\\": "src"
  8614. }
  8615. },
  8616. "notification-url": "https://packagist.org/downloads/",
  8617. "license": [
  8618. "MIT"
  8619. ],
  8620. "description": "A beautiful error page for Laravel applications.",
  8621. "homepage": "https://github.com/facade/ignition",
  8622. "keywords": [
  8623. "error",
  8624. "flare",
  8625. "laravel",
  8626. "page"
  8627. ],
  8628. "support": {
  8629. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8630. "forum": "https://twitter.com/flareappio",
  8631. "issues": "https://github.com/facade/ignition/issues",
  8632. "source": "https://github.com/facade/ignition"
  8633. },
  8634. "time": "2023-01-26T12:34:59+00:00"
  8635. },
  8636. {
  8637. "name": "facade/ignition-contracts",
  8638. "version": "1.0.2",
  8639. "source": {
  8640. "type": "git",
  8641. "url": "https://github.com/facade/ignition-contracts.git",
  8642. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8643. },
  8644. "dist": {
  8645. "type": "zip",
  8646. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8647. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8648. "shasum": "",
  8649. "mirrors": [
  8650. {
  8651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8652. "preferred": true
  8653. }
  8654. ]
  8655. },
  8656. "require": {
  8657. "php": "^7.3|^8.0"
  8658. },
  8659. "require-dev": {
  8660. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8661. "phpunit/phpunit": "^9.3.11",
  8662. "vimeo/psalm": "^3.17.1"
  8663. },
  8664. "type": "library",
  8665. "autoload": {
  8666. "psr-4": {
  8667. "Facade\\IgnitionContracts\\": "src"
  8668. }
  8669. },
  8670. "notification-url": "https://packagist.org/downloads/",
  8671. "license": [
  8672. "MIT"
  8673. ],
  8674. "authors": [
  8675. {
  8676. "name": "Freek Van der Herten",
  8677. "email": "freek@spatie.be",
  8678. "homepage": "https://flareapp.io",
  8679. "role": "Developer"
  8680. }
  8681. ],
  8682. "description": "Solution contracts for Ignition",
  8683. "homepage": "https://github.com/facade/ignition-contracts",
  8684. "keywords": [
  8685. "contracts",
  8686. "flare",
  8687. "ignition"
  8688. ],
  8689. "support": {
  8690. "issues": "https://github.com/facade/ignition-contracts/issues",
  8691. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8692. },
  8693. "time": "2020-10-16T08:27:54+00:00"
  8694. },
  8695. {
  8696. "name": "fakerphp/faker",
  8697. "version": "v1.20.0",
  8698. "source": {
  8699. "type": "git",
  8700. "url": "https://github.com/FakerPHP/Faker.git",
  8701. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b"
  8702. },
  8703. "dist": {
  8704. "type": "zip",
  8705. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/37f751c67a5372d4e26353bd9384bc03744ec77b",
  8706. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b",
  8707. "shasum": "",
  8708. "mirrors": [
  8709. {
  8710. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8711. "preferred": true
  8712. }
  8713. ]
  8714. },
  8715. "require": {
  8716. "php": "^7.1 || ^8.0",
  8717. "psr/container": "^1.0 || ^2.0",
  8718. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8719. },
  8720. "conflict": {
  8721. "fzaninotto/faker": "*"
  8722. },
  8723. "require-dev": {
  8724. "bamarni/composer-bin-plugin": "^1.4.1",
  8725. "doctrine/persistence": "^1.3 || ^2.0",
  8726. "ext-intl": "*",
  8727. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  8728. },
  8729. "suggest": {
  8730. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8731. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8732. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8733. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8734. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8735. },
  8736. "type": "library",
  8737. "extra": {
  8738. "branch-alias": {
  8739. "dev-main": "v1.20-dev"
  8740. }
  8741. },
  8742. "autoload": {
  8743. "psr-4": {
  8744. "Faker\\": "src/Faker/"
  8745. }
  8746. },
  8747. "notification-url": "https://packagist.org/downloads/",
  8748. "license": [
  8749. "MIT"
  8750. ],
  8751. "authors": [
  8752. {
  8753. "name": "François Zaninotto"
  8754. }
  8755. ],
  8756. "description": "Faker is a PHP library that generates fake data for you.",
  8757. "keywords": [
  8758. "data",
  8759. "faker",
  8760. "fixtures"
  8761. ],
  8762. "support": {
  8763. "issues": "https://github.com/FakerPHP/Faker/issues",
  8764. "source": "https://github.com/FakerPHP/Faker/tree/v1.20.0"
  8765. },
  8766. "time": "2022-07-20T13:12:54+00:00"
  8767. },
  8768. {
  8769. "name": "filp/whoops",
  8770. "version": "2.15.1",
  8771. "source": {
  8772. "type": "git",
  8773. "url": "https://github.com/filp/whoops.git",
  8774. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b"
  8775. },
  8776. "dist": {
  8777. "type": "zip",
  8778. "url": "https://api.github.com/repos/filp/whoops/zipball/e864ac957acd66e1565f25efda61e37791a5db0b",
  8779. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b",
  8780. "shasum": "",
  8781. "mirrors": [
  8782. {
  8783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8784. "preferred": true
  8785. }
  8786. ]
  8787. },
  8788. "require": {
  8789. "php": "^5.5.9 || ^7.0 || ^8.0",
  8790. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8791. },
  8792. "require-dev": {
  8793. "mockery/mockery": "^0.9 || ^1.0",
  8794. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8795. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8796. },
  8797. "suggest": {
  8798. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8799. "whoops/soap": "Formats errors as SOAP responses"
  8800. },
  8801. "type": "library",
  8802. "extra": {
  8803. "branch-alias": {
  8804. "dev-master": "2.7-dev"
  8805. }
  8806. },
  8807. "autoload": {
  8808. "psr-4": {
  8809. "Whoops\\": "src/Whoops/"
  8810. }
  8811. },
  8812. "notification-url": "https://packagist.org/downloads/",
  8813. "license": [
  8814. "MIT"
  8815. ],
  8816. "authors": [
  8817. {
  8818. "name": "Filipe Dobreira",
  8819. "homepage": "https://github.com/filp",
  8820. "role": "Developer"
  8821. }
  8822. ],
  8823. "description": "php error handling for cool kids",
  8824. "homepage": "https://filp.github.io/whoops/",
  8825. "keywords": [
  8826. "error",
  8827. "exception",
  8828. "handling",
  8829. "library",
  8830. "throwable",
  8831. "whoops"
  8832. ],
  8833. "support": {
  8834. "issues": "https://github.com/filp/whoops/issues",
  8835. "source": "https://github.com/filp/whoops/tree/2.15.1"
  8836. },
  8837. "funding": [
  8838. {
  8839. "url": "https://github.com/denis-sokolov",
  8840. "type": "github"
  8841. }
  8842. ],
  8843. "time": "2023-03-06T18:09:13+00:00"
  8844. },
  8845. {
  8846. "name": "hamcrest/hamcrest-php",
  8847. "version": "v2.0.1",
  8848. "source": {
  8849. "type": "git",
  8850. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8851. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8852. },
  8853. "dist": {
  8854. "type": "zip",
  8855. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8856. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8857. "shasum": "",
  8858. "mirrors": [
  8859. {
  8860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8861. "preferred": true
  8862. }
  8863. ]
  8864. },
  8865. "require": {
  8866. "php": "^5.3|^7.0|^8.0"
  8867. },
  8868. "replace": {
  8869. "cordoval/hamcrest-php": "*",
  8870. "davedevelopment/hamcrest-php": "*",
  8871. "kodova/hamcrest-php": "*"
  8872. },
  8873. "require-dev": {
  8874. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8875. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8876. },
  8877. "type": "library",
  8878. "extra": {
  8879. "branch-alias": {
  8880. "dev-master": "2.1-dev"
  8881. }
  8882. },
  8883. "autoload": {
  8884. "classmap": [
  8885. "hamcrest"
  8886. ]
  8887. },
  8888. "notification-url": "https://packagist.org/downloads/",
  8889. "license": [
  8890. "BSD-3-Clause"
  8891. ],
  8892. "description": "This is the PHP port of Hamcrest Matchers",
  8893. "keywords": [
  8894. "test"
  8895. ],
  8896. "support": {
  8897. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8898. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8899. },
  8900. "time": "2020-07-09T08:09:16+00:00"
  8901. },
  8902. {
  8903. "name": "laravel/sail",
  8904. "version": "v1.19.0",
  8905. "source": {
  8906. "type": "git",
  8907. "url": "https://github.com/laravel/sail.git",
  8908. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  8909. },
  8910. "dist": {
  8911. "type": "zip",
  8912. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8913. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8914. "shasum": "",
  8915. "mirrors": [
  8916. {
  8917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8918. "preferred": true
  8919. }
  8920. ]
  8921. },
  8922. "require": {
  8923. "illuminate/console": "^8.0|^9.0|^10.0",
  8924. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8925. "illuminate/support": "^8.0|^9.0|^10.0",
  8926. "php": "^7.3|^8.0"
  8927. },
  8928. "bin": [
  8929. "bin/sail"
  8930. ],
  8931. "type": "library",
  8932. "extra": {
  8933. "branch-alias": {
  8934. "dev-master": "1.x-dev"
  8935. },
  8936. "laravel": {
  8937. "providers": [
  8938. "Laravel\\Sail\\SailServiceProvider"
  8939. ]
  8940. }
  8941. },
  8942. "autoload": {
  8943. "psr-4": {
  8944. "Laravel\\Sail\\": "src/"
  8945. }
  8946. },
  8947. "notification-url": "https://packagist.org/downloads/",
  8948. "license": [
  8949. "MIT"
  8950. ],
  8951. "authors": [
  8952. {
  8953. "name": "Taylor Otwell",
  8954. "email": "taylor@laravel.com"
  8955. }
  8956. ],
  8957. "description": "Docker files for running a basic Laravel application.",
  8958. "keywords": [
  8959. "docker",
  8960. "laravel"
  8961. ],
  8962. "support": {
  8963. "issues": "https://github.com/laravel/sail/issues",
  8964. "source": "https://github.com/laravel/sail"
  8965. },
  8966. "time": "2023-01-31T13:37:57+00:00"
  8967. },
  8968. {
  8969. "name": "mockery/mockery",
  8970. "version": "1.5.1",
  8971. "source": {
  8972. "type": "git",
  8973. "url": "https://github.com/mockery/mockery.git",
  8974. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  8975. },
  8976. "dist": {
  8977. "type": "zip",
  8978. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8979. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8980. "shasum": "",
  8981. "mirrors": [
  8982. {
  8983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8984. "preferred": true
  8985. }
  8986. ]
  8987. },
  8988. "require": {
  8989. "hamcrest/hamcrest-php": "^2.0.1",
  8990. "lib-pcre": ">=7.0",
  8991. "php": "^7.3 || ^8.0"
  8992. },
  8993. "conflict": {
  8994. "phpunit/phpunit": "<8.0"
  8995. },
  8996. "require-dev": {
  8997. "phpunit/phpunit": "^8.5 || ^9.3"
  8998. },
  8999. "type": "library",
  9000. "extra": {
  9001. "branch-alias": {
  9002. "dev-master": "1.4.x-dev"
  9003. }
  9004. },
  9005. "autoload": {
  9006. "psr-0": {
  9007. "Mockery": "library/"
  9008. }
  9009. },
  9010. "notification-url": "https://packagist.org/downloads/",
  9011. "license": [
  9012. "BSD-3-Clause"
  9013. ],
  9014. "authors": [
  9015. {
  9016. "name": "Pádraic Brady",
  9017. "email": "padraic.brady@gmail.com",
  9018. "homepage": "http://blog.astrumfutura.com"
  9019. },
  9020. {
  9021. "name": "Dave Marshall",
  9022. "email": "dave.marshall@atstsolutions.co.uk",
  9023. "homepage": "http://davedevelopment.co.uk"
  9024. }
  9025. ],
  9026. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9027. "homepage": "https://github.com/mockery/mockery",
  9028. "keywords": [
  9029. "BDD",
  9030. "TDD",
  9031. "library",
  9032. "mock",
  9033. "mock objects",
  9034. "mockery",
  9035. "stub",
  9036. "test",
  9037. "test double",
  9038. "testing"
  9039. ],
  9040. "support": {
  9041. "issues": "https://github.com/mockery/mockery/issues",
  9042. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  9043. },
  9044. "time": "2022-09-07T15:32:08+00:00"
  9045. },
  9046. {
  9047. "name": "myclabs/deep-copy",
  9048. "version": "1.11.1",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/myclabs/DeepCopy.git",
  9052. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9057. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9058. "shasum": "",
  9059. "mirrors": [
  9060. {
  9061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9062. "preferred": true
  9063. }
  9064. ]
  9065. },
  9066. "require": {
  9067. "php": "^7.1 || ^8.0"
  9068. },
  9069. "conflict": {
  9070. "doctrine/collections": "<1.6.8",
  9071. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9072. },
  9073. "require-dev": {
  9074. "doctrine/collections": "^1.6.8",
  9075. "doctrine/common": "^2.13.3 || ^3.2.2",
  9076. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9077. },
  9078. "type": "library",
  9079. "autoload": {
  9080. "files": [
  9081. "src/DeepCopy/deep_copy.php"
  9082. ],
  9083. "psr-4": {
  9084. "DeepCopy\\": "src/DeepCopy/"
  9085. }
  9086. },
  9087. "notification-url": "https://packagist.org/downloads/",
  9088. "license": [
  9089. "MIT"
  9090. ],
  9091. "description": "Create deep copies (clones) of your objects",
  9092. "keywords": [
  9093. "clone",
  9094. "copy",
  9095. "duplicate",
  9096. "object",
  9097. "object graph"
  9098. ],
  9099. "support": {
  9100. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9101. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9102. },
  9103. "funding": [
  9104. {
  9105. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9106. "type": "tidelift"
  9107. }
  9108. ],
  9109. "time": "2023-03-08T13:26:56+00:00"
  9110. },
  9111. {
  9112. "name": "nunomaduro/collision",
  9113. "version": "v5.11.0",
  9114. "source": {
  9115. "type": "git",
  9116. "url": "https://github.com/nunomaduro/collision.git",
  9117. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  9118. },
  9119. "dist": {
  9120. "type": "zip",
  9121. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9122. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9123. "shasum": "",
  9124. "mirrors": [
  9125. {
  9126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9127. "preferred": true
  9128. }
  9129. ]
  9130. },
  9131. "require": {
  9132. "facade/ignition-contracts": "^1.0",
  9133. "filp/whoops": "^2.14.3",
  9134. "php": "^7.3 || ^8.0",
  9135. "symfony/console": "^5.0"
  9136. },
  9137. "require-dev": {
  9138. "brianium/paratest": "^6.1",
  9139. "fideloper/proxy": "^4.4.1",
  9140. "fruitcake/laravel-cors": "^2.0.3",
  9141. "laravel/framework": "8.x-dev",
  9142. "nunomaduro/larastan": "^0.6.2",
  9143. "nunomaduro/mock-final-classes": "^1.0",
  9144. "orchestra/testbench": "^6.0",
  9145. "phpstan/phpstan": "^0.12.64",
  9146. "phpunit/phpunit": "^9.5.0"
  9147. },
  9148. "type": "library",
  9149. "extra": {
  9150. "laravel": {
  9151. "providers": [
  9152. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9153. ]
  9154. }
  9155. },
  9156. "autoload": {
  9157. "psr-4": {
  9158. "NunoMaduro\\Collision\\": "src/"
  9159. }
  9160. },
  9161. "notification-url": "https://packagist.org/downloads/",
  9162. "license": [
  9163. "MIT"
  9164. ],
  9165. "authors": [
  9166. {
  9167. "name": "Nuno Maduro",
  9168. "email": "enunomaduro@gmail.com"
  9169. }
  9170. ],
  9171. "description": "Cli error handling for console/command-line PHP applications.",
  9172. "keywords": [
  9173. "artisan",
  9174. "cli",
  9175. "command-line",
  9176. "console",
  9177. "error",
  9178. "handling",
  9179. "laravel",
  9180. "laravel-zero",
  9181. "php",
  9182. "symfony"
  9183. ],
  9184. "support": {
  9185. "issues": "https://github.com/nunomaduro/collision/issues",
  9186. "source": "https://github.com/nunomaduro/collision"
  9187. },
  9188. "funding": [
  9189. {
  9190. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9191. "type": "custom"
  9192. },
  9193. {
  9194. "url": "https://github.com/nunomaduro",
  9195. "type": "github"
  9196. },
  9197. {
  9198. "url": "https://www.patreon.com/nunomaduro",
  9199. "type": "patreon"
  9200. }
  9201. ],
  9202. "time": "2022-01-10T16:22:52+00:00"
  9203. },
  9204. {
  9205. "name": "phar-io/manifest",
  9206. "version": "2.0.3",
  9207. "source": {
  9208. "type": "git",
  9209. "url": "https://github.com/phar-io/manifest.git",
  9210. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9211. },
  9212. "dist": {
  9213. "type": "zip",
  9214. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9215. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9216. "shasum": "",
  9217. "mirrors": [
  9218. {
  9219. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9220. "preferred": true
  9221. }
  9222. ]
  9223. },
  9224. "require": {
  9225. "ext-dom": "*",
  9226. "ext-phar": "*",
  9227. "ext-xmlwriter": "*",
  9228. "phar-io/version": "^3.0.1",
  9229. "php": "^7.2 || ^8.0"
  9230. },
  9231. "type": "library",
  9232. "extra": {
  9233. "branch-alias": {
  9234. "dev-master": "2.0.x-dev"
  9235. }
  9236. },
  9237. "autoload": {
  9238. "classmap": [
  9239. "src/"
  9240. ]
  9241. },
  9242. "notification-url": "https://packagist.org/downloads/",
  9243. "license": [
  9244. "BSD-3-Clause"
  9245. ],
  9246. "authors": [
  9247. {
  9248. "name": "Arne Blankerts",
  9249. "email": "arne@blankerts.de",
  9250. "role": "Developer"
  9251. },
  9252. {
  9253. "name": "Sebastian Heuer",
  9254. "email": "sebastian@phpeople.de",
  9255. "role": "Developer"
  9256. },
  9257. {
  9258. "name": "Sebastian Bergmann",
  9259. "email": "sebastian@phpunit.de",
  9260. "role": "Developer"
  9261. }
  9262. ],
  9263. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9264. "support": {
  9265. "issues": "https://github.com/phar-io/manifest/issues",
  9266. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9267. },
  9268. "time": "2021-07-20T11:28:43+00:00"
  9269. },
  9270. {
  9271. "name": "phar-io/version",
  9272. "version": "3.2.1",
  9273. "source": {
  9274. "type": "git",
  9275. "url": "https://github.com/phar-io/version.git",
  9276. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9277. },
  9278. "dist": {
  9279. "type": "zip",
  9280. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9281. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9282. "shasum": "",
  9283. "mirrors": [
  9284. {
  9285. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9286. "preferred": true
  9287. }
  9288. ]
  9289. },
  9290. "require": {
  9291. "php": "^7.2 || ^8.0"
  9292. },
  9293. "type": "library",
  9294. "autoload": {
  9295. "classmap": [
  9296. "src/"
  9297. ]
  9298. },
  9299. "notification-url": "https://packagist.org/downloads/",
  9300. "license": [
  9301. "BSD-3-Clause"
  9302. ],
  9303. "authors": [
  9304. {
  9305. "name": "Arne Blankerts",
  9306. "email": "arne@blankerts.de",
  9307. "role": "Developer"
  9308. },
  9309. {
  9310. "name": "Sebastian Heuer",
  9311. "email": "sebastian@phpeople.de",
  9312. "role": "Developer"
  9313. },
  9314. {
  9315. "name": "Sebastian Bergmann",
  9316. "email": "sebastian@phpunit.de",
  9317. "role": "Developer"
  9318. }
  9319. ],
  9320. "description": "Library for handling version information and constraints",
  9321. "support": {
  9322. "issues": "https://github.com/phar-io/version/issues",
  9323. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9324. },
  9325. "time": "2022-02-21T01:04:05+00:00"
  9326. },
  9327. {
  9328. "name": "phpunit/php-code-coverage",
  9329. "version": "9.2.26",
  9330. "source": {
  9331. "type": "git",
  9332. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9333. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  9334. },
  9335. "dist": {
  9336. "type": "zip",
  9337. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9338. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9339. "shasum": "",
  9340. "mirrors": [
  9341. {
  9342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9343. "preferred": true
  9344. }
  9345. ]
  9346. },
  9347. "require": {
  9348. "ext-dom": "*",
  9349. "ext-libxml": "*",
  9350. "ext-xmlwriter": "*",
  9351. "nikic/php-parser": "^4.15",
  9352. "php": ">=7.3",
  9353. "phpunit/php-file-iterator": "^3.0.3",
  9354. "phpunit/php-text-template": "^2.0.2",
  9355. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9356. "sebastian/complexity": "^2.0",
  9357. "sebastian/environment": "^5.1.2",
  9358. "sebastian/lines-of-code": "^1.0.3",
  9359. "sebastian/version": "^3.0.1",
  9360. "theseer/tokenizer": "^1.2.0"
  9361. },
  9362. "require-dev": {
  9363. "phpunit/phpunit": "^9.3"
  9364. },
  9365. "suggest": {
  9366. "ext-pcov": "PHP extension that provides line coverage",
  9367. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9368. },
  9369. "type": "library",
  9370. "extra": {
  9371. "branch-alias": {
  9372. "dev-master": "9.2-dev"
  9373. }
  9374. },
  9375. "autoload": {
  9376. "classmap": [
  9377. "src/"
  9378. ]
  9379. },
  9380. "notification-url": "https://packagist.org/downloads/",
  9381. "license": [
  9382. "BSD-3-Clause"
  9383. ],
  9384. "authors": [
  9385. {
  9386. "name": "Sebastian Bergmann",
  9387. "email": "sebastian@phpunit.de",
  9388. "role": "lead"
  9389. }
  9390. ],
  9391. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9392. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9393. "keywords": [
  9394. "coverage",
  9395. "testing",
  9396. "xunit"
  9397. ],
  9398. "support": {
  9399. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9400. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  9401. },
  9402. "funding": [
  9403. {
  9404. "url": "https://github.com/sebastianbergmann",
  9405. "type": "github"
  9406. }
  9407. ],
  9408. "time": "2023-03-06T12:58:08+00:00"
  9409. },
  9410. {
  9411. "name": "phpunit/php-file-iterator",
  9412. "version": "3.0.6",
  9413. "source": {
  9414. "type": "git",
  9415. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9416. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9417. },
  9418. "dist": {
  9419. "type": "zip",
  9420. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9421. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9422. "shasum": "",
  9423. "mirrors": [
  9424. {
  9425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9426. "preferred": true
  9427. }
  9428. ]
  9429. },
  9430. "require": {
  9431. "php": ">=7.3"
  9432. },
  9433. "require-dev": {
  9434. "phpunit/phpunit": "^9.3"
  9435. },
  9436. "type": "library",
  9437. "extra": {
  9438. "branch-alias": {
  9439. "dev-master": "3.0-dev"
  9440. }
  9441. },
  9442. "autoload": {
  9443. "classmap": [
  9444. "src/"
  9445. ]
  9446. },
  9447. "notification-url": "https://packagist.org/downloads/",
  9448. "license": [
  9449. "BSD-3-Clause"
  9450. ],
  9451. "authors": [
  9452. {
  9453. "name": "Sebastian Bergmann",
  9454. "email": "sebastian@phpunit.de",
  9455. "role": "lead"
  9456. }
  9457. ],
  9458. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9459. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9460. "keywords": [
  9461. "filesystem",
  9462. "iterator"
  9463. ],
  9464. "support": {
  9465. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9466. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9467. },
  9468. "funding": [
  9469. {
  9470. "url": "https://github.com/sebastianbergmann",
  9471. "type": "github"
  9472. }
  9473. ],
  9474. "time": "2021-12-02T12:48:52+00:00"
  9475. },
  9476. {
  9477. "name": "phpunit/php-invoker",
  9478. "version": "3.1.1",
  9479. "source": {
  9480. "type": "git",
  9481. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9482. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9483. },
  9484. "dist": {
  9485. "type": "zip",
  9486. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9487. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9488. "shasum": "",
  9489. "mirrors": [
  9490. {
  9491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9492. "preferred": true
  9493. }
  9494. ]
  9495. },
  9496. "require": {
  9497. "php": ">=7.3"
  9498. },
  9499. "require-dev": {
  9500. "ext-pcntl": "*",
  9501. "phpunit/phpunit": "^9.3"
  9502. },
  9503. "suggest": {
  9504. "ext-pcntl": "*"
  9505. },
  9506. "type": "library",
  9507. "extra": {
  9508. "branch-alias": {
  9509. "dev-master": "3.1-dev"
  9510. }
  9511. },
  9512. "autoload": {
  9513. "classmap": [
  9514. "src/"
  9515. ]
  9516. },
  9517. "notification-url": "https://packagist.org/downloads/",
  9518. "license": [
  9519. "BSD-3-Clause"
  9520. ],
  9521. "authors": [
  9522. {
  9523. "name": "Sebastian Bergmann",
  9524. "email": "sebastian@phpunit.de",
  9525. "role": "lead"
  9526. }
  9527. ],
  9528. "description": "Invoke callables with a timeout",
  9529. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9530. "keywords": [
  9531. "process"
  9532. ],
  9533. "support": {
  9534. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9535. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9536. },
  9537. "funding": [
  9538. {
  9539. "url": "https://github.com/sebastianbergmann",
  9540. "type": "github"
  9541. }
  9542. ],
  9543. "time": "2020-09-28T05:58:55+00:00"
  9544. },
  9545. {
  9546. "name": "phpunit/php-text-template",
  9547. "version": "2.0.4",
  9548. "source": {
  9549. "type": "git",
  9550. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9551. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9552. },
  9553. "dist": {
  9554. "type": "zip",
  9555. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9556. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9557. "shasum": "",
  9558. "mirrors": [
  9559. {
  9560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9561. "preferred": true
  9562. }
  9563. ]
  9564. },
  9565. "require": {
  9566. "php": ">=7.3"
  9567. },
  9568. "require-dev": {
  9569. "phpunit/phpunit": "^9.3"
  9570. },
  9571. "type": "library",
  9572. "extra": {
  9573. "branch-alias": {
  9574. "dev-master": "2.0-dev"
  9575. }
  9576. },
  9577. "autoload": {
  9578. "classmap": [
  9579. "src/"
  9580. ]
  9581. },
  9582. "notification-url": "https://packagist.org/downloads/",
  9583. "license": [
  9584. "BSD-3-Clause"
  9585. ],
  9586. "authors": [
  9587. {
  9588. "name": "Sebastian Bergmann",
  9589. "email": "sebastian@phpunit.de",
  9590. "role": "lead"
  9591. }
  9592. ],
  9593. "description": "Simple template engine.",
  9594. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9595. "keywords": [
  9596. "template"
  9597. ],
  9598. "support": {
  9599. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9600. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9601. },
  9602. "funding": [
  9603. {
  9604. "url": "https://github.com/sebastianbergmann",
  9605. "type": "github"
  9606. }
  9607. ],
  9608. "time": "2020-10-26T05:33:50+00:00"
  9609. },
  9610. {
  9611. "name": "phpunit/php-timer",
  9612. "version": "5.0.3",
  9613. "source": {
  9614. "type": "git",
  9615. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9616. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9617. },
  9618. "dist": {
  9619. "type": "zip",
  9620. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9621. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9622. "shasum": "",
  9623. "mirrors": [
  9624. {
  9625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9626. "preferred": true
  9627. }
  9628. ]
  9629. },
  9630. "require": {
  9631. "php": ">=7.3"
  9632. },
  9633. "require-dev": {
  9634. "phpunit/phpunit": "^9.3"
  9635. },
  9636. "type": "library",
  9637. "extra": {
  9638. "branch-alias": {
  9639. "dev-master": "5.0-dev"
  9640. }
  9641. },
  9642. "autoload": {
  9643. "classmap": [
  9644. "src/"
  9645. ]
  9646. },
  9647. "notification-url": "https://packagist.org/downloads/",
  9648. "license": [
  9649. "BSD-3-Clause"
  9650. ],
  9651. "authors": [
  9652. {
  9653. "name": "Sebastian Bergmann",
  9654. "email": "sebastian@phpunit.de",
  9655. "role": "lead"
  9656. }
  9657. ],
  9658. "description": "Utility class for timing",
  9659. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9660. "keywords": [
  9661. "timer"
  9662. ],
  9663. "support": {
  9664. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9665. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9666. },
  9667. "funding": [
  9668. {
  9669. "url": "https://github.com/sebastianbergmann",
  9670. "type": "github"
  9671. }
  9672. ],
  9673. "time": "2020-10-26T13:16:10+00:00"
  9674. },
  9675. {
  9676. "name": "phpunit/phpunit",
  9677. "version": "9.6.4",
  9678. "source": {
  9679. "type": "git",
  9680. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9681. "reference": "9125ee085b6d95e78277dc07aa1f46f9e0607b8d"
  9682. },
  9683. "dist": {
  9684. "type": "zip",
  9685. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9125ee085b6d95e78277dc07aa1f46f9e0607b8d",
  9686. "reference": "9125ee085b6d95e78277dc07aa1f46f9e0607b8d",
  9687. "shasum": "",
  9688. "mirrors": [
  9689. {
  9690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9691. "preferred": true
  9692. }
  9693. ]
  9694. },
  9695. "require": {
  9696. "doctrine/instantiator": "^1.3.1 || ^2",
  9697. "ext-dom": "*",
  9698. "ext-json": "*",
  9699. "ext-libxml": "*",
  9700. "ext-mbstring": "*",
  9701. "ext-xml": "*",
  9702. "ext-xmlwriter": "*",
  9703. "myclabs/deep-copy": "^1.10.1",
  9704. "phar-io/manifest": "^2.0.3",
  9705. "phar-io/version": "^3.0.2",
  9706. "php": ">=7.3",
  9707. "phpunit/php-code-coverage": "^9.2.13",
  9708. "phpunit/php-file-iterator": "^3.0.5",
  9709. "phpunit/php-invoker": "^3.1.1",
  9710. "phpunit/php-text-template": "^2.0.3",
  9711. "phpunit/php-timer": "^5.0.2",
  9712. "sebastian/cli-parser": "^1.0.1",
  9713. "sebastian/code-unit": "^1.0.6",
  9714. "sebastian/comparator": "^4.0.8",
  9715. "sebastian/diff": "^4.0.3",
  9716. "sebastian/environment": "^5.1.3",
  9717. "sebastian/exporter": "^4.0.5",
  9718. "sebastian/global-state": "^5.0.1",
  9719. "sebastian/object-enumerator": "^4.0.3",
  9720. "sebastian/resource-operations": "^3.0.3",
  9721. "sebastian/type": "^3.2",
  9722. "sebastian/version": "^3.0.2"
  9723. },
  9724. "suggest": {
  9725. "ext-soap": "*",
  9726. "ext-xdebug": "*"
  9727. },
  9728. "bin": [
  9729. "phpunit"
  9730. ],
  9731. "type": "library",
  9732. "extra": {
  9733. "branch-alias": {
  9734. "dev-master": "9.6-dev"
  9735. }
  9736. },
  9737. "autoload": {
  9738. "files": [
  9739. "src/Framework/Assert/Functions.php"
  9740. ],
  9741. "classmap": [
  9742. "src/"
  9743. ]
  9744. },
  9745. "notification-url": "https://packagist.org/downloads/",
  9746. "license": [
  9747. "BSD-3-Clause"
  9748. ],
  9749. "authors": [
  9750. {
  9751. "name": "Sebastian Bergmann",
  9752. "email": "sebastian@phpunit.de",
  9753. "role": "lead"
  9754. }
  9755. ],
  9756. "description": "The PHP Unit Testing framework.",
  9757. "homepage": "https://phpunit.de/",
  9758. "keywords": [
  9759. "phpunit",
  9760. "testing",
  9761. "xunit"
  9762. ],
  9763. "support": {
  9764. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9765. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.4"
  9766. },
  9767. "funding": [
  9768. {
  9769. "url": "https://phpunit.de/sponsors.html",
  9770. "type": "custom"
  9771. },
  9772. {
  9773. "url": "https://github.com/sebastianbergmann",
  9774. "type": "github"
  9775. },
  9776. {
  9777. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9778. "type": "tidelift"
  9779. }
  9780. ],
  9781. "time": "2023-02-27T13:06:37+00:00"
  9782. },
  9783. {
  9784. "name": "sebastian/cli-parser",
  9785. "version": "1.0.1",
  9786. "source": {
  9787. "type": "git",
  9788. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9789. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9790. },
  9791. "dist": {
  9792. "type": "zip",
  9793. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9794. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9795. "shasum": "",
  9796. "mirrors": [
  9797. {
  9798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9799. "preferred": true
  9800. }
  9801. ]
  9802. },
  9803. "require": {
  9804. "php": ">=7.3"
  9805. },
  9806. "require-dev": {
  9807. "phpunit/phpunit": "^9.3"
  9808. },
  9809. "type": "library",
  9810. "extra": {
  9811. "branch-alias": {
  9812. "dev-master": "1.0-dev"
  9813. }
  9814. },
  9815. "autoload": {
  9816. "classmap": [
  9817. "src/"
  9818. ]
  9819. },
  9820. "notification-url": "https://packagist.org/downloads/",
  9821. "license": [
  9822. "BSD-3-Clause"
  9823. ],
  9824. "authors": [
  9825. {
  9826. "name": "Sebastian Bergmann",
  9827. "email": "sebastian@phpunit.de",
  9828. "role": "lead"
  9829. }
  9830. ],
  9831. "description": "Library for parsing CLI options",
  9832. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9833. "support": {
  9834. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9835. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9836. },
  9837. "funding": [
  9838. {
  9839. "url": "https://github.com/sebastianbergmann",
  9840. "type": "github"
  9841. }
  9842. ],
  9843. "time": "2020-09-28T06:08:49+00:00"
  9844. },
  9845. {
  9846. "name": "sebastian/code-unit",
  9847. "version": "1.0.8",
  9848. "source": {
  9849. "type": "git",
  9850. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9851. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9852. },
  9853. "dist": {
  9854. "type": "zip",
  9855. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9856. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9857. "shasum": "",
  9858. "mirrors": [
  9859. {
  9860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9861. "preferred": true
  9862. }
  9863. ]
  9864. },
  9865. "require": {
  9866. "php": ">=7.3"
  9867. },
  9868. "require-dev": {
  9869. "phpunit/phpunit": "^9.3"
  9870. },
  9871. "type": "library",
  9872. "extra": {
  9873. "branch-alias": {
  9874. "dev-master": "1.0-dev"
  9875. }
  9876. },
  9877. "autoload": {
  9878. "classmap": [
  9879. "src/"
  9880. ]
  9881. },
  9882. "notification-url": "https://packagist.org/downloads/",
  9883. "license": [
  9884. "BSD-3-Clause"
  9885. ],
  9886. "authors": [
  9887. {
  9888. "name": "Sebastian Bergmann",
  9889. "email": "sebastian@phpunit.de",
  9890. "role": "lead"
  9891. }
  9892. ],
  9893. "description": "Collection of value objects that represent the PHP code units",
  9894. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9895. "support": {
  9896. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9897. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9898. },
  9899. "funding": [
  9900. {
  9901. "url": "https://github.com/sebastianbergmann",
  9902. "type": "github"
  9903. }
  9904. ],
  9905. "time": "2020-10-26T13:08:54+00:00"
  9906. },
  9907. {
  9908. "name": "sebastian/code-unit-reverse-lookup",
  9909. "version": "2.0.3",
  9910. "source": {
  9911. "type": "git",
  9912. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9913. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9914. },
  9915. "dist": {
  9916. "type": "zip",
  9917. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9918. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9919. "shasum": "",
  9920. "mirrors": [
  9921. {
  9922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9923. "preferred": true
  9924. }
  9925. ]
  9926. },
  9927. "require": {
  9928. "php": ">=7.3"
  9929. },
  9930. "require-dev": {
  9931. "phpunit/phpunit": "^9.3"
  9932. },
  9933. "type": "library",
  9934. "extra": {
  9935. "branch-alias": {
  9936. "dev-master": "2.0-dev"
  9937. }
  9938. },
  9939. "autoload": {
  9940. "classmap": [
  9941. "src/"
  9942. ]
  9943. },
  9944. "notification-url": "https://packagist.org/downloads/",
  9945. "license": [
  9946. "BSD-3-Clause"
  9947. ],
  9948. "authors": [
  9949. {
  9950. "name": "Sebastian Bergmann",
  9951. "email": "sebastian@phpunit.de"
  9952. }
  9953. ],
  9954. "description": "Looks up which function or method a line of code belongs to",
  9955. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9956. "support": {
  9957. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9958. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9959. },
  9960. "funding": [
  9961. {
  9962. "url": "https://github.com/sebastianbergmann",
  9963. "type": "github"
  9964. }
  9965. ],
  9966. "time": "2020-09-28T05:30:19+00:00"
  9967. },
  9968. {
  9969. "name": "sebastian/comparator",
  9970. "version": "4.0.8",
  9971. "source": {
  9972. "type": "git",
  9973. "url": "https://github.com/sebastianbergmann/comparator.git",
  9974. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9975. },
  9976. "dist": {
  9977. "type": "zip",
  9978. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9979. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9980. "shasum": "",
  9981. "mirrors": [
  9982. {
  9983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9984. "preferred": true
  9985. }
  9986. ]
  9987. },
  9988. "require": {
  9989. "php": ">=7.3",
  9990. "sebastian/diff": "^4.0",
  9991. "sebastian/exporter": "^4.0"
  9992. },
  9993. "require-dev": {
  9994. "phpunit/phpunit": "^9.3"
  9995. },
  9996. "type": "library",
  9997. "extra": {
  9998. "branch-alias": {
  9999. "dev-master": "4.0-dev"
  10000. }
  10001. },
  10002. "autoload": {
  10003. "classmap": [
  10004. "src/"
  10005. ]
  10006. },
  10007. "notification-url": "https://packagist.org/downloads/",
  10008. "license": [
  10009. "BSD-3-Clause"
  10010. ],
  10011. "authors": [
  10012. {
  10013. "name": "Sebastian Bergmann",
  10014. "email": "sebastian@phpunit.de"
  10015. },
  10016. {
  10017. "name": "Jeff Welch",
  10018. "email": "whatthejeff@gmail.com"
  10019. },
  10020. {
  10021. "name": "Volker Dusch",
  10022. "email": "github@wallbash.com"
  10023. },
  10024. {
  10025. "name": "Bernhard Schussek",
  10026. "email": "bschussek@2bepublished.at"
  10027. }
  10028. ],
  10029. "description": "Provides the functionality to compare PHP values for equality",
  10030. "homepage": "https://github.com/sebastianbergmann/comparator",
  10031. "keywords": [
  10032. "comparator",
  10033. "compare",
  10034. "equality"
  10035. ],
  10036. "support": {
  10037. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10038. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10039. },
  10040. "funding": [
  10041. {
  10042. "url": "https://github.com/sebastianbergmann",
  10043. "type": "github"
  10044. }
  10045. ],
  10046. "time": "2022-09-14T12:41:17+00:00"
  10047. },
  10048. {
  10049. "name": "sebastian/complexity",
  10050. "version": "2.0.2",
  10051. "source": {
  10052. "type": "git",
  10053. "url": "https://github.com/sebastianbergmann/complexity.git",
  10054. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10055. },
  10056. "dist": {
  10057. "type": "zip",
  10058. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10059. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10060. "shasum": "",
  10061. "mirrors": [
  10062. {
  10063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10064. "preferred": true
  10065. }
  10066. ]
  10067. },
  10068. "require": {
  10069. "nikic/php-parser": "^4.7",
  10070. "php": ">=7.3"
  10071. },
  10072. "require-dev": {
  10073. "phpunit/phpunit": "^9.3"
  10074. },
  10075. "type": "library",
  10076. "extra": {
  10077. "branch-alias": {
  10078. "dev-master": "2.0-dev"
  10079. }
  10080. },
  10081. "autoload": {
  10082. "classmap": [
  10083. "src/"
  10084. ]
  10085. },
  10086. "notification-url": "https://packagist.org/downloads/",
  10087. "license": [
  10088. "BSD-3-Clause"
  10089. ],
  10090. "authors": [
  10091. {
  10092. "name": "Sebastian Bergmann",
  10093. "email": "sebastian@phpunit.de",
  10094. "role": "lead"
  10095. }
  10096. ],
  10097. "description": "Library for calculating the complexity of PHP code units",
  10098. "homepage": "https://github.com/sebastianbergmann/complexity",
  10099. "support": {
  10100. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10101. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10102. },
  10103. "funding": [
  10104. {
  10105. "url": "https://github.com/sebastianbergmann",
  10106. "type": "github"
  10107. }
  10108. ],
  10109. "time": "2020-10-26T15:52:27+00:00"
  10110. },
  10111. {
  10112. "name": "sebastian/diff",
  10113. "version": "4.0.4",
  10114. "source": {
  10115. "type": "git",
  10116. "url": "https://github.com/sebastianbergmann/diff.git",
  10117. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10118. },
  10119. "dist": {
  10120. "type": "zip",
  10121. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10122. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10123. "shasum": "",
  10124. "mirrors": [
  10125. {
  10126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10127. "preferred": true
  10128. }
  10129. ]
  10130. },
  10131. "require": {
  10132. "php": ">=7.3"
  10133. },
  10134. "require-dev": {
  10135. "phpunit/phpunit": "^9.3",
  10136. "symfony/process": "^4.2 || ^5"
  10137. },
  10138. "type": "library",
  10139. "extra": {
  10140. "branch-alias": {
  10141. "dev-master": "4.0-dev"
  10142. }
  10143. },
  10144. "autoload": {
  10145. "classmap": [
  10146. "src/"
  10147. ]
  10148. },
  10149. "notification-url": "https://packagist.org/downloads/",
  10150. "license": [
  10151. "BSD-3-Clause"
  10152. ],
  10153. "authors": [
  10154. {
  10155. "name": "Sebastian Bergmann",
  10156. "email": "sebastian@phpunit.de"
  10157. },
  10158. {
  10159. "name": "Kore Nordmann",
  10160. "email": "mail@kore-nordmann.de"
  10161. }
  10162. ],
  10163. "description": "Diff implementation",
  10164. "homepage": "https://github.com/sebastianbergmann/diff",
  10165. "keywords": [
  10166. "diff",
  10167. "udiff",
  10168. "unidiff",
  10169. "unified diff"
  10170. ],
  10171. "support": {
  10172. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10173. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10174. },
  10175. "funding": [
  10176. {
  10177. "url": "https://github.com/sebastianbergmann",
  10178. "type": "github"
  10179. }
  10180. ],
  10181. "time": "2020-10-26T13:10:38+00:00"
  10182. },
  10183. {
  10184. "name": "sebastian/environment",
  10185. "version": "5.1.5",
  10186. "source": {
  10187. "type": "git",
  10188. "url": "https://github.com/sebastianbergmann/environment.git",
  10189. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10190. },
  10191. "dist": {
  10192. "type": "zip",
  10193. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10194. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10195. "shasum": "",
  10196. "mirrors": [
  10197. {
  10198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10199. "preferred": true
  10200. }
  10201. ]
  10202. },
  10203. "require": {
  10204. "php": ">=7.3"
  10205. },
  10206. "require-dev": {
  10207. "phpunit/phpunit": "^9.3"
  10208. },
  10209. "suggest": {
  10210. "ext-posix": "*"
  10211. },
  10212. "type": "library",
  10213. "extra": {
  10214. "branch-alias": {
  10215. "dev-master": "5.1-dev"
  10216. }
  10217. },
  10218. "autoload": {
  10219. "classmap": [
  10220. "src/"
  10221. ]
  10222. },
  10223. "notification-url": "https://packagist.org/downloads/",
  10224. "license": [
  10225. "BSD-3-Clause"
  10226. ],
  10227. "authors": [
  10228. {
  10229. "name": "Sebastian Bergmann",
  10230. "email": "sebastian@phpunit.de"
  10231. }
  10232. ],
  10233. "description": "Provides functionality to handle HHVM/PHP environments",
  10234. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10235. "keywords": [
  10236. "Xdebug",
  10237. "environment",
  10238. "hhvm"
  10239. ],
  10240. "support": {
  10241. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10242. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10243. },
  10244. "funding": [
  10245. {
  10246. "url": "https://github.com/sebastianbergmann",
  10247. "type": "github"
  10248. }
  10249. ],
  10250. "time": "2023-02-03T06:03:51+00:00"
  10251. },
  10252. {
  10253. "name": "sebastian/exporter",
  10254. "version": "4.0.5",
  10255. "source": {
  10256. "type": "git",
  10257. "url": "https://github.com/sebastianbergmann/exporter.git",
  10258. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10259. },
  10260. "dist": {
  10261. "type": "zip",
  10262. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10263. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10264. "shasum": "",
  10265. "mirrors": [
  10266. {
  10267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10268. "preferred": true
  10269. }
  10270. ]
  10271. },
  10272. "require": {
  10273. "php": ">=7.3",
  10274. "sebastian/recursion-context": "^4.0"
  10275. },
  10276. "require-dev": {
  10277. "ext-mbstring": "*",
  10278. "phpunit/phpunit": "^9.3"
  10279. },
  10280. "type": "library",
  10281. "extra": {
  10282. "branch-alias": {
  10283. "dev-master": "4.0-dev"
  10284. }
  10285. },
  10286. "autoload": {
  10287. "classmap": [
  10288. "src/"
  10289. ]
  10290. },
  10291. "notification-url": "https://packagist.org/downloads/",
  10292. "license": [
  10293. "BSD-3-Clause"
  10294. ],
  10295. "authors": [
  10296. {
  10297. "name": "Sebastian Bergmann",
  10298. "email": "sebastian@phpunit.de"
  10299. },
  10300. {
  10301. "name": "Jeff Welch",
  10302. "email": "whatthejeff@gmail.com"
  10303. },
  10304. {
  10305. "name": "Volker Dusch",
  10306. "email": "github@wallbash.com"
  10307. },
  10308. {
  10309. "name": "Adam Harvey",
  10310. "email": "aharvey@php.net"
  10311. },
  10312. {
  10313. "name": "Bernhard Schussek",
  10314. "email": "bschussek@gmail.com"
  10315. }
  10316. ],
  10317. "description": "Provides the functionality to export PHP variables for visualization",
  10318. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10319. "keywords": [
  10320. "export",
  10321. "exporter"
  10322. ],
  10323. "support": {
  10324. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10325. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10326. },
  10327. "funding": [
  10328. {
  10329. "url": "https://github.com/sebastianbergmann",
  10330. "type": "github"
  10331. }
  10332. ],
  10333. "time": "2022-09-14T06:03:37+00:00"
  10334. },
  10335. {
  10336. "name": "sebastian/global-state",
  10337. "version": "5.0.5",
  10338. "source": {
  10339. "type": "git",
  10340. "url": "https://github.com/sebastianbergmann/global-state.git",
  10341. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  10342. },
  10343. "dist": {
  10344. "type": "zip",
  10345. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10346. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10347. "shasum": "",
  10348. "mirrors": [
  10349. {
  10350. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10351. "preferred": true
  10352. }
  10353. ]
  10354. },
  10355. "require": {
  10356. "php": ">=7.3",
  10357. "sebastian/object-reflector": "^2.0",
  10358. "sebastian/recursion-context": "^4.0"
  10359. },
  10360. "require-dev": {
  10361. "ext-dom": "*",
  10362. "phpunit/phpunit": "^9.3"
  10363. },
  10364. "suggest": {
  10365. "ext-uopz": "*"
  10366. },
  10367. "type": "library",
  10368. "extra": {
  10369. "branch-alias": {
  10370. "dev-master": "5.0-dev"
  10371. }
  10372. },
  10373. "autoload": {
  10374. "classmap": [
  10375. "src/"
  10376. ]
  10377. },
  10378. "notification-url": "https://packagist.org/downloads/",
  10379. "license": [
  10380. "BSD-3-Clause"
  10381. ],
  10382. "authors": [
  10383. {
  10384. "name": "Sebastian Bergmann",
  10385. "email": "sebastian@phpunit.de"
  10386. }
  10387. ],
  10388. "description": "Snapshotting of global state",
  10389. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10390. "keywords": [
  10391. "global state"
  10392. ],
  10393. "support": {
  10394. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10395. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  10396. },
  10397. "funding": [
  10398. {
  10399. "url": "https://github.com/sebastianbergmann",
  10400. "type": "github"
  10401. }
  10402. ],
  10403. "time": "2022-02-14T08:28:10+00:00"
  10404. },
  10405. {
  10406. "name": "sebastian/lines-of-code",
  10407. "version": "1.0.3",
  10408. "source": {
  10409. "type": "git",
  10410. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10411. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10412. },
  10413. "dist": {
  10414. "type": "zip",
  10415. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10416. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10417. "shasum": "",
  10418. "mirrors": [
  10419. {
  10420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10421. "preferred": true
  10422. }
  10423. ]
  10424. },
  10425. "require": {
  10426. "nikic/php-parser": "^4.6",
  10427. "php": ">=7.3"
  10428. },
  10429. "require-dev": {
  10430. "phpunit/phpunit": "^9.3"
  10431. },
  10432. "type": "library",
  10433. "extra": {
  10434. "branch-alias": {
  10435. "dev-master": "1.0-dev"
  10436. }
  10437. },
  10438. "autoload": {
  10439. "classmap": [
  10440. "src/"
  10441. ]
  10442. },
  10443. "notification-url": "https://packagist.org/downloads/",
  10444. "license": [
  10445. "BSD-3-Clause"
  10446. ],
  10447. "authors": [
  10448. {
  10449. "name": "Sebastian Bergmann",
  10450. "email": "sebastian@phpunit.de",
  10451. "role": "lead"
  10452. }
  10453. ],
  10454. "description": "Library for counting the lines of code in PHP source code",
  10455. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10456. "support": {
  10457. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10458. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10459. },
  10460. "funding": [
  10461. {
  10462. "url": "https://github.com/sebastianbergmann",
  10463. "type": "github"
  10464. }
  10465. ],
  10466. "time": "2020-11-28T06:42:11+00:00"
  10467. },
  10468. {
  10469. "name": "sebastian/object-enumerator",
  10470. "version": "4.0.4",
  10471. "source": {
  10472. "type": "git",
  10473. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10474. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10475. },
  10476. "dist": {
  10477. "type": "zip",
  10478. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10479. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10480. "shasum": "",
  10481. "mirrors": [
  10482. {
  10483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10484. "preferred": true
  10485. }
  10486. ]
  10487. },
  10488. "require": {
  10489. "php": ">=7.3",
  10490. "sebastian/object-reflector": "^2.0",
  10491. "sebastian/recursion-context": "^4.0"
  10492. },
  10493. "require-dev": {
  10494. "phpunit/phpunit": "^9.3"
  10495. },
  10496. "type": "library",
  10497. "extra": {
  10498. "branch-alias": {
  10499. "dev-master": "4.0-dev"
  10500. }
  10501. },
  10502. "autoload": {
  10503. "classmap": [
  10504. "src/"
  10505. ]
  10506. },
  10507. "notification-url": "https://packagist.org/downloads/",
  10508. "license": [
  10509. "BSD-3-Clause"
  10510. ],
  10511. "authors": [
  10512. {
  10513. "name": "Sebastian Bergmann",
  10514. "email": "sebastian@phpunit.de"
  10515. }
  10516. ],
  10517. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10518. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10519. "support": {
  10520. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10521. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10522. },
  10523. "funding": [
  10524. {
  10525. "url": "https://github.com/sebastianbergmann",
  10526. "type": "github"
  10527. }
  10528. ],
  10529. "time": "2020-10-26T13:12:34+00:00"
  10530. },
  10531. {
  10532. "name": "sebastian/object-reflector",
  10533. "version": "2.0.4",
  10534. "source": {
  10535. "type": "git",
  10536. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10537. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10538. },
  10539. "dist": {
  10540. "type": "zip",
  10541. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10542. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10543. "shasum": "",
  10544. "mirrors": [
  10545. {
  10546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10547. "preferred": true
  10548. }
  10549. ]
  10550. },
  10551. "require": {
  10552. "php": ">=7.3"
  10553. },
  10554. "require-dev": {
  10555. "phpunit/phpunit": "^9.3"
  10556. },
  10557. "type": "library",
  10558. "extra": {
  10559. "branch-alias": {
  10560. "dev-master": "2.0-dev"
  10561. }
  10562. },
  10563. "autoload": {
  10564. "classmap": [
  10565. "src/"
  10566. ]
  10567. },
  10568. "notification-url": "https://packagist.org/downloads/",
  10569. "license": [
  10570. "BSD-3-Clause"
  10571. ],
  10572. "authors": [
  10573. {
  10574. "name": "Sebastian Bergmann",
  10575. "email": "sebastian@phpunit.de"
  10576. }
  10577. ],
  10578. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10579. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10580. "support": {
  10581. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10582. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10583. },
  10584. "funding": [
  10585. {
  10586. "url": "https://github.com/sebastianbergmann",
  10587. "type": "github"
  10588. }
  10589. ],
  10590. "time": "2020-10-26T13:14:26+00:00"
  10591. },
  10592. {
  10593. "name": "sebastian/recursion-context",
  10594. "version": "4.0.5",
  10595. "source": {
  10596. "type": "git",
  10597. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10598. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10599. },
  10600. "dist": {
  10601. "type": "zip",
  10602. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10603. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10604. "shasum": "",
  10605. "mirrors": [
  10606. {
  10607. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10608. "preferred": true
  10609. }
  10610. ]
  10611. },
  10612. "require": {
  10613. "php": ">=7.3"
  10614. },
  10615. "require-dev": {
  10616. "phpunit/phpunit": "^9.3"
  10617. },
  10618. "type": "library",
  10619. "extra": {
  10620. "branch-alias": {
  10621. "dev-master": "4.0-dev"
  10622. }
  10623. },
  10624. "autoload": {
  10625. "classmap": [
  10626. "src/"
  10627. ]
  10628. },
  10629. "notification-url": "https://packagist.org/downloads/",
  10630. "license": [
  10631. "BSD-3-Clause"
  10632. ],
  10633. "authors": [
  10634. {
  10635. "name": "Sebastian Bergmann",
  10636. "email": "sebastian@phpunit.de"
  10637. },
  10638. {
  10639. "name": "Jeff Welch",
  10640. "email": "whatthejeff@gmail.com"
  10641. },
  10642. {
  10643. "name": "Adam Harvey",
  10644. "email": "aharvey@php.net"
  10645. }
  10646. ],
  10647. "description": "Provides functionality to recursively process PHP variables",
  10648. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10649. "support": {
  10650. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10651. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10652. },
  10653. "funding": [
  10654. {
  10655. "url": "https://github.com/sebastianbergmann",
  10656. "type": "github"
  10657. }
  10658. ],
  10659. "time": "2023-02-03T06:07:39+00:00"
  10660. },
  10661. {
  10662. "name": "sebastian/resource-operations",
  10663. "version": "3.0.3",
  10664. "source": {
  10665. "type": "git",
  10666. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10667. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10668. },
  10669. "dist": {
  10670. "type": "zip",
  10671. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10672. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10673. "shasum": "",
  10674. "mirrors": [
  10675. {
  10676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10677. "preferred": true
  10678. }
  10679. ]
  10680. },
  10681. "require": {
  10682. "php": ">=7.3"
  10683. },
  10684. "require-dev": {
  10685. "phpunit/phpunit": "^9.0"
  10686. },
  10687. "type": "library",
  10688. "extra": {
  10689. "branch-alias": {
  10690. "dev-master": "3.0-dev"
  10691. }
  10692. },
  10693. "autoload": {
  10694. "classmap": [
  10695. "src/"
  10696. ]
  10697. },
  10698. "notification-url": "https://packagist.org/downloads/",
  10699. "license": [
  10700. "BSD-3-Clause"
  10701. ],
  10702. "authors": [
  10703. {
  10704. "name": "Sebastian Bergmann",
  10705. "email": "sebastian@phpunit.de"
  10706. }
  10707. ],
  10708. "description": "Provides a list of PHP built-in functions that operate on resources",
  10709. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10710. "support": {
  10711. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10712. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10713. },
  10714. "funding": [
  10715. {
  10716. "url": "https://github.com/sebastianbergmann",
  10717. "type": "github"
  10718. }
  10719. ],
  10720. "time": "2020-09-28T06:45:17+00:00"
  10721. },
  10722. {
  10723. "name": "sebastian/type",
  10724. "version": "3.2.1",
  10725. "source": {
  10726. "type": "git",
  10727. "url": "https://github.com/sebastianbergmann/type.git",
  10728. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10729. },
  10730. "dist": {
  10731. "type": "zip",
  10732. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10733. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10734. "shasum": "",
  10735. "mirrors": [
  10736. {
  10737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10738. "preferred": true
  10739. }
  10740. ]
  10741. },
  10742. "require": {
  10743. "php": ">=7.3"
  10744. },
  10745. "require-dev": {
  10746. "phpunit/phpunit": "^9.5"
  10747. },
  10748. "type": "library",
  10749. "extra": {
  10750. "branch-alias": {
  10751. "dev-master": "3.2-dev"
  10752. }
  10753. },
  10754. "autoload": {
  10755. "classmap": [
  10756. "src/"
  10757. ]
  10758. },
  10759. "notification-url": "https://packagist.org/downloads/",
  10760. "license": [
  10761. "BSD-3-Clause"
  10762. ],
  10763. "authors": [
  10764. {
  10765. "name": "Sebastian Bergmann",
  10766. "email": "sebastian@phpunit.de",
  10767. "role": "lead"
  10768. }
  10769. ],
  10770. "description": "Collection of value objects that represent the types of the PHP type system",
  10771. "homepage": "https://github.com/sebastianbergmann/type",
  10772. "support": {
  10773. "issues": "https://github.com/sebastianbergmann/type/issues",
  10774. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10775. },
  10776. "funding": [
  10777. {
  10778. "url": "https://github.com/sebastianbergmann",
  10779. "type": "github"
  10780. }
  10781. ],
  10782. "time": "2023-02-03T06:13:03+00:00"
  10783. },
  10784. {
  10785. "name": "sebastian/version",
  10786. "version": "3.0.2",
  10787. "source": {
  10788. "type": "git",
  10789. "url": "https://github.com/sebastianbergmann/version.git",
  10790. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10791. },
  10792. "dist": {
  10793. "type": "zip",
  10794. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10795. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10796. "shasum": "",
  10797. "mirrors": [
  10798. {
  10799. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10800. "preferred": true
  10801. }
  10802. ]
  10803. },
  10804. "require": {
  10805. "php": ">=7.3"
  10806. },
  10807. "type": "library",
  10808. "extra": {
  10809. "branch-alias": {
  10810. "dev-master": "3.0-dev"
  10811. }
  10812. },
  10813. "autoload": {
  10814. "classmap": [
  10815. "src/"
  10816. ]
  10817. },
  10818. "notification-url": "https://packagist.org/downloads/",
  10819. "license": [
  10820. "BSD-3-Clause"
  10821. ],
  10822. "authors": [
  10823. {
  10824. "name": "Sebastian Bergmann",
  10825. "email": "sebastian@phpunit.de",
  10826. "role": "lead"
  10827. }
  10828. ],
  10829. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10830. "homepage": "https://github.com/sebastianbergmann/version",
  10831. "support": {
  10832. "issues": "https://github.com/sebastianbergmann/version/issues",
  10833. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10834. },
  10835. "funding": [
  10836. {
  10837. "url": "https://github.com/sebastianbergmann",
  10838. "type": "github"
  10839. }
  10840. ],
  10841. "time": "2020-09-28T06:39:44+00:00"
  10842. },
  10843. {
  10844. "name": "theseer/tokenizer",
  10845. "version": "1.2.1",
  10846. "source": {
  10847. "type": "git",
  10848. "url": "https://github.com/theseer/tokenizer.git",
  10849. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10850. },
  10851. "dist": {
  10852. "type": "zip",
  10853. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10854. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10855. "shasum": "",
  10856. "mirrors": [
  10857. {
  10858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10859. "preferred": true
  10860. }
  10861. ]
  10862. },
  10863. "require": {
  10864. "ext-dom": "*",
  10865. "ext-tokenizer": "*",
  10866. "ext-xmlwriter": "*",
  10867. "php": "^7.2 || ^8.0"
  10868. },
  10869. "type": "library",
  10870. "autoload": {
  10871. "classmap": [
  10872. "src/"
  10873. ]
  10874. },
  10875. "notification-url": "https://packagist.org/downloads/",
  10876. "license": [
  10877. "BSD-3-Clause"
  10878. ],
  10879. "authors": [
  10880. {
  10881. "name": "Arne Blankerts",
  10882. "email": "arne@blankerts.de",
  10883. "role": "Developer"
  10884. }
  10885. ],
  10886. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10887. "support": {
  10888. "issues": "https://github.com/theseer/tokenizer/issues",
  10889. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10890. },
  10891. "funding": [
  10892. {
  10893. "url": "https://github.com/theseer",
  10894. "type": "github"
  10895. }
  10896. ],
  10897. "time": "2021-07-28T10:34:58+00:00"
  10898. }
  10899. ],
  10900. "aliases": [],
  10901. "minimum-stability": "dev",
  10902. "stability-flags": [],
  10903. "prefer-stable": true,
  10904. "prefer-lowest": false,
  10905. "platform": {
  10906. "php": "^7.3|^8.0"
  10907. },
  10908. "platform-dev": [],
  10909. "plugin-api-version": "2.3.0"
  10910. }