composer.lock 393 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817
  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": "e2aa632af7e11e75ca5119c58a3529e1",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  20. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  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. "ext-json": "*",
  31. "php": ">=5.5"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  35. "squizlabs/php_codesniffer": "^3.0"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.x"
  65. },
  66. "time": "2019-01-01T23:59:15+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/credentials",
  70. "version": "1.1.4",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/credentials-php.git",
  74. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  79. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "alibabacloud/tea": "^3.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "php": ">=5.6"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "mikey179/vfsstream": "^1.6",
  109. "monolog/monolog": "^1.24",
  110. "phpunit/phpunit": "^4.8.35|^5.4.3",
  111. "psr/cache": "^1.0",
  112. "symfony/dotenv": "^3.4",
  113. "symfony/var-dumper": "^3.4"
  114. },
  115. "suggest": {
  116. "ext-sockets": "To use client-side monitoring"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "AlibabaCloud\\Credentials\\": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Credentials for PHP",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "credentials",
  144. "library",
  145. "sdk",
  146. "tool"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/aliyun/credentials-php/issues",
  150. "source": "https://github.com/aliyun/credentials-php"
  151. },
  152. "time": "2021-06-08T10:49:34+00:00"
  153. },
  154. {
  155. "name": "alibabacloud/darabonba-openapi",
  156. "version": "0.2.8",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  160. "reference": "7d0de110a176669e989bbb9f3a157039fa3b9056"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/7d0de110a176669e989bbb9f3a157039fa3b9056",
  165. "reference": "7d0de110a176669e989bbb9f3a157039fa3b9056",
  166. "shasum": "",
  167. "mirrors": [
  168. {
  169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  170. "preferred": true
  171. }
  172. ]
  173. },
  174. "require": {
  175. "alibabacloud/credentials": "^1.1",
  176. "alibabacloud/gateway-spi": "^0.0.1",
  177. "alibabacloud/openapi-util": "^0.1.10",
  178. "alibabacloud/tea-utils": "^0.2.0",
  179. "alibabacloud/tea-xml": "^0.2",
  180. "php": ">5.5"
  181. },
  182. "type": "library",
  183. "autoload": {
  184. "psr-4": {
  185. "Darabonba\\OpenApi\\": "src"
  186. }
  187. },
  188. "notification-url": "https://packagist.org/downloads/",
  189. "license": [
  190. "Apache-2.0"
  191. ],
  192. "authors": [
  193. {
  194. "name": "Alibaba Cloud SDK",
  195. "email": "sdk-team@alibabacloud.com"
  196. }
  197. ],
  198. "description": "Alibaba Cloud OpenApi Client",
  199. "support": {
  200. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  201. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.8"
  202. },
  203. "time": "2022-04-12T02:05:27+00:00"
  204. },
  205. {
  206. "name": "alibabacloud/dingtalk",
  207. "version": "1.3.41",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/alibabacloud-sdk-php/dingtalk.git",
  211. "reference": "ae59d09dafec94e6049d9155126882cbb2220923"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dingtalk/zipball/ae59d09dafec94e6049d9155126882cbb2220923",
  216. "reference": "ae59d09dafec94e6049d9155126882cbb2220923",
  217. "shasum": "",
  218. "mirrors": [
  219. {
  220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  221. "preferred": true
  222. }
  223. ]
  224. },
  225. "require": {
  226. "alibabacloud/darabonba-openapi": "^0.2.5",
  227. "alibabacloud/endpoint-util": "^0.1.0",
  228. "alibabacloud/openapi-util": "^0.1.10",
  229. "alibabacloud/tea-utils": "^0.2.0",
  230. "php": ">5.5"
  231. },
  232. "type": "library",
  233. "autoload": {
  234. "psr-4": {
  235. "AlibabaCloud\\SDK\\Dingtalk\\Vim_1_0\\": "src/im_1_0/",
  236. "AlibabaCloud\\SDK\\Dingtalk\\Vats_1_0\\": "src/ats_1_0/",
  237. "AlibabaCloud\\SDK\\Dingtalk\\Vcrm_1_0\\": "src/crm_1_0/",
  238. "AlibabaCloud\\SDK\\Dingtalk\\Vdoc_1_0\\": "src/doc_1_0/",
  239. "AlibabaCloud\\SDK\\Dingtalk\\Vedu_1_0\\": "src/edu_1_0/",
  240. "AlibabaCloud\\SDK\\Dingtalk\\Vhrm_1_0\\": "src/hrm_1_0/",
  241. "AlibabaCloud\\SDK\\Dingtalk\\Vokr_1_0\\": "src/okr_1_0/",
  242. "AlibabaCloud\\SDK\\Dingtalk\\Vwms_1_0\\": "src/wms_1_0/",
  243. "AlibabaCloud\\SDK\\Dingtalk\\Valgo_1_0\\": "src/algo_1_0/",
  244. "AlibabaCloud\\SDK\\Dingtalk\\Vdiot_1_0\\": "src/diot_1_0/",
  245. "AlibabaCloud\\SDK\\Dingtalk\\Vlive_1_0\\": "src/live_1_0/",
  246. "AlibabaCloud\\SDK\\Dingtalk\\Vtodo_1_0\\": "src/todo_1_0/",
  247. "AlibabaCloud\\SDK\\Dingtalk\\Vwiki_1_0\\": "src/wiki_1_0/",
  248. "AlibabaCloud\\SDK\\Dingtalk\\Vyida_1_0\\": "src/yida_1_0/",
  249. "AlibabaCloud\\SDK\\Dingtalk\\Vapaas_1_0\\": "src/apaas_1_0/",
  250. "AlibabaCloud\\SDK\\Dingtalk\\Vbadge_1_0\\": "src/badge_1_0/",
  251. "AlibabaCloud\\SDK\\Dingtalk\\Vdrive_1_0\\": "src/drive_1_0/",
  252. "AlibabaCloud\\SDK\\Dingtalk\\Vesign_1_0\\": "src/esign_1_0/",
  253. "AlibabaCloud\\SDK\\Dingtalk\\Vesign_2_0\\": "src/esign_2_0/",
  254. "AlibabaCloud\\SDK\\Dingtalk\\Vh3yun_1_0\\": "src/h3yun_1_0/",
  255. "AlibabaCloud\\SDK\\Dingtalk\\Vjzcrm_1_0\\": "src/jzcrm_1_0/",
  256. "AlibabaCloud\\SDK\\Dingtalk\\Vrobot_1_0\\": "src/robot_1_0/",
  257. "AlibabaCloud\\SDK\\Dingtalk\\Vtrade_1_0\\": "src/trade_1_0/",
  258. "AlibabaCloud\\SDK\\Dingtalk\\Vcarbon_1_0\\": "src/carbon_1_0/",
  259. "AlibabaCloud\\SDK\\Dingtalk\\Vdingmi_1_0\\": "src/dingmi_1_0/",
  260. "AlibabaCloud\\SDK\\Dingtalk\\Vimpaas_1_0\\": "src/impaas_1_0/",
  261. "AlibabaCloud\\SDK\\Dingtalk\\Voauth2_1_0\\": "src/oauth2_1_0/",
  262. "AlibabaCloud\\SDK\\Dingtalk\\Vsearch_1_0\\": "src/search_1_0/",
  263. "AlibabaCloud\\SDK\\Dingtalk\\Valitrip_1_0\\": "src/alitrip_1_0/",
  264. "AlibabaCloud\\SDK\\Dingtalk\\Vcontact_1_0\\": "src/contact_1_0/",
  265. "AlibabaCloud\\SDK\\Dingtalk\\Vcontent_1_0\\": "src/content_1_0/",
  266. "AlibabaCloud\\SDK\\Dingtalk\\Vfinance_1_0\\": "src/finance_1_0/",
  267. "AlibabaCloud\\SDK\\Dingtalk\\Vhrbrain_1_0\\": "src/hrbrain_1_0/",
  268. "AlibabaCloud\\SDK\\Dingtalk\\Vminiapp_1_0\\": "src/miniapp_1_0/",
  269. "AlibabaCloud\\SDK\\Dingtalk\\Vproject_1_0\\": "src/project_1_0/",
  270. "AlibabaCloud\\SDK\\Dingtalk\\Vvillage_1_0\\": "src/village_1_0/",
  271. "AlibabaCloud\\SDK\\Dingtalk\\Vcalendar_1_0\\": "src/calendar_1_0/",
  272. "AlibabaCloud\\SDK\\Dingtalk\\Vindustry_1_0\\": "src/industry_1_0/",
  273. "AlibabaCloud\\SDK\\Dingtalk\\Vresident_1_0\\": "src/resident_1_0/",
  274. "AlibabaCloud\\SDK\\Dingtalk\\Vworkflow_1_0\\": "src/workflow_1_0/",
  275. "AlibabaCloud\\SDK\\Dingtalk\\Vconnector_1_0\\": "src/connector_1_0/",
  276. "AlibabaCloud\\SDK\\Dingtalk\\Vdevicemng_1_0\\": "src/devicemng_1_0/",
  277. "AlibabaCloud\\SDK\\Dingtalk\\Vexclusive_1_0\\": "src/exclusive_1_0/",
  278. "AlibabaCloud\\SDK\\Dingtalk\\Vmicro_app_1_0\\": "src/micro_app_1_0/",
  279. "AlibabaCloud\\SDK\\Dingtalk\\Vworkbench_1_0\\": "src/workbench_1_0/",
  280. "AlibabaCloud\\SDK\\Dingtalk\\Vapp_market_1_0\\": "src/app_market_1_0/",
  281. "AlibabaCloud\\SDK\\Dingtalk\\Vattendance_1_0\\": "src/attendance_1_0/",
  282. "AlibabaCloud\\SDK\\Dingtalk\\Vbizfinance_1_0\\": "src/bizfinance_1_0/",
  283. "AlibabaCloud\\SDK\\Dingtalk\\Vconference_1_0\\": "src/conference_1_0/",
  284. "AlibabaCloud\\SDK\\Dingtalk\\Vdatacenter_1_0\\": "src/datacenter_1_0/",
  285. "AlibabaCloud\\SDK\\Dingtalk\\Vtrajectory_1_0\\": "src/trajectory_1_0/",
  286. "AlibabaCloud\\SDK\\Dingtalk\\Vworkrecord_1_0\\": "src/workrecord_1_0/",
  287. "AlibabaCloud\\SDK\\Dingtalk\\Vorg_culture_1_0\\": "src/org_culture_1_0/",
  288. "AlibabaCloud\\SDK\\Dingtalk\\Vflashmeeting_1_0\\": "src/flashmeeting_1_0/",
  289. "AlibabaCloud\\SDK\\Dingtalk\\Vsmart_device_1_0\\": "src/smart_device_1_0/",
  290. "AlibabaCloud\\SDK\\Dingtalk\\Vmanufacturing_1_0\\": "src/manufacturing_1_0/",
  291. "AlibabaCloud\\SDK\\Dingtalk\\Vservice_group_1_0\\": "src/service_group_1_0/",
  292. "AlibabaCloud\\SDK\\Dingtalk\\Voccupationauth_1_0\\": "src/occupationauth_1_0/",
  293. "AlibabaCloud\\SDK\\Dingtalk\\Vcustomer_service_1_0\\": "src/customer_service_1_0/",
  294. "AlibabaCloud\\SDK\\Dingtalk\\Vproject_integration_1_0\\": "src/project_integration_1_0/"
  295. }
  296. },
  297. "notification-url": "https://packagist.org/downloads/",
  298. "license": [
  299. "Apache-2.0"
  300. ],
  301. "authors": [
  302. {
  303. "name": "Alibaba Cloud SDK",
  304. "email": "sdk-team@alibabacloud.com"
  305. }
  306. ],
  307. "description": "Alibaba Cloud Dingtalk SDK Library for PHP",
  308. "support": {
  309. "source": "https://github.com/alibabacloud-sdk-php/dingtalk/tree/1.3.41"
  310. },
  311. "time": "2022-04-25T01:52:14+00:00"
  312. },
  313. {
  314. "name": "alibabacloud/endpoint-util",
  315. "version": "0.1.1",
  316. "source": {
  317. "type": "git",
  318. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  319. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  320. },
  321. "dist": {
  322. "type": "zip",
  323. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  324. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  325. "shasum": "",
  326. "mirrors": [
  327. {
  328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  329. "preferred": true
  330. }
  331. ]
  332. },
  333. "require": {
  334. "php": ">5.5"
  335. },
  336. "require-dev": {
  337. "phpunit/phpunit": "^4.8.35|^5.4.3"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "AlibabaCloud\\Endpoint\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "Apache-2.0"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Alibaba Cloud SDK",
  352. "email": "sdk-team@alibabacloud.com"
  353. }
  354. ],
  355. "description": "Alibaba Cloud Endpoint Library for PHP",
  356. "support": {
  357. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  358. },
  359. "time": "2020-06-04T10:57:15+00:00"
  360. },
  361. {
  362. "name": "alibabacloud/gateway-spi",
  363. "version": "0.0.1",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  367. "reference": "36ba38571acbf821cfd84555cdb1327cdbf86935"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/36ba38571acbf821cfd84555cdb1327cdbf86935",
  372. "reference": "36ba38571acbf821cfd84555cdb1327cdbf86935",
  373. "shasum": "",
  374. "mirrors": [
  375. {
  376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  377. "preferred": true
  378. }
  379. ]
  380. },
  381. "require": {
  382. "alibabacloud/credentials": "^1.1",
  383. "php": ">5.5"
  384. },
  385. "type": "library",
  386. "autoload": {
  387. "psr-4": {
  388. "Darabonba\\GatewaySpi\\": "src"
  389. }
  390. },
  391. "notification-url": "https://packagist.org/downloads/",
  392. "license": [
  393. "Apache-2.0"
  394. ],
  395. "authors": [
  396. {
  397. "name": "Alibaba Cloud SDK",
  398. "email": "sdk-team@alibabacloud.com"
  399. }
  400. ],
  401. "description": "Alibaba Cloud Gateway SPI Client",
  402. "support": {
  403. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/0.0.1"
  404. },
  405. "time": "2021-12-07T04:41:11+00:00"
  406. },
  407. {
  408. "name": "alibabacloud/openapi-util",
  409. "version": "0.1.11",
  410. "source": {
  411. "type": "git",
  412. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  413. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c"
  414. },
  415. "dist": {
  416. "type": "zip",
  417. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/61ee137955a25c9f5f33170babb6071d4bccf12c",
  418. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c",
  419. "shasum": "",
  420. "mirrors": [
  421. {
  422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  423. "preferred": true
  424. }
  425. ]
  426. },
  427. "require": {
  428. "alibabacloud/tea": "^3.1",
  429. "alibabacloud/tea-utils": "^0.2",
  430. "lizhichao/one-sm": "^1.5",
  431. "php": ">5.5"
  432. },
  433. "require-dev": {
  434. "phpunit/phpunit": "^4.8.35|^5.4.3"
  435. },
  436. "type": "library",
  437. "autoload": {
  438. "psr-4": {
  439. "AlibabaCloud\\OpenApiUtil\\": "src"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "Apache-2.0"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Alibaba Cloud SDK",
  449. "email": "sdk-team@alibabacloud.com"
  450. }
  451. ],
  452. "description": "Alibaba Cloud OpenApi Util",
  453. "support": {
  454. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  455. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.1.11"
  456. },
  457. "time": "2021-12-28T07:57:21+00:00"
  458. },
  459. {
  460. "name": "alibabacloud/tea",
  461. "version": "3.1.23",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/aliyun/tea-php.git",
  465. "reference": "61fce993274edf6e7131af07256ed7723d97a85f"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/61fce993274edf6e7131af07256ed7723d97a85f",
  470. "reference": "61fce993274edf6e7131af07256ed7723d97a85f",
  471. "shasum": "",
  472. "mirrors": [
  473. {
  474. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  475. "preferred": true
  476. }
  477. ]
  478. },
  479. "require": {
  480. "adbario/php-dot-notation": "^2.2",
  481. "ext-curl": "*",
  482. "ext-json": "*",
  483. "ext-libxml": "*",
  484. "ext-mbstring": "*",
  485. "ext-openssl": "*",
  486. "ext-simplexml": "*",
  487. "ext-xmlwriter": "*",
  488. "guzzlehttp/guzzle": "^6.3|^7.0",
  489. "php": ">=5.5"
  490. },
  491. "require-dev": {
  492. "phpunit/phpunit": "*",
  493. "symfony/dotenv": "^3.4",
  494. "symfony/var-dumper": "^3.4"
  495. },
  496. "suggest": {
  497. "ext-sockets": "To use client-side monitoring"
  498. },
  499. "type": "library",
  500. "autoload": {
  501. "psr-4": {
  502. "AlibabaCloud\\Tea\\": "src"
  503. }
  504. },
  505. "notification-url": "https://packagist.org/downloads/",
  506. "license": [
  507. "Apache-2.0"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Alibaba Cloud SDK",
  512. "email": "sdk-team@alibabacloud.com",
  513. "homepage": "http://www.alibabacloud.com"
  514. }
  515. ],
  516. "description": "Client of Tea for PHP",
  517. "homepage": "https://www.alibabacloud.com/",
  518. "keywords": [
  519. "alibabacloud",
  520. "client",
  521. "cloud",
  522. "tea"
  523. ],
  524. "support": {
  525. "issues": "https://github.com/aliyun/tea-php/issues",
  526. "source": "https://github.com/aliyun/tea-php"
  527. },
  528. "time": "2021-12-20T02:32:43+00:00"
  529. },
  530. {
  531. "name": "alibabacloud/tea-utils",
  532. "version": "0.2.14",
  533. "source": {
  534. "type": "git",
  535. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  536. "reference": "381df15cb4bdb58dbf596f94869ffd2ef680eddd"
  537. },
  538. "dist": {
  539. "type": "zip",
  540. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/381df15cb4bdb58dbf596f94869ffd2ef680eddd",
  541. "reference": "381df15cb4bdb58dbf596f94869ffd2ef680eddd",
  542. "shasum": "",
  543. "mirrors": [
  544. {
  545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  546. "preferred": true
  547. }
  548. ]
  549. },
  550. "require": {
  551. "alibabacloud/tea": "^3.1",
  552. "php": ">5.5"
  553. },
  554. "type": "library",
  555. "autoload": {
  556. "psr-4": {
  557. "AlibabaCloud\\Tea\\Utils\\": "src"
  558. }
  559. },
  560. "notification-url": "https://packagist.org/downloads/",
  561. "license": [
  562. "Apache-2.0"
  563. ],
  564. "authors": [
  565. {
  566. "name": "Alibaba Cloud SDK",
  567. "email": "sdk-team@alibabacloud.com"
  568. }
  569. ],
  570. "description": "Alibaba Cloud Tea Utils for PHP",
  571. "support": {
  572. "issues": "https://github.com/aliyun/tea-util/issues",
  573. "source": "https://github.com/aliyun/tea-util"
  574. },
  575. "time": "2021-02-02T10:10:58+00:00"
  576. },
  577. {
  578. "name": "alibabacloud/tea-xml",
  579. "version": "0.2.3",
  580. "source": {
  581. "type": "git",
  582. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  583. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b"
  584. },
  585. "dist": {
  586. "type": "zip",
  587. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  588. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  589. "shasum": "",
  590. "mirrors": [
  591. {
  592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  593. "preferred": true
  594. }
  595. ]
  596. },
  597. "require": {
  598. "php": ">5.5"
  599. },
  600. "require-dev": {
  601. "phpunit/phpunit": "^4.8.35|^5.4.3",
  602. "symfony/var-dumper": "*"
  603. },
  604. "type": "library",
  605. "autoload": {
  606. "psr-4": {
  607. "AlibabaCloud\\Tea\\XML\\": "src"
  608. }
  609. },
  610. "notification-url": "https://packagist.org/downloads/",
  611. "license": [
  612. "Apache-2.0"
  613. ],
  614. "authors": [
  615. {
  616. "name": "Alibaba Cloud SDK",
  617. "email": "sdk-team@alibabacloud.com"
  618. }
  619. ],
  620. "description": "Alibaba Cloud Tea XML Library for PHP",
  621. "support": {
  622. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.3"
  623. },
  624. "time": "2021-12-08T06:43:00+00:00"
  625. },
  626. {
  627. "name": "asm89/stack-cors",
  628. "version": "v2.1.1",
  629. "source": {
  630. "type": "git",
  631. "url": "https://github.com/asm89/stack-cors.git",
  632. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  633. },
  634. "dist": {
  635. "type": "zip",
  636. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  637. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  638. "shasum": "",
  639. "mirrors": [
  640. {
  641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  642. "preferred": true
  643. }
  644. ]
  645. },
  646. "require": {
  647. "php": "^7.2|^8.0",
  648. "symfony/http-foundation": "^4|^5|^6",
  649. "symfony/http-kernel": "^4|^5|^6"
  650. },
  651. "require-dev": {
  652. "phpunit/phpunit": "^7|^9",
  653. "squizlabs/php_codesniffer": "^3.5"
  654. },
  655. "type": "library",
  656. "extra": {
  657. "branch-alias": {
  658. "dev-master": "2.1-dev"
  659. }
  660. },
  661. "autoload": {
  662. "psr-4": {
  663. "Asm89\\Stack\\": "src/"
  664. }
  665. },
  666. "notification-url": "https://packagist.org/downloads/",
  667. "license": [
  668. "MIT"
  669. ],
  670. "authors": [
  671. {
  672. "name": "Alexander",
  673. "email": "iam.asm89@gmail.com"
  674. }
  675. ],
  676. "description": "Cross-origin resource sharing library and stack middleware",
  677. "homepage": "https://github.com/asm89/stack-cors",
  678. "keywords": [
  679. "cors",
  680. "stack"
  681. ],
  682. "support": {
  683. "issues": "https://github.com/asm89/stack-cors/issues",
  684. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  685. },
  686. "time": "2022-01-18T09:12:03+00:00"
  687. },
  688. {
  689. "name": "brick/math",
  690. "version": "0.9.3",
  691. "source": {
  692. "type": "git",
  693. "url": "https://github.com/brick/math.git",
  694. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  695. },
  696. "dist": {
  697. "type": "zip",
  698. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  699. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  700. "shasum": "",
  701. "mirrors": [
  702. {
  703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  704. "preferred": true
  705. }
  706. ]
  707. },
  708. "require": {
  709. "ext-json": "*",
  710. "php": "^7.1 || ^8.0"
  711. },
  712. "require-dev": {
  713. "php-coveralls/php-coveralls": "^2.2",
  714. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  715. "vimeo/psalm": "4.9.2"
  716. },
  717. "type": "library",
  718. "autoload": {
  719. "psr-4": {
  720. "Brick\\Math\\": "src/"
  721. }
  722. },
  723. "notification-url": "https://packagist.org/downloads/",
  724. "license": [
  725. "MIT"
  726. ],
  727. "description": "Arbitrary-precision arithmetic library",
  728. "keywords": [
  729. "Arbitrary-precision",
  730. "BigInteger",
  731. "BigRational",
  732. "arithmetic",
  733. "bigdecimal",
  734. "bignum",
  735. "brick",
  736. "math"
  737. ],
  738. "support": {
  739. "issues": "https://github.com/brick/math/issues",
  740. "source": "https://github.com/brick/math/tree/0.9.3"
  741. },
  742. "funding": [
  743. {
  744. "url": "https://github.com/BenMorel",
  745. "type": "github"
  746. },
  747. {
  748. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  749. "type": "tidelift"
  750. }
  751. ],
  752. "time": "2021-08-15T20:50:18+00:00"
  753. },
  754. {
  755. "name": "dflydev/dot-access-data",
  756. "version": "v3.0.1",
  757. "source": {
  758. "type": "git",
  759. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  760. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  761. },
  762. "dist": {
  763. "type": "zip",
  764. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  765. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  766. "shasum": "",
  767. "mirrors": [
  768. {
  769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  770. "preferred": true
  771. }
  772. ]
  773. },
  774. "require": {
  775. "php": "^7.1 || ^8.0"
  776. },
  777. "require-dev": {
  778. "phpstan/phpstan": "^0.12.42",
  779. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  780. "scrutinizer/ocular": "1.6.0",
  781. "squizlabs/php_codesniffer": "^3.5",
  782. "vimeo/psalm": "^3.14"
  783. },
  784. "type": "library",
  785. "extra": {
  786. "branch-alias": {
  787. "dev-main": "3.x-dev"
  788. }
  789. },
  790. "autoload": {
  791. "psr-4": {
  792. "Dflydev\\DotAccessData\\": "src/"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "MIT"
  798. ],
  799. "authors": [
  800. {
  801. "name": "Dragonfly Development Inc.",
  802. "email": "info@dflydev.com",
  803. "homepage": "http://dflydev.com"
  804. },
  805. {
  806. "name": "Beau Simensen",
  807. "email": "beau@dflydev.com",
  808. "homepage": "http://beausimensen.com"
  809. },
  810. {
  811. "name": "Carlos Frutos",
  812. "email": "carlos@kiwing.it",
  813. "homepage": "https://github.com/cfrutos"
  814. },
  815. {
  816. "name": "Colin O'Dell",
  817. "email": "colinodell@gmail.com",
  818. "homepage": "https://www.colinodell.com"
  819. }
  820. ],
  821. "description": "Given a deep data structure, access data by dot notation.",
  822. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  823. "keywords": [
  824. "access",
  825. "data",
  826. "dot",
  827. "notation"
  828. ],
  829. "support": {
  830. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  831. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  832. },
  833. "time": "2021-08-13T13:06:58+00:00"
  834. },
  835. {
  836. "name": "doctrine/inflector",
  837. "version": "2.0.4",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/doctrine/inflector.git",
  841. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  846. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  847. "shasum": "",
  848. "mirrors": [
  849. {
  850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  851. "preferred": true
  852. }
  853. ]
  854. },
  855. "require": {
  856. "php": "^7.2 || ^8.0"
  857. },
  858. "require-dev": {
  859. "doctrine/coding-standard": "^8.2",
  860. "phpstan/phpstan": "^0.12",
  861. "phpstan/phpstan-phpunit": "^0.12",
  862. "phpstan/phpstan-strict-rules": "^0.12",
  863. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  864. "vimeo/psalm": "^4.10"
  865. },
  866. "type": "library",
  867. "autoload": {
  868. "psr-4": {
  869. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  870. }
  871. },
  872. "notification-url": "https://packagist.org/downloads/",
  873. "license": [
  874. "MIT"
  875. ],
  876. "authors": [
  877. {
  878. "name": "Guilherme Blanco",
  879. "email": "guilhermeblanco@gmail.com"
  880. },
  881. {
  882. "name": "Roman Borschel",
  883. "email": "roman@code-factory.org"
  884. },
  885. {
  886. "name": "Benjamin Eberlei",
  887. "email": "kontakt@beberlei.de"
  888. },
  889. {
  890. "name": "Jonathan Wage",
  891. "email": "jonwage@gmail.com"
  892. },
  893. {
  894. "name": "Johannes Schmitt",
  895. "email": "schmittjoh@gmail.com"
  896. }
  897. ],
  898. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  899. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  900. "keywords": [
  901. "inflection",
  902. "inflector",
  903. "lowercase",
  904. "manipulation",
  905. "php",
  906. "plural",
  907. "singular",
  908. "strings",
  909. "uppercase",
  910. "words"
  911. ],
  912. "support": {
  913. "issues": "https://github.com/doctrine/inflector/issues",
  914. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  915. },
  916. "funding": [
  917. {
  918. "url": "https://www.doctrine-project.org/sponsorship.html",
  919. "type": "custom"
  920. },
  921. {
  922. "url": "https://www.patreon.com/phpdoctrine",
  923. "type": "patreon"
  924. },
  925. {
  926. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  927. "type": "tidelift"
  928. }
  929. ],
  930. "time": "2021-10-22T20:16:43+00:00"
  931. },
  932. {
  933. "name": "doctrine/lexer",
  934. "version": "1.2.3",
  935. "source": {
  936. "type": "git",
  937. "url": "https://github.com/doctrine/lexer.git",
  938. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  939. },
  940. "dist": {
  941. "type": "zip",
  942. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  943. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  944. "shasum": "",
  945. "mirrors": [
  946. {
  947. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  948. "preferred": true
  949. }
  950. ]
  951. },
  952. "require": {
  953. "php": "^7.1 || ^8.0"
  954. },
  955. "require-dev": {
  956. "doctrine/coding-standard": "^9.0",
  957. "phpstan/phpstan": "^1.3",
  958. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  959. "vimeo/psalm": "^4.11"
  960. },
  961. "type": "library",
  962. "autoload": {
  963. "psr-4": {
  964. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Guilherme Blanco",
  974. "email": "guilhermeblanco@gmail.com"
  975. },
  976. {
  977. "name": "Roman Borschel",
  978. "email": "roman@code-factory.org"
  979. },
  980. {
  981. "name": "Johannes Schmitt",
  982. "email": "schmittjoh@gmail.com"
  983. }
  984. ],
  985. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  986. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  987. "keywords": [
  988. "annotations",
  989. "docblock",
  990. "lexer",
  991. "parser",
  992. "php"
  993. ],
  994. "support": {
  995. "issues": "https://github.com/doctrine/lexer/issues",
  996. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  997. },
  998. "funding": [
  999. {
  1000. "url": "https://www.doctrine-project.org/sponsorship.html",
  1001. "type": "custom"
  1002. },
  1003. {
  1004. "url": "https://www.patreon.com/phpdoctrine",
  1005. "type": "patreon"
  1006. },
  1007. {
  1008. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1009. "type": "tidelift"
  1010. }
  1011. ],
  1012. "time": "2022-02-28T11:07:21+00:00"
  1013. },
  1014. {
  1015. "name": "dragonmantank/cron-expression",
  1016. "version": "v3.3.1",
  1017. "source": {
  1018. "type": "git",
  1019. "url": "https://github.com/dragonmantank/cron-expression.git",
  1020. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  1021. },
  1022. "dist": {
  1023. "type": "zip",
  1024. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1025. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1026. "shasum": "",
  1027. "mirrors": [
  1028. {
  1029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1030. "preferred": true
  1031. }
  1032. ]
  1033. },
  1034. "require": {
  1035. "php": "^7.2|^8.0",
  1036. "webmozart/assert": "^1.0"
  1037. },
  1038. "replace": {
  1039. "mtdowling/cron-expression": "^1.0"
  1040. },
  1041. "require-dev": {
  1042. "phpstan/extension-installer": "^1.0",
  1043. "phpstan/phpstan": "^1.0",
  1044. "phpstan/phpstan-webmozart-assert": "^1.0",
  1045. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1046. },
  1047. "type": "library",
  1048. "autoload": {
  1049. "psr-4": {
  1050. "Cron\\": "src/Cron/"
  1051. }
  1052. },
  1053. "notification-url": "https://packagist.org/downloads/",
  1054. "license": [
  1055. "MIT"
  1056. ],
  1057. "authors": [
  1058. {
  1059. "name": "Chris Tankersley",
  1060. "email": "chris@ctankersley.com",
  1061. "homepage": "https://github.com/dragonmantank"
  1062. }
  1063. ],
  1064. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1065. "keywords": [
  1066. "cron",
  1067. "schedule"
  1068. ],
  1069. "support": {
  1070. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1071. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  1072. },
  1073. "funding": [
  1074. {
  1075. "url": "https://github.com/dragonmantank",
  1076. "type": "github"
  1077. }
  1078. ],
  1079. "time": "2022-01-18T15:43:28+00:00"
  1080. },
  1081. {
  1082. "name": "egulias/email-validator",
  1083. "version": "2.1.25",
  1084. "source": {
  1085. "type": "git",
  1086. "url": "https://github.com/egulias/EmailValidator.git",
  1087. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1088. },
  1089. "dist": {
  1090. "type": "zip",
  1091. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1092. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1093. "shasum": "",
  1094. "mirrors": [
  1095. {
  1096. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1097. "preferred": true
  1098. }
  1099. ]
  1100. },
  1101. "require": {
  1102. "doctrine/lexer": "^1.0.1",
  1103. "php": ">=5.5",
  1104. "symfony/polyfill-intl-idn": "^1.10"
  1105. },
  1106. "require-dev": {
  1107. "dominicsayers/isemail": "^3.0.7",
  1108. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1109. "satooshi/php-coveralls": "^1.0.1"
  1110. },
  1111. "suggest": {
  1112. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1113. },
  1114. "type": "library",
  1115. "extra": {
  1116. "branch-alias": {
  1117. "dev-master": "2.1.x-dev"
  1118. }
  1119. },
  1120. "autoload": {
  1121. "psr-4": {
  1122. "Egulias\\EmailValidator\\": "src"
  1123. }
  1124. },
  1125. "notification-url": "https://packagist.org/downloads/",
  1126. "license": [
  1127. "MIT"
  1128. ],
  1129. "authors": [
  1130. {
  1131. "name": "Eduardo Gulias Davis"
  1132. }
  1133. ],
  1134. "description": "A library for validating emails against several RFCs",
  1135. "homepage": "https://github.com/egulias/EmailValidator",
  1136. "keywords": [
  1137. "email",
  1138. "emailvalidation",
  1139. "emailvalidator",
  1140. "validation",
  1141. "validator"
  1142. ],
  1143. "support": {
  1144. "issues": "https://github.com/egulias/EmailValidator/issues",
  1145. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1146. },
  1147. "funding": [
  1148. {
  1149. "url": "https://github.com/egulias",
  1150. "type": "github"
  1151. }
  1152. ],
  1153. "time": "2020-12-29T14:50:06+00:00"
  1154. },
  1155. {
  1156. "name": "ezyang/htmlpurifier",
  1157. "version": "v4.14.0",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/ezyang/htmlpurifier.git",
  1161. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  1166. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  1167. "shasum": "",
  1168. "mirrors": [
  1169. {
  1170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1171. "preferred": true
  1172. }
  1173. ]
  1174. },
  1175. "require": {
  1176. "php": ">=5.2"
  1177. },
  1178. "type": "library",
  1179. "autoload": {
  1180. "files": [
  1181. "library/HTMLPurifier.composer.php"
  1182. ],
  1183. "psr-0": {
  1184. "HTMLPurifier": "library/"
  1185. },
  1186. "exclude-from-classmap": [
  1187. "/library/HTMLPurifier/Language/"
  1188. ]
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "LGPL-2.1-or-later"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Edward Z. Yang",
  1197. "email": "admin@htmlpurifier.org",
  1198. "homepage": "http://ezyang.com"
  1199. }
  1200. ],
  1201. "description": "Standards compliant HTML filter written in PHP",
  1202. "homepage": "http://htmlpurifier.org/",
  1203. "keywords": [
  1204. "html"
  1205. ],
  1206. "support": {
  1207. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1208. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.14.0"
  1209. },
  1210. "time": "2021-12-25T01:21:49+00:00"
  1211. },
  1212. {
  1213. "name": "fideloper/proxy",
  1214. "version": "4.4.1",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/fideloper/TrustedProxy.git",
  1218. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1223. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1224. "shasum": "",
  1225. "mirrors": [
  1226. {
  1227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1228. "preferred": true
  1229. }
  1230. ]
  1231. },
  1232. "require": {
  1233. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1234. "php": ">=5.4.0"
  1235. },
  1236. "require-dev": {
  1237. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1238. "mockery/mockery": "^1.0",
  1239. "phpunit/phpunit": "^6.0"
  1240. },
  1241. "type": "library",
  1242. "extra": {
  1243. "laravel": {
  1244. "providers": [
  1245. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1246. ]
  1247. }
  1248. },
  1249. "autoload": {
  1250. "psr-4": {
  1251. "Fideloper\\Proxy\\": "src/"
  1252. }
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "MIT"
  1257. ],
  1258. "authors": [
  1259. {
  1260. "name": "Chris Fidao",
  1261. "email": "fideloper@gmail.com"
  1262. }
  1263. ],
  1264. "description": "Set trusted proxies for Laravel",
  1265. "keywords": [
  1266. "load balancing",
  1267. "proxy",
  1268. "trusted proxy"
  1269. ],
  1270. "support": {
  1271. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1272. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1273. },
  1274. "time": "2020-10-22T13:48:01+00:00"
  1275. },
  1276. {
  1277. "name": "fruitcake/laravel-cors",
  1278. "version": "v2.2.0",
  1279. "source": {
  1280. "type": "git",
  1281. "url": "https://github.com/fruitcake/laravel-cors.git",
  1282. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1283. },
  1284. "dist": {
  1285. "type": "zip",
  1286. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1287. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1288. "shasum": "",
  1289. "mirrors": [
  1290. {
  1291. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1292. "preferred": true
  1293. }
  1294. ]
  1295. },
  1296. "require": {
  1297. "asm89/stack-cors": "^2.0.1",
  1298. "illuminate/contracts": "^6|^7|^8|^9",
  1299. "illuminate/support": "^6|^7|^8|^9",
  1300. "php": ">=7.2"
  1301. },
  1302. "require-dev": {
  1303. "laravel/framework": "^6|^7.24|^8",
  1304. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1305. "phpunit/phpunit": "^6|^7|^8|^9",
  1306. "squizlabs/php_codesniffer": "^3.5"
  1307. },
  1308. "type": "library",
  1309. "extra": {
  1310. "branch-alias": {
  1311. "dev-master": "2.1-dev"
  1312. },
  1313. "laravel": {
  1314. "providers": [
  1315. "Fruitcake\\Cors\\CorsServiceProvider"
  1316. ]
  1317. }
  1318. },
  1319. "autoload": {
  1320. "psr-4": {
  1321. "Fruitcake\\Cors\\": "src/"
  1322. }
  1323. },
  1324. "notification-url": "https://packagist.org/downloads/",
  1325. "license": [
  1326. "MIT"
  1327. ],
  1328. "authors": [
  1329. {
  1330. "name": "Fruitcake",
  1331. "homepage": "https://fruitcake.nl"
  1332. },
  1333. {
  1334. "name": "Barry vd. Heuvel",
  1335. "email": "barryvdh@gmail.com"
  1336. }
  1337. ],
  1338. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1339. "keywords": [
  1340. "api",
  1341. "cors",
  1342. "crossdomain",
  1343. "laravel"
  1344. ],
  1345. "support": {
  1346. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1347. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1348. },
  1349. "funding": [
  1350. {
  1351. "url": "https://fruitcake.nl",
  1352. "type": "custom"
  1353. },
  1354. {
  1355. "url": "https://github.com/barryvdh",
  1356. "type": "github"
  1357. }
  1358. ],
  1359. "time": "2022-02-23T14:25:13+00:00"
  1360. },
  1361. {
  1362. "name": "graham-campbell/result-type",
  1363. "version": "v1.0.4",
  1364. "source": {
  1365. "type": "git",
  1366. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1367. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  1368. },
  1369. "dist": {
  1370. "type": "zip",
  1371. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  1372. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  1373. "shasum": "",
  1374. "mirrors": [
  1375. {
  1376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1377. "preferred": true
  1378. }
  1379. ]
  1380. },
  1381. "require": {
  1382. "php": "^7.0 || ^8.0",
  1383. "phpoption/phpoption": "^1.8"
  1384. },
  1385. "require-dev": {
  1386. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  1387. },
  1388. "type": "library",
  1389. "autoload": {
  1390. "psr-4": {
  1391. "GrahamCampbell\\ResultType\\": "src/"
  1392. }
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "MIT"
  1397. ],
  1398. "authors": [
  1399. {
  1400. "name": "Graham Campbell",
  1401. "email": "hello@gjcampbell.co.uk",
  1402. "homepage": "https://github.com/GrahamCampbell"
  1403. }
  1404. ],
  1405. "description": "An Implementation Of The Result Type",
  1406. "keywords": [
  1407. "Graham Campbell",
  1408. "GrahamCampbell",
  1409. "Result Type",
  1410. "Result-Type",
  1411. "result"
  1412. ],
  1413. "support": {
  1414. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1415. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  1416. },
  1417. "funding": [
  1418. {
  1419. "url": "https://github.com/GrahamCampbell",
  1420. "type": "github"
  1421. },
  1422. {
  1423. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1424. "type": "tidelift"
  1425. }
  1426. ],
  1427. "time": "2021-11-21T21:41:47+00:00"
  1428. },
  1429. {
  1430. "name": "guzzlehttp/guzzle",
  1431. "version": "7.4.1",
  1432. "source": {
  1433. "type": "git",
  1434. "url": "https://github.com/guzzle/guzzle.git",
  1435. "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79"
  1436. },
  1437. "dist": {
  1438. "type": "zip",
  1439. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/ee0a041b1760e6a53d2a39c8c34115adc2af2c79",
  1440. "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79",
  1441. "shasum": "",
  1442. "mirrors": [
  1443. {
  1444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1445. "preferred": true
  1446. }
  1447. ]
  1448. },
  1449. "require": {
  1450. "ext-json": "*",
  1451. "guzzlehttp/promises": "^1.5",
  1452. "guzzlehttp/psr7": "^1.8.3 || ^2.1",
  1453. "php": "^7.2.5 || ^8.0",
  1454. "psr/http-client": "^1.0",
  1455. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1456. },
  1457. "provide": {
  1458. "psr/http-client-implementation": "1.0"
  1459. },
  1460. "require-dev": {
  1461. "bamarni/composer-bin-plugin": "^1.4.1",
  1462. "ext-curl": "*",
  1463. "php-http/client-integration-tests": "^3.0",
  1464. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1465. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1466. },
  1467. "suggest": {
  1468. "ext-curl": "Required for CURL handler support",
  1469. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1470. "psr/log": "Required for using the Log middleware"
  1471. },
  1472. "type": "library",
  1473. "extra": {
  1474. "branch-alias": {
  1475. "dev-master": "7.4-dev"
  1476. }
  1477. },
  1478. "autoload": {
  1479. "files": [
  1480. "src/functions_include.php"
  1481. ],
  1482. "psr-4": {
  1483. "GuzzleHttp\\": "src/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Graham Campbell",
  1493. "email": "hello@gjcampbell.co.uk",
  1494. "homepage": "https://github.com/GrahamCampbell"
  1495. },
  1496. {
  1497. "name": "Michael Dowling",
  1498. "email": "mtdowling@gmail.com",
  1499. "homepage": "https://github.com/mtdowling"
  1500. },
  1501. {
  1502. "name": "Jeremy Lindblom",
  1503. "email": "jeremeamia@gmail.com",
  1504. "homepage": "https://github.com/jeremeamia"
  1505. },
  1506. {
  1507. "name": "George Mponos",
  1508. "email": "gmponos@gmail.com",
  1509. "homepage": "https://github.com/gmponos"
  1510. },
  1511. {
  1512. "name": "Tobias Nyholm",
  1513. "email": "tobias.nyholm@gmail.com",
  1514. "homepage": "https://github.com/Nyholm"
  1515. },
  1516. {
  1517. "name": "Márk Sági-Kazár",
  1518. "email": "mark.sagikazar@gmail.com",
  1519. "homepage": "https://github.com/sagikazarmark"
  1520. },
  1521. {
  1522. "name": "Tobias Schultze",
  1523. "email": "webmaster@tubo-world.de",
  1524. "homepage": "https://github.com/Tobion"
  1525. }
  1526. ],
  1527. "description": "Guzzle is a PHP HTTP client library",
  1528. "keywords": [
  1529. "client",
  1530. "curl",
  1531. "framework",
  1532. "http",
  1533. "http client",
  1534. "psr-18",
  1535. "psr-7",
  1536. "rest",
  1537. "web service"
  1538. ],
  1539. "support": {
  1540. "issues": "https://github.com/guzzle/guzzle/issues",
  1541. "source": "https://github.com/guzzle/guzzle/tree/7.4.1"
  1542. },
  1543. "funding": [
  1544. {
  1545. "url": "https://github.com/GrahamCampbell",
  1546. "type": "github"
  1547. },
  1548. {
  1549. "url": "https://github.com/Nyholm",
  1550. "type": "github"
  1551. },
  1552. {
  1553. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1554. "type": "tidelift"
  1555. }
  1556. ],
  1557. "time": "2021-12-06T18:43:05+00:00"
  1558. },
  1559. {
  1560. "name": "guzzlehttp/promises",
  1561. "version": "1.5.1",
  1562. "source": {
  1563. "type": "git",
  1564. "url": "https://github.com/guzzle/promises.git",
  1565. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1566. },
  1567. "dist": {
  1568. "type": "zip",
  1569. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1570. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1571. "shasum": "",
  1572. "mirrors": [
  1573. {
  1574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1575. "preferred": true
  1576. }
  1577. ]
  1578. },
  1579. "require": {
  1580. "php": ">=5.5"
  1581. },
  1582. "require-dev": {
  1583. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1584. },
  1585. "type": "library",
  1586. "extra": {
  1587. "branch-alias": {
  1588. "dev-master": "1.5-dev"
  1589. }
  1590. },
  1591. "autoload": {
  1592. "files": [
  1593. "src/functions_include.php"
  1594. ],
  1595. "psr-4": {
  1596. "GuzzleHttp\\Promise\\": "src/"
  1597. }
  1598. },
  1599. "notification-url": "https://packagist.org/downloads/",
  1600. "license": [
  1601. "MIT"
  1602. ],
  1603. "authors": [
  1604. {
  1605. "name": "Graham Campbell",
  1606. "email": "hello@gjcampbell.co.uk",
  1607. "homepage": "https://github.com/GrahamCampbell"
  1608. },
  1609. {
  1610. "name": "Michael Dowling",
  1611. "email": "mtdowling@gmail.com",
  1612. "homepage": "https://github.com/mtdowling"
  1613. },
  1614. {
  1615. "name": "Tobias Nyholm",
  1616. "email": "tobias.nyholm@gmail.com",
  1617. "homepage": "https://github.com/Nyholm"
  1618. },
  1619. {
  1620. "name": "Tobias Schultze",
  1621. "email": "webmaster@tubo-world.de",
  1622. "homepage": "https://github.com/Tobion"
  1623. }
  1624. ],
  1625. "description": "Guzzle promises library",
  1626. "keywords": [
  1627. "promise"
  1628. ],
  1629. "support": {
  1630. "issues": "https://github.com/guzzle/promises/issues",
  1631. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1632. },
  1633. "funding": [
  1634. {
  1635. "url": "https://github.com/GrahamCampbell",
  1636. "type": "github"
  1637. },
  1638. {
  1639. "url": "https://github.com/Nyholm",
  1640. "type": "github"
  1641. },
  1642. {
  1643. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1644. "type": "tidelift"
  1645. }
  1646. ],
  1647. "time": "2021-10-22T20:56:57+00:00"
  1648. },
  1649. {
  1650. "name": "guzzlehttp/psr7",
  1651. "version": "2.1.0",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/guzzle/psr7.git",
  1655. "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/guzzle/psr7/zipball/089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
  1660. "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
  1661. "shasum": "",
  1662. "mirrors": [
  1663. {
  1664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1665. "preferred": true
  1666. }
  1667. ]
  1668. },
  1669. "require": {
  1670. "php": "^7.2.5 || ^8.0",
  1671. "psr/http-factory": "^1.0",
  1672. "psr/http-message": "^1.0",
  1673. "ralouphie/getallheaders": "^3.0"
  1674. },
  1675. "provide": {
  1676. "psr/http-factory-implementation": "1.0",
  1677. "psr/http-message-implementation": "1.0"
  1678. },
  1679. "require-dev": {
  1680. "bamarni/composer-bin-plugin": "^1.4.1",
  1681. "http-interop/http-factory-tests": "^0.9",
  1682. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  1683. },
  1684. "suggest": {
  1685. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1686. },
  1687. "type": "library",
  1688. "extra": {
  1689. "branch-alias": {
  1690. "dev-master": "2.1-dev"
  1691. }
  1692. },
  1693. "autoload": {
  1694. "psr-4": {
  1695. "GuzzleHttp\\Psr7\\": "src/"
  1696. }
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "MIT"
  1701. ],
  1702. "authors": [
  1703. {
  1704. "name": "Graham Campbell",
  1705. "email": "hello@gjcampbell.co.uk",
  1706. "homepage": "https://github.com/GrahamCampbell"
  1707. },
  1708. {
  1709. "name": "Michael Dowling",
  1710. "email": "mtdowling@gmail.com",
  1711. "homepage": "https://github.com/mtdowling"
  1712. },
  1713. {
  1714. "name": "George Mponos",
  1715. "email": "gmponos@gmail.com",
  1716. "homepage": "https://github.com/gmponos"
  1717. },
  1718. {
  1719. "name": "Tobias Nyholm",
  1720. "email": "tobias.nyholm@gmail.com",
  1721. "homepage": "https://github.com/Nyholm"
  1722. },
  1723. {
  1724. "name": "Márk Sági-Kazár",
  1725. "email": "mark.sagikazar@gmail.com",
  1726. "homepage": "https://github.com/sagikazarmark"
  1727. },
  1728. {
  1729. "name": "Tobias Schultze",
  1730. "email": "webmaster@tubo-world.de",
  1731. "homepage": "https://github.com/Tobion"
  1732. },
  1733. {
  1734. "name": "Márk Sági-Kazár",
  1735. "email": "mark.sagikazar@gmail.com",
  1736. "homepage": "https://sagikazarmark.hu"
  1737. }
  1738. ],
  1739. "description": "PSR-7 message implementation that also provides common utility methods",
  1740. "keywords": [
  1741. "http",
  1742. "message",
  1743. "psr-7",
  1744. "request",
  1745. "response",
  1746. "stream",
  1747. "uri",
  1748. "url"
  1749. ],
  1750. "support": {
  1751. "issues": "https://github.com/guzzle/psr7/issues",
  1752. "source": "https://github.com/guzzle/psr7/tree/2.1.0"
  1753. },
  1754. "funding": [
  1755. {
  1756. "url": "https://github.com/GrahamCampbell",
  1757. "type": "github"
  1758. },
  1759. {
  1760. "url": "https://github.com/Nyholm",
  1761. "type": "github"
  1762. },
  1763. {
  1764. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1765. "type": "tidelift"
  1766. }
  1767. ],
  1768. "time": "2021-10-06T17:43:30+00:00"
  1769. },
  1770. {
  1771. "name": "hhxsv5/laravel-s",
  1772. "version": "v3.7.31",
  1773. "source": {
  1774. "type": "git",
  1775. "url": "https://github.com/hhxsv5/laravel-s.git",
  1776. "reference": "f2bb2f70e1761e49c37be26ecb042ff2f3e25bc2"
  1777. },
  1778. "dist": {
  1779. "type": "zip",
  1780. "url": "https://api.github.com/repos/hhxsv5/laravel-s/zipball/f2bb2f70e1761e49c37be26ecb042ff2f3e25bc2",
  1781. "reference": "f2bb2f70e1761e49c37be26ecb042ff2f3e25bc2",
  1782. "shasum": "",
  1783. "mirrors": [
  1784. {
  1785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1786. "preferred": true
  1787. }
  1788. ]
  1789. },
  1790. "require": {
  1791. "ext-curl": "*",
  1792. "ext-json": "*",
  1793. "ext-pcntl": "*",
  1794. "php": ">=5.5.9",
  1795. "swoole/ide-helper": "@dev",
  1796. "symfony/console": ">=2.7.0"
  1797. },
  1798. "require-dev": {
  1799. "phpunit/phpunit": ">=4.8.36"
  1800. },
  1801. "suggest": {
  1802. "ext-inotify": "Inotify, used to real-time reload.",
  1803. "ext-swoole": "Coroutine-based concurrency library for PHP, require >= 1.7.19."
  1804. },
  1805. "bin": [
  1806. "bin/fswatch"
  1807. ],
  1808. "type": "library",
  1809. "extra": {
  1810. "laravel": {
  1811. "providers": [
  1812. "Hhxsv5\\LaravelS\\Illuminate\\LaravelSServiceProvider"
  1813. ]
  1814. }
  1815. },
  1816. "autoload": {
  1817. "psr-4": {
  1818. "Hhxsv5\\LaravelS\\": "src"
  1819. }
  1820. },
  1821. "notification-url": "https://packagist.org/downloads/",
  1822. "license": [
  1823. "MIT"
  1824. ],
  1825. "authors": [
  1826. {
  1827. "name": "Xie Biao",
  1828. "email": "hhxsv5@sina.com"
  1829. }
  1830. ],
  1831. "description": "🚀 LaravelS is an out-of-the-box adapter between Swoole and Laravel/Lumen.",
  1832. "homepage": "https://github.com/hhxsv5/laravel-s",
  1833. "keywords": [
  1834. "LaravelS",
  1835. "async",
  1836. "coroutine",
  1837. "http",
  1838. "inotify",
  1839. "laravel",
  1840. "laravel-s",
  1841. "lumen",
  1842. "performance",
  1843. "process",
  1844. "server",
  1845. "swoole",
  1846. "task",
  1847. "tcp",
  1848. "timer",
  1849. "udp",
  1850. "websocket"
  1851. ],
  1852. "support": {
  1853. "issues": "https://github.com/hhxsv5/laravel-s/issues",
  1854. "source": "https://github.com/hhxsv5/laravel-s"
  1855. },
  1856. "funding": [
  1857. {
  1858. "url": "https://gitee.com/hhxsv5/laravel-s?donate=true",
  1859. "type": "custom"
  1860. },
  1861. {
  1862. "url": "https://www.blockchain.com/btc/address/367HnAzVTAEk8offesDhcsCQswnugsE54u",
  1863. "type": "custom"
  1864. },
  1865. {
  1866. "url": "https://www.paypal.me/hhxsv5",
  1867. "type": "custom"
  1868. }
  1869. ],
  1870. "time": "2022-04-18T10:42:39+00:00"
  1871. },
  1872. {
  1873. "name": "laravel/framework",
  1874. "version": "v8.83.9",
  1875. "source": {
  1876. "type": "git",
  1877. "url": "https://github.com/laravel/framework.git",
  1878. "reference": "ac6e16bb56510eda2e373c6365d5c92da3fd559d"
  1879. },
  1880. "dist": {
  1881. "type": "zip",
  1882. "url": "https://api.github.com/repos/laravel/framework/zipball/ac6e16bb56510eda2e373c6365d5c92da3fd559d",
  1883. "reference": "ac6e16bb56510eda2e373c6365d5c92da3fd559d",
  1884. "shasum": "",
  1885. "mirrors": [
  1886. {
  1887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1888. "preferred": true
  1889. }
  1890. ]
  1891. },
  1892. "require": {
  1893. "doctrine/inflector": "^1.4|^2.0",
  1894. "dragonmantank/cron-expression": "^3.0.2",
  1895. "egulias/email-validator": "^2.1.10",
  1896. "ext-json": "*",
  1897. "ext-mbstring": "*",
  1898. "ext-openssl": "*",
  1899. "laravel/serializable-closure": "^1.0",
  1900. "league/commonmark": "^1.3|^2.0.2",
  1901. "league/flysystem": "^1.1",
  1902. "monolog/monolog": "^2.0",
  1903. "nesbot/carbon": "^2.53.1",
  1904. "opis/closure": "^3.6",
  1905. "php": "^7.3|^8.0",
  1906. "psr/container": "^1.0",
  1907. "psr/log": "^1.0|^2.0",
  1908. "psr/simple-cache": "^1.0",
  1909. "ramsey/uuid": "^4.2.2",
  1910. "swiftmailer/swiftmailer": "^6.3",
  1911. "symfony/console": "^5.4",
  1912. "symfony/error-handler": "^5.4",
  1913. "symfony/finder": "^5.4",
  1914. "symfony/http-foundation": "^5.4",
  1915. "symfony/http-kernel": "^5.4",
  1916. "symfony/mime": "^5.4",
  1917. "symfony/process": "^5.4",
  1918. "symfony/routing": "^5.4",
  1919. "symfony/var-dumper": "^5.4",
  1920. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1921. "vlucas/phpdotenv": "^5.4.1",
  1922. "voku/portable-ascii": "^1.6.1"
  1923. },
  1924. "conflict": {
  1925. "tightenco/collect": "<5.5.33"
  1926. },
  1927. "provide": {
  1928. "psr/container-implementation": "1.0",
  1929. "psr/simple-cache-implementation": "1.0"
  1930. },
  1931. "replace": {
  1932. "illuminate/auth": "self.version",
  1933. "illuminate/broadcasting": "self.version",
  1934. "illuminate/bus": "self.version",
  1935. "illuminate/cache": "self.version",
  1936. "illuminate/collections": "self.version",
  1937. "illuminate/config": "self.version",
  1938. "illuminate/console": "self.version",
  1939. "illuminate/container": "self.version",
  1940. "illuminate/contracts": "self.version",
  1941. "illuminate/cookie": "self.version",
  1942. "illuminate/database": "self.version",
  1943. "illuminate/encryption": "self.version",
  1944. "illuminate/events": "self.version",
  1945. "illuminate/filesystem": "self.version",
  1946. "illuminate/hashing": "self.version",
  1947. "illuminate/http": "self.version",
  1948. "illuminate/log": "self.version",
  1949. "illuminate/macroable": "self.version",
  1950. "illuminate/mail": "self.version",
  1951. "illuminate/notifications": "self.version",
  1952. "illuminate/pagination": "self.version",
  1953. "illuminate/pipeline": "self.version",
  1954. "illuminate/queue": "self.version",
  1955. "illuminate/redis": "self.version",
  1956. "illuminate/routing": "self.version",
  1957. "illuminate/session": "self.version",
  1958. "illuminate/support": "self.version",
  1959. "illuminate/testing": "self.version",
  1960. "illuminate/translation": "self.version",
  1961. "illuminate/validation": "self.version",
  1962. "illuminate/view": "self.version"
  1963. },
  1964. "require-dev": {
  1965. "aws/aws-sdk-php": "^3.198.1",
  1966. "doctrine/dbal": "^2.13.3|^3.1.4",
  1967. "filp/whoops": "^2.14.3",
  1968. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1969. "league/flysystem-cached-adapter": "^1.0",
  1970. "mockery/mockery": "^1.4.4",
  1971. "orchestra/testbench-core": "^6.27",
  1972. "pda/pheanstalk": "^4.0",
  1973. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1974. "predis/predis": "^1.1.9",
  1975. "symfony/cache": "^5.4"
  1976. },
  1977. "suggest": {
  1978. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1979. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1980. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1981. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1982. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1983. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1984. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1985. "ext-memcached": "Required to use the memcache cache driver.",
  1986. "ext-pcntl": "Required to use all features of the queue worker.",
  1987. "ext-posix": "Required to use all features of the queue worker.",
  1988. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1989. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1990. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1991. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1992. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1993. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1994. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1995. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1996. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1997. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1998. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1999. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2000. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2001. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2002. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2003. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2004. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2005. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2006. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "branch-alias": {
  2011. "dev-master": "8.x-dev"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "files": [
  2016. "src/Illuminate/Collections/helpers.php",
  2017. "src/Illuminate/Events/functions.php",
  2018. "src/Illuminate/Foundation/helpers.php",
  2019. "src/Illuminate/Support/helpers.php"
  2020. ],
  2021. "psr-4": {
  2022. "Illuminate\\": "src/Illuminate/",
  2023. "Illuminate\\Support\\": [
  2024. "src/Illuminate/Macroable/",
  2025. "src/Illuminate/Collections/"
  2026. ]
  2027. }
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Taylor Otwell",
  2036. "email": "taylor@laravel.com"
  2037. }
  2038. ],
  2039. "description": "The Laravel Framework.",
  2040. "homepage": "https://laravel.com",
  2041. "keywords": [
  2042. "framework",
  2043. "laravel"
  2044. ],
  2045. "support": {
  2046. "issues": "https://github.com/laravel/framework/issues",
  2047. "source": "https://github.com/laravel/framework"
  2048. },
  2049. "time": "2022-04-19T15:01:38+00:00"
  2050. },
  2051. {
  2052. "name": "laravel/serializable-closure",
  2053. "version": "v1.1.1",
  2054. "source": {
  2055. "type": "git",
  2056. "url": "https://github.com/laravel/serializable-closure.git",
  2057. "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e"
  2058. },
  2059. "dist": {
  2060. "type": "zip",
  2061. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/9e4b005daa20b0c161f3845040046dc9ddc1d74e",
  2062. "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e",
  2063. "shasum": "",
  2064. "mirrors": [
  2065. {
  2066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2067. "preferred": true
  2068. }
  2069. ]
  2070. },
  2071. "require": {
  2072. "php": "^7.3|^8.0"
  2073. },
  2074. "require-dev": {
  2075. "pestphp/pest": "^1.18",
  2076. "phpstan/phpstan": "^0.12.98",
  2077. "symfony/var-dumper": "^5.3"
  2078. },
  2079. "type": "library",
  2080. "extra": {
  2081. "branch-alias": {
  2082. "dev-master": "1.x-dev"
  2083. }
  2084. },
  2085. "autoload": {
  2086. "psr-4": {
  2087. "Laravel\\SerializableClosure\\": "src/"
  2088. }
  2089. },
  2090. "notification-url": "https://packagist.org/downloads/",
  2091. "license": [
  2092. "MIT"
  2093. ],
  2094. "authors": [
  2095. {
  2096. "name": "Taylor Otwell",
  2097. "email": "taylor@laravel.com"
  2098. },
  2099. {
  2100. "name": "Nuno Maduro",
  2101. "email": "nuno@laravel.com"
  2102. }
  2103. ],
  2104. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2105. "keywords": [
  2106. "closure",
  2107. "laravel",
  2108. "serializable"
  2109. ],
  2110. "support": {
  2111. "issues": "https://github.com/laravel/serializable-closure/issues",
  2112. "source": "https://github.com/laravel/serializable-closure"
  2113. },
  2114. "time": "2022-02-11T19:23:53+00:00"
  2115. },
  2116. {
  2117. "name": "laravel/tinker",
  2118. "version": "v2.7.2",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/laravel/tinker.git",
  2122. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  2127. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  2128. "shasum": "",
  2129. "mirrors": [
  2130. {
  2131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2132. "preferred": true
  2133. }
  2134. ]
  2135. },
  2136. "require": {
  2137. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  2138. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  2139. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  2140. "php": "^7.2.5|^8.0",
  2141. "psy/psysh": "^0.10.4|^0.11.1",
  2142. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2143. },
  2144. "require-dev": {
  2145. "mockery/mockery": "~1.3.3|^1.4.2",
  2146. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2147. },
  2148. "suggest": {
  2149. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  2150. },
  2151. "type": "library",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-master": "2.x-dev"
  2155. },
  2156. "laravel": {
  2157. "providers": [
  2158. "Laravel\\Tinker\\TinkerServiceProvider"
  2159. ]
  2160. }
  2161. },
  2162. "autoload": {
  2163. "psr-4": {
  2164. "Laravel\\Tinker\\": "src/"
  2165. }
  2166. },
  2167. "notification-url": "https://packagist.org/downloads/",
  2168. "license": [
  2169. "MIT"
  2170. ],
  2171. "authors": [
  2172. {
  2173. "name": "Taylor Otwell",
  2174. "email": "taylor@laravel.com"
  2175. }
  2176. ],
  2177. "description": "Powerful REPL for the Laravel framework.",
  2178. "keywords": [
  2179. "REPL",
  2180. "Tinker",
  2181. "laravel",
  2182. "psysh"
  2183. ],
  2184. "support": {
  2185. "issues": "https://github.com/laravel/tinker/issues",
  2186. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  2187. },
  2188. "time": "2022-03-23T12:38:24+00:00"
  2189. },
  2190. {
  2191. "name": "league/commonmark",
  2192. "version": "2.3.0",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/thephpleague/commonmark.git",
  2196. "reference": "32a49eb2b38fe5e5c417ab748a45d0beaab97955"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/32a49eb2b38fe5e5c417ab748a45d0beaab97955",
  2201. "reference": "32a49eb2b38fe5e5c417ab748a45d0beaab97955",
  2202. "shasum": "",
  2203. "mirrors": [
  2204. {
  2205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2206. "preferred": true
  2207. }
  2208. ]
  2209. },
  2210. "require": {
  2211. "ext-mbstring": "*",
  2212. "league/config": "^1.1.1",
  2213. "php": "^7.4 || ^8.0",
  2214. "psr/event-dispatcher": "^1.0",
  2215. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2216. "symfony/polyfill-php80": "^1.16"
  2217. },
  2218. "require-dev": {
  2219. "cebe/markdown": "^1.0",
  2220. "commonmark/cmark": "0.30.0",
  2221. "commonmark/commonmark.js": "0.30.0",
  2222. "composer/package-versions-deprecated": "^1.8",
  2223. "embed/embed": "^4.4",
  2224. "erusev/parsedown": "^1.0",
  2225. "ext-json": "*",
  2226. "github/gfm": "0.29.0",
  2227. "michelf/php-markdown": "^1.4",
  2228. "nyholm/psr7": "^1.5",
  2229. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  2230. "phpunit/phpunit": "^9.5.5",
  2231. "scrutinizer/ocular": "^1.8.1",
  2232. "symfony/finder": "^5.3",
  2233. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2234. "unleashedtech/php-coding-standard": "^3.1",
  2235. "vimeo/psalm": "^4.7.3"
  2236. },
  2237. "suggest": {
  2238. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2239. },
  2240. "type": "library",
  2241. "extra": {
  2242. "branch-alias": {
  2243. "dev-main": "2.4-dev"
  2244. }
  2245. },
  2246. "autoload": {
  2247. "psr-4": {
  2248. "League\\CommonMark\\": "src"
  2249. }
  2250. },
  2251. "notification-url": "https://packagist.org/downloads/",
  2252. "license": [
  2253. "BSD-3-Clause"
  2254. ],
  2255. "authors": [
  2256. {
  2257. "name": "Colin O'Dell",
  2258. "email": "colinodell@gmail.com",
  2259. "homepage": "https://www.colinodell.com",
  2260. "role": "Lead Developer"
  2261. }
  2262. ],
  2263. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2264. "homepage": "https://commonmark.thephpleague.com",
  2265. "keywords": [
  2266. "commonmark",
  2267. "flavored",
  2268. "gfm",
  2269. "github",
  2270. "github-flavored",
  2271. "markdown",
  2272. "md",
  2273. "parser"
  2274. ],
  2275. "support": {
  2276. "docs": "https://commonmark.thephpleague.com/",
  2277. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2278. "issues": "https://github.com/thephpleague/commonmark/issues",
  2279. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2280. "source": "https://github.com/thephpleague/commonmark"
  2281. },
  2282. "funding": [
  2283. {
  2284. "url": "https://www.colinodell.com/sponsor",
  2285. "type": "custom"
  2286. },
  2287. {
  2288. "url": "https://www.paypal.me/colinpodell/10.00",
  2289. "type": "custom"
  2290. },
  2291. {
  2292. "url": "https://github.com/colinodell",
  2293. "type": "github"
  2294. },
  2295. {
  2296. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2297. "type": "tidelift"
  2298. }
  2299. ],
  2300. "time": "2022-04-07T22:37:05+00:00"
  2301. },
  2302. {
  2303. "name": "league/config",
  2304. "version": "v1.1.1",
  2305. "source": {
  2306. "type": "git",
  2307. "url": "https://github.com/thephpleague/config.git",
  2308. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  2309. },
  2310. "dist": {
  2311. "type": "zip",
  2312. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  2313. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  2314. "shasum": "",
  2315. "mirrors": [
  2316. {
  2317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2318. "preferred": true
  2319. }
  2320. ]
  2321. },
  2322. "require": {
  2323. "dflydev/dot-access-data": "^3.0.1",
  2324. "nette/schema": "^1.2",
  2325. "php": "^7.4 || ^8.0"
  2326. },
  2327. "require-dev": {
  2328. "phpstan/phpstan": "^0.12.90",
  2329. "phpunit/phpunit": "^9.5.5",
  2330. "scrutinizer/ocular": "^1.8.1",
  2331. "unleashedtech/php-coding-standard": "^3.1",
  2332. "vimeo/psalm": "^4.7.3"
  2333. },
  2334. "type": "library",
  2335. "extra": {
  2336. "branch-alias": {
  2337. "dev-main": "1.2-dev"
  2338. }
  2339. },
  2340. "autoload": {
  2341. "psr-4": {
  2342. "League\\Config\\": "src"
  2343. }
  2344. },
  2345. "notification-url": "https://packagist.org/downloads/",
  2346. "license": [
  2347. "BSD-3-Clause"
  2348. ],
  2349. "authors": [
  2350. {
  2351. "name": "Colin O'Dell",
  2352. "email": "colinodell@gmail.com",
  2353. "homepage": "https://www.colinodell.com",
  2354. "role": "Lead Developer"
  2355. }
  2356. ],
  2357. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2358. "homepage": "https://config.thephpleague.com",
  2359. "keywords": [
  2360. "array",
  2361. "config",
  2362. "configuration",
  2363. "dot",
  2364. "dot-access",
  2365. "nested",
  2366. "schema"
  2367. ],
  2368. "support": {
  2369. "docs": "https://config.thephpleague.com/",
  2370. "issues": "https://github.com/thephpleague/config/issues",
  2371. "rss": "https://github.com/thephpleague/config/releases.atom",
  2372. "source": "https://github.com/thephpleague/config"
  2373. },
  2374. "funding": [
  2375. {
  2376. "url": "https://www.colinodell.com/sponsor",
  2377. "type": "custom"
  2378. },
  2379. {
  2380. "url": "https://www.paypal.me/colinpodell/10.00",
  2381. "type": "custom"
  2382. },
  2383. {
  2384. "url": "https://github.com/colinodell",
  2385. "type": "github"
  2386. }
  2387. ],
  2388. "time": "2021-08-14T12:15:32+00:00"
  2389. },
  2390. {
  2391. "name": "league/flysystem",
  2392. "version": "1.1.9",
  2393. "source": {
  2394. "type": "git",
  2395. "url": "https://github.com/thephpleague/flysystem.git",
  2396. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  2397. },
  2398. "dist": {
  2399. "type": "zip",
  2400. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  2401. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  2402. "shasum": "",
  2403. "mirrors": [
  2404. {
  2405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2406. "preferred": true
  2407. }
  2408. ]
  2409. },
  2410. "require": {
  2411. "ext-fileinfo": "*",
  2412. "league/mime-type-detection": "^1.3",
  2413. "php": "^7.2.5 || ^8.0"
  2414. },
  2415. "conflict": {
  2416. "league/flysystem-sftp": "<1.0.6"
  2417. },
  2418. "require-dev": {
  2419. "phpspec/prophecy": "^1.11.1",
  2420. "phpunit/phpunit": "^8.5.8"
  2421. },
  2422. "suggest": {
  2423. "ext-ftp": "Allows you to use FTP server storage",
  2424. "ext-openssl": "Allows you to use FTPS server storage",
  2425. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2426. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2427. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2428. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2429. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2430. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2431. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2432. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2433. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2434. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2435. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2436. },
  2437. "type": "library",
  2438. "extra": {
  2439. "branch-alias": {
  2440. "dev-master": "1.1-dev"
  2441. }
  2442. },
  2443. "autoload": {
  2444. "psr-4": {
  2445. "League\\Flysystem\\": "src/"
  2446. }
  2447. },
  2448. "notification-url": "https://packagist.org/downloads/",
  2449. "license": [
  2450. "MIT"
  2451. ],
  2452. "authors": [
  2453. {
  2454. "name": "Frank de Jonge",
  2455. "email": "info@frenky.net"
  2456. }
  2457. ],
  2458. "description": "Filesystem abstraction: Many filesystems, one API.",
  2459. "keywords": [
  2460. "Cloud Files",
  2461. "WebDAV",
  2462. "abstraction",
  2463. "aws",
  2464. "cloud",
  2465. "copy.com",
  2466. "dropbox",
  2467. "file systems",
  2468. "files",
  2469. "filesystem",
  2470. "filesystems",
  2471. "ftp",
  2472. "rackspace",
  2473. "remote",
  2474. "s3",
  2475. "sftp",
  2476. "storage"
  2477. ],
  2478. "support": {
  2479. "issues": "https://github.com/thephpleague/flysystem/issues",
  2480. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  2481. },
  2482. "funding": [
  2483. {
  2484. "url": "https://offset.earth/frankdejonge",
  2485. "type": "other"
  2486. }
  2487. ],
  2488. "time": "2021-12-09T09:40:50+00:00"
  2489. },
  2490. {
  2491. "name": "league/mime-type-detection",
  2492. "version": "1.11.0",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2496. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2497. },
  2498. "dist": {
  2499. "type": "zip",
  2500. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2501. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2502. "shasum": "",
  2503. "mirrors": [
  2504. {
  2505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2506. "preferred": true
  2507. }
  2508. ]
  2509. },
  2510. "require": {
  2511. "ext-fileinfo": "*",
  2512. "php": "^7.2 || ^8.0"
  2513. },
  2514. "require-dev": {
  2515. "friendsofphp/php-cs-fixer": "^3.2",
  2516. "phpstan/phpstan": "^0.12.68",
  2517. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2518. },
  2519. "type": "library",
  2520. "autoload": {
  2521. "psr-4": {
  2522. "League\\MimeTypeDetection\\": "src"
  2523. }
  2524. },
  2525. "notification-url": "https://packagist.org/downloads/",
  2526. "license": [
  2527. "MIT"
  2528. ],
  2529. "authors": [
  2530. {
  2531. "name": "Frank de Jonge",
  2532. "email": "info@frankdejonge.nl"
  2533. }
  2534. ],
  2535. "description": "Mime-type detection for Flysystem",
  2536. "support": {
  2537. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2538. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2539. },
  2540. "funding": [
  2541. {
  2542. "url": "https://github.com/frankdejonge",
  2543. "type": "github"
  2544. },
  2545. {
  2546. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2547. "type": "tidelift"
  2548. }
  2549. ],
  2550. "time": "2022-04-17T13:12:02+00:00"
  2551. },
  2552. {
  2553. "name": "lizhichao/one-sm",
  2554. "version": "1.10",
  2555. "source": {
  2556. "type": "git",
  2557. "url": "https://github.com/lizhichao/sm.git",
  2558. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2559. },
  2560. "dist": {
  2561. "type": "zip",
  2562. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2563. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2564. "shasum": "",
  2565. "mirrors": [
  2566. {
  2567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2568. "preferred": true
  2569. }
  2570. ]
  2571. },
  2572. "require": {
  2573. "php": ">=5.6"
  2574. },
  2575. "type": "library",
  2576. "autoload": {
  2577. "psr-4": {
  2578. "OneSm\\": "src/"
  2579. }
  2580. },
  2581. "notification-url": "https://packagist.org/downloads/",
  2582. "license": [
  2583. "Apache-2.0"
  2584. ],
  2585. "authors": [
  2586. {
  2587. "name": "tanszhe",
  2588. "email": "1018595261@qq.com"
  2589. }
  2590. ],
  2591. "description": "国密sm3",
  2592. "keywords": [
  2593. "php",
  2594. "sm3"
  2595. ],
  2596. "support": {
  2597. "issues": "https://github.com/lizhichao/sm/issues",
  2598. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2599. },
  2600. "funding": [
  2601. {
  2602. "url": "https://www.vicsdf.com/img/w.jpg",
  2603. "type": "custom"
  2604. },
  2605. {
  2606. "url": "https://www.vicsdf.com/img/z.jpg",
  2607. "type": "custom"
  2608. }
  2609. ],
  2610. "time": "2021-05-26T06:19:22+00:00"
  2611. },
  2612. {
  2613. "name": "maatwebsite/excel",
  2614. "version": "3.1.39",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  2618. "reference": "5165334de44c6f7788a5818a1d019aa71a43e092"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/5165334de44c6f7788a5818a1d019aa71a43e092",
  2623. "reference": "5165334de44c6f7788a5818a1d019aa71a43e092",
  2624. "shasum": "",
  2625. "mirrors": [
  2626. {
  2627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2628. "preferred": true
  2629. }
  2630. ]
  2631. },
  2632. "require": {
  2633. "ext-json": "*",
  2634. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0",
  2635. "php": "^7.0|^8.0",
  2636. "phpoffice/phpspreadsheet": "^1.18"
  2637. },
  2638. "require-dev": {
  2639. "orchestra/testbench": "^6.0|^7.0",
  2640. "predis/predis": "^1.1"
  2641. },
  2642. "type": "library",
  2643. "extra": {
  2644. "laravel": {
  2645. "providers": [
  2646. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2647. ],
  2648. "aliases": {
  2649. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2650. }
  2651. }
  2652. },
  2653. "autoload": {
  2654. "psr-4": {
  2655. "Maatwebsite\\Excel\\": "src/"
  2656. }
  2657. },
  2658. "notification-url": "https://packagist.org/downloads/",
  2659. "license": [
  2660. "MIT"
  2661. ],
  2662. "authors": [
  2663. {
  2664. "name": "Patrick Brouwers",
  2665. "email": "patrick@spartner.nl"
  2666. }
  2667. ],
  2668. "description": "Supercharged Excel exports and imports in Laravel",
  2669. "keywords": [
  2670. "PHPExcel",
  2671. "batch",
  2672. "csv",
  2673. "excel",
  2674. "export",
  2675. "import",
  2676. "laravel",
  2677. "php",
  2678. "phpspreadsheet"
  2679. ],
  2680. "support": {
  2681. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  2682. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.39"
  2683. },
  2684. "funding": [
  2685. {
  2686. "url": "https://laravel-excel.com/commercial-support",
  2687. "type": "custom"
  2688. },
  2689. {
  2690. "url": "https://github.com/patrickbrouwers",
  2691. "type": "github"
  2692. }
  2693. ],
  2694. "time": "2022-04-23T11:44:18+00:00"
  2695. },
  2696. {
  2697. "name": "madnest/madzipper",
  2698. "version": "v1.1.1",
  2699. "source": {
  2700. "type": "git",
  2701. "url": "https://github.com/madnest/madzipper.git",
  2702. "reference": "788211daf4555ecdacee341816720437d169c0cc"
  2703. },
  2704. "dist": {
  2705. "type": "zip",
  2706. "url": "https://api.github.com/repos/madnest/madzipper/zipball/788211daf4555ecdacee341816720437d169c0cc",
  2707. "reference": "788211daf4555ecdacee341816720437d169c0cc",
  2708. "shasum": "",
  2709. "mirrors": [
  2710. {
  2711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2712. "preferred": true
  2713. }
  2714. ]
  2715. },
  2716. "require": {
  2717. "ext-zip": "*",
  2718. "illuminate/filesystem": "^7.0|^8.0",
  2719. "illuminate/support": "^7.0|^8.0",
  2720. "php": "^7.3|^8.0"
  2721. },
  2722. "require-dev": {
  2723. "mockery/mockery": "^1.4.4",
  2724. "nunomaduro/collision": "^5.10",
  2725. "orchestra/testbench": "^6.8",
  2726. "phpunit/phpunit": "^9.5"
  2727. },
  2728. "type": "library",
  2729. "extra": {
  2730. "laravel": {
  2731. "providers": [
  2732. "Madnest\\Madzipper\\MadzipperServiceProvider"
  2733. ],
  2734. "aliases": {
  2735. "Madzipper": "Madnest\\Madzipper\\Madzipper"
  2736. }
  2737. }
  2738. },
  2739. "autoload": {
  2740. "psr-4": {
  2741. "Madnest\\Madzipper\\": "src/Madnest/Madzipper"
  2742. }
  2743. },
  2744. "notification-url": "https://packagist.org/downloads/",
  2745. "license": [
  2746. "MIT"
  2747. ],
  2748. "authors": [
  2749. {
  2750. "name": "Jakub Theimer",
  2751. "email": "theimer@madne.st",
  2752. "homepage": "https://madne.st",
  2753. "role": "Developer"
  2754. }
  2755. ],
  2756. "description": "Wannabe successor of Chumper/Zipper package for Laravel",
  2757. "support": {
  2758. "issues": "https://github.com/madnest/madzipper/issues",
  2759. "source": "https://github.com/madnest/madzipper/tree/v1.1.1"
  2760. },
  2761. "time": "2021-11-20T18:23:07+00:00"
  2762. },
  2763. {
  2764. "name": "maennchen/zipstream-php",
  2765. "version": "2.1.0",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2769. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2774. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2775. "shasum": "",
  2776. "mirrors": [
  2777. {
  2778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2779. "preferred": true
  2780. }
  2781. ]
  2782. },
  2783. "require": {
  2784. "myclabs/php-enum": "^1.5",
  2785. "php": ">= 7.1",
  2786. "psr/http-message": "^1.0",
  2787. "symfony/polyfill-mbstring": "^1.0"
  2788. },
  2789. "require-dev": {
  2790. "ext-zip": "*",
  2791. "guzzlehttp/guzzle": ">= 6.3",
  2792. "mikey179/vfsstream": "^1.6",
  2793. "phpunit/phpunit": ">= 7.5"
  2794. },
  2795. "type": "library",
  2796. "autoload": {
  2797. "psr-4": {
  2798. "ZipStream\\": "src/"
  2799. }
  2800. },
  2801. "notification-url": "https://packagist.org/downloads/",
  2802. "license": [
  2803. "MIT"
  2804. ],
  2805. "authors": [
  2806. {
  2807. "name": "Paul Duncan",
  2808. "email": "pabs@pablotron.org"
  2809. },
  2810. {
  2811. "name": "Jonatan Männchen",
  2812. "email": "jonatan@maennchen.ch"
  2813. },
  2814. {
  2815. "name": "Jesse Donat",
  2816. "email": "donatj@gmail.com"
  2817. },
  2818. {
  2819. "name": "András Kolesár",
  2820. "email": "kolesar@kolesar.hu"
  2821. }
  2822. ],
  2823. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2824. "keywords": [
  2825. "stream",
  2826. "zip"
  2827. ],
  2828. "support": {
  2829. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2830. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2831. },
  2832. "funding": [
  2833. {
  2834. "url": "https://opencollective.com/zipstream",
  2835. "type": "open_collective"
  2836. }
  2837. ],
  2838. "time": "2020-05-30T13:11:16+00:00"
  2839. },
  2840. {
  2841. "name": "markbaker/complex",
  2842. "version": "3.0.1",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2846. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  2851. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  2852. "shasum": "",
  2853. "mirrors": [
  2854. {
  2855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2856. "preferred": true
  2857. }
  2858. ]
  2859. },
  2860. "require": {
  2861. "php": "^7.2 || ^8.0"
  2862. },
  2863. "require-dev": {
  2864. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2865. "phpcompatibility/php-compatibility": "^9.0",
  2866. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2867. "squizlabs/php_codesniffer": "^3.4"
  2868. },
  2869. "type": "library",
  2870. "autoload": {
  2871. "psr-4": {
  2872. "Complex\\": "classes/src/"
  2873. }
  2874. },
  2875. "notification-url": "https://packagist.org/downloads/",
  2876. "license": [
  2877. "MIT"
  2878. ],
  2879. "authors": [
  2880. {
  2881. "name": "Mark Baker",
  2882. "email": "mark@lange.demon.co.uk"
  2883. }
  2884. ],
  2885. "description": "PHP Class for working with complex numbers",
  2886. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2887. "keywords": [
  2888. "complex",
  2889. "mathematics"
  2890. ],
  2891. "support": {
  2892. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2893. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1"
  2894. },
  2895. "time": "2021-06-29T15:32:53+00:00"
  2896. },
  2897. {
  2898. "name": "markbaker/matrix",
  2899. "version": "3.0.0",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2903. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576",
  2908. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  2909. "shasum": "",
  2910. "mirrors": [
  2911. {
  2912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2913. "preferred": true
  2914. }
  2915. ]
  2916. },
  2917. "require": {
  2918. "php": "^7.1 || ^8.0"
  2919. },
  2920. "require-dev": {
  2921. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2922. "phpcompatibility/php-compatibility": "^9.0",
  2923. "phpdocumentor/phpdocumentor": "2.*",
  2924. "phploc/phploc": "^4.0",
  2925. "phpmd/phpmd": "2.*",
  2926. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2927. "sebastian/phpcpd": "^4.0",
  2928. "squizlabs/php_codesniffer": "^3.4"
  2929. },
  2930. "type": "library",
  2931. "autoload": {
  2932. "psr-4": {
  2933. "Matrix\\": "classes/src/"
  2934. }
  2935. },
  2936. "notification-url": "https://packagist.org/downloads/",
  2937. "license": [
  2938. "MIT"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "Mark Baker",
  2943. "email": "mark@demon-angel.eu"
  2944. }
  2945. ],
  2946. "description": "PHP Class for working with matrices",
  2947. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2948. "keywords": [
  2949. "mathematics",
  2950. "matrix",
  2951. "vector"
  2952. ],
  2953. "support": {
  2954. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2955. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0"
  2956. },
  2957. "time": "2021-07-01T19:01:15+00:00"
  2958. },
  2959. {
  2960. "name": "michonnehsu/simpledingtalk",
  2961. "version": "1.0.8",
  2962. "source": {
  2963. "type": "git",
  2964. "url": "https://gitee.com/michonnehsu/simple-dingtalk.git",
  2965. "reference": "3311e63009b30dc7e250f68e119abec12eb217ee"
  2966. },
  2967. "require": {
  2968. "php": ">=7.3"
  2969. },
  2970. "type": "library",
  2971. "autoload": {
  2972. "psr-4": {
  2973. "SimpleDingTalk\\": "src/"
  2974. }
  2975. },
  2976. "notification-url": "https://packagist.org/downloads/",
  2977. "license": [
  2978. "MIT"
  2979. ],
  2980. "authors": [
  2981. {
  2982. "name": "Michonne Hsu",
  2983. "email": "850574565@qq.com"
  2984. }
  2985. ],
  2986. "description": "dingding API",
  2987. "time": "2022-04-27T03:07:43+00:00"
  2988. },
  2989. {
  2990. "name": "monolog/monolog",
  2991. "version": "2.4.0",
  2992. "source": {
  2993. "type": "git",
  2994. "url": "https://github.com/Seldaek/monolog.git",
  2995. "reference": "d7fd7450628561ba697b7097d86db72662f54aef"
  2996. },
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/d7fd7450628561ba697b7097d86db72662f54aef",
  3000. "reference": "d7fd7450628561ba697b7097d86db72662f54aef",
  3001. "shasum": "",
  3002. "mirrors": [
  3003. {
  3004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3005. "preferred": true
  3006. }
  3007. ]
  3008. },
  3009. "require": {
  3010. "php": ">=7.2",
  3011. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3012. },
  3013. "provide": {
  3014. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3015. },
  3016. "require-dev": {
  3017. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3018. "doctrine/couchdb": "~1.0@dev",
  3019. "elasticsearch/elasticsearch": "^7",
  3020. "graylog2/gelf-php": "^1.4.2",
  3021. "mongodb/mongodb": "^1.8",
  3022. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3023. "php-console/php-console": "^3.1.3",
  3024. "phpspec/prophecy": "^1.6.1",
  3025. "phpstan/phpstan": "^0.12.91",
  3026. "phpunit/phpunit": "^8.5",
  3027. "predis/predis": "^1.1",
  3028. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3029. "ruflin/elastica": ">=0.90@dev",
  3030. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3031. },
  3032. "suggest": {
  3033. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3034. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3035. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3036. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3037. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3038. "ext-mbstring": "Allow to work properly with unicode symbols",
  3039. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3040. "ext-openssl": "Required to send log messages using SSL",
  3041. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3042. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3043. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3044. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3045. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3046. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3047. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3048. },
  3049. "type": "library",
  3050. "extra": {
  3051. "branch-alias": {
  3052. "dev-main": "2.x-dev"
  3053. }
  3054. },
  3055. "autoload": {
  3056. "psr-4": {
  3057. "Monolog\\": "src/Monolog"
  3058. }
  3059. },
  3060. "notification-url": "https://packagist.org/downloads/",
  3061. "license": [
  3062. "MIT"
  3063. ],
  3064. "authors": [
  3065. {
  3066. "name": "Jordi Boggiano",
  3067. "email": "j.boggiano@seld.be",
  3068. "homepage": "https://seld.be"
  3069. }
  3070. ],
  3071. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3072. "homepage": "https://github.com/Seldaek/monolog",
  3073. "keywords": [
  3074. "log",
  3075. "logging",
  3076. "psr-3"
  3077. ],
  3078. "support": {
  3079. "issues": "https://github.com/Seldaek/monolog/issues",
  3080. "source": "https://github.com/Seldaek/monolog/tree/2.4.0"
  3081. },
  3082. "funding": [
  3083. {
  3084. "url": "https://github.com/Seldaek",
  3085. "type": "github"
  3086. },
  3087. {
  3088. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3089. "type": "tidelift"
  3090. }
  3091. ],
  3092. "time": "2022-03-14T12:44:37+00:00"
  3093. },
  3094. {
  3095. "name": "myclabs/php-enum",
  3096. "version": "1.8.3",
  3097. "source": {
  3098. "type": "git",
  3099. "url": "https://github.com/myclabs/php-enum.git",
  3100. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  3101. },
  3102. "dist": {
  3103. "type": "zip",
  3104. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  3105. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  3106. "shasum": "",
  3107. "mirrors": [
  3108. {
  3109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3110. "preferred": true
  3111. }
  3112. ]
  3113. },
  3114. "require": {
  3115. "ext-json": "*",
  3116. "php": "^7.3 || ^8.0"
  3117. },
  3118. "require-dev": {
  3119. "phpunit/phpunit": "^9.5",
  3120. "squizlabs/php_codesniffer": "1.*",
  3121. "vimeo/psalm": "^4.6.2"
  3122. },
  3123. "type": "library",
  3124. "autoload": {
  3125. "psr-4": {
  3126. "MyCLabs\\Enum\\": "src/"
  3127. }
  3128. },
  3129. "notification-url": "https://packagist.org/downloads/",
  3130. "license": [
  3131. "MIT"
  3132. ],
  3133. "authors": [
  3134. {
  3135. "name": "PHP Enum contributors",
  3136. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3137. }
  3138. ],
  3139. "description": "PHP Enum implementation",
  3140. "homepage": "http://github.com/myclabs/php-enum",
  3141. "keywords": [
  3142. "enum"
  3143. ],
  3144. "support": {
  3145. "issues": "https://github.com/myclabs/php-enum/issues",
  3146. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  3147. },
  3148. "funding": [
  3149. {
  3150. "url": "https://github.com/mnapoli",
  3151. "type": "github"
  3152. },
  3153. {
  3154. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3155. "type": "tidelift"
  3156. }
  3157. ],
  3158. "time": "2021-07-05T08:18:36+00:00"
  3159. },
  3160. {
  3161. "name": "nesbot/carbon",
  3162. "version": "2.57.0",
  3163. "source": {
  3164. "type": "git",
  3165. "url": "https://github.com/briannesbitt/Carbon.git",
  3166. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78"
  3167. },
  3168. "dist": {
  3169. "type": "zip",
  3170. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4a54375c21eea4811dbd1149fe6b246517554e78",
  3171. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78",
  3172. "shasum": "",
  3173. "mirrors": [
  3174. {
  3175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3176. "preferred": true
  3177. }
  3178. ]
  3179. },
  3180. "require": {
  3181. "ext-json": "*",
  3182. "php": "^7.1.8 || ^8.0",
  3183. "symfony/polyfill-mbstring": "^1.0",
  3184. "symfony/polyfill-php80": "^1.16",
  3185. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3186. },
  3187. "require-dev": {
  3188. "doctrine/dbal": "^2.0 || ^3.0",
  3189. "doctrine/orm": "^2.7",
  3190. "friendsofphp/php-cs-fixer": "^3.0",
  3191. "kylekatarnls/multi-tester": "^2.0",
  3192. "phpmd/phpmd": "^2.9",
  3193. "phpstan/extension-installer": "^1.0",
  3194. "phpstan/phpstan": "^0.12.54 || ^1.0",
  3195. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3196. "squizlabs/php_codesniffer": "^3.4"
  3197. },
  3198. "bin": [
  3199. "bin/carbon"
  3200. ],
  3201. "type": "library",
  3202. "extra": {
  3203. "branch-alias": {
  3204. "dev-3.x": "3.x-dev",
  3205. "dev-master": "2.x-dev"
  3206. },
  3207. "laravel": {
  3208. "providers": [
  3209. "Carbon\\Laravel\\ServiceProvider"
  3210. ]
  3211. },
  3212. "phpstan": {
  3213. "includes": [
  3214. "extension.neon"
  3215. ]
  3216. }
  3217. },
  3218. "autoload": {
  3219. "psr-4": {
  3220. "Carbon\\": "src/Carbon/"
  3221. }
  3222. },
  3223. "notification-url": "https://packagist.org/downloads/",
  3224. "license": [
  3225. "MIT"
  3226. ],
  3227. "authors": [
  3228. {
  3229. "name": "Brian Nesbitt",
  3230. "email": "brian@nesbot.com",
  3231. "homepage": "https://markido.com"
  3232. },
  3233. {
  3234. "name": "kylekatarnls",
  3235. "homepage": "https://github.com/kylekatarnls"
  3236. }
  3237. ],
  3238. "description": "An API extension for DateTime that supports 281 different languages.",
  3239. "homepage": "https://carbon.nesbot.com",
  3240. "keywords": [
  3241. "date",
  3242. "datetime",
  3243. "time"
  3244. ],
  3245. "support": {
  3246. "docs": "https://carbon.nesbot.com/docs",
  3247. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3248. "source": "https://github.com/briannesbitt/Carbon"
  3249. },
  3250. "funding": [
  3251. {
  3252. "url": "https://opencollective.com/Carbon",
  3253. "type": "open_collective"
  3254. },
  3255. {
  3256. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3257. "type": "tidelift"
  3258. }
  3259. ],
  3260. "time": "2022-02-13T18:13:33+00:00"
  3261. },
  3262. {
  3263. "name": "nette/schema",
  3264. "version": "v1.2.2",
  3265. "source": {
  3266. "type": "git",
  3267. "url": "https://github.com/nette/schema.git",
  3268. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  3269. },
  3270. "dist": {
  3271. "type": "zip",
  3272. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  3273. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  3274. "shasum": "",
  3275. "mirrors": [
  3276. {
  3277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3278. "preferred": true
  3279. }
  3280. ]
  3281. },
  3282. "require": {
  3283. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3284. "php": ">=7.1 <8.2"
  3285. },
  3286. "require-dev": {
  3287. "nette/tester": "^2.3 || ^2.4",
  3288. "phpstan/phpstan-nette": "^0.12",
  3289. "tracy/tracy": "^2.7"
  3290. },
  3291. "type": "library",
  3292. "extra": {
  3293. "branch-alias": {
  3294. "dev-master": "1.2-dev"
  3295. }
  3296. },
  3297. "autoload": {
  3298. "classmap": [
  3299. "src/"
  3300. ]
  3301. },
  3302. "notification-url": "https://packagist.org/downloads/",
  3303. "license": [
  3304. "BSD-3-Clause",
  3305. "GPL-2.0-only",
  3306. "GPL-3.0-only"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "David Grudl",
  3311. "homepage": "https://davidgrudl.com"
  3312. },
  3313. {
  3314. "name": "Nette Community",
  3315. "homepage": "https://nette.org/contributors"
  3316. }
  3317. ],
  3318. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3319. "homepage": "https://nette.org",
  3320. "keywords": [
  3321. "config",
  3322. "nette"
  3323. ],
  3324. "support": {
  3325. "issues": "https://github.com/nette/schema/issues",
  3326. "source": "https://github.com/nette/schema/tree/v1.2.2"
  3327. },
  3328. "time": "2021-10-15T11:40:02+00:00"
  3329. },
  3330. {
  3331. "name": "nette/utils",
  3332. "version": "v3.2.7",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/nette/utils.git",
  3336. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  3341. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  3342. "shasum": "",
  3343. "mirrors": [
  3344. {
  3345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3346. "preferred": true
  3347. }
  3348. ]
  3349. },
  3350. "require": {
  3351. "php": ">=7.2 <8.2"
  3352. },
  3353. "conflict": {
  3354. "nette/di": "<3.0.6"
  3355. },
  3356. "require-dev": {
  3357. "nette/tester": "~2.0",
  3358. "phpstan/phpstan": "^1.0",
  3359. "tracy/tracy": "^2.3"
  3360. },
  3361. "suggest": {
  3362. "ext-gd": "to use Image",
  3363. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3364. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3365. "ext-json": "to use Nette\\Utils\\Json",
  3366. "ext-mbstring": "to use Strings::lower() etc...",
  3367. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3368. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3369. },
  3370. "type": "library",
  3371. "extra": {
  3372. "branch-alias": {
  3373. "dev-master": "3.2-dev"
  3374. }
  3375. },
  3376. "autoload": {
  3377. "classmap": [
  3378. "src/"
  3379. ]
  3380. },
  3381. "notification-url": "https://packagist.org/downloads/",
  3382. "license": [
  3383. "BSD-3-Clause",
  3384. "GPL-2.0-only",
  3385. "GPL-3.0-only"
  3386. ],
  3387. "authors": [
  3388. {
  3389. "name": "David Grudl",
  3390. "homepage": "https://davidgrudl.com"
  3391. },
  3392. {
  3393. "name": "Nette Community",
  3394. "homepage": "https://nette.org/contributors"
  3395. }
  3396. ],
  3397. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3398. "homepage": "https://nette.org",
  3399. "keywords": [
  3400. "array",
  3401. "core",
  3402. "datetime",
  3403. "images",
  3404. "json",
  3405. "nette",
  3406. "paginator",
  3407. "password",
  3408. "slugify",
  3409. "string",
  3410. "unicode",
  3411. "utf-8",
  3412. "utility",
  3413. "validation"
  3414. ],
  3415. "support": {
  3416. "issues": "https://github.com/nette/utils/issues",
  3417. "source": "https://github.com/nette/utils/tree/v3.2.7"
  3418. },
  3419. "time": "2022-01-24T11:29:14+00:00"
  3420. },
  3421. {
  3422. "name": "nikic/php-parser",
  3423. "version": "v4.13.2",
  3424. "source": {
  3425. "type": "git",
  3426. "url": "https://github.com/nikic/PHP-Parser.git",
  3427. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  3428. },
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  3432. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  3433. "shasum": "",
  3434. "mirrors": [
  3435. {
  3436. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3437. "preferred": true
  3438. }
  3439. ]
  3440. },
  3441. "require": {
  3442. "ext-tokenizer": "*",
  3443. "php": ">=7.0"
  3444. },
  3445. "require-dev": {
  3446. "ircmaxell/php-yacc": "^0.0.7",
  3447. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3448. },
  3449. "bin": [
  3450. "bin/php-parse"
  3451. ],
  3452. "type": "library",
  3453. "extra": {
  3454. "branch-alias": {
  3455. "dev-master": "4.9-dev"
  3456. }
  3457. },
  3458. "autoload": {
  3459. "psr-4": {
  3460. "PhpParser\\": "lib/PhpParser"
  3461. }
  3462. },
  3463. "notification-url": "https://packagist.org/downloads/",
  3464. "license": [
  3465. "BSD-3-Clause"
  3466. ],
  3467. "authors": [
  3468. {
  3469. "name": "Nikita Popov"
  3470. }
  3471. ],
  3472. "description": "A PHP parser written in PHP",
  3473. "keywords": [
  3474. "parser",
  3475. "php"
  3476. ],
  3477. "support": {
  3478. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3479. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  3480. },
  3481. "time": "2021-11-30T19:35:32+00:00"
  3482. },
  3483. {
  3484. "name": "opis/closure",
  3485. "version": "3.6.3",
  3486. "source": {
  3487. "type": "git",
  3488. "url": "https://github.com/opis/closure.git",
  3489. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3490. },
  3491. "dist": {
  3492. "type": "zip",
  3493. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3494. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3495. "shasum": "",
  3496. "mirrors": [
  3497. {
  3498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3499. "preferred": true
  3500. }
  3501. ]
  3502. },
  3503. "require": {
  3504. "php": "^5.4 || ^7.0 || ^8.0"
  3505. },
  3506. "require-dev": {
  3507. "jeremeamia/superclosure": "^2.0",
  3508. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3509. },
  3510. "type": "library",
  3511. "extra": {
  3512. "branch-alias": {
  3513. "dev-master": "3.6.x-dev"
  3514. }
  3515. },
  3516. "autoload": {
  3517. "files": [
  3518. "functions.php"
  3519. ],
  3520. "psr-4": {
  3521. "Opis\\Closure\\": "src/"
  3522. }
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "Marius Sarca",
  3531. "email": "marius.sarca@gmail.com"
  3532. },
  3533. {
  3534. "name": "Sorin Sarca",
  3535. "email": "sarca_sorin@hotmail.com"
  3536. }
  3537. ],
  3538. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3539. "homepage": "https://opis.io/closure",
  3540. "keywords": [
  3541. "anonymous functions",
  3542. "closure",
  3543. "function",
  3544. "serializable",
  3545. "serialization",
  3546. "serialize"
  3547. ],
  3548. "support": {
  3549. "issues": "https://github.com/opis/closure/issues",
  3550. "source": "https://github.com/opis/closure/tree/3.6.3"
  3551. },
  3552. "time": "2022-01-27T09:35:39+00:00"
  3553. },
  3554. {
  3555. "name": "phpoffice/phpspreadsheet",
  3556. "version": "1.23.0",
  3557. "source": {
  3558. "type": "git",
  3559. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3560. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e"
  3561. },
  3562. "dist": {
  3563. "type": "zip",
  3564. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/21e4cf62699eebf007db28775f7d1554e612ed9e",
  3565. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e",
  3566. "shasum": "",
  3567. "mirrors": [
  3568. {
  3569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3570. "preferred": true
  3571. }
  3572. ]
  3573. },
  3574. "require": {
  3575. "ext-ctype": "*",
  3576. "ext-dom": "*",
  3577. "ext-fileinfo": "*",
  3578. "ext-gd": "*",
  3579. "ext-iconv": "*",
  3580. "ext-libxml": "*",
  3581. "ext-mbstring": "*",
  3582. "ext-simplexml": "*",
  3583. "ext-xml": "*",
  3584. "ext-xmlreader": "*",
  3585. "ext-xmlwriter": "*",
  3586. "ext-zip": "*",
  3587. "ext-zlib": "*",
  3588. "ezyang/htmlpurifier": "^4.13",
  3589. "maennchen/zipstream-php": "^2.1",
  3590. "markbaker/complex": "^3.0",
  3591. "markbaker/matrix": "^3.0",
  3592. "php": "^7.3 || ^8.0",
  3593. "psr/http-client": "^1.0",
  3594. "psr/http-factory": "^1.0",
  3595. "psr/simple-cache": "^1.0 || ^2.0"
  3596. },
  3597. "require-dev": {
  3598. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3599. "dompdf/dompdf": "^1.0",
  3600. "friendsofphp/php-cs-fixer": "^3.2",
  3601. "jpgraph/jpgraph": "^4.0",
  3602. "mpdf/mpdf": "8.0.17",
  3603. "phpcompatibility/php-compatibility": "^9.3",
  3604. "phpstan/phpstan": "^1.1",
  3605. "phpstan/phpstan-phpunit": "^1.0",
  3606. "phpunit/phpunit": "^8.5 || ^9.0",
  3607. "squizlabs/php_codesniffer": "^3.6",
  3608. "tecnickcom/tcpdf": "^6.4"
  3609. },
  3610. "suggest": {
  3611. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3612. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3613. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3614. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3615. },
  3616. "type": "library",
  3617. "autoload": {
  3618. "psr-4": {
  3619. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3620. }
  3621. },
  3622. "notification-url": "https://packagist.org/downloads/",
  3623. "license": [
  3624. "MIT"
  3625. ],
  3626. "authors": [
  3627. {
  3628. "name": "Maarten Balliauw",
  3629. "homepage": "https://blog.maartenballiauw.be"
  3630. },
  3631. {
  3632. "name": "Mark Baker",
  3633. "homepage": "https://markbakeruk.net"
  3634. },
  3635. {
  3636. "name": "Franck Lefevre",
  3637. "homepage": "https://rootslabs.net"
  3638. },
  3639. {
  3640. "name": "Erik Tilt"
  3641. },
  3642. {
  3643. "name": "Adrien Crivelli"
  3644. }
  3645. ],
  3646. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3647. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3648. "keywords": [
  3649. "OpenXML",
  3650. "excel",
  3651. "gnumeric",
  3652. "ods",
  3653. "php",
  3654. "spreadsheet",
  3655. "xls",
  3656. "xlsx"
  3657. ],
  3658. "support": {
  3659. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3660. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.23.0"
  3661. },
  3662. "time": "2022-04-24T13:53:10+00:00"
  3663. },
  3664. {
  3665. "name": "phpoption/phpoption",
  3666. "version": "1.8.1",
  3667. "source": {
  3668. "type": "git",
  3669. "url": "https://github.com/schmittjoh/php-option.git",
  3670. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  3671. },
  3672. "dist": {
  3673. "type": "zip",
  3674. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  3675. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  3676. "shasum": "",
  3677. "mirrors": [
  3678. {
  3679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3680. "preferred": true
  3681. }
  3682. ]
  3683. },
  3684. "require": {
  3685. "php": "^7.0 || ^8.0"
  3686. },
  3687. "require-dev": {
  3688. "bamarni/composer-bin-plugin": "^1.4.1",
  3689. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  3690. },
  3691. "type": "library",
  3692. "extra": {
  3693. "branch-alias": {
  3694. "dev-master": "1.8-dev"
  3695. }
  3696. },
  3697. "autoload": {
  3698. "psr-4": {
  3699. "PhpOption\\": "src/PhpOption/"
  3700. }
  3701. },
  3702. "notification-url": "https://packagist.org/downloads/",
  3703. "license": [
  3704. "Apache-2.0"
  3705. ],
  3706. "authors": [
  3707. {
  3708. "name": "Johannes M. Schmitt",
  3709. "email": "schmittjoh@gmail.com",
  3710. "homepage": "https://github.com/schmittjoh"
  3711. },
  3712. {
  3713. "name": "Graham Campbell",
  3714. "email": "hello@gjcampbell.co.uk",
  3715. "homepage": "https://github.com/GrahamCampbell"
  3716. }
  3717. ],
  3718. "description": "Option Type for PHP",
  3719. "keywords": [
  3720. "language",
  3721. "option",
  3722. "php",
  3723. "type"
  3724. ],
  3725. "support": {
  3726. "issues": "https://github.com/schmittjoh/php-option/issues",
  3727. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  3728. },
  3729. "funding": [
  3730. {
  3731. "url": "https://github.com/GrahamCampbell",
  3732. "type": "github"
  3733. },
  3734. {
  3735. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3736. "type": "tidelift"
  3737. }
  3738. ],
  3739. "time": "2021-12-04T23:24:31+00:00"
  3740. },
  3741. {
  3742. "name": "predis/predis",
  3743. "version": "v1.1.10",
  3744. "source": {
  3745. "type": "git",
  3746. "url": "https://github.com/predis/predis.git",
  3747. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  3748. },
  3749. "dist": {
  3750. "type": "zip",
  3751. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3752. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3753. "shasum": "",
  3754. "mirrors": [
  3755. {
  3756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3757. "preferred": true
  3758. }
  3759. ]
  3760. },
  3761. "require": {
  3762. "php": ">=5.3.9"
  3763. },
  3764. "require-dev": {
  3765. "phpunit/phpunit": "~4.8"
  3766. },
  3767. "suggest": {
  3768. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3769. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3770. },
  3771. "type": "library",
  3772. "autoload": {
  3773. "psr-4": {
  3774. "Predis\\": "src/"
  3775. }
  3776. },
  3777. "notification-url": "https://packagist.org/downloads/",
  3778. "license": [
  3779. "MIT"
  3780. ],
  3781. "authors": [
  3782. {
  3783. "name": "Daniele Alessandri",
  3784. "email": "suppakilla@gmail.com",
  3785. "homepage": "http://clorophilla.net",
  3786. "role": "Creator & Maintainer"
  3787. },
  3788. {
  3789. "name": "Till Krüss",
  3790. "homepage": "https://till.im",
  3791. "role": "Maintainer"
  3792. }
  3793. ],
  3794. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3795. "homepage": "http://github.com/predis/predis",
  3796. "keywords": [
  3797. "nosql",
  3798. "predis",
  3799. "redis"
  3800. ],
  3801. "support": {
  3802. "issues": "https://github.com/predis/predis/issues",
  3803. "source": "https://github.com/predis/predis/tree/v1.1.10"
  3804. },
  3805. "funding": [
  3806. {
  3807. "url": "https://github.com/sponsors/tillkruss",
  3808. "type": "github"
  3809. }
  3810. ],
  3811. "time": "2022-01-05T17:46:08+00:00"
  3812. },
  3813. {
  3814. "name": "psr/container",
  3815. "version": "1.1.2",
  3816. "source": {
  3817. "type": "git",
  3818. "url": "https://github.com/php-fig/container.git",
  3819. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3820. },
  3821. "dist": {
  3822. "type": "zip",
  3823. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3824. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3825. "shasum": "",
  3826. "mirrors": [
  3827. {
  3828. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3829. "preferred": true
  3830. }
  3831. ]
  3832. },
  3833. "require": {
  3834. "php": ">=7.4.0"
  3835. },
  3836. "type": "library",
  3837. "autoload": {
  3838. "psr-4": {
  3839. "Psr\\Container\\": "src/"
  3840. }
  3841. },
  3842. "notification-url": "https://packagist.org/downloads/",
  3843. "license": [
  3844. "MIT"
  3845. ],
  3846. "authors": [
  3847. {
  3848. "name": "PHP-FIG",
  3849. "homepage": "https://www.php-fig.org/"
  3850. }
  3851. ],
  3852. "description": "Common Container Interface (PHP FIG PSR-11)",
  3853. "homepage": "https://github.com/php-fig/container",
  3854. "keywords": [
  3855. "PSR-11",
  3856. "container",
  3857. "container-interface",
  3858. "container-interop",
  3859. "psr"
  3860. ],
  3861. "support": {
  3862. "issues": "https://github.com/php-fig/container/issues",
  3863. "source": "https://github.com/php-fig/container/tree/1.1.2"
  3864. },
  3865. "time": "2021-11-05T16:50:12+00:00"
  3866. },
  3867. {
  3868. "name": "psr/event-dispatcher",
  3869. "version": "1.0.0",
  3870. "source": {
  3871. "type": "git",
  3872. "url": "https://github.com/php-fig/event-dispatcher.git",
  3873. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3874. },
  3875. "dist": {
  3876. "type": "zip",
  3877. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3878. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  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. "php": ">=7.2.0"
  3889. },
  3890. "type": "library",
  3891. "extra": {
  3892. "branch-alias": {
  3893. "dev-master": "1.0.x-dev"
  3894. }
  3895. },
  3896. "autoload": {
  3897. "psr-4": {
  3898. "Psr\\EventDispatcher\\": "src/"
  3899. }
  3900. },
  3901. "notification-url": "https://packagist.org/downloads/",
  3902. "license": [
  3903. "MIT"
  3904. ],
  3905. "authors": [
  3906. {
  3907. "name": "PHP-FIG",
  3908. "homepage": "http://www.php-fig.org/"
  3909. }
  3910. ],
  3911. "description": "Standard interfaces for event handling.",
  3912. "keywords": [
  3913. "events",
  3914. "psr",
  3915. "psr-14"
  3916. ],
  3917. "support": {
  3918. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3919. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3920. },
  3921. "time": "2019-01-08T18:20:26+00:00"
  3922. },
  3923. {
  3924. "name": "psr/http-client",
  3925. "version": "1.0.1",
  3926. "source": {
  3927. "type": "git",
  3928. "url": "https://github.com/php-fig/http-client.git",
  3929. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3930. },
  3931. "dist": {
  3932. "type": "zip",
  3933. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3934. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3935. "shasum": "",
  3936. "mirrors": [
  3937. {
  3938. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3939. "preferred": true
  3940. }
  3941. ]
  3942. },
  3943. "require": {
  3944. "php": "^7.0 || ^8.0",
  3945. "psr/http-message": "^1.0"
  3946. },
  3947. "type": "library",
  3948. "extra": {
  3949. "branch-alias": {
  3950. "dev-master": "1.0.x-dev"
  3951. }
  3952. },
  3953. "autoload": {
  3954. "psr-4": {
  3955. "Psr\\Http\\Client\\": "src/"
  3956. }
  3957. },
  3958. "notification-url": "https://packagist.org/downloads/",
  3959. "license": [
  3960. "MIT"
  3961. ],
  3962. "authors": [
  3963. {
  3964. "name": "PHP-FIG",
  3965. "homepage": "http://www.php-fig.org/"
  3966. }
  3967. ],
  3968. "description": "Common interface for HTTP clients",
  3969. "homepage": "https://github.com/php-fig/http-client",
  3970. "keywords": [
  3971. "http",
  3972. "http-client",
  3973. "psr",
  3974. "psr-18"
  3975. ],
  3976. "support": {
  3977. "source": "https://github.com/php-fig/http-client/tree/master"
  3978. },
  3979. "time": "2020-06-29T06:28:15+00:00"
  3980. },
  3981. {
  3982. "name": "psr/http-factory",
  3983. "version": "1.0.1",
  3984. "source": {
  3985. "type": "git",
  3986. "url": "https://github.com/php-fig/http-factory.git",
  3987. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3988. },
  3989. "dist": {
  3990. "type": "zip",
  3991. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3992. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3993. "shasum": "",
  3994. "mirrors": [
  3995. {
  3996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3997. "preferred": true
  3998. }
  3999. ]
  4000. },
  4001. "require": {
  4002. "php": ">=7.0.0",
  4003. "psr/http-message": "^1.0"
  4004. },
  4005. "type": "library",
  4006. "extra": {
  4007. "branch-alias": {
  4008. "dev-master": "1.0.x-dev"
  4009. }
  4010. },
  4011. "autoload": {
  4012. "psr-4": {
  4013. "Psr\\Http\\Message\\": "src/"
  4014. }
  4015. },
  4016. "notification-url": "https://packagist.org/downloads/",
  4017. "license": [
  4018. "MIT"
  4019. ],
  4020. "authors": [
  4021. {
  4022. "name": "PHP-FIG",
  4023. "homepage": "http://www.php-fig.org/"
  4024. }
  4025. ],
  4026. "description": "Common interfaces for PSR-7 HTTP message factories",
  4027. "keywords": [
  4028. "factory",
  4029. "http",
  4030. "message",
  4031. "psr",
  4032. "psr-17",
  4033. "psr-7",
  4034. "request",
  4035. "response"
  4036. ],
  4037. "support": {
  4038. "source": "https://github.com/php-fig/http-factory/tree/master"
  4039. },
  4040. "time": "2019-04-30T12:38:16+00:00"
  4041. },
  4042. {
  4043. "name": "psr/http-message",
  4044. "version": "1.0.1",
  4045. "source": {
  4046. "type": "git",
  4047. "url": "https://github.com/php-fig/http-message.git",
  4048. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4049. },
  4050. "dist": {
  4051. "type": "zip",
  4052. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4053. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4054. "shasum": "",
  4055. "mirrors": [
  4056. {
  4057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4058. "preferred": true
  4059. }
  4060. ]
  4061. },
  4062. "require": {
  4063. "php": ">=5.3.0"
  4064. },
  4065. "type": "library",
  4066. "extra": {
  4067. "branch-alias": {
  4068. "dev-master": "1.0.x-dev"
  4069. }
  4070. },
  4071. "autoload": {
  4072. "psr-4": {
  4073. "Psr\\Http\\Message\\": "src/"
  4074. }
  4075. },
  4076. "notification-url": "https://packagist.org/downloads/",
  4077. "license": [
  4078. "MIT"
  4079. ],
  4080. "authors": [
  4081. {
  4082. "name": "PHP-FIG",
  4083. "homepage": "http://www.php-fig.org/"
  4084. }
  4085. ],
  4086. "description": "Common interface for HTTP messages",
  4087. "homepage": "https://github.com/php-fig/http-message",
  4088. "keywords": [
  4089. "http",
  4090. "http-message",
  4091. "psr",
  4092. "psr-7",
  4093. "request",
  4094. "response"
  4095. ],
  4096. "support": {
  4097. "source": "https://github.com/php-fig/http-message/tree/master"
  4098. },
  4099. "time": "2016-08-06T14:39:51+00:00"
  4100. },
  4101. {
  4102. "name": "psr/log",
  4103. "version": "2.0.0",
  4104. "source": {
  4105. "type": "git",
  4106. "url": "https://github.com/php-fig/log.git",
  4107. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4108. },
  4109. "dist": {
  4110. "type": "zip",
  4111. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4112. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4113. "shasum": "",
  4114. "mirrors": [
  4115. {
  4116. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4117. "preferred": true
  4118. }
  4119. ]
  4120. },
  4121. "require": {
  4122. "php": ">=8.0.0"
  4123. },
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-master": "2.0.x-dev"
  4128. }
  4129. },
  4130. "autoload": {
  4131. "psr-4": {
  4132. "Psr\\Log\\": "src"
  4133. }
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "MIT"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "PHP-FIG",
  4142. "homepage": "https://www.php-fig.org/"
  4143. }
  4144. ],
  4145. "description": "Common interface for logging libraries",
  4146. "homepage": "https://github.com/php-fig/log",
  4147. "keywords": [
  4148. "log",
  4149. "psr",
  4150. "psr-3"
  4151. ],
  4152. "support": {
  4153. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4154. },
  4155. "time": "2021-07-14T16:41:46+00:00"
  4156. },
  4157. {
  4158. "name": "psr/simple-cache",
  4159. "version": "1.0.1",
  4160. "source": {
  4161. "type": "git",
  4162. "url": "https://github.com/php-fig/simple-cache.git",
  4163. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4164. },
  4165. "dist": {
  4166. "type": "zip",
  4167. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4168. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4169. "shasum": "",
  4170. "mirrors": [
  4171. {
  4172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4173. "preferred": true
  4174. }
  4175. ]
  4176. },
  4177. "require": {
  4178. "php": ">=5.3.0"
  4179. },
  4180. "type": "library",
  4181. "extra": {
  4182. "branch-alias": {
  4183. "dev-master": "1.0.x-dev"
  4184. }
  4185. },
  4186. "autoload": {
  4187. "psr-4": {
  4188. "Psr\\SimpleCache\\": "src/"
  4189. }
  4190. },
  4191. "notification-url": "https://packagist.org/downloads/",
  4192. "license": [
  4193. "MIT"
  4194. ],
  4195. "authors": [
  4196. {
  4197. "name": "PHP-FIG",
  4198. "homepage": "http://www.php-fig.org/"
  4199. }
  4200. ],
  4201. "description": "Common interfaces for simple caching",
  4202. "keywords": [
  4203. "cache",
  4204. "caching",
  4205. "psr",
  4206. "psr-16",
  4207. "simple-cache"
  4208. ],
  4209. "support": {
  4210. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4211. },
  4212. "time": "2017-10-23T01:57:42+00:00"
  4213. },
  4214. {
  4215. "name": "psy/psysh",
  4216. "version": "v0.11.2",
  4217. "source": {
  4218. "type": "git",
  4219. "url": "https://github.com/bobthecow/psysh.git",
  4220. "reference": "7f7da640d68b9c9fec819caae7c744a213df6514"
  4221. },
  4222. "dist": {
  4223. "type": "zip",
  4224. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7f7da640d68b9c9fec819caae7c744a213df6514",
  4225. "reference": "7f7da640d68b9c9fec819caae7c744a213df6514",
  4226. "shasum": "",
  4227. "mirrors": [
  4228. {
  4229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4230. "preferred": true
  4231. }
  4232. ]
  4233. },
  4234. "require": {
  4235. "ext-json": "*",
  4236. "ext-tokenizer": "*",
  4237. "nikic/php-parser": "^4.0 || ^3.1",
  4238. "php": "^8.0 || ^7.0.8",
  4239. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4240. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4241. },
  4242. "conflict": {
  4243. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4244. },
  4245. "require-dev": {
  4246. "bamarni/composer-bin-plugin": "^1.2",
  4247. "hoa/console": "3.17.05.02"
  4248. },
  4249. "suggest": {
  4250. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4251. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4252. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4253. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4254. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4255. },
  4256. "bin": [
  4257. "bin/psysh"
  4258. ],
  4259. "type": "library",
  4260. "extra": {
  4261. "branch-alias": {
  4262. "dev-main": "0.11.x-dev"
  4263. }
  4264. },
  4265. "autoload": {
  4266. "files": [
  4267. "src/functions.php"
  4268. ],
  4269. "psr-4": {
  4270. "Psy\\": "src/"
  4271. }
  4272. },
  4273. "notification-url": "https://packagist.org/downloads/",
  4274. "license": [
  4275. "MIT"
  4276. ],
  4277. "authors": [
  4278. {
  4279. "name": "Justin Hileman",
  4280. "email": "justin@justinhileman.info",
  4281. "homepage": "http://justinhileman.com"
  4282. }
  4283. ],
  4284. "description": "An interactive shell for modern PHP.",
  4285. "homepage": "http://psysh.org",
  4286. "keywords": [
  4287. "REPL",
  4288. "console",
  4289. "interactive",
  4290. "shell"
  4291. ],
  4292. "support": {
  4293. "issues": "https://github.com/bobthecow/psysh/issues",
  4294. "source": "https://github.com/bobthecow/psysh/tree/v0.11.2"
  4295. },
  4296. "time": "2022-02-28T15:28:54+00:00"
  4297. },
  4298. {
  4299. "name": "ralouphie/getallheaders",
  4300. "version": "3.0.3",
  4301. "source": {
  4302. "type": "git",
  4303. "url": "https://github.com/ralouphie/getallheaders.git",
  4304. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4305. },
  4306. "dist": {
  4307. "type": "zip",
  4308. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4309. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4310. "shasum": "",
  4311. "mirrors": [
  4312. {
  4313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4314. "preferred": true
  4315. }
  4316. ]
  4317. },
  4318. "require": {
  4319. "php": ">=5.6"
  4320. },
  4321. "require-dev": {
  4322. "php-coveralls/php-coveralls": "^2.1",
  4323. "phpunit/phpunit": "^5 || ^6.5"
  4324. },
  4325. "type": "library",
  4326. "autoload": {
  4327. "files": [
  4328. "src/getallheaders.php"
  4329. ]
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "Ralph Khattar",
  4338. "email": "ralph.khattar@gmail.com"
  4339. }
  4340. ],
  4341. "description": "A polyfill for getallheaders.",
  4342. "support": {
  4343. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4344. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4345. },
  4346. "time": "2019-03-08T08:55:37+00:00"
  4347. },
  4348. {
  4349. "name": "ramsey/collection",
  4350. "version": "1.2.2",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/ramsey/collection.git",
  4354. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4359. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4360. "shasum": "",
  4361. "mirrors": [
  4362. {
  4363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4364. "preferred": true
  4365. }
  4366. ]
  4367. },
  4368. "require": {
  4369. "php": "^7.3 || ^8",
  4370. "symfony/polyfill-php81": "^1.23"
  4371. },
  4372. "require-dev": {
  4373. "captainhook/captainhook": "^5.3",
  4374. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4375. "ergebnis/composer-normalize": "^2.6",
  4376. "fakerphp/faker": "^1.5",
  4377. "hamcrest/hamcrest-php": "^2",
  4378. "jangregor/phpstan-prophecy": "^0.8",
  4379. "mockery/mockery": "^1.3",
  4380. "phpspec/prophecy-phpunit": "^2.0",
  4381. "phpstan/extension-installer": "^1",
  4382. "phpstan/phpstan": "^0.12.32",
  4383. "phpstan/phpstan-mockery": "^0.12.5",
  4384. "phpstan/phpstan-phpunit": "^0.12.11",
  4385. "phpunit/phpunit": "^8.5 || ^9",
  4386. "psy/psysh": "^0.10.4",
  4387. "slevomat/coding-standard": "^6.3",
  4388. "squizlabs/php_codesniffer": "^3.5",
  4389. "vimeo/psalm": "^4.4"
  4390. },
  4391. "type": "library",
  4392. "autoload": {
  4393. "psr-4": {
  4394. "Ramsey\\Collection\\": "src/"
  4395. }
  4396. },
  4397. "notification-url": "https://packagist.org/downloads/",
  4398. "license": [
  4399. "MIT"
  4400. ],
  4401. "authors": [
  4402. {
  4403. "name": "Ben Ramsey",
  4404. "email": "ben@benramsey.com",
  4405. "homepage": "https://benramsey.com"
  4406. }
  4407. ],
  4408. "description": "A PHP library for representing and manipulating collections.",
  4409. "keywords": [
  4410. "array",
  4411. "collection",
  4412. "hash",
  4413. "map",
  4414. "queue",
  4415. "set"
  4416. ],
  4417. "support": {
  4418. "issues": "https://github.com/ramsey/collection/issues",
  4419. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  4420. },
  4421. "funding": [
  4422. {
  4423. "url": "https://github.com/ramsey",
  4424. "type": "github"
  4425. },
  4426. {
  4427. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4428. "type": "tidelift"
  4429. }
  4430. ],
  4431. "time": "2021-10-10T03:01:02+00:00"
  4432. },
  4433. {
  4434. "name": "ramsey/uuid",
  4435. "version": "4.2.3",
  4436. "source": {
  4437. "type": "git",
  4438. "url": "https://github.com/ramsey/uuid.git",
  4439. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4440. },
  4441. "dist": {
  4442. "type": "zip",
  4443. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4444. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4445. "shasum": "",
  4446. "mirrors": [
  4447. {
  4448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4449. "preferred": true
  4450. }
  4451. ]
  4452. },
  4453. "require": {
  4454. "brick/math": "^0.8 || ^0.9",
  4455. "ext-json": "*",
  4456. "php": "^7.2 || ^8.0",
  4457. "ramsey/collection": "^1.0",
  4458. "symfony/polyfill-ctype": "^1.8",
  4459. "symfony/polyfill-php80": "^1.14"
  4460. },
  4461. "replace": {
  4462. "rhumsaa/uuid": "self.version"
  4463. },
  4464. "require-dev": {
  4465. "captainhook/captainhook": "^5.10",
  4466. "captainhook/plugin-composer": "^5.3",
  4467. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4468. "doctrine/annotations": "^1.8",
  4469. "ergebnis/composer-normalize": "^2.15",
  4470. "mockery/mockery": "^1.3",
  4471. "moontoast/math": "^1.1",
  4472. "paragonie/random-lib": "^2",
  4473. "php-mock/php-mock": "^2.2",
  4474. "php-mock/php-mock-mockery": "^1.3",
  4475. "php-parallel-lint/php-parallel-lint": "^1.1",
  4476. "phpbench/phpbench": "^1.0",
  4477. "phpstan/extension-installer": "^1.0",
  4478. "phpstan/phpstan": "^0.12",
  4479. "phpstan/phpstan-mockery": "^0.12",
  4480. "phpstan/phpstan-phpunit": "^0.12",
  4481. "phpunit/phpunit": "^8.5 || ^9",
  4482. "slevomat/coding-standard": "^7.0",
  4483. "squizlabs/php_codesniffer": "^3.5",
  4484. "vimeo/psalm": "^4.9"
  4485. },
  4486. "suggest": {
  4487. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4488. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4489. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4490. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4491. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4492. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4493. },
  4494. "type": "library",
  4495. "extra": {
  4496. "branch-alias": {
  4497. "dev-main": "4.x-dev"
  4498. },
  4499. "captainhook": {
  4500. "force-install": true
  4501. }
  4502. },
  4503. "autoload": {
  4504. "files": [
  4505. "src/functions.php"
  4506. ],
  4507. "psr-4": {
  4508. "Ramsey\\Uuid\\": "src/"
  4509. }
  4510. },
  4511. "notification-url": "https://packagist.org/downloads/",
  4512. "license": [
  4513. "MIT"
  4514. ],
  4515. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4516. "keywords": [
  4517. "guid",
  4518. "identifier",
  4519. "uuid"
  4520. ],
  4521. "support": {
  4522. "issues": "https://github.com/ramsey/uuid/issues",
  4523. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4524. },
  4525. "funding": [
  4526. {
  4527. "url": "https://github.com/ramsey",
  4528. "type": "github"
  4529. },
  4530. {
  4531. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4532. "type": "tidelift"
  4533. }
  4534. ],
  4535. "time": "2021-09-25T23:10:38+00:00"
  4536. },
  4537. {
  4538. "name": "swiftmailer/swiftmailer",
  4539. "version": "v6.3.0",
  4540. "source": {
  4541. "type": "git",
  4542. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4543. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4544. },
  4545. "dist": {
  4546. "type": "zip",
  4547. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4548. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4549. "shasum": "",
  4550. "mirrors": [
  4551. {
  4552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4553. "preferred": true
  4554. }
  4555. ]
  4556. },
  4557. "require": {
  4558. "egulias/email-validator": "^2.0|^3.1",
  4559. "php": ">=7.0.0",
  4560. "symfony/polyfill-iconv": "^1.0",
  4561. "symfony/polyfill-intl-idn": "^1.10",
  4562. "symfony/polyfill-mbstring": "^1.0"
  4563. },
  4564. "require-dev": {
  4565. "mockery/mockery": "^1.0",
  4566. "symfony/phpunit-bridge": "^4.4|^5.4"
  4567. },
  4568. "suggest": {
  4569. "ext-intl": "Needed to support internationalized email addresses"
  4570. },
  4571. "type": "library",
  4572. "extra": {
  4573. "branch-alias": {
  4574. "dev-master": "6.2-dev"
  4575. }
  4576. },
  4577. "autoload": {
  4578. "files": [
  4579. "lib/swift_required.php"
  4580. ]
  4581. },
  4582. "notification-url": "https://packagist.org/downloads/",
  4583. "license": [
  4584. "MIT"
  4585. ],
  4586. "authors": [
  4587. {
  4588. "name": "Chris Corbyn"
  4589. },
  4590. {
  4591. "name": "Fabien Potencier",
  4592. "email": "fabien@symfony.com"
  4593. }
  4594. ],
  4595. "description": "Swiftmailer, free feature-rich PHP mailer",
  4596. "homepage": "https://swiftmailer.symfony.com",
  4597. "keywords": [
  4598. "email",
  4599. "mail",
  4600. "mailer"
  4601. ],
  4602. "support": {
  4603. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4604. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4605. },
  4606. "funding": [
  4607. {
  4608. "url": "https://github.com/fabpot",
  4609. "type": "github"
  4610. },
  4611. {
  4612. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4613. "type": "tidelift"
  4614. }
  4615. ],
  4616. "abandoned": "symfony/mailer",
  4617. "time": "2021-10-18T15:26:12+00:00"
  4618. },
  4619. {
  4620. "name": "swoole/ide-helper",
  4621. "version": "4.8.9",
  4622. "source": {
  4623. "type": "git",
  4624. "url": "https://github.com/swoole/ide-helper.git",
  4625. "reference": "8f82ba3b6af04a5bccb97c1654af992d1ee8b0fe"
  4626. },
  4627. "dist": {
  4628. "type": "zip",
  4629. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/8f82ba3b6af04a5bccb97c1654af992d1ee8b0fe",
  4630. "reference": "8f82ba3b6af04a5bccb97c1654af992d1ee8b0fe",
  4631. "shasum": "",
  4632. "mirrors": [
  4633. {
  4634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4635. "preferred": true
  4636. }
  4637. ]
  4638. },
  4639. "type": "library",
  4640. "notification-url": "https://packagist.org/downloads/",
  4641. "license": [
  4642. "Apache-2.0"
  4643. ],
  4644. "authors": [
  4645. {
  4646. "name": "Team Swoole",
  4647. "email": "team@swoole.com"
  4648. }
  4649. ],
  4650. "description": "IDE help files for Swoole.",
  4651. "support": {
  4652. "issues": "https://github.com/swoole/ide-helper/issues",
  4653. "source": "https://github.com/swoole/ide-helper/tree/4.8.9"
  4654. },
  4655. "funding": [
  4656. {
  4657. "url": "https://gitee.com/swoole/swoole?donate=true",
  4658. "type": "custom"
  4659. },
  4660. {
  4661. "url": "https://github.com/swoole",
  4662. "type": "github"
  4663. }
  4664. ],
  4665. "time": "2022-04-18T20:38:04+00:00"
  4666. },
  4667. {
  4668. "name": "symfony/console",
  4669. "version": "v5.4.7",
  4670. "source": {
  4671. "type": "git",
  4672. "url": "https://github.com/symfony/console.git",
  4673. "reference": "900275254f0a1a2afff1ab0e11abd5587a10e1d6"
  4674. },
  4675. "dist": {
  4676. "type": "zip",
  4677. "url": "https://api.github.com/repos/symfony/console/zipball/900275254f0a1a2afff1ab0e11abd5587a10e1d6",
  4678. "reference": "900275254f0a1a2afff1ab0e11abd5587a10e1d6",
  4679. "shasum": "",
  4680. "mirrors": [
  4681. {
  4682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4683. "preferred": true
  4684. }
  4685. ]
  4686. },
  4687. "require": {
  4688. "php": ">=7.2.5",
  4689. "symfony/deprecation-contracts": "^2.1|^3",
  4690. "symfony/polyfill-mbstring": "~1.0",
  4691. "symfony/polyfill-php73": "^1.9",
  4692. "symfony/polyfill-php80": "^1.16",
  4693. "symfony/service-contracts": "^1.1|^2|^3",
  4694. "symfony/string": "^5.1|^6.0"
  4695. },
  4696. "conflict": {
  4697. "psr/log": ">=3",
  4698. "symfony/dependency-injection": "<4.4",
  4699. "symfony/dotenv": "<5.1",
  4700. "symfony/event-dispatcher": "<4.4",
  4701. "symfony/lock": "<4.4",
  4702. "symfony/process": "<4.4"
  4703. },
  4704. "provide": {
  4705. "psr/log-implementation": "1.0|2.0"
  4706. },
  4707. "require-dev": {
  4708. "psr/log": "^1|^2",
  4709. "symfony/config": "^4.4|^5.0|^6.0",
  4710. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4711. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4712. "symfony/lock": "^4.4|^5.0|^6.0",
  4713. "symfony/process": "^4.4|^5.0|^6.0",
  4714. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4715. },
  4716. "suggest": {
  4717. "psr/log": "For using the console logger",
  4718. "symfony/event-dispatcher": "",
  4719. "symfony/lock": "",
  4720. "symfony/process": ""
  4721. },
  4722. "type": "library",
  4723. "autoload": {
  4724. "psr-4": {
  4725. "Symfony\\Component\\Console\\": ""
  4726. },
  4727. "exclude-from-classmap": [
  4728. "/Tests/"
  4729. ]
  4730. },
  4731. "notification-url": "https://packagist.org/downloads/",
  4732. "license": [
  4733. "MIT"
  4734. ],
  4735. "authors": [
  4736. {
  4737. "name": "Fabien Potencier",
  4738. "email": "fabien@symfony.com"
  4739. },
  4740. {
  4741. "name": "Symfony Community",
  4742. "homepage": "https://symfony.com/contributors"
  4743. }
  4744. ],
  4745. "description": "Eases the creation of beautiful and testable command line interfaces",
  4746. "homepage": "https://symfony.com",
  4747. "keywords": [
  4748. "cli",
  4749. "command line",
  4750. "console",
  4751. "terminal"
  4752. ],
  4753. "support": {
  4754. "source": "https://github.com/symfony/console/tree/v5.4.7"
  4755. },
  4756. "funding": [
  4757. {
  4758. "url": "https://symfony.com/sponsor",
  4759. "type": "custom"
  4760. },
  4761. {
  4762. "url": "https://github.com/fabpot",
  4763. "type": "github"
  4764. },
  4765. {
  4766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4767. "type": "tidelift"
  4768. }
  4769. ],
  4770. "time": "2022-03-31T17:09:19+00:00"
  4771. },
  4772. {
  4773. "name": "symfony/css-selector",
  4774. "version": "v6.0.3",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://github.com/symfony/css-selector.git",
  4778. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1955d595c12c111629cc814d3f2a2ff13580508a",
  4783. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a",
  4784. "shasum": "",
  4785. "mirrors": [
  4786. {
  4787. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4788. "preferred": true
  4789. }
  4790. ]
  4791. },
  4792. "require": {
  4793. "php": ">=8.0.2"
  4794. },
  4795. "type": "library",
  4796. "autoload": {
  4797. "psr-4": {
  4798. "Symfony\\Component\\CssSelector\\": ""
  4799. },
  4800. "exclude-from-classmap": [
  4801. "/Tests/"
  4802. ]
  4803. },
  4804. "notification-url": "https://packagist.org/downloads/",
  4805. "license": [
  4806. "MIT"
  4807. ],
  4808. "authors": [
  4809. {
  4810. "name": "Fabien Potencier",
  4811. "email": "fabien@symfony.com"
  4812. },
  4813. {
  4814. "name": "Jean-François Simon",
  4815. "email": "jeanfrancois.simon@sensiolabs.com"
  4816. },
  4817. {
  4818. "name": "Symfony Community",
  4819. "homepage": "https://symfony.com/contributors"
  4820. }
  4821. ],
  4822. "description": "Converts CSS selectors to XPath expressions",
  4823. "homepage": "https://symfony.com",
  4824. "support": {
  4825. "source": "https://github.com/symfony/css-selector/tree/v6.0.3"
  4826. },
  4827. "funding": [
  4828. {
  4829. "url": "https://symfony.com/sponsor",
  4830. "type": "custom"
  4831. },
  4832. {
  4833. "url": "https://github.com/fabpot",
  4834. "type": "github"
  4835. },
  4836. {
  4837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4838. "type": "tidelift"
  4839. }
  4840. ],
  4841. "time": "2022-01-02T09:55:41+00:00"
  4842. },
  4843. {
  4844. "name": "symfony/deprecation-contracts",
  4845. "version": "v3.0.0",
  4846. "source": {
  4847. "type": "git",
  4848. "url": "https://github.com/symfony/deprecation-contracts.git",
  4849. "reference": "c726b64c1ccfe2896cb7df2e1331c357ad1c8ced"
  4850. },
  4851. "dist": {
  4852. "type": "zip",
  4853. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/c726b64c1ccfe2896cb7df2e1331c357ad1c8ced",
  4854. "reference": "c726b64c1ccfe2896cb7df2e1331c357ad1c8ced",
  4855. "shasum": "",
  4856. "mirrors": [
  4857. {
  4858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4859. "preferred": true
  4860. }
  4861. ]
  4862. },
  4863. "require": {
  4864. "php": ">=8.0.2"
  4865. },
  4866. "type": "library",
  4867. "extra": {
  4868. "branch-alias": {
  4869. "dev-main": "3.0-dev"
  4870. },
  4871. "thanks": {
  4872. "name": "symfony/contracts",
  4873. "url": "https://github.com/symfony/contracts"
  4874. }
  4875. },
  4876. "autoload": {
  4877. "files": [
  4878. "function.php"
  4879. ]
  4880. },
  4881. "notification-url": "https://packagist.org/downloads/",
  4882. "license": [
  4883. "MIT"
  4884. ],
  4885. "authors": [
  4886. {
  4887. "name": "Nicolas Grekas",
  4888. "email": "p@tchwork.com"
  4889. },
  4890. {
  4891. "name": "Symfony Community",
  4892. "homepage": "https://symfony.com/contributors"
  4893. }
  4894. ],
  4895. "description": "A generic function and convention to trigger deprecation notices",
  4896. "homepage": "https://symfony.com",
  4897. "support": {
  4898. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.0"
  4899. },
  4900. "funding": [
  4901. {
  4902. "url": "https://symfony.com/sponsor",
  4903. "type": "custom"
  4904. },
  4905. {
  4906. "url": "https://github.com/fabpot",
  4907. "type": "github"
  4908. },
  4909. {
  4910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4911. "type": "tidelift"
  4912. }
  4913. ],
  4914. "time": "2021-11-01T23:48:49+00:00"
  4915. },
  4916. {
  4917. "name": "symfony/error-handler",
  4918. "version": "v5.4.7",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/symfony/error-handler.git",
  4922. "reference": "060bc01856a1846e3e4385261bc9ed11a1dd7b6a"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/symfony/error-handler/zipball/060bc01856a1846e3e4385261bc9ed11a1dd7b6a",
  4927. "reference": "060bc01856a1846e3e4385261bc9ed11a1dd7b6a",
  4928. "shasum": "",
  4929. "mirrors": [
  4930. {
  4931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4932. "preferred": true
  4933. }
  4934. ]
  4935. },
  4936. "require": {
  4937. "php": ">=7.2.5",
  4938. "psr/log": "^1|^2|^3",
  4939. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4940. },
  4941. "require-dev": {
  4942. "symfony/deprecation-contracts": "^2.1|^3",
  4943. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  4944. "symfony/serializer": "^4.4|^5.0|^6.0"
  4945. },
  4946. "bin": [
  4947. "Resources/bin/patch-type-declarations"
  4948. ],
  4949. "type": "library",
  4950. "autoload": {
  4951. "psr-4": {
  4952. "Symfony\\Component\\ErrorHandler\\": ""
  4953. },
  4954. "exclude-from-classmap": [
  4955. "/Tests/"
  4956. ]
  4957. },
  4958. "notification-url": "https://packagist.org/downloads/",
  4959. "license": [
  4960. "MIT"
  4961. ],
  4962. "authors": [
  4963. {
  4964. "name": "Fabien Potencier",
  4965. "email": "fabien@symfony.com"
  4966. },
  4967. {
  4968. "name": "Symfony Community",
  4969. "homepage": "https://symfony.com/contributors"
  4970. }
  4971. ],
  4972. "description": "Provides tools to manage errors and ease debugging PHP code",
  4973. "homepage": "https://symfony.com",
  4974. "support": {
  4975. "source": "https://github.com/symfony/error-handler/tree/v5.4.7"
  4976. },
  4977. "funding": [
  4978. {
  4979. "url": "https://symfony.com/sponsor",
  4980. "type": "custom"
  4981. },
  4982. {
  4983. "url": "https://github.com/fabpot",
  4984. "type": "github"
  4985. },
  4986. {
  4987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4988. "type": "tidelift"
  4989. }
  4990. ],
  4991. "time": "2022-03-18T16:21:29+00:00"
  4992. },
  4993. {
  4994. "name": "symfony/event-dispatcher",
  4995. "version": "v6.0.3",
  4996. "source": {
  4997. "type": "git",
  4998. "url": "https://github.com/symfony/event-dispatcher.git",
  4999. "reference": "6472ea2dd415e925b90ca82be64b8bc6157f3934"
  5000. },
  5001. "dist": {
  5002. "type": "zip",
  5003. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6472ea2dd415e925b90ca82be64b8bc6157f3934",
  5004. "reference": "6472ea2dd415e925b90ca82be64b8bc6157f3934",
  5005. "shasum": "",
  5006. "mirrors": [
  5007. {
  5008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5009. "preferred": true
  5010. }
  5011. ]
  5012. },
  5013. "require": {
  5014. "php": ">=8.0.2",
  5015. "symfony/event-dispatcher-contracts": "^2|^3"
  5016. },
  5017. "conflict": {
  5018. "symfony/dependency-injection": "<5.4"
  5019. },
  5020. "provide": {
  5021. "psr/event-dispatcher-implementation": "1.0",
  5022. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5023. },
  5024. "require-dev": {
  5025. "psr/log": "^1|^2|^3",
  5026. "symfony/config": "^5.4|^6.0",
  5027. "symfony/dependency-injection": "^5.4|^6.0",
  5028. "symfony/error-handler": "^5.4|^6.0",
  5029. "symfony/expression-language": "^5.4|^6.0",
  5030. "symfony/http-foundation": "^5.4|^6.0",
  5031. "symfony/service-contracts": "^1.1|^2|^3",
  5032. "symfony/stopwatch": "^5.4|^6.0"
  5033. },
  5034. "suggest": {
  5035. "symfony/dependency-injection": "",
  5036. "symfony/http-kernel": ""
  5037. },
  5038. "type": "library",
  5039. "autoload": {
  5040. "psr-4": {
  5041. "Symfony\\Component\\EventDispatcher\\": ""
  5042. },
  5043. "exclude-from-classmap": [
  5044. "/Tests/"
  5045. ]
  5046. },
  5047. "notification-url": "https://packagist.org/downloads/",
  5048. "license": [
  5049. "MIT"
  5050. ],
  5051. "authors": [
  5052. {
  5053. "name": "Fabien Potencier",
  5054. "email": "fabien@symfony.com"
  5055. },
  5056. {
  5057. "name": "Symfony Community",
  5058. "homepage": "https://symfony.com/contributors"
  5059. }
  5060. ],
  5061. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5062. "homepage": "https://symfony.com",
  5063. "support": {
  5064. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.3"
  5065. },
  5066. "funding": [
  5067. {
  5068. "url": "https://symfony.com/sponsor",
  5069. "type": "custom"
  5070. },
  5071. {
  5072. "url": "https://github.com/fabpot",
  5073. "type": "github"
  5074. },
  5075. {
  5076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5077. "type": "tidelift"
  5078. }
  5079. ],
  5080. "time": "2022-01-02T09:55:41+00:00"
  5081. },
  5082. {
  5083. "name": "symfony/event-dispatcher-contracts",
  5084. "version": "v3.0.1",
  5085. "source": {
  5086. "type": "git",
  5087. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5088. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5089. },
  5090. "dist": {
  5091. "type": "zip",
  5092. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5093. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5094. "shasum": "",
  5095. "mirrors": [
  5096. {
  5097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5098. "preferred": true
  5099. }
  5100. ]
  5101. },
  5102. "require": {
  5103. "php": ">=8.0.2",
  5104. "psr/event-dispatcher": "^1"
  5105. },
  5106. "suggest": {
  5107. "symfony/event-dispatcher-implementation": ""
  5108. },
  5109. "type": "library",
  5110. "extra": {
  5111. "branch-alias": {
  5112. "dev-main": "3.0-dev"
  5113. },
  5114. "thanks": {
  5115. "name": "symfony/contracts",
  5116. "url": "https://github.com/symfony/contracts"
  5117. }
  5118. },
  5119. "autoload": {
  5120. "psr-4": {
  5121. "Symfony\\Contracts\\EventDispatcher\\": ""
  5122. }
  5123. },
  5124. "notification-url": "https://packagist.org/downloads/",
  5125. "license": [
  5126. "MIT"
  5127. ],
  5128. "authors": [
  5129. {
  5130. "name": "Nicolas Grekas",
  5131. "email": "p@tchwork.com"
  5132. },
  5133. {
  5134. "name": "Symfony Community",
  5135. "homepage": "https://symfony.com/contributors"
  5136. }
  5137. ],
  5138. "description": "Generic abstractions related to dispatching event",
  5139. "homepage": "https://symfony.com",
  5140. "keywords": [
  5141. "abstractions",
  5142. "contracts",
  5143. "decoupling",
  5144. "interfaces",
  5145. "interoperability",
  5146. "standards"
  5147. ],
  5148. "support": {
  5149. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.1"
  5150. },
  5151. "funding": [
  5152. {
  5153. "url": "https://symfony.com/sponsor",
  5154. "type": "custom"
  5155. },
  5156. {
  5157. "url": "https://github.com/fabpot",
  5158. "type": "github"
  5159. },
  5160. {
  5161. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5162. "type": "tidelift"
  5163. }
  5164. ],
  5165. "time": "2022-01-02T09:55:41+00:00"
  5166. },
  5167. {
  5168. "name": "symfony/finder",
  5169. "version": "v5.4.3",
  5170. "source": {
  5171. "type": "git",
  5172. "url": "https://github.com/symfony/finder.git",
  5173. "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d"
  5174. },
  5175. "dist": {
  5176. "type": "zip",
  5177. "url": "https://api.github.com/repos/symfony/finder/zipball/231313534dded84c7ecaa79d14bc5da4ccb69b7d",
  5178. "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d",
  5179. "shasum": "",
  5180. "mirrors": [
  5181. {
  5182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5183. "preferred": true
  5184. }
  5185. ]
  5186. },
  5187. "require": {
  5188. "php": ">=7.2.5",
  5189. "symfony/deprecation-contracts": "^2.1|^3",
  5190. "symfony/polyfill-php80": "^1.16"
  5191. },
  5192. "type": "library",
  5193. "autoload": {
  5194. "psr-4": {
  5195. "Symfony\\Component\\Finder\\": ""
  5196. },
  5197. "exclude-from-classmap": [
  5198. "/Tests/"
  5199. ]
  5200. },
  5201. "notification-url": "https://packagist.org/downloads/",
  5202. "license": [
  5203. "MIT"
  5204. ],
  5205. "authors": [
  5206. {
  5207. "name": "Fabien Potencier",
  5208. "email": "fabien@symfony.com"
  5209. },
  5210. {
  5211. "name": "Symfony Community",
  5212. "homepage": "https://symfony.com/contributors"
  5213. }
  5214. ],
  5215. "description": "Finds files and directories via an intuitive fluent interface",
  5216. "homepage": "https://symfony.com",
  5217. "support": {
  5218. "source": "https://github.com/symfony/finder/tree/v5.4.3"
  5219. },
  5220. "funding": [
  5221. {
  5222. "url": "https://symfony.com/sponsor",
  5223. "type": "custom"
  5224. },
  5225. {
  5226. "url": "https://github.com/fabpot",
  5227. "type": "github"
  5228. },
  5229. {
  5230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5231. "type": "tidelift"
  5232. }
  5233. ],
  5234. "time": "2022-01-26T16:34:36+00:00"
  5235. },
  5236. {
  5237. "name": "symfony/http-foundation",
  5238. "version": "v5.4.6",
  5239. "source": {
  5240. "type": "git",
  5241. "url": "https://github.com/symfony/http-foundation.git",
  5242. "reference": "34e89bc147633c0f9dd6caaaf56da3b806a21465"
  5243. },
  5244. "dist": {
  5245. "type": "zip",
  5246. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/34e89bc147633c0f9dd6caaaf56da3b806a21465",
  5247. "reference": "34e89bc147633c0f9dd6caaaf56da3b806a21465",
  5248. "shasum": "",
  5249. "mirrors": [
  5250. {
  5251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5252. "preferred": true
  5253. }
  5254. ]
  5255. },
  5256. "require": {
  5257. "php": ">=7.2.5",
  5258. "symfony/deprecation-contracts": "^2.1|^3",
  5259. "symfony/polyfill-mbstring": "~1.1",
  5260. "symfony/polyfill-php80": "^1.16"
  5261. },
  5262. "require-dev": {
  5263. "predis/predis": "~1.0",
  5264. "symfony/cache": "^4.4|^5.0|^6.0",
  5265. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5266. "symfony/mime": "^4.4|^5.0|^6.0"
  5267. },
  5268. "suggest": {
  5269. "symfony/mime": "To use the file extension guesser"
  5270. },
  5271. "type": "library",
  5272. "autoload": {
  5273. "psr-4": {
  5274. "Symfony\\Component\\HttpFoundation\\": ""
  5275. },
  5276. "exclude-from-classmap": [
  5277. "/Tests/"
  5278. ]
  5279. },
  5280. "notification-url": "https://packagist.org/downloads/",
  5281. "license": [
  5282. "MIT"
  5283. ],
  5284. "authors": [
  5285. {
  5286. "name": "Fabien Potencier",
  5287. "email": "fabien@symfony.com"
  5288. },
  5289. {
  5290. "name": "Symfony Community",
  5291. "homepage": "https://symfony.com/contributors"
  5292. }
  5293. ],
  5294. "description": "Defines an object-oriented layer for the HTTP specification",
  5295. "homepage": "https://symfony.com",
  5296. "support": {
  5297. "source": "https://github.com/symfony/http-foundation/tree/v5.4.6"
  5298. },
  5299. "funding": [
  5300. {
  5301. "url": "https://symfony.com/sponsor",
  5302. "type": "custom"
  5303. },
  5304. {
  5305. "url": "https://github.com/fabpot",
  5306. "type": "github"
  5307. },
  5308. {
  5309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5310. "type": "tidelift"
  5311. }
  5312. ],
  5313. "time": "2022-03-05T21:03:43+00:00"
  5314. },
  5315. {
  5316. "name": "symfony/http-kernel",
  5317. "version": "v5.4.7",
  5318. "source": {
  5319. "type": "git",
  5320. "url": "https://github.com/symfony/http-kernel.git",
  5321. "reference": "509243b9b3656db966284c45dffce9316c1ecc5c"
  5322. },
  5323. "dist": {
  5324. "type": "zip",
  5325. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/509243b9b3656db966284c45dffce9316c1ecc5c",
  5326. "reference": "509243b9b3656db966284c45dffce9316c1ecc5c",
  5327. "shasum": "",
  5328. "mirrors": [
  5329. {
  5330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5331. "preferred": true
  5332. }
  5333. ]
  5334. },
  5335. "require": {
  5336. "php": ">=7.2.5",
  5337. "psr/log": "^1|^2",
  5338. "symfony/deprecation-contracts": "^2.1|^3",
  5339. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5340. "symfony/event-dispatcher": "^5.0|^6.0",
  5341. "symfony/http-foundation": "^5.3.7|^6.0",
  5342. "symfony/polyfill-ctype": "^1.8",
  5343. "symfony/polyfill-php73": "^1.9",
  5344. "symfony/polyfill-php80": "^1.16"
  5345. },
  5346. "conflict": {
  5347. "symfony/browser-kit": "<5.4",
  5348. "symfony/cache": "<5.0",
  5349. "symfony/config": "<5.0",
  5350. "symfony/console": "<4.4",
  5351. "symfony/dependency-injection": "<5.3",
  5352. "symfony/doctrine-bridge": "<5.0",
  5353. "symfony/form": "<5.0",
  5354. "symfony/http-client": "<5.0",
  5355. "symfony/mailer": "<5.0",
  5356. "symfony/messenger": "<5.0",
  5357. "symfony/translation": "<5.0",
  5358. "symfony/twig-bridge": "<5.0",
  5359. "symfony/validator": "<5.0",
  5360. "twig/twig": "<2.13"
  5361. },
  5362. "provide": {
  5363. "psr/log-implementation": "1.0|2.0"
  5364. },
  5365. "require-dev": {
  5366. "psr/cache": "^1.0|^2.0|^3.0",
  5367. "symfony/browser-kit": "^5.4|^6.0",
  5368. "symfony/config": "^5.0|^6.0",
  5369. "symfony/console": "^4.4|^5.0|^6.0",
  5370. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5371. "symfony/dependency-injection": "^5.3|^6.0",
  5372. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5373. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5374. "symfony/finder": "^4.4|^5.0|^6.0",
  5375. "symfony/http-client-contracts": "^1.1|^2|^3",
  5376. "symfony/process": "^4.4|^5.0|^6.0",
  5377. "symfony/routing": "^4.4|^5.0|^6.0",
  5378. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5379. "symfony/translation": "^4.4|^5.0|^6.0",
  5380. "symfony/translation-contracts": "^1.1|^2|^3",
  5381. "twig/twig": "^2.13|^3.0.4"
  5382. },
  5383. "suggest": {
  5384. "symfony/browser-kit": "",
  5385. "symfony/config": "",
  5386. "symfony/console": "",
  5387. "symfony/dependency-injection": ""
  5388. },
  5389. "type": "library",
  5390. "autoload": {
  5391. "psr-4": {
  5392. "Symfony\\Component\\HttpKernel\\": ""
  5393. },
  5394. "exclude-from-classmap": [
  5395. "/Tests/"
  5396. ]
  5397. },
  5398. "notification-url": "https://packagist.org/downloads/",
  5399. "license": [
  5400. "MIT"
  5401. ],
  5402. "authors": [
  5403. {
  5404. "name": "Fabien Potencier",
  5405. "email": "fabien@symfony.com"
  5406. },
  5407. {
  5408. "name": "Symfony Community",
  5409. "homepage": "https://symfony.com/contributors"
  5410. }
  5411. ],
  5412. "description": "Provides a structured process for converting a Request into a Response",
  5413. "homepage": "https://symfony.com",
  5414. "support": {
  5415. "source": "https://github.com/symfony/http-kernel/tree/v5.4.7"
  5416. },
  5417. "funding": [
  5418. {
  5419. "url": "https://symfony.com/sponsor",
  5420. "type": "custom"
  5421. },
  5422. {
  5423. "url": "https://github.com/fabpot",
  5424. "type": "github"
  5425. },
  5426. {
  5427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5428. "type": "tidelift"
  5429. }
  5430. ],
  5431. "time": "2022-04-02T06:04:20+00:00"
  5432. },
  5433. {
  5434. "name": "symfony/mime",
  5435. "version": "v5.4.7",
  5436. "source": {
  5437. "type": "git",
  5438. "url": "https://github.com/symfony/mime.git",
  5439. "reference": "92d27a34dea2e199fa9b687e3fff3a7d169b7b1c"
  5440. },
  5441. "dist": {
  5442. "type": "zip",
  5443. "url": "https://api.github.com/repos/symfony/mime/zipball/92d27a34dea2e199fa9b687e3fff3a7d169b7b1c",
  5444. "reference": "92d27a34dea2e199fa9b687e3fff3a7d169b7b1c",
  5445. "shasum": "",
  5446. "mirrors": [
  5447. {
  5448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5449. "preferred": true
  5450. }
  5451. ]
  5452. },
  5453. "require": {
  5454. "php": ">=7.2.5",
  5455. "symfony/deprecation-contracts": "^2.1|^3",
  5456. "symfony/polyfill-intl-idn": "^1.10",
  5457. "symfony/polyfill-mbstring": "^1.0",
  5458. "symfony/polyfill-php80": "^1.16"
  5459. },
  5460. "conflict": {
  5461. "egulias/email-validator": "~3.0.0",
  5462. "phpdocumentor/reflection-docblock": "<3.2.2",
  5463. "phpdocumentor/type-resolver": "<1.4.0",
  5464. "symfony/mailer": "<4.4"
  5465. },
  5466. "require-dev": {
  5467. "egulias/email-validator": "^2.1.10|^3.1",
  5468. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5469. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5470. "symfony/property-access": "^4.4|^5.1|^6.0",
  5471. "symfony/property-info": "^4.4|^5.1|^6.0",
  5472. "symfony/serializer": "^5.2|^6.0"
  5473. },
  5474. "type": "library",
  5475. "autoload": {
  5476. "psr-4": {
  5477. "Symfony\\Component\\Mime\\": ""
  5478. },
  5479. "exclude-from-classmap": [
  5480. "/Tests/"
  5481. ]
  5482. },
  5483. "notification-url": "https://packagist.org/downloads/",
  5484. "license": [
  5485. "MIT"
  5486. ],
  5487. "authors": [
  5488. {
  5489. "name": "Fabien Potencier",
  5490. "email": "fabien@symfony.com"
  5491. },
  5492. {
  5493. "name": "Symfony Community",
  5494. "homepage": "https://symfony.com/contributors"
  5495. }
  5496. ],
  5497. "description": "Allows manipulating MIME messages",
  5498. "homepage": "https://symfony.com",
  5499. "keywords": [
  5500. "mime",
  5501. "mime-type"
  5502. ],
  5503. "support": {
  5504. "source": "https://github.com/symfony/mime/tree/v5.4.7"
  5505. },
  5506. "funding": [
  5507. {
  5508. "url": "https://symfony.com/sponsor",
  5509. "type": "custom"
  5510. },
  5511. {
  5512. "url": "https://github.com/fabpot",
  5513. "type": "github"
  5514. },
  5515. {
  5516. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5517. "type": "tidelift"
  5518. }
  5519. ],
  5520. "time": "2022-03-11T16:08:05+00:00"
  5521. },
  5522. {
  5523. "name": "symfony/polyfill-ctype",
  5524. "version": "v1.25.0",
  5525. "source": {
  5526. "type": "git",
  5527. "url": "https://github.com/symfony/polyfill-ctype.git",
  5528. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  5529. },
  5530. "dist": {
  5531. "type": "zip",
  5532. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  5533. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  5534. "shasum": "",
  5535. "mirrors": [
  5536. {
  5537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5538. "preferred": true
  5539. }
  5540. ]
  5541. },
  5542. "require": {
  5543. "php": ">=7.1"
  5544. },
  5545. "provide": {
  5546. "ext-ctype": "*"
  5547. },
  5548. "suggest": {
  5549. "ext-ctype": "For best performance"
  5550. },
  5551. "type": "library",
  5552. "extra": {
  5553. "branch-alias": {
  5554. "dev-main": "1.23-dev"
  5555. },
  5556. "thanks": {
  5557. "name": "symfony/polyfill",
  5558. "url": "https://github.com/symfony/polyfill"
  5559. }
  5560. },
  5561. "autoload": {
  5562. "files": [
  5563. "bootstrap.php"
  5564. ],
  5565. "psr-4": {
  5566. "Symfony\\Polyfill\\Ctype\\": ""
  5567. }
  5568. },
  5569. "notification-url": "https://packagist.org/downloads/",
  5570. "license": [
  5571. "MIT"
  5572. ],
  5573. "authors": [
  5574. {
  5575. "name": "Gert de Pagter",
  5576. "email": "BackEndTea@gmail.com"
  5577. },
  5578. {
  5579. "name": "Symfony Community",
  5580. "homepage": "https://symfony.com/contributors"
  5581. }
  5582. ],
  5583. "description": "Symfony polyfill for ctype functions",
  5584. "homepage": "https://symfony.com",
  5585. "keywords": [
  5586. "compatibility",
  5587. "ctype",
  5588. "polyfill",
  5589. "portable"
  5590. ],
  5591. "support": {
  5592. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0"
  5593. },
  5594. "funding": [
  5595. {
  5596. "url": "https://symfony.com/sponsor",
  5597. "type": "custom"
  5598. },
  5599. {
  5600. "url": "https://github.com/fabpot",
  5601. "type": "github"
  5602. },
  5603. {
  5604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5605. "type": "tidelift"
  5606. }
  5607. ],
  5608. "time": "2021-10-20T20:35:02+00:00"
  5609. },
  5610. {
  5611. "name": "symfony/polyfill-iconv",
  5612. "version": "v1.25.0",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://github.com/symfony/polyfill-iconv.git",
  5616. "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f1aed619e28cb077fc83fac8c4c0383578356e40",
  5621. "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40",
  5622. "shasum": "",
  5623. "mirrors": [
  5624. {
  5625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5626. "preferred": true
  5627. }
  5628. ]
  5629. },
  5630. "require": {
  5631. "php": ">=7.1"
  5632. },
  5633. "provide": {
  5634. "ext-iconv": "*"
  5635. },
  5636. "suggest": {
  5637. "ext-iconv": "For best performance"
  5638. },
  5639. "type": "library",
  5640. "extra": {
  5641. "branch-alias": {
  5642. "dev-main": "1.23-dev"
  5643. },
  5644. "thanks": {
  5645. "name": "symfony/polyfill",
  5646. "url": "https://github.com/symfony/polyfill"
  5647. }
  5648. },
  5649. "autoload": {
  5650. "files": [
  5651. "bootstrap.php"
  5652. ],
  5653. "psr-4": {
  5654. "Symfony\\Polyfill\\Iconv\\": ""
  5655. }
  5656. },
  5657. "notification-url": "https://packagist.org/downloads/",
  5658. "license": [
  5659. "MIT"
  5660. ],
  5661. "authors": [
  5662. {
  5663. "name": "Nicolas Grekas",
  5664. "email": "p@tchwork.com"
  5665. },
  5666. {
  5667. "name": "Symfony Community",
  5668. "homepage": "https://symfony.com/contributors"
  5669. }
  5670. ],
  5671. "description": "Symfony polyfill for the Iconv extension",
  5672. "homepage": "https://symfony.com",
  5673. "keywords": [
  5674. "compatibility",
  5675. "iconv",
  5676. "polyfill",
  5677. "portable",
  5678. "shim"
  5679. ],
  5680. "support": {
  5681. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.25.0"
  5682. },
  5683. "funding": [
  5684. {
  5685. "url": "https://symfony.com/sponsor",
  5686. "type": "custom"
  5687. },
  5688. {
  5689. "url": "https://github.com/fabpot",
  5690. "type": "github"
  5691. },
  5692. {
  5693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5694. "type": "tidelift"
  5695. }
  5696. ],
  5697. "time": "2022-01-04T09:04:05+00:00"
  5698. },
  5699. {
  5700. "name": "symfony/polyfill-intl-grapheme",
  5701. "version": "v1.25.0",
  5702. "source": {
  5703. "type": "git",
  5704. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5705. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  5706. },
  5707. "dist": {
  5708. "type": "zip",
  5709. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  5710. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  5711. "shasum": "",
  5712. "mirrors": [
  5713. {
  5714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5715. "preferred": true
  5716. }
  5717. ]
  5718. },
  5719. "require": {
  5720. "php": ">=7.1"
  5721. },
  5722. "suggest": {
  5723. "ext-intl": "For best performance"
  5724. },
  5725. "type": "library",
  5726. "extra": {
  5727. "branch-alias": {
  5728. "dev-main": "1.23-dev"
  5729. },
  5730. "thanks": {
  5731. "name": "symfony/polyfill",
  5732. "url": "https://github.com/symfony/polyfill"
  5733. }
  5734. },
  5735. "autoload": {
  5736. "files": [
  5737. "bootstrap.php"
  5738. ],
  5739. "psr-4": {
  5740. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5741. }
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "MIT"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "Nicolas Grekas",
  5750. "email": "p@tchwork.com"
  5751. },
  5752. {
  5753. "name": "Symfony Community",
  5754. "homepage": "https://symfony.com/contributors"
  5755. }
  5756. ],
  5757. "description": "Symfony polyfill for intl's grapheme_* functions",
  5758. "homepage": "https://symfony.com",
  5759. "keywords": [
  5760. "compatibility",
  5761. "grapheme",
  5762. "intl",
  5763. "polyfill",
  5764. "portable",
  5765. "shim"
  5766. ],
  5767. "support": {
  5768. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
  5769. },
  5770. "funding": [
  5771. {
  5772. "url": "https://symfony.com/sponsor",
  5773. "type": "custom"
  5774. },
  5775. {
  5776. "url": "https://github.com/fabpot",
  5777. "type": "github"
  5778. },
  5779. {
  5780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5781. "type": "tidelift"
  5782. }
  5783. ],
  5784. "time": "2021-11-23T21:10:46+00:00"
  5785. },
  5786. {
  5787. "name": "symfony/polyfill-intl-idn",
  5788. "version": "v1.25.0",
  5789. "source": {
  5790. "type": "git",
  5791. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5792. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  5793. },
  5794. "dist": {
  5795. "type": "zip",
  5796. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  5797. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  5798. "shasum": "",
  5799. "mirrors": [
  5800. {
  5801. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5802. "preferred": true
  5803. }
  5804. ]
  5805. },
  5806. "require": {
  5807. "php": ">=7.1",
  5808. "symfony/polyfill-intl-normalizer": "^1.10",
  5809. "symfony/polyfill-php72": "^1.10"
  5810. },
  5811. "suggest": {
  5812. "ext-intl": "For best performance"
  5813. },
  5814. "type": "library",
  5815. "extra": {
  5816. "branch-alias": {
  5817. "dev-main": "1.23-dev"
  5818. },
  5819. "thanks": {
  5820. "name": "symfony/polyfill",
  5821. "url": "https://github.com/symfony/polyfill"
  5822. }
  5823. },
  5824. "autoload": {
  5825. "files": [
  5826. "bootstrap.php"
  5827. ],
  5828. "psr-4": {
  5829. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5830. }
  5831. },
  5832. "notification-url": "https://packagist.org/downloads/",
  5833. "license": [
  5834. "MIT"
  5835. ],
  5836. "authors": [
  5837. {
  5838. "name": "Laurent Bassin",
  5839. "email": "laurent@bassin.info"
  5840. },
  5841. {
  5842. "name": "Trevor Rowbotham",
  5843. "email": "trevor.rowbotham@pm.me"
  5844. },
  5845. {
  5846. "name": "Symfony Community",
  5847. "homepage": "https://symfony.com/contributors"
  5848. }
  5849. ],
  5850. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5851. "homepage": "https://symfony.com",
  5852. "keywords": [
  5853. "compatibility",
  5854. "idn",
  5855. "intl",
  5856. "polyfill",
  5857. "portable",
  5858. "shim"
  5859. ],
  5860. "support": {
  5861. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0"
  5862. },
  5863. "funding": [
  5864. {
  5865. "url": "https://symfony.com/sponsor",
  5866. "type": "custom"
  5867. },
  5868. {
  5869. "url": "https://github.com/fabpot",
  5870. "type": "github"
  5871. },
  5872. {
  5873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5874. "type": "tidelift"
  5875. }
  5876. ],
  5877. "time": "2021-09-14T14:02:44+00:00"
  5878. },
  5879. {
  5880. "name": "symfony/polyfill-intl-normalizer",
  5881. "version": "v1.25.0",
  5882. "source": {
  5883. "type": "git",
  5884. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5885. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  5886. },
  5887. "dist": {
  5888. "type": "zip",
  5889. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  5890. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  5891. "shasum": "",
  5892. "mirrors": [
  5893. {
  5894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5895. "preferred": true
  5896. }
  5897. ]
  5898. },
  5899. "require": {
  5900. "php": ">=7.1"
  5901. },
  5902. "suggest": {
  5903. "ext-intl": "For best performance"
  5904. },
  5905. "type": "library",
  5906. "extra": {
  5907. "branch-alias": {
  5908. "dev-main": "1.23-dev"
  5909. },
  5910. "thanks": {
  5911. "name": "symfony/polyfill",
  5912. "url": "https://github.com/symfony/polyfill"
  5913. }
  5914. },
  5915. "autoload": {
  5916. "files": [
  5917. "bootstrap.php"
  5918. ],
  5919. "psr-4": {
  5920. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5921. },
  5922. "classmap": [
  5923. "Resources/stubs"
  5924. ]
  5925. },
  5926. "notification-url": "https://packagist.org/downloads/",
  5927. "license": [
  5928. "MIT"
  5929. ],
  5930. "authors": [
  5931. {
  5932. "name": "Nicolas Grekas",
  5933. "email": "p@tchwork.com"
  5934. },
  5935. {
  5936. "name": "Symfony Community",
  5937. "homepage": "https://symfony.com/contributors"
  5938. }
  5939. ],
  5940. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5941. "homepage": "https://symfony.com",
  5942. "keywords": [
  5943. "compatibility",
  5944. "intl",
  5945. "normalizer",
  5946. "polyfill",
  5947. "portable",
  5948. "shim"
  5949. ],
  5950. "support": {
  5951. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0"
  5952. },
  5953. "funding": [
  5954. {
  5955. "url": "https://symfony.com/sponsor",
  5956. "type": "custom"
  5957. },
  5958. {
  5959. "url": "https://github.com/fabpot",
  5960. "type": "github"
  5961. },
  5962. {
  5963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5964. "type": "tidelift"
  5965. }
  5966. ],
  5967. "time": "2021-02-19T12:13:01+00:00"
  5968. },
  5969. {
  5970. "name": "symfony/polyfill-mbstring",
  5971. "version": "v1.25.0",
  5972. "source": {
  5973. "type": "git",
  5974. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5975. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  5976. },
  5977. "dist": {
  5978. "type": "zip",
  5979. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  5980. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  5981. "shasum": "",
  5982. "mirrors": [
  5983. {
  5984. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5985. "preferred": true
  5986. }
  5987. ]
  5988. },
  5989. "require": {
  5990. "php": ">=7.1"
  5991. },
  5992. "provide": {
  5993. "ext-mbstring": "*"
  5994. },
  5995. "suggest": {
  5996. "ext-mbstring": "For best performance"
  5997. },
  5998. "type": "library",
  5999. "extra": {
  6000. "branch-alias": {
  6001. "dev-main": "1.23-dev"
  6002. },
  6003. "thanks": {
  6004. "name": "symfony/polyfill",
  6005. "url": "https://github.com/symfony/polyfill"
  6006. }
  6007. },
  6008. "autoload": {
  6009. "files": [
  6010. "bootstrap.php"
  6011. ],
  6012. "psr-4": {
  6013. "Symfony\\Polyfill\\Mbstring\\": ""
  6014. }
  6015. },
  6016. "notification-url": "https://packagist.org/downloads/",
  6017. "license": [
  6018. "MIT"
  6019. ],
  6020. "authors": [
  6021. {
  6022. "name": "Nicolas Grekas",
  6023. "email": "p@tchwork.com"
  6024. },
  6025. {
  6026. "name": "Symfony Community",
  6027. "homepage": "https://symfony.com/contributors"
  6028. }
  6029. ],
  6030. "description": "Symfony polyfill for the Mbstring extension",
  6031. "homepage": "https://symfony.com",
  6032. "keywords": [
  6033. "compatibility",
  6034. "mbstring",
  6035. "polyfill",
  6036. "portable",
  6037. "shim"
  6038. ],
  6039. "support": {
  6040. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
  6041. },
  6042. "funding": [
  6043. {
  6044. "url": "https://symfony.com/sponsor",
  6045. "type": "custom"
  6046. },
  6047. {
  6048. "url": "https://github.com/fabpot",
  6049. "type": "github"
  6050. },
  6051. {
  6052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6053. "type": "tidelift"
  6054. }
  6055. ],
  6056. "time": "2021-11-30T18:21:41+00:00"
  6057. },
  6058. {
  6059. "name": "symfony/polyfill-php72",
  6060. "version": "v1.25.0",
  6061. "source": {
  6062. "type": "git",
  6063. "url": "https://github.com/symfony/polyfill-php72.git",
  6064. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6065. },
  6066. "dist": {
  6067. "type": "zip",
  6068. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6069. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6070. "shasum": "",
  6071. "mirrors": [
  6072. {
  6073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6074. "preferred": true
  6075. }
  6076. ]
  6077. },
  6078. "require": {
  6079. "php": ">=7.1"
  6080. },
  6081. "type": "library",
  6082. "extra": {
  6083. "branch-alias": {
  6084. "dev-main": "1.23-dev"
  6085. },
  6086. "thanks": {
  6087. "name": "symfony/polyfill",
  6088. "url": "https://github.com/symfony/polyfill"
  6089. }
  6090. },
  6091. "autoload": {
  6092. "files": [
  6093. "bootstrap.php"
  6094. ],
  6095. "psr-4": {
  6096. "Symfony\\Polyfill\\Php72\\": ""
  6097. }
  6098. },
  6099. "notification-url": "https://packagist.org/downloads/",
  6100. "license": [
  6101. "MIT"
  6102. ],
  6103. "authors": [
  6104. {
  6105. "name": "Nicolas Grekas",
  6106. "email": "p@tchwork.com"
  6107. },
  6108. {
  6109. "name": "Symfony Community",
  6110. "homepage": "https://symfony.com/contributors"
  6111. }
  6112. ],
  6113. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6114. "homepage": "https://symfony.com",
  6115. "keywords": [
  6116. "compatibility",
  6117. "polyfill",
  6118. "portable",
  6119. "shim"
  6120. ],
  6121. "support": {
  6122. "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0"
  6123. },
  6124. "funding": [
  6125. {
  6126. "url": "https://symfony.com/sponsor",
  6127. "type": "custom"
  6128. },
  6129. {
  6130. "url": "https://github.com/fabpot",
  6131. "type": "github"
  6132. },
  6133. {
  6134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6135. "type": "tidelift"
  6136. }
  6137. ],
  6138. "time": "2021-05-27T09:17:38+00:00"
  6139. },
  6140. {
  6141. "name": "symfony/polyfill-php73",
  6142. "version": "v1.25.0",
  6143. "source": {
  6144. "type": "git",
  6145. "url": "https://github.com/symfony/polyfill-php73.git",
  6146. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
  6147. },
  6148. "dist": {
  6149. "type": "zip",
  6150. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
  6151. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  6152. "shasum": "",
  6153. "mirrors": [
  6154. {
  6155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6156. "preferred": true
  6157. }
  6158. ]
  6159. },
  6160. "require": {
  6161. "php": ">=7.1"
  6162. },
  6163. "type": "library",
  6164. "extra": {
  6165. "branch-alias": {
  6166. "dev-main": "1.23-dev"
  6167. },
  6168. "thanks": {
  6169. "name": "symfony/polyfill",
  6170. "url": "https://github.com/symfony/polyfill"
  6171. }
  6172. },
  6173. "autoload": {
  6174. "files": [
  6175. "bootstrap.php"
  6176. ],
  6177. "psr-4": {
  6178. "Symfony\\Polyfill\\Php73\\": ""
  6179. },
  6180. "classmap": [
  6181. "Resources/stubs"
  6182. ]
  6183. },
  6184. "notification-url": "https://packagist.org/downloads/",
  6185. "license": [
  6186. "MIT"
  6187. ],
  6188. "authors": [
  6189. {
  6190. "name": "Nicolas Grekas",
  6191. "email": "p@tchwork.com"
  6192. },
  6193. {
  6194. "name": "Symfony Community",
  6195. "homepage": "https://symfony.com/contributors"
  6196. }
  6197. ],
  6198. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6199. "homepage": "https://symfony.com",
  6200. "keywords": [
  6201. "compatibility",
  6202. "polyfill",
  6203. "portable",
  6204. "shim"
  6205. ],
  6206. "support": {
  6207. "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0"
  6208. },
  6209. "funding": [
  6210. {
  6211. "url": "https://symfony.com/sponsor",
  6212. "type": "custom"
  6213. },
  6214. {
  6215. "url": "https://github.com/fabpot",
  6216. "type": "github"
  6217. },
  6218. {
  6219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6220. "type": "tidelift"
  6221. }
  6222. ],
  6223. "time": "2021-06-05T21:20:04+00:00"
  6224. },
  6225. {
  6226. "name": "symfony/polyfill-php80",
  6227. "version": "v1.25.0",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/symfony/polyfill-php80.git",
  6231. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  6236. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  6237. "shasum": "",
  6238. "mirrors": [
  6239. {
  6240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6241. "preferred": true
  6242. }
  6243. ]
  6244. },
  6245. "require": {
  6246. "php": ">=7.1"
  6247. },
  6248. "type": "library",
  6249. "extra": {
  6250. "branch-alias": {
  6251. "dev-main": "1.23-dev"
  6252. },
  6253. "thanks": {
  6254. "name": "symfony/polyfill",
  6255. "url": "https://github.com/symfony/polyfill"
  6256. }
  6257. },
  6258. "autoload": {
  6259. "files": [
  6260. "bootstrap.php"
  6261. ],
  6262. "psr-4": {
  6263. "Symfony\\Polyfill\\Php80\\": ""
  6264. },
  6265. "classmap": [
  6266. "Resources/stubs"
  6267. ]
  6268. },
  6269. "notification-url": "https://packagist.org/downloads/",
  6270. "license": [
  6271. "MIT"
  6272. ],
  6273. "authors": [
  6274. {
  6275. "name": "Ion Bazan",
  6276. "email": "ion.bazan@gmail.com"
  6277. },
  6278. {
  6279. "name": "Nicolas Grekas",
  6280. "email": "p@tchwork.com"
  6281. },
  6282. {
  6283. "name": "Symfony Community",
  6284. "homepage": "https://symfony.com/contributors"
  6285. }
  6286. ],
  6287. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6288. "homepage": "https://symfony.com",
  6289. "keywords": [
  6290. "compatibility",
  6291. "polyfill",
  6292. "portable",
  6293. "shim"
  6294. ],
  6295. "support": {
  6296. "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
  6297. },
  6298. "funding": [
  6299. {
  6300. "url": "https://symfony.com/sponsor",
  6301. "type": "custom"
  6302. },
  6303. {
  6304. "url": "https://github.com/fabpot",
  6305. "type": "github"
  6306. },
  6307. {
  6308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6309. "type": "tidelift"
  6310. }
  6311. ],
  6312. "time": "2022-03-04T08:16:47+00:00"
  6313. },
  6314. {
  6315. "name": "symfony/polyfill-php81",
  6316. "version": "v1.25.0",
  6317. "source": {
  6318. "type": "git",
  6319. "url": "https://github.com/symfony/polyfill-php81.git",
  6320. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
  6321. },
  6322. "dist": {
  6323. "type": "zip",
  6324. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  6325. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  6326. "shasum": "",
  6327. "mirrors": [
  6328. {
  6329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6330. "preferred": true
  6331. }
  6332. ]
  6333. },
  6334. "require": {
  6335. "php": ">=7.1"
  6336. },
  6337. "type": "library",
  6338. "extra": {
  6339. "branch-alias": {
  6340. "dev-main": "1.23-dev"
  6341. },
  6342. "thanks": {
  6343. "name": "symfony/polyfill",
  6344. "url": "https://github.com/symfony/polyfill"
  6345. }
  6346. },
  6347. "autoload": {
  6348. "files": [
  6349. "bootstrap.php"
  6350. ],
  6351. "psr-4": {
  6352. "Symfony\\Polyfill\\Php81\\": ""
  6353. },
  6354. "classmap": [
  6355. "Resources/stubs"
  6356. ]
  6357. },
  6358. "notification-url": "https://packagist.org/downloads/",
  6359. "license": [
  6360. "MIT"
  6361. ],
  6362. "authors": [
  6363. {
  6364. "name": "Nicolas Grekas",
  6365. "email": "p@tchwork.com"
  6366. },
  6367. {
  6368. "name": "Symfony Community",
  6369. "homepage": "https://symfony.com/contributors"
  6370. }
  6371. ],
  6372. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6373. "homepage": "https://symfony.com",
  6374. "keywords": [
  6375. "compatibility",
  6376. "polyfill",
  6377. "portable",
  6378. "shim"
  6379. ],
  6380. "support": {
  6381. "source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0"
  6382. },
  6383. "funding": [
  6384. {
  6385. "url": "https://symfony.com/sponsor",
  6386. "type": "custom"
  6387. },
  6388. {
  6389. "url": "https://github.com/fabpot",
  6390. "type": "github"
  6391. },
  6392. {
  6393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6394. "type": "tidelift"
  6395. }
  6396. ],
  6397. "time": "2021-09-13T13:58:11+00:00"
  6398. },
  6399. {
  6400. "name": "symfony/process",
  6401. "version": "v5.4.7",
  6402. "source": {
  6403. "type": "git",
  6404. "url": "https://github.com/symfony/process.git",
  6405. "reference": "38a44b2517b470a436e1c944bf9b9ba3961137fb"
  6406. },
  6407. "dist": {
  6408. "type": "zip",
  6409. "url": "https://api.github.com/repos/symfony/process/zipball/38a44b2517b470a436e1c944bf9b9ba3961137fb",
  6410. "reference": "38a44b2517b470a436e1c944bf9b9ba3961137fb",
  6411. "shasum": "",
  6412. "mirrors": [
  6413. {
  6414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6415. "preferred": true
  6416. }
  6417. ]
  6418. },
  6419. "require": {
  6420. "php": ">=7.2.5",
  6421. "symfony/polyfill-php80": "^1.16"
  6422. },
  6423. "type": "library",
  6424. "autoload": {
  6425. "psr-4": {
  6426. "Symfony\\Component\\Process\\": ""
  6427. },
  6428. "exclude-from-classmap": [
  6429. "/Tests/"
  6430. ]
  6431. },
  6432. "notification-url": "https://packagist.org/downloads/",
  6433. "license": [
  6434. "MIT"
  6435. ],
  6436. "authors": [
  6437. {
  6438. "name": "Fabien Potencier",
  6439. "email": "fabien@symfony.com"
  6440. },
  6441. {
  6442. "name": "Symfony Community",
  6443. "homepage": "https://symfony.com/contributors"
  6444. }
  6445. ],
  6446. "description": "Executes commands in sub-processes",
  6447. "homepage": "https://symfony.com",
  6448. "support": {
  6449. "source": "https://github.com/symfony/process/tree/v5.4.7"
  6450. },
  6451. "funding": [
  6452. {
  6453. "url": "https://symfony.com/sponsor",
  6454. "type": "custom"
  6455. },
  6456. {
  6457. "url": "https://github.com/fabpot",
  6458. "type": "github"
  6459. },
  6460. {
  6461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6462. "type": "tidelift"
  6463. }
  6464. ],
  6465. "time": "2022-03-18T16:18:52+00:00"
  6466. },
  6467. {
  6468. "name": "symfony/routing",
  6469. "version": "v5.4.3",
  6470. "source": {
  6471. "type": "git",
  6472. "url": "https://github.com/symfony/routing.git",
  6473. "reference": "44b29c7a94e867ccde1da604792f11a469958981"
  6474. },
  6475. "dist": {
  6476. "type": "zip",
  6477. "url": "https://api.github.com/repos/symfony/routing/zipball/44b29c7a94e867ccde1da604792f11a469958981",
  6478. "reference": "44b29c7a94e867ccde1da604792f11a469958981",
  6479. "shasum": "",
  6480. "mirrors": [
  6481. {
  6482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6483. "preferred": true
  6484. }
  6485. ]
  6486. },
  6487. "require": {
  6488. "php": ">=7.2.5",
  6489. "symfony/deprecation-contracts": "^2.1|^3",
  6490. "symfony/polyfill-php80": "^1.16"
  6491. },
  6492. "conflict": {
  6493. "doctrine/annotations": "<1.12",
  6494. "symfony/config": "<5.3",
  6495. "symfony/dependency-injection": "<4.4",
  6496. "symfony/yaml": "<4.4"
  6497. },
  6498. "require-dev": {
  6499. "doctrine/annotations": "^1.12",
  6500. "psr/log": "^1|^2|^3",
  6501. "symfony/config": "^5.3|^6.0",
  6502. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6503. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6504. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6505. "symfony/yaml": "^4.4|^5.0|^6.0"
  6506. },
  6507. "suggest": {
  6508. "symfony/config": "For using the all-in-one router or any loader",
  6509. "symfony/expression-language": "For using expression matching",
  6510. "symfony/http-foundation": "For using a Symfony Request object",
  6511. "symfony/yaml": "For using the YAML loader"
  6512. },
  6513. "type": "library",
  6514. "autoload": {
  6515. "psr-4": {
  6516. "Symfony\\Component\\Routing\\": ""
  6517. },
  6518. "exclude-from-classmap": [
  6519. "/Tests/"
  6520. ]
  6521. },
  6522. "notification-url": "https://packagist.org/downloads/",
  6523. "license": [
  6524. "MIT"
  6525. ],
  6526. "authors": [
  6527. {
  6528. "name": "Fabien Potencier",
  6529. "email": "fabien@symfony.com"
  6530. },
  6531. {
  6532. "name": "Symfony Community",
  6533. "homepage": "https://symfony.com/contributors"
  6534. }
  6535. ],
  6536. "description": "Maps an HTTP request to a set of configuration variables",
  6537. "homepage": "https://symfony.com",
  6538. "keywords": [
  6539. "router",
  6540. "routing",
  6541. "uri",
  6542. "url"
  6543. ],
  6544. "support": {
  6545. "source": "https://github.com/symfony/routing/tree/v5.4.3"
  6546. },
  6547. "funding": [
  6548. {
  6549. "url": "https://symfony.com/sponsor",
  6550. "type": "custom"
  6551. },
  6552. {
  6553. "url": "https://github.com/fabpot",
  6554. "type": "github"
  6555. },
  6556. {
  6557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6558. "type": "tidelift"
  6559. }
  6560. ],
  6561. "time": "2022-01-02T09:53:40+00:00"
  6562. },
  6563. {
  6564. "name": "symfony/service-contracts",
  6565. "version": "v2.5.1",
  6566. "source": {
  6567. "type": "git",
  6568. "url": "https://github.com/symfony/service-contracts.git",
  6569. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
  6570. },
  6571. "dist": {
  6572. "type": "zip",
  6573. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  6574. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  6575. "shasum": "",
  6576. "mirrors": [
  6577. {
  6578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6579. "preferred": true
  6580. }
  6581. ]
  6582. },
  6583. "require": {
  6584. "php": ">=7.2.5",
  6585. "psr/container": "^1.1",
  6586. "symfony/deprecation-contracts": "^2.1|^3"
  6587. },
  6588. "conflict": {
  6589. "ext-psr": "<1.1|>=2"
  6590. },
  6591. "suggest": {
  6592. "symfony/service-implementation": ""
  6593. },
  6594. "type": "library",
  6595. "extra": {
  6596. "branch-alias": {
  6597. "dev-main": "2.5-dev"
  6598. },
  6599. "thanks": {
  6600. "name": "symfony/contracts",
  6601. "url": "https://github.com/symfony/contracts"
  6602. }
  6603. },
  6604. "autoload": {
  6605. "psr-4": {
  6606. "Symfony\\Contracts\\Service\\": ""
  6607. }
  6608. },
  6609. "notification-url": "https://packagist.org/downloads/",
  6610. "license": [
  6611. "MIT"
  6612. ],
  6613. "authors": [
  6614. {
  6615. "name": "Nicolas Grekas",
  6616. "email": "p@tchwork.com"
  6617. },
  6618. {
  6619. "name": "Symfony Community",
  6620. "homepage": "https://symfony.com/contributors"
  6621. }
  6622. ],
  6623. "description": "Generic abstractions related to writing services",
  6624. "homepage": "https://symfony.com",
  6625. "keywords": [
  6626. "abstractions",
  6627. "contracts",
  6628. "decoupling",
  6629. "interfaces",
  6630. "interoperability",
  6631. "standards"
  6632. ],
  6633. "support": {
  6634. "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
  6635. },
  6636. "funding": [
  6637. {
  6638. "url": "https://symfony.com/sponsor",
  6639. "type": "custom"
  6640. },
  6641. {
  6642. "url": "https://github.com/fabpot",
  6643. "type": "github"
  6644. },
  6645. {
  6646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6647. "type": "tidelift"
  6648. }
  6649. ],
  6650. "time": "2022-03-13T20:07:29+00:00"
  6651. },
  6652. {
  6653. "name": "symfony/string",
  6654. "version": "v6.0.3",
  6655. "source": {
  6656. "type": "git",
  6657. "url": "https://github.com/symfony/string.git",
  6658. "reference": "522144f0c4c004c80d56fa47e40e17028e2eefc2"
  6659. },
  6660. "dist": {
  6661. "type": "zip",
  6662. "url": "https://api.github.com/repos/symfony/string/zipball/522144f0c4c004c80d56fa47e40e17028e2eefc2",
  6663. "reference": "522144f0c4c004c80d56fa47e40e17028e2eefc2",
  6664. "shasum": "",
  6665. "mirrors": [
  6666. {
  6667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6668. "preferred": true
  6669. }
  6670. ]
  6671. },
  6672. "require": {
  6673. "php": ">=8.0.2",
  6674. "symfony/polyfill-ctype": "~1.8",
  6675. "symfony/polyfill-intl-grapheme": "~1.0",
  6676. "symfony/polyfill-intl-normalizer": "~1.0",
  6677. "symfony/polyfill-mbstring": "~1.0"
  6678. },
  6679. "conflict": {
  6680. "symfony/translation-contracts": "<2.0"
  6681. },
  6682. "require-dev": {
  6683. "symfony/error-handler": "^5.4|^6.0",
  6684. "symfony/http-client": "^5.4|^6.0",
  6685. "symfony/translation-contracts": "^2.0|^3.0",
  6686. "symfony/var-exporter": "^5.4|^6.0"
  6687. },
  6688. "type": "library",
  6689. "autoload": {
  6690. "files": [
  6691. "Resources/functions.php"
  6692. ],
  6693. "psr-4": {
  6694. "Symfony\\Component\\String\\": ""
  6695. },
  6696. "exclude-from-classmap": [
  6697. "/Tests/"
  6698. ]
  6699. },
  6700. "notification-url": "https://packagist.org/downloads/",
  6701. "license": [
  6702. "MIT"
  6703. ],
  6704. "authors": [
  6705. {
  6706. "name": "Nicolas Grekas",
  6707. "email": "p@tchwork.com"
  6708. },
  6709. {
  6710. "name": "Symfony Community",
  6711. "homepage": "https://symfony.com/contributors"
  6712. }
  6713. ],
  6714. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6715. "homepage": "https://symfony.com",
  6716. "keywords": [
  6717. "grapheme",
  6718. "i18n",
  6719. "string",
  6720. "unicode",
  6721. "utf-8",
  6722. "utf8"
  6723. ],
  6724. "support": {
  6725. "source": "https://github.com/symfony/string/tree/v6.0.3"
  6726. },
  6727. "funding": [
  6728. {
  6729. "url": "https://symfony.com/sponsor",
  6730. "type": "custom"
  6731. },
  6732. {
  6733. "url": "https://github.com/fabpot",
  6734. "type": "github"
  6735. },
  6736. {
  6737. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6738. "type": "tidelift"
  6739. }
  6740. ],
  6741. "time": "2022-01-02T09:55:41+00:00"
  6742. },
  6743. {
  6744. "name": "symfony/translation",
  6745. "version": "v6.0.7",
  6746. "source": {
  6747. "type": "git",
  6748. "url": "https://github.com/symfony/translation.git",
  6749. "reference": "b2792b39d74cf41ea3065f27fd2ddf0b556ac7a1"
  6750. },
  6751. "dist": {
  6752. "type": "zip",
  6753. "url": "https://api.github.com/repos/symfony/translation/zipball/b2792b39d74cf41ea3065f27fd2ddf0b556ac7a1",
  6754. "reference": "b2792b39d74cf41ea3065f27fd2ddf0b556ac7a1",
  6755. "shasum": "",
  6756. "mirrors": [
  6757. {
  6758. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6759. "preferred": true
  6760. }
  6761. ]
  6762. },
  6763. "require": {
  6764. "php": ">=8.0.2",
  6765. "symfony/polyfill-mbstring": "~1.0",
  6766. "symfony/translation-contracts": "^2.3|^3.0"
  6767. },
  6768. "conflict": {
  6769. "symfony/config": "<5.4",
  6770. "symfony/console": "<5.4",
  6771. "symfony/dependency-injection": "<5.4",
  6772. "symfony/http-kernel": "<5.4",
  6773. "symfony/twig-bundle": "<5.4",
  6774. "symfony/yaml": "<5.4"
  6775. },
  6776. "provide": {
  6777. "symfony/translation-implementation": "2.3|3.0"
  6778. },
  6779. "require-dev": {
  6780. "psr/log": "^1|^2|^3",
  6781. "symfony/config": "^5.4|^6.0",
  6782. "symfony/console": "^5.4|^6.0",
  6783. "symfony/dependency-injection": "^5.4|^6.0",
  6784. "symfony/finder": "^5.4|^6.0",
  6785. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6786. "symfony/http-kernel": "^5.4|^6.0",
  6787. "symfony/intl": "^5.4|^6.0",
  6788. "symfony/polyfill-intl-icu": "^1.21",
  6789. "symfony/service-contracts": "^1.1.2|^2|^3",
  6790. "symfony/yaml": "^5.4|^6.0"
  6791. },
  6792. "suggest": {
  6793. "psr/log-implementation": "To use logging capability in translator",
  6794. "symfony/config": "",
  6795. "symfony/yaml": ""
  6796. },
  6797. "type": "library",
  6798. "autoload": {
  6799. "files": [
  6800. "Resources/functions.php"
  6801. ],
  6802. "psr-4": {
  6803. "Symfony\\Component\\Translation\\": ""
  6804. },
  6805. "exclude-from-classmap": [
  6806. "/Tests/"
  6807. ]
  6808. },
  6809. "notification-url": "https://packagist.org/downloads/",
  6810. "license": [
  6811. "MIT"
  6812. ],
  6813. "authors": [
  6814. {
  6815. "name": "Fabien Potencier",
  6816. "email": "fabien@symfony.com"
  6817. },
  6818. {
  6819. "name": "Symfony Community",
  6820. "homepage": "https://symfony.com/contributors"
  6821. }
  6822. ],
  6823. "description": "Provides tools to internationalize your application",
  6824. "homepage": "https://symfony.com",
  6825. "support": {
  6826. "source": "https://github.com/symfony/translation/tree/v6.0.7"
  6827. },
  6828. "funding": [
  6829. {
  6830. "url": "https://symfony.com/sponsor",
  6831. "type": "custom"
  6832. },
  6833. {
  6834. "url": "https://github.com/fabpot",
  6835. "type": "github"
  6836. },
  6837. {
  6838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6839. "type": "tidelift"
  6840. }
  6841. ],
  6842. "time": "2022-03-31T17:18:25+00:00"
  6843. },
  6844. {
  6845. "name": "symfony/translation-contracts",
  6846. "version": "v3.0.0",
  6847. "source": {
  6848. "type": "git",
  6849. "url": "https://github.com/symfony/translation-contracts.git",
  6850. "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77"
  6851. },
  6852. "dist": {
  6853. "type": "zip",
  6854. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",
  6855. "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",
  6856. "shasum": "",
  6857. "mirrors": [
  6858. {
  6859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6860. "preferred": true
  6861. }
  6862. ]
  6863. },
  6864. "require": {
  6865. "php": ">=8.0.2"
  6866. },
  6867. "suggest": {
  6868. "symfony/translation-implementation": ""
  6869. },
  6870. "type": "library",
  6871. "extra": {
  6872. "branch-alias": {
  6873. "dev-main": "3.0-dev"
  6874. },
  6875. "thanks": {
  6876. "name": "symfony/contracts",
  6877. "url": "https://github.com/symfony/contracts"
  6878. }
  6879. },
  6880. "autoload": {
  6881. "psr-4": {
  6882. "Symfony\\Contracts\\Translation\\": ""
  6883. }
  6884. },
  6885. "notification-url": "https://packagist.org/downloads/",
  6886. "license": [
  6887. "MIT"
  6888. ],
  6889. "authors": [
  6890. {
  6891. "name": "Nicolas Grekas",
  6892. "email": "p@tchwork.com"
  6893. },
  6894. {
  6895. "name": "Symfony Community",
  6896. "homepage": "https://symfony.com/contributors"
  6897. }
  6898. ],
  6899. "description": "Generic abstractions related to translation",
  6900. "homepage": "https://symfony.com",
  6901. "keywords": [
  6902. "abstractions",
  6903. "contracts",
  6904. "decoupling",
  6905. "interfaces",
  6906. "interoperability",
  6907. "standards"
  6908. ],
  6909. "support": {
  6910. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.0"
  6911. },
  6912. "funding": [
  6913. {
  6914. "url": "https://symfony.com/sponsor",
  6915. "type": "custom"
  6916. },
  6917. {
  6918. "url": "https://github.com/fabpot",
  6919. "type": "github"
  6920. },
  6921. {
  6922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6923. "type": "tidelift"
  6924. }
  6925. ],
  6926. "time": "2021-09-07T12:43:40+00:00"
  6927. },
  6928. {
  6929. "name": "symfony/var-dumper",
  6930. "version": "v5.4.6",
  6931. "source": {
  6932. "type": "git",
  6933. "url": "https://github.com/symfony/var-dumper.git",
  6934. "reference": "294e9da6e2e0dd404e983daa5aa74253d92c05d0"
  6935. },
  6936. "dist": {
  6937. "type": "zip",
  6938. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/294e9da6e2e0dd404e983daa5aa74253d92c05d0",
  6939. "reference": "294e9da6e2e0dd404e983daa5aa74253d92c05d0",
  6940. "shasum": "",
  6941. "mirrors": [
  6942. {
  6943. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6944. "preferred": true
  6945. }
  6946. ]
  6947. },
  6948. "require": {
  6949. "php": ">=7.2.5",
  6950. "symfony/polyfill-mbstring": "~1.0",
  6951. "symfony/polyfill-php80": "^1.16"
  6952. },
  6953. "conflict": {
  6954. "phpunit/phpunit": "<5.4.3",
  6955. "symfony/console": "<4.4"
  6956. },
  6957. "require-dev": {
  6958. "ext-iconv": "*",
  6959. "symfony/console": "^4.4|^5.0|^6.0",
  6960. "symfony/process": "^4.4|^5.0|^6.0",
  6961. "symfony/uid": "^5.1|^6.0",
  6962. "twig/twig": "^2.13|^3.0.4"
  6963. },
  6964. "suggest": {
  6965. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6966. "ext-intl": "To show region name in time zone dump",
  6967. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6968. },
  6969. "bin": [
  6970. "Resources/bin/var-dump-server"
  6971. ],
  6972. "type": "library",
  6973. "autoload": {
  6974. "files": [
  6975. "Resources/functions/dump.php"
  6976. ],
  6977. "psr-4": {
  6978. "Symfony\\Component\\VarDumper\\": ""
  6979. },
  6980. "exclude-from-classmap": [
  6981. "/Tests/"
  6982. ]
  6983. },
  6984. "notification-url": "https://packagist.org/downloads/",
  6985. "license": [
  6986. "MIT"
  6987. ],
  6988. "authors": [
  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": "Provides mechanisms for walking through any arbitrary PHP variable",
  6999. "homepage": "https://symfony.com",
  7000. "keywords": [
  7001. "debug",
  7002. "dump"
  7003. ],
  7004. "support": {
  7005. "source": "https://github.com/symfony/var-dumper/tree/v5.4.6"
  7006. },
  7007. "funding": [
  7008. {
  7009. "url": "https://symfony.com/sponsor",
  7010. "type": "custom"
  7011. },
  7012. {
  7013. "url": "https://github.com/fabpot",
  7014. "type": "github"
  7015. },
  7016. {
  7017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7018. "type": "tidelift"
  7019. }
  7020. ],
  7021. "time": "2022-03-02T12:42:23+00:00"
  7022. },
  7023. {
  7024. "name": "tijsverkoyen/css-to-inline-styles",
  7025. "version": "2.2.4",
  7026. "source": {
  7027. "type": "git",
  7028. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7029. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  7030. },
  7031. "dist": {
  7032. "type": "zip",
  7033. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  7034. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  7035. "shasum": "",
  7036. "mirrors": [
  7037. {
  7038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7039. "preferred": true
  7040. }
  7041. ]
  7042. },
  7043. "require": {
  7044. "ext-dom": "*",
  7045. "ext-libxml": "*",
  7046. "php": "^5.5 || ^7.0 || ^8.0",
  7047. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7048. },
  7049. "require-dev": {
  7050. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7051. },
  7052. "type": "library",
  7053. "extra": {
  7054. "branch-alias": {
  7055. "dev-master": "2.2.x-dev"
  7056. }
  7057. },
  7058. "autoload": {
  7059. "psr-4": {
  7060. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7061. }
  7062. },
  7063. "notification-url": "https://packagist.org/downloads/",
  7064. "license": [
  7065. "BSD-3-Clause"
  7066. ],
  7067. "authors": [
  7068. {
  7069. "name": "Tijs Verkoyen",
  7070. "email": "css_to_inline_styles@verkoyen.eu",
  7071. "role": "Developer"
  7072. }
  7073. ],
  7074. "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.",
  7075. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7076. "support": {
  7077. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7078. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  7079. },
  7080. "time": "2021-12-08T09:12:39+00:00"
  7081. },
  7082. {
  7083. "name": "vlucas/phpdotenv",
  7084. "version": "v5.4.1",
  7085. "source": {
  7086. "type": "git",
  7087. "url": "https://github.com/vlucas/phpdotenv.git",
  7088. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  7089. },
  7090. "dist": {
  7091. "type": "zip",
  7092. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7093. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7094. "shasum": "",
  7095. "mirrors": [
  7096. {
  7097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7098. "preferred": true
  7099. }
  7100. ]
  7101. },
  7102. "require": {
  7103. "ext-pcre": "*",
  7104. "graham-campbell/result-type": "^1.0.2",
  7105. "php": "^7.1.3 || ^8.0",
  7106. "phpoption/phpoption": "^1.8",
  7107. "symfony/polyfill-ctype": "^1.23",
  7108. "symfony/polyfill-mbstring": "^1.23.1",
  7109. "symfony/polyfill-php80": "^1.23.1"
  7110. },
  7111. "require-dev": {
  7112. "bamarni/composer-bin-plugin": "^1.4.1",
  7113. "ext-filter": "*",
  7114. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  7115. },
  7116. "suggest": {
  7117. "ext-filter": "Required to use the boolean validator."
  7118. },
  7119. "type": "library",
  7120. "extra": {
  7121. "branch-alias": {
  7122. "dev-master": "5.4-dev"
  7123. }
  7124. },
  7125. "autoload": {
  7126. "psr-4": {
  7127. "Dotenv\\": "src/"
  7128. }
  7129. },
  7130. "notification-url": "https://packagist.org/downloads/",
  7131. "license": [
  7132. "BSD-3-Clause"
  7133. ],
  7134. "authors": [
  7135. {
  7136. "name": "Graham Campbell",
  7137. "email": "hello@gjcampbell.co.uk",
  7138. "homepage": "https://github.com/GrahamCampbell"
  7139. },
  7140. {
  7141. "name": "Vance Lucas",
  7142. "email": "vance@vancelucas.com",
  7143. "homepage": "https://github.com/vlucas"
  7144. }
  7145. ],
  7146. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7147. "keywords": [
  7148. "dotenv",
  7149. "env",
  7150. "environment"
  7151. ],
  7152. "support": {
  7153. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7154. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  7155. },
  7156. "funding": [
  7157. {
  7158. "url": "https://github.com/GrahamCampbell",
  7159. "type": "github"
  7160. },
  7161. {
  7162. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7163. "type": "tidelift"
  7164. }
  7165. ],
  7166. "time": "2021-12-12T23:22:04+00:00"
  7167. },
  7168. {
  7169. "name": "voku/portable-ascii",
  7170. "version": "1.6.1",
  7171. "source": {
  7172. "type": "git",
  7173. "url": "https://github.com/voku/portable-ascii.git",
  7174. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7175. },
  7176. "dist": {
  7177. "type": "zip",
  7178. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7179. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7180. "shasum": "",
  7181. "mirrors": [
  7182. {
  7183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7184. "preferred": true
  7185. }
  7186. ]
  7187. },
  7188. "require": {
  7189. "php": ">=7.0.0"
  7190. },
  7191. "require-dev": {
  7192. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7193. },
  7194. "suggest": {
  7195. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7196. },
  7197. "type": "library",
  7198. "autoload": {
  7199. "psr-4": {
  7200. "voku\\": "src/voku/"
  7201. }
  7202. },
  7203. "notification-url": "https://packagist.org/downloads/",
  7204. "license": [
  7205. "MIT"
  7206. ],
  7207. "authors": [
  7208. {
  7209. "name": "Lars Moelleken",
  7210. "homepage": "http://www.moelleken.org/"
  7211. }
  7212. ],
  7213. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7214. "homepage": "https://github.com/voku/portable-ascii",
  7215. "keywords": [
  7216. "ascii",
  7217. "clean",
  7218. "php"
  7219. ],
  7220. "support": {
  7221. "issues": "https://github.com/voku/portable-ascii/issues",
  7222. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7223. },
  7224. "funding": [
  7225. {
  7226. "url": "https://www.paypal.me/moelleken",
  7227. "type": "custom"
  7228. },
  7229. {
  7230. "url": "https://github.com/voku",
  7231. "type": "github"
  7232. },
  7233. {
  7234. "url": "https://opencollective.com/portable-ascii",
  7235. "type": "open_collective"
  7236. },
  7237. {
  7238. "url": "https://www.patreon.com/voku",
  7239. "type": "patreon"
  7240. },
  7241. {
  7242. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7243. "type": "tidelift"
  7244. }
  7245. ],
  7246. "time": "2022-01-24T18:55:24+00:00"
  7247. },
  7248. {
  7249. "name": "webmozart/assert",
  7250. "version": "1.10.0",
  7251. "source": {
  7252. "type": "git",
  7253. "url": "https://github.com/webmozarts/assert.git",
  7254. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  7255. },
  7256. "dist": {
  7257. "type": "zip",
  7258. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  7259. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  7260. "shasum": "",
  7261. "mirrors": [
  7262. {
  7263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7264. "preferred": true
  7265. }
  7266. ]
  7267. },
  7268. "require": {
  7269. "php": "^7.2 || ^8.0",
  7270. "symfony/polyfill-ctype": "^1.8"
  7271. },
  7272. "conflict": {
  7273. "phpstan/phpstan": "<0.12.20",
  7274. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7275. },
  7276. "require-dev": {
  7277. "phpunit/phpunit": "^8.5.13"
  7278. },
  7279. "type": "library",
  7280. "extra": {
  7281. "branch-alias": {
  7282. "dev-master": "1.10-dev"
  7283. }
  7284. },
  7285. "autoload": {
  7286. "psr-4": {
  7287. "Webmozart\\Assert\\": "src/"
  7288. }
  7289. },
  7290. "notification-url": "https://packagist.org/downloads/",
  7291. "license": [
  7292. "MIT"
  7293. ],
  7294. "authors": [
  7295. {
  7296. "name": "Bernhard Schussek",
  7297. "email": "bschussek@gmail.com"
  7298. }
  7299. ],
  7300. "description": "Assertions to validate method input/output with nice error messages.",
  7301. "keywords": [
  7302. "assert",
  7303. "check",
  7304. "validate"
  7305. ],
  7306. "support": {
  7307. "issues": "https://github.com/webmozarts/assert/issues",
  7308. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  7309. },
  7310. "time": "2021-03-09T10:59:23+00:00"
  7311. }
  7312. ],
  7313. "packages-dev": [
  7314. {
  7315. "name": "barryvdh/laravel-ide-helper",
  7316. "version": "v2.12.3",
  7317. "source": {
  7318. "type": "git",
  7319. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7320. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550"
  7321. },
  7322. "dist": {
  7323. "type": "zip",
  7324. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  7325. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  7326. "shasum": "",
  7327. "mirrors": [
  7328. {
  7329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7330. "preferred": true
  7331. }
  7332. ]
  7333. },
  7334. "require": {
  7335. "barryvdh/reflection-docblock": "^2.0.6",
  7336. "composer/pcre": "^1 || ^2 || ^3",
  7337. "doctrine/dbal": "^2.6 || ^3",
  7338. "ext-json": "*",
  7339. "illuminate/console": "^8 || ^9",
  7340. "illuminate/filesystem": "^8 || ^9",
  7341. "illuminate/support": "^8 || ^9",
  7342. "nikic/php-parser": "^4.7",
  7343. "php": "^7.3 || ^8.0",
  7344. "phpdocumentor/type-resolver": "^1.1.0"
  7345. },
  7346. "require-dev": {
  7347. "ext-pdo_sqlite": "*",
  7348. "friendsofphp/php-cs-fixer": "^2",
  7349. "illuminate/config": "^8 || ^9",
  7350. "illuminate/view": "^8 || ^9",
  7351. "mockery/mockery": "^1.4",
  7352. "orchestra/testbench": "^6 || ^7",
  7353. "phpunit/phpunit": "^8.5 || ^9",
  7354. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  7355. "vimeo/psalm": "^3.12"
  7356. },
  7357. "suggest": {
  7358. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
  7359. },
  7360. "type": "library",
  7361. "extra": {
  7362. "branch-alias": {
  7363. "dev-master": "2.12-dev"
  7364. },
  7365. "laravel": {
  7366. "providers": [
  7367. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7368. ]
  7369. }
  7370. },
  7371. "autoload": {
  7372. "psr-4": {
  7373. "Barryvdh\\LaravelIdeHelper\\": "src"
  7374. }
  7375. },
  7376. "notification-url": "https://packagist.org/downloads/",
  7377. "license": [
  7378. "MIT"
  7379. ],
  7380. "authors": [
  7381. {
  7382. "name": "Barry vd. Heuvel",
  7383. "email": "barryvdh@gmail.com"
  7384. }
  7385. ],
  7386. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7387. "keywords": [
  7388. "autocomplete",
  7389. "codeintel",
  7390. "helper",
  7391. "ide",
  7392. "laravel",
  7393. "netbeans",
  7394. "phpdoc",
  7395. "phpstorm",
  7396. "sublime"
  7397. ],
  7398. "support": {
  7399. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7400. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.12.3"
  7401. },
  7402. "funding": [
  7403. {
  7404. "url": "https://fruitcake.nl",
  7405. "type": "custom"
  7406. },
  7407. {
  7408. "url": "https://github.com/barryvdh",
  7409. "type": "github"
  7410. }
  7411. ],
  7412. "time": "2022-03-06T14:33:42+00:00"
  7413. },
  7414. {
  7415. "name": "barryvdh/reflection-docblock",
  7416. "version": "v2.0.6",
  7417. "source": {
  7418. "type": "git",
  7419. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7420. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7421. },
  7422. "dist": {
  7423. "type": "zip",
  7424. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7425. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7426. "shasum": "",
  7427. "mirrors": [
  7428. {
  7429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7430. "preferred": true
  7431. }
  7432. ]
  7433. },
  7434. "require": {
  7435. "php": ">=5.3.3"
  7436. },
  7437. "require-dev": {
  7438. "phpunit/phpunit": "~4.0,<4.5"
  7439. },
  7440. "suggest": {
  7441. "dflydev/markdown": "~1.0",
  7442. "erusev/parsedown": "~1.0"
  7443. },
  7444. "type": "library",
  7445. "extra": {
  7446. "branch-alias": {
  7447. "dev-master": "2.0.x-dev"
  7448. }
  7449. },
  7450. "autoload": {
  7451. "psr-0": {
  7452. "Barryvdh": [
  7453. "src/"
  7454. ]
  7455. }
  7456. },
  7457. "notification-url": "https://packagist.org/downloads/",
  7458. "license": [
  7459. "MIT"
  7460. ],
  7461. "authors": [
  7462. {
  7463. "name": "Mike van Riel",
  7464. "email": "mike.vanriel@naenius.com"
  7465. }
  7466. ],
  7467. "support": {
  7468. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  7469. },
  7470. "time": "2018-12-13T10:34:14+00:00"
  7471. },
  7472. {
  7473. "name": "composer/pcre",
  7474. "version": "3.0.0",
  7475. "source": {
  7476. "type": "git",
  7477. "url": "https://github.com/composer/pcre.git",
  7478. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd"
  7479. },
  7480. "dist": {
  7481. "type": "zip",
  7482. "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  7483. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  7484. "shasum": "",
  7485. "mirrors": [
  7486. {
  7487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7488. "preferred": true
  7489. }
  7490. ]
  7491. },
  7492. "require": {
  7493. "php": "^7.4 || ^8.0"
  7494. },
  7495. "require-dev": {
  7496. "phpstan/phpstan": "^1.3",
  7497. "phpstan/phpstan-strict-rules": "^1.1",
  7498. "symfony/phpunit-bridge": "^5"
  7499. },
  7500. "type": "library",
  7501. "extra": {
  7502. "branch-alias": {
  7503. "dev-main": "3.x-dev"
  7504. }
  7505. },
  7506. "autoload": {
  7507. "psr-4": {
  7508. "Composer\\Pcre\\": "src"
  7509. }
  7510. },
  7511. "notification-url": "https://packagist.org/downloads/",
  7512. "license": [
  7513. "MIT"
  7514. ],
  7515. "authors": [
  7516. {
  7517. "name": "Jordi Boggiano",
  7518. "email": "j.boggiano@seld.be",
  7519. "homepage": "http://seld.be"
  7520. }
  7521. ],
  7522. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7523. "keywords": [
  7524. "PCRE",
  7525. "preg",
  7526. "regex",
  7527. "regular expression"
  7528. ],
  7529. "support": {
  7530. "issues": "https://github.com/composer/pcre/issues",
  7531. "source": "https://github.com/composer/pcre/tree/3.0.0"
  7532. },
  7533. "funding": [
  7534. {
  7535. "url": "https://packagist.com",
  7536. "type": "custom"
  7537. },
  7538. {
  7539. "url": "https://github.com/composer",
  7540. "type": "github"
  7541. },
  7542. {
  7543. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7544. "type": "tidelift"
  7545. }
  7546. ],
  7547. "time": "2022-02-25T20:21:48+00:00"
  7548. },
  7549. {
  7550. "name": "doctrine/cache",
  7551. "version": "2.1.1",
  7552. "source": {
  7553. "type": "git",
  7554. "url": "https://github.com/doctrine/cache.git",
  7555. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  7556. },
  7557. "dist": {
  7558. "type": "zip",
  7559. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  7560. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  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.1 || ^8.0"
  7571. },
  7572. "conflict": {
  7573. "doctrine/common": ">2.2,<2.4"
  7574. },
  7575. "require-dev": {
  7576. "alcaeus/mongo-php-adapter": "^1.1",
  7577. "cache/integration-tests": "dev-master",
  7578. "doctrine/coding-standard": "^8.0",
  7579. "mongodb/mongodb": "^1.1",
  7580. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  7581. "predis/predis": "~1.0",
  7582. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  7583. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  7584. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  7585. },
  7586. "suggest": {
  7587. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  7588. },
  7589. "type": "library",
  7590. "autoload": {
  7591. "psr-4": {
  7592. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  7593. }
  7594. },
  7595. "notification-url": "https://packagist.org/downloads/",
  7596. "license": [
  7597. "MIT"
  7598. ],
  7599. "authors": [
  7600. {
  7601. "name": "Guilherme Blanco",
  7602. "email": "guilhermeblanco@gmail.com"
  7603. },
  7604. {
  7605. "name": "Roman Borschel",
  7606. "email": "roman@code-factory.org"
  7607. },
  7608. {
  7609. "name": "Benjamin Eberlei",
  7610. "email": "kontakt@beberlei.de"
  7611. },
  7612. {
  7613. "name": "Jonathan Wage",
  7614. "email": "jonwage@gmail.com"
  7615. },
  7616. {
  7617. "name": "Johannes Schmitt",
  7618. "email": "schmittjoh@gmail.com"
  7619. }
  7620. ],
  7621. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  7622. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  7623. "keywords": [
  7624. "abstraction",
  7625. "apcu",
  7626. "cache",
  7627. "caching",
  7628. "couchdb",
  7629. "memcached",
  7630. "php",
  7631. "redis",
  7632. "xcache"
  7633. ],
  7634. "support": {
  7635. "issues": "https://github.com/doctrine/cache/issues",
  7636. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  7637. },
  7638. "funding": [
  7639. {
  7640. "url": "https://www.doctrine-project.org/sponsorship.html",
  7641. "type": "custom"
  7642. },
  7643. {
  7644. "url": "https://www.patreon.com/phpdoctrine",
  7645. "type": "patreon"
  7646. },
  7647. {
  7648. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  7649. "type": "tidelift"
  7650. }
  7651. ],
  7652. "time": "2021-07-17T14:49:29+00:00"
  7653. },
  7654. {
  7655. "name": "doctrine/dbal",
  7656. "version": "3.3.5",
  7657. "source": {
  7658. "type": "git",
  7659. "url": "https://github.com/doctrine/dbal.git",
  7660. "reference": "719663b15983278227669c8595151586a2ff3327"
  7661. },
  7662. "dist": {
  7663. "type": "zip",
  7664. "url": "https://api.github.com/repos/doctrine/dbal/zipball/719663b15983278227669c8595151586a2ff3327",
  7665. "reference": "719663b15983278227669c8595151586a2ff3327",
  7666. "shasum": "",
  7667. "mirrors": [
  7668. {
  7669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7670. "preferred": true
  7671. }
  7672. ]
  7673. },
  7674. "require": {
  7675. "composer-runtime-api": "^2",
  7676. "doctrine/cache": "^1.11|^2.0",
  7677. "doctrine/deprecations": "^0.5.3",
  7678. "doctrine/event-manager": "^1.0",
  7679. "php": "^7.3 || ^8.0",
  7680. "psr/cache": "^1|^2|^3",
  7681. "psr/log": "^1|^2|^3"
  7682. },
  7683. "require-dev": {
  7684. "doctrine/coding-standard": "9.0.0",
  7685. "jetbrains/phpstorm-stubs": "2021.1",
  7686. "phpstan/phpstan": "1.5.3",
  7687. "phpstan/phpstan-strict-rules": "^1.1",
  7688. "phpunit/phpunit": "9.5.16",
  7689. "psalm/plugin-phpunit": "0.16.1",
  7690. "squizlabs/php_codesniffer": "3.6.2",
  7691. "symfony/cache": "^5.2|^6.0",
  7692. "symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
  7693. "vimeo/psalm": "4.22.0"
  7694. },
  7695. "suggest": {
  7696. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  7697. },
  7698. "bin": [
  7699. "bin/doctrine-dbal"
  7700. ],
  7701. "type": "library",
  7702. "autoload": {
  7703. "psr-4": {
  7704. "Doctrine\\DBAL\\": "src"
  7705. }
  7706. },
  7707. "notification-url": "https://packagist.org/downloads/",
  7708. "license": [
  7709. "MIT"
  7710. ],
  7711. "authors": [
  7712. {
  7713. "name": "Guilherme Blanco",
  7714. "email": "guilhermeblanco@gmail.com"
  7715. },
  7716. {
  7717. "name": "Roman Borschel",
  7718. "email": "roman@code-factory.org"
  7719. },
  7720. {
  7721. "name": "Benjamin Eberlei",
  7722. "email": "kontakt@beberlei.de"
  7723. },
  7724. {
  7725. "name": "Jonathan Wage",
  7726. "email": "jonwage@gmail.com"
  7727. }
  7728. ],
  7729. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7730. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7731. "keywords": [
  7732. "abstraction",
  7733. "database",
  7734. "db2",
  7735. "dbal",
  7736. "mariadb",
  7737. "mssql",
  7738. "mysql",
  7739. "oci8",
  7740. "oracle",
  7741. "pdo",
  7742. "pgsql",
  7743. "postgresql",
  7744. "queryobject",
  7745. "sasql",
  7746. "sql",
  7747. "sqlite",
  7748. "sqlserver",
  7749. "sqlsrv"
  7750. ],
  7751. "support": {
  7752. "issues": "https://github.com/doctrine/dbal/issues",
  7753. "source": "https://github.com/doctrine/dbal/tree/3.3.5"
  7754. },
  7755. "funding": [
  7756. {
  7757. "url": "https://www.doctrine-project.org/sponsorship.html",
  7758. "type": "custom"
  7759. },
  7760. {
  7761. "url": "https://www.patreon.com/phpdoctrine",
  7762. "type": "patreon"
  7763. },
  7764. {
  7765. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7766. "type": "tidelift"
  7767. }
  7768. ],
  7769. "time": "2022-04-05T09:50:18+00:00"
  7770. },
  7771. {
  7772. "name": "doctrine/deprecations",
  7773. "version": "v0.5.3",
  7774. "source": {
  7775. "type": "git",
  7776. "url": "https://github.com/doctrine/deprecations.git",
  7777. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  7778. },
  7779. "dist": {
  7780. "type": "zip",
  7781. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  7782. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  7783. "shasum": "",
  7784. "mirrors": [
  7785. {
  7786. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7787. "preferred": true
  7788. }
  7789. ]
  7790. },
  7791. "require": {
  7792. "php": "^7.1|^8.0"
  7793. },
  7794. "require-dev": {
  7795. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  7796. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  7797. "psr/log": "^1.0"
  7798. },
  7799. "suggest": {
  7800. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  7801. },
  7802. "type": "library",
  7803. "autoload": {
  7804. "psr-4": {
  7805. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  7806. }
  7807. },
  7808. "notification-url": "https://packagist.org/downloads/",
  7809. "license": [
  7810. "MIT"
  7811. ],
  7812. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  7813. "homepage": "https://www.doctrine-project.org/",
  7814. "support": {
  7815. "issues": "https://github.com/doctrine/deprecations/issues",
  7816. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  7817. },
  7818. "time": "2021-03-21T12:59:47+00:00"
  7819. },
  7820. {
  7821. "name": "doctrine/event-manager",
  7822. "version": "1.1.1",
  7823. "source": {
  7824. "type": "git",
  7825. "url": "https://github.com/doctrine/event-manager.git",
  7826. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  7827. },
  7828. "dist": {
  7829. "type": "zip",
  7830. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7831. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7832. "shasum": "",
  7833. "mirrors": [
  7834. {
  7835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7836. "preferred": true
  7837. }
  7838. ]
  7839. },
  7840. "require": {
  7841. "php": "^7.1 || ^8.0"
  7842. },
  7843. "conflict": {
  7844. "doctrine/common": "<2.9@dev"
  7845. },
  7846. "require-dev": {
  7847. "doctrine/coding-standard": "^6.0",
  7848. "phpunit/phpunit": "^7.0"
  7849. },
  7850. "type": "library",
  7851. "extra": {
  7852. "branch-alias": {
  7853. "dev-master": "1.0.x-dev"
  7854. }
  7855. },
  7856. "autoload": {
  7857. "psr-4": {
  7858. "Doctrine\\Common\\": "lib/Doctrine/Common"
  7859. }
  7860. },
  7861. "notification-url": "https://packagist.org/downloads/",
  7862. "license": [
  7863. "MIT"
  7864. ],
  7865. "authors": [
  7866. {
  7867. "name": "Guilherme Blanco",
  7868. "email": "guilhermeblanco@gmail.com"
  7869. },
  7870. {
  7871. "name": "Roman Borschel",
  7872. "email": "roman@code-factory.org"
  7873. },
  7874. {
  7875. "name": "Benjamin Eberlei",
  7876. "email": "kontakt@beberlei.de"
  7877. },
  7878. {
  7879. "name": "Jonathan Wage",
  7880. "email": "jonwage@gmail.com"
  7881. },
  7882. {
  7883. "name": "Johannes Schmitt",
  7884. "email": "schmittjoh@gmail.com"
  7885. },
  7886. {
  7887. "name": "Marco Pivetta",
  7888. "email": "ocramius@gmail.com"
  7889. }
  7890. ],
  7891. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  7892. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  7893. "keywords": [
  7894. "event",
  7895. "event dispatcher",
  7896. "event manager",
  7897. "event system",
  7898. "events"
  7899. ],
  7900. "support": {
  7901. "issues": "https://github.com/doctrine/event-manager/issues",
  7902. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  7903. },
  7904. "funding": [
  7905. {
  7906. "url": "https://www.doctrine-project.org/sponsorship.html",
  7907. "type": "custom"
  7908. },
  7909. {
  7910. "url": "https://www.patreon.com/phpdoctrine",
  7911. "type": "patreon"
  7912. },
  7913. {
  7914. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  7915. "type": "tidelift"
  7916. }
  7917. ],
  7918. "time": "2020-05-29T18:28:51+00:00"
  7919. },
  7920. {
  7921. "name": "doctrine/instantiator",
  7922. "version": "1.4.1",
  7923. "source": {
  7924. "type": "git",
  7925. "url": "https://github.com/doctrine/instantiator.git",
  7926. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  7927. },
  7928. "dist": {
  7929. "type": "zip",
  7930. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  7931. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  7932. "shasum": "",
  7933. "mirrors": [
  7934. {
  7935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7936. "preferred": true
  7937. }
  7938. ]
  7939. },
  7940. "require": {
  7941. "php": "^7.1 || ^8.0"
  7942. },
  7943. "require-dev": {
  7944. "doctrine/coding-standard": "^9",
  7945. "ext-pdo": "*",
  7946. "ext-phar": "*",
  7947. "phpbench/phpbench": "^0.16 || ^1",
  7948. "phpstan/phpstan": "^1.4",
  7949. "phpstan/phpstan-phpunit": "^1",
  7950. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7951. "vimeo/psalm": "^4.22"
  7952. },
  7953. "type": "library",
  7954. "autoload": {
  7955. "psr-4": {
  7956. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7957. }
  7958. },
  7959. "notification-url": "https://packagist.org/downloads/",
  7960. "license": [
  7961. "MIT"
  7962. ],
  7963. "authors": [
  7964. {
  7965. "name": "Marco Pivetta",
  7966. "email": "ocramius@gmail.com",
  7967. "homepage": "https://ocramius.github.io/"
  7968. }
  7969. ],
  7970. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7971. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7972. "keywords": [
  7973. "constructor",
  7974. "instantiate"
  7975. ],
  7976. "support": {
  7977. "issues": "https://github.com/doctrine/instantiator/issues",
  7978. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  7979. },
  7980. "funding": [
  7981. {
  7982. "url": "https://www.doctrine-project.org/sponsorship.html",
  7983. "type": "custom"
  7984. },
  7985. {
  7986. "url": "https://www.patreon.com/phpdoctrine",
  7987. "type": "patreon"
  7988. },
  7989. {
  7990. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7991. "type": "tidelift"
  7992. }
  7993. ],
  7994. "time": "2022-03-03T08:28:38+00:00"
  7995. },
  7996. {
  7997. "name": "facade/flare-client-php",
  7998. "version": "1.9.1",
  7999. "source": {
  8000. "type": "git",
  8001. "url": "https://github.com/facade/flare-client-php.git",
  8002. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  8003. },
  8004. "dist": {
  8005. "type": "zip",
  8006. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  8007. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  8008. "shasum": "",
  8009. "mirrors": [
  8010. {
  8011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8012. "preferred": true
  8013. }
  8014. ]
  8015. },
  8016. "require": {
  8017. "facade/ignition-contracts": "~1.0",
  8018. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8019. "php": "^7.1|^8.0",
  8020. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8021. "symfony/mime": "^3.4|^4.0|^5.1",
  8022. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8023. },
  8024. "require-dev": {
  8025. "friendsofphp/php-cs-fixer": "^2.14",
  8026. "phpunit/phpunit": "^7.5.16",
  8027. "spatie/phpunit-snapshot-assertions": "^2.0"
  8028. },
  8029. "type": "library",
  8030. "extra": {
  8031. "branch-alias": {
  8032. "dev-master": "1.0-dev"
  8033. }
  8034. },
  8035. "autoload": {
  8036. "files": [
  8037. "src/helpers.php"
  8038. ],
  8039. "psr-4": {
  8040. "Facade\\FlareClient\\": "src"
  8041. }
  8042. },
  8043. "notification-url": "https://packagist.org/downloads/",
  8044. "license": [
  8045. "MIT"
  8046. ],
  8047. "description": "Send PHP errors to Flare",
  8048. "homepage": "https://github.com/facade/flare-client-php",
  8049. "keywords": [
  8050. "exception",
  8051. "facade",
  8052. "flare",
  8053. "reporting"
  8054. ],
  8055. "support": {
  8056. "issues": "https://github.com/facade/flare-client-php/issues",
  8057. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  8058. },
  8059. "funding": [
  8060. {
  8061. "url": "https://github.com/spatie",
  8062. "type": "github"
  8063. }
  8064. ],
  8065. "time": "2021-09-13T12:16:46+00:00"
  8066. },
  8067. {
  8068. "name": "facade/ignition",
  8069. "version": "2.17.5",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/facade/ignition.git",
  8073. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/facade/ignition/zipball/1d71996f83c9a5a7807331b8986ac890352b7a0c",
  8078. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c",
  8079. "shasum": "",
  8080. "mirrors": [
  8081. {
  8082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8083. "preferred": true
  8084. }
  8085. ]
  8086. },
  8087. "require": {
  8088. "ext-curl": "*",
  8089. "ext-json": "*",
  8090. "ext-mbstring": "*",
  8091. "facade/flare-client-php": "^1.9.1",
  8092. "facade/ignition-contracts": "^1.0.2",
  8093. "illuminate/support": "^7.0|^8.0",
  8094. "monolog/monolog": "^2.0",
  8095. "php": "^7.2.5|^8.0",
  8096. "symfony/console": "^5.0",
  8097. "symfony/var-dumper": "^5.0"
  8098. },
  8099. "require-dev": {
  8100. "friendsofphp/php-cs-fixer": "^2.14",
  8101. "livewire/livewire": "^2.4",
  8102. "mockery/mockery": "^1.3",
  8103. "orchestra/testbench": "^5.0|^6.0",
  8104. "psalm/plugin-laravel": "^1.2"
  8105. },
  8106. "suggest": {
  8107. "laravel/telescope": "^3.1"
  8108. },
  8109. "type": "library",
  8110. "extra": {
  8111. "branch-alias": {
  8112. "dev-master": "2.x-dev"
  8113. },
  8114. "laravel": {
  8115. "providers": [
  8116. "Facade\\Ignition\\IgnitionServiceProvider"
  8117. ],
  8118. "aliases": {
  8119. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8120. }
  8121. }
  8122. },
  8123. "autoload": {
  8124. "files": [
  8125. "src/helpers.php"
  8126. ],
  8127. "psr-4": {
  8128. "Facade\\Ignition\\": "src"
  8129. }
  8130. },
  8131. "notification-url": "https://packagist.org/downloads/",
  8132. "license": [
  8133. "MIT"
  8134. ],
  8135. "description": "A beautiful error page for Laravel applications.",
  8136. "homepage": "https://github.com/facade/ignition",
  8137. "keywords": [
  8138. "error",
  8139. "flare",
  8140. "laravel",
  8141. "page"
  8142. ],
  8143. "support": {
  8144. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8145. "forum": "https://twitter.com/flareappio",
  8146. "issues": "https://github.com/facade/ignition/issues",
  8147. "source": "https://github.com/facade/ignition"
  8148. },
  8149. "time": "2022-02-23T18:31:24+00:00"
  8150. },
  8151. {
  8152. "name": "facade/ignition-contracts",
  8153. "version": "1.0.2",
  8154. "source": {
  8155. "type": "git",
  8156. "url": "https://github.com/facade/ignition-contracts.git",
  8157. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8158. },
  8159. "dist": {
  8160. "type": "zip",
  8161. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8162. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8163. "shasum": "",
  8164. "mirrors": [
  8165. {
  8166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8167. "preferred": true
  8168. }
  8169. ]
  8170. },
  8171. "require": {
  8172. "php": "^7.3|^8.0"
  8173. },
  8174. "require-dev": {
  8175. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8176. "phpunit/phpunit": "^9.3.11",
  8177. "vimeo/psalm": "^3.17.1"
  8178. },
  8179. "type": "library",
  8180. "autoload": {
  8181. "psr-4": {
  8182. "Facade\\IgnitionContracts\\": "src"
  8183. }
  8184. },
  8185. "notification-url": "https://packagist.org/downloads/",
  8186. "license": [
  8187. "MIT"
  8188. ],
  8189. "authors": [
  8190. {
  8191. "name": "Freek Van der Herten",
  8192. "email": "freek@spatie.be",
  8193. "homepage": "https://flareapp.io",
  8194. "role": "Developer"
  8195. }
  8196. ],
  8197. "description": "Solution contracts for Ignition",
  8198. "homepage": "https://github.com/facade/ignition-contracts",
  8199. "keywords": [
  8200. "contracts",
  8201. "flare",
  8202. "ignition"
  8203. ],
  8204. "support": {
  8205. "issues": "https://github.com/facade/ignition-contracts/issues",
  8206. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8207. },
  8208. "time": "2020-10-16T08:27:54+00:00"
  8209. },
  8210. {
  8211. "name": "fakerphp/faker",
  8212. "version": "v1.19.0",
  8213. "source": {
  8214. "type": "git",
  8215. "url": "https://github.com/FakerPHP/Faker.git",
  8216. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  8217. },
  8218. "dist": {
  8219. "type": "zip",
  8220. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  8221. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  8222. "shasum": "",
  8223. "mirrors": [
  8224. {
  8225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8226. "preferred": true
  8227. }
  8228. ]
  8229. },
  8230. "require": {
  8231. "php": "^7.1 || ^8.0",
  8232. "psr/container": "^1.0 || ^2.0",
  8233. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8234. },
  8235. "conflict": {
  8236. "fzaninotto/faker": "*"
  8237. },
  8238. "require-dev": {
  8239. "bamarni/composer-bin-plugin": "^1.4.1",
  8240. "doctrine/persistence": "^1.3 || ^2.0",
  8241. "ext-intl": "*",
  8242. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  8243. },
  8244. "suggest": {
  8245. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8246. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8247. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8248. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8249. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8250. },
  8251. "type": "library",
  8252. "extra": {
  8253. "branch-alias": {
  8254. "dev-main": "v1.19-dev"
  8255. }
  8256. },
  8257. "autoload": {
  8258. "psr-4": {
  8259. "Faker\\": "src/Faker/"
  8260. }
  8261. },
  8262. "notification-url": "https://packagist.org/downloads/",
  8263. "license": [
  8264. "MIT"
  8265. ],
  8266. "authors": [
  8267. {
  8268. "name": "François Zaninotto"
  8269. }
  8270. ],
  8271. "description": "Faker is a PHP library that generates fake data for you.",
  8272. "keywords": [
  8273. "data",
  8274. "faker",
  8275. "fixtures"
  8276. ],
  8277. "support": {
  8278. "issues": "https://github.com/FakerPHP/Faker/issues",
  8279. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  8280. },
  8281. "time": "2022-02-02T17:38:57+00:00"
  8282. },
  8283. {
  8284. "name": "filp/whoops",
  8285. "version": "2.14.5",
  8286. "source": {
  8287. "type": "git",
  8288. "url": "https://github.com/filp/whoops.git",
  8289. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  8290. },
  8291. "dist": {
  8292. "type": "zip",
  8293. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  8294. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  8295. "shasum": "",
  8296. "mirrors": [
  8297. {
  8298. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8299. "preferred": true
  8300. }
  8301. ]
  8302. },
  8303. "require": {
  8304. "php": "^5.5.9 || ^7.0 || ^8.0",
  8305. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8306. },
  8307. "require-dev": {
  8308. "mockery/mockery": "^0.9 || ^1.0",
  8309. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8310. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8311. },
  8312. "suggest": {
  8313. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8314. "whoops/soap": "Formats errors as SOAP responses"
  8315. },
  8316. "type": "library",
  8317. "extra": {
  8318. "branch-alias": {
  8319. "dev-master": "2.7-dev"
  8320. }
  8321. },
  8322. "autoload": {
  8323. "psr-4": {
  8324. "Whoops\\": "src/Whoops/"
  8325. }
  8326. },
  8327. "notification-url": "https://packagist.org/downloads/",
  8328. "license": [
  8329. "MIT"
  8330. ],
  8331. "authors": [
  8332. {
  8333. "name": "Filipe Dobreira",
  8334. "homepage": "https://github.com/filp",
  8335. "role": "Developer"
  8336. }
  8337. ],
  8338. "description": "php error handling for cool kids",
  8339. "homepage": "https://filp.github.io/whoops/",
  8340. "keywords": [
  8341. "error",
  8342. "exception",
  8343. "handling",
  8344. "library",
  8345. "throwable",
  8346. "whoops"
  8347. ],
  8348. "support": {
  8349. "issues": "https://github.com/filp/whoops/issues",
  8350. "source": "https://github.com/filp/whoops/tree/2.14.5"
  8351. },
  8352. "funding": [
  8353. {
  8354. "url": "https://github.com/denis-sokolov",
  8355. "type": "github"
  8356. }
  8357. ],
  8358. "time": "2022-01-07T12:00:00+00:00"
  8359. },
  8360. {
  8361. "name": "hamcrest/hamcrest-php",
  8362. "version": "v2.0.1",
  8363. "source": {
  8364. "type": "git",
  8365. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8366. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8367. },
  8368. "dist": {
  8369. "type": "zip",
  8370. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8371. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8372. "shasum": "",
  8373. "mirrors": [
  8374. {
  8375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8376. "preferred": true
  8377. }
  8378. ]
  8379. },
  8380. "require": {
  8381. "php": "^5.3|^7.0|^8.0"
  8382. },
  8383. "replace": {
  8384. "cordoval/hamcrest-php": "*",
  8385. "davedevelopment/hamcrest-php": "*",
  8386. "kodova/hamcrest-php": "*"
  8387. },
  8388. "require-dev": {
  8389. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8390. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8391. },
  8392. "type": "library",
  8393. "extra": {
  8394. "branch-alias": {
  8395. "dev-master": "2.1-dev"
  8396. }
  8397. },
  8398. "autoload": {
  8399. "classmap": [
  8400. "hamcrest"
  8401. ]
  8402. },
  8403. "notification-url": "https://packagist.org/downloads/",
  8404. "license": [
  8405. "BSD-3-Clause"
  8406. ],
  8407. "description": "This is the PHP port of Hamcrest Matchers",
  8408. "keywords": [
  8409. "test"
  8410. ],
  8411. "support": {
  8412. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8413. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8414. },
  8415. "time": "2020-07-09T08:09:16+00:00"
  8416. },
  8417. {
  8418. "name": "kitloong/laravel-migrations-generator",
  8419. "version": "v4.5.1",
  8420. "source": {
  8421. "type": "git",
  8422. "url": "https://github.com/kitloong/laravel-migrations-generator.git",
  8423. "reference": "65a6a2f6b9811f343da1092be75c450b51293e7c"
  8424. },
  8425. "dist": {
  8426. "type": "zip",
  8427. "url": "https://api.github.com/repos/kitloong/laravel-migrations-generator/zipball/65a6a2f6b9811f343da1092be75c450b51293e7c",
  8428. "reference": "65a6a2f6b9811f343da1092be75c450b51293e7c",
  8429. "shasum": "",
  8430. "mirrors": [
  8431. {
  8432. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8433. "preferred": true
  8434. }
  8435. ]
  8436. },
  8437. "require": {
  8438. "doctrine/dbal": "~2.4|^3.0",
  8439. "illuminate/support": "^5.6|^6.0|^7.0|^8.0",
  8440. "php": ">=7.1.3"
  8441. },
  8442. "require-dev": {
  8443. "ext-pdo": "*",
  8444. "mockery/mockery": "^1.0",
  8445. "orchestra/testbench": "^3.6|^4.0|^5.0|^6.0",
  8446. "squizlabs/php_codesniffer": "^3.5"
  8447. },
  8448. "type": "library",
  8449. "extra": {
  8450. "laravel": {
  8451. "providers": [
  8452. "KitLoong\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
  8453. ]
  8454. }
  8455. },
  8456. "autoload": {
  8457. "psr-4": {
  8458. "Way\\Generators\\": "src/Way/Generators",
  8459. "Xethron\\MigrationsGenerator\\": "src/Xethron/MigrationsGenerator",
  8460. "KitLoong\\MigrationsGenerator\\": "src/KitLoong/MigrationsGenerator"
  8461. }
  8462. },
  8463. "notification-url": "https://packagist.org/downloads/",
  8464. "license": [
  8465. "MIT"
  8466. ],
  8467. "authors": [
  8468. {
  8469. "name": "Kit Loong",
  8470. "email": "kitloong1008@gmail.com"
  8471. }
  8472. ],
  8473. "description": "Generates Laravel Migrations from an existing database",
  8474. "keywords": [
  8475. "artisan",
  8476. "generator",
  8477. "laravel",
  8478. "lumen",
  8479. "migration",
  8480. "migrations"
  8481. ],
  8482. "support": {
  8483. "issues": "https://github.com/kitloong/laravel-migrations-generator/issues",
  8484. "source": "https://github.com/kitloong/laravel-migrations-generator/tree/v4.5.1"
  8485. },
  8486. "funding": [
  8487. {
  8488. "url": "https://www.buymeacoffee.com/kitloong",
  8489. "type": "custom"
  8490. }
  8491. ],
  8492. "time": "2021-08-31T13:55:56+00:00"
  8493. },
  8494. {
  8495. "name": "mockery/mockery",
  8496. "version": "1.5.0",
  8497. "source": {
  8498. "type": "git",
  8499. "url": "https://github.com/mockery/mockery.git",
  8500. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  8501. },
  8502. "dist": {
  8503. "type": "zip",
  8504. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  8505. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  8506. "shasum": "",
  8507. "mirrors": [
  8508. {
  8509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8510. "preferred": true
  8511. }
  8512. ]
  8513. },
  8514. "require": {
  8515. "hamcrest/hamcrest-php": "^2.0.1",
  8516. "lib-pcre": ">=7.0",
  8517. "php": "^7.3 || ^8.0"
  8518. },
  8519. "conflict": {
  8520. "phpunit/phpunit": "<8.0"
  8521. },
  8522. "require-dev": {
  8523. "phpunit/phpunit": "^8.5 || ^9.3"
  8524. },
  8525. "type": "library",
  8526. "extra": {
  8527. "branch-alias": {
  8528. "dev-master": "1.4.x-dev"
  8529. }
  8530. },
  8531. "autoload": {
  8532. "psr-0": {
  8533. "Mockery": "library/"
  8534. }
  8535. },
  8536. "notification-url": "https://packagist.org/downloads/",
  8537. "license": [
  8538. "BSD-3-Clause"
  8539. ],
  8540. "authors": [
  8541. {
  8542. "name": "Pádraic Brady",
  8543. "email": "padraic.brady@gmail.com",
  8544. "homepage": "http://blog.astrumfutura.com"
  8545. },
  8546. {
  8547. "name": "Dave Marshall",
  8548. "email": "dave.marshall@atstsolutions.co.uk",
  8549. "homepage": "http://davedevelopment.co.uk"
  8550. }
  8551. ],
  8552. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8553. "homepage": "https://github.com/mockery/mockery",
  8554. "keywords": [
  8555. "BDD",
  8556. "TDD",
  8557. "library",
  8558. "mock",
  8559. "mock objects",
  8560. "mockery",
  8561. "stub",
  8562. "test",
  8563. "test double",
  8564. "testing"
  8565. ],
  8566. "support": {
  8567. "issues": "https://github.com/mockery/mockery/issues",
  8568. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  8569. },
  8570. "time": "2022-01-20T13:18:17+00:00"
  8571. },
  8572. {
  8573. "name": "myclabs/deep-copy",
  8574. "version": "1.11.0",
  8575. "source": {
  8576. "type": "git",
  8577. "url": "https://github.com/myclabs/DeepCopy.git",
  8578. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  8579. },
  8580. "dist": {
  8581. "type": "zip",
  8582. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  8583. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  8584. "shasum": "",
  8585. "mirrors": [
  8586. {
  8587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8588. "preferred": true
  8589. }
  8590. ]
  8591. },
  8592. "require": {
  8593. "php": "^7.1 || ^8.0"
  8594. },
  8595. "conflict": {
  8596. "doctrine/collections": "<1.6.8",
  8597. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8598. },
  8599. "require-dev": {
  8600. "doctrine/collections": "^1.6.8",
  8601. "doctrine/common": "^2.13.3 || ^3.2.2",
  8602. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8603. },
  8604. "type": "library",
  8605. "autoload": {
  8606. "files": [
  8607. "src/DeepCopy/deep_copy.php"
  8608. ],
  8609. "psr-4": {
  8610. "DeepCopy\\": "src/DeepCopy/"
  8611. }
  8612. },
  8613. "notification-url": "https://packagist.org/downloads/",
  8614. "license": [
  8615. "MIT"
  8616. ],
  8617. "description": "Create deep copies (clones) of your objects",
  8618. "keywords": [
  8619. "clone",
  8620. "copy",
  8621. "duplicate",
  8622. "object",
  8623. "object graph"
  8624. ],
  8625. "support": {
  8626. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8627. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  8628. },
  8629. "funding": [
  8630. {
  8631. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8632. "type": "tidelift"
  8633. }
  8634. ],
  8635. "time": "2022-03-03T13:19:32+00:00"
  8636. },
  8637. {
  8638. "name": "nunomaduro/collision",
  8639. "version": "v5.11.0",
  8640. "source": {
  8641. "type": "git",
  8642. "url": "https://github.com/nunomaduro/collision.git",
  8643. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8644. },
  8645. "dist": {
  8646. "type": "zip",
  8647. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8648. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8649. "shasum": "",
  8650. "mirrors": [
  8651. {
  8652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8653. "preferred": true
  8654. }
  8655. ]
  8656. },
  8657. "require": {
  8658. "facade/ignition-contracts": "^1.0",
  8659. "filp/whoops": "^2.14.3",
  8660. "php": "^7.3 || ^8.0",
  8661. "symfony/console": "^5.0"
  8662. },
  8663. "require-dev": {
  8664. "brianium/paratest": "^6.1",
  8665. "fideloper/proxy": "^4.4.1",
  8666. "fruitcake/laravel-cors": "^2.0.3",
  8667. "laravel/framework": "8.x-dev",
  8668. "nunomaduro/larastan": "^0.6.2",
  8669. "nunomaduro/mock-final-classes": "^1.0",
  8670. "orchestra/testbench": "^6.0",
  8671. "phpstan/phpstan": "^0.12.64",
  8672. "phpunit/phpunit": "^9.5.0"
  8673. },
  8674. "type": "library",
  8675. "extra": {
  8676. "laravel": {
  8677. "providers": [
  8678. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8679. ]
  8680. }
  8681. },
  8682. "autoload": {
  8683. "psr-4": {
  8684. "NunoMaduro\\Collision\\": "src/"
  8685. }
  8686. },
  8687. "notification-url": "https://packagist.org/downloads/",
  8688. "license": [
  8689. "MIT"
  8690. ],
  8691. "authors": [
  8692. {
  8693. "name": "Nuno Maduro",
  8694. "email": "enunomaduro@gmail.com"
  8695. }
  8696. ],
  8697. "description": "Cli error handling for console/command-line PHP applications.",
  8698. "keywords": [
  8699. "artisan",
  8700. "cli",
  8701. "command-line",
  8702. "console",
  8703. "error",
  8704. "handling",
  8705. "laravel",
  8706. "laravel-zero",
  8707. "php",
  8708. "symfony"
  8709. ],
  8710. "support": {
  8711. "issues": "https://github.com/nunomaduro/collision/issues",
  8712. "source": "https://github.com/nunomaduro/collision"
  8713. },
  8714. "funding": [
  8715. {
  8716. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8717. "type": "custom"
  8718. },
  8719. {
  8720. "url": "https://github.com/nunomaduro",
  8721. "type": "github"
  8722. },
  8723. {
  8724. "url": "https://www.patreon.com/nunomaduro",
  8725. "type": "patreon"
  8726. }
  8727. ],
  8728. "time": "2022-01-10T16:22:52+00:00"
  8729. },
  8730. {
  8731. "name": "orangehill/iseed",
  8732. "version": "v3.0.2",
  8733. "source": {
  8734. "type": "git",
  8735. "url": "https://github.com/orangehill/iseed.git",
  8736. "reference": "11f4355cdffc570eb231259f8700d760215df3fe"
  8737. },
  8738. "dist": {
  8739. "type": "zip",
  8740. "url": "https://api.github.com/repos/orangehill/iseed/zipball/11f4355cdffc570eb231259f8700d760215df3fe",
  8741. "reference": "11f4355cdffc570eb231259f8700d760215df3fe",
  8742. "shasum": "",
  8743. "mirrors": [
  8744. {
  8745. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8746. "preferred": true
  8747. }
  8748. ]
  8749. },
  8750. "require": {
  8751. "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
  8752. "php": "^7.2|^8.0.2"
  8753. },
  8754. "require-dev": {
  8755. "illuminate/filesystem": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
  8756. "laravel/framework": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
  8757. "mockery/mockery": "^1.0.0",
  8758. "phpunit/phpunit": "^8.0"
  8759. },
  8760. "type": "library",
  8761. "extra": {
  8762. "laravel": {
  8763. "providers": [
  8764. "Orangehill\\Iseed\\IseedServiceProvider"
  8765. ]
  8766. }
  8767. },
  8768. "autoload": {
  8769. "psr-0": {
  8770. "Orangehill\\Iseed": "src/"
  8771. },
  8772. "classmap": [
  8773. "src/Orangehill/Iseed/Exceptions.php"
  8774. ]
  8775. },
  8776. "notification-url": "https://packagist.org/downloads/",
  8777. "license": [
  8778. "BSD-2-Clause"
  8779. ],
  8780. "authors": [
  8781. {
  8782. "name": "Tihomir Opacic",
  8783. "email": "tihomir.opacic@orangehilldev.com"
  8784. }
  8785. ],
  8786. "description": "Generate a new Laravel database seed file based on data from the existing database table.",
  8787. "keywords": [
  8788. "artisan",
  8789. "generators",
  8790. "laravel",
  8791. "seed"
  8792. ],
  8793. "support": {
  8794. "issues": "https://github.com/orangehill/iseed/issues",
  8795. "source": "https://github.com/orangehill/iseed/tree/v3.0.2"
  8796. },
  8797. "time": "2022-02-11T07:31:08+00:00"
  8798. },
  8799. {
  8800. "name": "phar-io/manifest",
  8801. "version": "2.0.3",
  8802. "source": {
  8803. "type": "git",
  8804. "url": "https://github.com/phar-io/manifest.git",
  8805. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8806. },
  8807. "dist": {
  8808. "type": "zip",
  8809. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8810. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8811. "shasum": "",
  8812. "mirrors": [
  8813. {
  8814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8815. "preferred": true
  8816. }
  8817. ]
  8818. },
  8819. "require": {
  8820. "ext-dom": "*",
  8821. "ext-phar": "*",
  8822. "ext-xmlwriter": "*",
  8823. "phar-io/version": "^3.0.1",
  8824. "php": "^7.2 || ^8.0"
  8825. },
  8826. "type": "library",
  8827. "extra": {
  8828. "branch-alias": {
  8829. "dev-master": "2.0.x-dev"
  8830. }
  8831. },
  8832. "autoload": {
  8833. "classmap": [
  8834. "src/"
  8835. ]
  8836. },
  8837. "notification-url": "https://packagist.org/downloads/",
  8838. "license": [
  8839. "BSD-3-Clause"
  8840. ],
  8841. "authors": [
  8842. {
  8843. "name": "Arne Blankerts",
  8844. "email": "arne@blankerts.de",
  8845. "role": "Developer"
  8846. },
  8847. {
  8848. "name": "Sebastian Heuer",
  8849. "email": "sebastian@phpeople.de",
  8850. "role": "Developer"
  8851. },
  8852. {
  8853. "name": "Sebastian Bergmann",
  8854. "email": "sebastian@phpunit.de",
  8855. "role": "Developer"
  8856. }
  8857. ],
  8858. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8859. "support": {
  8860. "issues": "https://github.com/phar-io/manifest/issues",
  8861. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8862. },
  8863. "time": "2021-07-20T11:28:43+00:00"
  8864. },
  8865. {
  8866. "name": "phar-io/version",
  8867. "version": "3.2.1",
  8868. "source": {
  8869. "type": "git",
  8870. "url": "https://github.com/phar-io/version.git",
  8871. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8872. },
  8873. "dist": {
  8874. "type": "zip",
  8875. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8876. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8877. "shasum": "",
  8878. "mirrors": [
  8879. {
  8880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8881. "preferred": true
  8882. }
  8883. ]
  8884. },
  8885. "require": {
  8886. "php": "^7.2 || ^8.0"
  8887. },
  8888. "type": "library",
  8889. "autoload": {
  8890. "classmap": [
  8891. "src/"
  8892. ]
  8893. },
  8894. "notification-url": "https://packagist.org/downloads/",
  8895. "license": [
  8896. "BSD-3-Clause"
  8897. ],
  8898. "authors": [
  8899. {
  8900. "name": "Arne Blankerts",
  8901. "email": "arne@blankerts.de",
  8902. "role": "Developer"
  8903. },
  8904. {
  8905. "name": "Sebastian Heuer",
  8906. "email": "sebastian@phpeople.de",
  8907. "role": "Developer"
  8908. },
  8909. {
  8910. "name": "Sebastian Bergmann",
  8911. "email": "sebastian@phpunit.de",
  8912. "role": "Developer"
  8913. }
  8914. ],
  8915. "description": "Library for handling version information and constraints",
  8916. "support": {
  8917. "issues": "https://github.com/phar-io/version/issues",
  8918. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8919. },
  8920. "time": "2022-02-21T01:04:05+00:00"
  8921. },
  8922. {
  8923. "name": "phpdocumentor/reflection-common",
  8924. "version": "2.2.0",
  8925. "source": {
  8926. "type": "git",
  8927. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8928. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8929. },
  8930. "dist": {
  8931. "type": "zip",
  8932. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8933. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8934. "shasum": "",
  8935. "mirrors": [
  8936. {
  8937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8938. "preferred": true
  8939. }
  8940. ]
  8941. },
  8942. "require": {
  8943. "php": "^7.2 || ^8.0"
  8944. },
  8945. "type": "library",
  8946. "extra": {
  8947. "branch-alias": {
  8948. "dev-2.x": "2.x-dev"
  8949. }
  8950. },
  8951. "autoload": {
  8952. "psr-4": {
  8953. "phpDocumentor\\Reflection\\": "src/"
  8954. }
  8955. },
  8956. "notification-url": "https://packagist.org/downloads/",
  8957. "license": [
  8958. "MIT"
  8959. ],
  8960. "authors": [
  8961. {
  8962. "name": "Jaap van Otterdijk",
  8963. "email": "opensource@ijaap.nl"
  8964. }
  8965. ],
  8966. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8967. "homepage": "http://www.phpdoc.org",
  8968. "keywords": [
  8969. "FQSEN",
  8970. "phpDocumentor",
  8971. "phpdoc",
  8972. "reflection",
  8973. "static analysis"
  8974. ],
  8975. "support": {
  8976. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8977. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8978. },
  8979. "time": "2020-06-27T09:03:43+00:00"
  8980. },
  8981. {
  8982. "name": "phpdocumentor/reflection-docblock",
  8983. "version": "5.3.0",
  8984. "source": {
  8985. "type": "git",
  8986. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8987. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  8988. },
  8989. "dist": {
  8990. "type": "zip",
  8991. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  8992. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  8993. "shasum": "",
  8994. "mirrors": [
  8995. {
  8996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8997. "preferred": true
  8998. }
  8999. ]
  9000. },
  9001. "require": {
  9002. "ext-filter": "*",
  9003. "php": "^7.2 || ^8.0",
  9004. "phpdocumentor/reflection-common": "^2.2",
  9005. "phpdocumentor/type-resolver": "^1.3",
  9006. "webmozart/assert": "^1.9.1"
  9007. },
  9008. "require-dev": {
  9009. "mockery/mockery": "~1.3.2",
  9010. "psalm/phar": "^4.8"
  9011. },
  9012. "type": "library",
  9013. "extra": {
  9014. "branch-alias": {
  9015. "dev-master": "5.x-dev"
  9016. }
  9017. },
  9018. "autoload": {
  9019. "psr-4": {
  9020. "phpDocumentor\\Reflection\\": "src"
  9021. }
  9022. },
  9023. "notification-url": "https://packagist.org/downloads/",
  9024. "license": [
  9025. "MIT"
  9026. ],
  9027. "authors": [
  9028. {
  9029. "name": "Mike van Riel",
  9030. "email": "me@mikevanriel.com"
  9031. },
  9032. {
  9033. "name": "Jaap van Otterdijk",
  9034. "email": "account@ijaap.nl"
  9035. }
  9036. ],
  9037. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9038. "support": {
  9039. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9040. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  9041. },
  9042. "time": "2021-10-19T17:43:47+00:00"
  9043. },
  9044. {
  9045. "name": "phpdocumentor/type-resolver",
  9046. "version": "1.6.1",
  9047. "source": {
  9048. "type": "git",
  9049. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9050. "reference": "77a32518733312af16a44300404e945338981de3"
  9051. },
  9052. "dist": {
  9053. "type": "zip",
  9054. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  9055. "reference": "77a32518733312af16a44300404e945338981de3",
  9056. "shasum": "",
  9057. "mirrors": [
  9058. {
  9059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9060. "preferred": true
  9061. }
  9062. ]
  9063. },
  9064. "require": {
  9065. "php": "^7.2 || ^8.0",
  9066. "phpdocumentor/reflection-common": "^2.0"
  9067. },
  9068. "require-dev": {
  9069. "ext-tokenizer": "*",
  9070. "psalm/phar": "^4.8"
  9071. },
  9072. "type": "library",
  9073. "extra": {
  9074. "branch-alias": {
  9075. "dev-1.x": "1.x-dev"
  9076. }
  9077. },
  9078. "autoload": {
  9079. "psr-4": {
  9080. "phpDocumentor\\Reflection\\": "src"
  9081. }
  9082. },
  9083. "notification-url": "https://packagist.org/downloads/",
  9084. "license": [
  9085. "MIT"
  9086. ],
  9087. "authors": [
  9088. {
  9089. "name": "Mike van Riel",
  9090. "email": "me@mikevanriel.com"
  9091. }
  9092. ],
  9093. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9094. "support": {
  9095. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9096. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  9097. },
  9098. "time": "2022-03-15T21:29:03+00:00"
  9099. },
  9100. {
  9101. "name": "phpspec/prophecy",
  9102. "version": "v1.15.0",
  9103. "source": {
  9104. "type": "git",
  9105. "url": "https://github.com/phpspec/prophecy.git",
  9106. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  9107. },
  9108. "dist": {
  9109. "type": "zip",
  9110. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  9111. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  9112. "shasum": "",
  9113. "mirrors": [
  9114. {
  9115. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9116. "preferred": true
  9117. }
  9118. ]
  9119. },
  9120. "require": {
  9121. "doctrine/instantiator": "^1.2",
  9122. "php": "^7.2 || ~8.0, <8.2",
  9123. "phpdocumentor/reflection-docblock": "^5.2",
  9124. "sebastian/comparator": "^3.0 || ^4.0",
  9125. "sebastian/recursion-context": "^3.0 || ^4.0"
  9126. },
  9127. "require-dev": {
  9128. "phpspec/phpspec": "^6.0 || ^7.0",
  9129. "phpunit/phpunit": "^8.0 || ^9.0"
  9130. },
  9131. "type": "library",
  9132. "extra": {
  9133. "branch-alias": {
  9134. "dev-master": "1.x-dev"
  9135. }
  9136. },
  9137. "autoload": {
  9138. "psr-4": {
  9139. "Prophecy\\": "src/Prophecy"
  9140. }
  9141. },
  9142. "notification-url": "https://packagist.org/downloads/",
  9143. "license": [
  9144. "MIT"
  9145. ],
  9146. "authors": [
  9147. {
  9148. "name": "Konstantin Kudryashov",
  9149. "email": "ever.zet@gmail.com",
  9150. "homepage": "http://everzet.com"
  9151. },
  9152. {
  9153. "name": "Marcello Duarte",
  9154. "email": "marcello.duarte@gmail.com"
  9155. }
  9156. ],
  9157. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9158. "homepage": "https://github.com/phpspec/prophecy",
  9159. "keywords": [
  9160. "Double",
  9161. "Dummy",
  9162. "fake",
  9163. "mock",
  9164. "spy",
  9165. "stub"
  9166. ],
  9167. "support": {
  9168. "issues": "https://github.com/phpspec/prophecy/issues",
  9169. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  9170. },
  9171. "time": "2021-12-08T12:19:24+00:00"
  9172. },
  9173. {
  9174. "name": "phpunit/php-code-coverage",
  9175. "version": "9.2.15",
  9176. "source": {
  9177. "type": "git",
  9178. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9179. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  9180. },
  9181. "dist": {
  9182. "type": "zip",
  9183. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  9184. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  9185. "shasum": "",
  9186. "mirrors": [
  9187. {
  9188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9189. "preferred": true
  9190. }
  9191. ]
  9192. },
  9193. "require": {
  9194. "ext-dom": "*",
  9195. "ext-libxml": "*",
  9196. "ext-xmlwriter": "*",
  9197. "nikic/php-parser": "^4.13.0",
  9198. "php": ">=7.3",
  9199. "phpunit/php-file-iterator": "^3.0.3",
  9200. "phpunit/php-text-template": "^2.0.2",
  9201. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9202. "sebastian/complexity": "^2.0",
  9203. "sebastian/environment": "^5.1.2",
  9204. "sebastian/lines-of-code": "^1.0.3",
  9205. "sebastian/version": "^3.0.1",
  9206. "theseer/tokenizer": "^1.2.0"
  9207. },
  9208. "require-dev": {
  9209. "phpunit/phpunit": "^9.3"
  9210. },
  9211. "suggest": {
  9212. "ext-pcov": "*",
  9213. "ext-xdebug": "*"
  9214. },
  9215. "type": "library",
  9216. "extra": {
  9217. "branch-alias": {
  9218. "dev-master": "9.2-dev"
  9219. }
  9220. },
  9221. "autoload": {
  9222. "classmap": [
  9223. "src/"
  9224. ]
  9225. },
  9226. "notification-url": "https://packagist.org/downloads/",
  9227. "license": [
  9228. "BSD-3-Clause"
  9229. ],
  9230. "authors": [
  9231. {
  9232. "name": "Sebastian Bergmann",
  9233. "email": "sebastian@phpunit.de",
  9234. "role": "lead"
  9235. }
  9236. ],
  9237. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9238. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9239. "keywords": [
  9240. "coverage",
  9241. "testing",
  9242. "xunit"
  9243. ],
  9244. "support": {
  9245. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9246. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  9247. },
  9248. "funding": [
  9249. {
  9250. "url": "https://github.com/sebastianbergmann",
  9251. "type": "github"
  9252. }
  9253. ],
  9254. "time": "2022-03-07T09:28:20+00:00"
  9255. },
  9256. {
  9257. "name": "phpunit/php-file-iterator",
  9258. "version": "3.0.6",
  9259. "source": {
  9260. "type": "git",
  9261. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9262. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9263. },
  9264. "dist": {
  9265. "type": "zip",
  9266. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9267. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9268. "shasum": "",
  9269. "mirrors": [
  9270. {
  9271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9272. "preferred": true
  9273. }
  9274. ]
  9275. },
  9276. "require": {
  9277. "php": ">=7.3"
  9278. },
  9279. "require-dev": {
  9280. "phpunit/phpunit": "^9.3"
  9281. },
  9282. "type": "library",
  9283. "extra": {
  9284. "branch-alias": {
  9285. "dev-master": "3.0-dev"
  9286. }
  9287. },
  9288. "autoload": {
  9289. "classmap": [
  9290. "src/"
  9291. ]
  9292. },
  9293. "notification-url": "https://packagist.org/downloads/",
  9294. "license": [
  9295. "BSD-3-Clause"
  9296. ],
  9297. "authors": [
  9298. {
  9299. "name": "Sebastian Bergmann",
  9300. "email": "sebastian@phpunit.de",
  9301. "role": "lead"
  9302. }
  9303. ],
  9304. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9305. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9306. "keywords": [
  9307. "filesystem",
  9308. "iterator"
  9309. ],
  9310. "support": {
  9311. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9312. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9313. },
  9314. "funding": [
  9315. {
  9316. "url": "https://github.com/sebastianbergmann",
  9317. "type": "github"
  9318. }
  9319. ],
  9320. "time": "2021-12-02T12:48:52+00:00"
  9321. },
  9322. {
  9323. "name": "phpunit/php-invoker",
  9324. "version": "3.1.1",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9328. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9333. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9334. "shasum": "",
  9335. "mirrors": [
  9336. {
  9337. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9338. "preferred": true
  9339. }
  9340. ]
  9341. },
  9342. "require": {
  9343. "php": ">=7.3"
  9344. },
  9345. "require-dev": {
  9346. "ext-pcntl": "*",
  9347. "phpunit/phpunit": "^9.3"
  9348. },
  9349. "suggest": {
  9350. "ext-pcntl": "*"
  9351. },
  9352. "type": "library",
  9353. "extra": {
  9354. "branch-alias": {
  9355. "dev-master": "3.1-dev"
  9356. }
  9357. },
  9358. "autoload": {
  9359. "classmap": [
  9360. "src/"
  9361. ]
  9362. },
  9363. "notification-url": "https://packagist.org/downloads/",
  9364. "license": [
  9365. "BSD-3-Clause"
  9366. ],
  9367. "authors": [
  9368. {
  9369. "name": "Sebastian Bergmann",
  9370. "email": "sebastian@phpunit.de",
  9371. "role": "lead"
  9372. }
  9373. ],
  9374. "description": "Invoke callables with a timeout",
  9375. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9376. "keywords": [
  9377. "process"
  9378. ],
  9379. "support": {
  9380. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9381. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9382. },
  9383. "funding": [
  9384. {
  9385. "url": "https://github.com/sebastianbergmann",
  9386. "type": "github"
  9387. }
  9388. ],
  9389. "time": "2020-09-28T05:58:55+00:00"
  9390. },
  9391. {
  9392. "name": "phpunit/php-text-template",
  9393. "version": "2.0.4",
  9394. "source": {
  9395. "type": "git",
  9396. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9397. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9398. },
  9399. "dist": {
  9400. "type": "zip",
  9401. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9402. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9403. "shasum": "",
  9404. "mirrors": [
  9405. {
  9406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9407. "preferred": true
  9408. }
  9409. ]
  9410. },
  9411. "require": {
  9412. "php": ">=7.3"
  9413. },
  9414. "require-dev": {
  9415. "phpunit/phpunit": "^9.3"
  9416. },
  9417. "type": "library",
  9418. "extra": {
  9419. "branch-alias": {
  9420. "dev-master": "2.0-dev"
  9421. }
  9422. },
  9423. "autoload": {
  9424. "classmap": [
  9425. "src/"
  9426. ]
  9427. },
  9428. "notification-url": "https://packagist.org/downloads/",
  9429. "license": [
  9430. "BSD-3-Clause"
  9431. ],
  9432. "authors": [
  9433. {
  9434. "name": "Sebastian Bergmann",
  9435. "email": "sebastian@phpunit.de",
  9436. "role": "lead"
  9437. }
  9438. ],
  9439. "description": "Simple template engine.",
  9440. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9441. "keywords": [
  9442. "template"
  9443. ],
  9444. "support": {
  9445. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9446. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9447. },
  9448. "funding": [
  9449. {
  9450. "url": "https://github.com/sebastianbergmann",
  9451. "type": "github"
  9452. }
  9453. ],
  9454. "time": "2020-10-26T05:33:50+00:00"
  9455. },
  9456. {
  9457. "name": "phpunit/php-timer",
  9458. "version": "5.0.3",
  9459. "source": {
  9460. "type": "git",
  9461. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9462. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9463. },
  9464. "dist": {
  9465. "type": "zip",
  9466. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9467. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9468. "shasum": "",
  9469. "mirrors": [
  9470. {
  9471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9472. "preferred": true
  9473. }
  9474. ]
  9475. },
  9476. "require": {
  9477. "php": ">=7.3"
  9478. },
  9479. "require-dev": {
  9480. "phpunit/phpunit": "^9.3"
  9481. },
  9482. "type": "library",
  9483. "extra": {
  9484. "branch-alias": {
  9485. "dev-master": "5.0-dev"
  9486. }
  9487. },
  9488. "autoload": {
  9489. "classmap": [
  9490. "src/"
  9491. ]
  9492. },
  9493. "notification-url": "https://packagist.org/downloads/",
  9494. "license": [
  9495. "BSD-3-Clause"
  9496. ],
  9497. "authors": [
  9498. {
  9499. "name": "Sebastian Bergmann",
  9500. "email": "sebastian@phpunit.de",
  9501. "role": "lead"
  9502. }
  9503. ],
  9504. "description": "Utility class for timing",
  9505. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9506. "keywords": [
  9507. "timer"
  9508. ],
  9509. "support": {
  9510. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9511. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9512. },
  9513. "funding": [
  9514. {
  9515. "url": "https://github.com/sebastianbergmann",
  9516. "type": "github"
  9517. }
  9518. ],
  9519. "time": "2020-10-26T13:16:10+00:00"
  9520. },
  9521. {
  9522. "name": "phpunit/phpunit",
  9523. "version": "9.5.20",
  9524. "source": {
  9525. "type": "git",
  9526. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9527. "reference": "12bc8879fb65aef2138b26fc633cb1e3620cffba"
  9528. },
  9529. "dist": {
  9530. "type": "zip",
  9531. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/12bc8879fb65aef2138b26fc633cb1e3620cffba",
  9532. "reference": "12bc8879fb65aef2138b26fc633cb1e3620cffba",
  9533. "shasum": "",
  9534. "mirrors": [
  9535. {
  9536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9537. "preferred": true
  9538. }
  9539. ]
  9540. },
  9541. "require": {
  9542. "doctrine/instantiator": "^1.3.1",
  9543. "ext-dom": "*",
  9544. "ext-json": "*",
  9545. "ext-libxml": "*",
  9546. "ext-mbstring": "*",
  9547. "ext-xml": "*",
  9548. "ext-xmlwriter": "*",
  9549. "myclabs/deep-copy": "^1.10.1",
  9550. "phar-io/manifest": "^2.0.3",
  9551. "phar-io/version": "^3.0.2",
  9552. "php": ">=7.3",
  9553. "phpspec/prophecy": "^1.12.1",
  9554. "phpunit/php-code-coverage": "^9.2.13",
  9555. "phpunit/php-file-iterator": "^3.0.5",
  9556. "phpunit/php-invoker": "^3.1.1",
  9557. "phpunit/php-text-template": "^2.0.3",
  9558. "phpunit/php-timer": "^5.0.2",
  9559. "sebastian/cli-parser": "^1.0.1",
  9560. "sebastian/code-unit": "^1.0.6",
  9561. "sebastian/comparator": "^4.0.5",
  9562. "sebastian/diff": "^4.0.3",
  9563. "sebastian/environment": "^5.1.3",
  9564. "sebastian/exporter": "^4.0.3",
  9565. "sebastian/global-state": "^5.0.1",
  9566. "sebastian/object-enumerator": "^4.0.3",
  9567. "sebastian/resource-operations": "^3.0.3",
  9568. "sebastian/type": "^3.0",
  9569. "sebastian/version": "^3.0.2"
  9570. },
  9571. "require-dev": {
  9572. "ext-pdo": "*",
  9573. "phpspec/prophecy-phpunit": "^2.0.1"
  9574. },
  9575. "suggest": {
  9576. "ext-soap": "*",
  9577. "ext-xdebug": "*"
  9578. },
  9579. "bin": [
  9580. "phpunit"
  9581. ],
  9582. "type": "library",
  9583. "extra": {
  9584. "branch-alias": {
  9585. "dev-master": "9.5-dev"
  9586. }
  9587. },
  9588. "autoload": {
  9589. "files": [
  9590. "src/Framework/Assert/Functions.php"
  9591. ],
  9592. "classmap": [
  9593. "src/"
  9594. ]
  9595. },
  9596. "notification-url": "https://packagist.org/downloads/",
  9597. "license": [
  9598. "BSD-3-Clause"
  9599. ],
  9600. "authors": [
  9601. {
  9602. "name": "Sebastian Bergmann",
  9603. "email": "sebastian@phpunit.de",
  9604. "role": "lead"
  9605. }
  9606. ],
  9607. "description": "The PHP Unit Testing framework.",
  9608. "homepage": "https://phpunit.de/",
  9609. "keywords": [
  9610. "phpunit",
  9611. "testing",
  9612. "xunit"
  9613. ],
  9614. "support": {
  9615. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9616. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.20"
  9617. },
  9618. "funding": [
  9619. {
  9620. "url": "https://phpunit.de/sponsors.html",
  9621. "type": "custom"
  9622. },
  9623. {
  9624. "url": "https://github.com/sebastianbergmann",
  9625. "type": "github"
  9626. }
  9627. ],
  9628. "time": "2022-04-01T12:37:26+00:00"
  9629. },
  9630. {
  9631. "name": "psr/cache",
  9632. "version": "3.0.0",
  9633. "source": {
  9634. "type": "git",
  9635. "url": "https://github.com/php-fig/cache.git",
  9636. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  9637. },
  9638. "dist": {
  9639. "type": "zip",
  9640. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9641. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9642. "shasum": "",
  9643. "mirrors": [
  9644. {
  9645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9646. "preferred": true
  9647. }
  9648. ]
  9649. },
  9650. "require": {
  9651. "php": ">=8.0.0"
  9652. },
  9653. "type": "library",
  9654. "extra": {
  9655. "branch-alias": {
  9656. "dev-master": "1.0.x-dev"
  9657. }
  9658. },
  9659. "autoload": {
  9660. "psr-4": {
  9661. "Psr\\Cache\\": "src/"
  9662. }
  9663. },
  9664. "notification-url": "https://packagist.org/downloads/",
  9665. "license": [
  9666. "MIT"
  9667. ],
  9668. "authors": [
  9669. {
  9670. "name": "PHP-FIG",
  9671. "homepage": "https://www.php-fig.org/"
  9672. }
  9673. ],
  9674. "description": "Common interface for caching libraries",
  9675. "keywords": [
  9676. "cache",
  9677. "psr",
  9678. "psr-6"
  9679. ],
  9680. "support": {
  9681. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  9682. },
  9683. "time": "2021-02-03T23:26:27+00:00"
  9684. },
  9685. {
  9686. "name": "sebastian/cli-parser",
  9687. "version": "1.0.1",
  9688. "source": {
  9689. "type": "git",
  9690. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9691. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9692. },
  9693. "dist": {
  9694. "type": "zip",
  9695. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9696. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9697. "shasum": "",
  9698. "mirrors": [
  9699. {
  9700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9701. "preferred": true
  9702. }
  9703. ]
  9704. },
  9705. "require": {
  9706. "php": ">=7.3"
  9707. },
  9708. "require-dev": {
  9709. "phpunit/phpunit": "^9.3"
  9710. },
  9711. "type": "library",
  9712. "extra": {
  9713. "branch-alias": {
  9714. "dev-master": "1.0-dev"
  9715. }
  9716. },
  9717. "autoload": {
  9718. "classmap": [
  9719. "src/"
  9720. ]
  9721. },
  9722. "notification-url": "https://packagist.org/downloads/",
  9723. "license": [
  9724. "BSD-3-Clause"
  9725. ],
  9726. "authors": [
  9727. {
  9728. "name": "Sebastian Bergmann",
  9729. "email": "sebastian@phpunit.de",
  9730. "role": "lead"
  9731. }
  9732. ],
  9733. "description": "Library for parsing CLI options",
  9734. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9735. "support": {
  9736. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9737. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9738. },
  9739. "funding": [
  9740. {
  9741. "url": "https://github.com/sebastianbergmann",
  9742. "type": "github"
  9743. }
  9744. ],
  9745. "time": "2020-09-28T06:08:49+00:00"
  9746. },
  9747. {
  9748. "name": "sebastian/code-unit",
  9749. "version": "1.0.8",
  9750. "source": {
  9751. "type": "git",
  9752. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9753. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9754. },
  9755. "dist": {
  9756. "type": "zip",
  9757. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9758. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9759. "shasum": "",
  9760. "mirrors": [
  9761. {
  9762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9763. "preferred": true
  9764. }
  9765. ]
  9766. },
  9767. "require": {
  9768. "php": ">=7.3"
  9769. },
  9770. "require-dev": {
  9771. "phpunit/phpunit": "^9.3"
  9772. },
  9773. "type": "library",
  9774. "extra": {
  9775. "branch-alias": {
  9776. "dev-master": "1.0-dev"
  9777. }
  9778. },
  9779. "autoload": {
  9780. "classmap": [
  9781. "src/"
  9782. ]
  9783. },
  9784. "notification-url": "https://packagist.org/downloads/",
  9785. "license": [
  9786. "BSD-3-Clause"
  9787. ],
  9788. "authors": [
  9789. {
  9790. "name": "Sebastian Bergmann",
  9791. "email": "sebastian@phpunit.de",
  9792. "role": "lead"
  9793. }
  9794. ],
  9795. "description": "Collection of value objects that represent the PHP code units",
  9796. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9797. "support": {
  9798. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9799. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9800. },
  9801. "funding": [
  9802. {
  9803. "url": "https://github.com/sebastianbergmann",
  9804. "type": "github"
  9805. }
  9806. ],
  9807. "time": "2020-10-26T13:08:54+00:00"
  9808. },
  9809. {
  9810. "name": "sebastian/code-unit-reverse-lookup",
  9811. "version": "2.0.3",
  9812. "source": {
  9813. "type": "git",
  9814. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9815. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9816. },
  9817. "dist": {
  9818. "type": "zip",
  9819. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9820. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9821. "shasum": "",
  9822. "mirrors": [
  9823. {
  9824. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9825. "preferred": true
  9826. }
  9827. ]
  9828. },
  9829. "require": {
  9830. "php": ">=7.3"
  9831. },
  9832. "require-dev": {
  9833. "phpunit/phpunit": "^9.3"
  9834. },
  9835. "type": "library",
  9836. "extra": {
  9837. "branch-alias": {
  9838. "dev-master": "2.0-dev"
  9839. }
  9840. },
  9841. "autoload": {
  9842. "classmap": [
  9843. "src/"
  9844. ]
  9845. },
  9846. "notification-url": "https://packagist.org/downloads/",
  9847. "license": [
  9848. "BSD-3-Clause"
  9849. ],
  9850. "authors": [
  9851. {
  9852. "name": "Sebastian Bergmann",
  9853. "email": "sebastian@phpunit.de"
  9854. }
  9855. ],
  9856. "description": "Looks up which function or method a line of code belongs to",
  9857. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9858. "support": {
  9859. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9860. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9861. },
  9862. "funding": [
  9863. {
  9864. "url": "https://github.com/sebastianbergmann",
  9865. "type": "github"
  9866. }
  9867. ],
  9868. "time": "2020-09-28T05:30:19+00:00"
  9869. },
  9870. {
  9871. "name": "sebastian/comparator",
  9872. "version": "4.0.6",
  9873. "source": {
  9874. "type": "git",
  9875. "url": "https://github.com/sebastianbergmann/comparator.git",
  9876. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  9877. },
  9878. "dist": {
  9879. "type": "zip",
  9880. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  9881. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  9882. "shasum": "",
  9883. "mirrors": [
  9884. {
  9885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9886. "preferred": true
  9887. }
  9888. ]
  9889. },
  9890. "require": {
  9891. "php": ">=7.3",
  9892. "sebastian/diff": "^4.0",
  9893. "sebastian/exporter": "^4.0"
  9894. },
  9895. "require-dev": {
  9896. "phpunit/phpunit": "^9.3"
  9897. },
  9898. "type": "library",
  9899. "extra": {
  9900. "branch-alias": {
  9901. "dev-master": "4.0-dev"
  9902. }
  9903. },
  9904. "autoload": {
  9905. "classmap": [
  9906. "src/"
  9907. ]
  9908. },
  9909. "notification-url": "https://packagist.org/downloads/",
  9910. "license": [
  9911. "BSD-3-Clause"
  9912. ],
  9913. "authors": [
  9914. {
  9915. "name": "Sebastian Bergmann",
  9916. "email": "sebastian@phpunit.de"
  9917. },
  9918. {
  9919. "name": "Jeff Welch",
  9920. "email": "whatthejeff@gmail.com"
  9921. },
  9922. {
  9923. "name": "Volker Dusch",
  9924. "email": "github@wallbash.com"
  9925. },
  9926. {
  9927. "name": "Bernhard Schussek",
  9928. "email": "bschussek@2bepublished.at"
  9929. }
  9930. ],
  9931. "description": "Provides the functionality to compare PHP values for equality",
  9932. "homepage": "https://github.com/sebastianbergmann/comparator",
  9933. "keywords": [
  9934. "comparator",
  9935. "compare",
  9936. "equality"
  9937. ],
  9938. "support": {
  9939. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9940. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  9941. },
  9942. "funding": [
  9943. {
  9944. "url": "https://github.com/sebastianbergmann",
  9945. "type": "github"
  9946. }
  9947. ],
  9948. "time": "2020-10-26T15:49:45+00:00"
  9949. },
  9950. {
  9951. "name": "sebastian/complexity",
  9952. "version": "2.0.2",
  9953. "source": {
  9954. "type": "git",
  9955. "url": "https://github.com/sebastianbergmann/complexity.git",
  9956. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9957. },
  9958. "dist": {
  9959. "type": "zip",
  9960. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9961. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9962. "shasum": "",
  9963. "mirrors": [
  9964. {
  9965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9966. "preferred": true
  9967. }
  9968. ]
  9969. },
  9970. "require": {
  9971. "nikic/php-parser": "^4.7",
  9972. "php": ">=7.3"
  9973. },
  9974. "require-dev": {
  9975. "phpunit/phpunit": "^9.3"
  9976. },
  9977. "type": "library",
  9978. "extra": {
  9979. "branch-alias": {
  9980. "dev-master": "2.0-dev"
  9981. }
  9982. },
  9983. "autoload": {
  9984. "classmap": [
  9985. "src/"
  9986. ]
  9987. },
  9988. "notification-url": "https://packagist.org/downloads/",
  9989. "license": [
  9990. "BSD-3-Clause"
  9991. ],
  9992. "authors": [
  9993. {
  9994. "name": "Sebastian Bergmann",
  9995. "email": "sebastian@phpunit.de",
  9996. "role": "lead"
  9997. }
  9998. ],
  9999. "description": "Library for calculating the complexity of PHP code units",
  10000. "homepage": "https://github.com/sebastianbergmann/complexity",
  10001. "support": {
  10002. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10003. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10004. },
  10005. "funding": [
  10006. {
  10007. "url": "https://github.com/sebastianbergmann",
  10008. "type": "github"
  10009. }
  10010. ],
  10011. "time": "2020-10-26T15:52:27+00:00"
  10012. },
  10013. {
  10014. "name": "sebastian/diff",
  10015. "version": "4.0.4",
  10016. "source": {
  10017. "type": "git",
  10018. "url": "https://github.com/sebastianbergmann/diff.git",
  10019. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10020. },
  10021. "dist": {
  10022. "type": "zip",
  10023. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10024. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10025. "shasum": "",
  10026. "mirrors": [
  10027. {
  10028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10029. "preferred": true
  10030. }
  10031. ]
  10032. },
  10033. "require": {
  10034. "php": ">=7.3"
  10035. },
  10036. "require-dev": {
  10037. "phpunit/phpunit": "^9.3",
  10038. "symfony/process": "^4.2 || ^5"
  10039. },
  10040. "type": "library",
  10041. "extra": {
  10042. "branch-alias": {
  10043. "dev-master": "4.0-dev"
  10044. }
  10045. },
  10046. "autoload": {
  10047. "classmap": [
  10048. "src/"
  10049. ]
  10050. },
  10051. "notification-url": "https://packagist.org/downloads/",
  10052. "license": [
  10053. "BSD-3-Clause"
  10054. ],
  10055. "authors": [
  10056. {
  10057. "name": "Sebastian Bergmann",
  10058. "email": "sebastian@phpunit.de"
  10059. },
  10060. {
  10061. "name": "Kore Nordmann",
  10062. "email": "mail@kore-nordmann.de"
  10063. }
  10064. ],
  10065. "description": "Diff implementation",
  10066. "homepage": "https://github.com/sebastianbergmann/diff",
  10067. "keywords": [
  10068. "diff",
  10069. "udiff",
  10070. "unidiff",
  10071. "unified diff"
  10072. ],
  10073. "support": {
  10074. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10075. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10076. },
  10077. "funding": [
  10078. {
  10079. "url": "https://github.com/sebastianbergmann",
  10080. "type": "github"
  10081. }
  10082. ],
  10083. "time": "2020-10-26T13:10:38+00:00"
  10084. },
  10085. {
  10086. "name": "sebastian/environment",
  10087. "version": "5.1.4",
  10088. "source": {
  10089. "type": "git",
  10090. "url": "https://github.com/sebastianbergmann/environment.git",
  10091. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  10092. },
  10093. "dist": {
  10094. "type": "zip",
  10095. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  10096. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  10097. "shasum": "",
  10098. "mirrors": [
  10099. {
  10100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10101. "preferred": true
  10102. }
  10103. ]
  10104. },
  10105. "require": {
  10106. "php": ">=7.3"
  10107. },
  10108. "require-dev": {
  10109. "phpunit/phpunit": "^9.3"
  10110. },
  10111. "suggest": {
  10112. "ext-posix": "*"
  10113. },
  10114. "type": "library",
  10115. "extra": {
  10116. "branch-alias": {
  10117. "dev-master": "5.1-dev"
  10118. }
  10119. },
  10120. "autoload": {
  10121. "classmap": [
  10122. "src/"
  10123. ]
  10124. },
  10125. "notification-url": "https://packagist.org/downloads/",
  10126. "license": [
  10127. "BSD-3-Clause"
  10128. ],
  10129. "authors": [
  10130. {
  10131. "name": "Sebastian Bergmann",
  10132. "email": "sebastian@phpunit.de"
  10133. }
  10134. ],
  10135. "description": "Provides functionality to handle HHVM/PHP environments",
  10136. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10137. "keywords": [
  10138. "Xdebug",
  10139. "environment",
  10140. "hhvm"
  10141. ],
  10142. "support": {
  10143. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10144. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  10145. },
  10146. "funding": [
  10147. {
  10148. "url": "https://github.com/sebastianbergmann",
  10149. "type": "github"
  10150. }
  10151. ],
  10152. "time": "2022-04-03T09:37:03+00:00"
  10153. },
  10154. {
  10155. "name": "sebastian/exporter",
  10156. "version": "4.0.4",
  10157. "source": {
  10158. "type": "git",
  10159. "url": "https://github.com/sebastianbergmann/exporter.git",
  10160. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  10161. },
  10162. "dist": {
  10163. "type": "zip",
  10164. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  10165. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  10166. "shasum": "",
  10167. "mirrors": [
  10168. {
  10169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10170. "preferred": true
  10171. }
  10172. ]
  10173. },
  10174. "require": {
  10175. "php": ">=7.3",
  10176. "sebastian/recursion-context": "^4.0"
  10177. },
  10178. "require-dev": {
  10179. "ext-mbstring": "*",
  10180. "phpunit/phpunit": "^9.3"
  10181. },
  10182. "type": "library",
  10183. "extra": {
  10184. "branch-alias": {
  10185. "dev-master": "4.0-dev"
  10186. }
  10187. },
  10188. "autoload": {
  10189. "classmap": [
  10190. "src/"
  10191. ]
  10192. },
  10193. "notification-url": "https://packagist.org/downloads/",
  10194. "license": [
  10195. "BSD-3-Clause"
  10196. ],
  10197. "authors": [
  10198. {
  10199. "name": "Sebastian Bergmann",
  10200. "email": "sebastian@phpunit.de"
  10201. },
  10202. {
  10203. "name": "Jeff Welch",
  10204. "email": "whatthejeff@gmail.com"
  10205. },
  10206. {
  10207. "name": "Volker Dusch",
  10208. "email": "github@wallbash.com"
  10209. },
  10210. {
  10211. "name": "Adam Harvey",
  10212. "email": "aharvey@php.net"
  10213. },
  10214. {
  10215. "name": "Bernhard Schussek",
  10216. "email": "bschussek@gmail.com"
  10217. }
  10218. ],
  10219. "description": "Provides the functionality to export PHP variables for visualization",
  10220. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10221. "keywords": [
  10222. "export",
  10223. "exporter"
  10224. ],
  10225. "support": {
  10226. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10227. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  10228. },
  10229. "funding": [
  10230. {
  10231. "url": "https://github.com/sebastianbergmann",
  10232. "type": "github"
  10233. }
  10234. ],
  10235. "time": "2021-11-11T14:18:36+00:00"
  10236. },
  10237. {
  10238. "name": "sebastian/global-state",
  10239. "version": "5.0.5",
  10240. "source": {
  10241. "type": "git",
  10242. "url": "https://github.com/sebastianbergmann/global-state.git",
  10243. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  10244. },
  10245. "dist": {
  10246. "type": "zip",
  10247. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10248. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10249. "shasum": "",
  10250. "mirrors": [
  10251. {
  10252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10253. "preferred": true
  10254. }
  10255. ]
  10256. },
  10257. "require": {
  10258. "php": ">=7.3",
  10259. "sebastian/object-reflector": "^2.0",
  10260. "sebastian/recursion-context": "^4.0"
  10261. },
  10262. "require-dev": {
  10263. "ext-dom": "*",
  10264. "phpunit/phpunit": "^9.3"
  10265. },
  10266. "suggest": {
  10267. "ext-uopz": "*"
  10268. },
  10269. "type": "library",
  10270. "extra": {
  10271. "branch-alias": {
  10272. "dev-master": "5.0-dev"
  10273. }
  10274. },
  10275. "autoload": {
  10276. "classmap": [
  10277. "src/"
  10278. ]
  10279. },
  10280. "notification-url": "https://packagist.org/downloads/",
  10281. "license": [
  10282. "BSD-3-Clause"
  10283. ],
  10284. "authors": [
  10285. {
  10286. "name": "Sebastian Bergmann",
  10287. "email": "sebastian@phpunit.de"
  10288. }
  10289. ],
  10290. "description": "Snapshotting of global state",
  10291. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10292. "keywords": [
  10293. "global state"
  10294. ],
  10295. "support": {
  10296. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10297. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  10298. },
  10299. "funding": [
  10300. {
  10301. "url": "https://github.com/sebastianbergmann",
  10302. "type": "github"
  10303. }
  10304. ],
  10305. "time": "2022-02-14T08:28:10+00:00"
  10306. },
  10307. {
  10308. "name": "sebastian/lines-of-code",
  10309. "version": "1.0.3",
  10310. "source": {
  10311. "type": "git",
  10312. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10313. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10314. },
  10315. "dist": {
  10316. "type": "zip",
  10317. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10318. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10319. "shasum": "",
  10320. "mirrors": [
  10321. {
  10322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10323. "preferred": true
  10324. }
  10325. ]
  10326. },
  10327. "require": {
  10328. "nikic/php-parser": "^4.6",
  10329. "php": ">=7.3"
  10330. },
  10331. "require-dev": {
  10332. "phpunit/phpunit": "^9.3"
  10333. },
  10334. "type": "library",
  10335. "extra": {
  10336. "branch-alias": {
  10337. "dev-master": "1.0-dev"
  10338. }
  10339. },
  10340. "autoload": {
  10341. "classmap": [
  10342. "src/"
  10343. ]
  10344. },
  10345. "notification-url": "https://packagist.org/downloads/",
  10346. "license": [
  10347. "BSD-3-Clause"
  10348. ],
  10349. "authors": [
  10350. {
  10351. "name": "Sebastian Bergmann",
  10352. "email": "sebastian@phpunit.de",
  10353. "role": "lead"
  10354. }
  10355. ],
  10356. "description": "Library for counting the lines of code in PHP source code",
  10357. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10358. "support": {
  10359. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10360. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10361. },
  10362. "funding": [
  10363. {
  10364. "url": "https://github.com/sebastianbergmann",
  10365. "type": "github"
  10366. }
  10367. ],
  10368. "time": "2020-11-28T06:42:11+00:00"
  10369. },
  10370. {
  10371. "name": "sebastian/object-enumerator",
  10372. "version": "4.0.4",
  10373. "source": {
  10374. "type": "git",
  10375. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10376. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10377. },
  10378. "dist": {
  10379. "type": "zip",
  10380. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10381. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10382. "shasum": "",
  10383. "mirrors": [
  10384. {
  10385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10386. "preferred": true
  10387. }
  10388. ]
  10389. },
  10390. "require": {
  10391. "php": ">=7.3",
  10392. "sebastian/object-reflector": "^2.0",
  10393. "sebastian/recursion-context": "^4.0"
  10394. },
  10395. "require-dev": {
  10396. "phpunit/phpunit": "^9.3"
  10397. },
  10398. "type": "library",
  10399. "extra": {
  10400. "branch-alias": {
  10401. "dev-master": "4.0-dev"
  10402. }
  10403. },
  10404. "autoload": {
  10405. "classmap": [
  10406. "src/"
  10407. ]
  10408. },
  10409. "notification-url": "https://packagist.org/downloads/",
  10410. "license": [
  10411. "BSD-3-Clause"
  10412. ],
  10413. "authors": [
  10414. {
  10415. "name": "Sebastian Bergmann",
  10416. "email": "sebastian@phpunit.de"
  10417. }
  10418. ],
  10419. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10420. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10421. "support": {
  10422. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10423. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10424. },
  10425. "funding": [
  10426. {
  10427. "url": "https://github.com/sebastianbergmann",
  10428. "type": "github"
  10429. }
  10430. ],
  10431. "time": "2020-10-26T13:12:34+00:00"
  10432. },
  10433. {
  10434. "name": "sebastian/object-reflector",
  10435. "version": "2.0.4",
  10436. "source": {
  10437. "type": "git",
  10438. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10439. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10440. },
  10441. "dist": {
  10442. "type": "zip",
  10443. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10444. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10445. "shasum": "",
  10446. "mirrors": [
  10447. {
  10448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10449. "preferred": true
  10450. }
  10451. ]
  10452. },
  10453. "require": {
  10454. "php": ">=7.3"
  10455. },
  10456. "require-dev": {
  10457. "phpunit/phpunit": "^9.3"
  10458. },
  10459. "type": "library",
  10460. "extra": {
  10461. "branch-alias": {
  10462. "dev-master": "2.0-dev"
  10463. }
  10464. },
  10465. "autoload": {
  10466. "classmap": [
  10467. "src/"
  10468. ]
  10469. },
  10470. "notification-url": "https://packagist.org/downloads/",
  10471. "license": [
  10472. "BSD-3-Clause"
  10473. ],
  10474. "authors": [
  10475. {
  10476. "name": "Sebastian Bergmann",
  10477. "email": "sebastian@phpunit.de"
  10478. }
  10479. ],
  10480. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10481. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10482. "support": {
  10483. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10484. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10485. },
  10486. "funding": [
  10487. {
  10488. "url": "https://github.com/sebastianbergmann",
  10489. "type": "github"
  10490. }
  10491. ],
  10492. "time": "2020-10-26T13:14:26+00:00"
  10493. },
  10494. {
  10495. "name": "sebastian/recursion-context",
  10496. "version": "4.0.4",
  10497. "source": {
  10498. "type": "git",
  10499. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10500. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  10501. },
  10502. "dist": {
  10503. "type": "zip",
  10504. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  10505. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  10506. "shasum": "",
  10507. "mirrors": [
  10508. {
  10509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10510. "preferred": true
  10511. }
  10512. ]
  10513. },
  10514. "require": {
  10515. "php": ">=7.3"
  10516. },
  10517. "require-dev": {
  10518. "phpunit/phpunit": "^9.3"
  10519. },
  10520. "type": "library",
  10521. "extra": {
  10522. "branch-alias": {
  10523. "dev-master": "4.0-dev"
  10524. }
  10525. },
  10526. "autoload": {
  10527. "classmap": [
  10528. "src/"
  10529. ]
  10530. },
  10531. "notification-url": "https://packagist.org/downloads/",
  10532. "license": [
  10533. "BSD-3-Clause"
  10534. ],
  10535. "authors": [
  10536. {
  10537. "name": "Sebastian Bergmann",
  10538. "email": "sebastian@phpunit.de"
  10539. },
  10540. {
  10541. "name": "Jeff Welch",
  10542. "email": "whatthejeff@gmail.com"
  10543. },
  10544. {
  10545. "name": "Adam Harvey",
  10546. "email": "aharvey@php.net"
  10547. }
  10548. ],
  10549. "description": "Provides functionality to recursively process PHP variables",
  10550. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10551. "support": {
  10552. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10553. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  10554. },
  10555. "funding": [
  10556. {
  10557. "url": "https://github.com/sebastianbergmann",
  10558. "type": "github"
  10559. }
  10560. ],
  10561. "time": "2020-10-26T13:17:30+00:00"
  10562. },
  10563. {
  10564. "name": "sebastian/resource-operations",
  10565. "version": "3.0.3",
  10566. "source": {
  10567. "type": "git",
  10568. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10569. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10570. },
  10571. "dist": {
  10572. "type": "zip",
  10573. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10574. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10575. "shasum": "",
  10576. "mirrors": [
  10577. {
  10578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10579. "preferred": true
  10580. }
  10581. ]
  10582. },
  10583. "require": {
  10584. "php": ">=7.3"
  10585. },
  10586. "require-dev": {
  10587. "phpunit/phpunit": "^9.0"
  10588. },
  10589. "type": "library",
  10590. "extra": {
  10591. "branch-alias": {
  10592. "dev-master": "3.0-dev"
  10593. }
  10594. },
  10595. "autoload": {
  10596. "classmap": [
  10597. "src/"
  10598. ]
  10599. },
  10600. "notification-url": "https://packagist.org/downloads/",
  10601. "license": [
  10602. "BSD-3-Clause"
  10603. ],
  10604. "authors": [
  10605. {
  10606. "name": "Sebastian Bergmann",
  10607. "email": "sebastian@phpunit.de"
  10608. }
  10609. ],
  10610. "description": "Provides a list of PHP built-in functions that operate on resources",
  10611. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10612. "support": {
  10613. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10614. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10615. },
  10616. "funding": [
  10617. {
  10618. "url": "https://github.com/sebastianbergmann",
  10619. "type": "github"
  10620. }
  10621. ],
  10622. "time": "2020-09-28T06:45:17+00:00"
  10623. },
  10624. {
  10625. "name": "sebastian/type",
  10626. "version": "3.0.x-dev",
  10627. "source": {
  10628. "type": "git",
  10629. "url": "https://github.com/sebastianbergmann/type.git",
  10630. "reference": "afad3e987736f63bc54d7c923f0c1ebf247e8618"
  10631. },
  10632. "dist": {
  10633. "type": "zip",
  10634. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/afad3e987736f63bc54d7c923f0c1ebf247e8618",
  10635. "reference": "afad3e987736f63bc54d7c923f0c1ebf247e8618",
  10636. "shasum": "",
  10637. "mirrors": [
  10638. {
  10639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10640. "preferred": true
  10641. }
  10642. ]
  10643. },
  10644. "require": {
  10645. "php": ">=7.3"
  10646. },
  10647. "require-dev": {
  10648. "phpunit/phpunit": "^9.5"
  10649. },
  10650. "type": "library",
  10651. "extra": {
  10652. "branch-alias": {
  10653. "dev-master": "3.0-dev"
  10654. }
  10655. },
  10656. "autoload": {
  10657. "classmap": [
  10658. "src/"
  10659. ]
  10660. },
  10661. "notification-url": "https://packagist.org/downloads/",
  10662. "license": [
  10663. "BSD-3-Clause"
  10664. ],
  10665. "authors": [
  10666. {
  10667. "name": "Sebastian Bergmann",
  10668. "email": "sebastian@phpunit.de",
  10669. "role": "lead"
  10670. }
  10671. ],
  10672. "description": "Collection of value objects that represent the types of the PHP type system",
  10673. "homepage": "https://github.com/sebastianbergmann/type",
  10674. "support": {
  10675. "issues": "https://github.com/sebastianbergmann/type/issues",
  10676. "source": "https://github.com/sebastianbergmann/type/tree/3.0"
  10677. },
  10678. "funding": [
  10679. {
  10680. "url": "https://github.com/sebastianbergmann",
  10681. "type": "github"
  10682. }
  10683. ],
  10684. "time": "2022-03-27T17:35:59+00:00"
  10685. },
  10686. {
  10687. "name": "sebastian/version",
  10688. "version": "3.0.2",
  10689. "source": {
  10690. "type": "git",
  10691. "url": "https://github.com/sebastianbergmann/version.git",
  10692. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10693. },
  10694. "dist": {
  10695. "type": "zip",
  10696. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10697. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10698. "shasum": "",
  10699. "mirrors": [
  10700. {
  10701. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10702. "preferred": true
  10703. }
  10704. ]
  10705. },
  10706. "require": {
  10707. "php": ">=7.3"
  10708. },
  10709. "type": "library",
  10710. "extra": {
  10711. "branch-alias": {
  10712. "dev-master": "3.0-dev"
  10713. }
  10714. },
  10715. "autoload": {
  10716. "classmap": [
  10717. "src/"
  10718. ]
  10719. },
  10720. "notification-url": "https://packagist.org/downloads/",
  10721. "license": [
  10722. "BSD-3-Clause"
  10723. ],
  10724. "authors": [
  10725. {
  10726. "name": "Sebastian Bergmann",
  10727. "email": "sebastian@phpunit.de",
  10728. "role": "lead"
  10729. }
  10730. ],
  10731. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10732. "homepage": "https://github.com/sebastianbergmann/version",
  10733. "support": {
  10734. "issues": "https://github.com/sebastianbergmann/version/issues",
  10735. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10736. },
  10737. "funding": [
  10738. {
  10739. "url": "https://github.com/sebastianbergmann",
  10740. "type": "github"
  10741. }
  10742. ],
  10743. "time": "2020-09-28T06:39:44+00:00"
  10744. },
  10745. {
  10746. "name": "theseer/tokenizer",
  10747. "version": "1.2.1",
  10748. "source": {
  10749. "type": "git",
  10750. "url": "https://github.com/theseer/tokenizer.git",
  10751. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10752. },
  10753. "dist": {
  10754. "type": "zip",
  10755. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10756. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10757. "shasum": "",
  10758. "mirrors": [
  10759. {
  10760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10761. "preferred": true
  10762. }
  10763. ]
  10764. },
  10765. "require": {
  10766. "ext-dom": "*",
  10767. "ext-tokenizer": "*",
  10768. "ext-xmlwriter": "*",
  10769. "php": "^7.2 || ^8.0"
  10770. },
  10771. "type": "library",
  10772. "autoload": {
  10773. "classmap": [
  10774. "src/"
  10775. ]
  10776. },
  10777. "notification-url": "https://packagist.org/downloads/",
  10778. "license": [
  10779. "BSD-3-Clause"
  10780. ],
  10781. "authors": [
  10782. {
  10783. "name": "Arne Blankerts",
  10784. "email": "arne@blankerts.de",
  10785. "role": "Developer"
  10786. }
  10787. ],
  10788. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10789. "support": {
  10790. "issues": "https://github.com/theseer/tokenizer/issues",
  10791. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10792. },
  10793. "funding": [
  10794. {
  10795. "url": "https://github.com/theseer",
  10796. "type": "github"
  10797. }
  10798. ],
  10799. "time": "2021-07-28T10:34:58+00:00"
  10800. }
  10801. ],
  10802. "aliases": [],
  10803. "minimum-stability": "dev",
  10804. "stability-flags": [],
  10805. "prefer-stable": true,
  10806. "prefer-lowest": false,
  10807. "platform": {
  10808. "php": "^8.0",
  10809. "ext-curl": "*",
  10810. "ext-gd": "*",
  10811. "ext-json": "*",
  10812. "ext-libxml": "*",
  10813. "ext-simplexml": "*"
  10814. },
  10815. "platform-dev": [],
  10816. "plugin-api-version": "2.1.0"
  10817. }