composer.lock 456 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644
  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": "c91d47386ef9d2fbcabd043f7a00e4ac",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/39ece8d385ce2f5e03718c693932d83ab0cb5972",
  20. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972",
  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 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  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.3.0"
  65. },
  66. "time": "2022-07-12T02:52:50+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/client",
  70. "version": "1.5.31",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  74. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/19224d92fe27ab8ef501d77d4891e7660bc023c1",
  79. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1",
  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. "clagiordano/weblibs-configmanager": "^1.0",
  91. "danielstjules/stringy": "^3.1",
  92. "ext-curl": "*",
  93. "ext-json": "*",
  94. "ext-libxml": "*",
  95. "ext-mbstring": "*",
  96. "ext-openssl": "*",
  97. "ext-simplexml": "*",
  98. "ext-xmlwriter": "*",
  99. "guzzlehttp/guzzle": "^6.3|^7.0",
  100. "mtdowling/jmespath.php": "^2.5",
  101. "php": ">=5.5"
  102. },
  103. "require-dev": {
  104. "composer/composer": "^1.8",
  105. "drupal/coder": "^8.3",
  106. "ext-dom": "*",
  107. "ext-pcre": "*",
  108. "ext-sockets": "*",
  109. "ext-spl": "*",
  110. "league/climate": "^3.2.4",
  111. "mikey179/vfsstream": "^1.6",
  112. "monolog/monolog": "^1.24",
  113. "phpunit/phpunit": "^5.7.27|^6.1",
  114. "psr/cache": "^1.0",
  115. "symfony/dotenv": "^3.4",
  116. "symfony/var-dumper": "^3.4"
  117. },
  118. "suggest": {
  119. "ext-sockets": "To use client-side monitoring"
  120. },
  121. "type": "library",
  122. "autoload": {
  123. "files": [
  124. "src/Functions.php"
  125. ],
  126. "psr-4": {
  127. "AlibabaCloud\\Client\\": "src"
  128. }
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "Apache-2.0"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Alibaba Cloud SDK",
  137. "email": "sdk-team@alibabacloud.com",
  138. "homepage": "http://www.alibabacloud.com"
  139. }
  140. ],
  141. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  142. "homepage": "https://www.alibabacloud.com/",
  143. "keywords": [
  144. "alibaba",
  145. "alibabacloud",
  146. "aliyun",
  147. "client",
  148. "cloud",
  149. "library",
  150. "sdk",
  151. "tool"
  152. ],
  153. "support": {
  154. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  155. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  156. },
  157. "time": "2021-05-13T06:26:38+00:00"
  158. },
  159. {
  160. "name": "alibabacloud/iot",
  161. "version": "1.8.958",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/alibabacloud-sdk-php/iot.git",
  165. "reference": "1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/alibabacloud-sdk-php/iot/zipball/1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea",
  170. "reference": "1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea",
  171. "shasum": "",
  172. "mirrors": [
  173. {
  174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  175. "preferred": true
  176. }
  177. ]
  178. },
  179. "require": {
  180. "alibabacloud/client": "^1.5",
  181. "php": ">=5.5"
  182. },
  183. "type": "library",
  184. "autoload": {
  185. "psr-4": {
  186. "AlibabaCloud\\Iot\\": ""
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "Apache-2.0"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Alibaba Cloud SDK",
  196. "email": "sdk-team@alibabacloud.com",
  197. "homepage": "http://www.alibabacloud.com"
  198. }
  199. ],
  200. "description": "Alibaba Cloud Iot SDK for PHP",
  201. "homepage": "https://www.alibabacloud.com/",
  202. "keywords": [
  203. "alibaba",
  204. "alibabacloud",
  205. "aliyun",
  206. "cloud",
  207. "iot",
  208. "library",
  209. "sdk"
  210. ],
  211. "support": {
  212. "issues": "https://github.com/alibabacloud-sdk-php/iot/issues",
  213. "source": "https://github.com/alibabacloud-sdk-php/iot"
  214. },
  215. "time": "2021-04-29T09:15:22+00:00"
  216. },
  217. {
  218. "name": "alibabacloud/tea",
  219. "version": "3.1.24",
  220. "source": {
  221. "type": "git",
  222. "url": "https://github.com/aliyun/tea-php.git",
  223. "reference": "bb33395f47db3847d1940d6eb8ba1e56cd0623cb"
  224. },
  225. "dist": {
  226. "type": "zip",
  227. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/bb33395f47db3847d1940d6eb8ba1e56cd0623cb",
  228. "reference": "bb33395f47db3847d1940d6eb8ba1e56cd0623cb",
  229. "shasum": "",
  230. "mirrors": [
  231. {
  232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  233. "preferred": true
  234. }
  235. ]
  236. },
  237. "require": {
  238. "adbario/php-dot-notation": "^2.3",
  239. "ext-curl": "*",
  240. "ext-json": "*",
  241. "ext-libxml": "*",
  242. "ext-mbstring": "*",
  243. "ext-openssl": "*",
  244. "ext-simplexml": "*",
  245. "ext-xmlwriter": "*",
  246. "guzzlehttp/guzzle": "^6.3|^7.0",
  247. "php": ">=5.5"
  248. },
  249. "require-dev": {
  250. "phpunit/phpunit": "*",
  251. "symfony/dotenv": "^3.4",
  252. "symfony/var-dumper": "^3.4"
  253. },
  254. "suggest": {
  255. "ext-sockets": "To use client-side monitoring"
  256. },
  257. "type": "library",
  258. "autoload": {
  259. "psr-4": {
  260. "AlibabaCloud\\Tea\\": "src"
  261. }
  262. },
  263. "notification-url": "https://packagist.org/downloads/",
  264. "license": [
  265. "Apache-2.0"
  266. ],
  267. "authors": [
  268. {
  269. "name": "Alibaba Cloud SDK",
  270. "email": "sdk-team@alibabacloud.com",
  271. "homepage": "http://www.alibabacloud.com"
  272. }
  273. ],
  274. "description": "Client of Tea for PHP",
  275. "homepage": "https://www.alibabacloud.com/",
  276. "keywords": [
  277. "alibabacloud",
  278. "client",
  279. "cloud",
  280. "tea"
  281. ],
  282. "support": {
  283. "issues": "https://github.com/aliyun/tea-php/issues",
  284. "source": "https://github.com/aliyun/tea-php"
  285. },
  286. "time": "2022-07-18T11:27:29+00:00"
  287. },
  288. {
  289. "name": "alibabacloud/tea-fileform",
  290. "version": "0.3.4",
  291. "source": {
  292. "type": "git",
  293. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  294. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  295. },
  296. "dist": {
  297. "type": "zip",
  298. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  299. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  300. "shasum": "",
  301. "mirrors": [
  302. {
  303. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  304. "preferred": true
  305. }
  306. ]
  307. },
  308. "require": {
  309. "alibabacloud/tea": "^3.0",
  310. "php": ">5.5"
  311. },
  312. "require-dev": {
  313. "phpunit/phpunit": "^4.8.35|^5.4.3"
  314. },
  315. "type": "library",
  316. "autoload": {
  317. "psr-4": {
  318. "AlibabaCloud\\Tea\\FileForm\\": "src"
  319. }
  320. },
  321. "notification-url": "https://packagist.org/downloads/",
  322. "license": [
  323. "Apache-2.0"
  324. ],
  325. "authors": [
  326. {
  327. "name": "Alibaba Cloud SDK",
  328. "email": "sdk-team@alibabacloud.com"
  329. }
  330. ],
  331. "description": "Alibaba Cloud Tea File Library for PHP",
  332. "support": {
  333. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  334. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  335. },
  336. "time": "2020-12-01T07:24:35+00:00"
  337. },
  338. {
  339. "name": "alipaysdk/easysdk",
  340. "version": "2.2.3",
  341. "source": {
  342. "type": "git",
  343. "url": "https://github.com/alipay/alipay-easysdk.git",
  344. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5"
  345. },
  346. "dist": {
  347. "type": "zip",
  348. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/c6008839a22a5fca08e9f8536730f7abfed522d5",
  349. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5",
  350. "shasum": "",
  351. "mirrors": [
  352. {
  353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  354. "preferred": true
  355. }
  356. ]
  357. },
  358. "require": {
  359. "alibabacloud/tea": "^3.1",
  360. "alibabacloud/tea-fileform": "^0.3.2",
  361. "ext-ctype": "*",
  362. "ext-curl": "*",
  363. "ext-dom": "*",
  364. "ext-fileinfo": "*",
  365. "ext-json": "*",
  366. "ext-libxml": "*",
  367. "ext-mbstring": "*",
  368. "ext-openssl": "*",
  369. "ext-simplexml": "*",
  370. "ext-xmlwriter": "*",
  371. "guzzlehttp/guzzle": ">=6.3",
  372. "php": ">=7.0"
  373. },
  374. "require-dev": {
  375. "phpunit/phpunit": "^7.5"
  376. },
  377. "type": "library",
  378. "autoload": {
  379. "psr-4": {
  380. "Alipay\\EasySDK\\": "php/src/"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "Apache-2.0"
  386. ],
  387. "authors": [
  388. {
  389. "name": "junying.wjy",
  390. "email": "junying.wjy@antfin.com"
  391. }
  392. ],
  393. "description": "支付宝官方 Alipay Easy SDK",
  394. "support": {
  395. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.3"
  396. },
  397. "time": "2022-11-28T14:04:57+00:00"
  398. },
  399. {
  400. "name": "aliyuncs/oss-sdk-php",
  401. "version": "v2.5.0",
  402. "source": {
  403. "type": "git",
  404. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  405. "reference": "f0413667d765855eb0aaa728b596801464ffdb06"
  406. },
  407. "dist": {
  408. "type": "zip",
  409. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/f0413667d765855eb0aaa728b596801464ffdb06",
  410. "reference": "f0413667d765855eb0aaa728b596801464ffdb06",
  411. "shasum": "",
  412. "mirrors": [
  413. {
  414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  415. "preferred": true
  416. }
  417. ]
  418. },
  419. "require": {
  420. "php": ">=5.3"
  421. },
  422. "require-dev": {
  423. "phpunit/phpunit": "*",
  424. "satooshi/php-coveralls": "*"
  425. },
  426. "type": "library",
  427. "autoload": {
  428. "psr-4": {
  429. "OSS\\": "src/OSS"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Aliyuncs",
  439. "homepage": "http://www.aliyun.com"
  440. }
  441. ],
  442. "description": "Aliyun OSS SDK for PHP",
  443. "homepage": "http://www.aliyun.com/product/oss/",
  444. "support": {
  445. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  446. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.5.0"
  447. },
  448. "time": "2022-05-13T07:41:28+00:00"
  449. },
  450. {
  451. "name": "api-ecosystem-for-laravel/dingo-api",
  452. "version": "v3.1.1",
  453. "source": {
  454. "type": "git",
  455. "url": "https://github.com/api-ecosystem-for-laravel/dingo-api.git",
  456. "reference": "ac4de98c1a7b1f533d31623a3df1a17abf0af23e"
  457. },
  458. "dist": {
  459. "type": "zip",
  460. "url": "https://api.github.com/repos/api-ecosystem-for-laravel/dingo-api/zipball/ac4de98c1a7b1f533d31623a3df1a17abf0af23e",
  461. "reference": "ac4de98c1a7b1f533d31623a3df1a17abf0af23e",
  462. "shasum": "",
  463. "mirrors": [
  464. {
  465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  466. "preferred": true
  467. }
  468. ]
  469. },
  470. "require": {
  471. "dingo/blueprint": "^0.4",
  472. "illuminate/routing": "^7.0|^8.0",
  473. "illuminate/support": "^7.0|^8.0",
  474. "league/fractal": "^0.19",
  475. "php": "^7.2.5|^8.0"
  476. },
  477. "require-dev": {
  478. "friendsofphp/php-cs-fixer": "~2",
  479. "illuminate/auth": "^7.0|^8.0",
  480. "illuminate/cache": "^7.0|^8.0",
  481. "illuminate/console": "^7.0|^8.0",
  482. "illuminate/database": "^7.0|^8.0",
  483. "illuminate/events": "^7.0|^8.0",
  484. "illuminate/filesystem": "^7.0|^8.0",
  485. "illuminate/log": "^7.0|^8.0",
  486. "illuminate/pagination": "^7.0|^8.0",
  487. "laravel/lumen-framework": "^7.0|^8.0",
  488. "mockery/mockery": "~1.0",
  489. "php-open-source-saver/jwt-auth": "^1.4",
  490. "phpunit/phpunit": "^8.5|^9.0",
  491. "squizlabs/php_codesniffer": "~2.0"
  492. },
  493. "suggest": {
  494. "php-open-source-saver/jwt-auth": "Protect your API with JSON Web Tokens."
  495. },
  496. "type": "library",
  497. "extra": {
  498. "branch-alias": {
  499. "dev-master": "2.0-dev"
  500. },
  501. "laravel": {
  502. "providers": [
  503. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  504. ],
  505. "aliases": {
  506. "API": "Dingo\\Api\\Facade\\API"
  507. }
  508. }
  509. },
  510. "autoload": {
  511. "files": [
  512. "src/helpers.php"
  513. ],
  514. "psr-4": {
  515. "Dingo\\Api\\": "src/"
  516. }
  517. },
  518. "notification-url": "https://packagist.org/downloads/",
  519. "license": [
  520. "BSD-3-Clause"
  521. ],
  522. "authors": [
  523. {
  524. "name": "Jason Lewis",
  525. "email": "jason.lewis1991@gmail.com"
  526. }
  527. ],
  528. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  529. "keywords": [
  530. "api",
  531. "dingo",
  532. "laravel",
  533. "restful"
  534. ],
  535. "support": {
  536. "issues": "https://github.com/api-ecosystem-for-laravel/dingo-api/issues",
  537. "source": "https://github.com/api-ecosystem-for-laravel/dingo-api/tree/v3.1.1"
  538. },
  539. "time": "2022-01-30T13:37:55+00:00"
  540. },
  541. {
  542. "name": "asm89/stack-cors",
  543. "version": "v2.1.1",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/asm89/stack-cors.git",
  547. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  552. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  553. "shasum": "",
  554. "mirrors": [
  555. {
  556. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  557. "preferred": true
  558. }
  559. ]
  560. },
  561. "require": {
  562. "php": "^7.2|^8.0",
  563. "symfony/http-foundation": "^4|^5|^6",
  564. "symfony/http-kernel": "^4|^5|^6"
  565. },
  566. "require-dev": {
  567. "phpunit/phpunit": "^7|^9",
  568. "squizlabs/php_codesniffer": "^3.5"
  569. },
  570. "type": "library",
  571. "extra": {
  572. "branch-alias": {
  573. "dev-master": "2.1-dev"
  574. }
  575. },
  576. "autoload": {
  577. "psr-4": {
  578. "Asm89\\Stack\\": "src/"
  579. }
  580. },
  581. "notification-url": "https://packagist.org/downloads/",
  582. "license": [
  583. "MIT"
  584. ],
  585. "authors": [
  586. {
  587. "name": "Alexander",
  588. "email": "iam.asm89@gmail.com"
  589. }
  590. ],
  591. "description": "Cross-origin resource sharing library and stack middleware",
  592. "homepage": "https://github.com/asm89/stack-cors",
  593. "keywords": [
  594. "cors",
  595. "stack"
  596. ],
  597. "support": {
  598. "issues": "https://github.com/asm89/stack-cors/issues",
  599. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  600. },
  601. "time": "2022-01-18T09:12:03+00:00"
  602. },
  603. {
  604. "name": "box/spout",
  605. "version": "v3.3.0",
  606. "source": {
  607. "type": "git",
  608. "url": "https://github.com/box/spout.git",
  609. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  610. },
  611. "dist": {
  612. "type": "zip",
  613. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  614. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  615. "shasum": "",
  616. "mirrors": [
  617. {
  618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  619. "preferred": true
  620. }
  621. ]
  622. },
  623. "require": {
  624. "ext-dom": "*",
  625. "ext-xmlreader": "*",
  626. "ext-zip": "*",
  627. "php": ">=7.2.0"
  628. },
  629. "require-dev": {
  630. "friendsofphp/php-cs-fixer": "^2",
  631. "phpunit/phpunit": "^8"
  632. },
  633. "suggest": {
  634. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  635. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  636. },
  637. "type": "library",
  638. "extra": {
  639. "branch-alias": {
  640. "dev-master": "3.1.x-dev"
  641. }
  642. },
  643. "autoload": {
  644. "psr-4": {
  645. "Box\\Spout\\": "src/Spout"
  646. }
  647. },
  648. "notification-url": "https://packagist.org/downloads/",
  649. "license": [
  650. "Apache-2.0"
  651. ],
  652. "authors": [
  653. {
  654. "name": "Adrien Loison",
  655. "email": "adrien@box.com"
  656. }
  657. ],
  658. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  659. "homepage": "https://www.github.com/box/spout",
  660. "keywords": [
  661. "OOXML",
  662. "csv",
  663. "excel",
  664. "memory",
  665. "odf",
  666. "ods",
  667. "office",
  668. "open",
  669. "php",
  670. "read",
  671. "scale",
  672. "spreadsheet",
  673. "stream",
  674. "write",
  675. "xlsx"
  676. ],
  677. "support": {
  678. "issues": "https://github.com/box/spout/issues",
  679. "source": "https://github.com/box/spout/tree/v3.3.0"
  680. },
  681. "abandoned": true,
  682. "time": "2021-05-14T21:18:09+00:00"
  683. },
  684. {
  685. "name": "brick/math",
  686. "version": "0.9.3",
  687. "source": {
  688. "type": "git",
  689. "url": "https://github.com/brick/math.git",
  690. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  691. },
  692. "dist": {
  693. "type": "zip",
  694. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  695. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  696. "shasum": "",
  697. "mirrors": [
  698. {
  699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  700. "preferred": true
  701. }
  702. ]
  703. },
  704. "require": {
  705. "ext-json": "*",
  706. "php": "^7.1 || ^8.0"
  707. },
  708. "require-dev": {
  709. "php-coveralls/php-coveralls": "^2.2",
  710. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  711. "vimeo/psalm": "4.9.2"
  712. },
  713. "type": "library",
  714. "autoload": {
  715. "psr-4": {
  716. "Brick\\Math\\": "src/"
  717. }
  718. },
  719. "notification-url": "https://packagist.org/downloads/",
  720. "license": [
  721. "MIT"
  722. ],
  723. "description": "Arbitrary-precision arithmetic library",
  724. "keywords": [
  725. "Arbitrary-precision",
  726. "BigInteger",
  727. "BigRational",
  728. "arithmetic",
  729. "bigdecimal",
  730. "bignum",
  731. "brick",
  732. "math"
  733. ],
  734. "support": {
  735. "issues": "https://github.com/brick/math/issues",
  736. "source": "https://github.com/brick/math/tree/0.9.3"
  737. },
  738. "funding": [
  739. {
  740. "url": "https://github.com/BenMorel",
  741. "type": "github"
  742. },
  743. {
  744. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  745. "type": "tidelift"
  746. }
  747. ],
  748. "time": "2021-08-15T20:50:18+00:00"
  749. },
  750. {
  751. "name": "clagiordano/weblibs-configmanager",
  752. "version": "v1.2.0",
  753. "source": {
  754. "type": "git",
  755. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  756. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  757. },
  758. "dist": {
  759. "type": "zip",
  760. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  761. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  762. "shasum": "",
  763. "mirrors": [
  764. {
  765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  766. "preferred": true
  767. }
  768. ]
  769. },
  770. "require": {
  771. "php": ">=5.4"
  772. },
  773. "require-dev": {
  774. "clagiordano/phpunit-result-printer": "^1",
  775. "phpunit/phpunit": "^4.8"
  776. },
  777. "type": "library",
  778. "autoload": {
  779. "psr-4": {
  780. "clagiordano\\weblibs\\configmanager\\": "src/"
  781. }
  782. },
  783. "notification-url": "https://packagist.org/downloads/",
  784. "license": [
  785. "LGPL-3.0-or-later"
  786. ],
  787. "authors": [
  788. {
  789. "name": "Claudio Giordano",
  790. "email": "claudio.giordano@autistici.org",
  791. "role": "Developer"
  792. }
  793. ],
  794. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  795. "keywords": [
  796. "clagiordano",
  797. "configuration",
  798. "manager",
  799. "tool",
  800. "weblibs"
  801. ],
  802. "support": {
  803. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  804. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  805. },
  806. "time": "2021-05-18T17:55:57+00:00"
  807. },
  808. {
  809. "name": "danielstjules/stringy",
  810. "version": "3.1.0",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/danielstjules/Stringy.git",
  814. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  819. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  820. "shasum": "",
  821. "mirrors": [
  822. {
  823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  824. "preferred": true
  825. }
  826. ]
  827. },
  828. "require": {
  829. "php": ">=5.4.0",
  830. "symfony/polyfill-mbstring": "~1.1"
  831. },
  832. "require-dev": {
  833. "phpunit/phpunit": "~4.0"
  834. },
  835. "type": "library",
  836. "autoload": {
  837. "files": [
  838. "src/Create.php"
  839. ],
  840. "psr-4": {
  841. "Stringy\\": "src/"
  842. }
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "MIT"
  847. ],
  848. "authors": [
  849. {
  850. "name": "Daniel St. Jules",
  851. "email": "danielst.jules@gmail.com",
  852. "homepage": "http://www.danielstjules.com"
  853. }
  854. ],
  855. "description": "A string manipulation library with multibyte support",
  856. "homepage": "https://github.com/danielstjules/Stringy",
  857. "keywords": [
  858. "UTF",
  859. "helpers",
  860. "manipulation",
  861. "methods",
  862. "multibyte",
  863. "string",
  864. "utf-8",
  865. "utility",
  866. "utils"
  867. ],
  868. "support": {
  869. "issues": "https://github.com/danielstjules/Stringy/issues",
  870. "source": "https://github.com/danielstjules/Stringy"
  871. },
  872. "time": "2017-06-12T01:10:27+00:00"
  873. },
  874. {
  875. "name": "dcat/easy-excel",
  876. "version": "1.1.0",
  877. "source": {
  878. "type": "git",
  879. "url": "https://github.com/jqhph/easy-excel.git",
  880. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0"
  881. },
  882. "dist": {
  883. "type": "zip",
  884. "url": "https://api.github.com/repos/jqhph/easy-excel/zipball/20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  885. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  886. "shasum": "",
  887. "mirrors": [
  888. {
  889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  890. "preferred": true
  891. }
  892. ]
  893. },
  894. "require": {
  895. "box/spout": "~3",
  896. "league/flysystem": "~1|~2|~3",
  897. "php": ">=7.1.0"
  898. },
  899. "require-dev": {
  900. "friendsofphp/php-cs-fixer": "^2",
  901. "phpunit/phpunit": "~7|~8.0"
  902. },
  903. "type": "library",
  904. "autoload": {
  905. "psr-4": {
  906. "Dcat\\EasyExcel\\": "src/"
  907. }
  908. },
  909. "notification-url": "https://packagist.org/downloads/",
  910. "license": [
  911. "MIT"
  912. ],
  913. "authors": [
  914. {
  915. "name": "jqh",
  916. "email": "841324345@qq.com"
  917. }
  918. ],
  919. "description": "使用简单实用的语义化接口快速读写Excel文件",
  920. "homepage": "https://github.com/jqhph/easy-excel",
  921. "keywords": [
  922. "box spout",
  923. "csv",
  924. "easy excel",
  925. "excel",
  926. "ods",
  927. "office",
  928. "read",
  929. "spreadsheet",
  930. "stream",
  931. "xlsx"
  932. ],
  933. "support": {
  934. "issues": "https://github.com/jqhph/easy-excel/issues",
  935. "source": "https://github.com/jqhph/easy-excel/tree/1.1.0"
  936. },
  937. "time": "2022-03-03T03:04:13+00:00"
  938. },
  939. {
  940. "name": "dcat/laravel-admin",
  941. "version": "2.2.2-beta",
  942. "dist": {
  943. "type": "zip",
  944. "url": "https://mirrors.tencent.com/repository/composer/dcat/laravel-admin/2.2.2-beta/dcat-laravel-admin-2.2.2-beta.zip",
  945. "reference": "150f46486871b5ca57992f7eed3787e0c1c49bef",
  946. "shasum": ""
  947. },
  948. "require": {
  949. "doctrine/dbal": "^2.6|^3.0",
  950. "laravel/framework": "~5.5|~6.0|~7.0|~8.0|~9.0",
  951. "php": ">=7.1.0",
  952. "spatie/eloquent-sortable": "3.*|4.*"
  953. },
  954. "require-dev": {
  955. "fzaninotto/faker": "^1.4",
  956. "laravel/dusk": "~5.9|~6",
  957. "mockery/mockery": "^1.0",
  958. "phpstan/phpstan": "^0.12.0",
  959. "phpunit/phpunit": "^7.5|~9"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "laravel": {
  964. "providers": [
  965. "Dcat\\Admin\\AdminServiceProvider"
  966. ]
  967. }
  968. },
  969. "autoload": {
  970. "files": [
  971. "src/Support/helpers.php"
  972. ],
  973. "psr-4": {
  974. "Dcat\\Admin\\": "src/"
  975. }
  976. },
  977. "license": [
  978. "MIT"
  979. ],
  980. "authors": [
  981. {
  982. "name": "jqh",
  983. "email": "841324345@qq.com"
  984. }
  985. ],
  986. "description": "dcat admin",
  987. "homepage": "https://github.com/jqhph/dcat-admin",
  988. "keywords": [
  989. "admin",
  990. "dcat",
  991. "form",
  992. "grid",
  993. "laravel",
  994. "laravel admin"
  995. ],
  996. "time": "2022-06-27T14:42:39+00:00"
  997. },
  998. {
  999. "name": "dflydev/dot-access-data",
  1000. "version": "v3.0.1",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1004. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  1009. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  1010. "shasum": "",
  1011. "mirrors": [
  1012. {
  1013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1014. "preferred": true
  1015. }
  1016. ]
  1017. },
  1018. "require": {
  1019. "php": "^7.1 || ^8.0"
  1020. },
  1021. "require-dev": {
  1022. "phpstan/phpstan": "^0.12.42",
  1023. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1024. "scrutinizer/ocular": "1.6.0",
  1025. "squizlabs/php_codesniffer": "^3.5",
  1026. "vimeo/psalm": "^3.14"
  1027. },
  1028. "type": "library",
  1029. "extra": {
  1030. "branch-alias": {
  1031. "dev-main": "3.x-dev"
  1032. }
  1033. },
  1034. "autoload": {
  1035. "psr-4": {
  1036. "Dflydev\\DotAccessData\\": "src/"
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Dragonfly Development Inc.",
  1046. "email": "info@dflydev.com",
  1047. "homepage": "http://dflydev.com"
  1048. },
  1049. {
  1050. "name": "Beau Simensen",
  1051. "email": "beau@dflydev.com",
  1052. "homepage": "http://beausimensen.com"
  1053. },
  1054. {
  1055. "name": "Carlos Frutos",
  1056. "email": "carlos@kiwing.it",
  1057. "homepage": "https://github.com/cfrutos"
  1058. },
  1059. {
  1060. "name": "Colin O'Dell",
  1061. "email": "colinodell@gmail.com",
  1062. "homepage": "https://www.colinodell.com"
  1063. }
  1064. ],
  1065. "description": "Given a deep data structure, access data by dot notation.",
  1066. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1067. "keywords": [
  1068. "access",
  1069. "data",
  1070. "dot",
  1071. "notation"
  1072. ],
  1073. "support": {
  1074. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1075. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  1076. },
  1077. "time": "2021-08-13T13:06:58+00:00"
  1078. },
  1079. {
  1080. "name": "dingo/blueprint",
  1081. "version": "v0.4.3",
  1082. "source": {
  1083. "type": "git",
  1084. "url": "https://github.com/dingo/blueprint.git",
  1085. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88"
  1086. },
  1087. "dist": {
  1088. "type": "zip",
  1089. "url": "https://api.github.com/repos/dingo/blueprint/zipball/e3a8f19ae10716670079c3c162540756dbd20a88",
  1090. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88",
  1091. "shasum": "",
  1092. "mirrors": [
  1093. {
  1094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1095. "preferred": true
  1096. }
  1097. ]
  1098. },
  1099. "require": {
  1100. "doctrine/annotations": "~1.2",
  1101. "illuminate/filesystem": "^7.0|^8.0",
  1102. "illuminate/support": "^7.0|^8.0",
  1103. "php": "^7.2.5|^8.0",
  1104. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  1105. },
  1106. "require-dev": {
  1107. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  1108. "squizlabs/php_codesniffer": "~2.0"
  1109. },
  1110. "type": "library",
  1111. "extra": {
  1112. "branch-alias": {
  1113. "dev-master": "0.2-dev"
  1114. }
  1115. },
  1116. "autoload": {
  1117. "psr-4": {
  1118. "Dingo\\Blueprint\\": "src"
  1119. }
  1120. },
  1121. "notification-url": "https://packagist.org/downloads/",
  1122. "license": [
  1123. "BSD-3-Clause"
  1124. ],
  1125. "authors": [
  1126. {
  1127. "name": "Jason Lewis",
  1128. "email": "jason.lewis1991@gmail.com"
  1129. }
  1130. ],
  1131. "description": "API Blueprint documentation generator.",
  1132. "keywords": [
  1133. "api",
  1134. "blueprint",
  1135. "dingo",
  1136. "docs",
  1137. "laravel"
  1138. ],
  1139. "support": {
  1140. "issues": "https://github.com/dingo/blueprint/issues",
  1141. "source": "https://github.com/dingo/blueprint/tree/v0.4.3"
  1142. },
  1143. "time": "2021-04-30T11:20:38+00:00"
  1144. },
  1145. {
  1146. "name": "doctrine/annotations",
  1147. "version": "1.13.3",
  1148. "source": {
  1149. "type": "git",
  1150. "url": "https://github.com/doctrine/annotations.git",
  1151. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1152. },
  1153. "dist": {
  1154. "type": "zip",
  1155. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1156. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1157. "shasum": "",
  1158. "mirrors": [
  1159. {
  1160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1161. "preferred": true
  1162. }
  1163. ]
  1164. },
  1165. "require": {
  1166. "doctrine/lexer": "1.*",
  1167. "ext-tokenizer": "*",
  1168. "php": "^7.1 || ^8.0",
  1169. "psr/cache": "^1 || ^2 || ^3"
  1170. },
  1171. "require-dev": {
  1172. "doctrine/cache": "^1.11 || ^2.0",
  1173. "doctrine/coding-standard": "^6.0 || ^8.1",
  1174. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1175. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1176. "symfony/cache": "^4.4 || ^5.2",
  1177. "vimeo/psalm": "^4.10"
  1178. },
  1179. "type": "library",
  1180. "autoload": {
  1181. "psr-4": {
  1182. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1183. }
  1184. },
  1185. "notification-url": "https://packagist.org/downloads/",
  1186. "license": [
  1187. "MIT"
  1188. ],
  1189. "authors": [
  1190. {
  1191. "name": "Guilherme Blanco",
  1192. "email": "guilhermeblanco@gmail.com"
  1193. },
  1194. {
  1195. "name": "Roman Borschel",
  1196. "email": "roman@code-factory.org"
  1197. },
  1198. {
  1199. "name": "Benjamin Eberlei",
  1200. "email": "kontakt@beberlei.de"
  1201. },
  1202. {
  1203. "name": "Jonathan Wage",
  1204. "email": "jonwage@gmail.com"
  1205. },
  1206. {
  1207. "name": "Johannes Schmitt",
  1208. "email": "schmittjoh@gmail.com"
  1209. }
  1210. ],
  1211. "description": "Docblock Annotations Parser",
  1212. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1213. "keywords": [
  1214. "annotations",
  1215. "docblock",
  1216. "parser"
  1217. ],
  1218. "support": {
  1219. "issues": "https://github.com/doctrine/annotations/issues",
  1220. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1221. },
  1222. "time": "2022-07-02T10:48:51+00:00"
  1223. },
  1224. {
  1225. "name": "doctrine/cache",
  1226. "version": "2.2.0",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/doctrine/cache.git",
  1230. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1235. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1236. "shasum": "",
  1237. "mirrors": [
  1238. {
  1239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1240. "preferred": true
  1241. }
  1242. ]
  1243. },
  1244. "require": {
  1245. "php": "~7.1 || ^8.0"
  1246. },
  1247. "conflict": {
  1248. "doctrine/common": ">2.2,<2.4"
  1249. },
  1250. "require-dev": {
  1251. "cache/integration-tests": "dev-master",
  1252. "doctrine/coding-standard": "^9",
  1253. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1254. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1255. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1256. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1257. },
  1258. "type": "library",
  1259. "autoload": {
  1260. "psr-4": {
  1261. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1262. }
  1263. },
  1264. "notification-url": "https://packagist.org/downloads/",
  1265. "license": [
  1266. "MIT"
  1267. ],
  1268. "authors": [
  1269. {
  1270. "name": "Guilherme Blanco",
  1271. "email": "guilhermeblanco@gmail.com"
  1272. },
  1273. {
  1274. "name": "Roman Borschel",
  1275. "email": "roman@code-factory.org"
  1276. },
  1277. {
  1278. "name": "Benjamin Eberlei",
  1279. "email": "kontakt@beberlei.de"
  1280. },
  1281. {
  1282. "name": "Jonathan Wage",
  1283. "email": "jonwage@gmail.com"
  1284. },
  1285. {
  1286. "name": "Johannes Schmitt",
  1287. "email": "schmittjoh@gmail.com"
  1288. }
  1289. ],
  1290. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1291. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1292. "keywords": [
  1293. "abstraction",
  1294. "apcu",
  1295. "cache",
  1296. "caching",
  1297. "couchdb",
  1298. "memcached",
  1299. "php",
  1300. "redis",
  1301. "xcache"
  1302. ],
  1303. "support": {
  1304. "issues": "https://github.com/doctrine/cache/issues",
  1305. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1306. },
  1307. "funding": [
  1308. {
  1309. "url": "https://www.doctrine-project.org/sponsorship.html",
  1310. "type": "custom"
  1311. },
  1312. {
  1313. "url": "https://www.patreon.com/phpdoctrine",
  1314. "type": "patreon"
  1315. },
  1316. {
  1317. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1318. "type": "tidelift"
  1319. }
  1320. ],
  1321. "time": "2022-05-20T20:07:39+00:00"
  1322. },
  1323. {
  1324. "name": "doctrine/dbal",
  1325. "version": "3.3.7",
  1326. "source": {
  1327. "type": "git",
  1328. "url": "https://github.com/doctrine/dbal.git",
  1329. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a"
  1330. },
  1331. "dist": {
  1332. "type": "zip",
  1333. "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  1334. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  1335. "shasum": "",
  1336. "mirrors": [
  1337. {
  1338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1339. "preferred": true
  1340. }
  1341. ]
  1342. },
  1343. "require": {
  1344. "composer-runtime-api": "^2",
  1345. "doctrine/cache": "^1.11|^2.0",
  1346. "doctrine/deprecations": "^0.5.3|^1",
  1347. "doctrine/event-manager": "^1.0",
  1348. "php": "^7.3 || ^8.0",
  1349. "psr/cache": "^1|^2|^3",
  1350. "psr/log": "^1|^2|^3"
  1351. },
  1352. "require-dev": {
  1353. "doctrine/coding-standard": "9.0.0",
  1354. "jetbrains/phpstorm-stubs": "2022.1",
  1355. "phpstan/phpstan": "1.7.13",
  1356. "phpstan/phpstan-strict-rules": "^1.2",
  1357. "phpunit/phpunit": "9.5.20",
  1358. "psalm/plugin-phpunit": "0.16.1",
  1359. "squizlabs/php_codesniffer": "3.7.0",
  1360. "symfony/cache": "^5.2|^6.0",
  1361. "symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
  1362. "vimeo/psalm": "4.23.0"
  1363. },
  1364. "suggest": {
  1365. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1366. },
  1367. "bin": [
  1368. "bin/doctrine-dbal"
  1369. ],
  1370. "type": "library",
  1371. "autoload": {
  1372. "psr-4": {
  1373. "Doctrine\\DBAL\\": "src"
  1374. }
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "MIT"
  1379. ],
  1380. "authors": [
  1381. {
  1382. "name": "Guilherme Blanco",
  1383. "email": "guilhermeblanco@gmail.com"
  1384. },
  1385. {
  1386. "name": "Roman Borschel",
  1387. "email": "roman@code-factory.org"
  1388. },
  1389. {
  1390. "name": "Benjamin Eberlei",
  1391. "email": "kontakt@beberlei.de"
  1392. },
  1393. {
  1394. "name": "Jonathan Wage",
  1395. "email": "jonwage@gmail.com"
  1396. }
  1397. ],
  1398. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1399. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1400. "keywords": [
  1401. "abstraction",
  1402. "database",
  1403. "db2",
  1404. "dbal",
  1405. "mariadb",
  1406. "mssql",
  1407. "mysql",
  1408. "oci8",
  1409. "oracle",
  1410. "pdo",
  1411. "pgsql",
  1412. "postgresql",
  1413. "queryobject",
  1414. "sasql",
  1415. "sql",
  1416. "sqlite",
  1417. "sqlserver",
  1418. "sqlsrv"
  1419. ],
  1420. "support": {
  1421. "issues": "https://github.com/doctrine/dbal/issues",
  1422. "source": "https://github.com/doctrine/dbal/tree/3.3.7"
  1423. },
  1424. "funding": [
  1425. {
  1426. "url": "https://www.doctrine-project.org/sponsorship.html",
  1427. "type": "custom"
  1428. },
  1429. {
  1430. "url": "https://www.patreon.com/phpdoctrine",
  1431. "type": "patreon"
  1432. },
  1433. {
  1434. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1435. "type": "tidelift"
  1436. }
  1437. ],
  1438. "time": "2022-06-13T21:43:03+00:00"
  1439. },
  1440. {
  1441. "name": "doctrine/deprecations",
  1442. "version": "v1.0.0",
  1443. "source": {
  1444. "type": "git",
  1445. "url": "https://github.com/doctrine/deprecations.git",
  1446. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  1447. },
  1448. "dist": {
  1449. "type": "zip",
  1450. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1451. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1452. "shasum": "",
  1453. "mirrors": [
  1454. {
  1455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1456. "preferred": true
  1457. }
  1458. ]
  1459. },
  1460. "require": {
  1461. "php": "^7.1|^8.0"
  1462. },
  1463. "require-dev": {
  1464. "doctrine/coding-standard": "^9",
  1465. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  1466. "psr/log": "^1|^2|^3"
  1467. },
  1468. "suggest": {
  1469. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1470. },
  1471. "type": "library",
  1472. "autoload": {
  1473. "psr-4": {
  1474. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1475. }
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "MIT"
  1480. ],
  1481. "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.",
  1482. "homepage": "https://www.doctrine-project.org/",
  1483. "support": {
  1484. "issues": "https://github.com/doctrine/deprecations/issues",
  1485. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  1486. },
  1487. "time": "2022-05-02T15:47:09+00:00"
  1488. },
  1489. {
  1490. "name": "doctrine/event-manager",
  1491. "version": "1.1.1",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/doctrine/event-manager.git",
  1495. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1500. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1501. "shasum": "",
  1502. "mirrors": [
  1503. {
  1504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1505. "preferred": true
  1506. }
  1507. ]
  1508. },
  1509. "require": {
  1510. "php": "^7.1 || ^8.0"
  1511. },
  1512. "conflict": {
  1513. "doctrine/common": "<2.9@dev"
  1514. },
  1515. "require-dev": {
  1516. "doctrine/coding-standard": "^6.0",
  1517. "phpunit/phpunit": "^7.0"
  1518. },
  1519. "type": "library",
  1520. "extra": {
  1521. "branch-alias": {
  1522. "dev-master": "1.0.x-dev"
  1523. }
  1524. },
  1525. "autoload": {
  1526. "psr-4": {
  1527. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1528. }
  1529. },
  1530. "notification-url": "https://packagist.org/downloads/",
  1531. "license": [
  1532. "MIT"
  1533. ],
  1534. "authors": [
  1535. {
  1536. "name": "Guilherme Blanco",
  1537. "email": "guilhermeblanco@gmail.com"
  1538. },
  1539. {
  1540. "name": "Roman Borschel",
  1541. "email": "roman@code-factory.org"
  1542. },
  1543. {
  1544. "name": "Benjamin Eberlei",
  1545. "email": "kontakt@beberlei.de"
  1546. },
  1547. {
  1548. "name": "Jonathan Wage",
  1549. "email": "jonwage@gmail.com"
  1550. },
  1551. {
  1552. "name": "Johannes Schmitt",
  1553. "email": "schmittjoh@gmail.com"
  1554. },
  1555. {
  1556. "name": "Marco Pivetta",
  1557. "email": "ocramius@gmail.com"
  1558. }
  1559. ],
  1560. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1561. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1562. "keywords": [
  1563. "event",
  1564. "event dispatcher",
  1565. "event manager",
  1566. "event system",
  1567. "events"
  1568. ],
  1569. "support": {
  1570. "issues": "https://github.com/doctrine/event-manager/issues",
  1571. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1572. },
  1573. "funding": [
  1574. {
  1575. "url": "https://www.doctrine-project.org/sponsorship.html",
  1576. "type": "custom"
  1577. },
  1578. {
  1579. "url": "https://www.patreon.com/phpdoctrine",
  1580. "type": "patreon"
  1581. },
  1582. {
  1583. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1584. "type": "tidelift"
  1585. }
  1586. ],
  1587. "time": "2020-05-29T18:28:51+00:00"
  1588. },
  1589. {
  1590. "name": "doctrine/inflector",
  1591. "version": "2.0.4",
  1592. "source": {
  1593. "type": "git",
  1594. "url": "https://github.com/doctrine/inflector.git",
  1595. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  1596. },
  1597. "dist": {
  1598. "type": "zip",
  1599. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1600. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1601. "shasum": "",
  1602. "mirrors": [
  1603. {
  1604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1605. "preferred": true
  1606. }
  1607. ]
  1608. },
  1609. "require": {
  1610. "php": "^7.2 || ^8.0"
  1611. },
  1612. "require-dev": {
  1613. "doctrine/coding-standard": "^8.2",
  1614. "phpstan/phpstan": "^0.12",
  1615. "phpstan/phpstan-phpunit": "^0.12",
  1616. "phpstan/phpstan-strict-rules": "^0.12",
  1617. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1618. "vimeo/psalm": "^4.10"
  1619. },
  1620. "type": "library",
  1621. "autoload": {
  1622. "psr-4": {
  1623. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1624. }
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "Guilherme Blanco",
  1633. "email": "guilhermeblanco@gmail.com"
  1634. },
  1635. {
  1636. "name": "Roman Borschel",
  1637. "email": "roman@code-factory.org"
  1638. },
  1639. {
  1640. "name": "Benjamin Eberlei",
  1641. "email": "kontakt@beberlei.de"
  1642. },
  1643. {
  1644. "name": "Jonathan Wage",
  1645. "email": "jonwage@gmail.com"
  1646. },
  1647. {
  1648. "name": "Johannes Schmitt",
  1649. "email": "schmittjoh@gmail.com"
  1650. }
  1651. ],
  1652. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1653. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1654. "keywords": [
  1655. "inflection",
  1656. "inflector",
  1657. "lowercase",
  1658. "manipulation",
  1659. "php",
  1660. "plural",
  1661. "singular",
  1662. "strings",
  1663. "uppercase",
  1664. "words"
  1665. ],
  1666. "support": {
  1667. "issues": "https://github.com/doctrine/inflector/issues",
  1668. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1669. },
  1670. "funding": [
  1671. {
  1672. "url": "https://www.doctrine-project.org/sponsorship.html",
  1673. "type": "custom"
  1674. },
  1675. {
  1676. "url": "https://www.patreon.com/phpdoctrine",
  1677. "type": "patreon"
  1678. },
  1679. {
  1680. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1681. "type": "tidelift"
  1682. }
  1683. ],
  1684. "time": "2021-10-22T20:16:43+00:00"
  1685. },
  1686. {
  1687. "name": "doctrine/lexer",
  1688. "version": "1.2.3",
  1689. "source": {
  1690. "type": "git",
  1691. "url": "https://github.com/doctrine/lexer.git",
  1692. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1693. },
  1694. "dist": {
  1695. "type": "zip",
  1696. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1697. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1698. "shasum": "",
  1699. "mirrors": [
  1700. {
  1701. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1702. "preferred": true
  1703. }
  1704. ]
  1705. },
  1706. "require": {
  1707. "php": "^7.1 || ^8.0"
  1708. },
  1709. "require-dev": {
  1710. "doctrine/coding-standard": "^9.0",
  1711. "phpstan/phpstan": "^1.3",
  1712. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1713. "vimeo/psalm": "^4.11"
  1714. },
  1715. "type": "library",
  1716. "autoload": {
  1717. "psr-4": {
  1718. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1719. }
  1720. },
  1721. "notification-url": "https://packagist.org/downloads/",
  1722. "license": [
  1723. "MIT"
  1724. ],
  1725. "authors": [
  1726. {
  1727. "name": "Guilherme Blanco",
  1728. "email": "guilhermeblanco@gmail.com"
  1729. },
  1730. {
  1731. "name": "Roman Borschel",
  1732. "email": "roman@code-factory.org"
  1733. },
  1734. {
  1735. "name": "Johannes Schmitt",
  1736. "email": "schmittjoh@gmail.com"
  1737. }
  1738. ],
  1739. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1740. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1741. "keywords": [
  1742. "annotations",
  1743. "docblock",
  1744. "lexer",
  1745. "parser",
  1746. "php"
  1747. ],
  1748. "support": {
  1749. "issues": "https://github.com/doctrine/lexer/issues",
  1750. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1751. },
  1752. "funding": [
  1753. {
  1754. "url": "https://www.doctrine-project.org/sponsorship.html",
  1755. "type": "custom"
  1756. },
  1757. {
  1758. "url": "https://www.patreon.com/phpdoctrine",
  1759. "type": "patreon"
  1760. },
  1761. {
  1762. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1763. "type": "tidelift"
  1764. }
  1765. ],
  1766. "time": "2022-02-28T11:07:21+00:00"
  1767. },
  1768. {
  1769. "name": "dragonmantank/cron-expression",
  1770. "version": "v3.3.1",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/dragonmantank/cron-expression.git",
  1774. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1779. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1780. "shasum": "",
  1781. "mirrors": [
  1782. {
  1783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1784. "preferred": true
  1785. }
  1786. ]
  1787. },
  1788. "require": {
  1789. "php": "^7.2|^8.0",
  1790. "webmozart/assert": "^1.0"
  1791. },
  1792. "replace": {
  1793. "mtdowling/cron-expression": "^1.0"
  1794. },
  1795. "require-dev": {
  1796. "phpstan/extension-installer": "^1.0",
  1797. "phpstan/phpstan": "^1.0",
  1798. "phpstan/phpstan-webmozart-assert": "^1.0",
  1799. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1800. },
  1801. "type": "library",
  1802. "autoload": {
  1803. "psr-4": {
  1804. "Cron\\": "src/Cron/"
  1805. }
  1806. },
  1807. "notification-url": "https://packagist.org/downloads/",
  1808. "license": [
  1809. "MIT"
  1810. ],
  1811. "authors": [
  1812. {
  1813. "name": "Chris Tankersley",
  1814. "email": "chris@ctankersley.com",
  1815. "homepage": "https://github.com/dragonmantank"
  1816. }
  1817. ],
  1818. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1819. "keywords": [
  1820. "cron",
  1821. "schedule"
  1822. ],
  1823. "support": {
  1824. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1825. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  1826. },
  1827. "funding": [
  1828. {
  1829. "url": "https://github.com/dragonmantank",
  1830. "type": "github"
  1831. }
  1832. ],
  1833. "time": "2022-01-18T15:43:28+00:00"
  1834. },
  1835. {
  1836. "name": "easywechat-composer/easywechat-composer",
  1837. "version": "1.4.1",
  1838. "source": {
  1839. "type": "git",
  1840. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1841. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1842. },
  1843. "dist": {
  1844. "type": "zip",
  1845. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1846. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1847. "shasum": "",
  1848. "mirrors": [
  1849. {
  1850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1851. "preferred": true
  1852. }
  1853. ]
  1854. },
  1855. "require": {
  1856. "composer-plugin-api": "^1.0 || ^2.0",
  1857. "php": ">=7.0"
  1858. },
  1859. "require-dev": {
  1860. "composer/composer": "^1.0 || ^2.0",
  1861. "phpunit/phpunit": "^6.5 || ^7.0"
  1862. },
  1863. "type": "composer-plugin",
  1864. "extra": {
  1865. "class": "EasyWeChatComposer\\Plugin"
  1866. },
  1867. "autoload": {
  1868. "psr-4": {
  1869. "EasyWeChatComposer\\": "src/"
  1870. }
  1871. },
  1872. "notification-url": "https://packagist.org/downloads/",
  1873. "license": [
  1874. "MIT"
  1875. ],
  1876. "authors": [
  1877. {
  1878. "name": "张铭阳",
  1879. "email": "mingyoungcheung@gmail.com"
  1880. }
  1881. ],
  1882. "description": "The composer plugin for EasyWeChat",
  1883. "support": {
  1884. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1885. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1886. },
  1887. "time": "2021-07-05T04:03:22+00:00"
  1888. },
  1889. {
  1890. "name": "egulias/email-validator",
  1891. "version": "2.1.25",
  1892. "source": {
  1893. "type": "git",
  1894. "url": "https://github.com/egulias/EmailValidator.git",
  1895. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1896. },
  1897. "dist": {
  1898. "type": "zip",
  1899. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1900. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1901. "shasum": "",
  1902. "mirrors": [
  1903. {
  1904. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1905. "preferred": true
  1906. }
  1907. ]
  1908. },
  1909. "require": {
  1910. "doctrine/lexer": "^1.0.1",
  1911. "php": ">=5.5",
  1912. "symfony/polyfill-intl-idn": "^1.10"
  1913. },
  1914. "require-dev": {
  1915. "dominicsayers/isemail": "^3.0.7",
  1916. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1917. "satooshi/php-coveralls": "^1.0.1"
  1918. },
  1919. "suggest": {
  1920. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1921. },
  1922. "type": "library",
  1923. "extra": {
  1924. "branch-alias": {
  1925. "dev-master": "2.1.x-dev"
  1926. }
  1927. },
  1928. "autoload": {
  1929. "psr-4": {
  1930. "Egulias\\EmailValidator\\": "src"
  1931. }
  1932. },
  1933. "notification-url": "https://packagist.org/downloads/",
  1934. "license": [
  1935. "MIT"
  1936. ],
  1937. "authors": [
  1938. {
  1939. "name": "Eduardo Gulias Davis"
  1940. }
  1941. ],
  1942. "description": "A library for validating emails against several RFCs",
  1943. "homepage": "https://github.com/egulias/EmailValidator",
  1944. "keywords": [
  1945. "email",
  1946. "emailvalidation",
  1947. "emailvalidator",
  1948. "validation",
  1949. "validator"
  1950. ],
  1951. "support": {
  1952. "issues": "https://github.com/egulias/EmailValidator/issues",
  1953. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1954. },
  1955. "funding": [
  1956. {
  1957. "url": "https://github.com/egulias",
  1958. "type": "github"
  1959. }
  1960. ],
  1961. "time": "2020-12-29T14:50:06+00:00"
  1962. },
  1963. {
  1964. "name": "fruitcake/laravel-cors",
  1965. "version": "v2.2.0",
  1966. "source": {
  1967. "type": "git",
  1968. "url": "https://github.com/fruitcake/laravel-cors.git",
  1969. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1970. },
  1971. "dist": {
  1972. "type": "zip",
  1973. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1974. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1975. "shasum": "",
  1976. "mirrors": [
  1977. {
  1978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1979. "preferred": true
  1980. }
  1981. ]
  1982. },
  1983. "require": {
  1984. "asm89/stack-cors": "^2.0.1",
  1985. "illuminate/contracts": "^6|^7|^8|^9",
  1986. "illuminate/support": "^6|^7|^8|^9",
  1987. "php": ">=7.2"
  1988. },
  1989. "require-dev": {
  1990. "laravel/framework": "^6|^7.24|^8",
  1991. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1992. "phpunit/phpunit": "^6|^7|^8|^9",
  1993. "squizlabs/php_codesniffer": "^3.5"
  1994. },
  1995. "type": "library",
  1996. "extra": {
  1997. "branch-alias": {
  1998. "dev-master": "2.1-dev"
  1999. },
  2000. "laravel": {
  2001. "providers": [
  2002. "Fruitcake\\Cors\\CorsServiceProvider"
  2003. ]
  2004. }
  2005. },
  2006. "autoload": {
  2007. "psr-4": {
  2008. "Fruitcake\\Cors\\": "src/"
  2009. }
  2010. },
  2011. "notification-url": "https://packagist.org/downloads/",
  2012. "license": [
  2013. "MIT"
  2014. ],
  2015. "authors": [
  2016. {
  2017. "name": "Fruitcake",
  2018. "homepage": "https://fruitcake.nl"
  2019. },
  2020. {
  2021. "name": "Barry vd. Heuvel",
  2022. "email": "barryvdh@gmail.com"
  2023. }
  2024. ],
  2025. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  2026. "keywords": [
  2027. "api",
  2028. "cors",
  2029. "crossdomain",
  2030. "laravel"
  2031. ],
  2032. "support": {
  2033. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  2034. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  2035. },
  2036. "funding": [
  2037. {
  2038. "url": "https://fruitcake.nl",
  2039. "type": "custom"
  2040. },
  2041. {
  2042. "url": "https://github.com/barryvdh",
  2043. "type": "github"
  2044. }
  2045. ],
  2046. "time": "2022-02-23T14:25:13+00:00"
  2047. },
  2048. {
  2049. "name": "giggsey/libphonenumber-for-php",
  2050. "version": "8.12.50",
  2051. "source": {
  2052. "type": "git",
  2053. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  2054. "reference": "526c4b7f6d5e173770d8645e76340d7eb25dc348"
  2055. },
  2056. "dist": {
  2057. "type": "zip",
  2058. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/526c4b7f6d5e173770d8645e76340d7eb25dc348",
  2059. "reference": "526c4b7f6d5e173770d8645e76340d7eb25dc348",
  2060. "shasum": "",
  2061. "mirrors": [
  2062. {
  2063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2064. "preferred": true
  2065. }
  2066. ]
  2067. },
  2068. "require": {
  2069. "giggsey/locale": "^1.7|^2.0",
  2070. "php": ">=5.3.2",
  2071. "symfony/polyfill-mbstring": "^1.17"
  2072. },
  2073. "require-dev": {
  2074. "pear/pear-core-minimal": "^1.9",
  2075. "pear/pear_exception": "^1.0",
  2076. "pear/versioncontrol_git": "^0.5",
  2077. "phing/phing": "^2.7",
  2078. "php-coveralls/php-coveralls": "^1.0|^2.0",
  2079. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  2080. "symfony/phpunit-bridge": "^4.2 || ^5"
  2081. },
  2082. "type": "library",
  2083. "extra": {
  2084. "branch-alias": {
  2085. "dev-master": "8.x-dev"
  2086. }
  2087. },
  2088. "autoload": {
  2089. "psr-4": {
  2090. "libphonenumber\\": "src/"
  2091. },
  2092. "exclude-from-classmap": [
  2093. "/src/data/",
  2094. "/src/carrier/data/",
  2095. "/src/geocoding/data/",
  2096. "/src/timezone/data/"
  2097. ]
  2098. },
  2099. "notification-url": "https://packagist.org/downloads/",
  2100. "license": [
  2101. "Apache-2.0"
  2102. ],
  2103. "authors": [
  2104. {
  2105. "name": "Joshua Gigg",
  2106. "email": "giggsey@gmail.com",
  2107. "homepage": "https://giggsey.com/"
  2108. }
  2109. ],
  2110. "description": "PHP Port of Google's libphonenumber",
  2111. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  2112. "keywords": [
  2113. "geocoding",
  2114. "geolocation",
  2115. "libphonenumber",
  2116. "mobile",
  2117. "phonenumber",
  2118. "validation"
  2119. ],
  2120. "support": {
  2121. "irc": "irc://irc.appliedirc.com/lobby",
  2122. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  2123. "source": "https://github.com/giggsey/libphonenumber-for-php"
  2124. },
  2125. "time": "2022-06-09T14:55:00+00:00"
  2126. },
  2127. {
  2128. "name": "giggsey/locale",
  2129. "version": "2.2",
  2130. "source": {
  2131. "type": "git",
  2132. "url": "https://github.com/giggsey/Locale.git",
  2133. "reference": "9c1dca769253f6a3e81f9a5c167f53b6a54ab635"
  2134. },
  2135. "dist": {
  2136. "type": "zip",
  2137. "url": "https://api.github.com/repos/giggsey/Locale/zipball/9c1dca769253f6a3e81f9a5c167f53b6a54ab635",
  2138. "reference": "9c1dca769253f6a3e81f9a5c167f53b6a54ab635",
  2139. "shasum": "",
  2140. "mirrors": [
  2141. {
  2142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2143. "preferred": true
  2144. }
  2145. ]
  2146. },
  2147. "require": {
  2148. "php": ">=7.2"
  2149. },
  2150. "require-dev": {
  2151. "ext-json": "*",
  2152. "pear/pear-core-minimal": "^1.9",
  2153. "pear/pear_exception": "^1.0",
  2154. "pear/versioncontrol_git": "^0.5",
  2155. "phing/phing": "^2.7",
  2156. "php-coveralls/php-coveralls": "^2.0",
  2157. "phpunit/phpunit": "^8.5|^9.5",
  2158. "symfony/console": "^5.0",
  2159. "symfony/filesystem": "^5.0",
  2160. "symfony/finder": "^5.0",
  2161. "symfony/process": "^5.0"
  2162. },
  2163. "type": "library",
  2164. "autoload": {
  2165. "psr-4": {
  2166. "Giggsey\\Locale\\": "src/"
  2167. }
  2168. },
  2169. "notification-url": "https://packagist.org/downloads/",
  2170. "license": [
  2171. "MIT"
  2172. ],
  2173. "authors": [
  2174. {
  2175. "name": "Joshua Gigg",
  2176. "email": "giggsey@gmail.com",
  2177. "homepage": "https://giggsey.com/"
  2178. }
  2179. ],
  2180. "description": "Locale functions required by libphonenumber-for-php",
  2181. "support": {
  2182. "issues": "https://github.com/giggsey/Locale/issues",
  2183. "source": "https://github.com/giggsey/Locale/tree/2.2"
  2184. },
  2185. "time": "2022-04-06T07:33:59+00:00"
  2186. },
  2187. {
  2188. "name": "graham-campbell/result-type",
  2189. "version": "v1.0.4",
  2190. "source": {
  2191. "type": "git",
  2192. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2193. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  2194. },
  2195. "dist": {
  2196. "type": "zip",
  2197. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  2198. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  2199. "shasum": "",
  2200. "mirrors": [
  2201. {
  2202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2203. "preferred": true
  2204. }
  2205. ]
  2206. },
  2207. "require": {
  2208. "php": "^7.0 || ^8.0",
  2209. "phpoption/phpoption": "^1.8"
  2210. },
  2211. "require-dev": {
  2212. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2213. },
  2214. "type": "library",
  2215. "autoload": {
  2216. "psr-4": {
  2217. "GrahamCampbell\\ResultType\\": "src/"
  2218. }
  2219. },
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "authors": [
  2225. {
  2226. "name": "Graham Campbell",
  2227. "email": "hello@gjcampbell.co.uk",
  2228. "homepage": "https://github.com/GrahamCampbell"
  2229. }
  2230. ],
  2231. "description": "An Implementation Of The Result Type",
  2232. "keywords": [
  2233. "Graham Campbell",
  2234. "GrahamCampbell",
  2235. "Result Type",
  2236. "Result-Type",
  2237. "result"
  2238. ],
  2239. "support": {
  2240. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2241. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  2242. },
  2243. "funding": [
  2244. {
  2245. "url": "https://github.com/GrahamCampbell",
  2246. "type": "github"
  2247. },
  2248. {
  2249. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2250. "type": "tidelift"
  2251. }
  2252. ],
  2253. "time": "2021-11-21T21:41:47+00:00"
  2254. },
  2255. {
  2256. "name": "guzzlehttp/guzzle",
  2257. "version": "7.4.5",
  2258. "source": {
  2259. "type": "git",
  2260. "url": "https://github.com/guzzle/guzzle.git",
  2261. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  2262. },
  2263. "dist": {
  2264. "type": "zip",
  2265. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  2266. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  2267. "shasum": "",
  2268. "mirrors": [
  2269. {
  2270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2271. "preferred": true
  2272. }
  2273. ]
  2274. },
  2275. "require": {
  2276. "ext-json": "*",
  2277. "guzzlehttp/promises": "^1.5",
  2278. "guzzlehttp/psr7": "^1.9 || ^2.4",
  2279. "php": "^7.2.5 || ^8.0",
  2280. "psr/http-client": "^1.0",
  2281. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2282. },
  2283. "provide": {
  2284. "psr/http-client-implementation": "1.0"
  2285. },
  2286. "require-dev": {
  2287. "bamarni/composer-bin-plugin": "^1.4.1",
  2288. "ext-curl": "*",
  2289. "php-http/client-integration-tests": "^3.0",
  2290. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  2291. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2292. },
  2293. "suggest": {
  2294. "ext-curl": "Required for CURL handler support",
  2295. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2296. "psr/log": "Required for using the Log middleware"
  2297. },
  2298. "type": "library",
  2299. "extra": {
  2300. "branch-alias": {
  2301. "dev-master": "7.4-dev"
  2302. }
  2303. },
  2304. "autoload": {
  2305. "files": [
  2306. "src/functions_include.php"
  2307. ],
  2308. "psr-4": {
  2309. "GuzzleHttp\\": "src/"
  2310. }
  2311. },
  2312. "notification-url": "https://packagist.org/downloads/",
  2313. "license": [
  2314. "MIT"
  2315. ],
  2316. "authors": [
  2317. {
  2318. "name": "Graham Campbell",
  2319. "email": "hello@gjcampbell.co.uk",
  2320. "homepage": "https://github.com/GrahamCampbell"
  2321. },
  2322. {
  2323. "name": "Michael Dowling",
  2324. "email": "mtdowling@gmail.com",
  2325. "homepage": "https://github.com/mtdowling"
  2326. },
  2327. {
  2328. "name": "Jeremy Lindblom",
  2329. "email": "jeremeamia@gmail.com",
  2330. "homepage": "https://github.com/jeremeamia"
  2331. },
  2332. {
  2333. "name": "George Mponos",
  2334. "email": "gmponos@gmail.com",
  2335. "homepage": "https://github.com/gmponos"
  2336. },
  2337. {
  2338. "name": "Tobias Nyholm",
  2339. "email": "tobias.nyholm@gmail.com",
  2340. "homepage": "https://github.com/Nyholm"
  2341. },
  2342. {
  2343. "name": "Márk Sági-Kazár",
  2344. "email": "mark.sagikazar@gmail.com",
  2345. "homepage": "https://github.com/sagikazarmark"
  2346. },
  2347. {
  2348. "name": "Tobias Schultze",
  2349. "email": "webmaster@tubo-world.de",
  2350. "homepage": "https://github.com/Tobion"
  2351. }
  2352. ],
  2353. "description": "Guzzle is a PHP HTTP client library",
  2354. "keywords": [
  2355. "client",
  2356. "curl",
  2357. "framework",
  2358. "http",
  2359. "http client",
  2360. "psr-18",
  2361. "psr-7",
  2362. "rest",
  2363. "web service"
  2364. ],
  2365. "support": {
  2366. "issues": "https://github.com/guzzle/guzzle/issues",
  2367. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  2368. },
  2369. "funding": [
  2370. {
  2371. "url": "https://github.com/GrahamCampbell",
  2372. "type": "github"
  2373. },
  2374. {
  2375. "url": "https://github.com/Nyholm",
  2376. "type": "github"
  2377. },
  2378. {
  2379. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2380. "type": "tidelift"
  2381. }
  2382. ],
  2383. "time": "2022-06-20T22:16:13+00:00"
  2384. },
  2385. {
  2386. "name": "guzzlehttp/promises",
  2387. "version": "1.5.1",
  2388. "source": {
  2389. "type": "git",
  2390. "url": "https://github.com/guzzle/promises.git",
  2391. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  2392. },
  2393. "dist": {
  2394. "type": "zip",
  2395. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2396. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2397. "shasum": "",
  2398. "mirrors": [
  2399. {
  2400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2401. "preferred": true
  2402. }
  2403. ]
  2404. },
  2405. "require": {
  2406. "php": ">=5.5"
  2407. },
  2408. "require-dev": {
  2409. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2410. },
  2411. "type": "library",
  2412. "extra": {
  2413. "branch-alias": {
  2414. "dev-master": "1.5-dev"
  2415. }
  2416. },
  2417. "autoload": {
  2418. "files": [
  2419. "src/functions_include.php"
  2420. ],
  2421. "psr-4": {
  2422. "GuzzleHttp\\Promise\\": "src/"
  2423. }
  2424. },
  2425. "notification-url": "https://packagist.org/downloads/",
  2426. "license": [
  2427. "MIT"
  2428. ],
  2429. "authors": [
  2430. {
  2431. "name": "Graham Campbell",
  2432. "email": "hello@gjcampbell.co.uk",
  2433. "homepage": "https://github.com/GrahamCampbell"
  2434. },
  2435. {
  2436. "name": "Michael Dowling",
  2437. "email": "mtdowling@gmail.com",
  2438. "homepage": "https://github.com/mtdowling"
  2439. },
  2440. {
  2441. "name": "Tobias Nyholm",
  2442. "email": "tobias.nyholm@gmail.com",
  2443. "homepage": "https://github.com/Nyholm"
  2444. },
  2445. {
  2446. "name": "Tobias Schultze",
  2447. "email": "webmaster@tubo-world.de",
  2448. "homepage": "https://github.com/Tobion"
  2449. }
  2450. ],
  2451. "description": "Guzzle promises library",
  2452. "keywords": [
  2453. "promise"
  2454. ],
  2455. "support": {
  2456. "issues": "https://github.com/guzzle/promises/issues",
  2457. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  2458. },
  2459. "funding": [
  2460. {
  2461. "url": "https://github.com/GrahamCampbell",
  2462. "type": "github"
  2463. },
  2464. {
  2465. "url": "https://github.com/Nyholm",
  2466. "type": "github"
  2467. },
  2468. {
  2469. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2470. "type": "tidelift"
  2471. }
  2472. ],
  2473. "time": "2021-10-22T20:56:57+00:00"
  2474. },
  2475. {
  2476. "name": "guzzlehttp/psr7",
  2477. "version": "2.4.0",
  2478. "source": {
  2479. "type": "git",
  2480. "url": "https://github.com/guzzle/psr7.git",
  2481. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  2482. },
  2483. "dist": {
  2484. "type": "zip",
  2485. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  2486. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  2487. "shasum": "",
  2488. "mirrors": [
  2489. {
  2490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2491. "preferred": true
  2492. }
  2493. ]
  2494. },
  2495. "require": {
  2496. "php": "^7.2.5 || ^8.0",
  2497. "psr/http-factory": "^1.0",
  2498. "psr/http-message": "^1.0",
  2499. "ralouphie/getallheaders": "^3.0"
  2500. },
  2501. "provide": {
  2502. "psr/http-factory-implementation": "1.0",
  2503. "psr/http-message-implementation": "1.0"
  2504. },
  2505. "require-dev": {
  2506. "bamarni/composer-bin-plugin": "^1.4.1",
  2507. "http-interop/http-factory-tests": "^0.9",
  2508. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  2509. },
  2510. "suggest": {
  2511. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2512. },
  2513. "type": "library",
  2514. "extra": {
  2515. "branch-alias": {
  2516. "dev-master": "2.4-dev"
  2517. }
  2518. },
  2519. "autoload": {
  2520. "psr-4": {
  2521. "GuzzleHttp\\Psr7\\": "src/"
  2522. }
  2523. },
  2524. "notification-url": "https://packagist.org/downloads/",
  2525. "license": [
  2526. "MIT"
  2527. ],
  2528. "authors": [
  2529. {
  2530. "name": "Graham Campbell",
  2531. "email": "hello@gjcampbell.co.uk",
  2532. "homepage": "https://github.com/GrahamCampbell"
  2533. },
  2534. {
  2535. "name": "Michael Dowling",
  2536. "email": "mtdowling@gmail.com",
  2537. "homepage": "https://github.com/mtdowling"
  2538. },
  2539. {
  2540. "name": "George Mponos",
  2541. "email": "gmponos@gmail.com",
  2542. "homepage": "https://github.com/gmponos"
  2543. },
  2544. {
  2545. "name": "Tobias Nyholm",
  2546. "email": "tobias.nyholm@gmail.com",
  2547. "homepage": "https://github.com/Nyholm"
  2548. },
  2549. {
  2550. "name": "Márk Sági-Kazár",
  2551. "email": "mark.sagikazar@gmail.com",
  2552. "homepage": "https://github.com/sagikazarmark"
  2553. },
  2554. {
  2555. "name": "Tobias Schultze",
  2556. "email": "webmaster@tubo-world.de",
  2557. "homepage": "https://github.com/Tobion"
  2558. },
  2559. {
  2560. "name": "Márk Sági-Kazár",
  2561. "email": "mark.sagikazar@gmail.com",
  2562. "homepage": "https://sagikazarmark.hu"
  2563. }
  2564. ],
  2565. "description": "PSR-7 message implementation that also provides common utility methods",
  2566. "keywords": [
  2567. "http",
  2568. "message",
  2569. "psr-7",
  2570. "request",
  2571. "response",
  2572. "stream",
  2573. "uri",
  2574. "url"
  2575. ],
  2576. "support": {
  2577. "issues": "https://github.com/guzzle/psr7/issues",
  2578. "source": "https://github.com/guzzle/psr7/tree/2.4.0"
  2579. },
  2580. "funding": [
  2581. {
  2582. "url": "https://github.com/GrahamCampbell",
  2583. "type": "github"
  2584. },
  2585. {
  2586. "url": "https://github.com/Nyholm",
  2587. "type": "github"
  2588. },
  2589. {
  2590. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2591. "type": "tidelift"
  2592. }
  2593. ],
  2594. "time": "2022-06-20T21:43:11+00:00"
  2595. },
  2596. {
  2597. "name": "iidestiny/flysystem-oss",
  2598. "version": "2.7",
  2599. "source": {
  2600. "type": "git",
  2601. "url": "https://github.com/iiDestiny/flysystem-oss.git",
  2602. "reference": "c943ce550e973129955275bb17e8182fe8a74020"
  2603. },
  2604. "dist": {
  2605. "type": "zip",
  2606. "url": "https://api.github.com/repos/iiDestiny/flysystem-oss/zipball/c943ce550e973129955275bb17e8182fe8a74020",
  2607. "reference": "c943ce550e973129955275bb17e8182fe8a74020",
  2608. "shasum": "",
  2609. "mirrors": [
  2610. {
  2611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2612. "preferred": true
  2613. }
  2614. ]
  2615. },
  2616. "require": {
  2617. "aliyuncs/oss-sdk-php": "^2.4",
  2618. "ext-curl": "*",
  2619. "ext-json": "*",
  2620. "ext-openssl": "*",
  2621. "league/flysystem": "^1.0",
  2622. "nesbot/carbon": "^1.24.1 || ^2.0",
  2623. "php": "^7.0 || ^8.0"
  2624. },
  2625. "require-dev": {
  2626. "mockery/mockery": "^1.2",
  2627. "phpunit/phpunit": "^6.5",
  2628. "symfony/var-dumper": "^3.4"
  2629. },
  2630. "type": "library",
  2631. "autoload": {
  2632. "psr-4": {
  2633. "Iidestiny\\Flysystem\\Oss\\": "src"
  2634. }
  2635. },
  2636. "notification-url": "https://packagist.org/downloads/",
  2637. "license": [
  2638. "MIT"
  2639. ],
  2640. "authors": [
  2641. {
  2642. "name": "iidestiny",
  2643. "email": "iidestiny@vip.qq.com"
  2644. }
  2645. ],
  2646. "description": "Flysystem adapter for the Oss storage.",
  2647. "keywords": [
  2648. "alioss",
  2649. "laravel",
  2650. "oss",
  2651. "阿里oss"
  2652. ],
  2653. "support": {
  2654. "issues": "https://github.com/iiDestiny/flysystem-oss/issues",
  2655. "source": "https://github.com/iiDestiny/flysystem-oss/tree/2.7"
  2656. },
  2657. "time": "2021-06-14T10:18:58+00:00"
  2658. },
  2659. {
  2660. "name": "iidestiny/laravel-filesystem-oss",
  2661. "version": "2.1",
  2662. "source": {
  2663. "type": "git",
  2664. "url": "https://github.com/iiDestiny/laravel-filesystem-oss.git",
  2665. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223"
  2666. },
  2667. "dist": {
  2668. "type": "zip",
  2669. "url": "https://api.github.com/repos/iiDestiny/laravel-filesystem-oss/zipball/ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2670. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2671. "shasum": "",
  2672. "mirrors": [
  2673. {
  2674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2675. "preferred": true
  2676. }
  2677. ]
  2678. },
  2679. "require": {
  2680. "iidestiny/flysystem-oss": "~2.0",
  2681. "php": "^7.0|^8.0"
  2682. },
  2683. "type": "library",
  2684. "extra": {
  2685. "laravel": {
  2686. "providers": [
  2687. "Iidestiny\\LaravelFilesystemOss\\OssStorageServiceProvider"
  2688. ]
  2689. }
  2690. },
  2691. "autoload": {
  2692. "psr-4": {
  2693. "Iidestiny\\LaravelFilesystemOss\\": "src"
  2694. }
  2695. },
  2696. "notification-url": "https://packagist.org/downloads/",
  2697. "license": [
  2698. "MIT"
  2699. ],
  2700. "authors": [
  2701. {
  2702. "name": "iidestiny",
  2703. "email": "iidestiny@vip.qq.com"
  2704. }
  2705. ],
  2706. "description": "Oss storage filesystem for Laravel.",
  2707. "support": {
  2708. "issues": "https://github.com/iiDestiny/laravel-filesystem-oss/issues",
  2709. "source": "https://github.com/iiDestiny/laravel-filesystem-oss/tree/2.1"
  2710. },
  2711. "time": "2020-11-30T06:17:22+00:00"
  2712. },
  2713. {
  2714. "name": "intervention/image",
  2715. "version": "2.7.2",
  2716. "source": {
  2717. "type": "git",
  2718. "url": "https://github.com/Intervention/image.git",
  2719. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2720. },
  2721. "dist": {
  2722. "type": "zip",
  2723. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2724. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2725. "shasum": "",
  2726. "mirrors": [
  2727. {
  2728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2729. "preferred": true
  2730. }
  2731. ]
  2732. },
  2733. "require": {
  2734. "ext-fileinfo": "*",
  2735. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2736. "php": ">=5.4.0"
  2737. },
  2738. "require-dev": {
  2739. "mockery/mockery": "~0.9.2",
  2740. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2741. },
  2742. "suggest": {
  2743. "ext-gd": "to use GD library based image processing.",
  2744. "ext-imagick": "to use Imagick based image processing.",
  2745. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2746. },
  2747. "type": "library",
  2748. "extra": {
  2749. "branch-alias": {
  2750. "dev-master": "2.4-dev"
  2751. },
  2752. "laravel": {
  2753. "providers": [
  2754. "Intervention\\Image\\ImageServiceProvider"
  2755. ],
  2756. "aliases": {
  2757. "Image": "Intervention\\Image\\Facades\\Image"
  2758. }
  2759. }
  2760. },
  2761. "autoload": {
  2762. "psr-4": {
  2763. "Intervention\\Image\\": "src/Intervention/Image"
  2764. }
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "MIT"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Oliver Vogel",
  2773. "email": "oliver@intervention.io",
  2774. "homepage": "https://intervention.io/"
  2775. }
  2776. ],
  2777. "description": "Image handling and manipulation library with support for Laravel integration",
  2778. "homepage": "http://image.intervention.io/",
  2779. "keywords": [
  2780. "gd",
  2781. "image",
  2782. "imagick",
  2783. "laravel",
  2784. "thumbnail",
  2785. "watermark"
  2786. ],
  2787. "support": {
  2788. "issues": "https://github.com/Intervention/image/issues",
  2789. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2790. },
  2791. "funding": [
  2792. {
  2793. "url": "https://paypal.me/interventionio",
  2794. "type": "custom"
  2795. },
  2796. {
  2797. "url": "https://github.com/Intervention",
  2798. "type": "github"
  2799. }
  2800. ],
  2801. "time": "2022-05-21T17:30:32+00:00"
  2802. },
  2803. {
  2804. "name": "jpush/jpush",
  2805. "version": "v3.6.8",
  2806. "source": {
  2807. "type": "git",
  2808. "url": "https://github.com/jpush/jpush-api-php-client.git",
  2809. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c"
  2810. },
  2811. "dist": {
  2812. "type": "zip",
  2813. "url": "https://api.github.com/repos/jpush/jpush-api-php-client/zipball/ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  2814. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  2815. "shasum": "",
  2816. "mirrors": [
  2817. {
  2818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2819. "preferred": true
  2820. }
  2821. ]
  2822. },
  2823. "require": {
  2824. "ext-curl": "*",
  2825. "php": ">=5.3.3"
  2826. },
  2827. "require-dev": {
  2828. "phpunit/phpunit": "*"
  2829. },
  2830. "type": "library",
  2831. "autoload": {
  2832. "psr-4": {
  2833. "JPush\\": "src/JPush/"
  2834. }
  2835. },
  2836. "notification-url": "https://packagist.org/downloads/",
  2837. "license": [
  2838. "MIT"
  2839. ],
  2840. "authors": [
  2841. {
  2842. "name": "JPush",
  2843. "email": "support@jpush.cn",
  2844. "homepage": "https://www.jpush.cn/",
  2845. "role": "Developer"
  2846. }
  2847. ],
  2848. "description": "JPush API PHP Client",
  2849. "homepage": "https://github.com/jpush/jpush-api-php-client",
  2850. "support": {
  2851. "issues": "https://github.com/jpush/jpush-api-php-client/issues",
  2852. "source": "https://github.com/jpush/jpush-api-php-client/tree/v3.6.8"
  2853. },
  2854. "time": "2021-08-12T07:43:39+00:00"
  2855. },
  2856. {
  2857. "name": "laravel-lang/lang",
  2858. "version": "3.0.62",
  2859. "source": {
  2860. "type": "git",
  2861. "url": "https://github.com/Laravel-Lang/lang.git",
  2862. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7"
  2863. },
  2864. "dist": {
  2865. "type": "zip",
  2866. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  2867. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  2868. "shasum": "",
  2869. "mirrors": [
  2870. {
  2871. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2872. "preferred": true
  2873. }
  2874. ]
  2875. },
  2876. "require-dev": {
  2877. "friendsofphp/php-cs-fixer": "^2.10"
  2878. },
  2879. "suggest": {
  2880. "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project",
  2881. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  2882. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  2883. "overtrue/laravel-lang": "Command to add languages in your project"
  2884. },
  2885. "type": "library",
  2886. "notification-url": "https://packagist.org/downloads/",
  2887. "license": [
  2888. "MIT"
  2889. ],
  2890. "authors": [
  2891. {
  2892. "name": "caouecs",
  2893. "email": "caouecs@caouecs.net"
  2894. }
  2895. ],
  2896. "description": "Languages for Laravel",
  2897. "keywords": [
  2898. "lang",
  2899. "languages",
  2900. "laravel",
  2901. "lpm"
  2902. ],
  2903. "support": {
  2904. "issues": "https://github.com/Laravel-Lang/lang/issues",
  2905. "source": "https://github.com/Laravel-Lang/lang/tree/3.0.62"
  2906. },
  2907. "time": "2019-03-17T10:36:46+00:00"
  2908. },
  2909. {
  2910. "name": "laravel/framework",
  2911. "version": "v8.83.19",
  2912. "source": {
  2913. "type": "git",
  2914. "url": "https://github.com/laravel/framework.git",
  2915. "reference": "4264f2ee12330bdb1be050998f58ba7271236395"
  2916. },
  2917. "dist": {
  2918. "type": "zip",
  2919. "url": "https://api.github.com/repos/laravel/framework/zipball/4264f2ee12330bdb1be050998f58ba7271236395",
  2920. "reference": "4264f2ee12330bdb1be050998f58ba7271236395",
  2921. "shasum": "",
  2922. "mirrors": [
  2923. {
  2924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2925. "preferred": true
  2926. }
  2927. ]
  2928. },
  2929. "require": {
  2930. "doctrine/inflector": "^1.4|^2.0",
  2931. "dragonmantank/cron-expression": "^3.0.2",
  2932. "egulias/email-validator": "^2.1.10",
  2933. "ext-json": "*",
  2934. "ext-mbstring": "*",
  2935. "ext-openssl": "*",
  2936. "laravel/serializable-closure": "^1.0",
  2937. "league/commonmark": "^1.3|^2.0.2",
  2938. "league/flysystem": "^1.1",
  2939. "monolog/monolog": "^2.0",
  2940. "nesbot/carbon": "^2.53.1",
  2941. "opis/closure": "^3.6",
  2942. "php": "^7.3|^8.0",
  2943. "psr/container": "^1.0",
  2944. "psr/log": "^1.0|^2.0",
  2945. "psr/simple-cache": "^1.0",
  2946. "ramsey/uuid": "^4.2.2",
  2947. "swiftmailer/swiftmailer": "^6.3",
  2948. "symfony/console": "^5.4",
  2949. "symfony/error-handler": "^5.4",
  2950. "symfony/finder": "^5.4",
  2951. "symfony/http-foundation": "^5.4",
  2952. "symfony/http-kernel": "^5.4",
  2953. "symfony/mime": "^5.4",
  2954. "symfony/process": "^5.4",
  2955. "symfony/routing": "^5.4",
  2956. "symfony/var-dumper": "^5.4",
  2957. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2958. "vlucas/phpdotenv": "^5.4.1",
  2959. "voku/portable-ascii": "^1.6.1"
  2960. },
  2961. "conflict": {
  2962. "tightenco/collect": "<5.5.33"
  2963. },
  2964. "provide": {
  2965. "psr/container-implementation": "1.0",
  2966. "psr/simple-cache-implementation": "1.0"
  2967. },
  2968. "replace": {
  2969. "illuminate/auth": "self.version",
  2970. "illuminate/broadcasting": "self.version",
  2971. "illuminate/bus": "self.version",
  2972. "illuminate/cache": "self.version",
  2973. "illuminate/collections": "self.version",
  2974. "illuminate/config": "self.version",
  2975. "illuminate/console": "self.version",
  2976. "illuminate/container": "self.version",
  2977. "illuminate/contracts": "self.version",
  2978. "illuminate/cookie": "self.version",
  2979. "illuminate/database": "self.version",
  2980. "illuminate/encryption": "self.version",
  2981. "illuminate/events": "self.version",
  2982. "illuminate/filesystem": "self.version",
  2983. "illuminate/hashing": "self.version",
  2984. "illuminate/http": "self.version",
  2985. "illuminate/log": "self.version",
  2986. "illuminate/macroable": "self.version",
  2987. "illuminate/mail": "self.version",
  2988. "illuminate/notifications": "self.version",
  2989. "illuminate/pagination": "self.version",
  2990. "illuminate/pipeline": "self.version",
  2991. "illuminate/queue": "self.version",
  2992. "illuminate/redis": "self.version",
  2993. "illuminate/routing": "self.version",
  2994. "illuminate/session": "self.version",
  2995. "illuminate/support": "self.version",
  2996. "illuminate/testing": "self.version",
  2997. "illuminate/translation": "self.version",
  2998. "illuminate/validation": "self.version",
  2999. "illuminate/view": "self.version"
  3000. },
  3001. "require-dev": {
  3002. "aws/aws-sdk-php": "^3.198.1",
  3003. "doctrine/dbal": "^2.13.3|^3.1.4",
  3004. "filp/whoops": "^2.14.3",
  3005. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3006. "league/flysystem-cached-adapter": "^1.0",
  3007. "mockery/mockery": "^1.4.4",
  3008. "orchestra/testbench-core": "^6.27",
  3009. "pda/pheanstalk": "^4.0",
  3010. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3011. "predis/predis": "^1.1.9",
  3012. "symfony/cache": "^5.4"
  3013. },
  3014. "suggest": {
  3015. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3016. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3017. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3018. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3019. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3020. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3021. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3022. "ext-memcached": "Required to use the memcache cache driver.",
  3023. "ext-pcntl": "Required to use all features of the queue worker.",
  3024. "ext-posix": "Required to use all features of the queue worker.",
  3025. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3026. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3027. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3028. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3029. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3030. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3031. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3032. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3033. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3034. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3035. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3036. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3037. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3038. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3039. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3040. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3041. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3042. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3043. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3044. },
  3045. "type": "library",
  3046. "extra": {
  3047. "branch-alias": {
  3048. "dev-master": "8.x-dev"
  3049. }
  3050. },
  3051. "autoload": {
  3052. "files": [
  3053. "src/Illuminate/Collections/helpers.php",
  3054. "src/Illuminate/Events/functions.php",
  3055. "src/Illuminate/Foundation/helpers.php",
  3056. "src/Illuminate/Support/helpers.php"
  3057. ],
  3058. "psr-4": {
  3059. "Illuminate\\": "src/Illuminate/",
  3060. "Illuminate\\Support\\": [
  3061. "src/Illuminate/Macroable/",
  3062. "src/Illuminate/Collections/"
  3063. ]
  3064. }
  3065. },
  3066. "notification-url": "https://packagist.org/downloads/",
  3067. "license": [
  3068. "MIT"
  3069. ],
  3070. "authors": [
  3071. {
  3072. "name": "Taylor Otwell",
  3073. "email": "taylor@laravel.com"
  3074. }
  3075. ],
  3076. "description": "The Laravel Framework.",
  3077. "homepage": "https://laravel.com",
  3078. "keywords": [
  3079. "framework",
  3080. "laravel"
  3081. ],
  3082. "support": {
  3083. "issues": "https://github.com/laravel/framework/issues",
  3084. "source": "https://github.com/laravel/framework"
  3085. },
  3086. "time": "2022-07-13T13:23:09+00:00"
  3087. },
  3088. {
  3089. "name": "laravel/sanctum",
  3090. "version": "v2.15.1",
  3091. "source": {
  3092. "type": "git",
  3093. "url": "https://github.com/laravel/sanctum.git",
  3094. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  3095. },
  3096. "dist": {
  3097. "type": "zip",
  3098. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3099. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3100. "shasum": "",
  3101. "mirrors": [
  3102. {
  3103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3104. "preferred": true
  3105. }
  3106. ]
  3107. },
  3108. "require": {
  3109. "ext-json": "*",
  3110. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  3111. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  3112. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  3113. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  3114. "php": "^7.2|^8.0"
  3115. },
  3116. "require-dev": {
  3117. "mockery/mockery": "^1.0",
  3118. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3119. "phpunit/phpunit": "^8.0|^9.3"
  3120. },
  3121. "type": "library",
  3122. "extra": {
  3123. "branch-alias": {
  3124. "dev-master": "2.x-dev"
  3125. },
  3126. "laravel": {
  3127. "providers": [
  3128. "Laravel\\Sanctum\\SanctumServiceProvider"
  3129. ]
  3130. }
  3131. },
  3132. "autoload": {
  3133. "psr-4": {
  3134. "Laravel\\Sanctum\\": "src/"
  3135. }
  3136. },
  3137. "notification-url": "https://packagist.org/downloads/",
  3138. "license": [
  3139. "MIT"
  3140. ],
  3141. "authors": [
  3142. {
  3143. "name": "Taylor Otwell",
  3144. "email": "taylor@laravel.com"
  3145. }
  3146. ],
  3147. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3148. "keywords": [
  3149. "auth",
  3150. "laravel",
  3151. "sanctum"
  3152. ],
  3153. "support": {
  3154. "issues": "https://github.com/laravel/sanctum/issues",
  3155. "source": "https://github.com/laravel/sanctum"
  3156. },
  3157. "time": "2022-04-08T13:39:49+00:00"
  3158. },
  3159. {
  3160. "name": "laravel/serializable-closure",
  3161. "version": "v1.2.0",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/laravel/serializable-closure.git",
  3165. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/09f0e9fb61829f628205b7c94906c28740ff9540",
  3170. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540",
  3171. "shasum": "",
  3172. "mirrors": [
  3173. {
  3174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3175. "preferred": true
  3176. }
  3177. ]
  3178. },
  3179. "require": {
  3180. "php": "^7.3|^8.0"
  3181. },
  3182. "require-dev": {
  3183. "pestphp/pest": "^1.18",
  3184. "phpstan/phpstan": "^0.12.98",
  3185. "symfony/var-dumper": "^5.3"
  3186. },
  3187. "type": "library",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-master": "1.x-dev"
  3191. }
  3192. },
  3193. "autoload": {
  3194. "psr-4": {
  3195. "Laravel\\SerializableClosure\\": "src/"
  3196. }
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "MIT"
  3201. ],
  3202. "authors": [
  3203. {
  3204. "name": "Taylor Otwell",
  3205. "email": "taylor@laravel.com"
  3206. },
  3207. {
  3208. "name": "Nuno Maduro",
  3209. "email": "nuno@laravel.com"
  3210. }
  3211. ],
  3212. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3213. "keywords": [
  3214. "closure",
  3215. "laravel",
  3216. "serializable"
  3217. ],
  3218. "support": {
  3219. "issues": "https://github.com/laravel/serializable-closure/issues",
  3220. "source": "https://github.com/laravel/serializable-closure"
  3221. },
  3222. "time": "2022-05-16T17:09:47+00:00"
  3223. },
  3224. {
  3225. "name": "laravel/socialite",
  3226. "version": "v5.5.2",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://github.com/laravel/socialite.git",
  3230. "reference": "68afb03259b82d898c68196cbcacd48596a9dd72"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://api.github.com/repos/laravel/socialite/zipball/68afb03259b82d898c68196cbcacd48596a9dd72",
  3235. "reference": "68afb03259b82d898c68196cbcacd48596a9dd72",
  3236. "shasum": "",
  3237. "mirrors": [
  3238. {
  3239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3240. "preferred": true
  3241. }
  3242. ]
  3243. },
  3244. "require": {
  3245. "ext-json": "*",
  3246. "guzzlehttp/guzzle": "^6.0|^7.0",
  3247. "illuminate/http": "^6.0|^7.0|^8.0|^9.0",
  3248. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3249. "league/oauth1-client": "^1.0",
  3250. "php": "^7.2|^8.0"
  3251. },
  3252. "require-dev": {
  3253. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3254. "mockery/mockery": "^1.0",
  3255. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3256. "phpunit/phpunit": "^8.0|^9.3"
  3257. },
  3258. "type": "library",
  3259. "extra": {
  3260. "branch-alias": {
  3261. "dev-master": "5.x-dev"
  3262. },
  3263. "laravel": {
  3264. "providers": [
  3265. "Laravel\\Socialite\\SocialiteServiceProvider"
  3266. ],
  3267. "aliases": {
  3268. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3269. }
  3270. }
  3271. },
  3272. "autoload": {
  3273. "psr-4": {
  3274. "Laravel\\Socialite\\": "src/"
  3275. }
  3276. },
  3277. "notification-url": "https://packagist.org/downloads/",
  3278. "license": [
  3279. "MIT"
  3280. ],
  3281. "authors": [
  3282. {
  3283. "name": "Taylor Otwell",
  3284. "email": "taylor@laravel.com"
  3285. }
  3286. ],
  3287. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3288. "homepage": "https://laravel.com",
  3289. "keywords": [
  3290. "laravel",
  3291. "oauth"
  3292. ],
  3293. "support": {
  3294. "issues": "https://github.com/laravel/socialite/issues",
  3295. "source": "https://github.com/laravel/socialite"
  3296. },
  3297. "time": "2022-03-10T15:26:19+00:00"
  3298. },
  3299. {
  3300. "name": "laravel/tinker",
  3301. "version": "v2.7.2",
  3302. "source": {
  3303. "type": "git",
  3304. "url": "https://github.com/laravel/tinker.git",
  3305. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  3306. },
  3307. "dist": {
  3308. "type": "zip",
  3309. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  3310. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  3311. "shasum": "",
  3312. "mirrors": [
  3313. {
  3314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3315. "preferred": true
  3316. }
  3317. ]
  3318. },
  3319. "require": {
  3320. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  3321. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3322. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3323. "php": "^7.2.5|^8.0",
  3324. "psy/psysh": "^0.10.4|^0.11.1",
  3325. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  3326. },
  3327. "require-dev": {
  3328. "mockery/mockery": "~1.3.3|^1.4.2",
  3329. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3330. },
  3331. "suggest": {
  3332. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  3333. },
  3334. "type": "library",
  3335. "extra": {
  3336. "branch-alias": {
  3337. "dev-master": "2.x-dev"
  3338. },
  3339. "laravel": {
  3340. "providers": [
  3341. "Laravel\\Tinker\\TinkerServiceProvider"
  3342. ]
  3343. }
  3344. },
  3345. "autoload": {
  3346. "psr-4": {
  3347. "Laravel\\Tinker\\": "src/"
  3348. }
  3349. },
  3350. "notification-url": "https://packagist.org/downloads/",
  3351. "license": [
  3352. "MIT"
  3353. ],
  3354. "authors": [
  3355. {
  3356. "name": "Taylor Otwell",
  3357. "email": "taylor@laravel.com"
  3358. }
  3359. ],
  3360. "description": "Powerful REPL for the Laravel framework.",
  3361. "keywords": [
  3362. "REPL",
  3363. "Tinker",
  3364. "laravel",
  3365. "psysh"
  3366. ],
  3367. "support": {
  3368. "issues": "https://github.com/laravel/tinker/issues",
  3369. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  3370. },
  3371. "time": "2022-03-23T12:38:24+00:00"
  3372. },
  3373. {
  3374. "name": "lcobucci/clock",
  3375. "version": "2.2.0",
  3376. "source": {
  3377. "type": "git",
  3378. "url": "https://github.com/lcobucci/clock.git",
  3379. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3"
  3380. },
  3381. "dist": {
  3382. "type": "zip",
  3383. "url": "https://api.github.com/repos/lcobucci/clock/zipball/fb533e093fd61321bfcbac08b131ce805fe183d3",
  3384. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3",
  3385. "shasum": "",
  3386. "mirrors": [
  3387. {
  3388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3389. "preferred": true
  3390. }
  3391. ]
  3392. },
  3393. "require": {
  3394. "php": "^8.0",
  3395. "stella-maris/clock": "^0.1.4"
  3396. },
  3397. "require-dev": {
  3398. "infection/infection": "^0.26",
  3399. "lcobucci/coding-standard": "^8.0",
  3400. "phpstan/extension-installer": "^1.1",
  3401. "phpstan/phpstan": "^0.12",
  3402. "phpstan/phpstan-deprecation-rules": "^0.12",
  3403. "phpstan/phpstan-phpunit": "^0.12",
  3404. "phpstan/phpstan-strict-rules": "^0.12",
  3405. "phpunit/phpunit": "^9.5"
  3406. },
  3407. "type": "library",
  3408. "autoload": {
  3409. "psr-4": {
  3410. "Lcobucci\\Clock\\": "src"
  3411. }
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "MIT"
  3416. ],
  3417. "authors": [
  3418. {
  3419. "name": "Luís Cobucci",
  3420. "email": "lcobucci@gmail.com"
  3421. }
  3422. ],
  3423. "description": "Yet another clock abstraction",
  3424. "support": {
  3425. "issues": "https://github.com/lcobucci/clock/issues",
  3426. "source": "https://github.com/lcobucci/clock/tree/2.2.0"
  3427. },
  3428. "funding": [
  3429. {
  3430. "url": "https://github.com/lcobucci",
  3431. "type": "github"
  3432. },
  3433. {
  3434. "url": "https://www.patreon.com/lcobucci",
  3435. "type": "patreon"
  3436. }
  3437. ],
  3438. "time": "2022-04-19T19:34:17+00:00"
  3439. },
  3440. {
  3441. "name": "lcobucci/jwt",
  3442. "version": "4.0.4",
  3443. "source": {
  3444. "type": "git",
  3445. "url": "https://github.com/lcobucci/jwt.git",
  3446. "reference": "55564265fddf810504110bd68ca311932324b0e9"
  3447. },
  3448. "dist": {
  3449. "type": "zip",
  3450. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9",
  3451. "reference": "55564265fddf810504110bd68ca311932324b0e9",
  3452. "shasum": "",
  3453. "mirrors": [
  3454. {
  3455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3456. "preferred": true
  3457. }
  3458. ]
  3459. },
  3460. "require": {
  3461. "ext-mbstring": "*",
  3462. "ext-openssl": "*",
  3463. "lcobucci/clock": "^2.0",
  3464. "php": "^7.4 || ^8.0"
  3465. },
  3466. "require-dev": {
  3467. "infection/infection": "^0.20",
  3468. "lcobucci/coding-standard": "^6.0",
  3469. "mikey179/vfsstream": "^1.6",
  3470. "phpbench/phpbench": "^0.17",
  3471. "phpstan/extension-installer": "^1.0",
  3472. "phpstan/phpstan": "^0.12",
  3473. "phpstan/phpstan-deprecation-rules": "^0.12",
  3474. "phpstan/phpstan-phpunit": "^0.12",
  3475. "phpstan/phpstan-strict-rules": "^0.12",
  3476. "phpunit/php-invoker": "^3.1",
  3477. "phpunit/phpunit": "^9.4"
  3478. },
  3479. "type": "library",
  3480. "extra": {
  3481. "branch-alias": {
  3482. "dev-master": "4.0-dev"
  3483. }
  3484. },
  3485. "autoload": {
  3486. "psr-4": {
  3487. "Lcobucci\\JWT\\": "src"
  3488. }
  3489. },
  3490. "notification-url": "https://packagist.org/downloads/",
  3491. "license": [
  3492. "BSD-3-Clause"
  3493. ],
  3494. "authors": [
  3495. {
  3496. "name": "Luís Cobucci",
  3497. "email": "lcobucci@gmail.com",
  3498. "role": "Developer"
  3499. }
  3500. ],
  3501. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3502. "keywords": [
  3503. "JWS",
  3504. "jwt"
  3505. ],
  3506. "support": {
  3507. "issues": "https://github.com/lcobucci/jwt/issues",
  3508. "source": "https://github.com/lcobucci/jwt/tree/4.0.4"
  3509. },
  3510. "funding": [
  3511. {
  3512. "url": "https://github.com/lcobucci",
  3513. "type": "github"
  3514. },
  3515. {
  3516. "url": "https://www.patreon.com/lcobucci",
  3517. "type": "patreon"
  3518. }
  3519. ],
  3520. "time": "2021-09-28T19:18:28+00:00"
  3521. },
  3522. {
  3523. "name": "league/commonmark",
  3524. "version": "2.3.3",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://github.com/thephpleague/commonmark.git",
  3528. "reference": "0da1dca5781dd3cfddbe328224d9a7a62571addc"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/0da1dca5781dd3cfddbe328224d9a7a62571addc",
  3533. "reference": "0da1dca5781dd3cfddbe328224d9a7a62571addc",
  3534. "shasum": "",
  3535. "mirrors": [
  3536. {
  3537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3538. "preferred": true
  3539. }
  3540. ]
  3541. },
  3542. "require": {
  3543. "ext-mbstring": "*",
  3544. "league/config": "^1.1.1",
  3545. "php": "^7.4 || ^8.0",
  3546. "psr/event-dispatcher": "^1.0",
  3547. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3548. "symfony/polyfill-php80": "^1.16"
  3549. },
  3550. "require-dev": {
  3551. "cebe/markdown": "^1.0",
  3552. "commonmark/cmark": "0.30.0",
  3553. "commonmark/commonmark.js": "0.30.0",
  3554. "composer/package-versions-deprecated": "^1.8",
  3555. "embed/embed": "^4.4",
  3556. "erusev/parsedown": "^1.0",
  3557. "ext-json": "*",
  3558. "github/gfm": "0.29.0",
  3559. "michelf/php-markdown": "^1.4",
  3560. "nyholm/psr7": "^1.5",
  3561. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  3562. "phpunit/phpunit": "^9.5.5",
  3563. "scrutinizer/ocular": "^1.8.1",
  3564. "symfony/finder": "^5.3",
  3565. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  3566. "unleashedtech/php-coding-standard": "^3.1",
  3567. "vimeo/psalm": "^4.7.3"
  3568. },
  3569. "suggest": {
  3570. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3571. },
  3572. "type": "library",
  3573. "extra": {
  3574. "branch-alias": {
  3575. "dev-main": "2.4-dev"
  3576. }
  3577. },
  3578. "autoload": {
  3579. "psr-4": {
  3580. "League\\CommonMark\\": "src"
  3581. }
  3582. },
  3583. "notification-url": "https://packagist.org/downloads/",
  3584. "license": [
  3585. "BSD-3-Clause"
  3586. ],
  3587. "authors": [
  3588. {
  3589. "name": "Colin O'Dell",
  3590. "email": "colinodell@gmail.com",
  3591. "homepage": "https://www.colinodell.com",
  3592. "role": "Lead Developer"
  3593. }
  3594. ],
  3595. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3596. "homepage": "https://commonmark.thephpleague.com",
  3597. "keywords": [
  3598. "commonmark",
  3599. "flavored",
  3600. "gfm",
  3601. "github",
  3602. "github-flavored",
  3603. "markdown",
  3604. "md",
  3605. "parser"
  3606. ],
  3607. "support": {
  3608. "docs": "https://commonmark.thephpleague.com/",
  3609. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3610. "issues": "https://github.com/thephpleague/commonmark/issues",
  3611. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3612. "source": "https://github.com/thephpleague/commonmark"
  3613. },
  3614. "funding": [
  3615. {
  3616. "url": "https://www.colinodell.com/sponsor",
  3617. "type": "custom"
  3618. },
  3619. {
  3620. "url": "https://www.paypal.me/colinpodell/10.00",
  3621. "type": "custom"
  3622. },
  3623. {
  3624. "url": "https://github.com/colinodell",
  3625. "type": "github"
  3626. },
  3627. {
  3628. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3629. "type": "tidelift"
  3630. }
  3631. ],
  3632. "time": "2022-06-07T21:28:26+00:00"
  3633. },
  3634. {
  3635. "name": "league/config",
  3636. "version": "v1.1.1",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/thephpleague/config.git",
  3640. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  3645. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  3646. "shasum": "",
  3647. "mirrors": [
  3648. {
  3649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3650. "preferred": true
  3651. }
  3652. ]
  3653. },
  3654. "require": {
  3655. "dflydev/dot-access-data": "^3.0.1",
  3656. "nette/schema": "^1.2",
  3657. "php": "^7.4 || ^8.0"
  3658. },
  3659. "require-dev": {
  3660. "phpstan/phpstan": "^0.12.90",
  3661. "phpunit/phpunit": "^9.5.5",
  3662. "scrutinizer/ocular": "^1.8.1",
  3663. "unleashedtech/php-coding-standard": "^3.1",
  3664. "vimeo/psalm": "^4.7.3"
  3665. },
  3666. "type": "library",
  3667. "extra": {
  3668. "branch-alias": {
  3669. "dev-main": "1.2-dev"
  3670. }
  3671. },
  3672. "autoload": {
  3673. "psr-4": {
  3674. "League\\Config\\": "src"
  3675. }
  3676. },
  3677. "notification-url": "https://packagist.org/downloads/",
  3678. "license": [
  3679. "BSD-3-Clause"
  3680. ],
  3681. "authors": [
  3682. {
  3683. "name": "Colin O'Dell",
  3684. "email": "colinodell@gmail.com",
  3685. "homepage": "https://www.colinodell.com",
  3686. "role": "Lead Developer"
  3687. }
  3688. ],
  3689. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3690. "homepage": "https://config.thephpleague.com",
  3691. "keywords": [
  3692. "array",
  3693. "config",
  3694. "configuration",
  3695. "dot",
  3696. "dot-access",
  3697. "nested",
  3698. "schema"
  3699. ],
  3700. "support": {
  3701. "docs": "https://config.thephpleague.com/",
  3702. "issues": "https://github.com/thephpleague/config/issues",
  3703. "rss": "https://github.com/thephpleague/config/releases.atom",
  3704. "source": "https://github.com/thephpleague/config"
  3705. },
  3706. "funding": [
  3707. {
  3708. "url": "https://www.colinodell.com/sponsor",
  3709. "type": "custom"
  3710. },
  3711. {
  3712. "url": "https://www.paypal.me/colinpodell/10.00",
  3713. "type": "custom"
  3714. },
  3715. {
  3716. "url": "https://github.com/colinodell",
  3717. "type": "github"
  3718. }
  3719. ],
  3720. "time": "2021-08-14T12:15:32+00:00"
  3721. },
  3722. {
  3723. "name": "league/flysystem",
  3724. "version": "1.1.9",
  3725. "source": {
  3726. "type": "git",
  3727. "url": "https://github.com/thephpleague/flysystem.git",
  3728. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  3729. },
  3730. "dist": {
  3731. "type": "zip",
  3732. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  3733. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  3734. "shasum": "",
  3735. "mirrors": [
  3736. {
  3737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3738. "preferred": true
  3739. }
  3740. ]
  3741. },
  3742. "require": {
  3743. "ext-fileinfo": "*",
  3744. "league/mime-type-detection": "^1.3",
  3745. "php": "^7.2.5 || ^8.0"
  3746. },
  3747. "conflict": {
  3748. "league/flysystem-sftp": "<1.0.6"
  3749. },
  3750. "require-dev": {
  3751. "phpspec/prophecy": "^1.11.1",
  3752. "phpunit/phpunit": "^8.5.8"
  3753. },
  3754. "suggest": {
  3755. "ext-ftp": "Allows you to use FTP server storage",
  3756. "ext-openssl": "Allows you to use FTPS server storage",
  3757. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3758. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3759. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3760. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3761. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3762. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3763. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3764. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3765. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3766. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3767. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3768. },
  3769. "type": "library",
  3770. "extra": {
  3771. "branch-alias": {
  3772. "dev-master": "1.1-dev"
  3773. }
  3774. },
  3775. "autoload": {
  3776. "psr-4": {
  3777. "League\\Flysystem\\": "src/"
  3778. }
  3779. },
  3780. "notification-url": "https://packagist.org/downloads/",
  3781. "license": [
  3782. "MIT"
  3783. ],
  3784. "authors": [
  3785. {
  3786. "name": "Frank de Jonge",
  3787. "email": "info@frenky.net"
  3788. }
  3789. ],
  3790. "description": "Filesystem abstraction: Many filesystems, one API.",
  3791. "keywords": [
  3792. "Cloud Files",
  3793. "WebDAV",
  3794. "abstraction",
  3795. "aws",
  3796. "cloud",
  3797. "copy.com",
  3798. "dropbox",
  3799. "file systems",
  3800. "files",
  3801. "filesystem",
  3802. "filesystems",
  3803. "ftp",
  3804. "rackspace",
  3805. "remote",
  3806. "s3",
  3807. "sftp",
  3808. "storage"
  3809. ],
  3810. "support": {
  3811. "issues": "https://github.com/thephpleague/flysystem/issues",
  3812. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  3813. },
  3814. "funding": [
  3815. {
  3816. "url": "https://offset.earth/frankdejonge",
  3817. "type": "other"
  3818. }
  3819. ],
  3820. "time": "2021-12-09T09:40:50+00:00"
  3821. },
  3822. {
  3823. "name": "league/fractal",
  3824. "version": "0.19.2",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://github.com/thephpleague/fractal.git",
  3828. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  3833. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  3834. "shasum": "",
  3835. "mirrors": [
  3836. {
  3837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3838. "preferred": true
  3839. }
  3840. ]
  3841. },
  3842. "require": {
  3843. "php": ">=5.4"
  3844. },
  3845. "require-dev": {
  3846. "doctrine/orm": "^2.5",
  3847. "illuminate/contracts": "~5.0",
  3848. "mockery/mockery": "~0.9",
  3849. "pagerfanta/pagerfanta": "~1.0.0",
  3850. "phpunit/phpunit": "^4.8.35 || ^7.5",
  3851. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  3852. "zendframework/zend-paginator": "~2.3"
  3853. },
  3854. "suggest": {
  3855. "illuminate/pagination": "The Illuminate Pagination component.",
  3856. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3857. "zendframework/zend-paginator": "Zend Framework Paginator"
  3858. },
  3859. "type": "library",
  3860. "extra": {
  3861. "branch-alias": {
  3862. "dev-master": "0.13-dev"
  3863. }
  3864. },
  3865. "autoload": {
  3866. "psr-4": {
  3867. "League\\Fractal\\": "src"
  3868. }
  3869. },
  3870. "notification-url": "https://packagist.org/downloads/",
  3871. "license": [
  3872. "MIT"
  3873. ],
  3874. "authors": [
  3875. {
  3876. "name": "Phil Sturgeon",
  3877. "email": "me@philsturgeon.uk",
  3878. "homepage": "http://philsturgeon.uk/",
  3879. "role": "Developer"
  3880. }
  3881. ],
  3882. "description": "Handle the output of complex data structures ready for API output.",
  3883. "homepage": "http://fractal.thephpleague.com/",
  3884. "keywords": [
  3885. "api",
  3886. "json",
  3887. "league",
  3888. "rest"
  3889. ],
  3890. "support": {
  3891. "issues": "https://github.com/thephpleague/fractal/issues",
  3892. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  3893. },
  3894. "time": "2020-01-24T23:17:29+00:00"
  3895. },
  3896. {
  3897. "name": "league/mime-type-detection",
  3898. "version": "1.11.0",
  3899. "source": {
  3900. "type": "git",
  3901. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3902. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  3903. },
  3904. "dist": {
  3905. "type": "zip",
  3906. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3907. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3908. "shasum": "",
  3909. "mirrors": [
  3910. {
  3911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3912. "preferred": true
  3913. }
  3914. ]
  3915. },
  3916. "require": {
  3917. "ext-fileinfo": "*",
  3918. "php": "^7.2 || ^8.0"
  3919. },
  3920. "require-dev": {
  3921. "friendsofphp/php-cs-fixer": "^3.2",
  3922. "phpstan/phpstan": "^0.12.68",
  3923. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3924. },
  3925. "type": "library",
  3926. "autoload": {
  3927. "psr-4": {
  3928. "League\\MimeTypeDetection\\": "src"
  3929. }
  3930. },
  3931. "notification-url": "https://packagist.org/downloads/",
  3932. "license": [
  3933. "MIT"
  3934. ],
  3935. "authors": [
  3936. {
  3937. "name": "Frank de Jonge",
  3938. "email": "info@frankdejonge.nl"
  3939. }
  3940. ],
  3941. "description": "Mime-type detection for Flysystem",
  3942. "support": {
  3943. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3944. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  3945. },
  3946. "funding": [
  3947. {
  3948. "url": "https://github.com/frankdejonge",
  3949. "type": "github"
  3950. },
  3951. {
  3952. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3953. "type": "tidelift"
  3954. }
  3955. ],
  3956. "time": "2022-04-17T13:12:02+00:00"
  3957. },
  3958. {
  3959. "name": "league/oauth1-client",
  3960. "version": "v1.10.1",
  3961. "source": {
  3962. "type": "git",
  3963. "url": "https://github.com/thephpleague/oauth1-client.git",
  3964. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3965. },
  3966. "dist": {
  3967. "type": "zip",
  3968. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3969. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3970. "shasum": "",
  3971. "mirrors": [
  3972. {
  3973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3974. "preferred": true
  3975. }
  3976. ]
  3977. },
  3978. "require": {
  3979. "ext-json": "*",
  3980. "ext-openssl": "*",
  3981. "guzzlehttp/guzzle": "^6.0|^7.0",
  3982. "guzzlehttp/psr7": "^1.7|^2.0",
  3983. "php": ">=7.1||>=8.0"
  3984. },
  3985. "require-dev": {
  3986. "ext-simplexml": "*",
  3987. "friendsofphp/php-cs-fixer": "^2.17",
  3988. "mockery/mockery": "^1.3.3",
  3989. "phpstan/phpstan": "^0.12.42",
  3990. "phpunit/phpunit": "^7.5||9.5"
  3991. },
  3992. "suggest": {
  3993. "ext-simplexml": "For decoding XML-based responses."
  3994. },
  3995. "type": "library",
  3996. "extra": {
  3997. "branch-alias": {
  3998. "dev-master": "1.0-dev",
  3999. "dev-develop": "2.0-dev"
  4000. }
  4001. },
  4002. "autoload": {
  4003. "psr-4": {
  4004. "League\\OAuth1\\Client\\": "src/"
  4005. }
  4006. },
  4007. "notification-url": "https://packagist.org/downloads/",
  4008. "license": [
  4009. "MIT"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "Ben Corlett",
  4014. "email": "bencorlett@me.com",
  4015. "homepage": "http://www.webcomm.com.au",
  4016. "role": "Developer"
  4017. }
  4018. ],
  4019. "description": "OAuth 1.0 Client Library",
  4020. "keywords": [
  4021. "Authentication",
  4022. "SSO",
  4023. "authorization",
  4024. "bitbucket",
  4025. "identity",
  4026. "idp",
  4027. "oauth",
  4028. "oauth1",
  4029. "single sign on",
  4030. "trello",
  4031. "tumblr",
  4032. "twitter"
  4033. ],
  4034. "support": {
  4035. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4036. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4037. },
  4038. "time": "2022-04-15T14:02:14+00:00"
  4039. },
  4040. {
  4041. "name": "mews/captcha",
  4042. "version": "3.3.0",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/mewebstudio/captcha.git",
  4046. "reference": "8c439263d0ba42e6c05e4d1f3bee0a2b97e675d5"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/8c439263d0ba42e6c05e4d1f3bee0a2b97e675d5",
  4051. "reference": "8c439263d0ba42e6c05e4d1f3bee0a2b97e675d5",
  4052. "shasum": "",
  4053. "mirrors": [
  4054. {
  4055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4056. "preferred": true
  4057. }
  4058. ]
  4059. },
  4060. "require": {
  4061. "ext-gd": "*",
  4062. "illuminate/config": "~5|^6|^7|^8|^9|^10.0",
  4063. "illuminate/filesystem": "~5|^6|^7|^8|^9|^10.0",
  4064. "illuminate/hashing": "~5|^6|^7|^8|^9|^10.0",
  4065. "illuminate/session": "~5|^6|^7|^8|^9|^10.0",
  4066. "illuminate/support": "~5|^6|^7|^8|^9|^10.0",
  4067. "intervention/image": "~2.5",
  4068. "php": "^7.2|^8.0"
  4069. },
  4070. "require-dev": {
  4071. "mockery/mockery": "^1.0",
  4072. "phpunit/phpunit": "^8.5|^9.0"
  4073. },
  4074. "type": "package",
  4075. "extra": {
  4076. "laravel": {
  4077. "providers": [
  4078. "Mews\\Captcha\\CaptchaServiceProvider"
  4079. ],
  4080. "aliases": {
  4081. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  4082. }
  4083. }
  4084. },
  4085. "autoload": {
  4086. "files": [
  4087. "src/helpers.php"
  4088. ],
  4089. "psr-4": {
  4090. "Mews\\Captcha\\": "src/"
  4091. }
  4092. },
  4093. "notification-url": "https://packagist.org/downloads/",
  4094. "license": [
  4095. "MIT"
  4096. ],
  4097. "authors": [
  4098. {
  4099. "name": "Muharrem ERİN",
  4100. "email": "me@mewebstudio.com",
  4101. "homepage": "https://github.com/mewebstudio",
  4102. "role": "Developer"
  4103. }
  4104. ],
  4105. "description": "Laravel 5 & 6 Captcha Package",
  4106. "homepage": "https://github.com/mewebstudio/captcha",
  4107. "keywords": [
  4108. "captcha",
  4109. "laravel5 Security",
  4110. "laravel6 Captcha",
  4111. "laravel6 Security"
  4112. ],
  4113. "support": {
  4114. "issues": "https://github.com/mewebstudio/captcha/issues",
  4115. "source": "https://github.com/mewebstudio/captcha/tree/3.3.0"
  4116. },
  4117. "time": "2023-03-14T08:30:02+00:00"
  4118. },
  4119. {
  4120. "name": "monolog/monolog",
  4121. "version": "2.7.0",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://github.com/Seldaek/monolog.git",
  4125. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  4130. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  4131. "shasum": "",
  4132. "mirrors": [
  4133. {
  4134. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4135. "preferred": true
  4136. }
  4137. ]
  4138. },
  4139. "require": {
  4140. "php": ">=7.2",
  4141. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4142. },
  4143. "provide": {
  4144. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4145. },
  4146. "require-dev": {
  4147. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4148. "doctrine/couchdb": "~1.0@dev",
  4149. "elasticsearch/elasticsearch": "^7 || ^8",
  4150. "ext-json": "*",
  4151. "graylog2/gelf-php": "^1.4.2",
  4152. "guzzlehttp/guzzle": "^7.4",
  4153. "guzzlehttp/psr7": "^2.2",
  4154. "mongodb/mongodb": "^1.8",
  4155. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4156. "php-console/php-console": "^3.1.3",
  4157. "phpspec/prophecy": "^1.15",
  4158. "phpstan/phpstan": "^0.12.91",
  4159. "phpunit/phpunit": "^8.5.14",
  4160. "predis/predis": "^1.1",
  4161. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4162. "ruflin/elastica": "^7",
  4163. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4164. "symfony/mailer": "^5.4 || ^6",
  4165. "symfony/mime": "^5.4 || ^6"
  4166. },
  4167. "suggest": {
  4168. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4169. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4170. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4171. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4172. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4173. "ext-mbstring": "Allow to work properly with unicode symbols",
  4174. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4175. "ext-openssl": "Required to send log messages using SSL",
  4176. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4177. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4178. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4179. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4180. "php-console/php-console": "Allow sending log messages to Google Chrome",
  4181. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4182. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4183. },
  4184. "type": "library",
  4185. "extra": {
  4186. "branch-alias": {
  4187. "dev-main": "2.x-dev"
  4188. }
  4189. },
  4190. "autoload": {
  4191. "psr-4": {
  4192. "Monolog\\": "src/Monolog"
  4193. }
  4194. },
  4195. "notification-url": "https://packagist.org/downloads/",
  4196. "license": [
  4197. "MIT"
  4198. ],
  4199. "authors": [
  4200. {
  4201. "name": "Jordi Boggiano",
  4202. "email": "j.boggiano@seld.be",
  4203. "homepage": "https://seld.be"
  4204. }
  4205. ],
  4206. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4207. "homepage": "https://github.com/Seldaek/monolog",
  4208. "keywords": [
  4209. "log",
  4210. "logging",
  4211. "psr-3"
  4212. ],
  4213. "support": {
  4214. "issues": "https://github.com/Seldaek/monolog/issues",
  4215. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  4216. },
  4217. "funding": [
  4218. {
  4219. "url": "https://github.com/Seldaek",
  4220. "type": "github"
  4221. },
  4222. {
  4223. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4224. "type": "tidelift"
  4225. }
  4226. ],
  4227. "time": "2022-06-09T08:59:12+00:00"
  4228. },
  4229. {
  4230. "name": "mtdowling/jmespath.php",
  4231. "version": "2.6.1",
  4232. "source": {
  4233. "type": "git",
  4234. "url": "https://github.com/jmespath/jmespath.php.git",
  4235. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  4236. },
  4237. "dist": {
  4238. "type": "zip",
  4239. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4240. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4241. "shasum": "",
  4242. "mirrors": [
  4243. {
  4244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4245. "preferred": true
  4246. }
  4247. ]
  4248. },
  4249. "require": {
  4250. "php": "^5.4 || ^7.0 || ^8.0",
  4251. "symfony/polyfill-mbstring": "^1.17"
  4252. },
  4253. "require-dev": {
  4254. "composer/xdebug-handler": "^1.4 || ^2.0",
  4255. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  4256. },
  4257. "bin": [
  4258. "bin/jp.php"
  4259. ],
  4260. "type": "library",
  4261. "extra": {
  4262. "branch-alias": {
  4263. "dev-master": "2.6-dev"
  4264. }
  4265. },
  4266. "autoload": {
  4267. "files": [
  4268. "src/JmesPath.php"
  4269. ],
  4270. "psr-4": {
  4271. "JmesPath\\": "src/"
  4272. }
  4273. },
  4274. "notification-url": "https://packagist.org/downloads/",
  4275. "license": [
  4276. "MIT"
  4277. ],
  4278. "authors": [
  4279. {
  4280. "name": "Michael Dowling",
  4281. "email": "mtdowling@gmail.com",
  4282. "homepage": "https://github.com/mtdowling"
  4283. }
  4284. ],
  4285. "description": "Declaratively specify how to extract elements from a JSON document",
  4286. "keywords": [
  4287. "json",
  4288. "jsonpath"
  4289. ],
  4290. "support": {
  4291. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4292. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  4293. },
  4294. "time": "2021-06-14T00:11:39+00:00"
  4295. },
  4296. {
  4297. "name": "namshi/jose",
  4298. "version": "7.2.3",
  4299. "source": {
  4300. "type": "git",
  4301. "url": "https://github.com/namshi/jose.git",
  4302. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  4303. },
  4304. "dist": {
  4305. "type": "zip",
  4306. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  4307. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  4308. "shasum": "",
  4309. "mirrors": [
  4310. {
  4311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4312. "preferred": true
  4313. }
  4314. ]
  4315. },
  4316. "require": {
  4317. "ext-date": "*",
  4318. "ext-hash": "*",
  4319. "ext-json": "*",
  4320. "ext-pcre": "*",
  4321. "ext-spl": "*",
  4322. "php": ">=5.5",
  4323. "symfony/polyfill-php56": "^1.0"
  4324. },
  4325. "require-dev": {
  4326. "phpseclib/phpseclib": "^2.0",
  4327. "phpunit/phpunit": "^4.5|^5.0",
  4328. "satooshi/php-coveralls": "^1.0"
  4329. },
  4330. "suggest": {
  4331. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  4332. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  4333. },
  4334. "type": "library",
  4335. "autoload": {
  4336. "psr-4": {
  4337. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  4338. }
  4339. },
  4340. "notification-url": "https://packagist.org/downloads/",
  4341. "license": [
  4342. "MIT"
  4343. ],
  4344. "authors": [
  4345. {
  4346. "name": "Alessandro Nadalin",
  4347. "email": "alessandro.nadalin@gmail.com"
  4348. },
  4349. {
  4350. "name": "Alessandro Cinelli (cirpo)",
  4351. "email": "alessandro.cinelli@gmail.com"
  4352. }
  4353. ],
  4354. "description": "JSON Object Signing and Encryption library for PHP.",
  4355. "keywords": [
  4356. "JSON Web Signature",
  4357. "JSON Web Token",
  4358. "JWS",
  4359. "json",
  4360. "jwt",
  4361. "token"
  4362. ],
  4363. "support": {
  4364. "issues": "https://github.com/namshi/jose/issues",
  4365. "source": "https://github.com/namshi/jose/tree/master"
  4366. },
  4367. "time": "2016-12-05T07:27:31+00:00"
  4368. },
  4369. {
  4370. "name": "nesbot/carbon",
  4371. "version": "2.59.1",
  4372. "source": {
  4373. "type": "git",
  4374. "url": "https://github.com/briannesbitt/Carbon.git",
  4375. "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5"
  4376. },
  4377. "dist": {
  4378. "type": "zip",
  4379. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
  4380. "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
  4381. "shasum": "",
  4382. "mirrors": [
  4383. {
  4384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4385. "preferred": true
  4386. }
  4387. ]
  4388. },
  4389. "require": {
  4390. "ext-json": "*",
  4391. "php": "^7.1.8 || ^8.0",
  4392. "symfony/polyfill-mbstring": "^1.0",
  4393. "symfony/polyfill-php80": "^1.16",
  4394. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4395. },
  4396. "require-dev": {
  4397. "doctrine/dbal": "^2.0 || ^3.0",
  4398. "doctrine/orm": "^2.7",
  4399. "friendsofphp/php-cs-fixer": "^3.0",
  4400. "kylekatarnls/multi-tester": "^2.0",
  4401. "ondrejmirtes/better-reflection": "*",
  4402. "phpmd/phpmd": "^2.9",
  4403. "phpstan/extension-installer": "^1.0",
  4404. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4405. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4406. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4407. "squizlabs/php_codesniffer": "^3.4"
  4408. },
  4409. "bin": [
  4410. "bin/carbon"
  4411. ],
  4412. "type": "library",
  4413. "extra": {
  4414. "branch-alias": {
  4415. "dev-3.x": "3.x-dev",
  4416. "dev-master": "2.x-dev"
  4417. },
  4418. "laravel": {
  4419. "providers": [
  4420. "Carbon\\Laravel\\ServiceProvider"
  4421. ]
  4422. },
  4423. "phpstan": {
  4424. "includes": [
  4425. "extension.neon"
  4426. ]
  4427. }
  4428. },
  4429. "autoload": {
  4430. "psr-4": {
  4431. "Carbon\\": "src/Carbon/"
  4432. }
  4433. },
  4434. "notification-url": "https://packagist.org/downloads/",
  4435. "license": [
  4436. "MIT"
  4437. ],
  4438. "authors": [
  4439. {
  4440. "name": "Brian Nesbitt",
  4441. "email": "brian@nesbot.com",
  4442. "homepage": "https://markido.com"
  4443. },
  4444. {
  4445. "name": "kylekatarnls",
  4446. "homepage": "https://github.com/kylekatarnls"
  4447. }
  4448. ],
  4449. "description": "An API extension for DateTime that supports 281 different languages.",
  4450. "homepage": "https://carbon.nesbot.com",
  4451. "keywords": [
  4452. "date",
  4453. "datetime",
  4454. "time"
  4455. ],
  4456. "support": {
  4457. "docs": "https://carbon.nesbot.com/docs",
  4458. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4459. "source": "https://github.com/briannesbitt/Carbon"
  4460. },
  4461. "funding": [
  4462. {
  4463. "url": "https://github.com/sponsors/kylekatarnls",
  4464. "type": "github"
  4465. },
  4466. {
  4467. "url": "https://opencollective.com/Carbon#sponsor",
  4468. "type": "opencollective"
  4469. },
  4470. {
  4471. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4472. "type": "tidelift"
  4473. }
  4474. ],
  4475. "time": "2022-06-29T21:43:55+00:00"
  4476. },
  4477. {
  4478. "name": "nette/schema",
  4479. "version": "v1.2.2",
  4480. "source": {
  4481. "type": "git",
  4482. "url": "https://github.com/nette/schema.git",
  4483. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  4484. },
  4485. "dist": {
  4486. "type": "zip",
  4487. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  4488. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  4489. "shasum": "",
  4490. "mirrors": [
  4491. {
  4492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4493. "preferred": true
  4494. }
  4495. ]
  4496. },
  4497. "require": {
  4498. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4499. "php": ">=7.1 <8.2"
  4500. },
  4501. "require-dev": {
  4502. "nette/tester": "^2.3 || ^2.4",
  4503. "phpstan/phpstan-nette": "^0.12",
  4504. "tracy/tracy": "^2.7"
  4505. },
  4506. "type": "library",
  4507. "extra": {
  4508. "branch-alias": {
  4509. "dev-master": "1.2-dev"
  4510. }
  4511. },
  4512. "autoload": {
  4513. "classmap": [
  4514. "src/"
  4515. ]
  4516. },
  4517. "notification-url": "https://packagist.org/downloads/",
  4518. "license": [
  4519. "BSD-3-Clause",
  4520. "GPL-2.0-only",
  4521. "GPL-3.0-only"
  4522. ],
  4523. "authors": [
  4524. {
  4525. "name": "David Grudl",
  4526. "homepage": "https://davidgrudl.com"
  4527. },
  4528. {
  4529. "name": "Nette Community",
  4530. "homepage": "https://nette.org/contributors"
  4531. }
  4532. ],
  4533. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4534. "homepage": "https://nette.org",
  4535. "keywords": [
  4536. "config",
  4537. "nette"
  4538. ],
  4539. "support": {
  4540. "issues": "https://github.com/nette/schema/issues",
  4541. "source": "https://github.com/nette/schema/tree/v1.2.2"
  4542. },
  4543. "time": "2021-10-15T11:40:02+00:00"
  4544. },
  4545. {
  4546. "name": "nette/utils",
  4547. "version": "v3.2.7",
  4548. "source": {
  4549. "type": "git",
  4550. "url": "https://github.com/nette/utils.git",
  4551. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  4552. },
  4553. "dist": {
  4554. "type": "zip",
  4555. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  4556. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  4557. "shasum": "",
  4558. "mirrors": [
  4559. {
  4560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4561. "preferred": true
  4562. }
  4563. ]
  4564. },
  4565. "require": {
  4566. "php": ">=7.2 <8.2"
  4567. },
  4568. "conflict": {
  4569. "nette/di": "<3.0.6"
  4570. },
  4571. "require-dev": {
  4572. "nette/tester": "~2.0",
  4573. "phpstan/phpstan": "^1.0",
  4574. "tracy/tracy": "^2.3"
  4575. },
  4576. "suggest": {
  4577. "ext-gd": "to use Image",
  4578. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4579. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4580. "ext-json": "to use Nette\\Utils\\Json",
  4581. "ext-mbstring": "to use Strings::lower() etc...",
  4582. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  4583. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  4584. },
  4585. "type": "library",
  4586. "extra": {
  4587. "branch-alias": {
  4588. "dev-master": "3.2-dev"
  4589. }
  4590. },
  4591. "autoload": {
  4592. "classmap": [
  4593. "src/"
  4594. ]
  4595. },
  4596. "notification-url": "https://packagist.org/downloads/",
  4597. "license": [
  4598. "BSD-3-Clause",
  4599. "GPL-2.0-only",
  4600. "GPL-3.0-only"
  4601. ],
  4602. "authors": [
  4603. {
  4604. "name": "David Grudl",
  4605. "homepage": "https://davidgrudl.com"
  4606. },
  4607. {
  4608. "name": "Nette Community",
  4609. "homepage": "https://nette.org/contributors"
  4610. }
  4611. ],
  4612. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4613. "homepage": "https://nette.org",
  4614. "keywords": [
  4615. "array",
  4616. "core",
  4617. "datetime",
  4618. "images",
  4619. "json",
  4620. "nette",
  4621. "paginator",
  4622. "password",
  4623. "slugify",
  4624. "string",
  4625. "unicode",
  4626. "utf-8",
  4627. "utility",
  4628. "validation"
  4629. ],
  4630. "support": {
  4631. "issues": "https://github.com/nette/utils/issues",
  4632. "source": "https://github.com/nette/utils/tree/v3.2.7"
  4633. },
  4634. "time": "2022-01-24T11:29:14+00:00"
  4635. },
  4636. {
  4637. "name": "nikic/php-parser",
  4638. "version": "v4.14.0",
  4639. "source": {
  4640. "type": "git",
  4641. "url": "https://github.com/nikic/PHP-Parser.git",
  4642. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  4643. },
  4644. "dist": {
  4645. "type": "zip",
  4646. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  4647. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  4648. "shasum": "",
  4649. "mirrors": [
  4650. {
  4651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4652. "preferred": true
  4653. }
  4654. ]
  4655. },
  4656. "require": {
  4657. "ext-tokenizer": "*",
  4658. "php": ">=7.0"
  4659. },
  4660. "require-dev": {
  4661. "ircmaxell/php-yacc": "^0.0.7",
  4662. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4663. },
  4664. "bin": [
  4665. "bin/php-parse"
  4666. ],
  4667. "type": "library",
  4668. "extra": {
  4669. "branch-alias": {
  4670. "dev-master": "4.9-dev"
  4671. }
  4672. },
  4673. "autoload": {
  4674. "psr-4": {
  4675. "PhpParser\\": "lib/PhpParser"
  4676. }
  4677. },
  4678. "notification-url": "https://packagist.org/downloads/",
  4679. "license": [
  4680. "BSD-3-Clause"
  4681. ],
  4682. "authors": [
  4683. {
  4684. "name": "Nikita Popov"
  4685. }
  4686. ],
  4687. "description": "A PHP parser written in PHP",
  4688. "keywords": [
  4689. "parser",
  4690. "php"
  4691. ],
  4692. "support": {
  4693. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4694. "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
  4695. },
  4696. "time": "2022-05-31T20:59:12+00:00"
  4697. },
  4698. {
  4699. "name": "opis/closure",
  4700. "version": "3.6.3",
  4701. "source": {
  4702. "type": "git",
  4703. "url": "https://github.com/opis/closure.git",
  4704. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4705. },
  4706. "dist": {
  4707. "type": "zip",
  4708. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4709. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4710. "shasum": "",
  4711. "mirrors": [
  4712. {
  4713. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4714. "preferred": true
  4715. }
  4716. ]
  4717. },
  4718. "require": {
  4719. "php": "^5.4 || ^7.0 || ^8.0"
  4720. },
  4721. "require-dev": {
  4722. "jeremeamia/superclosure": "^2.0",
  4723. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4724. },
  4725. "type": "library",
  4726. "extra": {
  4727. "branch-alias": {
  4728. "dev-master": "3.6.x-dev"
  4729. }
  4730. },
  4731. "autoload": {
  4732. "files": [
  4733. "functions.php"
  4734. ],
  4735. "psr-4": {
  4736. "Opis\\Closure\\": "src/"
  4737. }
  4738. },
  4739. "notification-url": "https://packagist.org/downloads/",
  4740. "license": [
  4741. "MIT"
  4742. ],
  4743. "authors": [
  4744. {
  4745. "name": "Marius Sarca",
  4746. "email": "marius.sarca@gmail.com"
  4747. },
  4748. {
  4749. "name": "Sorin Sarca",
  4750. "email": "sarca_sorin@hotmail.com"
  4751. }
  4752. ],
  4753. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4754. "homepage": "https://opis.io/closure",
  4755. "keywords": [
  4756. "anonymous functions",
  4757. "closure",
  4758. "function",
  4759. "serializable",
  4760. "serialization",
  4761. "serialize"
  4762. ],
  4763. "support": {
  4764. "issues": "https://github.com/opis/closure/issues",
  4765. "source": "https://github.com/opis/closure/tree/3.6.3"
  4766. },
  4767. "time": "2022-01-27T09:35:39+00:00"
  4768. },
  4769. {
  4770. "name": "overtrue/easy-sms",
  4771. "version": "2.1.1",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://github.com/overtrue/easy-sms.git",
  4775. "reference": "4bbbbef4fa192ed23a60bbafc3217bccb6af824f"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/4bbbbef4fa192ed23a60bbafc3217bccb6af824f",
  4780. "reference": "4bbbbef4fa192ed23a60bbafc3217bccb6af824f",
  4781. "shasum": "",
  4782. "mirrors": [
  4783. {
  4784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4785. "preferred": true
  4786. }
  4787. ]
  4788. },
  4789. "require": {
  4790. "ext-json": "*",
  4791. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4792. "php": ">=5.6"
  4793. },
  4794. "require-dev": {
  4795. "brainmaestro/composer-git-hooks": "^2.8",
  4796. "jetbrains/phpstorm-attributes": "^1.0",
  4797. "mockery/mockery": "~1.3.3 || ^1.4.2",
  4798. "phpunit/phpunit": "^5.7 || ^7.5 || ^8.5.19 || ^9.5.8"
  4799. },
  4800. "type": "library",
  4801. "extra": {
  4802. "hooks": {
  4803. "pre-commit": [
  4804. "composer check-style",
  4805. "composer psalm",
  4806. "composer test"
  4807. ],
  4808. "pre-push": [
  4809. "composer check-style"
  4810. ]
  4811. }
  4812. },
  4813. "autoload": {
  4814. "psr-4": {
  4815. "Overtrue\\EasySms\\": "src"
  4816. }
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "MIT"
  4821. ],
  4822. "authors": [
  4823. {
  4824. "name": "overtrue",
  4825. "email": "i@overtrue.me"
  4826. }
  4827. ],
  4828. "description": "The easiest way to send short message.",
  4829. "support": {
  4830. "issues": "https://github.com/overtrue/easy-sms/issues",
  4831. "source": "https://github.com/overtrue/easy-sms/tree/2.1.1"
  4832. },
  4833. "funding": [
  4834. {
  4835. "url": "https://github.com/overtrue",
  4836. "type": "github"
  4837. }
  4838. ],
  4839. "time": "2022-03-03T01:00:29+00:00"
  4840. },
  4841. {
  4842. "name": "overtrue/laravel-lang",
  4843. "version": "3.0.19",
  4844. "source": {
  4845. "type": "git",
  4846. "url": "https://github.com/overtrue/laravel-lang.git",
  4847. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89"
  4848. },
  4849. "dist": {
  4850. "type": "zip",
  4851. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/fb6de57a454792833c96ffdcd4999c90468deb89",
  4852. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89",
  4853. "shasum": "",
  4854. "mirrors": [
  4855. {
  4856. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4857. "preferred": true
  4858. }
  4859. ]
  4860. },
  4861. "require": {
  4862. "laravel-lang/lang": "~3.0"
  4863. },
  4864. "type": "library",
  4865. "extra": {
  4866. "laravel": {
  4867. "providers": [
  4868. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  4869. ]
  4870. }
  4871. },
  4872. "autoload": {
  4873. "files": [
  4874. "src/helpers.php"
  4875. ],
  4876. "psr-4": {
  4877. "Overtrue\\LaravelLang\\": "src/"
  4878. }
  4879. },
  4880. "notification-url": "https://packagist.org/downloads/",
  4881. "license": [
  4882. "MIT"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "overtrue",
  4887. "email": "anzhengchao@gmail.com"
  4888. }
  4889. ],
  4890. "description": "List of 52 languages for Laravel 5",
  4891. "keywords": [
  4892. "languages",
  4893. "laravel",
  4894. "overtrue"
  4895. ],
  4896. "support": {
  4897. "issues": "https://github.com/overtrue/laravel-lang/issues",
  4898. "source": "https://github.com/overtrue/laravel-lang/tree/3.0.19"
  4899. },
  4900. "funding": [
  4901. {
  4902. "url": "https://www.patreon.com/overtrue",
  4903. "type": "patreon"
  4904. }
  4905. ],
  4906. "time": "2021-04-28T03:36:48+00:00"
  4907. },
  4908. {
  4909. "name": "overtrue/laravel-wechat",
  4910. "version": "5.1.0",
  4911. "source": {
  4912. "type": "git",
  4913. "url": "https://github.com/overtrue/laravel-wechat.git",
  4914. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  4915. },
  4916. "dist": {
  4917. "type": "zip",
  4918. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4919. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4920. "shasum": "",
  4921. "mirrors": [
  4922. {
  4923. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4924. "preferred": true
  4925. }
  4926. ]
  4927. },
  4928. "require": {
  4929. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  4930. "overtrue/wechat": "^4.0"
  4931. },
  4932. "require-dev": {
  4933. "friendsofphp/php-cs-fixer": "^2.16",
  4934. "laravel/framework": "^8.5"
  4935. },
  4936. "type": "library",
  4937. "extra": {
  4938. "laravel": {
  4939. "providers": [
  4940. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4941. ],
  4942. "aliases": {
  4943. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4944. }
  4945. }
  4946. },
  4947. "autoload": {
  4948. "psr-4": {
  4949. "Overtrue\\LaravelWeChat\\": "src/"
  4950. }
  4951. },
  4952. "notification-url": "https://packagist.org/downloads/",
  4953. "license": [
  4954. "MIT"
  4955. ],
  4956. "authors": [
  4957. {
  4958. "name": "overtrue",
  4959. "email": "anzhengchao@gmail.com"
  4960. }
  4961. ],
  4962. "description": "微信 SDK for Laravel",
  4963. "keywords": [
  4964. "laravel",
  4965. "sdk",
  4966. "wechat",
  4967. "weixin"
  4968. ],
  4969. "support": {
  4970. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  4971. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  4972. },
  4973. "time": "2020-09-27T08:32:30+00:00"
  4974. },
  4975. {
  4976. "name": "overtrue/socialite",
  4977. "version": "2.0.24",
  4978. "source": {
  4979. "type": "git",
  4980. "url": "https://github.com/overtrue/socialite.git",
  4981. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  4982. },
  4983. "dist": {
  4984. "type": "zip",
  4985. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  4986. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  4987. "shasum": "",
  4988. "mirrors": [
  4989. {
  4990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4991. "preferred": true
  4992. }
  4993. ]
  4994. },
  4995. "require": {
  4996. "ext-json": "*",
  4997. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  4998. "php": ">=5.6",
  4999. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  5000. },
  5001. "require-dev": {
  5002. "mockery/mockery": "~1.2",
  5003. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  5004. },
  5005. "type": "library",
  5006. "autoload": {
  5007. "psr-4": {
  5008. "Overtrue\\Socialite\\": "src/"
  5009. }
  5010. },
  5011. "notification-url": "https://packagist.org/downloads/",
  5012. "license": [
  5013. "MIT"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "overtrue",
  5018. "email": "anzhengchao@gmail.com"
  5019. }
  5020. ],
  5021. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  5022. "keywords": [
  5023. "login",
  5024. "oauth",
  5025. "qq",
  5026. "social",
  5027. "wechat",
  5028. "weibo"
  5029. ],
  5030. "support": {
  5031. "issues": "https://github.com/overtrue/socialite/issues",
  5032. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  5033. },
  5034. "funding": [
  5035. {
  5036. "url": "https://www.patreon.com/overtrue",
  5037. "type": "patreon"
  5038. }
  5039. ],
  5040. "time": "2021-05-13T16:04:48+00:00"
  5041. },
  5042. {
  5043. "name": "overtrue/wechat",
  5044. "version": "4.5.0",
  5045. "source": {
  5046. "type": "git",
  5047. "url": "https://github.com/w7corp/easywechat.git",
  5048. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  5049. },
  5050. "dist": {
  5051. "type": "zip",
  5052. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5053. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5054. "shasum": "",
  5055. "mirrors": [
  5056. {
  5057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5058. "preferred": true
  5059. }
  5060. ]
  5061. },
  5062. "require": {
  5063. "easywechat-composer/easywechat-composer": "^1.1",
  5064. "ext-fileinfo": "*",
  5065. "ext-openssl": "*",
  5066. "ext-simplexml": "*",
  5067. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5068. "monolog/monolog": "^1.22 || ^2.0",
  5069. "overtrue/socialite": "~2.0",
  5070. "php": ">=7.2",
  5071. "pimple/pimple": "^3.0",
  5072. "psr/simple-cache": "^1.0",
  5073. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  5074. "symfony/event-dispatcher": "^4.3 || ^5.0",
  5075. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  5076. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  5077. },
  5078. "require-dev": {
  5079. "friendsofphp/php-cs-fixer": "^2.15",
  5080. "mikey179/vfsstream": "^1.6",
  5081. "mockery/mockery": "^1.2.3",
  5082. "phpstan/phpstan": "^0.12.0",
  5083. "phpunit/phpunit": "^7.5"
  5084. },
  5085. "type": "library",
  5086. "autoload": {
  5087. "files": [
  5088. "src/Kernel/Support/Helpers.php",
  5089. "src/Kernel/Helpers.php"
  5090. ],
  5091. "psr-4": {
  5092. "EasyWeChat\\": "src/"
  5093. }
  5094. },
  5095. "notification-url": "https://packagist.org/downloads/",
  5096. "license": [
  5097. "MIT"
  5098. ],
  5099. "authors": [
  5100. {
  5101. "name": "overtrue",
  5102. "email": "anzhengchao@gmail.com"
  5103. }
  5104. ],
  5105. "description": "微信SDK",
  5106. "keywords": [
  5107. "easywechat",
  5108. "sdk",
  5109. "wechat",
  5110. "weixin",
  5111. "weixin-sdk"
  5112. ],
  5113. "support": {
  5114. "issues": "https://github.com/w7corp/easywechat/issues",
  5115. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  5116. },
  5117. "funding": [
  5118. {
  5119. "url": "https://github.com/overtrue",
  5120. "type": "github"
  5121. }
  5122. ],
  5123. "time": "2021-12-27T13:56:47+00:00"
  5124. },
  5125. {
  5126. "name": "php-open-source-saver/jwt-auth",
  5127. "version": "1.4.2",
  5128. "source": {
  5129. "type": "git",
  5130. "url": "https://github.com/PHP-Open-Source-Saver/jwt-auth.git",
  5131. "reference": "5fd8c185453d875835c24d4ce50be7396af6ae14"
  5132. },
  5133. "dist": {
  5134. "type": "zip",
  5135. "url": "https://api.github.com/repos/PHP-Open-Source-Saver/jwt-auth/zipball/5fd8c185453d875835c24d4ce50be7396af6ae14",
  5136. "reference": "5fd8c185453d875835c24d4ce50be7396af6ae14",
  5137. "shasum": "",
  5138. "mirrors": [
  5139. {
  5140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5141. "preferred": true
  5142. }
  5143. ]
  5144. },
  5145. "require": {
  5146. "ext-json": "*",
  5147. "illuminate/auth": "^6|^7|^8.67|^9",
  5148. "illuminate/contracts": "^6|^7|^8.67|^9",
  5149. "illuminate/http": "^6|^7|^8.67|^9",
  5150. "illuminate/support": "^6|^7|^8.67|^9",
  5151. "lcobucci/jwt": "^4.0",
  5152. "namshi/jose": "^7.0",
  5153. "nesbot/carbon": "^1.0|^2.0",
  5154. "php": "^7.4|^8.0"
  5155. },
  5156. "require-dev": {
  5157. "friendsofphp/php-cs-fixer": "^3",
  5158. "illuminate/console": "^6|^7|^8.67|^9",
  5159. "illuminate/routing": "^6|^7|^8.67|^9",
  5160. "mockery/mockery": "^1.4.4",
  5161. "orchestra/testbench": "^4.18|^5.8|^6.3|^7",
  5162. "phpstan/phpstan": "^1",
  5163. "phpunit/phpunit": "^8.5|^9.4",
  5164. "rector/rector": "^0.12.4",
  5165. "vlucas/phpdotenv": "^5.2.0",
  5166. "yoast/phpunit-polyfills": "^1.0.2"
  5167. },
  5168. "type": "library",
  5169. "extra": {
  5170. "branch-alias": {
  5171. "dev-develop": "1.0-dev"
  5172. },
  5173. "laravel": {
  5174. "aliases": {
  5175. "JWTAuth": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTAuth",
  5176. "JWTFactory": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTFactory"
  5177. },
  5178. "providers": [
  5179. "PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider"
  5180. ]
  5181. }
  5182. },
  5183. "autoload": {
  5184. "psr-4": {
  5185. "PHPOpenSourceSaver\\JWTAuth\\": "src/"
  5186. }
  5187. },
  5188. "notification-url": "https://packagist.org/downloads/",
  5189. "license": [
  5190. "MIT"
  5191. ],
  5192. "authors": [
  5193. {
  5194. "name": "Sean Tymon",
  5195. "email": "tymon148@gmail.com",
  5196. "homepage": "https://tymon.xyz",
  5197. "role": "Forked package creator | Developer"
  5198. },
  5199. {
  5200. "name": "Eric Schricker",
  5201. "email": "eric.schricker@adiutabyte.de",
  5202. "role": "Developer"
  5203. },
  5204. {
  5205. "name": "Fabio William Conceição",
  5206. "email": "messhias@gmail.com",
  5207. "role": "Developer"
  5208. }
  5209. ],
  5210. "description": "JSON Web Token Authentication for Laravel and Lumen",
  5211. "homepage": "https://github.com/PHP-Open-Source-Saver/jwt-auth",
  5212. "keywords": [
  5213. "Authentication",
  5214. "JSON Web Token",
  5215. "auth",
  5216. "jwt",
  5217. "laravel"
  5218. ],
  5219. "support": {
  5220. "issues": "https://github.com/PHP-Open-Source-Saver/jwt-auth/issues",
  5221. "source": "https://github.com/PHP-Open-Source-Saver/jwt-auth"
  5222. },
  5223. "time": "2022-04-22T06:31:30+00:00"
  5224. },
  5225. {
  5226. "name": "phpdocumentor/reflection-common",
  5227. "version": "2.2.0",
  5228. "source": {
  5229. "type": "git",
  5230. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5231. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5232. },
  5233. "dist": {
  5234. "type": "zip",
  5235. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5236. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5237. "shasum": "",
  5238. "mirrors": [
  5239. {
  5240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5241. "preferred": true
  5242. }
  5243. ]
  5244. },
  5245. "require": {
  5246. "php": "^7.2 || ^8.0"
  5247. },
  5248. "type": "library",
  5249. "extra": {
  5250. "branch-alias": {
  5251. "dev-2.x": "2.x-dev"
  5252. }
  5253. },
  5254. "autoload": {
  5255. "psr-4": {
  5256. "phpDocumentor\\Reflection\\": "src/"
  5257. }
  5258. },
  5259. "notification-url": "https://packagist.org/downloads/",
  5260. "license": [
  5261. "MIT"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "Jaap van Otterdijk",
  5266. "email": "opensource@ijaap.nl"
  5267. }
  5268. ],
  5269. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5270. "homepage": "http://www.phpdoc.org",
  5271. "keywords": [
  5272. "FQSEN",
  5273. "phpDocumentor",
  5274. "phpdoc",
  5275. "reflection",
  5276. "static analysis"
  5277. ],
  5278. "support": {
  5279. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5280. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5281. },
  5282. "time": "2020-06-27T09:03:43+00:00"
  5283. },
  5284. {
  5285. "name": "phpdocumentor/reflection-docblock",
  5286. "version": "5.3.0",
  5287. "source": {
  5288. "type": "git",
  5289. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5290. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  5291. },
  5292. "dist": {
  5293. "type": "zip",
  5294. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  5295. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  5296. "shasum": "",
  5297. "mirrors": [
  5298. {
  5299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5300. "preferred": true
  5301. }
  5302. ]
  5303. },
  5304. "require": {
  5305. "ext-filter": "*",
  5306. "php": "^7.2 || ^8.0",
  5307. "phpdocumentor/reflection-common": "^2.2",
  5308. "phpdocumentor/type-resolver": "^1.3",
  5309. "webmozart/assert": "^1.9.1"
  5310. },
  5311. "require-dev": {
  5312. "mockery/mockery": "~1.3.2",
  5313. "psalm/phar": "^4.8"
  5314. },
  5315. "type": "library",
  5316. "extra": {
  5317. "branch-alias": {
  5318. "dev-master": "5.x-dev"
  5319. }
  5320. },
  5321. "autoload": {
  5322. "psr-4": {
  5323. "phpDocumentor\\Reflection\\": "src"
  5324. }
  5325. },
  5326. "notification-url": "https://packagist.org/downloads/",
  5327. "license": [
  5328. "MIT"
  5329. ],
  5330. "authors": [
  5331. {
  5332. "name": "Mike van Riel",
  5333. "email": "me@mikevanriel.com"
  5334. },
  5335. {
  5336. "name": "Jaap van Otterdijk",
  5337. "email": "account@ijaap.nl"
  5338. }
  5339. ],
  5340. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5341. "support": {
  5342. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5343. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  5344. },
  5345. "time": "2021-10-19T17:43:47+00:00"
  5346. },
  5347. {
  5348. "name": "phpdocumentor/type-resolver",
  5349. "version": "1.6.1",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5353. "reference": "77a32518733312af16a44300404e945338981de3"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  5358. "reference": "77a32518733312af16a44300404e945338981de3",
  5359. "shasum": "",
  5360. "mirrors": [
  5361. {
  5362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5363. "preferred": true
  5364. }
  5365. ]
  5366. },
  5367. "require": {
  5368. "php": "^7.2 || ^8.0",
  5369. "phpdocumentor/reflection-common": "^2.0"
  5370. },
  5371. "require-dev": {
  5372. "ext-tokenizer": "*",
  5373. "psalm/phar": "^4.8"
  5374. },
  5375. "type": "library",
  5376. "extra": {
  5377. "branch-alias": {
  5378. "dev-1.x": "1.x-dev"
  5379. }
  5380. },
  5381. "autoload": {
  5382. "psr-4": {
  5383. "phpDocumentor\\Reflection\\": "src"
  5384. }
  5385. },
  5386. "notification-url": "https://packagist.org/downloads/",
  5387. "license": [
  5388. "MIT"
  5389. ],
  5390. "authors": [
  5391. {
  5392. "name": "Mike van Riel",
  5393. "email": "me@mikevanriel.com"
  5394. }
  5395. ],
  5396. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5397. "support": {
  5398. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5399. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  5400. },
  5401. "time": "2022-03-15T21:29:03+00:00"
  5402. },
  5403. {
  5404. "name": "phpoption/phpoption",
  5405. "version": "1.8.1",
  5406. "source": {
  5407. "type": "git",
  5408. "url": "https://github.com/schmittjoh/php-option.git",
  5409. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  5410. },
  5411. "dist": {
  5412. "type": "zip",
  5413. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5414. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5415. "shasum": "",
  5416. "mirrors": [
  5417. {
  5418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5419. "preferred": true
  5420. }
  5421. ]
  5422. },
  5423. "require": {
  5424. "php": "^7.0 || ^8.0"
  5425. },
  5426. "require-dev": {
  5427. "bamarni/composer-bin-plugin": "^1.4.1",
  5428. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  5429. },
  5430. "type": "library",
  5431. "extra": {
  5432. "branch-alias": {
  5433. "dev-master": "1.8-dev"
  5434. }
  5435. },
  5436. "autoload": {
  5437. "psr-4": {
  5438. "PhpOption\\": "src/PhpOption/"
  5439. }
  5440. },
  5441. "notification-url": "https://packagist.org/downloads/",
  5442. "license": [
  5443. "Apache-2.0"
  5444. ],
  5445. "authors": [
  5446. {
  5447. "name": "Johannes M. Schmitt",
  5448. "email": "schmittjoh@gmail.com",
  5449. "homepage": "https://github.com/schmittjoh"
  5450. },
  5451. {
  5452. "name": "Graham Campbell",
  5453. "email": "hello@gjcampbell.co.uk",
  5454. "homepage": "https://github.com/GrahamCampbell"
  5455. }
  5456. ],
  5457. "description": "Option Type for PHP",
  5458. "keywords": [
  5459. "language",
  5460. "option",
  5461. "php",
  5462. "type"
  5463. ],
  5464. "support": {
  5465. "issues": "https://github.com/schmittjoh/php-option/issues",
  5466. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  5467. },
  5468. "funding": [
  5469. {
  5470. "url": "https://github.com/GrahamCampbell",
  5471. "type": "github"
  5472. },
  5473. {
  5474. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5475. "type": "tidelift"
  5476. }
  5477. ],
  5478. "time": "2021-12-04T23:24:31+00:00"
  5479. },
  5480. {
  5481. "name": "pimple/pimple",
  5482. "version": "v3.5.0",
  5483. "source": {
  5484. "type": "git",
  5485. "url": "https://github.com/silexphp/Pimple.git",
  5486. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  5487. },
  5488. "dist": {
  5489. "type": "zip",
  5490. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5491. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5492. "shasum": "",
  5493. "mirrors": [
  5494. {
  5495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5496. "preferred": true
  5497. }
  5498. ]
  5499. },
  5500. "require": {
  5501. "php": ">=7.2.5",
  5502. "psr/container": "^1.1 || ^2.0"
  5503. },
  5504. "require-dev": {
  5505. "symfony/phpunit-bridge": "^5.4@dev"
  5506. },
  5507. "type": "library",
  5508. "extra": {
  5509. "branch-alias": {
  5510. "dev-master": "3.4.x-dev"
  5511. }
  5512. },
  5513. "autoload": {
  5514. "psr-0": {
  5515. "Pimple": "src/"
  5516. }
  5517. },
  5518. "notification-url": "https://packagist.org/downloads/",
  5519. "license": [
  5520. "MIT"
  5521. ],
  5522. "authors": [
  5523. {
  5524. "name": "Fabien Potencier",
  5525. "email": "fabien@symfony.com"
  5526. }
  5527. ],
  5528. "description": "Pimple, a simple Dependency Injection Container",
  5529. "homepage": "https://pimple.symfony.com",
  5530. "keywords": [
  5531. "container",
  5532. "dependency injection"
  5533. ],
  5534. "support": {
  5535. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  5536. },
  5537. "time": "2021-10-28T11:13:42+00:00"
  5538. },
  5539. {
  5540. "name": "prettus/l5-repository",
  5541. "version": "2.8.0",
  5542. "source": {
  5543. "type": "git",
  5544. "url": "https://github.com/andersao/l5-repository.git",
  5545. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea"
  5546. },
  5547. "dist": {
  5548. "type": "zip",
  5549. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5550. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5551. "shasum": "",
  5552. "mirrors": [
  5553. {
  5554. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5555. "preferred": true
  5556. }
  5557. ]
  5558. },
  5559. "require": {
  5560. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5561. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5562. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5563. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5564. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5565. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5566. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5567. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5568. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4"
  5569. },
  5570. "suggest": {
  5571. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  5572. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  5573. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  5574. },
  5575. "type": "library",
  5576. "extra": {
  5577. "laravel": {
  5578. "providers": [
  5579. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  5580. ]
  5581. }
  5582. },
  5583. "autoload": {
  5584. "psr-4": {
  5585. "Prettus\\Repository\\": "src/Prettus/Repository/"
  5586. }
  5587. },
  5588. "notification-url": "https://packagist.org/downloads/",
  5589. "license": [
  5590. "MIT"
  5591. ],
  5592. "authors": [
  5593. {
  5594. "name": "Anderson Andrade",
  5595. "email": "contato@andersonandra.de",
  5596. "homepage": "http://andersonandra.de",
  5597. "role": "Developer"
  5598. }
  5599. ],
  5600. "description": "Laravel 5|6|7|8|9 - Repositories to the database layer",
  5601. "homepage": "http://andersao.github.io/l5-repository",
  5602. "keywords": [
  5603. "cache",
  5604. "eloquent",
  5605. "laravel",
  5606. "model",
  5607. "repository"
  5608. ],
  5609. "support": {
  5610. "docs": "http://andersao.github.io/l5-repository",
  5611. "email": "contato@andersonandra.de",
  5612. "issues": "https://github.com/andersao/l5-repository/issues",
  5613. "source": "https://github.com/andersao/l5-repository",
  5614. "wiki": "https://github.com/andersao/l5-repository"
  5615. },
  5616. "time": "2022-02-21T11:19:35+00:00"
  5617. },
  5618. {
  5619. "name": "prettus/laravel-validation",
  5620. "version": "1.4.0",
  5621. "source": {
  5622. "type": "git",
  5623. "url": "https://github.com/andersao/laravel-validator.git",
  5624. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9"
  5625. },
  5626. "dist": {
  5627. "type": "zip",
  5628. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  5629. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  5630. "shasum": "",
  5631. "mirrors": [
  5632. {
  5633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5634. "preferred": true
  5635. }
  5636. ]
  5637. },
  5638. "require": {
  5639. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0",
  5640. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0",
  5641. "php": ">=5.4.0"
  5642. },
  5643. "type": "library",
  5644. "autoload": {
  5645. "psr-4": {
  5646. "Prettus\\Validator\\": "src/Prettus/Validator/"
  5647. }
  5648. },
  5649. "notification-url": "https://packagist.org/downloads/",
  5650. "authors": [
  5651. {
  5652. "name": "Anderson Andrade",
  5653. "email": "contato@andersonandra.de",
  5654. "homepage": "http://andersonandra.de",
  5655. "role": "Developer"
  5656. }
  5657. ],
  5658. "description": "Laravel Validation Service",
  5659. "homepage": "http://andersao.github.io/laravel-validation",
  5660. "keywords": [
  5661. "laravel",
  5662. "service",
  5663. "validation"
  5664. ],
  5665. "support": {
  5666. "docs": "http://andersao.github.io/laravel-validation",
  5667. "email": "contato@andersonandra.de",
  5668. "issues": "https://github.com/andersao/laravel-validation/issues",
  5669. "source": "https://github.com/andersao/laravel-validation",
  5670. "wiki": "https://github.com/andersao/laravel-validation"
  5671. },
  5672. "time": "2022-02-21T11:18:30+00:00"
  5673. },
  5674. {
  5675. "name": "psr/cache",
  5676. "version": "2.0.0",
  5677. "source": {
  5678. "type": "git",
  5679. "url": "https://github.com/php-fig/cache.git",
  5680. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  5681. },
  5682. "dist": {
  5683. "type": "zip",
  5684. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5685. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5686. "shasum": "",
  5687. "mirrors": [
  5688. {
  5689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5690. "preferred": true
  5691. }
  5692. ]
  5693. },
  5694. "require": {
  5695. "php": ">=8.0.0"
  5696. },
  5697. "type": "library",
  5698. "extra": {
  5699. "branch-alias": {
  5700. "dev-master": "1.0.x-dev"
  5701. }
  5702. },
  5703. "autoload": {
  5704. "psr-4": {
  5705. "Psr\\Cache\\": "src/"
  5706. }
  5707. },
  5708. "notification-url": "https://packagist.org/downloads/",
  5709. "license": [
  5710. "MIT"
  5711. ],
  5712. "authors": [
  5713. {
  5714. "name": "PHP-FIG",
  5715. "homepage": "https://www.php-fig.org/"
  5716. }
  5717. ],
  5718. "description": "Common interface for caching libraries",
  5719. "keywords": [
  5720. "cache",
  5721. "psr",
  5722. "psr-6"
  5723. ],
  5724. "support": {
  5725. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  5726. },
  5727. "time": "2021-02-03T23:23:37+00:00"
  5728. },
  5729. {
  5730. "name": "psr/container",
  5731. "version": "1.1.2",
  5732. "source": {
  5733. "type": "git",
  5734. "url": "https://github.com/php-fig/container.git",
  5735. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  5736. },
  5737. "dist": {
  5738. "type": "zip",
  5739. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  5740. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  5741. "shasum": "",
  5742. "mirrors": [
  5743. {
  5744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5745. "preferred": true
  5746. }
  5747. ]
  5748. },
  5749. "require": {
  5750. "php": ">=7.4.0"
  5751. },
  5752. "type": "library",
  5753. "autoload": {
  5754. "psr-4": {
  5755. "Psr\\Container\\": "src/"
  5756. }
  5757. },
  5758. "notification-url": "https://packagist.org/downloads/",
  5759. "license": [
  5760. "MIT"
  5761. ],
  5762. "authors": [
  5763. {
  5764. "name": "PHP-FIG",
  5765. "homepage": "https://www.php-fig.org/"
  5766. }
  5767. ],
  5768. "description": "Common Container Interface (PHP FIG PSR-11)",
  5769. "homepage": "https://github.com/php-fig/container",
  5770. "keywords": [
  5771. "PSR-11",
  5772. "container",
  5773. "container-interface",
  5774. "container-interop",
  5775. "psr"
  5776. ],
  5777. "support": {
  5778. "issues": "https://github.com/php-fig/container/issues",
  5779. "source": "https://github.com/php-fig/container/tree/1.1.2"
  5780. },
  5781. "time": "2021-11-05T16:50:12+00:00"
  5782. },
  5783. {
  5784. "name": "psr/event-dispatcher",
  5785. "version": "1.0.0",
  5786. "source": {
  5787. "type": "git",
  5788. "url": "https://github.com/php-fig/event-dispatcher.git",
  5789. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5790. },
  5791. "dist": {
  5792. "type": "zip",
  5793. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5794. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5795. "shasum": "",
  5796. "mirrors": [
  5797. {
  5798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5799. "preferred": true
  5800. }
  5801. ]
  5802. },
  5803. "require": {
  5804. "php": ">=7.2.0"
  5805. },
  5806. "type": "library",
  5807. "extra": {
  5808. "branch-alias": {
  5809. "dev-master": "1.0.x-dev"
  5810. }
  5811. },
  5812. "autoload": {
  5813. "psr-4": {
  5814. "Psr\\EventDispatcher\\": "src/"
  5815. }
  5816. },
  5817. "notification-url": "https://packagist.org/downloads/",
  5818. "license": [
  5819. "MIT"
  5820. ],
  5821. "authors": [
  5822. {
  5823. "name": "PHP-FIG",
  5824. "homepage": "http://www.php-fig.org/"
  5825. }
  5826. ],
  5827. "description": "Standard interfaces for event handling.",
  5828. "keywords": [
  5829. "events",
  5830. "psr",
  5831. "psr-14"
  5832. ],
  5833. "support": {
  5834. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5835. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5836. },
  5837. "time": "2019-01-08T18:20:26+00:00"
  5838. },
  5839. {
  5840. "name": "psr/http-client",
  5841. "version": "1.0.1",
  5842. "source": {
  5843. "type": "git",
  5844. "url": "https://github.com/php-fig/http-client.git",
  5845. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  5846. },
  5847. "dist": {
  5848. "type": "zip",
  5849. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5850. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5851. "shasum": "",
  5852. "mirrors": [
  5853. {
  5854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5855. "preferred": true
  5856. }
  5857. ]
  5858. },
  5859. "require": {
  5860. "php": "^7.0 || ^8.0",
  5861. "psr/http-message": "^1.0"
  5862. },
  5863. "type": "library",
  5864. "extra": {
  5865. "branch-alias": {
  5866. "dev-master": "1.0.x-dev"
  5867. }
  5868. },
  5869. "autoload": {
  5870. "psr-4": {
  5871. "Psr\\Http\\Client\\": "src/"
  5872. }
  5873. },
  5874. "notification-url": "https://packagist.org/downloads/",
  5875. "license": [
  5876. "MIT"
  5877. ],
  5878. "authors": [
  5879. {
  5880. "name": "PHP-FIG",
  5881. "homepage": "http://www.php-fig.org/"
  5882. }
  5883. ],
  5884. "description": "Common interface for HTTP clients",
  5885. "homepage": "https://github.com/php-fig/http-client",
  5886. "keywords": [
  5887. "http",
  5888. "http-client",
  5889. "psr",
  5890. "psr-18"
  5891. ],
  5892. "support": {
  5893. "source": "https://github.com/php-fig/http-client/tree/master"
  5894. },
  5895. "time": "2020-06-29T06:28:15+00:00"
  5896. },
  5897. {
  5898. "name": "psr/http-factory",
  5899. "version": "1.0.1",
  5900. "source": {
  5901. "type": "git",
  5902. "url": "https://github.com/php-fig/http-factory.git",
  5903. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  5904. },
  5905. "dist": {
  5906. "type": "zip",
  5907. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5908. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5909. "shasum": "",
  5910. "mirrors": [
  5911. {
  5912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5913. "preferred": true
  5914. }
  5915. ]
  5916. },
  5917. "require": {
  5918. "php": ">=7.0.0",
  5919. "psr/http-message": "^1.0"
  5920. },
  5921. "type": "library",
  5922. "extra": {
  5923. "branch-alias": {
  5924. "dev-master": "1.0.x-dev"
  5925. }
  5926. },
  5927. "autoload": {
  5928. "psr-4": {
  5929. "Psr\\Http\\Message\\": "src/"
  5930. }
  5931. },
  5932. "notification-url": "https://packagist.org/downloads/",
  5933. "license": [
  5934. "MIT"
  5935. ],
  5936. "authors": [
  5937. {
  5938. "name": "PHP-FIG",
  5939. "homepage": "http://www.php-fig.org/"
  5940. }
  5941. ],
  5942. "description": "Common interfaces for PSR-7 HTTP message factories",
  5943. "keywords": [
  5944. "factory",
  5945. "http",
  5946. "message",
  5947. "psr",
  5948. "psr-17",
  5949. "psr-7",
  5950. "request",
  5951. "response"
  5952. ],
  5953. "support": {
  5954. "source": "https://github.com/php-fig/http-factory/tree/master"
  5955. },
  5956. "time": "2019-04-30T12:38:16+00:00"
  5957. },
  5958. {
  5959. "name": "psr/http-message",
  5960. "version": "1.0.1",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/php-fig/http-message.git",
  5964. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5969. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5970. "shasum": "",
  5971. "mirrors": [
  5972. {
  5973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5974. "preferred": true
  5975. }
  5976. ]
  5977. },
  5978. "require": {
  5979. "php": ">=5.3.0"
  5980. },
  5981. "type": "library",
  5982. "extra": {
  5983. "branch-alias": {
  5984. "dev-master": "1.0.x-dev"
  5985. }
  5986. },
  5987. "autoload": {
  5988. "psr-4": {
  5989. "Psr\\Http\\Message\\": "src/"
  5990. }
  5991. },
  5992. "notification-url": "https://packagist.org/downloads/",
  5993. "license": [
  5994. "MIT"
  5995. ],
  5996. "authors": [
  5997. {
  5998. "name": "PHP-FIG",
  5999. "homepage": "http://www.php-fig.org/"
  6000. }
  6001. ],
  6002. "description": "Common interface for HTTP messages",
  6003. "homepage": "https://github.com/php-fig/http-message",
  6004. "keywords": [
  6005. "http",
  6006. "http-message",
  6007. "psr",
  6008. "psr-7",
  6009. "request",
  6010. "response"
  6011. ],
  6012. "support": {
  6013. "source": "https://github.com/php-fig/http-message/tree/master"
  6014. },
  6015. "time": "2016-08-06T14:39:51+00:00"
  6016. },
  6017. {
  6018. "name": "psr/log",
  6019. "version": "2.0.0",
  6020. "source": {
  6021. "type": "git",
  6022. "url": "https://github.com/php-fig/log.git",
  6023. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  6024. },
  6025. "dist": {
  6026. "type": "zip",
  6027. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  6028. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  6029. "shasum": "",
  6030. "mirrors": [
  6031. {
  6032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6033. "preferred": true
  6034. }
  6035. ]
  6036. },
  6037. "require": {
  6038. "php": ">=8.0.0"
  6039. },
  6040. "type": "library",
  6041. "extra": {
  6042. "branch-alias": {
  6043. "dev-master": "2.0.x-dev"
  6044. }
  6045. },
  6046. "autoload": {
  6047. "psr-4": {
  6048. "Psr\\Log\\": "src"
  6049. }
  6050. },
  6051. "notification-url": "https://packagist.org/downloads/",
  6052. "license": [
  6053. "MIT"
  6054. ],
  6055. "authors": [
  6056. {
  6057. "name": "PHP-FIG",
  6058. "homepage": "https://www.php-fig.org/"
  6059. }
  6060. ],
  6061. "description": "Common interface for logging libraries",
  6062. "homepage": "https://github.com/php-fig/log",
  6063. "keywords": [
  6064. "log",
  6065. "psr",
  6066. "psr-3"
  6067. ],
  6068. "support": {
  6069. "source": "https://github.com/php-fig/log/tree/2.0.0"
  6070. },
  6071. "time": "2021-07-14T16:41:46+00:00"
  6072. },
  6073. {
  6074. "name": "psr/simple-cache",
  6075. "version": "1.0.1",
  6076. "source": {
  6077. "type": "git",
  6078. "url": "https://github.com/php-fig/simple-cache.git",
  6079. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  6080. },
  6081. "dist": {
  6082. "type": "zip",
  6083. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6084. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6085. "shasum": "",
  6086. "mirrors": [
  6087. {
  6088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6089. "preferred": true
  6090. }
  6091. ]
  6092. },
  6093. "require": {
  6094. "php": ">=5.3.0"
  6095. },
  6096. "type": "library",
  6097. "extra": {
  6098. "branch-alias": {
  6099. "dev-master": "1.0.x-dev"
  6100. }
  6101. },
  6102. "autoload": {
  6103. "psr-4": {
  6104. "Psr\\SimpleCache\\": "src/"
  6105. }
  6106. },
  6107. "notification-url": "https://packagist.org/downloads/",
  6108. "license": [
  6109. "MIT"
  6110. ],
  6111. "authors": [
  6112. {
  6113. "name": "PHP-FIG",
  6114. "homepage": "http://www.php-fig.org/"
  6115. }
  6116. ],
  6117. "description": "Common interfaces for simple caching",
  6118. "keywords": [
  6119. "cache",
  6120. "caching",
  6121. "psr",
  6122. "psr-16",
  6123. "simple-cache"
  6124. ],
  6125. "support": {
  6126. "source": "https://github.com/php-fig/simple-cache/tree/master"
  6127. },
  6128. "time": "2017-10-23T01:57:42+00:00"
  6129. },
  6130. {
  6131. "name": "psy/psysh",
  6132. "version": "v0.11.6",
  6133. "source": {
  6134. "type": "git",
  6135. "url": "https://github.com/bobthecow/psysh.git",
  6136. "reference": "3f5b5f8aaa979fbd0d1783173f4c82ad529fe621"
  6137. },
  6138. "dist": {
  6139. "type": "zip",
  6140. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3f5b5f8aaa979fbd0d1783173f4c82ad529fe621",
  6141. "reference": "3f5b5f8aaa979fbd0d1783173f4c82ad529fe621",
  6142. "shasum": "",
  6143. "mirrors": [
  6144. {
  6145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6146. "preferred": true
  6147. }
  6148. ]
  6149. },
  6150. "require": {
  6151. "ext-json": "*",
  6152. "ext-tokenizer": "*",
  6153. "nikic/php-parser": "^4.0 || ^3.1",
  6154. "php": "^8.0 || ^7.0.8",
  6155. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  6156. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  6157. },
  6158. "conflict": {
  6159. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6160. },
  6161. "require-dev": {
  6162. "bamarni/composer-bin-plugin": "^1.2"
  6163. },
  6164. "suggest": {
  6165. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6166. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6167. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6168. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  6169. },
  6170. "bin": [
  6171. "bin/psysh"
  6172. ],
  6173. "type": "library",
  6174. "extra": {
  6175. "branch-alias": {
  6176. "dev-main": "0.11.x-dev"
  6177. }
  6178. },
  6179. "autoload": {
  6180. "files": [
  6181. "src/functions.php"
  6182. ],
  6183. "psr-4": {
  6184. "Psy\\": "src/"
  6185. }
  6186. },
  6187. "notification-url": "https://packagist.org/downloads/",
  6188. "license": [
  6189. "MIT"
  6190. ],
  6191. "authors": [
  6192. {
  6193. "name": "Justin Hileman",
  6194. "email": "justin@justinhileman.info",
  6195. "homepage": "http://justinhileman.com"
  6196. }
  6197. ],
  6198. "description": "An interactive shell for modern PHP.",
  6199. "homepage": "http://psysh.org",
  6200. "keywords": [
  6201. "REPL",
  6202. "console",
  6203. "interactive",
  6204. "shell"
  6205. ],
  6206. "support": {
  6207. "issues": "https://github.com/bobthecow/psysh/issues",
  6208. "source": "https://github.com/bobthecow/psysh/tree/v0.11.6"
  6209. },
  6210. "time": "2022-07-03T16:40:23+00:00"
  6211. },
  6212. {
  6213. "name": "ralouphie/getallheaders",
  6214. "version": "3.0.3",
  6215. "source": {
  6216. "type": "git",
  6217. "url": "https://github.com/ralouphie/getallheaders.git",
  6218. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6219. },
  6220. "dist": {
  6221. "type": "zip",
  6222. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6223. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6224. "shasum": "",
  6225. "mirrors": [
  6226. {
  6227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6228. "preferred": true
  6229. }
  6230. ]
  6231. },
  6232. "require": {
  6233. "php": ">=5.6"
  6234. },
  6235. "require-dev": {
  6236. "php-coveralls/php-coveralls": "^2.1",
  6237. "phpunit/phpunit": "^5 || ^6.5"
  6238. },
  6239. "type": "library",
  6240. "autoload": {
  6241. "files": [
  6242. "src/getallheaders.php"
  6243. ]
  6244. },
  6245. "notification-url": "https://packagist.org/downloads/",
  6246. "license": [
  6247. "MIT"
  6248. ],
  6249. "authors": [
  6250. {
  6251. "name": "Ralph Khattar",
  6252. "email": "ralph.khattar@gmail.com"
  6253. }
  6254. ],
  6255. "description": "A polyfill for getallheaders.",
  6256. "support": {
  6257. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6258. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6259. },
  6260. "time": "2019-03-08T08:55:37+00:00"
  6261. },
  6262. {
  6263. "name": "ramsey/collection",
  6264. "version": "1.2.2",
  6265. "source": {
  6266. "type": "git",
  6267. "url": "https://github.com/ramsey/collection.git",
  6268. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  6269. },
  6270. "dist": {
  6271. "type": "zip",
  6272. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6273. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6274. "shasum": "",
  6275. "mirrors": [
  6276. {
  6277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6278. "preferred": true
  6279. }
  6280. ]
  6281. },
  6282. "require": {
  6283. "php": "^7.3 || ^8",
  6284. "symfony/polyfill-php81": "^1.23"
  6285. },
  6286. "require-dev": {
  6287. "captainhook/captainhook": "^5.3",
  6288. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6289. "ergebnis/composer-normalize": "^2.6",
  6290. "fakerphp/faker": "^1.5",
  6291. "hamcrest/hamcrest-php": "^2",
  6292. "jangregor/phpstan-prophecy": "^0.8",
  6293. "mockery/mockery": "^1.3",
  6294. "phpspec/prophecy-phpunit": "^2.0",
  6295. "phpstan/extension-installer": "^1",
  6296. "phpstan/phpstan": "^0.12.32",
  6297. "phpstan/phpstan-mockery": "^0.12.5",
  6298. "phpstan/phpstan-phpunit": "^0.12.11",
  6299. "phpunit/phpunit": "^8.5 || ^9",
  6300. "psy/psysh": "^0.10.4",
  6301. "slevomat/coding-standard": "^6.3",
  6302. "squizlabs/php_codesniffer": "^3.5",
  6303. "vimeo/psalm": "^4.4"
  6304. },
  6305. "type": "library",
  6306. "autoload": {
  6307. "psr-4": {
  6308. "Ramsey\\Collection\\": "src/"
  6309. }
  6310. },
  6311. "notification-url": "https://packagist.org/downloads/",
  6312. "license": [
  6313. "MIT"
  6314. ],
  6315. "authors": [
  6316. {
  6317. "name": "Ben Ramsey",
  6318. "email": "ben@benramsey.com",
  6319. "homepage": "https://benramsey.com"
  6320. }
  6321. ],
  6322. "description": "A PHP library for representing and manipulating collections.",
  6323. "keywords": [
  6324. "array",
  6325. "collection",
  6326. "hash",
  6327. "map",
  6328. "queue",
  6329. "set"
  6330. ],
  6331. "support": {
  6332. "issues": "https://github.com/ramsey/collection/issues",
  6333. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  6334. },
  6335. "funding": [
  6336. {
  6337. "url": "https://github.com/ramsey",
  6338. "type": "github"
  6339. },
  6340. {
  6341. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6342. "type": "tidelift"
  6343. }
  6344. ],
  6345. "time": "2021-10-10T03:01:02+00:00"
  6346. },
  6347. {
  6348. "name": "ramsey/uuid",
  6349. "version": "4.3.1",
  6350. "source": {
  6351. "type": "git",
  6352. "url": "https://github.com/ramsey/uuid.git",
  6353. "reference": "8505afd4fea63b81a85d3b7b53ac3cb8dc347c28"
  6354. },
  6355. "dist": {
  6356. "type": "zip",
  6357. "url": "https://api.github.com/repos/ramsey/uuid/zipball/8505afd4fea63b81a85d3b7b53ac3cb8dc347c28",
  6358. "reference": "8505afd4fea63b81a85d3b7b53ac3cb8dc347c28",
  6359. "shasum": "",
  6360. "mirrors": [
  6361. {
  6362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6363. "preferred": true
  6364. }
  6365. ]
  6366. },
  6367. "require": {
  6368. "brick/math": "^0.8 || ^0.9",
  6369. "ext-ctype": "*",
  6370. "ext-json": "*",
  6371. "php": "^8.0",
  6372. "ramsey/collection": "^1.0"
  6373. },
  6374. "replace": {
  6375. "rhumsaa/uuid": "self.version"
  6376. },
  6377. "require-dev": {
  6378. "captainhook/captainhook": "^5.10",
  6379. "captainhook/plugin-composer": "^5.3",
  6380. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6381. "doctrine/annotations": "^1.8",
  6382. "ergebnis/composer-normalize": "^2.15",
  6383. "mockery/mockery": "^1.3",
  6384. "moontoast/math": "^1.1",
  6385. "paragonie/random-lib": "^2",
  6386. "php-mock/php-mock": "^2.2",
  6387. "php-mock/php-mock-mockery": "^1.3",
  6388. "php-parallel-lint/php-parallel-lint": "^1.1",
  6389. "phpbench/phpbench": "^1.0",
  6390. "phpstan/extension-installer": "^1.0",
  6391. "phpstan/phpstan": "^0.12",
  6392. "phpstan/phpstan-mockery": "^0.12",
  6393. "phpstan/phpstan-phpunit": "^0.12",
  6394. "phpunit/phpunit": "^8.5 || ^9",
  6395. "slevomat/coding-standard": "^7.0",
  6396. "squizlabs/php_codesniffer": "^3.5",
  6397. "vimeo/psalm": "^4.9"
  6398. },
  6399. "suggest": {
  6400. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6401. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  6402. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6403. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6404. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6405. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6406. },
  6407. "type": "library",
  6408. "extra": {
  6409. "captainhook": {
  6410. "force-install": true
  6411. }
  6412. },
  6413. "autoload": {
  6414. "files": [
  6415. "src/functions.php"
  6416. ],
  6417. "psr-4": {
  6418. "Ramsey\\Uuid\\": "src/"
  6419. }
  6420. },
  6421. "notification-url": "https://packagist.org/downloads/",
  6422. "license": [
  6423. "MIT"
  6424. ],
  6425. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6426. "keywords": [
  6427. "guid",
  6428. "identifier",
  6429. "uuid"
  6430. ],
  6431. "support": {
  6432. "issues": "https://github.com/ramsey/uuid/issues",
  6433. "source": "https://github.com/ramsey/uuid/tree/4.3.1"
  6434. },
  6435. "funding": [
  6436. {
  6437. "url": "https://github.com/ramsey",
  6438. "type": "github"
  6439. },
  6440. {
  6441. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6442. "type": "tidelift"
  6443. }
  6444. ],
  6445. "time": "2022-03-27T21:42:02+00:00"
  6446. },
  6447. {
  6448. "name": "socialiteproviders/facebook",
  6449. "version": "4.1.0",
  6450. "source": {
  6451. "type": "git",
  6452. "url": "https://github.com/SocialiteProviders/Facebook.git",
  6453. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d"
  6454. },
  6455. "dist": {
  6456. "type": "zip",
  6457. "url": "https://api.github.com/repos/SocialiteProviders/Facebook/zipball/9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6458. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6459. "shasum": "",
  6460. "mirrors": [
  6461. {
  6462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6463. "preferred": true
  6464. }
  6465. ]
  6466. },
  6467. "require": {
  6468. "ext-json": "*",
  6469. "php": "^7.2 || ^8.0",
  6470. "socialiteproviders/manager": "~4.0"
  6471. },
  6472. "type": "library",
  6473. "autoload": {
  6474. "psr-4": {
  6475. "SocialiteProviders\\Facebook\\": ""
  6476. }
  6477. },
  6478. "notification-url": "https://packagist.org/downloads/",
  6479. "license": [
  6480. "MIT"
  6481. ],
  6482. "authors": [
  6483. {
  6484. "name": "Oleksandr Prypkhan (Alex Wells)",
  6485. "email": "autaut03@googlemail.com"
  6486. }
  6487. ],
  6488. "description": "Facebook (facebook.com) OAuth2 Provider for Laravel Socialite",
  6489. "support": {
  6490. "source": "https://github.com/SocialiteProviders/Facebook/tree/4.1.0"
  6491. },
  6492. "time": "2020-12-01T23:10:59+00:00"
  6493. },
  6494. {
  6495. "name": "socialiteproviders/manager",
  6496. "version": "v4.1.0",
  6497. "source": {
  6498. "type": "git",
  6499. "url": "https://github.com/SocialiteProviders/Manager.git",
  6500. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9"
  6501. },
  6502. "dist": {
  6503. "type": "zip",
  6504. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6505. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6506. "shasum": "",
  6507. "mirrors": [
  6508. {
  6509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6510. "preferred": true
  6511. }
  6512. ]
  6513. },
  6514. "require": {
  6515. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  6516. "laravel/socialite": "~4.0 || ~5.0",
  6517. "php": "^7.2 || ^8.0"
  6518. },
  6519. "require-dev": {
  6520. "mockery/mockery": "^1.2",
  6521. "phpunit/phpunit": "^6.0 || ^9.0"
  6522. },
  6523. "type": "library",
  6524. "extra": {
  6525. "laravel": {
  6526. "providers": [
  6527. "SocialiteProviders\\Manager\\ServiceProvider"
  6528. ]
  6529. }
  6530. },
  6531. "autoload": {
  6532. "psr-4": {
  6533. "SocialiteProviders\\Manager\\": "src/"
  6534. }
  6535. },
  6536. "notification-url": "https://packagist.org/downloads/",
  6537. "license": [
  6538. "MIT"
  6539. ],
  6540. "authors": [
  6541. {
  6542. "name": "Andy Wendt",
  6543. "email": "andy@awendt.com"
  6544. },
  6545. {
  6546. "name": "Anton Komarev",
  6547. "email": "a.komarev@cybercog.su"
  6548. },
  6549. {
  6550. "name": "Miguel Piedrafita",
  6551. "email": "soy@miguelpiedrafita.com"
  6552. },
  6553. {
  6554. "name": "atymic",
  6555. "email": "atymicq@gmail.com",
  6556. "homepage": "https://atymic.dev"
  6557. }
  6558. ],
  6559. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  6560. "homepage": "https://socialiteproviders.com",
  6561. "keywords": [
  6562. "laravel",
  6563. "manager",
  6564. "oauth",
  6565. "providers",
  6566. "socialite"
  6567. ],
  6568. "support": {
  6569. "issues": "https://github.com/socialiteproviders/manager/issues",
  6570. "source": "https://github.com/socialiteproviders/manager"
  6571. },
  6572. "time": "2022-01-23T22:40:23+00:00"
  6573. },
  6574. {
  6575. "name": "socialiteproviders/weixin",
  6576. "version": "4.1.0",
  6577. "source": {
  6578. "type": "git",
  6579. "url": "https://github.com/SocialiteProviders/Weixin.git",
  6580. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  6581. },
  6582. "dist": {
  6583. "type": "zip",
  6584. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6585. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6586. "shasum": "",
  6587. "mirrors": [
  6588. {
  6589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6590. "preferred": true
  6591. }
  6592. ]
  6593. },
  6594. "require": {
  6595. "ext-json": "*",
  6596. "php": "^7.2 || ^8.0",
  6597. "socialiteproviders/manager": "~4.0"
  6598. },
  6599. "type": "library",
  6600. "autoload": {
  6601. "psr-4": {
  6602. "SocialiteProviders\\Weixin\\": ""
  6603. }
  6604. },
  6605. "notification-url": "https://packagist.org/downloads/",
  6606. "license": [
  6607. "MIT"
  6608. ],
  6609. "authors": [
  6610. {
  6611. "name": "xyxu",
  6612. "email": "techxu@gmail.com"
  6613. },
  6614. {
  6615. "name": "xiami",
  6616. "email": "jhdxr@php.net"
  6617. }
  6618. ],
  6619. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  6620. "support": {
  6621. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  6622. },
  6623. "time": "2020-12-01T23:10:59+00:00"
  6624. },
  6625. {
  6626. "name": "spatie/eloquent-sortable",
  6627. "version": "4.0.1",
  6628. "source": {
  6629. "type": "git",
  6630. "url": "https://github.com/spatie/eloquent-sortable.git",
  6631. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a"
  6632. },
  6633. "dist": {
  6634. "type": "zip",
  6635. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  6636. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  6637. "shasum": "",
  6638. "mirrors": [
  6639. {
  6640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6641. "preferred": true
  6642. }
  6643. ]
  6644. },
  6645. "require": {
  6646. "illuminate/database": "^8.0|^9.0",
  6647. "illuminate/support": "^8.0|^9.0",
  6648. "php": "^8.0",
  6649. "spatie/laravel-package-tools": "^1.9"
  6650. },
  6651. "require-dev": {
  6652. "orchestra/testbench": "^6.0|^7.0",
  6653. "phpunit/phpunit": "^9.5"
  6654. },
  6655. "type": "library",
  6656. "extra": {
  6657. "laravel": {
  6658. "providers": [
  6659. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  6660. ]
  6661. }
  6662. },
  6663. "autoload": {
  6664. "psr-4": {
  6665. "Spatie\\EloquentSortable\\": "src/"
  6666. }
  6667. },
  6668. "notification-url": "https://packagist.org/downloads/",
  6669. "license": [
  6670. "MIT"
  6671. ],
  6672. "authors": [
  6673. {
  6674. "name": "Freek Van der Herten",
  6675. "email": "freek@spatie.be"
  6676. }
  6677. ],
  6678. "description": "Sortable behaviour for eloquent models",
  6679. "homepage": "https://github.com/spatie/eloquent-sortable",
  6680. "keywords": [
  6681. "behaviour",
  6682. "eloquent",
  6683. "laravel",
  6684. "model",
  6685. "sort",
  6686. "sortable"
  6687. ],
  6688. "support": {
  6689. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  6690. "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.1"
  6691. },
  6692. "funding": [
  6693. {
  6694. "url": "https://spatie.be/open-source/support-us",
  6695. "type": "custom"
  6696. },
  6697. {
  6698. "url": "https://github.com/spatie",
  6699. "type": "github"
  6700. }
  6701. ],
  6702. "time": "2022-01-21T08:32:41+00:00"
  6703. },
  6704. {
  6705. "name": "spatie/laravel-package-tools",
  6706. "version": "1.12.1",
  6707. "source": {
  6708. "type": "git",
  6709. "url": "https://github.com/spatie/laravel-package-tools.git",
  6710. "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357"
  6711. },
  6712. "dist": {
  6713. "type": "zip",
  6714. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/09f80fa240d44fafb1c70657c74ee44ffa929357",
  6715. "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357",
  6716. "shasum": "",
  6717. "mirrors": [
  6718. {
  6719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6720. "preferred": true
  6721. }
  6722. ]
  6723. },
  6724. "require": {
  6725. "illuminate/contracts": "^7.0|^8.0|^9.0",
  6726. "php": "^7.4|^8.0"
  6727. },
  6728. "require-dev": {
  6729. "mockery/mockery": "^1.4",
  6730. "orchestra/testbench": "^5.0|^6.23|^7.0",
  6731. "phpunit/phpunit": "^9.4",
  6732. "spatie/test-time": "^1.2"
  6733. },
  6734. "type": "library",
  6735. "autoload": {
  6736. "psr-4": {
  6737. "Spatie\\LaravelPackageTools\\": "src"
  6738. }
  6739. },
  6740. "notification-url": "https://packagist.org/downloads/",
  6741. "license": [
  6742. "MIT"
  6743. ],
  6744. "authors": [
  6745. {
  6746. "name": "Freek Van der Herten",
  6747. "email": "freek@spatie.be",
  6748. "role": "Developer"
  6749. }
  6750. ],
  6751. "description": "Tools for creating Laravel packages",
  6752. "homepage": "https://github.com/spatie/laravel-package-tools",
  6753. "keywords": [
  6754. "laravel-package-tools",
  6755. "spatie"
  6756. ],
  6757. "support": {
  6758. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6759. "source": "https://github.com/spatie/laravel-package-tools/tree/1.12.1"
  6760. },
  6761. "funding": [
  6762. {
  6763. "url": "https://github.com/spatie",
  6764. "type": "github"
  6765. }
  6766. ],
  6767. "time": "2022-06-28T14:29:26+00:00"
  6768. },
  6769. {
  6770. "name": "stella-maris/clock",
  6771. "version": "0.1.4",
  6772. "source": {
  6773. "type": "git",
  6774. "url": "https://gitlab.com/stella-maris/clock.git",
  6775. "reference": "8a0a967896df4c63417385dc69328a0aec84d9cf"
  6776. },
  6777. "dist": {
  6778. "type": "zip",
  6779. "url": "https://gitlab.com/api/v4/projects/stella-maris%2Fclock/repository/archive.zip?sha=8a0a967896df4c63417385dc69328a0aec84d9cf",
  6780. "reference": "8a0a967896df4c63417385dc69328a0aec84d9cf",
  6781. "shasum": "",
  6782. "mirrors": [
  6783. {
  6784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6785. "preferred": true
  6786. }
  6787. ]
  6788. },
  6789. "require": {
  6790. "php": "^7.0|^8.0"
  6791. },
  6792. "type": "library",
  6793. "autoload": {
  6794. "psr-4": {
  6795. "StellaMaris\\Clock\\": "src"
  6796. }
  6797. },
  6798. "notification-url": "https://packagist.org/downloads/",
  6799. "license": [
  6800. "MIT"
  6801. ],
  6802. "authors": [
  6803. {
  6804. "name": "Andreas Heigl",
  6805. "role": "Maintainer"
  6806. }
  6807. ],
  6808. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6809. "homepage": "https://gitlab.com/stella-maris/clock",
  6810. "keywords": [
  6811. "clock",
  6812. "datetime",
  6813. "point in time",
  6814. "psr20"
  6815. ],
  6816. "support": {
  6817. "issues": "https://gitlab.com/stella-maris/clock/-/issues",
  6818. "source": "https://gitlab.com/stella-maris/clock/-/tree/0.1.4"
  6819. },
  6820. "time": "2022-04-17T14:12:26+00:00"
  6821. },
  6822. {
  6823. "name": "stomp-php/stomp-php",
  6824. "version": "5.0.0",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/stomp-php/stomp-php.git",
  6828. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/stomp-php/stomp-php/zipball/50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  6833. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  6834. "shasum": "",
  6835. "mirrors": [
  6836. {
  6837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6838. "preferred": true
  6839. }
  6840. ]
  6841. },
  6842. "require": {
  6843. "php": "^7.3|^8.0"
  6844. },
  6845. "require-dev": {
  6846. "phpunit/phpunit": "^9.5"
  6847. },
  6848. "type": "library",
  6849. "autoload": {
  6850. "psr-4": {
  6851. "Stomp\\": "src/"
  6852. }
  6853. },
  6854. "notification-url": "https://packagist.org/downloads/",
  6855. "license": [
  6856. "Apache-2.0"
  6857. ],
  6858. "authors": [
  6859. {
  6860. "name": "Dejan Bosnanac",
  6861. "email": "dejan@nighttale.net",
  6862. "homepage": "http://www.nighttale.net"
  6863. },
  6864. {
  6865. "name": "Sören Rohweder",
  6866. "email": "s.rohweder@blage.net",
  6867. "homepage": "http://www.monofone.de"
  6868. },
  6869. {
  6870. "name": "Jens Radtke",
  6871. "email": "swefl@fin-sn.de",
  6872. "homepage": "http://www.fin-sn.de"
  6873. }
  6874. ],
  6875. "description": "stomp support for PHP",
  6876. "homepage": "http://github.com/stomp-php/stomp-php",
  6877. "keywords": [
  6878. "activeMQ",
  6879. "apollomq",
  6880. "jms",
  6881. "messaging",
  6882. "rabbitmq",
  6883. "stomp"
  6884. ],
  6885. "support": {
  6886. "issues": "https://github.com/stomp-php/stomp-php/issues",
  6887. "source": "https://github.com/stomp-php/stomp-php/tree/5.0.0"
  6888. },
  6889. "funding": [
  6890. {
  6891. "url": "https://github.com/jmglsn",
  6892. "type": "github"
  6893. },
  6894. {
  6895. "url": "https://github.com/staabm",
  6896. "type": "github"
  6897. }
  6898. ],
  6899. "time": "2021-02-02T19:25:59+00:00"
  6900. },
  6901. {
  6902. "name": "swiftmailer/swiftmailer",
  6903. "version": "v6.3.0",
  6904. "source": {
  6905. "type": "git",
  6906. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6907. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6908. },
  6909. "dist": {
  6910. "type": "zip",
  6911. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6912. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6913. "shasum": "",
  6914. "mirrors": [
  6915. {
  6916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6917. "preferred": true
  6918. }
  6919. ]
  6920. },
  6921. "require": {
  6922. "egulias/email-validator": "^2.0|^3.1",
  6923. "php": ">=7.0.0",
  6924. "symfony/polyfill-iconv": "^1.0",
  6925. "symfony/polyfill-intl-idn": "^1.10",
  6926. "symfony/polyfill-mbstring": "^1.0"
  6927. },
  6928. "require-dev": {
  6929. "mockery/mockery": "^1.0",
  6930. "symfony/phpunit-bridge": "^4.4|^5.4"
  6931. },
  6932. "suggest": {
  6933. "ext-intl": "Needed to support internationalized email addresses"
  6934. },
  6935. "type": "library",
  6936. "extra": {
  6937. "branch-alias": {
  6938. "dev-master": "6.2-dev"
  6939. }
  6940. },
  6941. "autoload": {
  6942. "files": [
  6943. "lib/swift_required.php"
  6944. ]
  6945. },
  6946. "notification-url": "https://packagist.org/downloads/",
  6947. "license": [
  6948. "MIT"
  6949. ],
  6950. "authors": [
  6951. {
  6952. "name": "Chris Corbyn"
  6953. },
  6954. {
  6955. "name": "Fabien Potencier",
  6956. "email": "fabien@symfony.com"
  6957. }
  6958. ],
  6959. "description": "Swiftmailer, free feature-rich PHP mailer",
  6960. "homepage": "https://swiftmailer.symfony.com",
  6961. "keywords": [
  6962. "email",
  6963. "mail",
  6964. "mailer"
  6965. ],
  6966. "support": {
  6967. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6968. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6969. },
  6970. "funding": [
  6971. {
  6972. "url": "https://github.com/fabpot",
  6973. "type": "github"
  6974. },
  6975. {
  6976. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6977. "type": "tidelift"
  6978. }
  6979. ],
  6980. "abandoned": "symfony/mailer",
  6981. "time": "2021-10-18T15:26:12+00:00"
  6982. },
  6983. {
  6984. "name": "symfony/cache",
  6985. "version": "v5.4.10",
  6986. "source": {
  6987. "type": "git",
  6988. "url": "https://github.com/symfony/cache.git",
  6989. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14"
  6990. },
  6991. "dist": {
  6992. "type": "zip",
  6993. "url": "https://api.github.com/repos/symfony/cache/zipball/c4e387b739022fd4b20abd8edb2143c44c5daa14",
  6994. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14",
  6995. "shasum": "",
  6996. "mirrors": [
  6997. {
  6998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6999. "preferred": true
  7000. }
  7001. ]
  7002. },
  7003. "require": {
  7004. "php": ">=7.2.5",
  7005. "psr/cache": "^1.0|^2.0",
  7006. "psr/log": "^1.1|^2|^3",
  7007. "symfony/cache-contracts": "^1.1.7|^2",
  7008. "symfony/deprecation-contracts": "^2.1|^3",
  7009. "symfony/polyfill-php73": "^1.9",
  7010. "symfony/polyfill-php80": "^1.16",
  7011. "symfony/service-contracts": "^1.1|^2|^3",
  7012. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7013. },
  7014. "conflict": {
  7015. "doctrine/dbal": "<2.13.1",
  7016. "symfony/dependency-injection": "<4.4",
  7017. "symfony/http-kernel": "<4.4",
  7018. "symfony/var-dumper": "<4.4"
  7019. },
  7020. "provide": {
  7021. "psr/cache-implementation": "1.0|2.0",
  7022. "psr/simple-cache-implementation": "1.0|2.0",
  7023. "symfony/cache-implementation": "1.0|2.0"
  7024. },
  7025. "require-dev": {
  7026. "cache/integration-tests": "dev-master",
  7027. "doctrine/cache": "^1.6|^2.0",
  7028. "doctrine/dbal": "^2.13.1|^3.0",
  7029. "predis/predis": "^1.1",
  7030. "psr/simple-cache": "^1.0|^2.0",
  7031. "symfony/config": "^4.4|^5.0|^6.0",
  7032. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7033. "symfony/filesystem": "^4.4|^5.0|^6.0",
  7034. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7035. "symfony/messenger": "^4.4|^5.0|^6.0",
  7036. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7037. },
  7038. "type": "library",
  7039. "autoload": {
  7040. "psr-4": {
  7041. "Symfony\\Component\\Cache\\": ""
  7042. },
  7043. "exclude-from-classmap": [
  7044. "/Tests/"
  7045. ]
  7046. },
  7047. "notification-url": "https://packagist.org/downloads/",
  7048. "license": [
  7049. "MIT"
  7050. ],
  7051. "authors": [
  7052. {
  7053. "name": "Nicolas Grekas",
  7054. "email": "p@tchwork.com"
  7055. },
  7056. {
  7057. "name": "Symfony Community",
  7058. "homepage": "https://symfony.com/contributors"
  7059. }
  7060. ],
  7061. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  7062. "homepage": "https://symfony.com",
  7063. "keywords": [
  7064. "caching",
  7065. "psr6"
  7066. ],
  7067. "support": {
  7068. "source": "https://github.com/symfony/cache/tree/v5.4.10"
  7069. },
  7070. "funding": [
  7071. {
  7072. "url": "https://symfony.com/sponsor",
  7073. "type": "custom"
  7074. },
  7075. {
  7076. "url": "https://github.com/fabpot",
  7077. "type": "github"
  7078. },
  7079. {
  7080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7081. "type": "tidelift"
  7082. }
  7083. ],
  7084. "time": "2022-06-19T12:03:50+00:00"
  7085. },
  7086. {
  7087. "name": "symfony/cache-contracts",
  7088. "version": "v2.5.2",
  7089. "source": {
  7090. "type": "git",
  7091. "url": "https://github.com/symfony/cache-contracts.git",
  7092. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  7093. },
  7094. "dist": {
  7095. "type": "zip",
  7096. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7097. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7098. "shasum": "",
  7099. "mirrors": [
  7100. {
  7101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7102. "preferred": true
  7103. }
  7104. ]
  7105. },
  7106. "require": {
  7107. "php": ">=7.2.5",
  7108. "psr/cache": "^1.0|^2.0|^3.0"
  7109. },
  7110. "suggest": {
  7111. "symfony/cache-implementation": ""
  7112. },
  7113. "type": "library",
  7114. "extra": {
  7115. "branch-alias": {
  7116. "dev-main": "2.5-dev"
  7117. },
  7118. "thanks": {
  7119. "name": "symfony/contracts",
  7120. "url": "https://github.com/symfony/contracts"
  7121. }
  7122. },
  7123. "autoload": {
  7124. "psr-4": {
  7125. "Symfony\\Contracts\\Cache\\": ""
  7126. }
  7127. },
  7128. "notification-url": "https://packagist.org/downloads/",
  7129. "license": [
  7130. "MIT"
  7131. ],
  7132. "authors": [
  7133. {
  7134. "name": "Nicolas Grekas",
  7135. "email": "p@tchwork.com"
  7136. },
  7137. {
  7138. "name": "Symfony Community",
  7139. "homepage": "https://symfony.com/contributors"
  7140. }
  7141. ],
  7142. "description": "Generic abstractions related to caching",
  7143. "homepage": "https://symfony.com",
  7144. "keywords": [
  7145. "abstractions",
  7146. "contracts",
  7147. "decoupling",
  7148. "interfaces",
  7149. "interoperability",
  7150. "standards"
  7151. ],
  7152. "support": {
  7153. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  7154. },
  7155. "funding": [
  7156. {
  7157. "url": "https://symfony.com/sponsor",
  7158. "type": "custom"
  7159. },
  7160. {
  7161. "url": "https://github.com/fabpot",
  7162. "type": "github"
  7163. },
  7164. {
  7165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7166. "type": "tidelift"
  7167. }
  7168. ],
  7169. "time": "2022-01-02T09:53:40+00:00"
  7170. },
  7171. {
  7172. "name": "symfony/console",
  7173. "version": "v5.4.10",
  7174. "source": {
  7175. "type": "git",
  7176. "url": "https://github.com/symfony/console.git",
  7177. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000"
  7178. },
  7179. "dist": {
  7180. "type": "zip",
  7181. "url": "https://api.github.com/repos/symfony/console/zipball/4d671ab4ddac94ee439ea73649c69d9d200b5000",
  7182. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000",
  7183. "shasum": "",
  7184. "mirrors": [
  7185. {
  7186. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7187. "preferred": true
  7188. }
  7189. ]
  7190. },
  7191. "require": {
  7192. "php": ">=7.2.5",
  7193. "symfony/deprecation-contracts": "^2.1|^3",
  7194. "symfony/polyfill-mbstring": "~1.0",
  7195. "symfony/polyfill-php73": "^1.9",
  7196. "symfony/polyfill-php80": "^1.16",
  7197. "symfony/service-contracts": "^1.1|^2|^3",
  7198. "symfony/string": "^5.1|^6.0"
  7199. },
  7200. "conflict": {
  7201. "psr/log": ">=3",
  7202. "symfony/dependency-injection": "<4.4",
  7203. "symfony/dotenv": "<5.1",
  7204. "symfony/event-dispatcher": "<4.4",
  7205. "symfony/lock": "<4.4",
  7206. "symfony/process": "<4.4"
  7207. },
  7208. "provide": {
  7209. "psr/log-implementation": "1.0|2.0"
  7210. },
  7211. "require-dev": {
  7212. "psr/log": "^1|^2",
  7213. "symfony/config": "^4.4|^5.0|^6.0",
  7214. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7215. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  7216. "symfony/lock": "^4.4|^5.0|^6.0",
  7217. "symfony/process": "^4.4|^5.0|^6.0",
  7218. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7219. },
  7220. "suggest": {
  7221. "psr/log": "For using the console logger",
  7222. "symfony/event-dispatcher": "",
  7223. "symfony/lock": "",
  7224. "symfony/process": ""
  7225. },
  7226. "type": "library",
  7227. "autoload": {
  7228. "psr-4": {
  7229. "Symfony\\Component\\Console\\": ""
  7230. },
  7231. "exclude-from-classmap": [
  7232. "/Tests/"
  7233. ]
  7234. },
  7235. "notification-url": "https://packagist.org/downloads/",
  7236. "license": [
  7237. "MIT"
  7238. ],
  7239. "authors": [
  7240. {
  7241. "name": "Fabien Potencier",
  7242. "email": "fabien@symfony.com"
  7243. },
  7244. {
  7245. "name": "Symfony Community",
  7246. "homepage": "https://symfony.com/contributors"
  7247. }
  7248. ],
  7249. "description": "Eases the creation of beautiful and testable command line interfaces",
  7250. "homepage": "https://symfony.com",
  7251. "keywords": [
  7252. "cli",
  7253. "command line",
  7254. "console",
  7255. "terminal"
  7256. ],
  7257. "support": {
  7258. "source": "https://github.com/symfony/console/tree/v5.4.10"
  7259. },
  7260. "funding": [
  7261. {
  7262. "url": "https://symfony.com/sponsor",
  7263. "type": "custom"
  7264. },
  7265. {
  7266. "url": "https://github.com/fabpot",
  7267. "type": "github"
  7268. },
  7269. {
  7270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7271. "type": "tidelift"
  7272. }
  7273. ],
  7274. "time": "2022-06-26T13:00:04+00:00"
  7275. },
  7276. {
  7277. "name": "symfony/css-selector",
  7278. "version": "v6.0.3",
  7279. "source": {
  7280. "type": "git",
  7281. "url": "https://github.com/symfony/css-selector.git",
  7282. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a"
  7283. },
  7284. "dist": {
  7285. "type": "zip",
  7286. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1955d595c12c111629cc814d3f2a2ff13580508a",
  7287. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a",
  7288. "shasum": "",
  7289. "mirrors": [
  7290. {
  7291. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7292. "preferred": true
  7293. }
  7294. ]
  7295. },
  7296. "require": {
  7297. "php": ">=8.0.2"
  7298. },
  7299. "type": "library",
  7300. "autoload": {
  7301. "psr-4": {
  7302. "Symfony\\Component\\CssSelector\\": ""
  7303. },
  7304. "exclude-from-classmap": [
  7305. "/Tests/"
  7306. ]
  7307. },
  7308. "notification-url": "https://packagist.org/downloads/",
  7309. "license": [
  7310. "MIT"
  7311. ],
  7312. "authors": [
  7313. {
  7314. "name": "Fabien Potencier",
  7315. "email": "fabien@symfony.com"
  7316. },
  7317. {
  7318. "name": "Jean-François Simon",
  7319. "email": "jeanfrancois.simon@sensiolabs.com"
  7320. },
  7321. {
  7322. "name": "Symfony Community",
  7323. "homepage": "https://symfony.com/contributors"
  7324. }
  7325. ],
  7326. "description": "Converts CSS selectors to XPath expressions",
  7327. "homepage": "https://symfony.com",
  7328. "support": {
  7329. "source": "https://github.com/symfony/css-selector/tree/v6.0.3"
  7330. },
  7331. "funding": [
  7332. {
  7333. "url": "https://symfony.com/sponsor",
  7334. "type": "custom"
  7335. },
  7336. {
  7337. "url": "https://github.com/fabpot",
  7338. "type": "github"
  7339. },
  7340. {
  7341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7342. "type": "tidelift"
  7343. }
  7344. ],
  7345. "time": "2022-01-02T09:55:41+00:00"
  7346. },
  7347. {
  7348. "name": "symfony/deprecation-contracts",
  7349. "version": "v3.0.2",
  7350. "source": {
  7351. "type": "git",
  7352. "url": "https://github.com/symfony/deprecation-contracts.git",
  7353. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  7354. },
  7355. "dist": {
  7356. "type": "zip",
  7357. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7358. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7359. "shasum": "",
  7360. "mirrors": [
  7361. {
  7362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7363. "preferred": true
  7364. }
  7365. ]
  7366. },
  7367. "require": {
  7368. "php": ">=8.0.2"
  7369. },
  7370. "type": "library",
  7371. "extra": {
  7372. "branch-alias": {
  7373. "dev-main": "3.0-dev"
  7374. },
  7375. "thanks": {
  7376. "name": "symfony/contracts",
  7377. "url": "https://github.com/symfony/contracts"
  7378. }
  7379. },
  7380. "autoload": {
  7381. "files": [
  7382. "function.php"
  7383. ]
  7384. },
  7385. "notification-url": "https://packagist.org/downloads/",
  7386. "license": [
  7387. "MIT"
  7388. ],
  7389. "authors": [
  7390. {
  7391. "name": "Nicolas Grekas",
  7392. "email": "p@tchwork.com"
  7393. },
  7394. {
  7395. "name": "Symfony Community",
  7396. "homepage": "https://symfony.com/contributors"
  7397. }
  7398. ],
  7399. "description": "A generic function and convention to trigger deprecation notices",
  7400. "homepage": "https://symfony.com",
  7401. "support": {
  7402. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  7403. },
  7404. "funding": [
  7405. {
  7406. "url": "https://symfony.com/sponsor",
  7407. "type": "custom"
  7408. },
  7409. {
  7410. "url": "https://github.com/fabpot",
  7411. "type": "github"
  7412. },
  7413. {
  7414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7415. "type": "tidelift"
  7416. }
  7417. ],
  7418. "time": "2022-01-02T09:55:41+00:00"
  7419. },
  7420. {
  7421. "name": "symfony/error-handler",
  7422. "version": "v5.4.9",
  7423. "source": {
  7424. "type": "git",
  7425. "url": "https://github.com/symfony/error-handler.git",
  7426. "reference": "c116cda1f51c678782768dce89a45f13c949455d"
  7427. },
  7428. "dist": {
  7429. "type": "zip",
  7430. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
  7431. "reference": "c116cda1f51c678782768dce89a45f13c949455d",
  7432. "shasum": "",
  7433. "mirrors": [
  7434. {
  7435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7436. "preferred": true
  7437. }
  7438. ]
  7439. },
  7440. "require": {
  7441. "php": ">=7.2.5",
  7442. "psr/log": "^1|^2|^3",
  7443. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7444. },
  7445. "require-dev": {
  7446. "symfony/deprecation-contracts": "^2.1|^3",
  7447. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7448. "symfony/serializer": "^4.4|^5.0|^6.0"
  7449. },
  7450. "bin": [
  7451. "Resources/bin/patch-type-declarations"
  7452. ],
  7453. "type": "library",
  7454. "autoload": {
  7455. "psr-4": {
  7456. "Symfony\\Component\\ErrorHandler\\": ""
  7457. },
  7458. "exclude-from-classmap": [
  7459. "/Tests/"
  7460. ]
  7461. },
  7462. "notification-url": "https://packagist.org/downloads/",
  7463. "license": [
  7464. "MIT"
  7465. ],
  7466. "authors": [
  7467. {
  7468. "name": "Fabien Potencier",
  7469. "email": "fabien@symfony.com"
  7470. },
  7471. {
  7472. "name": "Symfony Community",
  7473. "homepage": "https://symfony.com/contributors"
  7474. }
  7475. ],
  7476. "description": "Provides tools to manage errors and ease debugging PHP code",
  7477. "homepage": "https://symfony.com",
  7478. "support": {
  7479. "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
  7480. },
  7481. "funding": [
  7482. {
  7483. "url": "https://symfony.com/sponsor",
  7484. "type": "custom"
  7485. },
  7486. {
  7487. "url": "https://github.com/fabpot",
  7488. "type": "github"
  7489. },
  7490. {
  7491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7492. "type": "tidelift"
  7493. }
  7494. ],
  7495. "time": "2022-05-21T13:57:48+00:00"
  7496. },
  7497. {
  7498. "name": "symfony/event-dispatcher",
  7499. "version": "v5.4.9",
  7500. "source": {
  7501. "type": "git",
  7502. "url": "https://github.com/symfony/event-dispatcher.git",
  7503. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  7504. },
  7505. "dist": {
  7506. "type": "zip",
  7507. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7508. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7509. "shasum": "",
  7510. "mirrors": [
  7511. {
  7512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7513. "preferred": true
  7514. }
  7515. ]
  7516. },
  7517. "require": {
  7518. "php": ">=7.2.5",
  7519. "symfony/deprecation-contracts": "^2.1|^3",
  7520. "symfony/event-dispatcher-contracts": "^2|^3",
  7521. "symfony/polyfill-php80": "^1.16"
  7522. },
  7523. "conflict": {
  7524. "symfony/dependency-injection": "<4.4"
  7525. },
  7526. "provide": {
  7527. "psr/event-dispatcher-implementation": "1.0",
  7528. "symfony/event-dispatcher-implementation": "2.0"
  7529. },
  7530. "require-dev": {
  7531. "psr/log": "^1|^2|^3",
  7532. "symfony/config": "^4.4|^5.0|^6.0",
  7533. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7534. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7535. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7536. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7537. "symfony/service-contracts": "^1.1|^2|^3",
  7538. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  7539. },
  7540. "suggest": {
  7541. "symfony/dependency-injection": "",
  7542. "symfony/http-kernel": ""
  7543. },
  7544. "type": "library",
  7545. "autoload": {
  7546. "psr-4": {
  7547. "Symfony\\Component\\EventDispatcher\\": ""
  7548. },
  7549. "exclude-from-classmap": [
  7550. "/Tests/"
  7551. ]
  7552. },
  7553. "notification-url": "https://packagist.org/downloads/",
  7554. "license": [
  7555. "MIT"
  7556. ],
  7557. "authors": [
  7558. {
  7559. "name": "Fabien Potencier",
  7560. "email": "fabien@symfony.com"
  7561. },
  7562. {
  7563. "name": "Symfony Community",
  7564. "homepage": "https://symfony.com/contributors"
  7565. }
  7566. ],
  7567. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7568. "homepage": "https://symfony.com",
  7569. "support": {
  7570. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  7571. },
  7572. "funding": [
  7573. {
  7574. "url": "https://symfony.com/sponsor",
  7575. "type": "custom"
  7576. },
  7577. {
  7578. "url": "https://github.com/fabpot",
  7579. "type": "github"
  7580. },
  7581. {
  7582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7583. "type": "tidelift"
  7584. }
  7585. ],
  7586. "time": "2022-05-05T16:45:39+00:00"
  7587. },
  7588. {
  7589. "name": "symfony/event-dispatcher-contracts",
  7590. "version": "v3.0.2",
  7591. "source": {
  7592. "type": "git",
  7593. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7594. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  7595. },
  7596. "dist": {
  7597. "type": "zip",
  7598. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  7599. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  7600. "shasum": "",
  7601. "mirrors": [
  7602. {
  7603. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7604. "preferred": true
  7605. }
  7606. ]
  7607. },
  7608. "require": {
  7609. "php": ">=8.0.2",
  7610. "psr/event-dispatcher": "^1"
  7611. },
  7612. "suggest": {
  7613. "symfony/event-dispatcher-implementation": ""
  7614. },
  7615. "type": "library",
  7616. "extra": {
  7617. "branch-alias": {
  7618. "dev-main": "3.0-dev"
  7619. },
  7620. "thanks": {
  7621. "name": "symfony/contracts",
  7622. "url": "https://github.com/symfony/contracts"
  7623. }
  7624. },
  7625. "autoload": {
  7626. "psr-4": {
  7627. "Symfony\\Contracts\\EventDispatcher\\": ""
  7628. }
  7629. },
  7630. "notification-url": "https://packagist.org/downloads/",
  7631. "license": [
  7632. "MIT"
  7633. ],
  7634. "authors": [
  7635. {
  7636. "name": "Nicolas Grekas",
  7637. "email": "p@tchwork.com"
  7638. },
  7639. {
  7640. "name": "Symfony Community",
  7641. "homepage": "https://symfony.com/contributors"
  7642. }
  7643. ],
  7644. "description": "Generic abstractions related to dispatching event",
  7645. "homepage": "https://symfony.com",
  7646. "keywords": [
  7647. "abstractions",
  7648. "contracts",
  7649. "decoupling",
  7650. "interfaces",
  7651. "interoperability",
  7652. "standards"
  7653. ],
  7654. "support": {
  7655. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  7656. },
  7657. "funding": [
  7658. {
  7659. "url": "https://symfony.com/sponsor",
  7660. "type": "custom"
  7661. },
  7662. {
  7663. "url": "https://github.com/fabpot",
  7664. "type": "github"
  7665. },
  7666. {
  7667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7668. "type": "tidelift"
  7669. }
  7670. ],
  7671. "time": "2022-01-02T09:55:41+00:00"
  7672. },
  7673. {
  7674. "name": "symfony/finder",
  7675. "version": "v5.4.8",
  7676. "source": {
  7677. "type": "git",
  7678. "url": "https://github.com/symfony/finder.git",
  7679. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  7680. },
  7681. "dist": {
  7682. "type": "zip",
  7683. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  7684. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  7685. "shasum": "",
  7686. "mirrors": [
  7687. {
  7688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7689. "preferred": true
  7690. }
  7691. ]
  7692. },
  7693. "require": {
  7694. "php": ">=7.2.5",
  7695. "symfony/deprecation-contracts": "^2.1|^3",
  7696. "symfony/polyfill-php80": "^1.16"
  7697. },
  7698. "type": "library",
  7699. "autoload": {
  7700. "psr-4": {
  7701. "Symfony\\Component\\Finder\\": ""
  7702. },
  7703. "exclude-from-classmap": [
  7704. "/Tests/"
  7705. ]
  7706. },
  7707. "notification-url": "https://packagist.org/downloads/",
  7708. "license": [
  7709. "MIT"
  7710. ],
  7711. "authors": [
  7712. {
  7713. "name": "Fabien Potencier",
  7714. "email": "fabien@symfony.com"
  7715. },
  7716. {
  7717. "name": "Symfony Community",
  7718. "homepage": "https://symfony.com/contributors"
  7719. }
  7720. ],
  7721. "description": "Finds files and directories via an intuitive fluent interface",
  7722. "homepage": "https://symfony.com",
  7723. "support": {
  7724. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  7725. },
  7726. "funding": [
  7727. {
  7728. "url": "https://symfony.com/sponsor",
  7729. "type": "custom"
  7730. },
  7731. {
  7732. "url": "https://github.com/fabpot",
  7733. "type": "github"
  7734. },
  7735. {
  7736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7737. "type": "tidelift"
  7738. }
  7739. ],
  7740. "time": "2022-04-15T08:07:45+00:00"
  7741. },
  7742. {
  7743. "name": "symfony/http-foundation",
  7744. "version": "v5.4.10",
  7745. "source": {
  7746. "type": "git",
  7747. "url": "https://github.com/symfony/http-foundation.git",
  7748. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  7749. },
  7750. "dist": {
  7751. "type": "zip",
  7752. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  7753. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  7754. "shasum": "",
  7755. "mirrors": [
  7756. {
  7757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7758. "preferred": true
  7759. }
  7760. ]
  7761. },
  7762. "require": {
  7763. "php": ">=7.2.5",
  7764. "symfony/deprecation-contracts": "^2.1|^3",
  7765. "symfony/polyfill-mbstring": "~1.1",
  7766. "symfony/polyfill-php80": "^1.16"
  7767. },
  7768. "require-dev": {
  7769. "predis/predis": "~1.0",
  7770. "symfony/cache": "^4.4|^5.0|^6.0",
  7771. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7772. "symfony/mime": "^4.4|^5.0|^6.0"
  7773. },
  7774. "suggest": {
  7775. "symfony/mime": "To use the file extension guesser"
  7776. },
  7777. "type": "library",
  7778. "autoload": {
  7779. "psr-4": {
  7780. "Symfony\\Component\\HttpFoundation\\": ""
  7781. },
  7782. "exclude-from-classmap": [
  7783. "/Tests/"
  7784. ]
  7785. },
  7786. "notification-url": "https://packagist.org/downloads/",
  7787. "license": [
  7788. "MIT"
  7789. ],
  7790. "authors": [
  7791. {
  7792. "name": "Fabien Potencier",
  7793. "email": "fabien@symfony.com"
  7794. },
  7795. {
  7796. "name": "Symfony Community",
  7797. "homepage": "https://symfony.com/contributors"
  7798. }
  7799. ],
  7800. "description": "Defines an object-oriented layer for the HTTP specification",
  7801. "homepage": "https://symfony.com",
  7802. "support": {
  7803. "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
  7804. },
  7805. "funding": [
  7806. {
  7807. "url": "https://symfony.com/sponsor",
  7808. "type": "custom"
  7809. },
  7810. {
  7811. "url": "https://github.com/fabpot",
  7812. "type": "github"
  7813. },
  7814. {
  7815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7816. "type": "tidelift"
  7817. }
  7818. ],
  7819. "time": "2022-06-19T13:13:40+00:00"
  7820. },
  7821. {
  7822. "name": "symfony/http-kernel",
  7823. "version": "v5.4.10",
  7824. "source": {
  7825. "type": "git",
  7826. "url": "https://github.com/symfony/http-kernel.git",
  7827. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948"
  7828. },
  7829. "dist": {
  7830. "type": "zip",
  7831. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/255ae3b0a488d78fbb34da23d3e0c059874b5948",
  7832. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948",
  7833. "shasum": "",
  7834. "mirrors": [
  7835. {
  7836. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7837. "preferred": true
  7838. }
  7839. ]
  7840. },
  7841. "require": {
  7842. "php": ">=7.2.5",
  7843. "psr/log": "^1|^2",
  7844. "symfony/deprecation-contracts": "^2.1|^3",
  7845. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7846. "symfony/event-dispatcher": "^5.0|^6.0",
  7847. "symfony/http-foundation": "^5.3.7|^6.0",
  7848. "symfony/polyfill-ctype": "^1.8",
  7849. "symfony/polyfill-php73": "^1.9",
  7850. "symfony/polyfill-php80": "^1.16"
  7851. },
  7852. "conflict": {
  7853. "symfony/browser-kit": "<5.4",
  7854. "symfony/cache": "<5.0",
  7855. "symfony/config": "<5.0",
  7856. "symfony/console": "<4.4",
  7857. "symfony/dependency-injection": "<5.3",
  7858. "symfony/doctrine-bridge": "<5.0",
  7859. "symfony/form": "<5.0",
  7860. "symfony/http-client": "<5.0",
  7861. "symfony/mailer": "<5.0",
  7862. "symfony/messenger": "<5.0",
  7863. "symfony/translation": "<5.0",
  7864. "symfony/twig-bridge": "<5.0",
  7865. "symfony/validator": "<5.0",
  7866. "twig/twig": "<2.13"
  7867. },
  7868. "provide": {
  7869. "psr/log-implementation": "1.0|2.0"
  7870. },
  7871. "require-dev": {
  7872. "psr/cache": "^1.0|^2.0|^3.0",
  7873. "symfony/browser-kit": "^5.4|^6.0",
  7874. "symfony/config": "^5.0|^6.0",
  7875. "symfony/console": "^4.4|^5.0|^6.0",
  7876. "symfony/css-selector": "^4.4|^5.0|^6.0",
  7877. "symfony/dependency-injection": "^5.3|^6.0",
  7878. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  7879. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7880. "symfony/finder": "^4.4|^5.0|^6.0",
  7881. "symfony/http-client-contracts": "^1.1|^2|^3",
  7882. "symfony/process": "^4.4|^5.0|^6.0",
  7883. "symfony/routing": "^4.4|^5.0|^6.0",
  7884. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  7885. "symfony/translation": "^4.4|^5.0|^6.0",
  7886. "symfony/translation-contracts": "^1.1|^2|^3",
  7887. "twig/twig": "^2.13|^3.0.4"
  7888. },
  7889. "suggest": {
  7890. "symfony/browser-kit": "",
  7891. "symfony/config": "",
  7892. "symfony/console": "",
  7893. "symfony/dependency-injection": ""
  7894. },
  7895. "type": "library",
  7896. "autoload": {
  7897. "psr-4": {
  7898. "Symfony\\Component\\HttpKernel\\": ""
  7899. },
  7900. "exclude-from-classmap": [
  7901. "/Tests/"
  7902. ]
  7903. },
  7904. "notification-url": "https://packagist.org/downloads/",
  7905. "license": [
  7906. "MIT"
  7907. ],
  7908. "authors": [
  7909. {
  7910. "name": "Fabien Potencier",
  7911. "email": "fabien@symfony.com"
  7912. },
  7913. {
  7914. "name": "Symfony Community",
  7915. "homepage": "https://symfony.com/contributors"
  7916. }
  7917. ],
  7918. "description": "Provides a structured process for converting a Request into a Response",
  7919. "homepage": "https://symfony.com",
  7920. "support": {
  7921. "source": "https://github.com/symfony/http-kernel/tree/v5.4.10"
  7922. },
  7923. "funding": [
  7924. {
  7925. "url": "https://symfony.com/sponsor",
  7926. "type": "custom"
  7927. },
  7928. {
  7929. "url": "https://github.com/fabpot",
  7930. "type": "github"
  7931. },
  7932. {
  7933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7934. "type": "tidelift"
  7935. }
  7936. ],
  7937. "time": "2022-06-26T16:57:59+00:00"
  7938. },
  7939. {
  7940. "name": "symfony/mime",
  7941. "version": "v5.4.10",
  7942. "source": {
  7943. "type": "git",
  7944. "url": "https://github.com/symfony/mime.git",
  7945. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc"
  7946. },
  7947. "dist": {
  7948. "type": "zip",
  7949. "url": "https://api.github.com/repos/symfony/mime/zipball/02265e1e5111c3cd7480387af25e82378b7ab9cc",
  7950. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc",
  7951. "shasum": "",
  7952. "mirrors": [
  7953. {
  7954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7955. "preferred": true
  7956. }
  7957. ]
  7958. },
  7959. "require": {
  7960. "php": ">=7.2.5",
  7961. "symfony/deprecation-contracts": "^2.1|^3",
  7962. "symfony/polyfill-intl-idn": "^1.10",
  7963. "symfony/polyfill-mbstring": "^1.0",
  7964. "symfony/polyfill-php80": "^1.16"
  7965. },
  7966. "conflict": {
  7967. "egulias/email-validator": "~3.0.0",
  7968. "phpdocumentor/reflection-docblock": "<3.2.2",
  7969. "phpdocumentor/type-resolver": "<1.4.0",
  7970. "symfony/mailer": "<4.4"
  7971. },
  7972. "require-dev": {
  7973. "egulias/email-validator": "^2.1.10|^3.1",
  7974. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7975. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7976. "symfony/property-access": "^4.4|^5.1|^6.0",
  7977. "symfony/property-info": "^4.4|^5.1|^6.0",
  7978. "symfony/serializer": "^5.2|^6.0"
  7979. },
  7980. "type": "library",
  7981. "autoload": {
  7982. "psr-4": {
  7983. "Symfony\\Component\\Mime\\": ""
  7984. },
  7985. "exclude-from-classmap": [
  7986. "/Tests/"
  7987. ]
  7988. },
  7989. "notification-url": "https://packagist.org/downloads/",
  7990. "license": [
  7991. "MIT"
  7992. ],
  7993. "authors": [
  7994. {
  7995. "name": "Fabien Potencier",
  7996. "email": "fabien@symfony.com"
  7997. },
  7998. {
  7999. "name": "Symfony Community",
  8000. "homepage": "https://symfony.com/contributors"
  8001. }
  8002. ],
  8003. "description": "Allows manipulating MIME messages",
  8004. "homepage": "https://symfony.com",
  8005. "keywords": [
  8006. "mime",
  8007. "mime-type"
  8008. ],
  8009. "support": {
  8010. "source": "https://github.com/symfony/mime/tree/v5.4.10"
  8011. },
  8012. "funding": [
  8013. {
  8014. "url": "https://symfony.com/sponsor",
  8015. "type": "custom"
  8016. },
  8017. {
  8018. "url": "https://github.com/fabpot",
  8019. "type": "github"
  8020. },
  8021. {
  8022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8023. "type": "tidelift"
  8024. }
  8025. ],
  8026. "time": "2022-06-09T12:22:40+00:00"
  8027. },
  8028. {
  8029. "name": "symfony/polyfill-ctype",
  8030. "version": "v1.26.0",
  8031. "source": {
  8032. "type": "git",
  8033. "url": "https://github.com/symfony/polyfill-ctype.git",
  8034. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  8035. },
  8036. "dist": {
  8037. "type": "zip",
  8038. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8039. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8040. "shasum": "",
  8041. "mirrors": [
  8042. {
  8043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8044. "preferred": true
  8045. }
  8046. ]
  8047. },
  8048. "require": {
  8049. "php": ">=7.1"
  8050. },
  8051. "provide": {
  8052. "ext-ctype": "*"
  8053. },
  8054. "suggest": {
  8055. "ext-ctype": "For best performance"
  8056. },
  8057. "type": "library",
  8058. "extra": {
  8059. "branch-alias": {
  8060. "dev-main": "1.26-dev"
  8061. },
  8062. "thanks": {
  8063. "name": "symfony/polyfill",
  8064. "url": "https://github.com/symfony/polyfill"
  8065. }
  8066. },
  8067. "autoload": {
  8068. "files": [
  8069. "bootstrap.php"
  8070. ],
  8071. "psr-4": {
  8072. "Symfony\\Polyfill\\Ctype\\": ""
  8073. }
  8074. },
  8075. "notification-url": "https://packagist.org/downloads/",
  8076. "license": [
  8077. "MIT"
  8078. ],
  8079. "authors": [
  8080. {
  8081. "name": "Gert de Pagter",
  8082. "email": "BackEndTea@gmail.com"
  8083. },
  8084. {
  8085. "name": "Symfony Community",
  8086. "homepage": "https://symfony.com/contributors"
  8087. }
  8088. ],
  8089. "description": "Symfony polyfill for ctype functions",
  8090. "homepage": "https://symfony.com",
  8091. "keywords": [
  8092. "compatibility",
  8093. "ctype",
  8094. "polyfill",
  8095. "portable"
  8096. ],
  8097. "support": {
  8098. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  8099. },
  8100. "funding": [
  8101. {
  8102. "url": "https://symfony.com/sponsor",
  8103. "type": "custom"
  8104. },
  8105. {
  8106. "url": "https://github.com/fabpot",
  8107. "type": "github"
  8108. },
  8109. {
  8110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8111. "type": "tidelift"
  8112. }
  8113. ],
  8114. "time": "2022-05-24T11:49:31+00:00"
  8115. },
  8116. {
  8117. "name": "symfony/polyfill-iconv",
  8118. "version": "v1.26.0",
  8119. "source": {
  8120. "type": "git",
  8121. "url": "https://github.com/symfony/polyfill-iconv.git",
  8122. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  8123. },
  8124. "dist": {
  8125. "type": "zip",
  8126. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  8127. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  8128. "shasum": "",
  8129. "mirrors": [
  8130. {
  8131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8132. "preferred": true
  8133. }
  8134. ]
  8135. },
  8136. "require": {
  8137. "php": ">=7.1"
  8138. },
  8139. "provide": {
  8140. "ext-iconv": "*"
  8141. },
  8142. "suggest": {
  8143. "ext-iconv": "For best performance"
  8144. },
  8145. "type": "library",
  8146. "extra": {
  8147. "branch-alias": {
  8148. "dev-main": "1.26-dev"
  8149. },
  8150. "thanks": {
  8151. "name": "symfony/polyfill",
  8152. "url": "https://github.com/symfony/polyfill"
  8153. }
  8154. },
  8155. "autoload": {
  8156. "files": [
  8157. "bootstrap.php"
  8158. ],
  8159. "psr-4": {
  8160. "Symfony\\Polyfill\\Iconv\\": ""
  8161. }
  8162. },
  8163. "notification-url": "https://packagist.org/downloads/",
  8164. "license": [
  8165. "MIT"
  8166. ],
  8167. "authors": [
  8168. {
  8169. "name": "Nicolas Grekas",
  8170. "email": "p@tchwork.com"
  8171. },
  8172. {
  8173. "name": "Symfony Community",
  8174. "homepage": "https://symfony.com/contributors"
  8175. }
  8176. ],
  8177. "description": "Symfony polyfill for the Iconv extension",
  8178. "homepage": "https://symfony.com",
  8179. "keywords": [
  8180. "compatibility",
  8181. "iconv",
  8182. "polyfill",
  8183. "portable",
  8184. "shim"
  8185. ],
  8186. "support": {
  8187. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  8188. },
  8189. "funding": [
  8190. {
  8191. "url": "https://symfony.com/sponsor",
  8192. "type": "custom"
  8193. },
  8194. {
  8195. "url": "https://github.com/fabpot",
  8196. "type": "github"
  8197. },
  8198. {
  8199. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8200. "type": "tidelift"
  8201. }
  8202. ],
  8203. "time": "2022-05-24T11:49:31+00:00"
  8204. },
  8205. {
  8206. "name": "symfony/polyfill-intl-grapheme",
  8207. "version": "v1.26.0",
  8208. "source": {
  8209. "type": "git",
  8210. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8211. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  8212. },
  8213. "dist": {
  8214. "type": "zip",
  8215. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  8216. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  8217. "shasum": "",
  8218. "mirrors": [
  8219. {
  8220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8221. "preferred": true
  8222. }
  8223. ]
  8224. },
  8225. "require": {
  8226. "php": ">=7.1"
  8227. },
  8228. "suggest": {
  8229. "ext-intl": "For best performance"
  8230. },
  8231. "type": "library",
  8232. "extra": {
  8233. "branch-alias": {
  8234. "dev-main": "1.26-dev"
  8235. },
  8236. "thanks": {
  8237. "name": "symfony/polyfill",
  8238. "url": "https://github.com/symfony/polyfill"
  8239. }
  8240. },
  8241. "autoload": {
  8242. "files": [
  8243. "bootstrap.php"
  8244. ],
  8245. "psr-4": {
  8246. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8247. }
  8248. },
  8249. "notification-url": "https://packagist.org/downloads/",
  8250. "license": [
  8251. "MIT"
  8252. ],
  8253. "authors": [
  8254. {
  8255. "name": "Nicolas Grekas",
  8256. "email": "p@tchwork.com"
  8257. },
  8258. {
  8259. "name": "Symfony Community",
  8260. "homepage": "https://symfony.com/contributors"
  8261. }
  8262. ],
  8263. "description": "Symfony polyfill for intl's grapheme_* functions",
  8264. "homepage": "https://symfony.com",
  8265. "keywords": [
  8266. "compatibility",
  8267. "grapheme",
  8268. "intl",
  8269. "polyfill",
  8270. "portable",
  8271. "shim"
  8272. ],
  8273. "support": {
  8274. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  8275. },
  8276. "funding": [
  8277. {
  8278. "url": "https://symfony.com/sponsor",
  8279. "type": "custom"
  8280. },
  8281. {
  8282. "url": "https://github.com/fabpot",
  8283. "type": "github"
  8284. },
  8285. {
  8286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8287. "type": "tidelift"
  8288. }
  8289. ],
  8290. "time": "2022-05-24T11:49:31+00:00"
  8291. },
  8292. {
  8293. "name": "symfony/polyfill-intl-idn",
  8294. "version": "v1.26.0",
  8295. "source": {
  8296. "type": "git",
  8297. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8298. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  8299. },
  8300. "dist": {
  8301. "type": "zip",
  8302. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8303. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8304. "shasum": "",
  8305. "mirrors": [
  8306. {
  8307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8308. "preferred": true
  8309. }
  8310. ]
  8311. },
  8312. "require": {
  8313. "php": ">=7.1",
  8314. "symfony/polyfill-intl-normalizer": "^1.10",
  8315. "symfony/polyfill-php72": "^1.10"
  8316. },
  8317. "suggest": {
  8318. "ext-intl": "For best performance"
  8319. },
  8320. "type": "library",
  8321. "extra": {
  8322. "branch-alias": {
  8323. "dev-main": "1.26-dev"
  8324. },
  8325. "thanks": {
  8326. "name": "symfony/polyfill",
  8327. "url": "https://github.com/symfony/polyfill"
  8328. }
  8329. },
  8330. "autoload": {
  8331. "files": [
  8332. "bootstrap.php"
  8333. ],
  8334. "psr-4": {
  8335. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8336. }
  8337. },
  8338. "notification-url": "https://packagist.org/downloads/",
  8339. "license": [
  8340. "MIT"
  8341. ],
  8342. "authors": [
  8343. {
  8344. "name": "Laurent Bassin",
  8345. "email": "laurent@bassin.info"
  8346. },
  8347. {
  8348. "name": "Trevor Rowbotham",
  8349. "email": "trevor.rowbotham@pm.me"
  8350. },
  8351. {
  8352. "name": "Symfony Community",
  8353. "homepage": "https://symfony.com/contributors"
  8354. }
  8355. ],
  8356. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8357. "homepage": "https://symfony.com",
  8358. "keywords": [
  8359. "compatibility",
  8360. "idn",
  8361. "intl",
  8362. "polyfill",
  8363. "portable",
  8364. "shim"
  8365. ],
  8366. "support": {
  8367. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  8368. },
  8369. "funding": [
  8370. {
  8371. "url": "https://symfony.com/sponsor",
  8372. "type": "custom"
  8373. },
  8374. {
  8375. "url": "https://github.com/fabpot",
  8376. "type": "github"
  8377. },
  8378. {
  8379. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8380. "type": "tidelift"
  8381. }
  8382. ],
  8383. "time": "2022-05-24T11:49:31+00:00"
  8384. },
  8385. {
  8386. "name": "symfony/polyfill-intl-normalizer",
  8387. "version": "v1.26.0",
  8388. "source": {
  8389. "type": "git",
  8390. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8391. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  8392. },
  8393. "dist": {
  8394. "type": "zip",
  8395. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  8396. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  8397. "shasum": "",
  8398. "mirrors": [
  8399. {
  8400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8401. "preferred": true
  8402. }
  8403. ]
  8404. },
  8405. "require": {
  8406. "php": ">=7.1"
  8407. },
  8408. "suggest": {
  8409. "ext-intl": "For best performance"
  8410. },
  8411. "type": "library",
  8412. "extra": {
  8413. "branch-alias": {
  8414. "dev-main": "1.26-dev"
  8415. },
  8416. "thanks": {
  8417. "name": "symfony/polyfill",
  8418. "url": "https://github.com/symfony/polyfill"
  8419. }
  8420. },
  8421. "autoload": {
  8422. "files": [
  8423. "bootstrap.php"
  8424. ],
  8425. "psr-4": {
  8426. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8427. },
  8428. "classmap": [
  8429. "Resources/stubs"
  8430. ]
  8431. },
  8432. "notification-url": "https://packagist.org/downloads/",
  8433. "license": [
  8434. "MIT"
  8435. ],
  8436. "authors": [
  8437. {
  8438. "name": "Nicolas Grekas",
  8439. "email": "p@tchwork.com"
  8440. },
  8441. {
  8442. "name": "Symfony Community",
  8443. "homepage": "https://symfony.com/contributors"
  8444. }
  8445. ],
  8446. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8447. "homepage": "https://symfony.com",
  8448. "keywords": [
  8449. "compatibility",
  8450. "intl",
  8451. "normalizer",
  8452. "polyfill",
  8453. "portable",
  8454. "shim"
  8455. ],
  8456. "support": {
  8457. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  8458. },
  8459. "funding": [
  8460. {
  8461. "url": "https://symfony.com/sponsor",
  8462. "type": "custom"
  8463. },
  8464. {
  8465. "url": "https://github.com/fabpot",
  8466. "type": "github"
  8467. },
  8468. {
  8469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8470. "type": "tidelift"
  8471. }
  8472. ],
  8473. "time": "2022-05-24T11:49:31+00:00"
  8474. },
  8475. {
  8476. "name": "symfony/polyfill-mbstring",
  8477. "version": "v1.26.0",
  8478. "source": {
  8479. "type": "git",
  8480. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8481. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  8482. },
  8483. "dist": {
  8484. "type": "zip",
  8485. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8486. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8487. "shasum": "",
  8488. "mirrors": [
  8489. {
  8490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8491. "preferred": true
  8492. }
  8493. ]
  8494. },
  8495. "require": {
  8496. "php": ">=7.1"
  8497. },
  8498. "provide": {
  8499. "ext-mbstring": "*"
  8500. },
  8501. "suggest": {
  8502. "ext-mbstring": "For best performance"
  8503. },
  8504. "type": "library",
  8505. "extra": {
  8506. "branch-alias": {
  8507. "dev-main": "1.26-dev"
  8508. },
  8509. "thanks": {
  8510. "name": "symfony/polyfill",
  8511. "url": "https://github.com/symfony/polyfill"
  8512. }
  8513. },
  8514. "autoload": {
  8515. "files": [
  8516. "bootstrap.php"
  8517. ],
  8518. "psr-4": {
  8519. "Symfony\\Polyfill\\Mbstring\\": ""
  8520. }
  8521. },
  8522. "notification-url": "https://packagist.org/downloads/",
  8523. "license": [
  8524. "MIT"
  8525. ],
  8526. "authors": [
  8527. {
  8528. "name": "Nicolas Grekas",
  8529. "email": "p@tchwork.com"
  8530. },
  8531. {
  8532. "name": "Symfony Community",
  8533. "homepage": "https://symfony.com/contributors"
  8534. }
  8535. ],
  8536. "description": "Symfony polyfill for the Mbstring extension",
  8537. "homepage": "https://symfony.com",
  8538. "keywords": [
  8539. "compatibility",
  8540. "mbstring",
  8541. "polyfill",
  8542. "portable",
  8543. "shim"
  8544. ],
  8545. "support": {
  8546. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  8547. },
  8548. "funding": [
  8549. {
  8550. "url": "https://symfony.com/sponsor",
  8551. "type": "custom"
  8552. },
  8553. {
  8554. "url": "https://github.com/fabpot",
  8555. "type": "github"
  8556. },
  8557. {
  8558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8559. "type": "tidelift"
  8560. }
  8561. ],
  8562. "time": "2022-05-24T11:49:31+00:00"
  8563. },
  8564. {
  8565. "name": "symfony/polyfill-php56",
  8566. "version": "v1.20.0",
  8567. "source": {
  8568. "type": "git",
  8569. "url": "https://github.com/symfony/polyfill-php56.git",
  8570. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  8571. },
  8572. "dist": {
  8573. "type": "zip",
  8574. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8575. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8576. "shasum": "",
  8577. "mirrors": [
  8578. {
  8579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8580. "preferred": true
  8581. }
  8582. ]
  8583. },
  8584. "require": {
  8585. "php": ">=7.1"
  8586. },
  8587. "type": "metapackage",
  8588. "extra": {
  8589. "branch-alias": {
  8590. "dev-main": "1.20-dev"
  8591. },
  8592. "thanks": {
  8593. "name": "symfony/polyfill",
  8594. "url": "https://github.com/symfony/polyfill"
  8595. }
  8596. },
  8597. "notification-url": "https://packagist.org/downloads/",
  8598. "license": [
  8599. "MIT"
  8600. ],
  8601. "authors": [
  8602. {
  8603. "name": "Nicolas Grekas",
  8604. "email": "p@tchwork.com"
  8605. },
  8606. {
  8607. "name": "Symfony Community",
  8608. "homepage": "https://symfony.com/contributors"
  8609. }
  8610. ],
  8611. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8612. "homepage": "https://symfony.com",
  8613. "keywords": [
  8614. "compatibility",
  8615. "polyfill",
  8616. "portable",
  8617. "shim"
  8618. ],
  8619. "support": {
  8620. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  8621. },
  8622. "funding": [
  8623. {
  8624. "url": "https://symfony.com/sponsor",
  8625. "type": "custom"
  8626. },
  8627. {
  8628. "url": "https://github.com/fabpot",
  8629. "type": "github"
  8630. },
  8631. {
  8632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8633. "type": "tidelift"
  8634. }
  8635. ],
  8636. "time": "2020-10-23T14:02:19+00:00"
  8637. },
  8638. {
  8639. "name": "symfony/polyfill-php72",
  8640. "version": "v1.26.0",
  8641. "source": {
  8642. "type": "git",
  8643. "url": "https://github.com/symfony/polyfill-php72.git",
  8644. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  8645. },
  8646. "dist": {
  8647. "type": "zip",
  8648. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  8649. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  8650. "shasum": "",
  8651. "mirrors": [
  8652. {
  8653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8654. "preferred": true
  8655. }
  8656. ]
  8657. },
  8658. "require": {
  8659. "php": ">=7.1"
  8660. },
  8661. "type": "library",
  8662. "extra": {
  8663. "branch-alias": {
  8664. "dev-main": "1.26-dev"
  8665. },
  8666. "thanks": {
  8667. "name": "symfony/polyfill",
  8668. "url": "https://github.com/symfony/polyfill"
  8669. }
  8670. },
  8671. "autoload": {
  8672. "files": [
  8673. "bootstrap.php"
  8674. ],
  8675. "psr-4": {
  8676. "Symfony\\Polyfill\\Php72\\": ""
  8677. }
  8678. },
  8679. "notification-url": "https://packagist.org/downloads/",
  8680. "license": [
  8681. "MIT"
  8682. ],
  8683. "authors": [
  8684. {
  8685. "name": "Nicolas Grekas",
  8686. "email": "p@tchwork.com"
  8687. },
  8688. {
  8689. "name": "Symfony Community",
  8690. "homepage": "https://symfony.com/contributors"
  8691. }
  8692. ],
  8693. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8694. "homepage": "https://symfony.com",
  8695. "keywords": [
  8696. "compatibility",
  8697. "polyfill",
  8698. "portable",
  8699. "shim"
  8700. ],
  8701. "support": {
  8702. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  8703. },
  8704. "funding": [
  8705. {
  8706. "url": "https://symfony.com/sponsor",
  8707. "type": "custom"
  8708. },
  8709. {
  8710. "url": "https://github.com/fabpot",
  8711. "type": "github"
  8712. },
  8713. {
  8714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8715. "type": "tidelift"
  8716. }
  8717. ],
  8718. "time": "2022-05-24T11:49:31+00:00"
  8719. },
  8720. {
  8721. "name": "symfony/polyfill-php73",
  8722. "version": "v1.26.0",
  8723. "source": {
  8724. "type": "git",
  8725. "url": "https://github.com/symfony/polyfill-php73.git",
  8726. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  8727. },
  8728. "dist": {
  8729. "type": "zip",
  8730. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  8731. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  8732. "shasum": "",
  8733. "mirrors": [
  8734. {
  8735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8736. "preferred": true
  8737. }
  8738. ]
  8739. },
  8740. "require": {
  8741. "php": ">=7.1"
  8742. },
  8743. "type": "library",
  8744. "extra": {
  8745. "branch-alias": {
  8746. "dev-main": "1.26-dev"
  8747. },
  8748. "thanks": {
  8749. "name": "symfony/polyfill",
  8750. "url": "https://github.com/symfony/polyfill"
  8751. }
  8752. },
  8753. "autoload": {
  8754. "files": [
  8755. "bootstrap.php"
  8756. ],
  8757. "psr-4": {
  8758. "Symfony\\Polyfill\\Php73\\": ""
  8759. },
  8760. "classmap": [
  8761. "Resources/stubs"
  8762. ]
  8763. },
  8764. "notification-url": "https://packagist.org/downloads/",
  8765. "license": [
  8766. "MIT"
  8767. ],
  8768. "authors": [
  8769. {
  8770. "name": "Nicolas Grekas",
  8771. "email": "p@tchwork.com"
  8772. },
  8773. {
  8774. "name": "Symfony Community",
  8775. "homepage": "https://symfony.com/contributors"
  8776. }
  8777. ],
  8778. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  8779. "homepage": "https://symfony.com",
  8780. "keywords": [
  8781. "compatibility",
  8782. "polyfill",
  8783. "portable",
  8784. "shim"
  8785. ],
  8786. "support": {
  8787. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  8788. },
  8789. "funding": [
  8790. {
  8791. "url": "https://symfony.com/sponsor",
  8792. "type": "custom"
  8793. },
  8794. {
  8795. "url": "https://github.com/fabpot",
  8796. "type": "github"
  8797. },
  8798. {
  8799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8800. "type": "tidelift"
  8801. }
  8802. ],
  8803. "time": "2022-05-24T11:49:31+00:00"
  8804. },
  8805. {
  8806. "name": "symfony/polyfill-php80",
  8807. "version": "v1.26.0",
  8808. "source": {
  8809. "type": "git",
  8810. "url": "https://github.com/symfony/polyfill-php80.git",
  8811. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  8812. },
  8813. "dist": {
  8814. "type": "zip",
  8815. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8816. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8817. "shasum": "",
  8818. "mirrors": [
  8819. {
  8820. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8821. "preferred": true
  8822. }
  8823. ]
  8824. },
  8825. "require": {
  8826. "php": ">=7.1"
  8827. },
  8828. "type": "library",
  8829. "extra": {
  8830. "branch-alias": {
  8831. "dev-main": "1.26-dev"
  8832. },
  8833. "thanks": {
  8834. "name": "symfony/polyfill",
  8835. "url": "https://github.com/symfony/polyfill"
  8836. }
  8837. },
  8838. "autoload": {
  8839. "files": [
  8840. "bootstrap.php"
  8841. ],
  8842. "psr-4": {
  8843. "Symfony\\Polyfill\\Php80\\": ""
  8844. },
  8845. "classmap": [
  8846. "Resources/stubs"
  8847. ]
  8848. },
  8849. "notification-url": "https://packagist.org/downloads/",
  8850. "license": [
  8851. "MIT"
  8852. ],
  8853. "authors": [
  8854. {
  8855. "name": "Ion Bazan",
  8856. "email": "ion.bazan@gmail.com"
  8857. },
  8858. {
  8859. "name": "Nicolas Grekas",
  8860. "email": "p@tchwork.com"
  8861. },
  8862. {
  8863. "name": "Symfony Community",
  8864. "homepage": "https://symfony.com/contributors"
  8865. }
  8866. ],
  8867. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8868. "homepage": "https://symfony.com",
  8869. "keywords": [
  8870. "compatibility",
  8871. "polyfill",
  8872. "portable",
  8873. "shim"
  8874. ],
  8875. "support": {
  8876. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  8877. },
  8878. "funding": [
  8879. {
  8880. "url": "https://symfony.com/sponsor",
  8881. "type": "custom"
  8882. },
  8883. {
  8884. "url": "https://github.com/fabpot",
  8885. "type": "github"
  8886. },
  8887. {
  8888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8889. "type": "tidelift"
  8890. }
  8891. ],
  8892. "time": "2022-05-10T07:21:04+00:00"
  8893. },
  8894. {
  8895. "name": "symfony/polyfill-php81",
  8896. "version": "v1.26.0",
  8897. "source": {
  8898. "type": "git",
  8899. "url": "https://github.com/symfony/polyfill-php81.git",
  8900. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  8901. },
  8902. "dist": {
  8903. "type": "zip",
  8904. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  8905. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  8906. "shasum": "",
  8907. "mirrors": [
  8908. {
  8909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8910. "preferred": true
  8911. }
  8912. ]
  8913. },
  8914. "require": {
  8915. "php": ">=7.1"
  8916. },
  8917. "type": "library",
  8918. "extra": {
  8919. "branch-alias": {
  8920. "dev-main": "1.26-dev"
  8921. },
  8922. "thanks": {
  8923. "name": "symfony/polyfill",
  8924. "url": "https://github.com/symfony/polyfill"
  8925. }
  8926. },
  8927. "autoload": {
  8928. "files": [
  8929. "bootstrap.php"
  8930. ],
  8931. "psr-4": {
  8932. "Symfony\\Polyfill\\Php81\\": ""
  8933. },
  8934. "classmap": [
  8935. "Resources/stubs"
  8936. ]
  8937. },
  8938. "notification-url": "https://packagist.org/downloads/",
  8939. "license": [
  8940. "MIT"
  8941. ],
  8942. "authors": [
  8943. {
  8944. "name": "Nicolas Grekas",
  8945. "email": "p@tchwork.com"
  8946. },
  8947. {
  8948. "name": "Symfony Community",
  8949. "homepage": "https://symfony.com/contributors"
  8950. }
  8951. ],
  8952. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8953. "homepage": "https://symfony.com",
  8954. "keywords": [
  8955. "compatibility",
  8956. "polyfill",
  8957. "portable",
  8958. "shim"
  8959. ],
  8960. "support": {
  8961. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  8962. },
  8963. "funding": [
  8964. {
  8965. "url": "https://symfony.com/sponsor",
  8966. "type": "custom"
  8967. },
  8968. {
  8969. "url": "https://github.com/fabpot",
  8970. "type": "github"
  8971. },
  8972. {
  8973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8974. "type": "tidelift"
  8975. }
  8976. ],
  8977. "time": "2022-05-24T11:49:31+00:00"
  8978. },
  8979. {
  8980. "name": "symfony/process",
  8981. "version": "v5.4.8",
  8982. "source": {
  8983. "type": "git",
  8984. "url": "https://github.com/symfony/process.git",
  8985. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
  8986. },
  8987. "dist": {
  8988. "type": "zip",
  8989. "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  8990. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  8991. "shasum": "",
  8992. "mirrors": [
  8993. {
  8994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8995. "preferred": true
  8996. }
  8997. ]
  8998. },
  8999. "require": {
  9000. "php": ">=7.2.5",
  9001. "symfony/polyfill-php80": "^1.16"
  9002. },
  9003. "type": "library",
  9004. "autoload": {
  9005. "psr-4": {
  9006. "Symfony\\Component\\Process\\": ""
  9007. },
  9008. "exclude-from-classmap": [
  9009. "/Tests/"
  9010. ]
  9011. },
  9012. "notification-url": "https://packagist.org/downloads/",
  9013. "license": [
  9014. "MIT"
  9015. ],
  9016. "authors": [
  9017. {
  9018. "name": "Fabien Potencier",
  9019. "email": "fabien@symfony.com"
  9020. },
  9021. {
  9022. "name": "Symfony Community",
  9023. "homepage": "https://symfony.com/contributors"
  9024. }
  9025. ],
  9026. "description": "Executes commands in sub-processes",
  9027. "homepage": "https://symfony.com",
  9028. "support": {
  9029. "source": "https://github.com/symfony/process/tree/v5.4.8"
  9030. },
  9031. "funding": [
  9032. {
  9033. "url": "https://symfony.com/sponsor",
  9034. "type": "custom"
  9035. },
  9036. {
  9037. "url": "https://github.com/fabpot",
  9038. "type": "github"
  9039. },
  9040. {
  9041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9042. "type": "tidelift"
  9043. }
  9044. ],
  9045. "time": "2022-04-08T05:07:18+00:00"
  9046. },
  9047. {
  9048. "name": "symfony/psr-http-message-bridge",
  9049. "version": "v2.1.2",
  9050. "source": {
  9051. "type": "git",
  9052. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9053. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  9054. },
  9055. "dist": {
  9056. "type": "zip",
  9057. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9058. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9059. "shasum": "",
  9060. "mirrors": [
  9061. {
  9062. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9063. "preferred": true
  9064. }
  9065. ]
  9066. },
  9067. "require": {
  9068. "php": ">=7.1",
  9069. "psr/http-message": "^1.0",
  9070. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9071. },
  9072. "require-dev": {
  9073. "nyholm/psr7": "^1.1",
  9074. "psr/log": "^1.1 || ^2 || ^3",
  9075. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9076. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9077. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9078. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9079. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9080. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9081. },
  9082. "suggest": {
  9083. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9084. },
  9085. "type": "symfony-bridge",
  9086. "extra": {
  9087. "branch-alias": {
  9088. "dev-main": "2.1-dev"
  9089. }
  9090. },
  9091. "autoload": {
  9092. "psr-4": {
  9093. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9094. },
  9095. "exclude-from-classmap": [
  9096. "/Tests/"
  9097. ]
  9098. },
  9099. "notification-url": "https://packagist.org/downloads/",
  9100. "license": [
  9101. "MIT"
  9102. ],
  9103. "authors": [
  9104. {
  9105. "name": "Fabien Potencier",
  9106. "email": "fabien@symfony.com"
  9107. },
  9108. {
  9109. "name": "Symfony Community",
  9110. "homepage": "http://symfony.com/contributors"
  9111. }
  9112. ],
  9113. "description": "PSR HTTP message bridge",
  9114. "homepage": "http://symfony.com",
  9115. "keywords": [
  9116. "http",
  9117. "http-message",
  9118. "psr-17",
  9119. "psr-7"
  9120. ],
  9121. "support": {
  9122. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9123. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  9124. },
  9125. "funding": [
  9126. {
  9127. "url": "https://symfony.com/sponsor",
  9128. "type": "custom"
  9129. },
  9130. {
  9131. "url": "https://github.com/fabpot",
  9132. "type": "github"
  9133. },
  9134. {
  9135. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9136. "type": "tidelift"
  9137. }
  9138. ],
  9139. "time": "2021-11-05T13:13:39+00:00"
  9140. },
  9141. {
  9142. "name": "symfony/routing",
  9143. "version": "v5.4.8",
  9144. "source": {
  9145. "type": "git",
  9146. "url": "https://github.com/symfony/routing.git",
  9147. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7"
  9148. },
  9149. "dist": {
  9150. "type": "zip",
  9151. "url": "https://api.github.com/repos/symfony/routing/zipball/e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  9152. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  9153. "shasum": "",
  9154. "mirrors": [
  9155. {
  9156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9157. "preferred": true
  9158. }
  9159. ]
  9160. },
  9161. "require": {
  9162. "php": ">=7.2.5",
  9163. "symfony/deprecation-contracts": "^2.1|^3",
  9164. "symfony/polyfill-php80": "^1.16"
  9165. },
  9166. "conflict": {
  9167. "doctrine/annotations": "<1.12",
  9168. "symfony/config": "<5.3",
  9169. "symfony/dependency-injection": "<4.4",
  9170. "symfony/yaml": "<4.4"
  9171. },
  9172. "require-dev": {
  9173. "doctrine/annotations": "^1.12",
  9174. "psr/log": "^1|^2|^3",
  9175. "symfony/config": "^5.3|^6.0",
  9176. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9177. "symfony/expression-language": "^4.4|^5.0|^6.0",
  9178. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  9179. "symfony/yaml": "^4.4|^5.0|^6.0"
  9180. },
  9181. "suggest": {
  9182. "symfony/config": "For using the all-in-one router or any loader",
  9183. "symfony/expression-language": "For using expression matching",
  9184. "symfony/http-foundation": "For using a Symfony Request object",
  9185. "symfony/yaml": "For using the YAML loader"
  9186. },
  9187. "type": "library",
  9188. "autoload": {
  9189. "psr-4": {
  9190. "Symfony\\Component\\Routing\\": ""
  9191. },
  9192. "exclude-from-classmap": [
  9193. "/Tests/"
  9194. ]
  9195. },
  9196. "notification-url": "https://packagist.org/downloads/",
  9197. "license": [
  9198. "MIT"
  9199. ],
  9200. "authors": [
  9201. {
  9202. "name": "Fabien Potencier",
  9203. "email": "fabien@symfony.com"
  9204. },
  9205. {
  9206. "name": "Symfony Community",
  9207. "homepage": "https://symfony.com/contributors"
  9208. }
  9209. ],
  9210. "description": "Maps an HTTP request to a set of configuration variables",
  9211. "homepage": "https://symfony.com",
  9212. "keywords": [
  9213. "router",
  9214. "routing",
  9215. "uri",
  9216. "url"
  9217. ],
  9218. "support": {
  9219. "source": "https://github.com/symfony/routing/tree/v5.4.8"
  9220. },
  9221. "funding": [
  9222. {
  9223. "url": "https://symfony.com/sponsor",
  9224. "type": "custom"
  9225. },
  9226. {
  9227. "url": "https://github.com/fabpot",
  9228. "type": "github"
  9229. },
  9230. {
  9231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9232. "type": "tidelift"
  9233. }
  9234. ],
  9235. "time": "2022-04-18T21:45:37+00:00"
  9236. },
  9237. {
  9238. "name": "symfony/service-contracts",
  9239. "version": "v2.5.2",
  9240. "source": {
  9241. "type": "git",
  9242. "url": "https://github.com/symfony/service-contracts.git",
  9243. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  9244. },
  9245. "dist": {
  9246. "type": "zip",
  9247. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9248. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9249. "shasum": "",
  9250. "mirrors": [
  9251. {
  9252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9253. "preferred": true
  9254. }
  9255. ]
  9256. },
  9257. "require": {
  9258. "php": ">=7.2.5",
  9259. "psr/container": "^1.1",
  9260. "symfony/deprecation-contracts": "^2.1|^3"
  9261. },
  9262. "conflict": {
  9263. "ext-psr": "<1.1|>=2"
  9264. },
  9265. "suggest": {
  9266. "symfony/service-implementation": ""
  9267. },
  9268. "type": "library",
  9269. "extra": {
  9270. "branch-alias": {
  9271. "dev-main": "2.5-dev"
  9272. },
  9273. "thanks": {
  9274. "name": "symfony/contracts",
  9275. "url": "https://github.com/symfony/contracts"
  9276. }
  9277. },
  9278. "autoload": {
  9279. "psr-4": {
  9280. "Symfony\\Contracts\\Service\\": ""
  9281. }
  9282. },
  9283. "notification-url": "https://packagist.org/downloads/",
  9284. "license": [
  9285. "MIT"
  9286. ],
  9287. "authors": [
  9288. {
  9289. "name": "Nicolas Grekas",
  9290. "email": "p@tchwork.com"
  9291. },
  9292. {
  9293. "name": "Symfony Community",
  9294. "homepage": "https://symfony.com/contributors"
  9295. }
  9296. ],
  9297. "description": "Generic abstractions related to writing services",
  9298. "homepage": "https://symfony.com",
  9299. "keywords": [
  9300. "abstractions",
  9301. "contracts",
  9302. "decoupling",
  9303. "interfaces",
  9304. "interoperability",
  9305. "standards"
  9306. ],
  9307. "support": {
  9308. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  9309. },
  9310. "funding": [
  9311. {
  9312. "url": "https://symfony.com/sponsor",
  9313. "type": "custom"
  9314. },
  9315. {
  9316. "url": "https://github.com/fabpot",
  9317. "type": "github"
  9318. },
  9319. {
  9320. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9321. "type": "tidelift"
  9322. }
  9323. ],
  9324. "time": "2022-05-30T19:17:29+00:00"
  9325. },
  9326. {
  9327. "name": "symfony/string",
  9328. "version": "v6.0.10",
  9329. "source": {
  9330. "type": "git",
  9331. "url": "https://github.com/symfony/string.git",
  9332. "reference": "1b3adf02a0fc814bd9118d7fd68a097a599ebc27"
  9333. },
  9334. "dist": {
  9335. "type": "zip",
  9336. "url": "https://api.github.com/repos/symfony/string/zipball/1b3adf02a0fc814bd9118d7fd68a097a599ebc27",
  9337. "reference": "1b3adf02a0fc814bd9118d7fd68a097a599ebc27",
  9338. "shasum": "",
  9339. "mirrors": [
  9340. {
  9341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9342. "preferred": true
  9343. }
  9344. ]
  9345. },
  9346. "require": {
  9347. "php": ">=8.0.2",
  9348. "symfony/polyfill-ctype": "~1.8",
  9349. "symfony/polyfill-intl-grapheme": "~1.0",
  9350. "symfony/polyfill-intl-normalizer": "~1.0",
  9351. "symfony/polyfill-mbstring": "~1.0"
  9352. },
  9353. "conflict": {
  9354. "symfony/translation-contracts": "<2.0"
  9355. },
  9356. "require-dev": {
  9357. "symfony/error-handler": "^5.4|^6.0",
  9358. "symfony/http-client": "^5.4|^6.0",
  9359. "symfony/translation-contracts": "^2.0|^3.0",
  9360. "symfony/var-exporter": "^5.4|^6.0"
  9361. },
  9362. "type": "library",
  9363. "autoload": {
  9364. "files": [
  9365. "Resources/functions.php"
  9366. ],
  9367. "psr-4": {
  9368. "Symfony\\Component\\String\\": ""
  9369. },
  9370. "exclude-from-classmap": [
  9371. "/Tests/"
  9372. ]
  9373. },
  9374. "notification-url": "https://packagist.org/downloads/",
  9375. "license": [
  9376. "MIT"
  9377. ],
  9378. "authors": [
  9379. {
  9380. "name": "Nicolas Grekas",
  9381. "email": "p@tchwork.com"
  9382. },
  9383. {
  9384. "name": "Symfony Community",
  9385. "homepage": "https://symfony.com/contributors"
  9386. }
  9387. ],
  9388. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9389. "homepage": "https://symfony.com",
  9390. "keywords": [
  9391. "grapheme",
  9392. "i18n",
  9393. "string",
  9394. "unicode",
  9395. "utf-8",
  9396. "utf8"
  9397. ],
  9398. "support": {
  9399. "source": "https://github.com/symfony/string/tree/v6.0.10"
  9400. },
  9401. "funding": [
  9402. {
  9403. "url": "https://symfony.com/sponsor",
  9404. "type": "custom"
  9405. },
  9406. {
  9407. "url": "https://github.com/fabpot",
  9408. "type": "github"
  9409. },
  9410. {
  9411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9412. "type": "tidelift"
  9413. }
  9414. ],
  9415. "time": "2022-06-26T16:34:50+00:00"
  9416. },
  9417. {
  9418. "name": "symfony/translation",
  9419. "version": "v6.0.9",
  9420. "source": {
  9421. "type": "git",
  9422. "url": "https://github.com/symfony/translation.git",
  9423. "reference": "9ba011309943955a3807b8236c17cff3b88f67b6"
  9424. },
  9425. "dist": {
  9426. "type": "zip",
  9427. "url": "https://api.github.com/repos/symfony/translation/zipball/9ba011309943955a3807b8236c17cff3b88f67b6",
  9428. "reference": "9ba011309943955a3807b8236c17cff3b88f67b6",
  9429. "shasum": "",
  9430. "mirrors": [
  9431. {
  9432. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9433. "preferred": true
  9434. }
  9435. ]
  9436. },
  9437. "require": {
  9438. "php": ">=8.0.2",
  9439. "symfony/polyfill-mbstring": "~1.0",
  9440. "symfony/translation-contracts": "^2.3|^3.0"
  9441. },
  9442. "conflict": {
  9443. "symfony/config": "<5.4",
  9444. "symfony/console": "<5.4",
  9445. "symfony/dependency-injection": "<5.4",
  9446. "symfony/http-kernel": "<5.4",
  9447. "symfony/twig-bundle": "<5.4",
  9448. "symfony/yaml": "<5.4"
  9449. },
  9450. "provide": {
  9451. "symfony/translation-implementation": "2.3|3.0"
  9452. },
  9453. "require-dev": {
  9454. "psr/log": "^1|^2|^3",
  9455. "symfony/config": "^5.4|^6.0",
  9456. "symfony/console": "^5.4|^6.0",
  9457. "symfony/dependency-injection": "^5.4|^6.0",
  9458. "symfony/finder": "^5.4|^6.0",
  9459. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  9460. "symfony/http-kernel": "^5.4|^6.0",
  9461. "symfony/intl": "^5.4|^6.0",
  9462. "symfony/polyfill-intl-icu": "^1.21",
  9463. "symfony/service-contracts": "^1.1.2|^2|^3",
  9464. "symfony/yaml": "^5.4|^6.0"
  9465. },
  9466. "suggest": {
  9467. "psr/log-implementation": "To use logging capability in translator",
  9468. "symfony/config": "",
  9469. "symfony/yaml": ""
  9470. },
  9471. "type": "library",
  9472. "autoload": {
  9473. "files": [
  9474. "Resources/functions.php"
  9475. ],
  9476. "psr-4": {
  9477. "Symfony\\Component\\Translation\\": ""
  9478. },
  9479. "exclude-from-classmap": [
  9480. "/Tests/"
  9481. ]
  9482. },
  9483. "notification-url": "https://packagist.org/downloads/",
  9484. "license": [
  9485. "MIT"
  9486. ],
  9487. "authors": [
  9488. {
  9489. "name": "Fabien Potencier",
  9490. "email": "fabien@symfony.com"
  9491. },
  9492. {
  9493. "name": "Symfony Community",
  9494. "homepage": "https://symfony.com/contributors"
  9495. }
  9496. ],
  9497. "description": "Provides tools to internationalize your application",
  9498. "homepage": "https://symfony.com",
  9499. "support": {
  9500. "source": "https://github.com/symfony/translation/tree/v6.0.9"
  9501. },
  9502. "funding": [
  9503. {
  9504. "url": "https://symfony.com/sponsor",
  9505. "type": "custom"
  9506. },
  9507. {
  9508. "url": "https://github.com/fabpot",
  9509. "type": "github"
  9510. },
  9511. {
  9512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9513. "type": "tidelift"
  9514. }
  9515. ],
  9516. "time": "2022-05-06T14:27:17+00:00"
  9517. },
  9518. {
  9519. "name": "symfony/translation-contracts",
  9520. "version": "v3.0.2",
  9521. "source": {
  9522. "type": "git",
  9523. "url": "https://github.com/symfony/translation-contracts.git",
  9524. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  9525. },
  9526. "dist": {
  9527. "type": "zip",
  9528. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9529. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9530. "shasum": "",
  9531. "mirrors": [
  9532. {
  9533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9534. "preferred": true
  9535. }
  9536. ]
  9537. },
  9538. "require": {
  9539. "php": ">=8.0.2"
  9540. },
  9541. "suggest": {
  9542. "symfony/translation-implementation": ""
  9543. },
  9544. "type": "library",
  9545. "extra": {
  9546. "branch-alias": {
  9547. "dev-main": "3.0-dev"
  9548. },
  9549. "thanks": {
  9550. "name": "symfony/contracts",
  9551. "url": "https://github.com/symfony/contracts"
  9552. }
  9553. },
  9554. "autoload": {
  9555. "psr-4": {
  9556. "Symfony\\Contracts\\Translation\\": ""
  9557. }
  9558. },
  9559. "notification-url": "https://packagist.org/downloads/",
  9560. "license": [
  9561. "MIT"
  9562. ],
  9563. "authors": [
  9564. {
  9565. "name": "Nicolas Grekas",
  9566. "email": "p@tchwork.com"
  9567. },
  9568. {
  9569. "name": "Symfony Community",
  9570. "homepage": "https://symfony.com/contributors"
  9571. }
  9572. ],
  9573. "description": "Generic abstractions related to translation",
  9574. "homepage": "https://symfony.com",
  9575. "keywords": [
  9576. "abstractions",
  9577. "contracts",
  9578. "decoupling",
  9579. "interfaces",
  9580. "interoperability",
  9581. "standards"
  9582. ],
  9583. "support": {
  9584. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  9585. },
  9586. "funding": [
  9587. {
  9588. "url": "https://symfony.com/sponsor",
  9589. "type": "custom"
  9590. },
  9591. {
  9592. "url": "https://github.com/fabpot",
  9593. "type": "github"
  9594. },
  9595. {
  9596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9597. "type": "tidelift"
  9598. }
  9599. ],
  9600. "time": "2022-06-27T17:10:44+00:00"
  9601. },
  9602. {
  9603. "name": "symfony/var-dumper",
  9604. "version": "v5.4.9",
  9605. "source": {
  9606. "type": "git",
  9607. "url": "https://github.com/symfony/var-dumper.git",
  9608. "reference": "af52239a330fafd192c773795520dc2dd62b5657"
  9609. },
  9610. "dist": {
  9611. "type": "zip",
  9612. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
  9613. "reference": "af52239a330fafd192c773795520dc2dd62b5657",
  9614. "shasum": "",
  9615. "mirrors": [
  9616. {
  9617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9618. "preferred": true
  9619. }
  9620. ]
  9621. },
  9622. "require": {
  9623. "php": ">=7.2.5",
  9624. "symfony/polyfill-mbstring": "~1.0",
  9625. "symfony/polyfill-php80": "^1.16"
  9626. },
  9627. "conflict": {
  9628. "phpunit/phpunit": "<5.4.3",
  9629. "symfony/console": "<4.4"
  9630. },
  9631. "require-dev": {
  9632. "ext-iconv": "*",
  9633. "symfony/console": "^4.4|^5.0|^6.0",
  9634. "symfony/process": "^4.4|^5.0|^6.0",
  9635. "symfony/uid": "^5.1|^6.0",
  9636. "twig/twig": "^2.13|^3.0.4"
  9637. },
  9638. "suggest": {
  9639. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9640. "ext-intl": "To show region name in time zone dump",
  9641. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9642. },
  9643. "bin": [
  9644. "Resources/bin/var-dump-server"
  9645. ],
  9646. "type": "library",
  9647. "autoload": {
  9648. "files": [
  9649. "Resources/functions/dump.php"
  9650. ],
  9651. "psr-4": {
  9652. "Symfony\\Component\\VarDumper\\": ""
  9653. },
  9654. "exclude-from-classmap": [
  9655. "/Tests/"
  9656. ]
  9657. },
  9658. "notification-url": "https://packagist.org/downloads/",
  9659. "license": [
  9660. "MIT"
  9661. ],
  9662. "authors": [
  9663. {
  9664. "name": "Nicolas Grekas",
  9665. "email": "p@tchwork.com"
  9666. },
  9667. {
  9668. "name": "Symfony Community",
  9669. "homepage": "https://symfony.com/contributors"
  9670. }
  9671. ],
  9672. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9673. "homepage": "https://symfony.com",
  9674. "keywords": [
  9675. "debug",
  9676. "dump"
  9677. ],
  9678. "support": {
  9679. "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
  9680. },
  9681. "funding": [
  9682. {
  9683. "url": "https://symfony.com/sponsor",
  9684. "type": "custom"
  9685. },
  9686. {
  9687. "url": "https://github.com/fabpot",
  9688. "type": "github"
  9689. },
  9690. {
  9691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9692. "type": "tidelift"
  9693. }
  9694. ],
  9695. "time": "2022-05-21T10:24:18+00:00"
  9696. },
  9697. {
  9698. "name": "symfony/var-exporter",
  9699. "version": "v6.0.9",
  9700. "source": {
  9701. "type": "git",
  9702. "url": "https://github.com/symfony/var-exporter.git",
  9703. "reference": "51c9947398d4f87f0b5a861999534a95afcd971e"
  9704. },
  9705. "dist": {
  9706. "type": "zip",
  9707. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/51c9947398d4f87f0b5a861999534a95afcd971e",
  9708. "reference": "51c9947398d4f87f0b5a861999534a95afcd971e",
  9709. "shasum": "",
  9710. "mirrors": [
  9711. {
  9712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9713. "preferred": true
  9714. }
  9715. ]
  9716. },
  9717. "require": {
  9718. "php": ">=8.0.2"
  9719. },
  9720. "require-dev": {
  9721. "symfony/var-dumper": "^5.4|^6.0"
  9722. },
  9723. "type": "library",
  9724. "autoload": {
  9725. "psr-4": {
  9726. "Symfony\\Component\\VarExporter\\": ""
  9727. },
  9728. "exclude-from-classmap": [
  9729. "/Tests/"
  9730. ]
  9731. },
  9732. "notification-url": "https://packagist.org/downloads/",
  9733. "license": [
  9734. "MIT"
  9735. ],
  9736. "authors": [
  9737. {
  9738. "name": "Nicolas Grekas",
  9739. "email": "p@tchwork.com"
  9740. },
  9741. {
  9742. "name": "Symfony Community",
  9743. "homepage": "https://symfony.com/contributors"
  9744. }
  9745. ],
  9746. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9747. "homepage": "https://symfony.com",
  9748. "keywords": [
  9749. "clone",
  9750. "construct",
  9751. "export",
  9752. "hydrate",
  9753. "instantiate",
  9754. "serialize"
  9755. ],
  9756. "support": {
  9757. "source": "https://github.com/symfony/var-exporter/tree/v6.0.9"
  9758. },
  9759. "funding": [
  9760. {
  9761. "url": "https://symfony.com/sponsor",
  9762. "type": "custom"
  9763. },
  9764. {
  9765. "url": "https://github.com/fabpot",
  9766. "type": "github"
  9767. },
  9768. {
  9769. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9770. "type": "tidelift"
  9771. }
  9772. ],
  9773. "time": "2022-05-21T13:33:31+00:00"
  9774. },
  9775. {
  9776. "name": "tijsverkoyen/css-to-inline-styles",
  9777. "version": "2.2.4",
  9778. "source": {
  9779. "type": "git",
  9780. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9781. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  9782. },
  9783. "dist": {
  9784. "type": "zip",
  9785. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  9786. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  9787. "shasum": "",
  9788. "mirrors": [
  9789. {
  9790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9791. "preferred": true
  9792. }
  9793. ]
  9794. },
  9795. "require": {
  9796. "ext-dom": "*",
  9797. "ext-libxml": "*",
  9798. "php": "^5.5 || ^7.0 || ^8.0",
  9799. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  9800. },
  9801. "require-dev": {
  9802. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  9803. },
  9804. "type": "library",
  9805. "extra": {
  9806. "branch-alias": {
  9807. "dev-master": "2.2.x-dev"
  9808. }
  9809. },
  9810. "autoload": {
  9811. "psr-4": {
  9812. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9813. }
  9814. },
  9815. "notification-url": "https://packagist.org/downloads/",
  9816. "license": [
  9817. "BSD-3-Clause"
  9818. ],
  9819. "authors": [
  9820. {
  9821. "name": "Tijs Verkoyen",
  9822. "email": "css_to_inline_styles@verkoyen.eu",
  9823. "role": "Developer"
  9824. }
  9825. ],
  9826. "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.",
  9827. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9828. "support": {
  9829. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9830. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  9831. },
  9832. "time": "2021-12-08T09:12:39+00:00"
  9833. },
  9834. {
  9835. "name": "vlucas/phpdotenv",
  9836. "version": "v5.4.1",
  9837. "source": {
  9838. "type": "git",
  9839. "url": "https://github.com/vlucas/phpdotenv.git",
  9840. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  9841. },
  9842. "dist": {
  9843. "type": "zip",
  9844. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  9845. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  9846. "shasum": "",
  9847. "mirrors": [
  9848. {
  9849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9850. "preferred": true
  9851. }
  9852. ]
  9853. },
  9854. "require": {
  9855. "ext-pcre": "*",
  9856. "graham-campbell/result-type": "^1.0.2",
  9857. "php": "^7.1.3 || ^8.0",
  9858. "phpoption/phpoption": "^1.8",
  9859. "symfony/polyfill-ctype": "^1.23",
  9860. "symfony/polyfill-mbstring": "^1.23.1",
  9861. "symfony/polyfill-php80": "^1.23.1"
  9862. },
  9863. "require-dev": {
  9864. "bamarni/composer-bin-plugin": "^1.4.1",
  9865. "ext-filter": "*",
  9866. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  9867. },
  9868. "suggest": {
  9869. "ext-filter": "Required to use the boolean validator."
  9870. },
  9871. "type": "library",
  9872. "extra": {
  9873. "branch-alias": {
  9874. "dev-master": "5.4-dev"
  9875. }
  9876. },
  9877. "autoload": {
  9878. "psr-4": {
  9879. "Dotenv\\": "src/"
  9880. }
  9881. },
  9882. "notification-url": "https://packagist.org/downloads/",
  9883. "license": [
  9884. "BSD-3-Clause"
  9885. ],
  9886. "authors": [
  9887. {
  9888. "name": "Graham Campbell",
  9889. "email": "hello@gjcampbell.co.uk",
  9890. "homepage": "https://github.com/GrahamCampbell"
  9891. },
  9892. {
  9893. "name": "Vance Lucas",
  9894. "email": "vance@vancelucas.com",
  9895. "homepage": "https://github.com/vlucas"
  9896. }
  9897. ],
  9898. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9899. "keywords": [
  9900. "dotenv",
  9901. "env",
  9902. "environment"
  9903. ],
  9904. "support": {
  9905. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9906. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  9907. },
  9908. "funding": [
  9909. {
  9910. "url": "https://github.com/GrahamCampbell",
  9911. "type": "github"
  9912. },
  9913. {
  9914. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9915. "type": "tidelift"
  9916. }
  9917. ],
  9918. "time": "2021-12-12T23:22:04+00:00"
  9919. },
  9920. {
  9921. "name": "voku/portable-ascii",
  9922. "version": "1.6.1",
  9923. "source": {
  9924. "type": "git",
  9925. "url": "https://github.com/voku/portable-ascii.git",
  9926. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  9927. },
  9928. "dist": {
  9929. "type": "zip",
  9930. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  9931. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  9932. "shasum": "",
  9933. "mirrors": [
  9934. {
  9935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9936. "preferred": true
  9937. }
  9938. ]
  9939. },
  9940. "require": {
  9941. "php": ">=7.0.0"
  9942. },
  9943. "require-dev": {
  9944. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9945. },
  9946. "suggest": {
  9947. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9948. },
  9949. "type": "library",
  9950. "autoload": {
  9951. "psr-4": {
  9952. "voku\\": "src/voku/"
  9953. }
  9954. },
  9955. "notification-url": "https://packagist.org/downloads/",
  9956. "license": [
  9957. "MIT"
  9958. ],
  9959. "authors": [
  9960. {
  9961. "name": "Lars Moelleken",
  9962. "homepage": "http://www.moelleken.org/"
  9963. }
  9964. ],
  9965. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9966. "homepage": "https://github.com/voku/portable-ascii",
  9967. "keywords": [
  9968. "ascii",
  9969. "clean",
  9970. "php"
  9971. ],
  9972. "support": {
  9973. "issues": "https://github.com/voku/portable-ascii/issues",
  9974. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  9975. },
  9976. "funding": [
  9977. {
  9978. "url": "https://www.paypal.me/moelleken",
  9979. "type": "custom"
  9980. },
  9981. {
  9982. "url": "https://github.com/voku",
  9983. "type": "github"
  9984. },
  9985. {
  9986. "url": "https://opencollective.com/portable-ascii",
  9987. "type": "open_collective"
  9988. },
  9989. {
  9990. "url": "https://www.patreon.com/voku",
  9991. "type": "patreon"
  9992. },
  9993. {
  9994. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9995. "type": "tidelift"
  9996. }
  9997. ],
  9998. "time": "2022-01-24T18:55:24+00:00"
  9999. },
  10000. {
  10001. "name": "webmozart/assert",
  10002. "version": "1.11.0",
  10003. "source": {
  10004. "type": "git",
  10005. "url": "https://github.com/webmozarts/assert.git",
  10006. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10007. },
  10008. "dist": {
  10009. "type": "zip",
  10010. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10011. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10012. "shasum": "",
  10013. "mirrors": [
  10014. {
  10015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10016. "preferred": true
  10017. }
  10018. ]
  10019. },
  10020. "require": {
  10021. "ext-ctype": "*",
  10022. "php": "^7.2 || ^8.0"
  10023. },
  10024. "conflict": {
  10025. "phpstan/phpstan": "<0.12.20",
  10026. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10027. },
  10028. "require-dev": {
  10029. "phpunit/phpunit": "^8.5.13"
  10030. },
  10031. "type": "library",
  10032. "extra": {
  10033. "branch-alias": {
  10034. "dev-master": "1.10-dev"
  10035. }
  10036. },
  10037. "autoload": {
  10038. "psr-4": {
  10039. "Webmozart\\Assert\\": "src/"
  10040. }
  10041. },
  10042. "notification-url": "https://packagist.org/downloads/",
  10043. "license": [
  10044. "MIT"
  10045. ],
  10046. "authors": [
  10047. {
  10048. "name": "Bernhard Schussek",
  10049. "email": "bschussek@gmail.com"
  10050. }
  10051. ],
  10052. "description": "Assertions to validate method input/output with nice error messages.",
  10053. "keywords": [
  10054. "assert",
  10055. "check",
  10056. "validate"
  10057. ],
  10058. "support": {
  10059. "issues": "https://github.com/webmozarts/assert/issues",
  10060. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10061. },
  10062. "time": "2022-06-03T18:03:27+00:00"
  10063. }
  10064. ],
  10065. "packages-dev": [
  10066. {
  10067. "name": "doctrine/instantiator",
  10068. "version": "1.4.1",
  10069. "source": {
  10070. "type": "git",
  10071. "url": "https://github.com/doctrine/instantiator.git",
  10072. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  10073. },
  10074. "dist": {
  10075. "type": "zip",
  10076. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  10077. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  10078. "shasum": "",
  10079. "mirrors": [
  10080. {
  10081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10082. "preferred": true
  10083. }
  10084. ]
  10085. },
  10086. "require": {
  10087. "php": "^7.1 || ^8.0"
  10088. },
  10089. "require-dev": {
  10090. "doctrine/coding-standard": "^9",
  10091. "ext-pdo": "*",
  10092. "ext-phar": "*",
  10093. "phpbench/phpbench": "^0.16 || ^1",
  10094. "phpstan/phpstan": "^1.4",
  10095. "phpstan/phpstan-phpunit": "^1",
  10096. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  10097. "vimeo/psalm": "^4.22"
  10098. },
  10099. "type": "library",
  10100. "autoload": {
  10101. "psr-4": {
  10102. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10103. }
  10104. },
  10105. "notification-url": "https://packagist.org/downloads/",
  10106. "license": [
  10107. "MIT"
  10108. ],
  10109. "authors": [
  10110. {
  10111. "name": "Marco Pivetta",
  10112. "email": "ocramius@gmail.com",
  10113. "homepage": "https://ocramius.github.io/"
  10114. }
  10115. ],
  10116. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10117. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  10118. "keywords": [
  10119. "constructor",
  10120. "instantiate"
  10121. ],
  10122. "support": {
  10123. "issues": "https://github.com/doctrine/instantiator/issues",
  10124. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  10125. },
  10126. "funding": [
  10127. {
  10128. "url": "https://www.doctrine-project.org/sponsorship.html",
  10129. "type": "custom"
  10130. },
  10131. {
  10132. "url": "https://www.patreon.com/phpdoctrine",
  10133. "type": "patreon"
  10134. },
  10135. {
  10136. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  10137. "type": "tidelift"
  10138. }
  10139. ],
  10140. "time": "2022-03-03T08:28:38+00:00"
  10141. },
  10142. {
  10143. "name": "facade/flare-client-php",
  10144. "version": "1.9.1",
  10145. "source": {
  10146. "type": "git",
  10147. "url": "https://github.com/facade/flare-client-php.git",
  10148. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  10149. },
  10150. "dist": {
  10151. "type": "zip",
  10152. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  10153. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  10154. "shasum": "",
  10155. "mirrors": [
  10156. {
  10157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10158. "preferred": true
  10159. }
  10160. ]
  10161. },
  10162. "require": {
  10163. "facade/ignition-contracts": "~1.0",
  10164. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  10165. "php": "^7.1|^8.0",
  10166. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  10167. "symfony/mime": "^3.4|^4.0|^5.1",
  10168. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  10169. },
  10170. "require-dev": {
  10171. "friendsofphp/php-cs-fixer": "^2.14",
  10172. "phpunit/phpunit": "^7.5.16",
  10173. "spatie/phpunit-snapshot-assertions": "^2.0"
  10174. },
  10175. "type": "library",
  10176. "extra": {
  10177. "branch-alias": {
  10178. "dev-master": "1.0-dev"
  10179. }
  10180. },
  10181. "autoload": {
  10182. "files": [
  10183. "src/helpers.php"
  10184. ],
  10185. "psr-4": {
  10186. "Facade\\FlareClient\\": "src"
  10187. }
  10188. },
  10189. "notification-url": "https://packagist.org/downloads/",
  10190. "license": [
  10191. "MIT"
  10192. ],
  10193. "description": "Send PHP errors to Flare",
  10194. "homepage": "https://github.com/facade/flare-client-php",
  10195. "keywords": [
  10196. "exception",
  10197. "facade",
  10198. "flare",
  10199. "reporting"
  10200. ],
  10201. "support": {
  10202. "issues": "https://github.com/facade/flare-client-php/issues",
  10203. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  10204. },
  10205. "funding": [
  10206. {
  10207. "url": "https://github.com/spatie",
  10208. "type": "github"
  10209. }
  10210. ],
  10211. "time": "2021-09-13T12:16:46+00:00"
  10212. },
  10213. {
  10214. "name": "facade/ignition",
  10215. "version": "2.17.6",
  10216. "source": {
  10217. "type": "git",
  10218. "url": "https://github.com/facade/ignition.git",
  10219. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c"
  10220. },
  10221. "dist": {
  10222. "type": "zip",
  10223. "url": "https://api.github.com/repos/facade/ignition/zipball/6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  10224. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  10225. "shasum": "",
  10226. "mirrors": [
  10227. {
  10228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10229. "preferred": true
  10230. }
  10231. ]
  10232. },
  10233. "require": {
  10234. "ext-curl": "*",
  10235. "ext-json": "*",
  10236. "ext-mbstring": "*",
  10237. "facade/flare-client-php": "^1.9.1",
  10238. "facade/ignition-contracts": "^1.0.2",
  10239. "illuminate/support": "^7.0|^8.0",
  10240. "monolog/monolog": "^2.0",
  10241. "php": "^7.2.5|^8.0",
  10242. "symfony/console": "^5.0",
  10243. "symfony/var-dumper": "^5.0"
  10244. },
  10245. "require-dev": {
  10246. "friendsofphp/php-cs-fixer": "^2.14",
  10247. "livewire/livewire": "^2.4",
  10248. "mockery/mockery": "^1.3",
  10249. "orchestra/testbench": "^5.0|^6.0",
  10250. "psalm/plugin-laravel": "^1.2"
  10251. },
  10252. "suggest": {
  10253. "laravel/telescope": "^3.1"
  10254. },
  10255. "type": "library",
  10256. "extra": {
  10257. "branch-alias": {
  10258. "dev-master": "2.x-dev"
  10259. },
  10260. "laravel": {
  10261. "providers": [
  10262. "Facade\\Ignition\\IgnitionServiceProvider"
  10263. ],
  10264. "aliases": {
  10265. "Flare": "Facade\\Ignition\\Facades\\Flare"
  10266. }
  10267. }
  10268. },
  10269. "autoload": {
  10270. "files": [
  10271. "src/helpers.php"
  10272. ],
  10273. "psr-4": {
  10274. "Facade\\Ignition\\": "src"
  10275. }
  10276. },
  10277. "notification-url": "https://packagist.org/downloads/",
  10278. "license": [
  10279. "MIT"
  10280. ],
  10281. "description": "A beautiful error page for Laravel applications.",
  10282. "homepage": "https://github.com/facade/ignition",
  10283. "keywords": [
  10284. "error",
  10285. "flare",
  10286. "laravel",
  10287. "page"
  10288. ],
  10289. "support": {
  10290. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10291. "forum": "https://twitter.com/flareappio",
  10292. "issues": "https://github.com/facade/ignition/issues",
  10293. "source": "https://github.com/facade/ignition"
  10294. },
  10295. "time": "2022-06-30T18:26:59+00:00"
  10296. },
  10297. {
  10298. "name": "facade/ignition-contracts",
  10299. "version": "1.0.2",
  10300. "source": {
  10301. "type": "git",
  10302. "url": "https://github.com/facade/ignition-contracts.git",
  10303. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  10304. },
  10305. "dist": {
  10306. "type": "zip",
  10307. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10308. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10309. "shasum": "",
  10310. "mirrors": [
  10311. {
  10312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10313. "preferred": true
  10314. }
  10315. ]
  10316. },
  10317. "require": {
  10318. "php": "^7.3|^8.0"
  10319. },
  10320. "require-dev": {
  10321. "friendsofphp/php-cs-fixer": "^v2.15.8",
  10322. "phpunit/phpunit": "^9.3.11",
  10323. "vimeo/psalm": "^3.17.1"
  10324. },
  10325. "type": "library",
  10326. "autoload": {
  10327. "psr-4": {
  10328. "Facade\\IgnitionContracts\\": "src"
  10329. }
  10330. },
  10331. "notification-url": "https://packagist.org/downloads/",
  10332. "license": [
  10333. "MIT"
  10334. ],
  10335. "authors": [
  10336. {
  10337. "name": "Freek Van der Herten",
  10338. "email": "freek@spatie.be",
  10339. "homepage": "https://flareapp.io",
  10340. "role": "Developer"
  10341. }
  10342. ],
  10343. "description": "Solution contracts for Ignition",
  10344. "homepage": "https://github.com/facade/ignition-contracts",
  10345. "keywords": [
  10346. "contracts",
  10347. "flare",
  10348. "ignition"
  10349. ],
  10350. "support": {
  10351. "issues": "https://github.com/facade/ignition-contracts/issues",
  10352. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  10353. },
  10354. "time": "2020-10-16T08:27:54+00:00"
  10355. },
  10356. {
  10357. "name": "fakerphp/faker",
  10358. "version": "v1.19.0",
  10359. "source": {
  10360. "type": "git",
  10361. "url": "https://github.com/FakerPHP/Faker.git",
  10362. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  10363. },
  10364. "dist": {
  10365. "type": "zip",
  10366. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  10367. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  10368. "shasum": "",
  10369. "mirrors": [
  10370. {
  10371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10372. "preferred": true
  10373. }
  10374. ]
  10375. },
  10376. "require": {
  10377. "php": "^7.1 || ^8.0",
  10378. "psr/container": "^1.0 || ^2.0",
  10379. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  10380. },
  10381. "conflict": {
  10382. "fzaninotto/faker": "*"
  10383. },
  10384. "require-dev": {
  10385. "bamarni/composer-bin-plugin": "^1.4.1",
  10386. "doctrine/persistence": "^1.3 || ^2.0",
  10387. "ext-intl": "*",
  10388. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  10389. },
  10390. "suggest": {
  10391. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  10392. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  10393. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  10394. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  10395. "ext-mbstring": "Required for multibyte Unicode string functionality."
  10396. },
  10397. "type": "library",
  10398. "extra": {
  10399. "branch-alias": {
  10400. "dev-main": "v1.19-dev"
  10401. }
  10402. },
  10403. "autoload": {
  10404. "psr-4": {
  10405. "Faker\\": "src/Faker/"
  10406. }
  10407. },
  10408. "notification-url": "https://packagist.org/downloads/",
  10409. "license": [
  10410. "MIT"
  10411. ],
  10412. "authors": [
  10413. {
  10414. "name": "François Zaninotto"
  10415. }
  10416. ],
  10417. "description": "Faker is a PHP library that generates fake data for you.",
  10418. "keywords": [
  10419. "data",
  10420. "faker",
  10421. "fixtures"
  10422. ],
  10423. "support": {
  10424. "issues": "https://github.com/FakerPHP/Faker/issues",
  10425. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  10426. },
  10427. "time": "2022-02-02T17:38:57+00:00"
  10428. },
  10429. {
  10430. "name": "filp/whoops",
  10431. "version": "2.14.5",
  10432. "source": {
  10433. "type": "git",
  10434. "url": "https://github.com/filp/whoops.git",
  10435. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  10436. },
  10437. "dist": {
  10438. "type": "zip",
  10439. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10440. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10441. "shasum": "",
  10442. "mirrors": [
  10443. {
  10444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10445. "preferred": true
  10446. }
  10447. ]
  10448. },
  10449. "require": {
  10450. "php": "^5.5.9 || ^7.0 || ^8.0",
  10451. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  10452. },
  10453. "require-dev": {
  10454. "mockery/mockery": "^0.9 || ^1.0",
  10455. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  10456. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  10457. },
  10458. "suggest": {
  10459. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  10460. "whoops/soap": "Formats errors as SOAP responses"
  10461. },
  10462. "type": "library",
  10463. "extra": {
  10464. "branch-alias": {
  10465. "dev-master": "2.7-dev"
  10466. }
  10467. },
  10468. "autoload": {
  10469. "psr-4": {
  10470. "Whoops\\": "src/Whoops/"
  10471. }
  10472. },
  10473. "notification-url": "https://packagist.org/downloads/",
  10474. "license": [
  10475. "MIT"
  10476. ],
  10477. "authors": [
  10478. {
  10479. "name": "Filipe Dobreira",
  10480. "homepage": "https://github.com/filp",
  10481. "role": "Developer"
  10482. }
  10483. ],
  10484. "description": "php error handling for cool kids",
  10485. "homepage": "https://filp.github.io/whoops/",
  10486. "keywords": [
  10487. "error",
  10488. "exception",
  10489. "handling",
  10490. "library",
  10491. "throwable",
  10492. "whoops"
  10493. ],
  10494. "support": {
  10495. "issues": "https://github.com/filp/whoops/issues",
  10496. "source": "https://github.com/filp/whoops/tree/2.14.5"
  10497. },
  10498. "funding": [
  10499. {
  10500. "url": "https://github.com/denis-sokolov",
  10501. "type": "github"
  10502. }
  10503. ],
  10504. "time": "2022-01-07T12:00:00+00:00"
  10505. },
  10506. {
  10507. "name": "hamcrest/hamcrest-php",
  10508. "version": "v2.0.1",
  10509. "source": {
  10510. "type": "git",
  10511. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10512. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10513. },
  10514. "dist": {
  10515. "type": "zip",
  10516. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10517. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10518. "shasum": "",
  10519. "mirrors": [
  10520. {
  10521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10522. "preferred": true
  10523. }
  10524. ]
  10525. },
  10526. "require": {
  10527. "php": "^5.3|^7.0|^8.0"
  10528. },
  10529. "replace": {
  10530. "cordoval/hamcrest-php": "*",
  10531. "davedevelopment/hamcrest-php": "*",
  10532. "kodova/hamcrest-php": "*"
  10533. },
  10534. "require-dev": {
  10535. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10536. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10537. },
  10538. "type": "library",
  10539. "extra": {
  10540. "branch-alias": {
  10541. "dev-master": "2.1-dev"
  10542. }
  10543. },
  10544. "autoload": {
  10545. "classmap": [
  10546. "hamcrest"
  10547. ]
  10548. },
  10549. "notification-url": "https://packagist.org/downloads/",
  10550. "license": [
  10551. "BSD-3-Clause"
  10552. ],
  10553. "description": "This is the PHP port of Hamcrest Matchers",
  10554. "keywords": [
  10555. "test"
  10556. ],
  10557. "support": {
  10558. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10559. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10560. },
  10561. "time": "2020-07-09T08:09:16+00:00"
  10562. },
  10563. {
  10564. "name": "laravel/sail",
  10565. "version": "v1.14.11",
  10566. "source": {
  10567. "type": "git",
  10568. "url": "https://github.com/laravel/sail.git",
  10569. "reference": "6edf45a247b3688e0d07e149570a62fd9bc11c73"
  10570. },
  10571. "dist": {
  10572. "type": "zip",
  10573. "url": "https://api.github.com/repos/laravel/sail/zipball/6edf45a247b3688e0d07e149570a62fd9bc11c73",
  10574. "reference": "6edf45a247b3688e0d07e149570a62fd9bc11c73",
  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. "illuminate/console": "^8.0|^9.0",
  10585. "illuminate/contracts": "^8.0|^9.0",
  10586. "illuminate/support": "^8.0|^9.0",
  10587. "php": "^7.3|^8.0"
  10588. },
  10589. "bin": [
  10590. "bin/sail"
  10591. ],
  10592. "type": "library",
  10593. "extra": {
  10594. "branch-alias": {
  10595. "dev-master": "1.x-dev"
  10596. },
  10597. "laravel": {
  10598. "providers": [
  10599. "Laravel\\Sail\\SailServiceProvider"
  10600. ]
  10601. }
  10602. },
  10603. "autoload": {
  10604. "psr-4": {
  10605. "Laravel\\Sail\\": "src/"
  10606. }
  10607. },
  10608. "notification-url": "https://packagist.org/downloads/",
  10609. "license": [
  10610. "MIT"
  10611. ],
  10612. "authors": [
  10613. {
  10614. "name": "Taylor Otwell",
  10615. "email": "taylor@laravel.com"
  10616. }
  10617. ],
  10618. "description": "Docker files for running a basic Laravel application.",
  10619. "keywords": [
  10620. "docker",
  10621. "laravel"
  10622. ],
  10623. "support": {
  10624. "issues": "https://github.com/laravel/sail/issues",
  10625. "source": "https://github.com/laravel/sail"
  10626. },
  10627. "time": "2022-06-13T18:32:48+00:00"
  10628. },
  10629. {
  10630. "name": "mockery/mockery",
  10631. "version": "1.5.0",
  10632. "source": {
  10633. "type": "git",
  10634. "url": "https://github.com/mockery/mockery.git",
  10635. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  10636. },
  10637. "dist": {
  10638. "type": "zip",
  10639. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  10640. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  10641. "shasum": "",
  10642. "mirrors": [
  10643. {
  10644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10645. "preferred": true
  10646. }
  10647. ]
  10648. },
  10649. "require": {
  10650. "hamcrest/hamcrest-php": "^2.0.1",
  10651. "lib-pcre": ">=7.0",
  10652. "php": "^7.3 || ^8.0"
  10653. },
  10654. "conflict": {
  10655. "phpunit/phpunit": "<8.0"
  10656. },
  10657. "require-dev": {
  10658. "phpunit/phpunit": "^8.5 || ^9.3"
  10659. },
  10660. "type": "library",
  10661. "extra": {
  10662. "branch-alias": {
  10663. "dev-master": "1.4.x-dev"
  10664. }
  10665. },
  10666. "autoload": {
  10667. "psr-0": {
  10668. "Mockery": "library/"
  10669. }
  10670. },
  10671. "notification-url": "https://packagist.org/downloads/",
  10672. "license": [
  10673. "BSD-3-Clause"
  10674. ],
  10675. "authors": [
  10676. {
  10677. "name": "Pádraic Brady",
  10678. "email": "padraic.brady@gmail.com",
  10679. "homepage": "http://blog.astrumfutura.com"
  10680. },
  10681. {
  10682. "name": "Dave Marshall",
  10683. "email": "dave.marshall@atstsolutions.co.uk",
  10684. "homepage": "http://davedevelopment.co.uk"
  10685. }
  10686. ],
  10687. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10688. "homepage": "https://github.com/mockery/mockery",
  10689. "keywords": [
  10690. "BDD",
  10691. "TDD",
  10692. "library",
  10693. "mock",
  10694. "mock objects",
  10695. "mockery",
  10696. "stub",
  10697. "test",
  10698. "test double",
  10699. "testing"
  10700. ],
  10701. "support": {
  10702. "issues": "https://github.com/mockery/mockery/issues",
  10703. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  10704. },
  10705. "time": "2022-01-20T13:18:17+00:00"
  10706. },
  10707. {
  10708. "name": "myclabs/deep-copy",
  10709. "version": "1.11.0",
  10710. "source": {
  10711. "type": "git",
  10712. "url": "https://github.com/myclabs/DeepCopy.git",
  10713. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  10714. },
  10715. "dist": {
  10716. "type": "zip",
  10717. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  10718. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  10719. "shasum": "",
  10720. "mirrors": [
  10721. {
  10722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10723. "preferred": true
  10724. }
  10725. ]
  10726. },
  10727. "require": {
  10728. "php": "^7.1 || ^8.0"
  10729. },
  10730. "conflict": {
  10731. "doctrine/collections": "<1.6.8",
  10732. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  10733. },
  10734. "require-dev": {
  10735. "doctrine/collections": "^1.6.8",
  10736. "doctrine/common": "^2.13.3 || ^3.2.2",
  10737. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10738. },
  10739. "type": "library",
  10740. "autoload": {
  10741. "files": [
  10742. "src/DeepCopy/deep_copy.php"
  10743. ],
  10744. "psr-4": {
  10745. "DeepCopy\\": "src/DeepCopy/"
  10746. }
  10747. },
  10748. "notification-url": "https://packagist.org/downloads/",
  10749. "license": [
  10750. "MIT"
  10751. ],
  10752. "description": "Create deep copies (clones) of your objects",
  10753. "keywords": [
  10754. "clone",
  10755. "copy",
  10756. "duplicate",
  10757. "object",
  10758. "object graph"
  10759. ],
  10760. "support": {
  10761. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10762. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  10763. },
  10764. "funding": [
  10765. {
  10766. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10767. "type": "tidelift"
  10768. }
  10769. ],
  10770. "time": "2022-03-03T13:19:32+00:00"
  10771. },
  10772. {
  10773. "name": "nunomaduro/collision",
  10774. "version": "v5.11.0",
  10775. "source": {
  10776. "type": "git",
  10777. "url": "https://github.com/nunomaduro/collision.git",
  10778. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  10779. },
  10780. "dist": {
  10781. "type": "zip",
  10782. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  10783. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  10784. "shasum": "",
  10785. "mirrors": [
  10786. {
  10787. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10788. "preferred": true
  10789. }
  10790. ]
  10791. },
  10792. "require": {
  10793. "facade/ignition-contracts": "^1.0",
  10794. "filp/whoops": "^2.14.3",
  10795. "php": "^7.3 || ^8.0",
  10796. "symfony/console": "^5.0"
  10797. },
  10798. "require-dev": {
  10799. "brianium/paratest": "^6.1",
  10800. "fideloper/proxy": "^4.4.1",
  10801. "fruitcake/laravel-cors": "^2.0.3",
  10802. "laravel/framework": "8.x-dev",
  10803. "nunomaduro/larastan": "^0.6.2",
  10804. "nunomaduro/mock-final-classes": "^1.0",
  10805. "orchestra/testbench": "^6.0",
  10806. "phpstan/phpstan": "^0.12.64",
  10807. "phpunit/phpunit": "^9.5.0"
  10808. },
  10809. "type": "library",
  10810. "extra": {
  10811. "laravel": {
  10812. "providers": [
  10813. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10814. ]
  10815. }
  10816. },
  10817. "autoload": {
  10818. "psr-4": {
  10819. "NunoMaduro\\Collision\\": "src/"
  10820. }
  10821. },
  10822. "notification-url": "https://packagist.org/downloads/",
  10823. "license": [
  10824. "MIT"
  10825. ],
  10826. "authors": [
  10827. {
  10828. "name": "Nuno Maduro",
  10829. "email": "enunomaduro@gmail.com"
  10830. }
  10831. ],
  10832. "description": "Cli error handling for console/command-line PHP applications.",
  10833. "keywords": [
  10834. "artisan",
  10835. "cli",
  10836. "command-line",
  10837. "console",
  10838. "error",
  10839. "handling",
  10840. "laravel",
  10841. "laravel-zero",
  10842. "php",
  10843. "symfony"
  10844. ],
  10845. "support": {
  10846. "issues": "https://github.com/nunomaduro/collision/issues",
  10847. "source": "https://github.com/nunomaduro/collision"
  10848. },
  10849. "funding": [
  10850. {
  10851. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10852. "type": "custom"
  10853. },
  10854. {
  10855. "url": "https://github.com/nunomaduro",
  10856. "type": "github"
  10857. },
  10858. {
  10859. "url": "https://www.patreon.com/nunomaduro",
  10860. "type": "patreon"
  10861. }
  10862. ],
  10863. "time": "2022-01-10T16:22:52+00:00"
  10864. },
  10865. {
  10866. "name": "phar-io/manifest",
  10867. "version": "2.0.3",
  10868. "source": {
  10869. "type": "git",
  10870. "url": "https://github.com/phar-io/manifest.git",
  10871. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  10872. },
  10873. "dist": {
  10874. "type": "zip",
  10875. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  10876. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  10877. "shasum": "",
  10878. "mirrors": [
  10879. {
  10880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10881. "preferred": true
  10882. }
  10883. ]
  10884. },
  10885. "require": {
  10886. "ext-dom": "*",
  10887. "ext-phar": "*",
  10888. "ext-xmlwriter": "*",
  10889. "phar-io/version": "^3.0.1",
  10890. "php": "^7.2 || ^8.0"
  10891. },
  10892. "type": "library",
  10893. "extra": {
  10894. "branch-alias": {
  10895. "dev-master": "2.0.x-dev"
  10896. }
  10897. },
  10898. "autoload": {
  10899. "classmap": [
  10900. "src/"
  10901. ]
  10902. },
  10903. "notification-url": "https://packagist.org/downloads/",
  10904. "license": [
  10905. "BSD-3-Clause"
  10906. ],
  10907. "authors": [
  10908. {
  10909. "name": "Arne Blankerts",
  10910. "email": "arne@blankerts.de",
  10911. "role": "Developer"
  10912. },
  10913. {
  10914. "name": "Sebastian Heuer",
  10915. "email": "sebastian@phpeople.de",
  10916. "role": "Developer"
  10917. },
  10918. {
  10919. "name": "Sebastian Bergmann",
  10920. "email": "sebastian@phpunit.de",
  10921. "role": "Developer"
  10922. }
  10923. ],
  10924. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10925. "support": {
  10926. "issues": "https://github.com/phar-io/manifest/issues",
  10927. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  10928. },
  10929. "time": "2021-07-20T11:28:43+00:00"
  10930. },
  10931. {
  10932. "name": "phar-io/version",
  10933. "version": "3.2.1",
  10934. "source": {
  10935. "type": "git",
  10936. "url": "https://github.com/phar-io/version.git",
  10937. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10938. },
  10939. "dist": {
  10940. "type": "zip",
  10941. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10942. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10943. "shasum": "",
  10944. "mirrors": [
  10945. {
  10946. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10947. "preferred": true
  10948. }
  10949. ]
  10950. },
  10951. "require": {
  10952. "php": "^7.2 || ^8.0"
  10953. },
  10954. "type": "library",
  10955. "autoload": {
  10956. "classmap": [
  10957. "src/"
  10958. ]
  10959. },
  10960. "notification-url": "https://packagist.org/downloads/",
  10961. "license": [
  10962. "BSD-3-Clause"
  10963. ],
  10964. "authors": [
  10965. {
  10966. "name": "Arne Blankerts",
  10967. "email": "arne@blankerts.de",
  10968. "role": "Developer"
  10969. },
  10970. {
  10971. "name": "Sebastian Heuer",
  10972. "email": "sebastian@phpeople.de",
  10973. "role": "Developer"
  10974. },
  10975. {
  10976. "name": "Sebastian Bergmann",
  10977. "email": "sebastian@phpunit.de",
  10978. "role": "Developer"
  10979. }
  10980. ],
  10981. "description": "Library for handling version information and constraints",
  10982. "support": {
  10983. "issues": "https://github.com/phar-io/version/issues",
  10984. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10985. },
  10986. "time": "2022-02-21T01:04:05+00:00"
  10987. },
  10988. {
  10989. "name": "phpspec/prophecy",
  10990. "version": "v1.15.0",
  10991. "source": {
  10992. "type": "git",
  10993. "url": "https://github.com/phpspec/prophecy.git",
  10994. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  10995. },
  10996. "dist": {
  10997. "type": "zip",
  10998. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  10999. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11000. "shasum": "",
  11001. "mirrors": [
  11002. {
  11003. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11004. "preferred": true
  11005. }
  11006. ]
  11007. },
  11008. "require": {
  11009. "doctrine/instantiator": "^1.2",
  11010. "php": "^7.2 || ~8.0, <8.2",
  11011. "phpdocumentor/reflection-docblock": "^5.2",
  11012. "sebastian/comparator": "^3.0 || ^4.0",
  11013. "sebastian/recursion-context": "^3.0 || ^4.0"
  11014. },
  11015. "require-dev": {
  11016. "phpspec/phpspec": "^6.0 || ^7.0",
  11017. "phpunit/phpunit": "^8.0 || ^9.0"
  11018. },
  11019. "type": "library",
  11020. "extra": {
  11021. "branch-alias": {
  11022. "dev-master": "1.x-dev"
  11023. }
  11024. },
  11025. "autoload": {
  11026. "psr-4": {
  11027. "Prophecy\\": "src/Prophecy"
  11028. }
  11029. },
  11030. "notification-url": "https://packagist.org/downloads/",
  11031. "license": [
  11032. "MIT"
  11033. ],
  11034. "authors": [
  11035. {
  11036. "name": "Konstantin Kudryashov",
  11037. "email": "ever.zet@gmail.com",
  11038. "homepage": "http://everzet.com"
  11039. },
  11040. {
  11041. "name": "Marcello Duarte",
  11042. "email": "marcello.duarte@gmail.com"
  11043. }
  11044. ],
  11045. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11046. "homepage": "https://github.com/phpspec/prophecy",
  11047. "keywords": [
  11048. "Double",
  11049. "Dummy",
  11050. "fake",
  11051. "mock",
  11052. "spy",
  11053. "stub"
  11054. ],
  11055. "support": {
  11056. "issues": "https://github.com/phpspec/prophecy/issues",
  11057. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  11058. },
  11059. "time": "2021-12-08T12:19:24+00:00"
  11060. },
  11061. {
  11062. "name": "phpunit/php-code-coverage",
  11063. "version": "9.2.15",
  11064. "source": {
  11065. "type": "git",
  11066. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11067. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  11068. },
  11069. "dist": {
  11070. "type": "zip",
  11071. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  11072. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  11073. "shasum": "",
  11074. "mirrors": [
  11075. {
  11076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11077. "preferred": true
  11078. }
  11079. ]
  11080. },
  11081. "require": {
  11082. "ext-dom": "*",
  11083. "ext-libxml": "*",
  11084. "ext-xmlwriter": "*",
  11085. "nikic/php-parser": "^4.13.0",
  11086. "php": ">=7.3",
  11087. "phpunit/php-file-iterator": "^3.0.3",
  11088. "phpunit/php-text-template": "^2.0.2",
  11089. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  11090. "sebastian/complexity": "^2.0",
  11091. "sebastian/environment": "^5.1.2",
  11092. "sebastian/lines-of-code": "^1.0.3",
  11093. "sebastian/version": "^3.0.1",
  11094. "theseer/tokenizer": "^1.2.0"
  11095. },
  11096. "require-dev": {
  11097. "phpunit/phpunit": "^9.3"
  11098. },
  11099. "suggest": {
  11100. "ext-pcov": "*",
  11101. "ext-xdebug": "*"
  11102. },
  11103. "type": "library",
  11104. "extra": {
  11105. "branch-alias": {
  11106. "dev-master": "9.2-dev"
  11107. }
  11108. },
  11109. "autoload": {
  11110. "classmap": [
  11111. "src/"
  11112. ]
  11113. },
  11114. "notification-url": "https://packagist.org/downloads/",
  11115. "license": [
  11116. "BSD-3-Clause"
  11117. ],
  11118. "authors": [
  11119. {
  11120. "name": "Sebastian Bergmann",
  11121. "email": "sebastian@phpunit.de",
  11122. "role": "lead"
  11123. }
  11124. ],
  11125. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11126. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11127. "keywords": [
  11128. "coverage",
  11129. "testing",
  11130. "xunit"
  11131. ],
  11132. "support": {
  11133. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11134. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  11135. },
  11136. "funding": [
  11137. {
  11138. "url": "https://github.com/sebastianbergmann",
  11139. "type": "github"
  11140. }
  11141. ],
  11142. "time": "2022-03-07T09:28:20+00:00"
  11143. },
  11144. {
  11145. "name": "phpunit/php-file-iterator",
  11146. "version": "3.0.6",
  11147. "source": {
  11148. "type": "git",
  11149. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11150. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11151. },
  11152. "dist": {
  11153. "type": "zip",
  11154. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11155. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11156. "shasum": "",
  11157. "mirrors": [
  11158. {
  11159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11160. "preferred": true
  11161. }
  11162. ]
  11163. },
  11164. "require": {
  11165. "php": ">=7.3"
  11166. },
  11167. "require-dev": {
  11168. "phpunit/phpunit": "^9.3"
  11169. },
  11170. "type": "library",
  11171. "extra": {
  11172. "branch-alias": {
  11173. "dev-master": "3.0-dev"
  11174. }
  11175. },
  11176. "autoload": {
  11177. "classmap": [
  11178. "src/"
  11179. ]
  11180. },
  11181. "notification-url": "https://packagist.org/downloads/",
  11182. "license": [
  11183. "BSD-3-Clause"
  11184. ],
  11185. "authors": [
  11186. {
  11187. "name": "Sebastian Bergmann",
  11188. "email": "sebastian@phpunit.de",
  11189. "role": "lead"
  11190. }
  11191. ],
  11192. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11193. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11194. "keywords": [
  11195. "filesystem",
  11196. "iterator"
  11197. ],
  11198. "support": {
  11199. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11200. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11201. },
  11202. "funding": [
  11203. {
  11204. "url": "https://github.com/sebastianbergmann",
  11205. "type": "github"
  11206. }
  11207. ],
  11208. "time": "2021-12-02T12:48:52+00:00"
  11209. },
  11210. {
  11211. "name": "phpunit/php-invoker",
  11212. "version": "3.1.1",
  11213. "source": {
  11214. "type": "git",
  11215. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11216. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11217. },
  11218. "dist": {
  11219. "type": "zip",
  11220. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11221. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11222. "shasum": "",
  11223. "mirrors": [
  11224. {
  11225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11226. "preferred": true
  11227. }
  11228. ]
  11229. },
  11230. "require": {
  11231. "php": ">=7.3"
  11232. },
  11233. "require-dev": {
  11234. "ext-pcntl": "*",
  11235. "phpunit/phpunit": "^9.3"
  11236. },
  11237. "suggest": {
  11238. "ext-pcntl": "*"
  11239. },
  11240. "type": "library",
  11241. "extra": {
  11242. "branch-alias": {
  11243. "dev-master": "3.1-dev"
  11244. }
  11245. },
  11246. "autoload": {
  11247. "classmap": [
  11248. "src/"
  11249. ]
  11250. },
  11251. "notification-url": "https://packagist.org/downloads/",
  11252. "license": [
  11253. "BSD-3-Clause"
  11254. ],
  11255. "authors": [
  11256. {
  11257. "name": "Sebastian Bergmann",
  11258. "email": "sebastian@phpunit.de",
  11259. "role": "lead"
  11260. }
  11261. ],
  11262. "description": "Invoke callables with a timeout",
  11263. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11264. "keywords": [
  11265. "process"
  11266. ],
  11267. "support": {
  11268. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11269. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11270. },
  11271. "funding": [
  11272. {
  11273. "url": "https://github.com/sebastianbergmann",
  11274. "type": "github"
  11275. }
  11276. ],
  11277. "time": "2020-09-28T05:58:55+00:00"
  11278. },
  11279. {
  11280. "name": "phpunit/php-text-template",
  11281. "version": "2.0.4",
  11282. "source": {
  11283. "type": "git",
  11284. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11285. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  11286. },
  11287. "dist": {
  11288. "type": "zip",
  11289. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11290. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11291. "shasum": "",
  11292. "mirrors": [
  11293. {
  11294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11295. "preferred": true
  11296. }
  11297. ]
  11298. },
  11299. "require": {
  11300. "php": ">=7.3"
  11301. },
  11302. "require-dev": {
  11303. "phpunit/phpunit": "^9.3"
  11304. },
  11305. "type": "library",
  11306. "extra": {
  11307. "branch-alias": {
  11308. "dev-master": "2.0-dev"
  11309. }
  11310. },
  11311. "autoload": {
  11312. "classmap": [
  11313. "src/"
  11314. ]
  11315. },
  11316. "notification-url": "https://packagist.org/downloads/",
  11317. "license": [
  11318. "BSD-3-Clause"
  11319. ],
  11320. "authors": [
  11321. {
  11322. "name": "Sebastian Bergmann",
  11323. "email": "sebastian@phpunit.de",
  11324. "role": "lead"
  11325. }
  11326. ],
  11327. "description": "Simple template engine.",
  11328. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11329. "keywords": [
  11330. "template"
  11331. ],
  11332. "support": {
  11333. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11334. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  11335. },
  11336. "funding": [
  11337. {
  11338. "url": "https://github.com/sebastianbergmann",
  11339. "type": "github"
  11340. }
  11341. ],
  11342. "time": "2020-10-26T05:33:50+00:00"
  11343. },
  11344. {
  11345. "name": "phpunit/php-timer",
  11346. "version": "5.0.3",
  11347. "source": {
  11348. "type": "git",
  11349. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11350. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  11351. },
  11352. "dist": {
  11353. "type": "zip",
  11354. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11355. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11356. "shasum": "",
  11357. "mirrors": [
  11358. {
  11359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11360. "preferred": true
  11361. }
  11362. ]
  11363. },
  11364. "require": {
  11365. "php": ">=7.3"
  11366. },
  11367. "require-dev": {
  11368. "phpunit/phpunit": "^9.3"
  11369. },
  11370. "type": "library",
  11371. "extra": {
  11372. "branch-alias": {
  11373. "dev-master": "5.0-dev"
  11374. }
  11375. },
  11376. "autoload": {
  11377. "classmap": [
  11378. "src/"
  11379. ]
  11380. },
  11381. "notification-url": "https://packagist.org/downloads/",
  11382. "license": [
  11383. "BSD-3-Clause"
  11384. ],
  11385. "authors": [
  11386. {
  11387. "name": "Sebastian Bergmann",
  11388. "email": "sebastian@phpunit.de",
  11389. "role": "lead"
  11390. }
  11391. ],
  11392. "description": "Utility class for timing",
  11393. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11394. "keywords": [
  11395. "timer"
  11396. ],
  11397. "support": {
  11398. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11399. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  11400. },
  11401. "funding": [
  11402. {
  11403. "url": "https://github.com/sebastianbergmann",
  11404. "type": "github"
  11405. }
  11406. ],
  11407. "time": "2020-10-26T13:16:10+00:00"
  11408. },
  11409. {
  11410. "name": "phpunit/phpunit",
  11411. "version": "9.5.21",
  11412. "source": {
  11413. "type": "git",
  11414. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11415. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
  11416. },
  11417. "dist": {
  11418. "type": "zip",
  11419. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
  11420. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
  11421. "shasum": "",
  11422. "mirrors": [
  11423. {
  11424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11425. "preferred": true
  11426. }
  11427. ]
  11428. },
  11429. "require": {
  11430. "doctrine/instantiator": "^1.3.1",
  11431. "ext-dom": "*",
  11432. "ext-json": "*",
  11433. "ext-libxml": "*",
  11434. "ext-mbstring": "*",
  11435. "ext-xml": "*",
  11436. "ext-xmlwriter": "*",
  11437. "myclabs/deep-copy": "^1.10.1",
  11438. "phar-io/manifest": "^2.0.3",
  11439. "phar-io/version": "^3.0.2",
  11440. "php": ">=7.3",
  11441. "phpspec/prophecy": "^1.12.1",
  11442. "phpunit/php-code-coverage": "^9.2.13",
  11443. "phpunit/php-file-iterator": "^3.0.5",
  11444. "phpunit/php-invoker": "^3.1.1",
  11445. "phpunit/php-text-template": "^2.0.3",
  11446. "phpunit/php-timer": "^5.0.2",
  11447. "sebastian/cli-parser": "^1.0.1",
  11448. "sebastian/code-unit": "^1.0.6",
  11449. "sebastian/comparator": "^4.0.5",
  11450. "sebastian/diff": "^4.0.3",
  11451. "sebastian/environment": "^5.1.3",
  11452. "sebastian/exporter": "^4.0.3",
  11453. "sebastian/global-state": "^5.0.1",
  11454. "sebastian/object-enumerator": "^4.0.3",
  11455. "sebastian/resource-operations": "^3.0.3",
  11456. "sebastian/type": "^3.0",
  11457. "sebastian/version": "^3.0.2"
  11458. },
  11459. "require-dev": {
  11460. "phpspec/prophecy-phpunit": "^2.0.1"
  11461. },
  11462. "suggest": {
  11463. "ext-soap": "*",
  11464. "ext-xdebug": "*"
  11465. },
  11466. "bin": [
  11467. "phpunit"
  11468. ],
  11469. "type": "library",
  11470. "extra": {
  11471. "branch-alias": {
  11472. "dev-master": "9.5-dev"
  11473. }
  11474. },
  11475. "autoload": {
  11476. "files": [
  11477. "src/Framework/Assert/Functions.php"
  11478. ],
  11479. "classmap": [
  11480. "src/"
  11481. ]
  11482. },
  11483. "notification-url": "https://packagist.org/downloads/",
  11484. "license": [
  11485. "BSD-3-Clause"
  11486. ],
  11487. "authors": [
  11488. {
  11489. "name": "Sebastian Bergmann",
  11490. "email": "sebastian@phpunit.de",
  11491. "role": "lead"
  11492. }
  11493. ],
  11494. "description": "The PHP Unit Testing framework.",
  11495. "homepage": "https://phpunit.de/",
  11496. "keywords": [
  11497. "phpunit",
  11498. "testing",
  11499. "xunit"
  11500. ],
  11501. "support": {
  11502. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11503. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21"
  11504. },
  11505. "funding": [
  11506. {
  11507. "url": "https://phpunit.de/sponsors.html",
  11508. "type": "custom"
  11509. },
  11510. {
  11511. "url": "https://github.com/sebastianbergmann",
  11512. "type": "github"
  11513. }
  11514. ],
  11515. "time": "2022-06-19T12:14:25+00:00"
  11516. },
  11517. {
  11518. "name": "sebastian/cli-parser",
  11519. "version": "1.0.1",
  11520. "source": {
  11521. "type": "git",
  11522. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11523. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  11524. },
  11525. "dist": {
  11526. "type": "zip",
  11527. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11528. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11529. "shasum": "",
  11530. "mirrors": [
  11531. {
  11532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11533. "preferred": true
  11534. }
  11535. ]
  11536. },
  11537. "require": {
  11538. "php": ">=7.3"
  11539. },
  11540. "require-dev": {
  11541. "phpunit/phpunit": "^9.3"
  11542. },
  11543. "type": "library",
  11544. "extra": {
  11545. "branch-alias": {
  11546. "dev-master": "1.0-dev"
  11547. }
  11548. },
  11549. "autoload": {
  11550. "classmap": [
  11551. "src/"
  11552. ]
  11553. },
  11554. "notification-url": "https://packagist.org/downloads/",
  11555. "license": [
  11556. "BSD-3-Clause"
  11557. ],
  11558. "authors": [
  11559. {
  11560. "name": "Sebastian Bergmann",
  11561. "email": "sebastian@phpunit.de",
  11562. "role": "lead"
  11563. }
  11564. ],
  11565. "description": "Library for parsing CLI options",
  11566. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11567. "support": {
  11568. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11569. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  11570. },
  11571. "funding": [
  11572. {
  11573. "url": "https://github.com/sebastianbergmann",
  11574. "type": "github"
  11575. }
  11576. ],
  11577. "time": "2020-09-28T06:08:49+00:00"
  11578. },
  11579. {
  11580. "name": "sebastian/code-unit",
  11581. "version": "1.0.8",
  11582. "source": {
  11583. "type": "git",
  11584. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11585. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  11586. },
  11587. "dist": {
  11588. "type": "zip",
  11589. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11590. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11591. "shasum": "",
  11592. "mirrors": [
  11593. {
  11594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11595. "preferred": true
  11596. }
  11597. ]
  11598. },
  11599. "require": {
  11600. "php": ">=7.3"
  11601. },
  11602. "require-dev": {
  11603. "phpunit/phpunit": "^9.3"
  11604. },
  11605. "type": "library",
  11606. "extra": {
  11607. "branch-alias": {
  11608. "dev-master": "1.0-dev"
  11609. }
  11610. },
  11611. "autoload": {
  11612. "classmap": [
  11613. "src/"
  11614. ]
  11615. },
  11616. "notification-url": "https://packagist.org/downloads/",
  11617. "license": [
  11618. "BSD-3-Clause"
  11619. ],
  11620. "authors": [
  11621. {
  11622. "name": "Sebastian Bergmann",
  11623. "email": "sebastian@phpunit.de",
  11624. "role": "lead"
  11625. }
  11626. ],
  11627. "description": "Collection of value objects that represent the PHP code units",
  11628. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11629. "support": {
  11630. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11631. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  11632. },
  11633. "funding": [
  11634. {
  11635. "url": "https://github.com/sebastianbergmann",
  11636. "type": "github"
  11637. }
  11638. ],
  11639. "time": "2020-10-26T13:08:54+00:00"
  11640. },
  11641. {
  11642. "name": "sebastian/code-unit-reverse-lookup",
  11643. "version": "2.0.3",
  11644. "source": {
  11645. "type": "git",
  11646. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11647. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  11648. },
  11649. "dist": {
  11650. "type": "zip",
  11651. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11652. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11653. "shasum": "",
  11654. "mirrors": [
  11655. {
  11656. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11657. "preferred": true
  11658. }
  11659. ]
  11660. },
  11661. "require": {
  11662. "php": ">=7.3"
  11663. },
  11664. "require-dev": {
  11665. "phpunit/phpunit": "^9.3"
  11666. },
  11667. "type": "library",
  11668. "extra": {
  11669. "branch-alias": {
  11670. "dev-master": "2.0-dev"
  11671. }
  11672. },
  11673. "autoload": {
  11674. "classmap": [
  11675. "src/"
  11676. ]
  11677. },
  11678. "notification-url": "https://packagist.org/downloads/",
  11679. "license": [
  11680. "BSD-3-Clause"
  11681. ],
  11682. "authors": [
  11683. {
  11684. "name": "Sebastian Bergmann",
  11685. "email": "sebastian@phpunit.de"
  11686. }
  11687. ],
  11688. "description": "Looks up which function or method a line of code belongs to",
  11689. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11690. "support": {
  11691. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11692. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  11693. },
  11694. "funding": [
  11695. {
  11696. "url": "https://github.com/sebastianbergmann",
  11697. "type": "github"
  11698. }
  11699. ],
  11700. "time": "2020-09-28T05:30:19+00:00"
  11701. },
  11702. {
  11703. "name": "sebastian/comparator",
  11704. "version": "4.0.6",
  11705. "source": {
  11706. "type": "git",
  11707. "url": "https://github.com/sebastianbergmann/comparator.git",
  11708. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  11709. },
  11710. "dist": {
  11711. "type": "zip",
  11712. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  11713. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  11714. "shasum": "",
  11715. "mirrors": [
  11716. {
  11717. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11718. "preferred": true
  11719. }
  11720. ]
  11721. },
  11722. "require": {
  11723. "php": ">=7.3",
  11724. "sebastian/diff": "^4.0",
  11725. "sebastian/exporter": "^4.0"
  11726. },
  11727. "require-dev": {
  11728. "phpunit/phpunit": "^9.3"
  11729. },
  11730. "type": "library",
  11731. "extra": {
  11732. "branch-alias": {
  11733. "dev-master": "4.0-dev"
  11734. }
  11735. },
  11736. "autoload": {
  11737. "classmap": [
  11738. "src/"
  11739. ]
  11740. },
  11741. "notification-url": "https://packagist.org/downloads/",
  11742. "license": [
  11743. "BSD-3-Clause"
  11744. ],
  11745. "authors": [
  11746. {
  11747. "name": "Sebastian Bergmann",
  11748. "email": "sebastian@phpunit.de"
  11749. },
  11750. {
  11751. "name": "Jeff Welch",
  11752. "email": "whatthejeff@gmail.com"
  11753. },
  11754. {
  11755. "name": "Volker Dusch",
  11756. "email": "github@wallbash.com"
  11757. },
  11758. {
  11759. "name": "Bernhard Schussek",
  11760. "email": "bschussek@2bepublished.at"
  11761. }
  11762. ],
  11763. "description": "Provides the functionality to compare PHP values for equality",
  11764. "homepage": "https://github.com/sebastianbergmann/comparator",
  11765. "keywords": [
  11766. "comparator",
  11767. "compare",
  11768. "equality"
  11769. ],
  11770. "support": {
  11771. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11772. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  11773. },
  11774. "funding": [
  11775. {
  11776. "url": "https://github.com/sebastianbergmann",
  11777. "type": "github"
  11778. }
  11779. ],
  11780. "time": "2020-10-26T15:49:45+00:00"
  11781. },
  11782. {
  11783. "name": "sebastian/complexity",
  11784. "version": "2.0.2",
  11785. "source": {
  11786. "type": "git",
  11787. "url": "https://github.com/sebastianbergmann/complexity.git",
  11788. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  11789. },
  11790. "dist": {
  11791. "type": "zip",
  11792. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  11793. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  11794. "shasum": "",
  11795. "mirrors": [
  11796. {
  11797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11798. "preferred": true
  11799. }
  11800. ]
  11801. },
  11802. "require": {
  11803. "nikic/php-parser": "^4.7",
  11804. "php": ">=7.3"
  11805. },
  11806. "require-dev": {
  11807. "phpunit/phpunit": "^9.3"
  11808. },
  11809. "type": "library",
  11810. "extra": {
  11811. "branch-alias": {
  11812. "dev-master": "2.0-dev"
  11813. }
  11814. },
  11815. "autoload": {
  11816. "classmap": [
  11817. "src/"
  11818. ]
  11819. },
  11820. "notification-url": "https://packagist.org/downloads/",
  11821. "license": [
  11822. "BSD-3-Clause"
  11823. ],
  11824. "authors": [
  11825. {
  11826. "name": "Sebastian Bergmann",
  11827. "email": "sebastian@phpunit.de",
  11828. "role": "lead"
  11829. }
  11830. ],
  11831. "description": "Library for calculating the complexity of PHP code units",
  11832. "homepage": "https://github.com/sebastianbergmann/complexity",
  11833. "support": {
  11834. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11835. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  11836. },
  11837. "funding": [
  11838. {
  11839. "url": "https://github.com/sebastianbergmann",
  11840. "type": "github"
  11841. }
  11842. ],
  11843. "time": "2020-10-26T15:52:27+00:00"
  11844. },
  11845. {
  11846. "name": "sebastian/diff",
  11847. "version": "4.0.4",
  11848. "source": {
  11849. "type": "git",
  11850. "url": "https://github.com/sebastianbergmann/diff.git",
  11851. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  11852. },
  11853. "dist": {
  11854. "type": "zip",
  11855. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  11856. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  11857. "shasum": "",
  11858. "mirrors": [
  11859. {
  11860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11861. "preferred": true
  11862. }
  11863. ]
  11864. },
  11865. "require": {
  11866. "php": ">=7.3"
  11867. },
  11868. "require-dev": {
  11869. "phpunit/phpunit": "^9.3",
  11870. "symfony/process": "^4.2 || ^5"
  11871. },
  11872. "type": "library",
  11873. "extra": {
  11874. "branch-alias": {
  11875. "dev-master": "4.0-dev"
  11876. }
  11877. },
  11878. "autoload": {
  11879. "classmap": [
  11880. "src/"
  11881. ]
  11882. },
  11883. "notification-url": "https://packagist.org/downloads/",
  11884. "license": [
  11885. "BSD-3-Clause"
  11886. ],
  11887. "authors": [
  11888. {
  11889. "name": "Sebastian Bergmann",
  11890. "email": "sebastian@phpunit.de"
  11891. },
  11892. {
  11893. "name": "Kore Nordmann",
  11894. "email": "mail@kore-nordmann.de"
  11895. }
  11896. ],
  11897. "description": "Diff implementation",
  11898. "homepage": "https://github.com/sebastianbergmann/diff",
  11899. "keywords": [
  11900. "diff",
  11901. "udiff",
  11902. "unidiff",
  11903. "unified diff"
  11904. ],
  11905. "support": {
  11906. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11907. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  11908. },
  11909. "funding": [
  11910. {
  11911. "url": "https://github.com/sebastianbergmann",
  11912. "type": "github"
  11913. }
  11914. ],
  11915. "time": "2020-10-26T13:10:38+00:00"
  11916. },
  11917. {
  11918. "name": "sebastian/environment",
  11919. "version": "5.1.4",
  11920. "source": {
  11921. "type": "git",
  11922. "url": "https://github.com/sebastianbergmann/environment.git",
  11923. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  11924. },
  11925. "dist": {
  11926. "type": "zip",
  11927. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  11928. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  11929. "shasum": "",
  11930. "mirrors": [
  11931. {
  11932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11933. "preferred": true
  11934. }
  11935. ]
  11936. },
  11937. "require": {
  11938. "php": ">=7.3"
  11939. },
  11940. "require-dev": {
  11941. "phpunit/phpunit": "^9.3"
  11942. },
  11943. "suggest": {
  11944. "ext-posix": "*"
  11945. },
  11946. "type": "library",
  11947. "extra": {
  11948. "branch-alias": {
  11949. "dev-master": "5.1-dev"
  11950. }
  11951. },
  11952. "autoload": {
  11953. "classmap": [
  11954. "src/"
  11955. ]
  11956. },
  11957. "notification-url": "https://packagist.org/downloads/",
  11958. "license": [
  11959. "BSD-3-Clause"
  11960. ],
  11961. "authors": [
  11962. {
  11963. "name": "Sebastian Bergmann",
  11964. "email": "sebastian@phpunit.de"
  11965. }
  11966. ],
  11967. "description": "Provides functionality to handle HHVM/PHP environments",
  11968. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11969. "keywords": [
  11970. "Xdebug",
  11971. "environment",
  11972. "hhvm"
  11973. ],
  11974. "support": {
  11975. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11976. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  11977. },
  11978. "funding": [
  11979. {
  11980. "url": "https://github.com/sebastianbergmann",
  11981. "type": "github"
  11982. }
  11983. ],
  11984. "time": "2022-04-03T09:37:03+00:00"
  11985. },
  11986. {
  11987. "name": "sebastian/exporter",
  11988. "version": "4.0.4",
  11989. "source": {
  11990. "type": "git",
  11991. "url": "https://github.com/sebastianbergmann/exporter.git",
  11992. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  11993. },
  11994. "dist": {
  11995. "type": "zip",
  11996. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  11997. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  11998. "shasum": "",
  11999. "mirrors": [
  12000. {
  12001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12002. "preferred": true
  12003. }
  12004. ]
  12005. },
  12006. "require": {
  12007. "php": ">=7.3",
  12008. "sebastian/recursion-context": "^4.0"
  12009. },
  12010. "require-dev": {
  12011. "ext-mbstring": "*",
  12012. "phpunit/phpunit": "^9.3"
  12013. },
  12014. "type": "library",
  12015. "extra": {
  12016. "branch-alias": {
  12017. "dev-master": "4.0-dev"
  12018. }
  12019. },
  12020. "autoload": {
  12021. "classmap": [
  12022. "src/"
  12023. ]
  12024. },
  12025. "notification-url": "https://packagist.org/downloads/",
  12026. "license": [
  12027. "BSD-3-Clause"
  12028. ],
  12029. "authors": [
  12030. {
  12031. "name": "Sebastian Bergmann",
  12032. "email": "sebastian@phpunit.de"
  12033. },
  12034. {
  12035. "name": "Jeff Welch",
  12036. "email": "whatthejeff@gmail.com"
  12037. },
  12038. {
  12039. "name": "Volker Dusch",
  12040. "email": "github@wallbash.com"
  12041. },
  12042. {
  12043. "name": "Adam Harvey",
  12044. "email": "aharvey@php.net"
  12045. },
  12046. {
  12047. "name": "Bernhard Schussek",
  12048. "email": "bschussek@gmail.com"
  12049. }
  12050. ],
  12051. "description": "Provides the functionality to export PHP variables for visualization",
  12052. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12053. "keywords": [
  12054. "export",
  12055. "exporter"
  12056. ],
  12057. "support": {
  12058. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12059. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  12060. },
  12061. "funding": [
  12062. {
  12063. "url": "https://github.com/sebastianbergmann",
  12064. "type": "github"
  12065. }
  12066. ],
  12067. "time": "2021-11-11T14:18:36+00:00"
  12068. },
  12069. {
  12070. "name": "sebastian/global-state",
  12071. "version": "5.0.5",
  12072. "source": {
  12073. "type": "git",
  12074. "url": "https://github.com/sebastianbergmann/global-state.git",
  12075. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  12076. },
  12077. "dist": {
  12078. "type": "zip",
  12079. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12080. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12081. "shasum": "",
  12082. "mirrors": [
  12083. {
  12084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12085. "preferred": true
  12086. }
  12087. ]
  12088. },
  12089. "require": {
  12090. "php": ">=7.3",
  12091. "sebastian/object-reflector": "^2.0",
  12092. "sebastian/recursion-context": "^4.0"
  12093. },
  12094. "require-dev": {
  12095. "ext-dom": "*",
  12096. "phpunit/phpunit": "^9.3"
  12097. },
  12098. "suggest": {
  12099. "ext-uopz": "*"
  12100. },
  12101. "type": "library",
  12102. "extra": {
  12103. "branch-alias": {
  12104. "dev-master": "5.0-dev"
  12105. }
  12106. },
  12107. "autoload": {
  12108. "classmap": [
  12109. "src/"
  12110. ]
  12111. },
  12112. "notification-url": "https://packagist.org/downloads/",
  12113. "license": [
  12114. "BSD-3-Clause"
  12115. ],
  12116. "authors": [
  12117. {
  12118. "name": "Sebastian Bergmann",
  12119. "email": "sebastian@phpunit.de"
  12120. }
  12121. ],
  12122. "description": "Snapshotting of global state",
  12123. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12124. "keywords": [
  12125. "global state"
  12126. ],
  12127. "support": {
  12128. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12129. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  12130. },
  12131. "funding": [
  12132. {
  12133. "url": "https://github.com/sebastianbergmann",
  12134. "type": "github"
  12135. }
  12136. ],
  12137. "time": "2022-02-14T08:28:10+00:00"
  12138. },
  12139. {
  12140. "name": "sebastian/lines-of-code",
  12141. "version": "1.0.3",
  12142. "source": {
  12143. "type": "git",
  12144. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12145. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  12146. },
  12147. "dist": {
  12148. "type": "zip",
  12149. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12150. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12151. "shasum": "",
  12152. "mirrors": [
  12153. {
  12154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12155. "preferred": true
  12156. }
  12157. ]
  12158. },
  12159. "require": {
  12160. "nikic/php-parser": "^4.6",
  12161. "php": ">=7.3"
  12162. },
  12163. "require-dev": {
  12164. "phpunit/phpunit": "^9.3"
  12165. },
  12166. "type": "library",
  12167. "extra": {
  12168. "branch-alias": {
  12169. "dev-master": "1.0-dev"
  12170. }
  12171. },
  12172. "autoload": {
  12173. "classmap": [
  12174. "src/"
  12175. ]
  12176. },
  12177. "notification-url": "https://packagist.org/downloads/",
  12178. "license": [
  12179. "BSD-3-Clause"
  12180. ],
  12181. "authors": [
  12182. {
  12183. "name": "Sebastian Bergmann",
  12184. "email": "sebastian@phpunit.de",
  12185. "role": "lead"
  12186. }
  12187. ],
  12188. "description": "Library for counting the lines of code in PHP source code",
  12189. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12190. "support": {
  12191. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12192. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  12193. },
  12194. "funding": [
  12195. {
  12196. "url": "https://github.com/sebastianbergmann",
  12197. "type": "github"
  12198. }
  12199. ],
  12200. "time": "2020-11-28T06:42:11+00:00"
  12201. },
  12202. {
  12203. "name": "sebastian/object-enumerator",
  12204. "version": "4.0.4",
  12205. "source": {
  12206. "type": "git",
  12207. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12208. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12209. },
  12210. "dist": {
  12211. "type": "zip",
  12212. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12213. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12214. "shasum": "",
  12215. "mirrors": [
  12216. {
  12217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12218. "preferred": true
  12219. }
  12220. ]
  12221. },
  12222. "require": {
  12223. "php": ">=7.3",
  12224. "sebastian/object-reflector": "^2.0",
  12225. "sebastian/recursion-context": "^4.0"
  12226. },
  12227. "require-dev": {
  12228. "phpunit/phpunit": "^9.3"
  12229. },
  12230. "type": "library",
  12231. "extra": {
  12232. "branch-alias": {
  12233. "dev-master": "4.0-dev"
  12234. }
  12235. },
  12236. "autoload": {
  12237. "classmap": [
  12238. "src/"
  12239. ]
  12240. },
  12241. "notification-url": "https://packagist.org/downloads/",
  12242. "license": [
  12243. "BSD-3-Clause"
  12244. ],
  12245. "authors": [
  12246. {
  12247. "name": "Sebastian Bergmann",
  12248. "email": "sebastian@phpunit.de"
  12249. }
  12250. ],
  12251. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12252. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12253. "support": {
  12254. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12255. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12256. },
  12257. "funding": [
  12258. {
  12259. "url": "https://github.com/sebastianbergmann",
  12260. "type": "github"
  12261. }
  12262. ],
  12263. "time": "2020-10-26T13:12:34+00:00"
  12264. },
  12265. {
  12266. "name": "sebastian/object-reflector",
  12267. "version": "2.0.4",
  12268. "source": {
  12269. "type": "git",
  12270. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12271. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  12272. },
  12273. "dist": {
  12274. "type": "zip",
  12275. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12276. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12277. "shasum": "",
  12278. "mirrors": [
  12279. {
  12280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12281. "preferred": true
  12282. }
  12283. ]
  12284. },
  12285. "require": {
  12286. "php": ">=7.3"
  12287. },
  12288. "require-dev": {
  12289. "phpunit/phpunit": "^9.3"
  12290. },
  12291. "type": "library",
  12292. "extra": {
  12293. "branch-alias": {
  12294. "dev-master": "2.0-dev"
  12295. }
  12296. },
  12297. "autoload": {
  12298. "classmap": [
  12299. "src/"
  12300. ]
  12301. },
  12302. "notification-url": "https://packagist.org/downloads/",
  12303. "license": [
  12304. "BSD-3-Clause"
  12305. ],
  12306. "authors": [
  12307. {
  12308. "name": "Sebastian Bergmann",
  12309. "email": "sebastian@phpunit.de"
  12310. }
  12311. ],
  12312. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12313. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12314. "support": {
  12315. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12316. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  12317. },
  12318. "funding": [
  12319. {
  12320. "url": "https://github.com/sebastianbergmann",
  12321. "type": "github"
  12322. }
  12323. ],
  12324. "time": "2020-10-26T13:14:26+00:00"
  12325. },
  12326. {
  12327. "name": "sebastian/recursion-context",
  12328. "version": "4.0.4",
  12329. "source": {
  12330. "type": "git",
  12331. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12332. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  12333. },
  12334. "dist": {
  12335. "type": "zip",
  12336. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  12337. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  12338. "shasum": "",
  12339. "mirrors": [
  12340. {
  12341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12342. "preferred": true
  12343. }
  12344. ]
  12345. },
  12346. "require": {
  12347. "php": ">=7.3"
  12348. },
  12349. "require-dev": {
  12350. "phpunit/phpunit": "^9.3"
  12351. },
  12352. "type": "library",
  12353. "extra": {
  12354. "branch-alias": {
  12355. "dev-master": "4.0-dev"
  12356. }
  12357. },
  12358. "autoload": {
  12359. "classmap": [
  12360. "src/"
  12361. ]
  12362. },
  12363. "notification-url": "https://packagist.org/downloads/",
  12364. "license": [
  12365. "BSD-3-Clause"
  12366. ],
  12367. "authors": [
  12368. {
  12369. "name": "Sebastian Bergmann",
  12370. "email": "sebastian@phpunit.de"
  12371. },
  12372. {
  12373. "name": "Jeff Welch",
  12374. "email": "whatthejeff@gmail.com"
  12375. },
  12376. {
  12377. "name": "Adam Harvey",
  12378. "email": "aharvey@php.net"
  12379. }
  12380. ],
  12381. "description": "Provides functionality to recursively process PHP variables",
  12382. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12383. "support": {
  12384. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12385. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  12386. },
  12387. "funding": [
  12388. {
  12389. "url": "https://github.com/sebastianbergmann",
  12390. "type": "github"
  12391. }
  12392. ],
  12393. "time": "2020-10-26T13:17:30+00:00"
  12394. },
  12395. {
  12396. "name": "sebastian/resource-operations",
  12397. "version": "3.0.3",
  12398. "source": {
  12399. "type": "git",
  12400. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12401. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  12402. },
  12403. "dist": {
  12404. "type": "zip",
  12405. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12406. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12407. "shasum": "",
  12408. "mirrors": [
  12409. {
  12410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12411. "preferred": true
  12412. }
  12413. ]
  12414. },
  12415. "require": {
  12416. "php": ">=7.3"
  12417. },
  12418. "require-dev": {
  12419. "phpunit/phpunit": "^9.0"
  12420. },
  12421. "type": "library",
  12422. "extra": {
  12423. "branch-alias": {
  12424. "dev-master": "3.0-dev"
  12425. }
  12426. },
  12427. "autoload": {
  12428. "classmap": [
  12429. "src/"
  12430. ]
  12431. },
  12432. "notification-url": "https://packagist.org/downloads/",
  12433. "license": [
  12434. "BSD-3-Clause"
  12435. ],
  12436. "authors": [
  12437. {
  12438. "name": "Sebastian Bergmann",
  12439. "email": "sebastian@phpunit.de"
  12440. }
  12441. ],
  12442. "description": "Provides a list of PHP built-in functions that operate on resources",
  12443. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12444. "support": {
  12445. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  12446. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  12447. },
  12448. "funding": [
  12449. {
  12450. "url": "https://github.com/sebastianbergmann",
  12451. "type": "github"
  12452. }
  12453. ],
  12454. "time": "2020-09-28T06:45:17+00:00"
  12455. },
  12456. {
  12457. "name": "sebastian/type",
  12458. "version": "3.0.0",
  12459. "source": {
  12460. "type": "git",
  12461. "url": "https://github.com/sebastianbergmann/type.git",
  12462. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  12463. },
  12464. "dist": {
  12465. "type": "zip",
  12466. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  12467. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  12468. "shasum": "",
  12469. "mirrors": [
  12470. {
  12471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12472. "preferred": true
  12473. }
  12474. ]
  12475. },
  12476. "require": {
  12477. "php": ">=7.3"
  12478. },
  12479. "require-dev": {
  12480. "phpunit/phpunit": "^9.5"
  12481. },
  12482. "type": "library",
  12483. "extra": {
  12484. "branch-alias": {
  12485. "dev-master": "3.0-dev"
  12486. }
  12487. },
  12488. "autoload": {
  12489. "classmap": [
  12490. "src/"
  12491. ]
  12492. },
  12493. "notification-url": "https://packagist.org/downloads/",
  12494. "license": [
  12495. "BSD-3-Clause"
  12496. ],
  12497. "authors": [
  12498. {
  12499. "name": "Sebastian Bergmann",
  12500. "email": "sebastian@phpunit.de",
  12501. "role": "lead"
  12502. }
  12503. ],
  12504. "description": "Collection of value objects that represent the types of the PHP type system",
  12505. "homepage": "https://github.com/sebastianbergmann/type",
  12506. "support": {
  12507. "issues": "https://github.com/sebastianbergmann/type/issues",
  12508. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  12509. },
  12510. "funding": [
  12511. {
  12512. "url": "https://github.com/sebastianbergmann",
  12513. "type": "github"
  12514. }
  12515. ],
  12516. "time": "2022-03-15T09:54:48+00:00"
  12517. },
  12518. {
  12519. "name": "sebastian/version",
  12520. "version": "3.0.2",
  12521. "source": {
  12522. "type": "git",
  12523. "url": "https://github.com/sebastianbergmann/version.git",
  12524. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  12525. },
  12526. "dist": {
  12527. "type": "zip",
  12528. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  12529. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  12530. "shasum": "",
  12531. "mirrors": [
  12532. {
  12533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12534. "preferred": true
  12535. }
  12536. ]
  12537. },
  12538. "require": {
  12539. "php": ">=7.3"
  12540. },
  12541. "type": "library",
  12542. "extra": {
  12543. "branch-alias": {
  12544. "dev-master": "3.0-dev"
  12545. }
  12546. },
  12547. "autoload": {
  12548. "classmap": [
  12549. "src/"
  12550. ]
  12551. },
  12552. "notification-url": "https://packagist.org/downloads/",
  12553. "license": [
  12554. "BSD-3-Clause"
  12555. ],
  12556. "authors": [
  12557. {
  12558. "name": "Sebastian Bergmann",
  12559. "email": "sebastian@phpunit.de",
  12560. "role": "lead"
  12561. }
  12562. ],
  12563. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12564. "homepage": "https://github.com/sebastianbergmann/version",
  12565. "support": {
  12566. "issues": "https://github.com/sebastianbergmann/version/issues",
  12567. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  12568. },
  12569. "funding": [
  12570. {
  12571. "url": "https://github.com/sebastianbergmann",
  12572. "type": "github"
  12573. }
  12574. ],
  12575. "time": "2020-09-28T06:39:44+00:00"
  12576. },
  12577. {
  12578. "name": "theseer/tokenizer",
  12579. "version": "1.2.1",
  12580. "source": {
  12581. "type": "git",
  12582. "url": "https://github.com/theseer/tokenizer.git",
  12583. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  12584. },
  12585. "dist": {
  12586. "type": "zip",
  12587. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  12588. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  12589. "shasum": "",
  12590. "mirrors": [
  12591. {
  12592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12593. "preferred": true
  12594. }
  12595. ]
  12596. },
  12597. "require": {
  12598. "ext-dom": "*",
  12599. "ext-tokenizer": "*",
  12600. "ext-xmlwriter": "*",
  12601. "php": "^7.2 || ^8.0"
  12602. },
  12603. "type": "library",
  12604. "autoload": {
  12605. "classmap": [
  12606. "src/"
  12607. ]
  12608. },
  12609. "notification-url": "https://packagist.org/downloads/",
  12610. "license": [
  12611. "BSD-3-Clause"
  12612. ],
  12613. "authors": [
  12614. {
  12615. "name": "Arne Blankerts",
  12616. "email": "arne@blankerts.de",
  12617. "role": "Developer"
  12618. }
  12619. ],
  12620. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12621. "support": {
  12622. "issues": "https://github.com/theseer/tokenizer/issues",
  12623. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  12624. },
  12625. "funding": [
  12626. {
  12627. "url": "https://github.com/theseer",
  12628. "type": "github"
  12629. }
  12630. ],
  12631. "time": "2021-07-28T10:34:58+00:00"
  12632. }
  12633. ],
  12634. "aliases": [],
  12635. "minimum-stability": "dev",
  12636. "stability-flags": [],
  12637. "prefer-stable": true,
  12638. "prefer-lowest": false,
  12639. "platform": {
  12640. "php": "^7.3|^8.0"
  12641. },
  12642. "platform-dev": [],
  12643. "plugin-api-version": "2.3.0"
  12644. }