composer.lock 463 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803
  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": "6e0b786508e1c727d1348603ea294a65",
  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": "aliyuncs/oss-sdk-php",
  219. "version": "v2.5.0",
  220. "source": {
  221. "type": "git",
  222. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  223. "reference": "f0413667d765855eb0aaa728b596801464ffdb06"
  224. },
  225. "dist": {
  226. "type": "zip",
  227. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/f0413667d765855eb0aaa728b596801464ffdb06",
  228. "reference": "f0413667d765855eb0aaa728b596801464ffdb06",
  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. "php": ">=5.3"
  239. },
  240. "require-dev": {
  241. "phpunit/phpunit": "*",
  242. "satooshi/php-coveralls": "*"
  243. },
  244. "type": "library",
  245. "autoload": {
  246. "psr-4": {
  247. "OSS\\": "src/OSS"
  248. }
  249. },
  250. "notification-url": "https://packagist.org/downloads/",
  251. "license": [
  252. "MIT"
  253. ],
  254. "authors": [
  255. {
  256. "name": "Aliyuncs",
  257. "homepage": "http://www.aliyun.com"
  258. }
  259. ],
  260. "description": "Aliyun OSS SDK for PHP",
  261. "homepage": "http://www.aliyun.com/product/oss/",
  262. "support": {
  263. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  264. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.5.0"
  265. },
  266. "time": "2022-05-13T07:41:28+00:00"
  267. },
  268. {
  269. "name": "api-ecosystem-for-laravel/dingo-api",
  270. "version": "v3.1.1",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/api-ecosystem-for-laravel/dingo-api.git",
  274. "reference": "ac4de98c1a7b1f533d31623a3df1a17abf0af23e"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/api-ecosystem-for-laravel/dingo-api/zipball/ac4de98c1a7b1f533d31623a3df1a17abf0af23e",
  279. "reference": "ac4de98c1a7b1f533d31623a3df1a17abf0af23e",
  280. "shasum": "",
  281. "mirrors": [
  282. {
  283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  284. "preferred": true
  285. }
  286. ]
  287. },
  288. "require": {
  289. "dingo/blueprint": "^0.4",
  290. "illuminate/routing": "^7.0|^8.0",
  291. "illuminate/support": "^7.0|^8.0",
  292. "league/fractal": "^0.19",
  293. "php": "^7.2.5|^8.0"
  294. },
  295. "require-dev": {
  296. "friendsofphp/php-cs-fixer": "~2",
  297. "illuminate/auth": "^7.0|^8.0",
  298. "illuminate/cache": "^7.0|^8.0",
  299. "illuminate/console": "^7.0|^8.0",
  300. "illuminate/database": "^7.0|^8.0",
  301. "illuminate/events": "^7.0|^8.0",
  302. "illuminate/filesystem": "^7.0|^8.0",
  303. "illuminate/log": "^7.0|^8.0",
  304. "illuminate/pagination": "^7.0|^8.0",
  305. "laravel/lumen-framework": "^7.0|^8.0",
  306. "mockery/mockery": "~1.0",
  307. "php-open-source-saver/jwt-auth": "^1.4",
  308. "phpunit/phpunit": "^8.5|^9.0",
  309. "squizlabs/php_codesniffer": "~2.0"
  310. },
  311. "suggest": {
  312. "php-open-source-saver/jwt-auth": "Protect your API with JSON Web Tokens."
  313. },
  314. "type": "library",
  315. "extra": {
  316. "branch-alias": {
  317. "dev-master": "2.0-dev"
  318. },
  319. "laravel": {
  320. "providers": [
  321. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  322. ],
  323. "aliases": {
  324. "API": "Dingo\\Api\\Facade\\API"
  325. }
  326. }
  327. },
  328. "autoload": {
  329. "files": [
  330. "src/helpers.php"
  331. ],
  332. "psr-4": {
  333. "Dingo\\Api\\": "src/"
  334. }
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "BSD-3-Clause"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Jason Lewis",
  343. "email": "jason.lewis1991@gmail.com"
  344. }
  345. ],
  346. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  347. "keywords": [
  348. "api",
  349. "dingo",
  350. "laravel",
  351. "restful"
  352. ],
  353. "support": {
  354. "issues": "https://github.com/api-ecosystem-for-laravel/dingo-api/issues",
  355. "source": "https://github.com/api-ecosystem-for-laravel/dingo-api/tree/v3.1.1"
  356. },
  357. "time": "2022-01-30T13:37:55+00:00"
  358. },
  359. {
  360. "name": "asm89/stack-cors",
  361. "version": "v2.1.1",
  362. "source": {
  363. "type": "git",
  364. "url": "https://github.com/asm89/stack-cors.git",
  365. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  366. },
  367. "dist": {
  368. "type": "zip",
  369. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  370. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  371. "shasum": "",
  372. "mirrors": [
  373. {
  374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  375. "preferred": true
  376. }
  377. ]
  378. },
  379. "require": {
  380. "php": "^7.2|^8.0",
  381. "symfony/http-foundation": "^4|^5|^6",
  382. "symfony/http-kernel": "^4|^5|^6"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "^7|^9",
  386. "squizlabs/php_codesniffer": "^3.5"
  387. },
  388. "type": "library",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-master": "2.1-dev"
  392. }
  393. },
  394. "autoload": {
  395. "psr-4": {
  396. "Asm89\\Stack\\": "src/"
  397. }
  398. },
  399. "notification-url": "https://packagist.org/downloads/",
  400. "license": [
  401. "MIT"
  402. ],
  403. "authors": [
  404. {
  405. "name": "Alexander",
  406. "email": "iam.asm89@gmail.com"
  407. }
  408. ],
  409. "description": "Cross-origin resource sharing library and stack middleware",
  410. "homepage": "https://github.com/asm89/stack-cors",
  411. "keywords": [
  412. "cors",
  413. "stack"
  414. ],
  415. "support": {
  416. "issues": "https://github.com/asm89/stack-cors/issues",
  417. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  418. },
  419. "time": "2022-01-18T09:12:03+00:00"
  420. },
  421. {
  422. "name": "barryvdh/laravel-snappy",
  423. "version": "v0.4.8",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/barryvdh/laravel-snappy.git",
  427. "reference": "1903ab84171072b6bff8d98eb58d38b2c9aaf645"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/1903ab84171072b6bff8d98eb58d38b2c9aaf645",
  432. "reference": "1903ab84171072b6bff8d98eb58d38b2c9aaf645",
  433. "shasum": "",
  434. "mirrors": [
  435. {
  436. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  437. "preferred": true
  438. }
  439. ]
  440. },
  441. "require": {
  442. "illuminate/filesystem": "^5.5|^6|^7|^8",
  443. "illuminate/support": "^5.5|^6|^7|^8",
  444. "knplabs/knp-snappy": "^1",
  445. "php": ">=7"
  446. },
  447. "type": "library",
  448. "extra": {
  449. "branch-alias": {
  450. "dev-master": "0.4-dev"
  451. },
  452. "laravel": {
  453. "providers": [
  454. "Barryvdh\\Snappy\\ServiceProvider"
  455. ],
  456. "aliases": {
  457. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  458. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  459. }
  460. }
  461. },
  462. "autoload": {
  463. "psr-4": {
  464. "Barryvdh\\Snappy\\": "src/"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "authors": [
  472. {
  473. "name": "Barry vd. Heuvel",
  474. "email": "barryvdh@gmail.com"
  475. }
  476. ],
  477. "description": "Snappy PDF/Image for Laravel",
  478. "keywords": [
  479. "image",
  480. "laravel",
  481. "pdf",
  482. "snappy",
  483. "wkhtmltoimage",
  484. "wkhtmltopdf"
  485. ],
  486. "support": {
  487. "issues": "https://github.com/barryvdh/laravel-snappy/issues",
  488. "source": "https://github.com/barryvdh/laravel-snappy/tree/master"
  489. },
  490. "time": "2020-09-07T12:33:10+00:00"
  491. },
  492. {
  493. "name": "box/spout",
  494. "version": "v3.3.0",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/box/spout.git",
  498. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  503. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  504. "shasum": "",
  505. "mirrors": [
  506. {
  507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  508. "preferred": true
  509. }
  510. ]
  511. },
  512. "require": {
  513. "ext-dom": "*",
  514. "ext-xmlreader": "*",
  515. "ext-zip": "*",
  516. "php": ">=7.2.0"
  517. },
  518. "require-dev": {
  519. "friendsofphp/php-cs-fixer": "^2",
  520. "phpunit/phpunit": "^8"
  521. },
  522. "suggest": {
  523. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  524. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  525. },
  526. "type": "library",
  527. "extra": {
  528. "branch-alias": {
  529. "dev-master": "3.1.x-dev"
  530. }
  531. },
  532. "autoload": {
  533. "psr-4": {
  534. "Box\\Spout\\": "src/Spout"
  535. }
  536. },
  537. "notification-url": "https://packagist.org/downloads/",
  538. "license": [
  539. "Apache-2.0"
  540. ],
  541. "authors": [
  542. {
  543. "name": "Adrien Loison",
  544. "email": "adrien@box.com"
  545. }
  546. ],
  547. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  548. "homepage": "https://www.github.com/box/spout",
  549. "keywords": [
  550. "OOXML",
  551. "csv",
  552. "excel",
  553. "memory",
  554. "odf",
  555. "ods",
  556. "office",
  557. "open",
  558. "php",
  559. "read",
  560. "scale",
  561. "spreadsheet",
  562. "stream",
  563. "write",
  564. "xlsx"
  565. ],
  566. "support": {
  567. "issues": "https://github.com/box/spout/issues",
  568. "source": "https://github.com/box/spout/tree/v3.3.0"
  569. },
  570. "abandoned": true,
  571. "time": "2021-05-14T21:18:09+00:00"
  572. },
  573. {
  574. "name": "brick/math",
  575. "version": "0.9.3",
  576. "source": {
  577. "type": "git",
  578. "url": "https://github.com/brick/math.git",
  579. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  580. },
  581. "dist": {
  582. "type": "zip",
  583. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  584. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  585. "shasum": "",
  586. "mirrors": [
  587. {
  588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  589. "preferred": true
  590. }
  591. ]
  592. },
  593. "require": {
  594. "ext-json": "*",
  595. "php": "^7.1 || ^8.0"
  596. },
  597. "require-dev": {
  598. "php-coveralls/php-coveralls": "^2.2",
  599. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  600. "vimeo/psalm": "4.9.2"
  601. },
  602. "type": "library",
  603. "autoload": {
  604. "psr-4": {
  605. "Brick\\Math\\": "src/"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "description": "Arbitrary-precision arithmetic library",
  613. "keywords": [
  614. "Arbitrary-precision",
  615. "BigInteger",
  616. "BigRational",
  617. "arithmetic",
  618. "bigdecimal",
  619. "bignum",
  620. "brick",
  621. "math"
  622. ],
  623. "support": {
  624. "issues": "https://github.com/brick/math/issues",
  625. "source": "https://github.com/brick/math/tree/0.9.3"
  626. },
  627. "funding": [
  628. {
  629. "url": "https://github.com/BenMorel",
  630. "type": "github"
  631. },
  632. {
  633. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  634. "type": "tidelift"
  635. }
  636. ],
  637. "time": "2021-08-15T20:50:18+00:00"
  638. },
  639. {
  640. "name": "clagiordano/weblibs-configmanager",
  641. "version": "v1.2.0",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  645. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  650. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  651. "shasum": "",
  652. "mirrors": [
  653. {
  654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  655. "preferred": true
  656. }
  657. ]
  658. },
  659. "require": {
  660. "php": ">=5.4"
  661. },
  662. "require-dev": {
  663. "clagiordano/phpunit-result-printer": "^1",
  664. "phpunit/phpunit": "^4.8"
  665. },
  666. "type": "library",
  667. "autoload": {
  668. "psr-4": {
  669. "clagiordano\\weblibs\\configmanager\\": "src/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "LGPL-3.0-or-later"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Claudio Giordano",
  679. "email": "claudio.giordano@autistici.org",
  680. "role": "Developer"
  681. }
  682. ],
  683. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  684. "keywords": [
  685. "clagiordano",
  686. "configuration",
  687. "manager",
  688. "tool",
  689. "weblibs"
  690. ],
  691. "support": {
  692. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  693. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  694. },
  695. "time": "2021-05-18T17:55:57+00:00"
  696. },
  697. {
  698. "name": "danielstjules/stringy",
  699. "version": "3.1.0",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/danielstjules/Stringy.git",
  703. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  708. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  709. "shasum": "",
  710. "mirrors": [
  711. {
  712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  713. "preferred": true
  714. }
  715. ]
  716. },
  717. "require": {
  718. "php": ">=5.4.0",
  719. "symfony/polyfill-mbstring": "~1.1"
  720. },
  721. "require-dev": {
  722. "phpunit/phpunit": "~4.0"
  723. },
  724. "type": "library",
  725. "autoload": {
  726. "files": [
  727. "src/Create.php"
  728. ],
  729. "psr-4": {
  730. "Stringy\\": "src/"
  731. }
  732. },
  733. "notification-url": "https://packagist.org/downloads/",
  734. "license": [
  735. "MIT"
  736. ],
  737. "authors": [
  738. {
  739. "name": "Daniel St. Jules",
  740. "email": "danielst.jules@gmail.com",
  741. "homepage": "http://www.danielstjules.com"
  742. }
  743. ],
  744. "description": "A string manipulation library with multibyte support",
  745. "homepage": "https://github.com/danielstjules/Stringy",
  746. "keywords": [
  747. "UTF",
  748. "helpers",
  749. "manipulation",
  750. "methods",
  751. "multibyte",
  752. "string",
  753. "utf-8",
  754. "utility",
  755. "utils"
  756. ],
  757. "support": {
  758. "issues": "https://github.com/danielstjules/Stringy/issues",
  759. "source": "https://github.com/danielstjules/Stringy"
  760. },
  761. "time": "2017-06-12T01:10:27+00:00"
  762. },
  763. {
  764. "name": "dcat/easy-excel",
  765. "version": "1.1.0",
  766. "source": {
  767. "type": "git",
  768. "url": "https://github.com/jqhph/easy-excel.git",
  769. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0"
  770. },
  771. "dist": {
  772. "type": "zip",
  773. "url": "https://api.github.com/repos/jqhph/easy-excel/zipball/20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  774. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  775. "shasum": "",
  776. "mirrors": [
  777. {
  778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  779. "preferred": true
  780. }
  781. ]
  782. },
  783. "require": {
  784. "box/spout": "~3",
  785. "league/flysystem": "~1|~2|~3",
  786. "php": ">=7.1.0"
  787. },
  788. "require-dev": {
  789. "friendsofphp/php-cs-fixer": "^2",
  790. "phpunit/phpunit": "~7|~8.0"
  791. },
  792. "type": "library",
  793. "autoload": {
  794. "psr-4": {
  795. "Dcat\\EasyExcel\\": "src/"
  796. }
  797. },
  798. "notification-url": "https://packagist.org/downloads/",
  799. "license": [
  800. "MIT"
  801. ],
  802. "authors": [
  803. {
  804. "name": "jqh",
  805. "email": "841324345@qq.com"
  806. }
  807. ],
  808. "description": "使用简单实用的语义化接口快速读写Excel文件",
  809. "homepage": "https://github.com/jqhph/easy-excel",
  810. "keywords": [
  811. "box spout",
  812. "csv",
  813. "easy excel",
  814. "excel",
  815. "ods",
  816. "office",
  817. "read",
  818. "spreadsheet",
  819. "stream",
  820. "xlsx"
  821. ],
  822. "support": {
  823. "issues": "https://github.com/jqhph/easy-excel/issues",
  824. "source": "https://github.com/jqhph/easy-excel/tree/1.1.0"
  825. },
  826. "time": "2022-03-03T03:04:13+00:00"
  827. },
  828. {
  829. "name": "dcat/laravel-admin",
  830. "version": "2.2.2-beta",
  831. "source": {
  832. "type": "git",
  833. "url": "https://github.com/jqhph/dcat-admin.git",
  834. "reference": "150f46486871b5ca57992f7eed3787e0c1c49bef"
  835. },
  836. "dist": {
  837. "type": "zip",
  838. "url": "https://api.github.com/repos/jqhph/dcat-admin/zipball/150f46486871b5ca57992f7eed3787e0c1c49bef",
  839. "reference": "150f46486871b5ca57992f7eed3787e0c1c49bef",
  840. "shasum": "",
  841. "mirrors": [
  842. {
  843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  844. "preferred": true
  845. }
  846. ]
  847. },
  848. "require": {
  849. "doctrine/dbal": "^2.6|^3.0",
  850. "laravel/framework": "~5.5|~6.0|~7.0|~8.0|~9.0",
  851. "php": ">=7.1.0",
  852. "spatie/eloquent-sortable": "3.*|4.*"
  853. },
  854. "require-dev": {
  855. "fzaninotto/faker": "^1.4",
  856. "laravel/dusk": "~5.9|~6",
  857. "mockery/mockery": "^1.0",
  858. "phpstan/phpstan": "^0.12.0",
  859. "phpunit/phpunit": "^7.5|~9"
  860. },
  861. "type": "library",
  862. "extra": {
  863. "laravel": {
  864. "providers": [
  865. "Dcat\\Admin\\AdminServiceProvider"
  866. ]
  867. }
  868. },
  869. "autoload": {
  870. "files": [
  871. "src/Support/helpers.php"
  872. ],
  873. "psr-4": {
  874. "Dcat\\Admin\\": "src/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "authors": [
  882. {
  883. "name": "jqh",
  884. "email": "841324345@qq.com"
  885. }
  886. ],
  887. "description": "dcat admin",
  888. "homepage": "https://github.com/jqhph/dcat-admin",
  889. "keywords": [
  890. "admin",
  891. "dcat",
  892. "form",
  893. "grid",
  894. "laravel",
  895. "laravel admin"
  896. ],
  897. "support": {
  898. "issues": "https://github.com/jqhph/dcat-admin/issues",
  899. "source": "https://github.com/jqhph/dcat-admin/tree/2.2.2-beta"
  900. },
  901. "time": "2022-06-27T14:42:39+00:00"
  902. },
  903. {
  904. "name": "dflydev/dot-access-data",
  905. "version": "v3.0.1",
  906. "source": {
  907. "type": "git",
  908. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  909. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  910. },
  911. "dist": {
  912. "type": "zip",
  913. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  914. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  915. "shasum": "",
  916. "mirrors": [
  917. {
  918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  919. "preferred": true
  920. }
  921. ]
  922. },
  923. "require": {
  924. "php": "^7.1 || ^8.0"
  925. },
  926. "require-dev": {
  927. "phpstan/phpstan": "^0.12.42",
  928. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  929. "scrutinizer/ocular": "1.6.0",
  930. "squizlabs/php_codesniffer": "^3.5",
  931. "vimeo/psalm": "^3.14"
  932. },
  933. "type": "library",
  934. "extra": {
  935. "branch-alias": {
  936. "dev-main": "3.x-dev"
  937. }
  938. },
  939. "autoload": {
  940. "psr-4": {
  941. "Dflydev\\DotAccessData\\": "src/"
  942. }
  943. },
  944. "notification-url": "https://packagist.org/downloads/",
  945. "license": [
  946. "MIT"
  947. ],
  948. "authors": [
  949. {
  950. "name": "Dragonfly Development Inc.",
  951. "email": "info@dflydev.com",
  952. "homepage": "http://dflydev.com"
  953. },
  954. {
  955. "name": "Beau Simensen",
  956. "email": "beau@dflydev.com",
  957. "homepage": "http://beausimensen.com"
  958. },
  959. {
  960. "name": "Carlos Frutos",
  961. "email": "carlos@kiwing.it",
  962. "homepage": "https://github.com/cfrutos"
  963. },
  964. {
  965. "name": "Colin O'Dell",
  966. "email": "colinodell@gmail.com",
  967. "homepage": "https://www.colinodell.com"
  968. }
  969. ],
  970. "description": "Given a deep data structure, access data by dot notation.",
  971. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  972. "keywords": [
  973. "access",
  974. "data",
  975. "dot",
  976. "notation"
  977. ],
  978. "support": {
  979. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  980. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  981. },
  982. "time": "2021-08-13T13:06:58+00:00"
  983. },
  984. {
  985. "name": "dingo/blueprint",
  986. "version": "v0.4.3",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/dingo/blueprint.git",
  990. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/dingo/blueprint/zipball/e3a8f19ae10716670079c3c162540756dbd20a88",
  995. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88",
  996. "shasum": "",
  997. "mirrors": [
  998. {
  999. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1000. "preferred": true
  1001. }
  1002. ]
  1003. },
  1004. "require": {
  1005. "doctrine/annotations": "~1.2",
  1006. "illuminate/filesystem": "^7.0|^8.0",
  1007. "illuminate/support": "^7.0|^8.0",
  1008. "php": "^7.2.5|^8.0",
  1009. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  1010. },
  1011. "require-dev": {
  1012. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  1013. "squizlabs/php_codesniffer": "~2.0"
  1014. },
  1015. "type": "library",
  1016. "extra": {
  1017. "branch-alias": {
  1018. "dev-master": "0.2-dev"
  1019. }
  1020. },
  1021. "autoload": {
  1022. "psr-4": {
  1023. "Dingo\\Blueprint\\": "src"
  1024. }
  1025. },
  1026. "notification-url": "https://packagist.org/downloads/",
  1027. "license": [
  1028. "BSD-3-Clause"
  1029. ],
  1030. "authors": [
  1031. {
  1032. "name": "Jason Lewis",
  1033. "email": "jason.lewis1991@gmail.com"
  1034. }
  1035. ],
  1036. "description": "API Blueprint documentation generator.",
  1037. "keywords": [
  1038. "api",
  1039. "blueprint",
  1040. "dingo",
  1041. "docs",
  1042. "laravel"
  1043. ],
  1044. "support": {
  1045. "issues": "https://github.com/dingo/blueprint/issues",
  1046. "source": "https://github.com/dingo/blueprint/tree/v0.4.3"
  1047. },
  1048. "time": "2021-04-30T11:20:38+00:00"
  1049. },
  1050. {
  1051. "name": "doctrine/annotations",
  1052. "version": "1.13.3",
  1053. "source": {
  1054. "type": "git",
  1055. "url": "https://github.com/doctrine/annotations.git",
  1056. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1057. },
  1058. "dist": {
  1059. "type": "zip",
  1060. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1061. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1062. "shasum": "",
  1063. "mirrors": [
  1064. {
  1065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1066. "preferred": true
  1067. }
  1068. ]
  1069. },
  1070. "require": {
  1071. "doctrine/lexer": "1.*",
  1072. "ext-tokenizer": "*",
  1073. "php": "^7.1 || ^8.0",
  1074. "psr/cache": "^1 || ^2 || ^3"
  1075. },
  1076. "require-dev": {
  1077. "doctrine/cache": "^1.11 || ^2.0",
  1078. "doctrine/coding-standard": "^6.0 || ^8.1",
  1079. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1080. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1081. "symfony/cache": "^4.4 || ^5.2",
  1082. "vimeo/psalm": "^4.10"
  1083. },
  1084. "type": "library",
  1085. "autoload": {
  1086. "psr-4": {
  1087. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1088. }
  1089. },
  1090. "notification-url": "https://packagist.org/downloads/",
  1091. "license": [
  1092. "MIT"
  1093. ],
  1094. "authors": [
  1095. {
  1096. "name": "Guilherme Blanco",
  1097. "email": "guilhermeblanco@gmail.com"
  1098. },
  1099. {
  1100. "name": "Roman Borschel",
  1101. "email": "roman@code-factory.org"
  1102. },
  1103. {
  1104. "name": "Benjamin Eberlei",
  1105. "email": "kontakt@beberlei.de"
  1106. },
  1107. {
  1108. "name": "Jonathan Wage",
  1109. "email": "jonwage@gmail.com"
  1110. },
  1111. {
  1112. "name": "Johannes Schmitt",
  1113. "email": "schmittjoh@gmail.com"
  1114. }
  1115. ],
  1116. "description": "Docblock Annotations Parser",
  1117. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1118. "keywords": [
  1119. "annotations",
  1120. "docblock",
  1121. "parser"
  1122. ],
  1123. "support": {
  1124. "issues": "https://github.com/doctrine/annotations/issues",
  1125. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1126. },
  1127. "time": "2022-07-02T10:48:51+00:00"
  1128. },
  1129. {
  1130. "name": "doctrine/cache",
  1131. "version": "2.2.0",
  1132. "source": {
  1133. "type": "git",
  1134. "url": "https://github.com/doctrine/cache.git",
  1135. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1136. },
  1137. "dist": {
  1138. "type": "zip",
  1139. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1140. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1141. "shasum": "",
  1142. "mirrors": [
  1143. {
  1144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1145. "preferred": true
  1146. }
  1147. ]
  1148. },
  1149. "require": {
  1150. "php": "~7.1 || ^8.0"
  1151. },
  1152. "conflict": {
  1153. "doctrine/common": ">2.2,<2.4"
  1154. },
  1155. "require-dev": {
  1156. "cache/integration-tests": "dev-master",
  1157. "doctrine/coding-standard": "^9",
  1158. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1159. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1160. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1161. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1162. },
  1163. "type": "library",
  1164. "autoload": {
  1165. "psr-4": {
  1166. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1167. }
  1168. },
  1169. "notification-url": "https://packagist.org/downloads/",
  1170. "license": [
  1171. "MIT"
  1172. ],
  1173. "authors": [
  1174. {
  1175. "name": "Guilherme Blanco",
  1176. "email": "guilhermeblanco@gmail.com"
  1177. },
  1178. {
  1179. "name": "Roman Borschel",
  1180. "email": "roman@code-factory.org"
  1181. },
  1182. {
  1183. "name": "Benjamin Eberlei",
  1184. "email": "kontakt@beberlei.de"
  1185. },
  1186. {
  1187. "name": "Jonathan Wage",
  1188. "email": "jonwage@gmail.com"
  1189. },
  1190. {
  1191. "name": "Johannes Schmitt",
  1192. "email": "schmittjoh@gmail.com"
  1193. }
  1194. ],
  1195. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1196. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1197. "keywords": [
  1198. "abstraction",
  1199. "apcu",
  1200. "cache",
  1201. "caching",
  1202. "couchdb",
  1203. "memcached",
  1204. "php",
  1205. "redis",
  1206. "xcache"
  1207. ],
  1208. "support": {
  1209. "issues": "https://github.com/doctrine/cache/issues",
  1210. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1211. },
  1212. "funding": [
  1213. {
  1214. "url": "https://www.doctrine-project.org/sponsorship.html",
  1215. "type": "custom"
  1216. },
  1217. {
  1218. "url": "https://www.patreon.com/phpdoctrine",
  1219. "type": "patreon"
  1220. },
  1221. {
  1222. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1223. "type": "tidelift"
  1224. }
  1225. ],
  1226. "time": "2022-05-20T20:07:39+00:00"
  1227. },
  1228. {
  1229. "name": "doctrine/dbal",
  1230. "version": "3.3.7",
  1231. "source": {
  1232. "type": "git",
  1233. "url": "https://github.com/doctrine/dbal.git",
  1234. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a"
  1235. },
  1236. "dist": {
  1237. "type": "zip",
  1238. "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  1239. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  1240. "shasum": "",
  1241. "mirrors": [
  1242. {
  1243. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1244. "preferred": true
  1245. }
  1246. ]
  1247. },
  1248. "require": {
  1249. "composer-runtime-api": "^2",
  1250. "doctrine/cache": "^1.11|^2.0",
  1251. "doctrine/deprecations": "^0.5.3|^1",
  1252. "doctrine/event-manager": "^1.0",
  1253. "php": "^7.3 || ^8.0",
  1254. "psr/cache": "^1|^2|^3",
  1255. "psr/log": "^1|^2|^3"
  1256. },
  1257. "require-dev": {
  1258. "doctrine/coding-standard": "9.0.0",
  1259. "jetbrains/phpstorm-stubs": "2022.1",
  1260. "phpstan/phpstan": "1.7.13",
  1261. "phpstan/phpstan-strict-rules": "^1.2",
  1262. "phpunit/phpunit": "9.5.20",
  1263. "psalm/plugin-phpunit": "0.16.1",
  1264. "squizlabs/php_codesniffer": "3.7.0",
  1265. "symfony/cache": "^5.2|^6.0",
  1266. "symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
  1267. "vimeo/psalm": "4.23.0"
  1268. },
  1269. "suggest": {
  1270. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1271. },
  1272. "bin": [
  1273. "bin/doctrine-dbal"
  1274. ],
  1275. "type": "library",
  1276. "autoload": {
  1277. "psr-4": {
  1278. "Doctrine\\DBAL\\": "src"
  1279. }
  1280. },
  1281. "notification-url": "https://packagist.org/downloads/",
  1282. "license": [
  1283. "MIT"
  1284. ],
  1285. "authors": [
  1286. {
  1287. "name": "Guilherme Blanco",
  1288. "email": "guilhermeblanco@gmail.com"
  1289. },
  1290. {
  1291. "name": "Roman Borschel",
  1292. "email": "roman@code-factory.org"
  1293. },
  1294. {
  1295. "name": "Benjamin Eberlei",
  1296. "email": "kontakt@beberlei.de"
  1297. },
  1298. {
  1299. "name": "Jonathan Wage",
  1300. "email": "jonwage@gmail.com"
  1301. }
  1302. ],
  1303. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1304. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1305. "keywords": [
  1306. "abstraction",
  1307. "database",
  1308. "db2",
  1309. "dbal",
  1310. "mariadb",
  1311. "mssql",
  1312. "mysql",
  1313. "oci8",
  1314. "oracle",
  1315. "pdo",
  1316. "pgsql",
  1317. "postgresql",
  1318. "queryobject",
  1319. "sasql",
  1320. "sql",
  1321. "sqlite",
  1322. "sqlserver",
  1323. "sqlsrv"
  1324. ],
  1325. "support": {
  1326. "issues": "https://github.com/doctrine/dbal/issues",
  1327. "source": "https://github.com/doctrine/dbal/tree/3.3.7"
  1328. },
  1329. "funding": [
  1330. {
  1331. "url": "https://www.doctrine-project.org/sponsorship.html",
  1332. "type": "custom"
  1333. },
  1334. {
  1335. "url": "https://www.patreon.com/phpdoctrine",
  1336. "type": "patreon"
  1337. },
  1338. {
  1339. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1340. "type": "tidelift"
  1341. }
  1342. ],
  1343. "time": "2022-06-13T21:43:03+00:00"
  1344. },
  1345. {
  1346. "name": "doctrine/deprecations",
  1347. "version": "v1.0.0",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/doctrine/deprecations.git",
  1351. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1356. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1357. "shasum": "",
  1358. "mirrors": [
  1359. {
  1360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1361. "preferred": true
  1362. }
  1363. ]
  1364. },
  1365. "require": {
  1366. "php": "^7.1|^8.0"
  1367. },
  1368. "require-dev": {
  1369. "doctrine/coding-standard": "^9",
  1370. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  1371. "psr/log": "^1|^2|^3"
  1372. },
  1373. "suggest": {
  1374. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1375. },
  1376. "type": "library",
  1377. "autoload": {
  1378. "psr-4": {
  1379. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1380. }
  1381. },
  1382. "notification-url": "https://packagist.org/downloads/",
  1383. "license": [
  1384. "MIT"
  1385. ],
  1386. "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.",
  1387. "homepage": "https://www.doctrine-project.org/",
  1388. "support": {
  1389. "issues": "https://github.com/doctrine/deprecations/issues",
  1390. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  1391. },
  1392. "time": "2022-05-02T15:47:09+00:00"
  1393. },
  1394. {
  1395. "name": "doctrine/event-manager",
  1396. "version": "1.1.1",
  1397. "source": {
  1398. "type": "git",
  1399. "url": "https://github.com/doctrine/event-manager.git",
  1400. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1401. },
  1402. "dist": {
  1403. "type": "zip",
  1404. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1405. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1406. "shasum": "",
  1407. "mirrors": [
  1408. {
  1409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1410. "preferred": true
  1411. }
  1412. ]
  1413. },
  1414. "require": {
  1415. "php": "^7.1 || ^8.0"
  1416. },
  1417. "conflict": {
  1418. "doctrine/common": "<2.9@dev"
  1419. },
  1420. "require-dev": {
  1421. "doctrine/coding-standard": "^6.0",
  1422. "phpunit/phpunit": "^7.0"
  1423. },
  1424. "type": "library",
  1425. "extra": {
  1426. "branch-alias": {
  1427. "dev-master": "1.0.x-dev"
  1428. }
  1429. },
  1430. "autoload": {
  1431. "psr-4": {
  1432. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1433. }
  1434. },
  1435. "notification-url": "https://packagist.org/downloads/",
  1436. "license": [
  1437. "MIT"
  1438. ],
  1439. "authors": [
  1440. {
  1441. "name": "Guilherme Blanco",
  1442. "email": "guilhermeblanco@gmail.com"
  1443. },
  1444. {
  1445. "name": "Roman Borschel",
  1446. "email": "roman@code-factory.org"
  1447. },
  1448. {
  1449. "name": "Benjamin Eberlei",
  1450. "email": "kontakt@beberlei.de"
  1451. },
  1452. {
  1453. "name": "Jonathan Wage",
  1454. "email": "jonwage@gmail.com"
  1455. },
  1456. {
  1457. "name": "Johannes Schmitt",
  1458. "email": "schmittjoh@gmail.com"
  1459. },
  1460. {
  1461. "name": "Marco Pivetta",
  1462. "email": "ocramius@gmail.com"
  1463. }
  1464. ],
  1465. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1466. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1467. "keywords": [
  1468. "event",
  1469. "event dispatcher",
  1470. "event manager",
  1471. "event system",
  1472. "events"
  1473. ],
  1474. "support": {
  1475. "issues": "https://github.com/doctrine/event-manager/issues",
  1476. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1477. },
  1478. "funding": [
  1479. {
  1480. "url": "https://www.doctrine-project.org/sponsorship.html",
  1481. "type": "custom"
  1482. },
  1483. {
  1484. "url": "https://www.patreon.com/phpdoctrine",
  1485. "type": "patreon"
  1486. },
  1487. {
  1488. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1489. "type": "tidelift"
  1490. }
  1491. ],
  1492. "time": "2020-05-29T18:28:51+00:00"
  1493. },
  1494. {
  1495. "name": "doctrine/inflector",
  1496. "version": "2.0.4",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/doctrine/inflector.git",
  1500. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1505. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1506. "shasum": "",
  1507. "mirrors": [
  1508. {
  1509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1510. "preferred": true
  1511. }
  1512. ]
  1513. },
  1514. "require": {
  1515. "php": "^7.2 || ^8.0"
  1516. },
  1517. "require-dev": {
  1518. "doctrine/coding-standard": "^8.2",
  1519. "phpstan/phpstan": "^0.12",
  1520. "phpstan/phpstan-phpunit": "^0.12",
  1521. "phpstan/phpstan-strict-rules": "^0.12",
  1522. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1523. "vimeo/psalm": "^4.10"
  1524. },
  1525. "type": "library",
  1526. "autoload": {
  1527. "psr-4": {
  1528. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1529. }
  1530. },
  1531. "notification-url": "https://packagist.org/downloads/",
  1532. "license": [
  1533. "MIT"
  1534. ],
  1535. "authors": [
  1536. {
  1537. "name": "Guilherme Blanco",
  1538. "email": "guilhermeblanco@gmail.com"
  1539. },
  1540. {
  1541. "name": "Roman Borschel",
  1542. "email": "roman@code-factory.org"
  1543. },
  1544. {
  1545. "name": "Benjamin Eberlei",
  1546. "email": "kontakt@beberlei.de"
  1547. },
  1548. {
  1549. "name": "Jonathan Wage",
  1550. "email": "jonwage@gmail.com"
  1551. },
  1552. {
  1553. "name": "Johannes Schmitt",
  1554. "email": "schmittjoh@gmail.com"
  1555. }
  1556. ],
  1557. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1558. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1559. "keywords": [
  1560. "inflection",
  1561. "inflector",
  1562. "lowercase",
  1563. "manipulation",
  1564. "php",
  1565. "plural",
  1566. "singular",
  1567. "strings",
  1568. "uppercase",
  1569. "words"
  1570. ],
  1571. "support": {
  1572. "issues": "https://github.com/doctrine/inflector/issues",
  1573. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1574. },
  1575. "funding": [
  1576. {
  1577. "url": "https://www.doctrine-project.org/sponsorship.html",
  1578. "type": "custom"
  1579. },
  1580. {
  1581. "url": "https://www.patreon.com/phpdoctrine",
  1582. "type": "patreon"
  1583. },
  1584. {
  1585. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1586. "type": "tidelift"
  1587. }
  1588. ],
  1589. "time": "2021-10-22T20:16:43+00:00"
  1590. },
  1591. {
  1592. "name": "doctrine/lexer",
  1593. "version": "1.2.3",
  1594. "source": {
  1595. "type": "git",
  1596. "url": "https://github.com/doctrine/lexer.git",
  1597. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1598. },
  1599. "dist": {
  1600. "type": "zip",
  1601. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1602. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1603. "shasum": "",
  1604. "mirrors": [
  1605. {
  1606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1607. "preferred": true
  1608. }
  1609. ]
  1610. },
  1611. "require": {
  1612. "php": "^7.1 || ^8.0"
  1613. },
  1614. "require-dev": {
  1615. "doctrine/coding-standard": "^9.0",
  1616. "phpstan/phpstan": "^1.3",
  1617. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1618. "vimeo/psalm": "^4.11"
  1619. },
  1620. "type": "library",
  1621. "autoload": {
  1622. "psr-4": {
  1623. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  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": "Johannes Schmitt",
  1641. "email": "schmittjoh@gmail.com"
  1642. }
  1643. ],
  1644. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1645. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1646. "keywords": [
  1647. "annotations",
  1648. "docblock",
  1649. "lexer",
  1650. "parser",
  1651. "php"
  1652. ],
  1653. "support": {
  1654. "issues": "https://github.com/doctrine/lexer/issues",
  1655. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1656. },
  1657. "funding": [
  1658. {
  1659. "url": "https://www.doctrine-project.org/sponsorship.html",
  1660. "type": "custom"
  1661. },
  1662. {
  1663. "url": "https://www.patreon.com/phpdoctrine",
  1664. "type": "patreon"
  1665. },
  1666. {
  1667. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1668. "type": "tidelift"
  1669. }
  1670. ],
  1671. "time": "2022-02-28T11:07:21+00:00"
  1672. },
  1673. {
  1674. "name": "dragonmantank/cron-expression",
  1675. "version": "v3.3.1",
  1676. "source": {
  1677. "type": "git",
  1678. "url": "https://github.com/dragonmantank/cron-expression.git",
  1679. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  1680. },
  1681. "dist": {
  1682. "type": "zip",
  1683. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1684. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1685. "shasum": "",
  1686. "mirrors": [
  1687. {
  1688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1689. "preferred": true
  1690. }
  1691. ]
  1692. },
  1693. "require": {
  1694. "php": "^7.2|^8.0",
  1695. "webmozart/assert": "^1.0"
  1696. },
  1697. "replace": {
  1698. "mtdowling/cron-expression": "^1.0"
  1699. },
  1700. "require-dev": {
  1701. "phpstan/extension-installer": "^1.0",
  1702. "phpstan/phpstan": "^1.0",
  1703. "phpstan/phpstan-webmozart-assert": "^1.0",
  1704. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1705. },
  1706. "type": "library",
  1707. "autoload": {
  1708. "psr-4": {
  1709. "Cron\\": "src/Cron/"
  1710. }
  1711. },
  1712. "notification-url": "https://packagist.org/downloads/",
  1713. "license": [
  1714. "MIT"
  1715. ],
  1716. "authors": [
  1717. {
  1718. "name": "Chris Tankersley",
  1719. "email": "chris@ctankersley.com",
  1720. "homepage": "https://github.com/dragonmantank"
  1721. }
  1722. ],
  1723. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1724. "keywords": [
  1725. "cron",
  1726. "schedule"
  1727. ],
  1728. "support": {
  1729. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1730. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  1731. },
  1732. "funding": [
  1733. {
  1734. "url": "https://github.com/dragonmantank",
  1735. "type": "github"
  1736. }
  1737. ],
  1738. "time": "2022-01-18T15:43:28+00:00"
  1739. },
  1740. {
  1741. "name": "easywechat-composer/easywechat-composer",
  1742. "version": "1.4.1",
  1743. "source": {
  1744. "type": "git",
  1745. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1746. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1747. },
  1748. "dist": {
  1749. "type": "zip",
  1750. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1751. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1752. "shasum": "",
  1753. "mirrors": [
  1754. {
  1755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1756. "preferred": true
  1757. }
  1758. ]
  1759. },
  1760. "require": {
  1761. "composer-plugin-api": "^1.0 || ^2.0",
  1762. "php": ">=7.0"
  1763. },
  1764. "require-dev": {
  1765. "composer/composer": "^1.0 || ^2.0",
  1766. "phpunit/phpunit": "^6.5 || ^7.0"
  1767. },
  1768. "type": "composer-plugin",
  1769. "extra": {
  1770. "class": "EasyWeChatComposer\\Plugin"
  1771. },
  1772. "autoload": {
  1773. "psr-4": {
  1774. "EasyWeChatComposer\\": "src/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "张铭阳",
  1784. "email": "mingyoungcheung@gmail.com"
  1785. }
  1786. ],
  1787. "description": "The composer plugin for EasyWeChat",
  1788. "support": {
  1789. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1790. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1791. },
  1792. "time": "2021-07-05T04:03:22+00:00"
  1793. },
  1794. {
  1795. "name": "egulias/email-validator",
  1796. "version": "2.1.25",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://github.com/egulias/EmailValidator.git",
  1800. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1805. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1806. "shasum": "",
  1807. "mirrors": [
  1808. {
  1809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1810. "preferred": true
  1811. }
  1812. ]
  1813. },
  1814. "require": {
  1815. "doctrine/lexer": "^1.0.1",
  1816. "php": ">=5.5",
  1817. "symfony/polyfill-intl-idn": "^1.10"
  1818. },
  1819. "require-dev": {
  1820. "dominicsayers/isemail": "^3.0.7",
  1821. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1822. "satooshi/php-coveralls": "^1.0.1"
  1823. },
  1824. "suggest": {
  1825. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1826. },
  1827. "type": "library",
  1828. "extra": {
  1829. "branch-alias": {
  1830. "dev-master": "2.1.x-dev"
  1831. }
  1832. },
  1833. "autoload": {
  1834. "psr-4": {
  1835. "Egulias\\EmailValidator\\": "src"
  1836. }
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "Eduardo Gulias Davis"
  1845. }
  1846. ],
  1847. "description": "A library for validating emails against several RFCs",
  1848. "homepage": "https://github.com/egulias/EmailValidator",
  1849. "keywords": [
  1850. "email",
  1851. "emailvalidation",
  1852. "emailvalidator",
  1853. "validation",
  1854. "validator"
  1855. ],
  1856. "support": {
  1857. "issues": "https://github.com/egulias/EmailValidator/issues",
  1858. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1859. },
  1860. "funding": [
  1861. {
  1862. "url": "https://github.com/egulias",
  1863. "type": "github"
  1864. }
  1865. ],
  1866. "time": "2020-12-29T14:50:06+00:00"
  1867. },
  1868. {
  1869. "name": "fruitcake/laravel-cors",
  1870. "version": "v2.2.0",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://github.com/fruitcake/laravel-cors.git",
  1874. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1879. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1880. "shasum": "",
  1881. "mirrors": [
  1882. {
  1883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1884. "preferred": true
  1885. }
  1886. ]
  1887. },
  1888. "require": {
  1889. "asm89/stack-cors": "^2.0.1",
  1890. "illuminate/contracts": "^6|^7|^8|^9",
  1891. "illuminate/support": "^6|^7|^8|^9",
  1892. "php": ">=7.2"
  1893. },
  1894. "require-dev": {
  1895. "laravel/framework": "^6|^7.24|^8",
  1896. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1897. "phpunit/phpunit": "^6|^7|^8|^9",
  1898. "squizlabs/php_codesniffer": "^3.5"
  1899. },
  1900. "type": "library",
  1901. "extra": {
  1902. "branch-alias": {
  1903. "dev-master": "2.1-dev"
  1904. },
  1905. "laravel": {
  1906. "providers": [
  1907. "Fruitcake\\Cors\\CorsServiceProvider"
  1908. ]
  1909. }
  1910. },
  1911. "autoload": {
  1912. "psr-4": {
  1913. "Fruitcake\\Cors\\": "src/"
  1914. }
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Fruitcake",
  1923. "homepage": "https://fruitcake.nl"
  1924. },
  1925. {
  1926. "name": "Barry vd. Heuvel",
  1927. "email": "barryvdh@gmail.com"
  1928. }
  1929. ],
  1930. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1931. "keywords": [
  1932. "api",
  1933. "cors",
  1934. "crossdomain",
  1935. "laravel"
  1936. ],
  1937. "support": {
  1938. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1939. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1940. },
  1941. "funding": [
  1942. {
  1943. "url": "https://fruitcake.nl",
  1944. "type": "custom"
  1945. },
  1946. {
  1947. "url": "https://github.com/barryvdh",
  1948. "type": "github"
  1949. }
  1950. ],
  1951. "time": "2022-02-23T14:25:13+00:00"
  1952. },
  1953. {
  1954. "name": "giggsey/libphonenumber-for-php",
  1955. "version": "8.12.50",
  1956. "source": {
  1957. "type": "git",
  1958. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1959. "reference": "526c4b7f6d5e173770d8645e76340d7eb25dc348"
  1960. },
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/526c4b7f6d5e173770d8645e76340d7eb25dc348",
  1964. "reference": "526c4b7f6d5e173770d8645e76340d7eb25dc348",
  1965. "shasum": "",
  1966. "mirrors": [
  1967. {
  1968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1969. "preferred": true
  1970. }
  1971. ]
  1972. },
  1973. "require": {
  1974. "giggsey/locale": "^1.7|^2.0",
  1975. "php": ">=5.3.2",
  1976. "symfony/polyfill-mbstring": "^1.17"
  1977. },
  1978. "require-dev": {
  1979. "pear/pear-core-minimal": "^1.9",
  1980. "pear/pear_exception": "^1.0",
  1981. "pear/versioncontrol_git": "^0.5",
  1982. "phing/phing": "^2.7",
  1983. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1984. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  1985. "symfony/phpunit-bridge": "^4.2 || ^5"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-master": "8.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "libphonenumber\\": "src/"
  1996. },
  1997. "exclude-from-classmap": [
  1998. "/src/data/",
  1999. "/src/carrier/data/",
  2000. "/src/geocoding/data/",
  2001. "/src/timezone/data/"
  2002. ]
  2003. },
  2004. "notification-url": "https://packagist.org/downloads/",
  2005. "license": [
  2006. "Apache-2.0"
  2007. ],
  2008. "authors": [
  2009. {
  2010. "name": "Joshua Gigg",
  2011. "email": "giggsey@gmail.com",
  2012. "homepage": "https://giggsey.com/"
  2013. }
  2014. ],
  2015. "description": "PHP Port of Google's libphonenumber",
  2016. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  2017. "keywords": [
  2018. "geocoding",
  2019. "geolocation",
  2020. "libphonenumber",
  2021. "mobile",
  2022. "phonenumber",
  2023. "validation"
  2024. ],
  2025. "support": {
  2026. "irc": "irc://irc.appliedirc.com/lobby",
  2027. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  2028. "source": "https://github.com/giggsey/libphonenumber-for-php"
  2029. },
  2030. "time": "2022-06-09T14:55:00+00:00"
  2031. },
  2032. {
  2033. "name": "giggsey/locale",
  2034. "version": "2.2",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/giggsey/Locale.git",
  2038. "reference": "9c1dca769253f6a3e81f9a5c167f53b6a54ab635"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/giggsey/Locale/zipball/9c1dca769253f6a3e81f9a5c167f53b6a54ab635",
  2043. "reference": "9c1dca769253f6a3e81f9a5c167f53b6a54ab635",
  2044. "shasum": "",
  2045. "mirrors": [
  2046. {
  2047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2048. "preferred": true
  2049. }
  2050. ]
  2051. },
  2052. "require": {
  2053. "php": ">=7.2"
  2054. },
  2055. "require-dev": {
  2056. "ext-json": "*",
  2057. "pear/pear-core-minimal": "^1.9",
  2058. "pear/pear_exception": "^1.0",
  2059. "pear/versioncontrol_git": "^0.5",
  2060. "phing/phing": "^2.7",
  2061. "php-coveralls/php-coveralls": "^2.0",
  2062. "phpunit/phpunit": "^8.5|^9.5",
  2063. "symfony/console": "^5.0",
  2064. "symfony/filesystem": "^5.0",
  2065. "symfony/finder": "^5.0",
  2066. "symfony/process": "^5.0"
  2067. },
  2068. "type": "library",
  2069. "autoload": {
  2070. "psr-4": {
  2071. "Giggsey\\Locale\\": "src/"
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "MIT"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "Joshua Gigg",
  2081. "email": "giggsey@gmail.com",
  2082. "homepage": "https://giggsey.com/"
  2083. }
  2084. ],
  2085. "description": "Locale functions required by libphonenumber-for-php",
  2086. "support": {
  2087. "issues": "https://github.com/giggsey/Locale/issues",
  2088. "source": "https://github.com/giggsey/Locale/tree/2.2"
  2089. },
  2090. "time": "2022-04-06T07:33:59+00:00"
  2091. },
  2092. {
  2093. "name": "graham-campbell/result-type",
  2094. "version": "v1.0.4",
  2095. "source": {
  2096. "type": "git",
  2097. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2098. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  2099. },
  2100. "dist": {
  2101. "type": "zip",
  2102. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  2103. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  2104. "shasum": "",
  2105. "mirrors": [
  2106. {
  2107. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2108. "preferred": true
  2109. }
  2110. ]
  2111. },
  2112. "require": {
  2113. "php": "^7.0 || ^8.0",
  2114. "phpoption/phpoption": "^1.8"
  2115. },
  2116. "require-dev": {
  2117. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2118. },
  2119. "type": "library",
  2120. "autoload": {
  2121. "psr-4": {
  2122. "GrahamCampbell\\ResultType\\": "src/"
  2123. }
  2124. },
  2125. "notification-url": "https://packagist.org/downloads/",
  2126. "license": [
  2127. "MIT"
  2128. ],
  2129. "authors": [
  2130. {
  2131. "name": "Graham Campbell",
  2132. "email": "hello@gjcampbell.co.uk",
  2133. "homepage": "https://github.com/GrahamCampbell"
  2134. }
  2135. ],
  2136. "description": "An Implementation Of The Result Type",
  2137. "keywords": [
  2138. "Graham Campbell",
  2139. "GrahamCampbell",
  2140. "Result Type",
  2141. "Result-Type",
  2142. "result"
  2143. ],
  2144. "support": {
  2145. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2146. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  2147. },
  2148. "funding": [
  2149. {
  2150. "url": "https://github.com/GrahamCampbell",
  2151. "type": "github"
  2152. },
  2153. {
  2154. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2155. "type": "tidelift"
  2156. }
  2157. ],
  2158. "time": "2021-11-21T21:41:47+00:00"
  2159. },
  2160. {
  2161. "name": "guzzlehttp/guzzle",
  2162. "version": "7.4.5",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/guzzle/guzzle.git",
  2166. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  2171. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  2172. "shasum": "",
  2173. "mirrors": [
  2174. {
  2175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2176. "preferred": true
  2177. }
  2178. ]
  2179. },
  2180. "require": {
  2181. "ext-json": "*",
  2182. "guzzlehttp/promises": "^1.5",
  2183. "guzzlehttp/psr7": "^1.9 || ^2.4",
  2184. "php": "^7.2.5 || ^8.0",
  2185. "psr/http-client": "^1.0",
  2186. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2187. },
  2188. "provide": {
  2189. "psr/http-client-implementation": "1.0"
  2190. },
  2191. "require-dev": {
  2192. "bamarni/composer-bin-plugin": "^1.4.1",
  2193. "ext-curl": "*",
  2194. "php-http/client-integration-tests": "^3.0",
  2195. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  2196. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2197. },
  2198. "suggest": {
  2199. "ext-curl": "Required for CURL handler support",
  2200. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2201. "psr/log": "Required for using the Log middleware"
  2202. },
  2203. "type": "library",
  2204. "extra": {
  2205. "branch-alias": {
  2206. "dev-master": "7.4-dev"
  2207. }
  2208. },
  2209. "autoload": {
  2210. "files": [
  2211. "src/functions_include.php"
  2212. ],
  2213. "psr-4": {
  2214. "GuzzleHttp\\": "src/"
  2215. }
  2216. },
  2217. "notification-url": "https://packagist.org/downloads/",
  2218. "license": [
  2219. "MIT"
  2220. ],
  2221. "authors": [
  2222. {
  2223. "name": "Graham Campbell",
  2224. "email": "hello@gjcampbell.co.uk",
  2225. "homepage": "https://github.com/GrahamCampbell"
  2226. },
  2227. {
  2228. "name": "Michael Dowling",
  2229. "email": "mtdowling@gmail.com",
  2230. "homepage": "https://github.com/mtdowling"
  2231. },
  2232. {
  2233. "name": "Jeremy Lindblom",
  2234. "email": "jeremeamia@gmail.com",
  2235. "homepage": "https://github.com/jeremeamia"
  2236. },
  2237. {
  2238. "name": "George Mponos",
  2239. "email": "gmponos@gmail.com",
  2240. "homepage": "https://github.com/gmponos"
  2241. },
  2242. {
  2243. "name": "Tobias Nyholm",
  2244. "email": "tobias.nyholm@gmail.com",
  2245. "homepage": "https://github.com/Nyholm"
  2246. },
  2247. {
  2248. "name": "Márk Sági-Kazár",
  2249. "email": "mark.sagikazar@gmail.com",
  2250. "homepage": "https://github.com/sagikazarmark"
  2251. },
  2252. {
  2253. "name": "Tobias Schultze",
  2254. "email": "webmaster@tubo-world.de",
  2255. "homepage": "https://github.com/Tobion"
  2256. }
  2257. ],
  2258. "description": "Guzzle is a PHP HTTP client library",
  2259. "keywords": [
  2260. "client",
  2261. "curl",
  2262. "framework",
  2263. "http",
  2264. "http client",
  2265. "psr-18",
  2266. "psr-7",
  2267. "rest",
  2268. "web service"
  2269. ],
  2270. "support": {
  2271. "issues": "https://github.com/guzzle/guzzle/issues",
  2272. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  2273. },
  2274. "funding": [
  2275. {
  2276. "url": "https://github.com/GrahamCampbell",
  2277. "type": "github"
  2278. },
  2279. {
  2280. "url": "https://github.com/Nyholm",
  2281. "type": "github"
  2282. },
  2283. {
  2284. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2285. "type": "tidelift"
  2286. }
  2287. ],
  2288. "time": "2022-06-20T22:16:13+00:00"
  2289. },
  2290. {
  2291. "name": "guzzlehttp/promises",
  2292. "version": "1.5.1",
  2293. "source": {
  2294. "type": "git",
  2295. "url": "https://github.com/guzzle/promises.git",
  2296. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  2297. },
  2298. "dist": {
  2299. "type": "zip",
  2300. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2301. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2302. "shasum": "",
  2303. "mirrors": [
  2304. {
  2305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2306. "preferred": true
  2307. }
  2308. ]
  2309. },
  2310. "require": {
  2311. "php": ">=5.5"
  2312. },
  2313. "require-dev": {
  2314. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2315. },
  2316. "type": "library",
  2317. "extra": {
  2318. "branch-alias": {
  2319. "dev-master": "1.5-dev"
  2320. }
  2321. },
  2322. "autoload": {
  2323. "files": [
  2324. "src/functions_include.php"
  2325. ],
  2326. "psr-4": {
  2327. "GuzzleHttp\\Promise\\": "src/"
  2328. }
  2329. },
  2330. "notification-url": "https://packagist.org/downloads/",
  2331. "license": [
  2332. "MIT"
  2333. ],
  2334. "authors": [
  2335. {
  2336. "name": "Graham Campbell",
  2337. "email": "hello@gjcampbell.co.uk",
  2338. "homepage": "https://github.com/GrahamCampbell"
  2339. },
  2340. {
  2341. "name": "Michael Dowling",
  2342. "email": "mtdowling@gmail.com",
  2343. "homepage": "https://github.com/mtdowling"
  2344. },
  2345. {
  2346. "name": "Tobias Nyholm",
  2347. "email": "tobias.nyholm@gmail.com",
  2348. "homepage": "https://github.com/Nyholm"
  2349. },
  2350. {
  2351. "name": "Tobias Schultze",
  2352. "email": "webmaster@tubo-world.de",
  2353. "homepage": "https://github.com/Tobion"
  2354. }
  2355. ],
  2356. "description": "Guzzle promises library",
  2357. "keywords": [
  2358. "promise"
  2359. ],
  2360. "support": {
  2361. "issues": "https://github.com/guzzle/promises/issues",
  2362. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  2363. },
  2364. "funding": [
  2365. {
  2366. "url": "https://github.com/GrahamCampbell",
  2367. "type": "github"
  2368. },
  2369. {
  2370. "url": "https://github.com/Nyholm",
  2371. "type": "github"
  2372. },
  2373. {
  2374. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2375. "type": "tidelift"
  2376. }
  2377. ],
  2378. "time": "2021-10-22T20:56:57+00:00"
  2379. },
  2380. {
  2381. "name": "guzzlehttp/psr7",
  2382. "version": "2.4.0",
  2383. "source": {
  2384. "type": "git",
  2385. "url": "https://github.com/guzzle/psr7.git",
  2386. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  2387. },
  2388. "dist": {
  2389. "type": "zip",
  2390. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  2391. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  2392. "shasum": "",
  2393. "mirrors": [
  2394. {
  2395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2396. "preferred": true
  2397. }
  2398. ]
  2399. },
  2400. "require": {
  2401. "php": "^7.2.5 || ^8.0",
  2402. "psr/http-factory": "^1.0",
  2403. "psr/http-message": "^1.0",
  2404. "ralouphie/getallheaders": "^3.0"
  2405. },
  2406. "provide": {
  2407. "psr/http-factory-implementation": "1.0",
  2408. "psr/http-message-implementation": "1.0"
  2409. },
  2410. "require-dev": {
  2411. "bamarni/composer-bin-plugin": "^1.4.1",
  2412. "http-interop/http-factory-tests": "^0.9",
  2413. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  2414. },
  2415. "suggest": {
  2416. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2417. },
  2418. "type": "library",
  2419. "extra": {
  2420. "branch-alias": {
  2421. "dev-master": "2.4-dev"
  2422. }
  2423. },
  2424. "autoload": {
  2425. "psr-4": {
  2426. "GuzzleHttp\\Psr7\\": "src/"
  2427. }
  2428. },
  2429. "notification-url": "https://packagist.org/downloads/",
  2430. "license": [
  2431. "MIT"
  2432. ],
  2433. "authors": [
  2434. {
  2435. "name": "Graham Campbell",
  2436. "email": "hello@gjcampbell.co.uk",
  2437. "homepage": "https://github.com/GrahamCampbell"
  2438. },
  2439. {
  2440. "name": "Michael Dowling",
  2441. "email": "mtdowling@gmail.com",
  2442. "homepage": "https://github.com/mtdowling"
  2443. },
  2444. {
  2445. "name": "George Mponos",
  2446. "email": "gmponos@gmail.com",
  2447. "homepage": "https://github.com/gmponos"
  2448. },
  2449. {
  2450. "name": "Tobias Nyholm",
  2451. "email": "tobias.nyholm@gmail.com",
  2452. "homepage": "https://github.com/Nyholm"
  2453. },
  2454. {
  2455. "name": "Márk Sági-Kazár",
  2456. "email": "mark.sagikazar@gmail.com",
  2457. "homepage": "https://github.com/sagikazarmark"
  2458. },
  2459. {
  2460. "name": "Tobias Schultze",
  2461. "email": "webmaster@tubo-world.de",
  2462. "homepage": "https://github.com/Tobion"
  2463. },
  2464. {
  2465. "name": "Márk Sági-Kazár",
  2466. "email": "mark.sagikazar@gmail.com",
  2467. "homepage": "https://sagikazarmark.hu"
  2468. }
  2469. ],
  2470. "description": "PSR-7 message implementation that also provides common utility methods",
  2471. "keywords": [
  2472. "http",
  2473. "message",
  2474. "psr-7",
  2475. "request",
  2476. "response",
  2477. "stream",
  2478. "uri",
  2479. "url"
  2480. ],
  2481. "support": {
  2482. "issues": "https://github.com/guzzle/psr7/issues",
  2483. "source": "https://github.com/guzzle/psr7/tree/2.4.0"
  2484. },
  2485. "funding": [
  2486. {
  2487. "url": "https://github.com/GrahamCampbell",
  2488. "type": "github"
  2489. },
  2490. {
  2491. "url": "https://github.com/Nyholm",
  2492. "type": "github"
  2493. },
  2494. {
  2495. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2496. "type": "tidelift"
  2497. }
  2498. ],
  2499. "time": "2022-06-20T21:43:11+00:00"
  2500. },
  2501. {
  2502. "name": "h4cc/wkhtmltopdf-amd64",
  2503. "version": "0.12.4",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/h4cc/wkhtmltopdf-amd64.git",
  2507. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-amd64/zipball/4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  2512. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  2513. "shasum": "",
  2514. "mirrors": [
  2515. {
  2516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2517. "preferred": true
  2518. }
  2519. ]
  2520. },
  2521. "bin": [
  2522. "bin/wkhtmltopdf-amd64"
  2523. ],
  2524. "type": "library",
  2525. "autoload": {
  2526. "psr-4": {
  2527. "h4cc\\WKHTMLToPDF\\": ""
  2528. }
  2529. },
  2530. "notification-url": "https://packagist.org/downloads/",
  2531. "license": [
  2532. "LGPL Version 3"
  2533. ],
  2534. "authors": [
  2535. {
  2536. "name": "Julius Beckmann",
  2537. "email": "github@h4cc.de"
  2538. }
  2539. ],
  2540. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for amd64 systems.",
  2541. "homepage": "http://wkhtmltopdf.org/",
  2542. "keywords": [
  2543. "binary",
  2544. "convert",
  2545. "pdf",
  2546. "snapshot",
  2547. "thumbnail",
  2548. "wkhtmltopdf"
  2549. ],
  2550. "support": {
  2551. "issues": "https://github.com/h4cc/wkhtmltopdf-amd64/issues",
  2552. "source": "https://github.com/h4cc/wkhtmltopdf-amd64/tree/master"
  2553. },
  2554. "time": "2018-01-15T06:57:33+00:00"
  2555. },
  2556. {
  2557. "name": "h4cc/wkhtmltopdf-i386",
  2558. "version": "0.12.4",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://github.com/h4cc/wkhtmltopdf-i386.git",
  2562. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-i386/zipball/da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  2567. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  2568. "shasum": "",
  2569. "mirrors": [
  2570. {
  2571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2572. "preferred": true
  2573. }
  2574. ]
  2575. },
  2576. "bin": [
  2577. "bin/wkhtmltopdf-i386"
  2578. ],
  2579. "type": "library",
  2580. "notification-url": "https://packagist.org/downloads/",
  2581. "license": [
  2582. "LGPL Version 3"
  2583. ],
  2584. "authors": [
  2585. {
  2586. "name": "Julius Beckmann",
  2587. "email": "github@h4cc.de"
  2588. }
  2589. ],
  2590. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for i386 systems.",
  2591. "homepage": "http://wkhtmltopdf.org/",
  2592. "keywords": [
  2593. "binary",
  2594. "convert",
  2595. "pdf",
  2596. "snapshot",
  2597. "thumbnail",
  2598. "wkhtmltopdf"
  2599. ],
  2600. "support": {
  2601. "issues": "https://github.com/h4cc/wkhtmltopdf-i386/issues",
  2602. "source": "https://github.com/h4cc/wkhtmltopdf-i386/tree/master"
  2603. },
  2604. "time": "2018-01-15T07:18:15+00:00"
  2605. },
  2606. {
  2607. "name": "iidestiny/flysystem-oss",
  2608. "version": "2.7",
  2609. "source": {
  2610. "type": "git",
  2611. "url": "https://github.com/iiDestiny/flysystem-oss.git",
  2612. "reference": "c943ce550e973129955275bb17e8182fe8a74020"
  2613. },
  2614. "dist": {
  2615. "type": "zip",
  2616. "url": "https://api.github.com/repos/iiDestiny/flysystem-oss/zipball/c943ce550e973129955275bb17e8182fe8a74020",
  2617. "reference": "c943ce550e973129955275bb17e8182fe8a74020",
  2618. "shasum": "",
  2619. "mirrors": [
  2620. {
  2621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2622. "preferred": true
  2623. }
  2624. ]
  2625. },
  2626. "require": {
  2627. "aliyuncs/oss-sdk-php": "^2.4",
  2628. "ext-curl": "*",
  2629. "ext-json": "*",
  2630. "ext-openssl": "*",
  2631. "league/flysystem": "^1.0",
  2632. "nesbot/carbon": "^1.24.1 || ^2.0",
  2633. "php": "^7.0 || ^8.0"
  2634. },
  2635. "require-dev": {
  2636. "mockery/mockery": "^1.2",
  2637. "phpunit/phpunit": "^6.5",
  2638. "symfony/var-dumper": "^3.4"
  2639. },
  2640. "type": "library",
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Iidestiny\\Flysystem\\Oss\\": "src"
  2644. }
  2645. },
  2646. "notification-url": "https://packagist.org/downloads/",
  2647. "license": [
  2648. "MIT"
  2649. ],
  2650. "authors": [
  2651. {
  2652. "name": "iidestiny",
  2653. "email": "iidestiny@vip.qq.com"
  2654. }
  2655. ],
  2656. "description": "Flysystem adapter for the Oss storage.",
  2657. "keywords": [
  2658. "alioss",
  2659. "laravel",
  2660. "oss",
  2661. "阿里oss"
  2662. ],
  2663. "support": {
  2664. "issues": "https://github.com/iiDestiny/flysystem-oss/issues",
  2665. "source": "https://github.com/iiDestiny/flysystem-oss/tree/2.7"
  2666. },
  2667. "time": "2021-06-14T10:18:58+00:00"
  2668. },
  2669. {
  2670. "name": "iidestiny/laravel-filesystem-oss",
  2671. "version": "2.1",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/iiDestiny/laravel-filesystem-oss.git",
  2675. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/iiDestiny/laravel-filesystem-oss/zipball/ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2680. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2681. "shasum": "",
  2682. "mirrors": [
  2683. {
  2684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2685. "preferred": true
  2686. }
  2687. ]
  2688. },
  2689. "require": {
  2690. "iidestiny/flysystem-oss": "~2.0",
  2691. "php": "^7.0|^8.0"
  2692. },
  2693. "type": "library",
  2694. "extra": {
  2695. "laravel": {
  2696. "providers": [
  2697. "Iidestiny\\LaravelFilesystemOss\\OssStorageServiceProvider"
  2698. ]
  2699. }
  2700. },
  2701. "autoload": {
  2702. "psr-4": {
  2703. "Iidestiny\\LaravelFilesystemOss\\": "src"
  2704. }
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "iidestiny",
  2713. "email": "iidestiny@vip.qq.com"
  2714. }
  2715. ],
  2716. "description": "Oss storage filesystem for Laravel.",
  2717. "support": {
  2718. "issues": "https://github.com/iiDestiny/laravel-filesystem-oss/issues",
  2719. "source": "https://github.com/iiDestiny/laravel-filesystem-oss/tree/2.1"
  2720. },
  2721. "time": "2020-11-30T06:17:22+00:00"
  2722. },
  2723. {
  2724. "name": "jormin/laravel-ddoc",
  2725. "version": "v1.1.5",
  2726. "source": {
  2727. "type": "git",
  2728. "url": "https://github.com/jormin/laravel-ddoc.git",
  2729. "reference": "d7608d3395f7fd1085a3ce7b82441d2360769c77"
  2730. },
  2731. "dist": {
  2732. "type": "zip",
  2733. "url": "https://api.github.com/repos/jormin/laravel-ddoc/zipball/d7608d3395f7fd1085a3ce7b82441d2360769c77",
  2734. "reference": "d7608d3395f7fd1085a3ce7b82441d2360769c77",
  2735. "shasum": "",
  2736. "mirrors": [
  2737. {
  2738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2739. "preferred": true
  2740. }
  2741. ]
  2742. },
  2743. "require": {
  2744. "barryvdh/laravel-snappy": "^0.4.0",
  2745. "h4cc/wkhtmltopdf-amd64": "0.12.x",
  2746. "h4cc/wkhtmltopdf-i386": "0.12.x",
  2747. "php": ">=5.6",
  2748. "wemersonjanuario/wkhtmltopdf-windows": "0.12.x"
  2749. },
  2750. "require-dev": {
  2751. "phpunit/phpunit": "~4.0||~5.0",
  2752. "squizlabs/php_codesniffer": "^2.3"
  2753. },
  2754. "type": "library",
  2755. "extra": {
  2756. "branch-alias": {
  2757. "dev-master": "1.1.x-dev"
  2758. },
  2759. "laravel": {
  2760. "providers": [
  2761. "Jormin\\DDoc\\DDocServiceProvider"
  2762. ]
  2763. }
  2764. },
  2765. "autoload": {
  2766. "psr-4": {
  2767. "Jormin\\DDoc\\": "src"
  2768. }
  2769. },
  2770. "notification-url": "https://packagist.org/downloads/",
  2771. "license": [
  2772. "MIT"
  2773. ],
  2774. "authors": [
  2775. {
  2776. "name": "Jormin",
  2777. "email": "jorminxee@gmail.com",
  2778. "homepage": "https://blog.lerzen.com",
  2779. "role": "Developer"
  2780. }
  2781. ],
  2782. "description": "每次开发项目时,总是会被要求提供数据字典,每次手动写文档太累了,所以写了这个扩展,自动读取数据库信息并显示在网页上,支持导出Html和PDF文件。",
  2783. "homepage": "https://github.com/jormin/laravel-ddoc",
  2784. "keywords": [
  2785. "DDoc",
  2786. "Jormin",
  2787. "laravel"
  2788. ],
  2789. "support": {
  2790. "issues": "https://github.com/jormin/laravel-ddoc/issues",
  2791. "source": "https://github.com/jormin/laravel-ddoc/tree/v1.1.5"
  2792. },
  2793. "time": "2021-09-07T04:26:43+00:00"
  2794. },
  2795. {
  2796. "name": "jpush/jpush",
  2797. "version": "v3.6.8",
  2798. "source": {
  2799. "type": "git",
  2800. "url": "https://github.com/jpush/jpush-api-php-client.git",
  2801. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c"
  2802. },
  2803. "dist": {
  2804. "type": "zip",
  2805. "url": "https://api.github.com/repos/jpush/jpush-api-php-client/zipball/ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  2806. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  2807. "shasum": "",
  2808. "mirrors": [
  2809. {
  2810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2811. "preferred": true
  2812. }
  2813. ]
  2814. },
  2815. "require": {
  2816. "ext-curl": "*",
  2817. "php": ">=5.3.3"
  2818. },
  2819. "require-dev": {
  2820. "phpunit/phpunit": "*"
  2821. },
  2822. "type": "library",
  2823. "autoload": {
  2824. "psr-4": {
  2825. "JPush\\": "src/JPush/"
  2826. }
  2827. },
  2828. "notification-url": "https://packagist.org/downloads/",
  2829. "license": [
  2830. "MIT"
  2831. ],
  2832. "authors": [
  2833. {
  2834. "name": "JPush",
  2835. "email": "support@jpush.cn",
  2836. "homepage": "https://www.jpush.cn/",
  2837. "role": "Developer"
  2838. }
  2839. ],
  2840. "description": "JPush API PHP Client",
  2841. "homepage": "https://github.com/jpush/jpush-api-php-client",
  2842. "support": {
  2843. "issues": "https://github.com/jpush/jpush-api-php-client/issues",
  2844. "source": "https://github.com/jpush/jpush-api-php-client/tree/v3.6.8"
  2845. },
  2846. "time": "2021-08-12T07:43:39+00:00"
  2847. },
  2848. {
  2849. "name": "knplabs/knp-snappy",
  2850. "version": "v1.4.1",
  2851. "source": {
  2852. "type": "git",
  2853. "url": "https://github.com/KnpLabs/snappy.git",
  2854. "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67"
  2855. },
  2856. "dist": {
  2857. "type": "zip",
  2858. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/5126fb5b335ec929a226314d40cd8dad497c3d67",
  2859. "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67",
  2860. "shasum": "",
  2861. "mirrors": [
  2862. {
  2863. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2864. "preferred": true
  2865. }
  2866. ]
  2867. },
  2868. "require": {
  2869. "php": ">=7.1",
  2870. "psr/log": "^1.0||^2.0||^3.0",
  2871. "symfony/process": "~3.4||~4.3||~5.0||~6.0"
  2872. },
  2873. "require-dev": {
  2874. "friendsofphp/php-cs-fixer": "^2.16||^3.0",
  2875. "pedrotroller/php-cs-custom-fixer": "^2.19",
  2876. "phpstan/phpstan": "^0.12.7",
  2877. "phpstan/phpstan-phpunit": "^0.12.6",
  2878. "phpunit/phpunit": "~7.4||~8.5"
  2879. },
  2880. "suggest": {
  2881. "h4cc/wkhtmltoimage-amd64": "Provides wkhtmltoimage-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2882. "h4cc/wkhtmltoimage-i386": "Provides wkhtmltoimage-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2883. "h4cc/wkhtmltopdf-amd64": "Provides wkhtmltopdf-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2884. "h4cc/wkhtmltopdf-i386": "Provides wkhtmltopdf-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2885. "wemersonjanuario/wkhtmltopdf-windows": "Provides wkhtmltopdf executable for Windows, use version `~0.12` as dependency"
  2886. },
  2887. "type": "library",
  2888. "extra": {
  2889. "branch-alias": {
  2890. "dev-master": "1.x-dev"
  2891. }
  2892. },
  2893. "autoload": {
  2894. "psr-4": {
  2895. "Knp\\Snappy\\": "src/Knp/Snappy"
  2896. }
  2897. },
  2898. "notification-url": "https://packagist.org/downloads/",
  2899. "license": [
  2900. "MIT"
  2901. ],
  2902. "authors": [
  2903. {
  2904. "name": "KNP Labs Team",
  2905. "homepage": "http://knplabs.com"
  2906. },
  2907. {
  2908. "name": "Symfony Community",
  2909. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  2910. }
  2911. ],
  2912. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  2913. "homepage": "http://github.com/KnpLabs/snappy",
  2914. "keywords": [
  2915. "knp",
  2916. "knplabs",
  2917. "pdf",
  2918. "snapshot",
  2919. "thumbnail",
  2920. "wkhtmltopdf"
  2921. ],
  2922. "support": {
  2923. "issues": "https://github.com/KnpLabs/snappy/issues",
  2924. "source": "https://github.com/KnpLabs/snappy/tree/v1.4.1"
  2925. },
  2926. "time": "2022-01-07T13:03:38+00:00"
  2927. },
  2928. {
  2929. "name": "laravel-lang/lang",
  2930. "version": "3.0.62",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/Laravel-Lang/lang.git",
  2934. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  2939. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  2940. "shasum": "",
  2941. "mirrors": [
  2942. {
  2943. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2944. "preferred": true
  2945. }
  2946. ]
  2947. },
  2948. "require-dev": {
  2949. "friendsofphp/php-cs-fixer": "^2.10"
  2950. },
  2951. "suggest": {
  2952. "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project",
  2953. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  2954. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  2955. "overtrue/laravel-lang": "Command to add languages in your project"
  2956. },
  2957. "type": "library",
  2958. "notification-url": "https://packagist.org/downloads/",
  2959. "license": [
  2960. "MIT"
  2961. ],
  2962. "authors": [
  2963. {
  2964. "name": "caouecs",
  2965. "email": "caouecs@caouecs.net"
  2966. }
  2967. ],
  2968. "description": "Languages for Laravel",
  2969. "keywords": [
  2970. "lang",
  2971. "languages",
  2972. "laravel",
  2973. "lpm"
  2974. ],
  2975. "support": {
  2976. "issues": "https://github.com/Laravel-Lang/lang/issues",
  2977. "source": "https://github.com/Laravel-Lang/lang/tree/3.0.62"
  2978. },
  2979. "time": "2019-03-17T10:36:46+00:00"
  2980. },
  2981. {
  2982. "name": "laravel/framework",
  2983. "version": "v8.83.19",
  2984. "source": {
  2985. "type": "git",
  2986. "url": "https://github.com/laravel/framework.git",
  2987. "reference": "4264f2ee12330bdb1be050998f58ba7271236395"
  2988. },
  2989. "dist": {
  2990. "type": "zip",
  2991. "url": "https://api.github.com/repos/laravel/framework/zipball/4264f2ee12330bdb1be050998f58ba7271236395",
  2992. "reference": "4264f2ee12330bdb1be050998f58ba7271236395",
  2993. "shasum": "",
  2994. "mirrors": [
  2995. {
  2996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2997. "preferred": true
  2998. }
  2999. ]
  3000. },
  3001. "require": {
  3002. "doctrine/inflector": "^1.4|^2.0",
  3003. "dragonmantank/cron-expression": "^3.0.2",
  3004. "egulias/email-validator": "^2.1.10",
  3005. "ext-json": "*",
  3006. "ext-mbstring": "*",
  3007. "ext-openssl": "*",
  3008. "laravel/serializable-closure": "^1.0",
  3009. "league/commonmark": "^1.3|^2.0.2",
  3010. "league/flysystem": "^1.1",
  3011. "monolog/monolog": "^2.0",
  3012. "nesbot/carbon": "^2.53.1",
  3013. "opis/closure": "^3.6",
  3014. "php": "^7.3|^8.0",
  3015. "psr/container": "^1.0",
  3016. "psr/log": "^1.0|^2.0",
  3017. "psr/simple-cache": "^1.0",
  3018. "ramsey/uuid": "^4.2.2",
  3019. "swiftmailer/swiftmailer": "^6.3",
  3020. "symfony/console": "^5.4",
  3021. "symfony/error-handler": "^5.4",
  3022. "symfony/finder": "^5.4",
  3023. "symfony/http-foundation": "^5.4",
  3024. "symfony/http-kernel": "^5.4",
  3025. "symfony/mime": "^5.4",
  3026. "symfony/process": "^5.4",
  3027. "symfony/routing": "^5.4",
  3028. "symfony/var-dumper": "^5.4",
  3029. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  3030. "vlucas/phpdotenv": "^5.4.1",
  3031. "voku/portable-ascii": "^1.6.1"
  3032. },
  3033. "conflict": {
  3034. "tightenco/collect": "<5.5.33"
  3035. },
  3036. "provide": {
  3037. "psr/container-implementation": "1.0",
  3038. "psr/simple-cache-implementation": "1.0"
  3039. },
  3040. "replace": {
  3041. "illuminate/auth": "self.version",
  3042. "illuminate/broadcasting": "self.version",
  3043. "illuminate/bus": "self.version",
  3044. "illuminate/cache": "self.version",
  3045. "illuminate/collections": "self.version",
  3046. "illuminate/config": "self.version",
  3047. "illuminate/console": "self.version",
  3048. "illuminate/container": "self.version",
  3049. "illuminate/contracts": "self.version",
  3050. "illuminate/cookie": "self.version",
  3051. "illuminate/database": "self.version",
  3052. "illuminate/encryption": "self.version",
  3053. "illuminate/events": "self.version",
  3054. "illuminate/filesystem": "self.version",
  3055. "illuminate/hashing": "self.version",
  3056. "illuminate/http": "self.version",
  3057. "illuminate/log": "self.version",
  3058. "illuminate/macroable": "self.version",
  3059. "illuminate/mail": "self.version",
  3060. "illuminate/notifications": "self.version",
  3061. "illuminate/pagination": "self.version",
  3062. "illuminate/pipeline": "self.version",
  3063. "illuminate/queue": "self.version",
  3064. "illuminate/redis": "self.version",
  3065. "illuminate/routing": "self.version",
  3066. "illuminate/session": "self.version",
  3067. "illuminate/support": "self.version",
  3068. "illuminate/testing": "self.version",
  3069. "illuminate/translation": "self.version",
  3070. "illuminate/validation": "self.version",
  3071. "illuminate/view": "self.version"
  3072. },
  3073. "require-dev": {
  3074. "aws/aws-sdk-php": "^3.198.1",
  3075. "doctrine/dbal": "^2.13.3|^3.1.4",
  3076. "filp/whoops": "^2.14.3",
  3077. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3078. "league/flysystem-cached-adapter": "^1.0",
  3079. "mockery/mockery": "^1.4.4",
  3080. "orchestra/testbench-core": "^6.27",
  3081. "pda/pheanstalk": "^4.0",
  3082. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3083. "predis/predis": "^1.1.9",
  3084. "symfony/cache": "^5.4"
  3085. },
  3086. "suggest": {
  3087. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3088. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3089. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3090. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3091. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3092. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3093. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3094. "ext-memcached": "Required to use the memcache cache driver.",
  3095. "ext-pcntl": "Required to use all features of the queue worker.",
  3096. "ext-posix": "Required to use all features of the queue worker.",
  3097. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3098. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3099. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3100. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3101. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3102. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3103. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3104. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3105. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3106. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3107. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3108. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3109. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3110. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3111. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3112. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3113. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3114. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3115. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3116. },
  3117. "type": "library",
  3118. "extra": {
  3119. "branch-alias": {
  3120. "dev-master": "8.x-dev"
  3121. }
  3122. },
  3123. "autoload": {
  3124. "files": [
  3125. "src/Illuminate/Collections/helpers.php",
  3126. "src/Illuminate/Events/functions.php",
  3127. "src/Illuminate/Foundation/helpers.php",
  3128. "src/Illuminate/Support/helpers.php"
  3129. ],
  3130. "psr-4": {
  3131. "Illuminate\\": "src/Illuminate/",
  3132. "Illuminate\\Support\\": [
  3133. "src/Illuminate/Macroable/",
  3134. "src/Illuminate/Collections/"
  3135. ]
  3136. }
  3137. },
  3138. "notification-url": "https://packagist.org/downloads/",
  3139. "license": [
  3140. "MIT"
  3141. ],
  3142. "authors": [
  3143. {
  3144. "name": "Taylor Otwell",
  3145. "email": "taylor@laravel.com"
  3146. }
  3147. ],
  3148. "description": "The Laravel Framework.",
  3149. "homepage": "https://laravel.com",
  3150. "keywords": [
  3151. "framework",
  3152. "laravel"
  3153. ],
  3154. "support": {
  3155. "issues": "https://github.com/laravel/framework/issues",
  3156. "source": "https://github.com/laravel/framework"
  3157. },
  3158. "time": "2022-07-13T13:23:09+00:00"
  3159. },
  3160. {
  3161. "name": "laravel/sanctum",
  3162. "version": "v2.15.1",
  3163. "source": {
  3164. "type": "git",
  3165. "url": "https://github.com/laravel/sanctum.git",
  3166. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  3167. },
  3168. "dist": {
  3169. "type": "zip",
  3170. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3171. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3172. "shasum": "",
  3173. "mirrors": [
  3174. {
  3175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3176. "preferred": true
  3177. }
  3178. ]
  3179. },
  3180. "require": {
  3181. "ext-json": "*",
  3182. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  3183. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  3184. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  3185. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  3186. "php": "^7.2|^8.0"
  3187. },
  3188. "require-dev": {
  3189. "mockery/mockery": "^1.0",
  3190. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3191. "phpunit/phpunit": "^8.0|^9.3"
  3192. },
  3193. "type": "library",
  3194. "extra": {
  3195. "branch-alias": {
  3196. "dev-master": "2.x-dev"
  3197. },
  3198. "laravel": {
  3199. "providers": [
  3200. "Laravel\\Sanctum\\SanctumServiceProvider"
  3201. ]
  3202. }
  3203. },
  3204. "autoload": {
  3205. "psr-4": {
  3206. "Laravel\\Sanctum\\": "src/"
  3207. }
  3208. },
  3209. "notification-url": "https://packagist.org/downloads/",
  3210. "license": [
  3211. "MIT"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "Taylor Otwell",
  3216. "email": "taylor@laravel.com"
  3217. }
  3218. ],
  3219. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3220. "keywords": [
  3221. "auth",
  3222. "laravel",
  3223. "sanctum"
  3224. ],
  3225. "support": {
  3226. "issues": "https://github.com/laravel/sanctum/issues",
  3227. "source": "https://github.com/laravel/sanctum"
  3228. },
  3229. "time": "2022-04-08T13:39:49+00:00"
  3230. },
  3231. {
  3232. "name": "laravel/serializable-closure",
  3233. "version": "v1.2.0",
  3234. "source": {
  3235. "type": "git",
  3236. "url": "https://github.com/laravel/serializable-closure.git",
  3237. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540"
  3238. },
  3239. "dist": {
  3240. "type": "zip",
  3241. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/09f0e9fb61829f628205b7c94906c28740ff9540",
  3242. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540",
  3243. "shasum": "",
  3244. "mirrors": [
  3245. {
  3246. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3247. "preferred": true
  3248. }
  3249. ]
  3250. },
  3251. "require": {
  3252. "php": "^7.3|^8.0"
  3253. },
  3254. "require-dev": {
  3255. "pestphp/pest": "^1.18",
  3256. "phpstan/phpstan": "^0.12.98",
  3257. "symfony/var-dumper": "^5.3"
  3258. },
  3259. "type": "library",
  3260. "extra": {
  3261. "branch-alias": {
  3262. "dev-master": "1.x-dev"
  3263. }
  3264. },
  3265. "autoload": {
  3266. "psr-4": {
  3267. "Laravel\\SerializableClosure\\": "src/"
  3268. }
  3269. },
  3270. "notification-url": "https://packagist.org/downloads/",
  3271. "license": [
  3272. "MIT"
  3273. ],
  3274. "authors": [
  3275. {
  3276. "name": "Taylor Otwell",
  3277. "email": "taylor@laravel.com"
  3278. },
  3279. {
  3280. "name": "Nuno Maduro",
  3281. "email": "nuno@laravel.com"
  3282. }
  3283. ],
  3284. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3285. "keywords": [
  3286. "closure",
  3287. "laravel",
  3288. "serializable"
  3289. ],
  3290. "support": {
  3291. "issues": "https://github.com/laravel/serializable-closure/issues",
  3292. "source": "https://github.com/laravel/serializable-closure"
  3293. },
  3294. "time": "2022-05-16T17:09:47+00:00"
  3295. },
  3296. {
  3297. "name": "laravel/socialite",
  3298. "version": "v5.5.2",
  3299. "source": {
  3300. "type": "git",
  3301. "url": "https://github.com/laravel/socialite.git",
  3302. "reference": "68afb03259b82d898c68196cbcacd48596a9dd72"
  3303. },
  3304. "dist": {
  3305. "type": "zip",
  3306. "url": "https://api.github.com/repos/laravel/socialite/zipball/68afb03259b82d898c68196cbcacd48596a9dd72",
  3307. "reference": "68afb03259b82d898c68196cbcacd48596a9dd72",
  3308. "shasum": "",
  3309. "mirrors": [
  3310. {
  3311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3312. "preferred": true
  3313. }
  3314. ]
  3315. },
  3316. "require": {
  3317. "ext-json": "*",
  3318. "guzzlehttp/guzzle": "^6.0|^7.0",
  3319. "illuminate/http": "^6.0|^7.0|^8.0|^9.0",
  3320. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3321. "league/oauth1-client": "^1.0",
  3322. "php": "^7.2|^8.0"
  3323. },
  3324. "require-dev": {
  3325. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3326. "mockery/mockery": "^1.0",
  3327. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3328. "phpunit/phpunit": "^8.0|^9.3"
  3329. },
  3330. "type": "library",
  3331. "extra": {
  3332. "branch-alias": {
  3333. "dev-master": "5.x-dev"
  3334. },
  3335. "laravel": {
  3336. "providers": [
  3337. "Laravel\\Socialite\\SocialiteServiceProvider"
  3338. ],
  3339. "aliases": {
  3340. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3341. }
  3342. }
  3343. },
  3344. "autoload": {
  3345. "psr-4": {
  3346. "Laravel\\Socialite\\": "src/"
  3347. }
  3348. },
  3349. "notification-url": "https://packagist.org/downloads/",
  3350. "license": [
  3351. "MIT"
  3352. ],
  3353. "authors": [
  3354. {
  3355. "name": "Taylor Otwell",
  3356. "email": "taylor@laravel.com"
  3357. }
  3358. ],
  3359. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3360. "homepage": "https://laravel.com",
  3361. "keywords": [
  3362. "laravel",
  3363. "oauth"
  3364. ],
  3365. "support": {
  3366. "issues": "https://github.com/laravel/socialite/issues",
  3367. "source": "https://github.com/laravel/socialite"
  3368. },
  3369. "time": "2022-03-10T15:26:19+00:00"
  3370. },
  3371. {
  3372. "name": "laravel/tinker",
  3373. "version": "v2.7.2",
  3374. "source": {
  3375. "type": "git",
  3376. "url": "https://github.com/laravel/tinker.git",
  3377. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  3378. },
  3379. "dist": {
  3380. "type": "zip",
  3381. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  3382. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  3383. "shasum": "",
  3384. "mirrors": [
  3385. {
  3386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3387. "preferred": true
  3388. }
  3389. ]
  3390. },
  3391. "require": {
  3392. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  3393. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3394. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3395. "php": "^7.2.5|^8.0",
  3396. "psy/psysh": "^0.10.4|^0.11.1",
  3397. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  3398. },
  3399. "require-dev": {
  3400. "mockery/mockery": "~1.3.3|^1.4.2",
  3401. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3402. },
  3403. "suggest": {
  3404. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  3405. },
  3406. "type": "library",
  3407. "extra": {
  3408. "branch-alias": {
  3409. "dev-master": "2.x-dev"
  3410. },
  3411. "laravel": {
  3412. "providers": [
  3413. "Laravel\\Tinker\\TinkerServiceProvider"
  3414. ]
  3415. }
  3416. },
  3417. "autoload": {
  3418. "psr-4": {
  3419. "Laravel\\Tinker\\": "src/"
  3420. }
  3421. },
  3422. "notification-url": "https://packagist.org/downloads/",
  3423. "license": [
  3424. "MIT"
  3425. ],
  3426. "authors": [
  3427. {
  3428. "name": "Taylor Otwell",
  3429. "email": "taylor@laravel.com"
  3430. }
  3431. ],
  3432. "description": "Powerful REPL for the Laravel framework.",
  3433. "keywords": [
  3434. "REPL",
  3435. "Tinker",
  3436. "laravel",
  3437. "psysh"
  3438. ],
  3439. "support": {
  3440. "issues": "https://github.com/laravel/tinker/issues",
  3441. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  3442. },
  3443. "time": "2022-03-23T12:38:24+00:00"
  3444. },
  3445. {
  3446. "name": "lcobucci/clock",
  3447. "version": "2.2.0",
  3448. "source": {
  3449. "type": "git",
  3450. "url": "https://github.com/lcobucci/clock.git",
  3451. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3"
  3452. },
  3453. "dist": {
  3454. "type": "zip",
  3455. "url": "https://api.github.com/repos/lcobucci/clock/zipball/fb533e093fd61321bfcbac08b131ce805fe183d3",
  3456. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3",
  3457. "shasum": "",
  3458. "mirrors": [
  3459. {
  3460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3461. "preferred": true
  3462. }
  3463. ]
  3464. },
  3465. "require": {
  3466. "php": "^8.0",
  3467. "stella-maris/clock": "^0.1.4"
  3468. },
  3469. "require-dev": {
  3470. "infection/infection": "^0.26",
  3471. "lcobucci/coding-standard": "^8.0",
  3472. "phpstan/extension-installer": "^1.1",
  3473. "phpstan/phpstan": "^0.12",
  3474. "phpstan/phpstan-deprecation-rules": "^0.12",
  3475. "phpstan/phpstan-phpunit": "^0.12",
  3476. "phpstan/phpstan-strict-rules": "^0.12",
  3477. "phpunit/phpunit": "^9.5"
  3478. },
  3479. "type": "library",
  3480. "autoload": {
  3481. "psr-4": {
  3482. "Lcobucci\\Clock\\": "src"
  3483. }
  3484. },
  3485. "notification-url": "https://packagist.org/downloads/",
  3486. "license": [
  3487. "MIT"
  3488. ],
  3489. "authors": [
  3490. {
  3491. "name": "Luís Cobucci",
  3492. "email": "lcobucci@gmail.com"
  3493. }
  3494. ],
  3495. "description": "Yet another clock abstraction",
  3496. "support": {
  3497. "issues": "https://github.com/lcobucci/clock/issues",
  3498. "source": "https://github.com/lcobucci/clock/tree/2.2.0"
  3499. },
  3500. "funding": [
  3501. {
  3502. "url": "https://github.com/lcobucci",
  3503. "type": "github"
  3504. },
  3505. {
  3506. "url": "https://www.patreon.com/lcobucci",
  3507. "type": "patreon"
  3508. }
  3509. ],
  3510. "time": "2022-04-19T19:34:17+00:00"
  3511. },
  3512. {
  3513. "name": "lcobucci/jwt",
  3514. "version": "4.0.4",
  3515. "source": {
  3516. "type": "git",
  3517. "url": "https://github.com/lcobucci/jwt.git",
  3518. "reference": "55564265fddf810504110bd68ca311932324b0e9"
  3519. },
  3520. "dist": {
  3521. "type": "zip",
  3522. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9",
  3523. "reference": "55564265fddf810504110bd68ca311932324b0e9",
  3524. "shasum": "",
  3525. "mirrors": [
  3526. {
  3527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3528. "preferred": true
  3529. }
  3530. ]
  3531. },
  3532. "require": {
  3533. "ext-mbstring": "*",
  3534. "ext-openssl": "*",
  3535. "lcobucci/clock": "^2.0",
  3536. "php": "^7.4 || ^8.0"
  3537. },
  3538. "require-dev": {
  3539. "infection/infection": "^0.20",
  3540. "lcobucci/coding-standard": "^6.0",
  3541. "mikey179/vfsstream": "^1.6",
  3542. "phpbench/phpbench": "^0.17",
  3543. "phpstan/extension-installer": "^1.0",
  3544. "phpstan/phpstan": "^0.12",
  3545. "phpstan/phpstan-deprecation-rules": "^0.12",
  3546. "phpstan/phpstan-phpunit": "^0.12",
  3547. "phpstan/phpstan-strict-rules": "^0.12",
  3548. "phpunit/php-invoker": "^3.1",
  3549. "phpunit/phpunit": "^9.4"
  3550. },
  3551. "type": "library",
  3552. "extra": {
  3553. "branch-alias": {
  3554. "dev-master": "4.0-dev"
  3555. }
  3556. },
  3557. "autoload": {
  3558. "psr-4": {
  3559. "Lcobucci\\JWT\\": "src"
  3560. }
  3561. },
  3562. "notification-url": "https://packagist.org/downloads/",
  3563. "license": [
  3564. "BSD-3-Clause"
  3565. ],
  3566. "authors": [
  3567. {
  3568. "name": "Luís Cobucci",
  3569. "email": "lcobucci@gmail.com",
  3570. "role": "Developer"
  3571. }
  3572. ],
  3573. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3574. "keywords": [
  3575. "JWS",
  3576. "jwt"
  3577. ],
  3578. "support": {
  3579. "issues": "https://github.com/lcobucci/jwt/issues",
  3580. "source": "https://github.com/lcobucci/jwt/tree/4.0.4"
  3581. },
  3582. "funding": [
  3583. {
  3584. "url": "https://github.com/lcobucci",
  3585. "type": "github"
  3586. },
  3587. {
  3588. "url": "https://www.patreon.com/lcobucci",
  3589. "type": "patreon"
  3590. }
  3591. ],
  3592. "time": "2021-09-28T19:18:28+00:00"
  3593. },
  3594. {
  3595. "name": "league/commonmark",
  3596. "version": "2.3.3",
  3597. "source": {
  3598. "type": "git",
  3599. "url": "https://github.com/thephpleague/commonmark.git",
  3600. "reference": "0da1dca5781dd3cfddbe328224d9a7a62571addc"
  3601. },
  3602. "dist": {
  3603. "type": "zip",
  3604. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/0da1dca5781dd3cfddbe328224d9a7a62571addc",
  3605. "reference": "0da1dca5781dd3cfddbe328224d9a7a62571addc",
  3606. "shasum": "",
  3607. "mirrors": [
  3608. {
  3609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3610. "preferred": true
  3611. }
  3612. ]
  3613. },
  3614. "require": {
  3615. "ext-mbstring": "*",
  3616. "league/config": "^1.1.1",
  3617. "php": "^7.4 || ^8.0",
  3618. "psr/event-dispatcher": "^1.0",
  3619. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3620. "symfony/polyfill-php80": "^1.16"
  3621. },
  3622. "require-dev": {
  3623. "cebe/markdown": "^1.0",
  3624. "commonmark/cmark": "0.30.0",
  3625. "commonmark/commonmark.js": "0.30.0",
  3626. "composer/package-versions-deprecated": "^1.8",
  3627. "embed/embed": "^4.4",
  3628. "erusev/parsedown": "^1.0",
  3629. "ext-json": "*",
  3630. "github/gfm": "0.29.0",
  3631. "michelf/php-markdown": "^1.4",
  3632. "nyholm/psr7": "^1.5",
  3633. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  3634. "phpunit/phpunit": "^9.5.5",
  3635. "scrutinizer/ocular": "^1.8.1",
  3636. "symfony/finder": "^5.3",
  3637. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  3638. "unleashedtech/php-coding-standard": "^3.1",
  3639. "vimeo/psalm": "^4.7.3"
  3640. },
  3641. "suggest": {
  3642. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3643. },
  3644. "type": "library",
  3645. "extra": {
  3646. "branch-alias": {
  3647. "dev-main": "2.4-dev"
  3648. }
  3649. },
  3650. "autoload": {
  3651. "psr-4": {
  3652. "League\\CommonMark\\": "src"
  3653. }
  3654. },
  3655. "notification-url": "https://packagist.org/downloads/",
  3656. "license": [
  3657. "BSD-3-Clause"
  3658. ],
  3659. "authors": [
  3660. {
  3661. "name": "Colin O'Dell",
  3662. "email": "colinodell@gmail.com",
  3663. "homepage": "https://www.colinodell.com",
  3664. "role": "Lead Developer"
  3665. }
  3666. ],
  3667. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3668. "homepage": "https://commonmark.thephpleague.com",
  3669. "keywords": [
  3670. "commonmark",
  3671. "flavored",
  3672. "gfm",
  3673. "github",
  3674. "github-flavored",
  3675. "markdown",
  3676. "md",
  3677. "parser"
  3678. ],
  3679. "support": {
  3680. "docs": "https://commonmark.thephpleague.com/",
  3681. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3682. "issues": "https://github.com/thephpleague/commonmark/issues",
  3683. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3684. "source": "https://github.com/thephpleague/commonmark"
  3685. },
  3686. "funding": [
  3687. {
  3688. "url": "https://www.colinodell.com/sponsor",
  3689. "type": "custom"
  3690. },
  3691. {
  3692. "url": "https://www.paypal.me/colinpodell/10.00",
  3693. "type": "custom"
  3694. },
  3695. {
  3696. "url": "https://github.com/colinodell",
  3697. "type": "github"
  3698. },
  3699. {
  3700. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3701. "type": "tidelift"
  3702. }
  3703. ],
  3704. "time": "2022-06-07T21:28:26+00:00"
  3705. },
  3706. {
  3707. "name": "league/config",
  3708. "version": "v1.1.1",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://github.com/thephpleague/config.git",
  3712. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  3717. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  3718. "shasum": "",
  3719. "mirrors": [
  3720. {
  3721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3722. "preferred": true
  3723. }
  3724. ]
  3725. },
  3726. "require": {
  3727. "dflydev/dot-access-data": "^3.0.1",
  3728. "nette/schema": "^1.2",
  3729. "php": "^7.4 || ^8.0"
  3730. },
  3731. "require-dev": {
  3732. "phpstan/phpstan": "^0.12.90",
  3733. "phpunit/phpunit": "^9.5.5",
  3734. "scrutinizer/ocular": "^1.8.1",
  3735. "unleashedtech/php-coding-standard": "^3.1",
  3736. "vimeo/psalm": "^4.7.3"
  3737. },
  3738. "type": "library",
  3739. "extra": {
  3740. "branch-alias": {
  3741. "dev-main": "1.2-dev"
  3742. }
  3743. },
  3744. "autoload": {
  3745. "psr-4": {
  3746. "League\\Config\\": "src"
  3747. }
  3748. },
  3749. "notification-url": "https://packagist.org/downloads/",
  3750. "license": [
  3751. "BSD-3-Clause"
  3752. ],
  3753. "authors": [
  3754. {
  3755. "name": "Colin O'Dell",
  3756. "email": "colinodell@gmail.com",
  3757. "homepage": "https://www.colinodell.com",
  3758. "role": "Lead Developer"
  3759. }
  3760. ],
  3761. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3762. "homepage": "https://config.thephpleague.com",
  3763. "keywords": [
  3764. "array",
  3765. "config",
  3766. "configuration",
  3767. "dot",
  3768. "dot-access",
  3769. "nested",
  3770. "schema"
  3771. ],
  3772. "support": {
  3773. "docs": "https://config.thephpleague.com/",
  3774. "issues": "https://github.com/thephpleague/config/issues",
  3775. "rss": "https://github.com/thephpleague/config/releases.atom",
  3776. "source": "https://github.com/thephpleague/config"
  3777. },
  3778. "funding": [
  3779. {
  3780. "url": "https://www.colinodell.com/sponsor",
  3781. "type": "custom"
  3782. },
  3783. {
  3784. "url": "https://www.paypal.me/colinpodell/10.00",
  3785. "type": "custom"
  3786. },
  3787. {
  3788. "url": "https://github.com/colinodell",
  3789. "type": "github"
  3790. }
  3791. ],
  3792. "time": "2021-08-14T12:15:32+00:00"
  3793. },
  3794. {
  3795. "name": "league/flysystem",
  3796. "version": "1.1.9",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/thephpleague/flysystem.git",
  3800. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  3805. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  3806. "shasum": "",
  3807. "mirrors": [
  3808. {
  3809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3810. "preferred": true
  3811. }
  3812. ]
  3813. },
  3814. "require": {
  3815. "ext-fileinfo": "*",
  3816. "league/mime-type-detection": "^1.3",
  3817. "php": "^7.2.5 || ^8.0"
  3818. },
  3819. "conflict": {
  3820. "league/flysystem-sftp": "<1.0.6"
  3821. },
  3822. "require-dev": {
  3823. "phpspec/prophecy": "^1.11.1",
  3824. "phpunit/phpunit": "^8.5.8"
  3825. },
  3826. "suggest": {
  3827. "ext-ftp": "Allows you to use FTP server storage",
  3828. "ext-openssl": "Allows you to use FTPS server storage",
  3829. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3830. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3831. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3832. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3833. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3834. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3835. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3836. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3837. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3838. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3839. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3840. },
  3841. "type": "library",
  3842. "extra": {
  3843. "branch-alias": {
  3844. "dev-master": "1.1-dev"
  3845. }
  3846. },
  3847. "autoload": {
  3848. "psr-4": {
  3849. "League\\Flysystem\\": "src/"
  3850. }
  3851. },
  3852. "notification-url": "https://packagist.org/downloads/",
  3853. "license": [
  3854. "MIT"
  3855. ],
  3856. "authors": [
  3857. {
  3858. "name": "Frank de Jonge",
  3859. "email": "info@frenky.net"
  3860. }
  3861. ],
  3862. "description": "Filesystem abstraction: Many filesystems, one API.",
  3863. "keywords": [
  3864. "Cloud Files",
  3865. "WebDAV",
  3866. "abstraction",
  3867. "aws",
  3868. "cloud",
  3869. "copy.com",
  3870. "dropbox",
  3871. "file systems",
  3872. "files",
  3873. "filesystem",
  3874. "filesystems",
  3875. "ftp",
  3876. "rackspace",
  3877. "remote",
  3878. "s3",
  3879. "sftp",
  3880. "storage"
  3881. ],
  3882. "support": {
  3883. "issues": "https://github.com/thephpleague/flysystem/issues",
  3884. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  3885. },
  3886. "funding": [
  3887. {
  3888. "url": "https://offset.earth/frankdejonge",
  3889. "type": "other"
  3890. }
  3891. ],
  3892. "time": "2021-12-09T09:40:50+00:00"
  3893. },
  3894. {
  3895. "name": "league/fractal",
  3896. "version": "0.19.2",
  3897. "source": {
  3898. "type": "git",
  3899. "url": "https://github.com/thephpleague/fractal.git",
  3900. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  3901. },
  3902. "dist": {
  3903. "type": "zip",
  3904. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  3905. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  3906. "shasum": "",
  3907. "mirrors": [
  3908. {
  3909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3910. "preferred": true
  3911. }
  3912. ]
  3913. },
  3914. "require": {
  3915. "php": ">=5.4"
  3916. },
  3917. "require-dev": {
  3918. "doctrine/orm": "^2.5",
  3919. "illuminate/contracts": "~5.0",
  3920. "mockery/mockery": "~0.9",
  3921. "pagerfanta/pagerfanta": "~1.0.0",
  3922. "phpunit/phpunit": "^4.8.35 || ^7.5",
  3923. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  3924. "zendframework/zend-paginator": "~2.3"
  3925. },
  3926. "suggest": {
  3927. "illuminate/pagination": "The Illuminate Pagination component.",
  3928. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3929. "zendframework/zend-paginator": "Zend Framework Paginator"
  3930. },
  3931. "type": "library",
  3932. "extra": {
  3933. "branch-alias": {
  3934. "dev-master": "0.13-dev"
  3935. }
  3936. },
  3937. "autoload": {
  3938. "psr-4": {
  3939. "League\\Fractal\\": "src"
  3940. }
  3941. },
  3942. "notification-url": "https://packagist.org/downloads/",
  3943. "license": [
  3944. "MIT"
  3945. ],
  3946. "authors": [
  3947. {
  3948. "name": "Phil Sturgeon",
  3949. "email": "me@philsturgeon.uk",
  3950. "homepage": "http://philsturgeon.uk/",
  3951. "role": "Developer"
  3952. }
  3953. ],
  3954. "description": "Handle the output of complex data structures ready for API output.",
  3955. "homepage": "http://fractal.thephpleague.com/",
  3956. "keywords": [
  3957. "api",
  3958. "json",
  3959. "league",
  3960. "rest"
  3961. ],
  3962. "support": {
  3963. "issues": "https://github.com/thephpleague/fractal/issues",
  3964. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  3965. },
  3966. "time": "2020-01-24T23:17:29+00:00"
  3967. },
  3968. {
  3969. "name": "league/mime-type-detection",
  3970. "version": "1.11.0",
  3971. "source": {
  3972. "type": "git",
  3973. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3974. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  3975. },
  3976. "dist": {
  3977. "type": "zip",
  3978. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3979. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3980. "shasum": "",
  3981. "mirrors": [
  3982. {
  3983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3984. "preferred": true
  3985. }
  3986. ]
  3987. },
  3988. "require": {
  3989. "ext-fileinfo": "*",
  3990. "php": "^7.2 || ^8.0"
  3991. },
  3992. "require-dev": {
  3993. "friendsofphp/php-cs-fixer": "^3.2",
  3994. "phpstan/phpstan": "^0.12.68",
  3995. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3996. },
  3997. "type": "library",
  3998. "autoload": {
  3999. "psr-4": {
  4000. "League\\MimeTypeDetection\\": "src"
  4001. }
  4002. },
  4003. "notification-url": "https://packagist.org/downloads/",
  4004. "license": [
  4005. "MIT"
  4006. ],
  4007. "authors": [
  4008. {
  4009. "name": "Frank de Jonge",
  4010. "email": "info@frankdejonge.nl"
  4011. }
  4012. ],
  4013. "description": "Mime-type detection for Flysystem",
  4014. "support": {
  4015. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4016. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  4017. },
  4018. "funding": [
  4019. {
  4020. "url": "https://github.com/frankdejonge",
  4021. "type": "github"
  4022. },
  4023. {
  4024. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4025. "type": "tidelift"
  4026. }
  4027. ],
  4028. "time": "2022-04-17T13:12:02+00:00"
  4029. },
  4030. {
  4031. "name": "league/oauth1-client",
  4032. "version": "v1.10.1",
  4033. "source": {
  4034. "type": "git",
  4035. "url": "https://github.com/thephpleague/oauth1-client.git",
  4036. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  4037. },
  4038. "dist": {
  4039. "type": "zip",
  4040. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  4041. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  4042. "shasum": "",
  4043. "mirrors": [
  4044. {
  4045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4046. "preferred": true
  4047. }
  4048. ]
  4049. },
  4050. "require": {
  4051. "ext-json": "*",
  4052. "ext-openssl": "*",
  4053. "guzzlehttp/guzzle": "^6.0|^7.0",
  4054. "guzzlehttp/psr7": "^1.7|^2.0",
  4055. "php": ">=7.1||>=8.0"
  4056. },
  4057. "require-dev": {
  4058. "ext-simplexml": "*",
  4059. "friendsofphp/php-cs-fixer": "^2.17",
  4060. "mockery/mockery": "^1.3.3",
  4061. "phpstan/phpstan": "^0.12.42",
  4062. "phpunit/phpunit": "^7.5||9.5"
  4063. },
  4064. "suggest": {
  4065. "ext-simplexml": "For decoding XML-based responses."
  4066. },
  4067. "type": "library",
  4068. "extra": {
  4069. "branch-alias": {
  4070. "dev-master": "1.0-dev",
  4071. "dev-develop": "2.0-dev"
  4072. }
  4073. },
  4074. "autoload": {
  4075. "psr-4": {
  4076. "League\\OAuth1\\Client\\": "src/"
  4077. }
  4078. },
  4079. "notification-url": "https://packagist.org/downloads/",
  4080. "license": [
  4081. "MIT"
  4082. ],
  4083. "authors": [
  4084. {
  4085. "name": "Ben Corlett",
  4086. "email": "bencorlett@me.com",
  4087. "homepage": "http://www.webcomm.com.au",
  4088. "role": "Developer"
  4089. }
  4090. ],
  4091. "description": "OAuth 1.0 Client Library",
  4092. "keywords": [
  4093. "Authentication",
  4094. "SSO",
  4095. "authorization",
  4096. "bitbucket",
  4097. "identity",
  4098. "idp",
  4099. "oauth",
  4100. "oauth1",
  4101. "single sign on",
  4102. "trello",
  4103. "tumblr",
  4104. "twitter"
  4105. ],
  4106. "support": {
  4107. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4108. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4109. },
  4110. "time": "2022-04-15T14:02:14+00:00"
  4111. },
  4112. {
  4113. "name": "monolog/monolog",
  4114. "version": "2.7.0",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/Seldaek/monolog.git",
  4118. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  4123. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  4124. "shasum": "",
  4125. "mirrors": [
  4126. {
  4127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4128. "preferred": true
  4129. }
  4130. ]
  4131. },
  4132. "require": {
  4133. "php": ">=7.2",
  4134. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4135. },
  4136. "provide": {
  4137. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4138. },
  4139. "require-dev": {
  4140. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4141. "doctrine/couchdb": "~1.0@dev",
  4142. "elasticsearch/elasticsearch": "^7 || ^8",
  4143. "ext-json": "*",
  4144. "graylog2/gelf-php": "^1.4.2",
  4145. "guzzlehttp/guzzle": "^7.4",
  4146. "guzzlehttp/psr7": "^2.2",
  4147. "mongodb/mongodb": "^1.8",
  4148. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4149. "php-console/php-console": "^3.1.3",
  4150. "phpspec/prophecy": "^1.15",
  4151. "phpstan/phpstan": "^0.12.91",
  4152. "phpunit/phpunit": "^8.5.14",
  4153. "predis/predis": "^1.1",
  4154. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4155. "ruflin/elastica": "^7",
  4156. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4157. "symfony/mailer": "^5.4 || ^6",
  4158. "symfony/mime": "^5.4 || ^6"
  4159. },
  4160. "suggest": {
  4161. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4162. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4163. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4164. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4165. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4166. "ext-mbstring": "Allow to work properly with unicode symbols",
  4167. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4168. "ext-openssl": "Required to send log messages using SSL",
  4169. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4170. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4171. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4172. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4173. "php-console/php-console": "Allow sending log messages to Google Chrome",
  4174. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4175. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4176. },
  4177. "type": "library",
  4178. "extra": {
  4179. "branch-alias": {
  4180. "dev-main": "2.x-dev"
  4181. }
  4182. },
  4183. "autoload": {
  4184. "psr-4": {
  4185. "Monolog\\": "src/Monolog"
  4186. }
  4187. },
  4188. "notification-url": "https://packagist.org/downloads/",
  4189. "license": [
  4190. "MIT"
  4191. ],
  4192. "authors": [
  4193. {
  4194. "name": "Jordi Boggiano",
  4195. "email": "j.boggiano@seld.be",
  4196. "homepage": "https://seld.be"
  4197. }
  4198. ],
  4199. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4200. "homepage": "https://github.com/Seldaek/monolog",
  4201. "keywords": [
  4202. "log",
  4203. "logging",
  4204. "psr-3"
  4205. ],
  4206. "support": {
  4207. "issues": "https://github.com/Seldaek/monolog/issues",
  4208. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  4209. },
  4210. "funding": [
  4211. {
  4212. "url": "https://github.com/Seldaek",
  4213. "type": "github"
  4214. },
  4215. {
  4216. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4217. "type": "tidelift"
  4218. }
  4219. ],
  4220. "time": "2022-06-09T08:59:12+00:00"
  4221. },
  4222. {
  4223. "name": "mtdowling/jmespath.php",
  4224. "version": "2.6.1",
  4225. "source": {
  4226. "type": "git",
  4227. "url": "https://github.com/jmespath/jmespath.php.git",
  4228. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  4229. },
  4230. "dist": {
  4231. "type": "zip",
  4232. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4233. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4234. "shasum": "",
  4235. "mirrors": [
  4236. {
  4237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4238. "preferred": true
  4239. }
  4240. ]
  4241. },
  4242. "require": {
  4243. "php": "^5.4 || ^7.0 || ^8.0",
  4244. "symfony/polyfill-mbstring": "^1.17"
  4245. },
  4246. "require-dev": {
  4247. "composer/xdebug-handler": "^1.4 || ^2.0",
  4248. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  4249. },
  4250. "bin": [
  4251. "bin/jp.php"
  4252. ],
  4253. "type": "library",
  4254. "extra": {
  4255. "branch-alias": {
  4256. "dev-master": "2.6-dev"
  4257. }
  4258. },
  4259. "autoload": {
  4260. "files": [
  4261. "src/JmesPath.php"
  4262. ],
  4263. "psr-4": {
  4264. "JmesPath\\": "src/"
  4265. }
  4266. },
  4267. "notification-url": "https://packagist.org/downloads/",
  4268. "license": [
  4269. "MIT"
  4270. ],
  4271. "authors": [
  4272. {
  4273. "name": "Michael Dowling",
  4274. "email": "mtdowling@gmail.com",
  4275. "homepage": "https://github.com/mtdowling"
  4276. }
  4277. ],
  4278. "description": "Declaratively specify how to extract elements from a JSON document",
  4279. "keywords": [
  4280. "json",
  4281. "jsonpath"
  4282. ],
  4283. "support": {
  4284. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4285. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  4286. },
  4287. "time": "2021-06-14T00:11:39+00:00"
  4288. },
  4289. {
  4290. "name": "namshi/jose",
  4291. "version": "7.2.3",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/namshi/jose.git",
  4295. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  4300. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  4301. "shasum": "",
  4302. "mirrors": [
  4303. {
  4304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4305. "preferred": true
  4306. }
  4307. ]
  4308. },
  4309. "require": {
  4310. "ext-date": "*",
  4311. "ext-hash": "*",
  4312. "ext-json": "*",
  4313. "ext-pcre": "*",
  4314. "ext-spl": "*",
  4315. "php": ">=5.5",
  4316. "symfony/polyfill-php56": "^1.0"
  4317. },
  4318. "require-dev": {
  4319. "phpseclib/phpseclib": "^2.0",
  4320. "phpunit/phpunit": "^4.5|^5.0",
  4321. "satooshi/php-coveralls": "^1.0"
  4322. },
  4323. "suggest": {
  4324. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  4325. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  4326. },
  4327. "type": "library",
  4328. "autoload": {
  4329. "psr-4": {
  4330. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  4331. }
  4332. },
  4333. "notification-url": "https://packagist.org/downloads/",
  4334. "license": [
  4335. "MIT"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "Alessandro Nadalin",
  4340. "email": "alessandro.nadalin@gmail.com"
  4341. },
  4342. {
  4343. "name": "Alessandro Cinelli (cirpo)",
  4344. "email": "alessandro.cinelli@gmail.com"
  4345. }
  4346. ],
  4347. "description": "JSON Object Signing and Encryption library for PHP.",
  4348. "keywords": [
  4349. "JSON Web Signature",
  4350. "JSON Web Token",
  4351. "JWS",
  4352. "json",
  4353. "jwt",
  4354. "token"
  4355. ],
  4356. "support": {
  4357. "issues": "https://github.com/namshi/jose/issues",
  4358. "source": "https://github.com/namshi/jose/tree/master"
  4359. },
  4360. "time": "2016-12-05T07:27:31+00:00"
  4361. },
  4362. {
  4363. "name": "nesbot/carbon",
  4364. "version": "2.59.1",
  4365. "source": {
  4366. "type": "git",
  4367. "url": "https://github.com/briannesbitt/Carbon.git",
  4368. "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5"
  4369. },
  4370. "dist": {
  4371. "type": "zip",
  4372. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
  4373. "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
  4374. "shasum": "",
  4375. "mirrors": [
  4376. {
  4377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4378. "preferred": true
  4379. }
  4380. ]
  4381. },
  4382. "require": {
  4383. "ext-json": "*",
  4384. "php": "^7.1.8 || ^8.0",
  4385. "symfony/polyfill-mbstring": "^1.0",
  4386. "symfony/polyfill-php80": "^1.16",
  4387. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4388. },
  4389. "require-dev": {
  4390. "doctrine/dbal": "^2.0 || ^3.0",
  4391. "doctrine/orm": "^2.7",
  4392. "friendsofphp/php-cs-fixer": "^3.0",
  4393. "kylekatarnls/multi-tester": "^2.0",
  4394. "ondrejmirtes/better-reflection": "*",
  4395. "phpmd/phpmd": "^2.9",
  4396. "phpstan/extension-installer": "^1.0",
  4397. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4398. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4399. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4400. "squizlabs/php_codesniffer": "^3.4"
  4401. },
  4402. "bin": [
  4403. "bin/carbon"
  4404. ],
  4405. "type": "library",
  4406. "extra": {
  4407. "branch-alias": {
  4408. "dev-3.x": "3.x-dev",
  4409. "dev-master": "2.x-dev"
  4410. },
  4411. "laravel": {
  4412. "providers": [
  4413. "Carbon\\Laravel\\ServiceProvider"
  4414. ]
  4415. },
  4416. "phpstan": {
  4417. "includes": [
  4418. "extension.neon"
  4419. ]
  4420. }
  4421. },
  4422. "autoload": {
  4423. "psr-4": {
  4424. "Carbon\\": "src/Carbon/"
  4425. }
  4426. },
  4427. "notification-url": "https://packagist.org/downloads/",
  4428. "license": [
  4429. "MIT"
  4430. ],
  4431. "authors": [
  4432. {
  4433. "name": "Brian Nesbitt",
  4434. "email": "brian@nesbot.com",
  4435. "homepage": "https://markido.com"
  4436. },
  4437. {
  4438. "name": "kylekatarnls",
  4439. "homepage": "https://github.com/kylekatarnls"
  4440. }
  4441. ],
  4442. "description": "An API extension for DateTime that supports 281 different languages.",
  4443. "homepage": "https://carbon.nesbot.com",
  4444. "keywords": [
  4445. "date",
  4446. "datetime",
  4447. "time"
  4448. ],
  4449. "support": {
  4450. "docs": "https://carbon.nesbot.com/docs",
  4451. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4452. "source": "https://github.com/briannesbitt/Carbon"
  4453. },
  4454. "funding": [
  4455. {
  4456. "url": "https://github.com/sponsors/kylekatarnls",
  4457. "type": "github"
  4458. },
  4459. {
  4460. "url": "https://opencollective.com/Carbon#sponsor",
  4461. "type": "opencollective"
  4462. },
  4463. {
  4464. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4465. "type": "tidelift"
  4466. }
  4467. ],
  4468. "time": "2022-06-29T21:43:55+00:00"
  4469. },
  4470. {
  4471. "name": "nette/schema",
  4472. "version": "v1.2.2",
  4473. "source": {
  4474. "type": "git",
  4475. "url": "https://github.com/nette/schema.git",
  4476. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  4477. },
  4478. "dist": {
  4479. "type": "zip",
  4480. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  4481. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  4482. "shasum": "",
  4483. "mirrors": [
  4484. {
  4485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4486. "preferred": true
  4487. }
  4488. ]
  4489. },
  4490. "require": {
  4491. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4492. "php": ">=7.1 <8.2"
  4493. },
  4494. "require-dev": {
  4495. "nette/tester": "^2.3 || ^2.4",
  4496. "phpstan/phpstan-nette": "^0.12",
  4497. "tracy/tracy": "^2.7"
  4498. },
  4499. "type": "library",
  4500. "extra": {
  4501. "branch-alias": {
  4502. "dev-master": "1.2-dev"
  4503. }
  4504. },
  4505. "autoload": {
  4506. "classmap": [
  4507. "src/"
  4508. ]
  4509. },
  4510. "notification-url": "https://packagist.org/downloads/",
  4511. "license": [
  4512. "BSD-3-Clause",
  4513. "GPL-2.0-only",
  4514. "GPL-3.0-only"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "David Grudl",
  4519. "homepage": "https://davidgrudl.com"
  4520. },
  4521. {
  4522. "name": "Nette Community",
  4523. "homepage": "https://nette.org/contributors"
  4524. }
  4525. ],
  4526. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4527. "homepage": "https://nette.org",
  4528. "keywords": [
  4529. "config",
  4530. "nette"
  4531. ],
  4532. "support": {
  4533. "issues": "https://github.com/nette/schema/issues",
  4534. "source": "https://github.com/nette/schema/tree/v1.2.2"
  4535. },
  4536. "time": "2021-10-15T11:40:02+00:00"
  4537. },
  4538. {
  4539. "name": "nette/utils",
  4540. "version": "v3.2.7",
  4541. "source": {
  4542. "type": "git",
  4543. "url": "https://github.com/nette/utils.git",
  4544. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  4545. },
  4546. "dist": {
  4547. "type": "zip",
  4548. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  4549. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  4550. "shasum": "",
  4551. "mirrors": [
  4552. {
  4553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4554. "preferred": true
  4555. }
  4556. ]
  4557. },
  4558. "require": {
  4559. "php": ">=7.2 <8.2"
  4560. },
  4561. "conflict": {
  4562. "nette/di": "<3.0.6"
  4563. },
  4564. "require-dev": {
  4565. "nette/tester": "~2.0",
  4566. "phpstan/phpstan": "^1.0",
  4567. "tracy/tracy": "^2.3"
  4568. },
  4569. "suggest": {
  4570. "ext-gd": "to use Image",
  4571. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4572. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4573. "ext-json": "to use Nette\\Utils\\Json",
  4574. "ext-mbstring": "to use Strings::lower() etc...",
  4575. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  4576. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  4577. },
  4578. "type": "library",
  4579. "extra": {
  4580. "branch-alias": {
  4581. "dev-master": "3.2-dev"
  4582. }
  4583. },
  4584. "autoload": {
  4585. "classmap": [
  4586. "src/"
  4587. ]
  4588. },
  4589. "notification-url": "https://packagist.org/downloads/",
  4590. "license": [
  4591. "BSD-3-Clause",
  4592. "GPL-2.0-only",
  4593. "GPL-3.0-only"
  4594. ],
  4595. "authors": [
  4596. {
  4597. "name": "David Grudl",
  4598. "homepage": "https://davidgrudl.com"
  4599. },
  4600. {
  4601. "name": "Nette Community",
  4602. "homepage": "https://nette.org/contributors"
  4603. }
  4604. ],
  4605. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4606. "homepage": "https://nette.org",
  4607. "keywords": [
  4608. "array",
  4609. "core",
  4610. "datetime",
  4611. "images",
  4612. "json",
  4613. "nette",
  4614. "paginator",
  4615. "password",
  4616. "slugify",
  4617. "string",
  4618. "unicode",
  4619. "utf-8",
  4620. "utility",
  4621. "validation"
  4622. ],
  4623. "support": {
  4624. "issues": "https://github.com/nette/utils/issues",
  4625. "source": "https://github.com/nette/utils/tree/v3.2.7"
  4626. },
  4627. "time": "2022-01-24T11:29:14+00:00"
  4628. },
  4629. {
  4630. "name": "nikic/php-parser",
  4631. "version": "v4.14.0",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://github.com/nikic/PHP-Parser.git",
  4635. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  4636. },
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  4640. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  4641. "shasum": "",
  4642. "mirrors": [
  4643. {
  4644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4645. "preferred": true
  4646. }
  4647. ]
  4648. },
  4649. "require": {
  4650. "ext-tokenizer": "*",
  4651. "php": ">=7.0"
  4652. },
  4653. "require-dev": {
  4654. "ircmaxell/php-yacc": "^0.0.7",
  4655. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4656. },
  4657. "bin": [
  4658. "bin/php-parse"
  4659. ],
  4660. "type": "library",
  4661. "extra": {
  4662. "branch-alias": {
  4663. "dev-master": "4.9-dev"
  4664. }
  4665. },
  4666. "autoload": {
  4667. "psr-4": {
  4668. "PhpParser\\": "lib/PhpParser"
  4669. }
  4670. },
  4671. "notification-url": "https://packagist.org/downloads/",
  4672. "license": [
  4673. "BSD-3-Clause"
  4674. ],
  4675. "authors": [
  4676. {
  4677. "name": "Nikita Popov"
  4678. }
  4679. ],
  4680. "description": "A PHP parser written in PHP",
  4681. "keywords": [
  4682. "parser",
  4683. "php"
  4684. ],
  4685. "support": {
  4686. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4687. "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
  4688. },
  4689. "time": "2022-05-31T20:59:12+00:00"
  4690. },
  4691. {
  4692. "name": "opis/closure",
  4693. "version": "3.6.3",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://github.com/opis/closure.git",
  4697. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4702. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4703. "shasum": "",
  4704. "mirrors": [
  4705. {
  4706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4707. "preferred": true
  4708. }
  4709. ]
  4710. },
  4711. "require": {
  4712. "php": "^5.4 || ^7.0 || ^8.0"
  4713. },
  4714. "require-dev": {
  4715. "jeremeamia/superclosure": "^2.0",
  4716. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4717. },
  4718. "type": "library",
  4719. "extra": {
  4720. "branch-alias": {
  4721. "dev-master": "3.6.x-dev"
  4722. }
  4723. },
  4724. "autoload": {
  4725. "files": [
  4726. "functions.php"
  4727. ],
  4728. "psr-4": {
  4729. "Opis\\Closure\\": "src/"
  4730. }
  4731. },
  4732. "notification-url": "https://packagist.org/downloads/",
  4733. "license": [
  4734. "MIT"
  4735. ],
  4736. "authors": [
  4737. {
  4738. "name": "Marius Sarca",
  4739. "email": "marius.sarca@gmail.com"
  4740. },
  4741. {
  4742. "name": "Sorin Sarca",
  4743. "email": "sarca_sorin@hotmail.com"
  4744. }
  4745. ],
  4746. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4747. "homepage": "https://opis.io/closure",
  4748. "keywords": [
  4749. "anonymous functions",
  4750. "closure",
  4751. "function",
  4752. "serializable",
  4753. "serialization",
  4754. "serialize"
  4755. ],
  4756. "support": {
  4757. "issues": "https://github.com/opis/closure/issues",
  4758. "source": "https://github.com/opis/closure/tree/3.6.3"
  4759. },
  4760. "time": "2022-01-27T09:35:39+00:00"
  4761. },
  4762. {
  4763. "name": "overtrue/easy-sms",
  4764. "version": "2.1.1",
  4765. "source": {
  4766. "type": "git",
  4767. "url": "https://github.com/overtrue/easy-sms.git",
  4768. "reference": "4bbbbef4fa192ed23a60bbafc3217bccb6af824f"
  4769. },
  4770. "dist": {
  4771. "type": "zip",
  4772. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/4bbbbef4fa192ed23a60bbafc3217bccb6af824f",
  4773. "reference": "4bbbbef4fa192ed23a60bbafc3217bccb6af824f",
  4774. "shasum": "",
  4775. "mirrors": [
  4776. {
  4777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4778. "preferred": true
  4779. }
  4780. ]
  4781. },
  4782. "require": {
  4783. "ext-json": "*",
  4784. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4785. "php": ">=5.6"
  4786. },
  4787. "require-dev": {
  4788. "brainmaestro/composer-git-hooks": "^2.8",
  4789. "jetbrains/phpstorm-attributes": "^1.0",
  4790. "mockery/mockery": "~1.3.3 || ^1.4.2",
  4791. "phpunit/phpunit": "^5.7 || ^7.5 || ^8.5.19 || ^9.5.8"
  4792. },
  4793. "type": "library",
  4794. "extra": {
  4795. "hooks": {
  4796. "pre-commit": [
  4797. "composer check-style",
  4798. "composer psalm",
  4799. "composer test"
  4800. ],
  4801. "pre-push": [
  4802. "composer check-style"
  4803. ]
  4804. }
  4805. },
  4806. "autoload": {
  4807. "psr-4": {
  4808. "Overtrue\\EasySms\\": "src"
  4809. }
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "MIT"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "overtrue",
  4818. "email": "i@overtrue.me"
  4819. }
  4820. ],
  4821. "description": "The easiest way to send short message.",
  4822. "support": {
  4823. "issues": "https://github.com/overtrue/easy-sms/issues",
  4824. "source": "https://github.com/overtrue/easy-sms/tree/2.1.1"
  4825. },
  4826. "funding": [
  4827. {
  4828. "url": "https://github.com/overtrue",
  4829. "type": "github"
  4830. }
  4831. ],
  4832. "time": "2022-03-03T01:00:29+00:00"
  4833. },
  4834. {
  4835. "name": "overtrue/laravel-lang",
  4836. "version": "3.0.19",
  4837. "source": {
  4838. "type": "git",
  4839. "url": "https://github.com/overtrue/laravel-lang.git",
  4840. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89"
  4841. },
  4842. "dist": {
  4843. "type": "zip",
  4844. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/fb6de57a454792833c96ffdcd4999c90468deb89",
  4845. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89",
  4846. "shasum": "",
  4847. "mirrors": [
  4848. {
  4849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4850. "preferred": true
  4851. }
  4852. ]
  4853. },
  4854. "require": {
  4855. "laravel-lang/lang": "~3.0"
  4856. },
  4857. "type": "library",
  4858. "extra": {
  4859. "laravel": {
  4860. "providers": [
  4861. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  4862. ]
  4863. }
  4864. },
  4865. "autoload": {
  4866. "files": [
  4867. "src/helpers.php"
  4868. ],
  4869. "psr-4": {
  4870. "Overtrue\\LaravelLang\\": "src/"
  4871. }
  4872. },
  4873. "notification-url": "https://packagist.org/downloads/",
  4874. "license": [
  4875. "MIT"
  4876. ],
  4877. "authors": [
  4878. {
  4879. "name": "overtrue",
  4880. "email": "anzhengchao@gmail.com"
  4881. }
  4882. ],
  4883. "description": "List of 52 languages for Laravel 5",
  4884. "keywords": [
  4885. "languages",
  4886. "laravel",
  4887. "overtrue"
  4888. ],
  4889. "support": {
  4890. "issues": "https://github.com/overtrue/laravel-lang/issues",
  4891. "source": "https://github.com/overtrue/laravel-lang/tree/3.0.19"
  4892. },
  4893. "funding": [
  4894. {
  4895. "url": "https://www.patreon.com/overtrue",
  4896. "type": "patreon"
  4897. }
  4898. ],
  4899. "time": "2021-04-28T03:36:48+00:00"
  4900. },
  4901. {
  4902. "name": "overtrue/laravel-wechat",
  4903. "version": "5.1.0",
  4904. "source": {
  4905. "type": "git",
  4906. "url": "https://github.com/overtrue/laravel-wechat.git",
  4907. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  4908. },
  4909. "dist": {
  4910. "type": "zip",
  4911. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4912. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4913. "shasum": "",
  4914. "mirrors": [
  4915. {
  4916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4917. "preferred": true
  4918. }
  4919. ]
  4920. },
  4921. "require": {
  4922. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  4923. "overtrue/wechat": "^4.0"
  4924. },
  4925. "require-dev": {
  4926. "friendsofphp/php-cs-fixer": "^2.16",
  4927. "laravel/framework": "^8.5"
  4928. },
  4929. "type": "library",
  4930. "extra": {
  4931. "laravel": {
  4932. "providers": [
  4933. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4934. ],
  4935. "aliases": {
  4936. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4937. }
  4938. }
  4939. },
  4940. "autoload": {
  4941. "psr-4": {
  4942. "Overtrue\\LaravelWeChat\\": "src/"
  4943. }
  4944. },
  4945. "notification-url": "https://packagist.org/downloads/",
  4946. "license": [
  4947. "MIT"
  4948. ],
  4949. "authors": [
  4950. {
  4951. "name": "overtrue",
  4952. "email": "anzhengchao@gmail.com"
  4953. }
  4954. ],
  4955. "description": "微信 SDK for Laravel",
  4956. "keywords": [
  4957. "laravel",
  4958. "sdk",
  4959. "wechat",
  4960. "weixin"
  4961. ],
  4962. "support": {
  4963. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  4964. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  4965. },
  4966. "time": "2020-09-27T08:32:30+00:00"
  4967. },
  4968. {
  4969. "name": "overtrue/socialite",
  4970. "version": "2.0.24",
  4971. "source": {
  4972. "type": "git",
  4973. "url": "https://github.com/overtrue/socialite.git",
  4974. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  4975. },
  4976. "dist": {
  4977. "type": "zip",
  4978. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  4979. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  4980. "shasum": "",
  4981. "mirrors": [
  4982. {
  4983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4984. "preferred": true
  4985. }
  4986. ]
  4987. },
  4988. "require": {
  4989. "ext-json": "*",
  4990. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  4991. "php": ">=5.6",
  4992. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  4993. },
  4994. "require-dev": {
  4995. "mockery/mockery": "~1.2",
  4996. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  4997. },
  4998. "type": "library",
  4999. "autoload": {
  5000. "psr-4": {
  5001. "Overtrue\\Socialite\\": "src/"
  5002. }
  5003. },
  5004. "notification-url": "https://packagist.org/downloads/",
  5005. "license": [
  5006. "MIT"
  5007. ],
  5008. "authors": [
  5009. {
  5010. "name": "overtrue",
  5011. "email": "anzhengchao@gmail.com"
  5012. }
  5013. ],
  5014. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  5015. "keywords": [
  5016. "login",
  5017. "oauth",
  5018. "qq",
  5019. "social",
  5020. "wechat",
  5021. "weibo"
  5022. ],
  5023. "support": {
  5024. "issues": "https://github.com/overtrue/socialite/issues",
  5025. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  5026. },
  5027. "funding": [
  5028. {
  5029. "url": "https://www.patreon.com/overtrue",
  5030. "type": "patreon"
  5031. }
  5032. ],
  5033. "time": "2021-05-13T16:04:48+00:00"
  5034. },
  5035. {
  5036. "name": "overtrue/wechat",
  5037. "version": "4.5.0",
  5038. "source": {
  5039. "type": "git",
  5040. "url": "https://github.com/w7corp/easywechat.git",
  5041. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  5042. },
  5043. "dist": {
  5044. "type": "zip",
  5045. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5046. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5047. "shasum": "",
  5048. "mirrors": [
  5049. {
  5050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5051. "preferred": true
  5052. }
  5053. ]
  5054. },
  5055. "require": {
  5056. "easywechat-composer/easywechat-composer": "^1.1",
  5057. "ext-fileinfo": "*",
  5058. "ext-openssl": "*",
  5059. "ext-simplexml": "*",
  5060. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5061. "monolog/monolog": "^1.22 || ^2.0",
  5062. "overtrue/socialite": "~2.0",
  5063. "php": ">=7.2",
  5064. "pimple/pimple": "^3.0",
  5065. "psr/simple-cache": "^1.0",
  5066. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  5067. "symfony/event-dispatcher": "^4.3 || ^5.0",
  5068. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  5069. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  5070. },
  5071. "require-dev": {
  5072. "friendsofphp/php-cs-fixer": "^2.15",
  5073. "mikey179/vfsstream": "^1.6",
  5074. "mockery/mockery": "^1.2.3",
  5075. "phpstan/phpstan": "^0.12.0",
  5076. "phpunit/phpunit": "^7.5"
  5077. },
  5078. "type": "library",
  5079. "autoload": {
  5080. "files": [
  5081. "src/Kernel/Support/Helpers.php",
  5082. "src/Kernel/Helpers.php"
  5083. ],
  5084. "psr-4": {
  5085. "EasyWeChat\\": "src/"
  5086. }
  5087. },
  5088. "notification-url": "https://packagist.org/downloads/",
  5089. "license": [
  5090. "MIT"
  5091. ],
  5092. "authors": [
  5093. {
  5094. "name": "overtrue",
  5095. "email": "anzhengchao@gmail.com"
  5096. }
  5097. ],
  5098. "description": "微信SDK",
  5099. "keywords": [
  5100. "easywechat",
  5101. "sdk",
  5102. "wechat",
  5103. "weixin",
  5104. "weixin-sdk"
  5105. ],
  5106. "support": {
  5107. "issues": "https://github.com/w7corp/easywechat/issues",
  5108. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  5109. },
  5110. "funding": [
  5111. {
  5112. "url": "https://github.com/overtrue",
  5113. "type": "github"
  5114. }
  5115. ],
  5116. "time": "2021-12-27T13:56:47+00:00"
  5117. },
  5118. {
  5119. "name": "php-open-source-saver/jwt-auth",
  5120. "version": "1.4.2",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://github.com/PHP-Open-Source-Saver/jwt-auth.git",
  5124. "reference": "5fd8c185453d875835c24d4ce50be7396af6ae14"
  5125. },
  5126. "dist": {
  5127. "type": "zip",
  5128. "url": "https://api.github.com/repos/PHP-Open-Source-Saver/jwt-auth/zipball/5fd8c185453d875835c24d4ce50be7396af6ae14",
  5129. "reference": "5fd8c185453d875835c24d4ce50be7396af6ae14",
  5130. "shasum": "",
  5131. "mirrors": [
  5132. {
  5133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5134. "preferred": true
  5135. }
  5136. ]
  5137. },
  5138. "require": {
  5139. "ext-json": "*",
  5140. "illuminate/auth": "^6|^7|^8.67|^9",
  5141. "illuminate/contracts": "^6|^7|^8.67|^9",
  5142. "illuminate/http": "^6|^7|^8.67|^9",
  5143. "illuminate/support": "^6|^7|^8.67|^9",
  5144. "lcobucci/jwt": "^4.0",
  5145. "namshi/jose": "^7.0",
  5146. "nesbot/carbon": "^1.0|^2.0",
  5147. "php": "^7.4|^8.0"
  5148. },
  5149. "require-dev": {
  5150. "friendsofphp/php-cs-fixer": "^3",
  5151. "illuminate/console": "^6|^7|^8.67|^9",
  5152. "illuminate/routing": "^6|^7|^8.67|^9",
  5153. "mockery/mockery": "^1.4.4",
  5154. "orchestra/testbench": "^4.18|^5.8|^6.3|^7",
  5155. "phpstan/phpstan": "^1",
  5156. "phpunit/phpunit": "^8.5|^9.4",
  5157. "rector/rector": "^0.12.4",
  5158. "vlucas/phpdotenv": "^5.2.0",
  5159. "yoast/phpunit-polyfills": "^1.0.2"
  5160. },
  5161. "type": "library",
  5162. "extra": {
  5163. "branch-alias": {
  5164. "dev-develop": "1.0-dev"
  5165. },
  5166. "laravel": {
  5167. "aliases": {
  5168. "JWTAuth": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTAuth",
  5169. "JWTFactory": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTFactory"
  5170. },
  5171. "providers": [
  5172. "PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider"
  5173. ]
  5174. }
  5175. },
  5176. "autoload": {
  5177. "psr-4": {
  5178. "PHPOpenSourceSaver\\JWTAuth\\": "src/"
  5179. }
  5180. },
  5181. "notification-url": "https://packagist.org/downloads/",
  5182. "license": [
  5183. "MIT"
  5184. ],
  5185. "authors": [
  5186. {
  5187. "name": "Sean Tymon",
  5188. "email": "tymon148@gmail.com",
  5189. "homepage": "https://tymon.xyz",
  5190. "role": "Forked package creator | Developer"
  5191. },
  5192. {
  5193. "name": "Eric Schricker",
  5194. "email": "eric.schricker@adiutabyte.de",
  5195. "role": "Developer"
  5196. },
  5197. {
  5198. "name": "Fabio William Conceição",
  5199. "email": "messhias@gmail.com",
  5200. "role": "Developer"
  5201. }
  5202. ],
  5203. "description": "JSON Web Token Authentication for Laravel and Lumen",
  5204. "homepage": "https://github.com/PHP-Open-Source-Saver/jwt-auth",
  5205. "keywords": [
  5206. "Authentication",
  5207. "JSON Web Token",
  5208. "auth",
  5209. "jwt",
  5210. "laravel"
  5211. ],
  5212. "support": {
  5213. "issues": "https://github.com/PHP-Open-Source-Saver/jwt-auth/issues",
  5214. "source": "https://github.com/PHP-Open-Source-Saver/jwt-auth"
  5215. },
  5216. "time": "2022-04-22T06:31:30+00:00"
  5217. },
  5218. {
  5219. "name": "phpdocumentor/reflection-common",
  5220. "version": "2.2.0",
  5221. "source": {
  5222. "type": "git",
  5223. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5224. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5225. },
  5226. "dist": {
  5227. "type": "zip",
  5228. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5229. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5230. "shasum": "",
  5231. "mirrors": [
  5232. {
  5233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5234. "preferred": true
  5235. }
  5236. ]
  5237. },
  5238. "require": {
  5239. "php": "^7.2 || ^8.0"
  5240. },
  5241. "type": "library",
  5242. "extra": {
  5243. "branch-alias": {
  5244. "dev-2.x": "2.x-dev"
  5245. }
  5246. },
  5247. "autoload": {
  5248. "psr-4": {
  5249. "phpDocumentor\\Reflection\\": "src/"
  5250. }
  5251. },
  5252. "notification-url": "https://packagist.org/downloads/",
  5253. "license": [
  5254. "MIT"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "Jaap van Otterdijk",
  5259. "email": "opensource@ijaap.nl"
  5260. }
  5261. ],
  5262. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5263. "homepage": "http://www.phpdoc.org",
  5264. "keywords": [
  5265. "FQSEN",
  5266. "phpDocumentor",
  5267. "phpdoc",
  5268. "reflection",
  5269. "static analysis"
  5270. ],
  5271. "support": {
  5272. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5273. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5274. },
  5275. "time": "2020-06-27T09:03:43+00:00"
  5276. },
  5277. {
  5278. "name": "phpdocumentor/reflection-docblock",
  5279. "version": "5.3.0",
  5280. "source": {
  5281. "type": "git",
  5282. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5283. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  5284. },
  5285. "dist": {
  5286. "type": "zip",
  5287. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  5288. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  5289. "shasum": "",
  5290. "mirrors": [
  5291. {
  5292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5293. "preferred": true
  5294. }
  5295. ]
  5296. },
  5297. "require": {
  5298. "ext-filter": "*",
  5299. "php": "^7.2 || ^8.0",
  5300. "phpdocumentor/reflection-common": "^2.2",
  5301. "phpdocumentor/type-resolver": "^1.3",
  5302. "webmozart/assert": "^1.9.1"
  5303. },
  5304. "require-dev": {
  5305. "mockery/mockery": "~1.3.2",
  5306. "psalm/phar": "^4.8"
  5307. },
  5308. "type": "library",
  5309. "extra": {
  5310. "branch-alias": {
  5311. "dev-master": "5.x-dev"
  5312. }
  5313. },
  5314. "autoload": {
  5315. "psr-4": {
  5316. "phpDocumentor\\Reflection\\": "src"
  5317. }
  5318. },
  5319. "notification-url": "https://packagist.org/downloads/",
  5320. "license": [
  5321. "MIT"
  5322. ],
  5323. "authors": [
  5324. {
  5325. "name": "Mike van Riel",
  5326. "email": "me@mikevanriel.com"
  5327. },
  5328. {
  5329. "name": "Jaap van Otterdijk",
  5330. "email": "account@ijaap.nl"
  5331. }
  5332. ],
  5333. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5334. "support": {
  5335. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5336. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  5337. },
  5338. "time": "2021-10-19T17:43:47+00:00"
  5339. },
  5340. {
  5341. "name": "phpdocumentor/type-resolver",
  5342. "version": "1.6.1",
  5343. "source": {
  5344. "type": "git",
  5345. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5346. "reference": "77a32518733312af16a44300404e945338981de3"
  5347. },
  5348. "dist": {
  5349. "type": "zip",
  5350. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  5351. "reference": "77a32518733312af16a44300404e945338981de3",
  5352. "shasum": "",
  5353. "mirrors": [
  5354. {
  5355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5356. "preferred": true
  5357. }
  5358. ]
  5359. },
  5360. "require": {
  5361. "php": "^7.2 || ^8.0",
  5362. "phpdocumentor/reflection-common": "^2.0"
  5363. },
  5364. "require-dev": {
  5365. "ext-tokenizer": "*",
  5366. "psalm/phar": "^4.8"
  5367. },
  5368. "type": "library",
  5369. "extra": {
  5370. "branch-alias": {
  5371. "dev-1.x": "1.x-dev"
  5372. }
  5373. },
  5374. "autoload": {
  5375. "psr-4": {
  5376. "phpDocumentor\\Reflection\\": "src"
  5377. }
  5378. },
  5379. "notification-url": "https://packagist.org/downloads/",
  5380. "license": [
  5381. "MIT"
  5382. ],
  5383. "authors": [
  5384. {
  5385. "name": "Mike van Riel",
  5386. "email": "me@mikevanriel.com"
  5387. }
  5388. ],
  5389. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5390. "support": {
  5391. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5392. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  5393. },
  5394. "time": "2022-03-15T21:29:03+00:00"
  5395. },
  5396. {
  5397. "name": "phpoption/phpoption",
  5398. "version": "1.8.1",
  5399. "source": {
  5400. "type": "git",
  5401. "url": "https://github.com/schmittjoh/php-option.git",
  5402. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  5403. },
  5404. "dist": {
  5405. "type": "zip",
  5406. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5407. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5408. "shasum": "",
  5409. "mirrors": [
  5410. {
  5411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5412. "preferred": true
  5413. }
  5414. ]
  5415. },
  5416. "require": {
  5417. "php": "^7.0 || ^8.0"
  5418. },
  5419. "require-dev": {
  5420. "bamarni/composer-bin-plugin": "^1.4.1",
  5421. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  5422. },
  5423. "type": "library",
  5424. "extra": {
  5425. "branch-alias": {
  5426. "dev-master": "1.8-dev"
  5427. }
  5428. },
  5429. "autoload": {
  5430. "psr-4": {
  5431. "PhpOption\\": "src/PhpOption/"
  5432. }
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "Apache-2.0"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Johannes M. Schmitt",
  5441. "email": "schmittjoh@gmail.com",
  5442. "homepage": "https://github.com/schmittjoh"
  5443. },
  5444. {
  5445. "name": "Graham Campbell",
  5446. "email": "hello@gjcampbell.co.uk",
  5447. "homepage": "https://github.com/GrahamCampbell"
  5448. }
  5449. ],
  5450. "description": "Option Type for PHP",
  5451. "keywords": [
  5452. "language",
  5453. "option",
  5454. "php",
  5455. "type"
  5456. ],
  5457. "support": {
  5458. "issues": "https://github.com/schmittjoh/php-option/issues",
  5459. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  5460. },
  5461. "funding": [
  5462. {
  5463. "url": "https://github.com/GrahamCampbell",
  5464. "type": "github"
  5465. },
  5466. {
  5467. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5468. "type": "tidelift"
  5469. }
  5470. ],
  5471. "time": "2021-12-04T23:24:31+00:00"
  5472. },
  5473. {
  5474. "name": "pimple/pimple",
  5475. "version": "v3.5.0",
  5476. "source": {
  5477. "type": "git",
  5478. "url": "https://github.com/silexphp/Pimple.git",
  5479. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  5480. },
  5481. "dist": {
  5482. "type": "zip",
  5483. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5484. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5485. "shasum": "",
  5486. "mirrors": [
  5487. {
  5488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5489. "preferred": true
  5490. }
  5491. ]
  5492. },
  5493. "require": {
  5494. "php": ">=7.2.5",
  5495. "psr/container": "^1.1 || ^2.0"
  5496. },
  5497. "require-dev": {
  5498. "symfony/phpunit-bridge": "^5.4@dev"
  5499. },
  5500. "type": "library",
  5501. "extra": {
  5502. "branch-alias": {
  5503. "dev-master": "3.4.x-dev"
  5504. }
  5505. },
  5506. "autoload": {
  5507. "psr-0": {
  5508. "Pimple": "src/"
  5509. }
  5510. },
  5511. "notification-url": "https://packagist.org/downloads/",
  5512. "license": [
  5513. "MIT"
  5514. ],
  5515. "authors": [
  5516. {
  5517. "name": "Fabien Potencier",
  5518. "email": "fabien@symfony.com"
  5519. }
  5520. ],
  5521. "description": "Pimple, a simple Dependency Injection Container",
  5522. "homepage": "https://pimple.symfony.com",
  5523. "keywords": [
  5524. "container",
  5525. "dependency injection"
  5526. ],
  5527. "support": {
  5528. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  5529. },
  5530. "time": "2021-10-28T11:13:42+00:00"
  5531. },
  5532. {
  5533. "name": "prettus/l5-repository",
  5534. "version": "2.8.0",
  5535. "source": {
  5536. "type": "git",
  5537. "url": "https://github.com/andersao/l5-repository.git",
  5538. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea"
  5539. },
  5540. "dist": {
  5541. "type": "zip",
  5542. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5543. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5544. "shasum": "",
  5545. "mirrors": [
  5546. {
  5547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5548. "preferred": true
  5549. }
  5550. ]
  5551. },
  5552. "require": {
  5553. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5554. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5555. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5556. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5557. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5558. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5559. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5560. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5561. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4"
  5562. },
  5563. "suggest": {
  5564. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  5565. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  5566. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  5567. },
  5568. "type": "library",
  5569. "extra": {
  5570. "laravel": {
  5571. "providers": [
  5572. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  5573. ]
  5574. }
  5575. },
  5576. "autoload": {
  5577. "psr-4": {
  5578. "Prettus\\Repository\\": "src/Prettus/Repository/"
  5579. }
  5580. },
  5581. "notification-url": "https://packagist.org/downloads/",
  5582. "license": [
  5583. "MIT"
  5584. ],
  5585. "authors": [
  5586. {
  5587. "name": "Anderson Andrade",
  5588. "email": "contato@andersonandra.de",
  5589. "homepage": "http://andersonandra.de",
  5590. "role": "Developer"
  5591. }
  5592. ],
  5593. "description": "Laravel 5|6|7|8|9 - Repositories to the database layer",
  5594. "homepage": "http://andersao.github.io/l5-repository",
  5595. "keywords": [
  5596. "cache",
  5597. "eloquent",
  5598. "laravel",
  5599. "model",
  5600. "repository"
  5601. ],
  5602. "support": {
  5603. "docs": "http://andersao.github.io/l5-repository",
  5604. "email": "contato@andersonandra.de",
  5605. "issues": "https://github.com/andersao/l5-repository/issues",
  5606. "source": "https://github.com/andersao/l5-repository",
  5607. "wiki": "https://github.com/andersao/l5-repository"
  5608. },
  5609. "time": "2022-02-21T11:19:35+00:00"
  5610. },
  5611. {
  5612. "name": "prettus/laravel-validation",
  5613. "version": "1.4.0",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://github.com/andersao/laravel-validator.git",
  5617. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9"
  5618. },
  5619. "dist": {
  5620. "type": "zip",
  5621. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  5622. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  5623. "shasum": "",
  5624. "mirrors": [
  5625. {
  5626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5627. "preferred": true
  5628. }
  5629. ]
  5630. },
  5631. "require": {
  5632. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0",
  5633. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0",
  5634. "php": ">=5.4.0"
  5635. },
  5636. "type": "library",
  5637. "autoload": {
  5638. "psr-4": {
  5639. "Prettus\\Validator\\": "src/Prettus/Validator/"
  5640. }
  5641. },
  5642. "notification-url": "https://packagist.org/downloads/",
  5643. "authors": [
  5644. {
  5645. "name": "Anderson Andrade",
  5646. "email": "contato@andersonandra.de",
  5647. "homepage": "http://andersonandra.de",
  5648. "role": "Developer"
  5649. }
  5650. ],
  5651. "description": "Laravel Validation Service",
  5652. "homepage": "http://andersao.github.io/laravel-validation",
  5653. "keywords": [
  5654. "laravel",
  5655. "service",
  5656. "validation"
  5657. ],
  5658. "support": {
  5659. "docs": "http://andersao.github.io/laravel-validation",
  5660. "email": "contato@andersonandra.de",
  5661. "issues": "https://github.com/andersao/laravel-validation/issues",
  5662. "source": "https://github.com/andersao/laravel-validation",
  5663. "wiki": "https://github.com/andersao/laravel-validation"
  5664. },
  5665. "time": "2022-02-21T11:18:30+00:00"
  5666. },
  5667. {
  5668. "name": "psr/cache",
  5669. "version": "2.0.0",
  5670. "source": {
  5671. "type": "git",
  5672. "url": "https://github.com/php-fig/cache.git",
  5673. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  5674. },
  5675. "dist": {
  5676. "type": "zip",
  5677. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5678. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5679. "shasum": "",
  5680. "mirrors": [
  5681. {
  5682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5683. "preferred": true
  5684. }
  5685. ]
  5686. },
  5687. "require": {
  5688. "php": ">=8.0.0"
  5689. },
  5690. "type": "library",
  5691. "extra": {
  5692. "branch-alias": {
  5693. "dev-master": "1.0.x-dev"
  5694. }
  5695. },
  5696. "autoload": {
  5697. "psr-4": {
  5698. "Psr\\Cache\\": "src/"
  5699. }
  5700. },
  5701. "notification-url": "https://packagist.org/downloads/",
  5702. "license": [
  5703. "MIT"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "PHP-FIG",
  5708. "homepage": "https://www.php-fig.org/"
  5709. }
  5710. ],
  5711. "description": "Common interface for caching libraries",
  5712. "keywords": [
  5713. "cache",
  5714. "psr",
  5715. "psr-6"
  5716. ],
  5717. "support": {
  5718. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  5719. },
  5720. "time": "2021-02-03T23:23:37+00:00"
  5721. },
  5722. {
  5723. "name": "psr/container",
  5724. "version": "1.1.2",
  5725. "source": {
  5726. "type": "git",
  5727. "url": "https://github.com/php-fig/container.git",
  5728. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  5729. },
  5730. "dist": {
  5731. "type": "zip",
  5732. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  5733. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  5734. "shasum": "",
  5735. "mirrors": [
  5736. {
  5737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5738. "preferred": true
  5739. }
  5740. ]
  5741. },
  5742. "require": {
  5743. "php": ">=7.4.0"
  5744. },
  5745. "type": "library",
  5746. "autoload": {
  5747. "psr-4": {
  5748. "Psr\\Container\\": "src/"
  5749. }
  5750. },
  5751. "notification-url": "https://packagist.org/downloads/",
  5752. "license": [
  5753. "MIT"
  5754. ],
  5755. "authors": [
  5756. {
  5757. "name": "PHP-FIG",
  5758. "homepage": "https://www.php-fig.org/"
  5759. }
  5760. ],
  5761. "description": "Common Container Interface (PHP FIG PSR-11)",
  5762. "homepage": "https://github.com/php-fig/container",
  5763. "keywords": [
  5764. "PSR-11",
  5765. "container",
  5766. "container-interface",
  5767. "container-interop",
  5768. "psr"
  5769. ],
  5770. "support": {
  5771. "issues": "https://github.com/php-fig/container/issues",
  5772. "source": "https://github.com/php-fig/container/tree/1.1.2"
  5773. },
  5774. "time": "2021-11-05T16:50:12+00:00"
  5775. },
  5776. {
  5777. "name": "psr/event-dispatcher",
  5778. "version": "1.0.0",
  5779. "source": {
  5780. "type": "git",
  5781. "url": "https://github.com/php-fig/event-dispatcher.git",
  5782. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5783. },
  5784. "dist": {
  5785. "type": "zip",
  5786. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5787. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5788. "shasum": "",
  5789. "mirrors": [
  5790. {
  5791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5792. "preferred": true
  5793. }
  5794. ]
  5795. },
  5796. "require": {
  5797. "php": ">=7.2.0"
  5798. },
  5799. "type": "library",
  5800. "extra": {
  5801. "branch-alias": {
  5802. "dev-master": "1.0.x-dev"
  5803. }
  5804. },
  5805. "autoload": {
  5806. "psr-4": {
  5807. "Psr\\EventDispatcher\\": "src/"
  5808. }
  5809. },
  5810. "notification-url": "https://packagist.org/downloads/",
  5811. "license": [
  5812. "MIT"
  5813. ],
  5814. "authors": [
  5815. {
  5816. "name": "PHP-FIG",
  5817. "homepage": "http://www.php-fig.org/"
  5818. }
  5819. ],
  5820. "description": "Standard interfaces for event handling.",
  5821. "keywords": [
  5822. "events",
  5823. "psr",
  5824. "psr-14"
  5825. ],
  5826. "support": {
  5827. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5828. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5829. },
  5830. "time": "2019-01-08T18:20:26+00:00"
  5831. },
  5832. {
  5833. "name": "psr/http-client",
  5834. "version": "1.0.1",
  5835. "source": {
  5836. "type": "git",
  5837. "url": "https://github.com/php-fig/http-client.git",
  5838. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  5839. },
  5840. "dist": {
  5841. "type": "zip",
  5842. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5843. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5844. "shasum": "",
  5845. "mirrors": [
  5846. {
  5847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5848. "preferred": true
  5849. }
  5850. ]
  5851. },
  5852. "require": {
  5853. "php": "^7.0 || ^8.0",
  5854. "psr/http-message": "^1.0"
  5855. },
  5856. "type": "library",
  5857. "extra": {
  5858. "branch-alias": {
  5859. "dev-master": "1.0.x-dev"
  5860. }
  5861. },
  5862. "autoload": {
  5863. "psr-4": {
  5864. "Psr\\Http\\Client\\": "src/"
  5865. }
  5866. },
  5867. "notification-url": "https://packagist.org/downloads/",
  5868. "license": [
  5869. "MIT"
  5870. ],
  5871. "authors": [
  5872. {
  5873. "name": "PHP-FIG",
  5874. "homepage": "http://www.php-fig.org/"
  5875. }
  5876. ],
  5877. "description": "Common interface for HTTP clients",
  5878. "homepage": "https://github.com/php-fig/http-client",
  5879. "keywords": [
  5880. "http",
  5881. "http-client",
  5882. "psr",
  5883. "psr-18"
  5884. ],
  5885. "support": {
  5886. "source": "https://github.com/php-fig/http-client/tree/master"
  5887. },
  5888. "time": "2020-06-29T06:28:15+00:00"
  5889. },
  5890. {
  5891. "name": "psr/http-factory",
  5892. "version": "1.0.1",
  5893. "source": {
  5894. "type": "git",
  5895. "url": "https://github.com/php-fig/http-factory.git",
  5896. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  5897. },
  5898. "dist": {
  5899. "type": "zip",
  5900. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5901. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5902. "shasum": "",
  5903. "mirrors": [
  5904. {
  5905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5906. "preferred": true
  5907. }
  5908. ]
  5909. },
  5910. "require": {
  5911. "php": ">=7.0.0",
  5912. "psr/http-message": "^1.0"
  5913. },
  5914. "type": "library",
  5915. "extra": {
  5916. "branch-alias": {
  5917. "dev-master": "1.0.x-dev"
  5918. }
  5919. },
  5920. "autoload": {
  5921. "psr-4": {
  5922. "Psr\\Http\\Message\\": "src/"
  5923. }
  5924. },
  5925. "notification-url": "https://packagist.org/downloads/",
  5926. "license": [
  5927. "MIT"
  5928. ],
  5929. "authors": [
  5930. {
  5931. "name": "PHP-FIG",
  5932. "homepage": "http://www.php-fig.org/"
  5933. }
  5934. ],
  5935. "description": "Common interfaces for PSR-7 HTTP message factories",
  5936. "keywords": [
  5937. "factory",
  5938. "http",
  5939. "message",
  5940. "psr",
  5941. "psr-17",
  5942. "psr-7",
  5943. "request",
  5944. "response"
  5945. ],
  5946. "support": {
  5947. "source": "https://github.com/php-fig/http-factory/tree/master"
  5948. },
  5949. "time": "2019-04-30T12:38:16+00:00"
  5950. },
  5951. {
  5952. "name": "psr/http-message",
  5953. "version": "1.0.1",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://github.com/php-fig/http-message.git",
  5957. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5962. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5963. "shasum": "",
  5964. "mirrors": [
  5965. {
  5966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5967. "preferred": true
  5968. }
  5969. ]
  5970. },
  5971. "require": {
  5972. "php": ">=5.3.0"
  5973. },
  5974. "type": "library",
  5975. "extra": {
  5976. "branch-alias": {
  5977. "dev-master": "1.0.x-dev"
  5978. }
  5979. },
  5980. "autoload": {
  5981. "psr-4": {
  5982. "Psr\\Http\\Message\\": "src/"
  5983. }
  5984. },
  5985. "notification-url": "https://packagist.org/downloads/",
  5986. "license": [
  5987. "MIT"
  5988. ],
  5989. "authors": [
  5990. {
  5991. "name": "PHP-FIG",
  5992. "homepage": "http://www.php-fig.org/"
  5993. }
  5994. ],
  5995. "description": "Common interface for HTTP messages",
  5996. "homepage": "https://github.com/php-fig/http-message",
  5997. "keywords": [
  5998. "http",
  5999. "http-message",
  6000. "psr",
  6001. "psr-7",
  6002. "request",
  6003. "response"
  6004. ],
  6005. "support": {
  6006. "source": "https://github.com/php-fig/http-message/tree/master"
  6007. },
  6008. "time": "2016-08-06T14:39:51+00:00"
  6009. },
  6010. {
  6011. "name": "psr/log",
  6012. "version": "2.0.0",
  6013. "source": {
  6014. "type": "git",
  6015. "url": "https://github.com/php-fig/log.git",
  6016. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  6017. },
  6018. "dist": {
  6019. "type": "zip",
  6020. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  6021. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  6022. "shasum": "",
  6023. "mirrors": [
  6024. {
  6025. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6026. "preferred": true
  6027. }
  6028. ]
  6029. },
  6030. "require": {
  6031. "php": ">=8.0.0"
  6032. },
  6033. "type": "library",
  6034. "extra": {
  6035. "branch-alias": {
  6036. "dev-master": "2.0.x-dev"
  6037. }
  6038. },
  6039. "autoload": {
  6040. "psr-4": {
  6041. "Psr\\Log\\": "src"
  6042. }
  6043. },
  6044. "notification-url": "https://packagist.org/downloads/",
  6045. "license": [
  6046. "MIT"
  6047. ],
  6048. "authors": [
  6049. {
  6050. "name": "PHP-FIG",
  6051. "homepage": "https://www.php-fig.org/"
  6052. }
  6053. ],
  6054. "description": "Common interface for logging libraries",
  6055. "homepage": "https://github.com/php-fig/log",
  6056. "keywords": [
  6057. "log",
  6058. "psr",
  6059. "psr-3"
  6060. ],
  6061. "support": {
  6062. "source": "https://github.com/php-fig/log/tree/2.0.0"
  6063. },
  6064. "time": "2021-07-14T16:41:46+00:00"
  6065. },
  6066. {
  6067. "name": "psr/simple-cache",
  6068. "version": "1.0.1",
  6069. "source": {
  6070. "type": "git",
  6071. "url": "https://github.com/php-fig/simple-cache.git",
  6072. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  6073. },
  6074. "dist": {
  6075. "type": "zip",
  6076. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6077. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6078. "shasum": "",
  6079. "mirrors": [
  6080. {
  6081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6082. "preferred": true
  6083. }
  6084. ]
  6085. },
  6086. "require": {
  6087. "php": ">=5.3.0"
  6088. },
  6089. "type": "library",
  6090. "extra": {
  6091. "branch-alias": {
  6092. "dev-master": "1.0.x-dev"
  6093. }
  6094. },
  6095. "autoload": {
  6096. "psr-4": {
  6097. "Psr\\SimpleCache\\": "src/"
  6098. }
  6099. },
  6100. "notification-url": "https://packagist.org/downloads/",
  6101. "license": [
  6102. "MIT"
  6103. ],
  6104. "authors": [
  6105. {
  6106. "name": "PHP-FIG",
  6107. "homepage": "http://www.php-fig.org/"
  6108. }
  6109. ],
  6110. "description": "Common interfaces for simple caching",
  6111. "keywords": [
  6112. "cache",
  6113. "caching",
  6114. "psr",
  6115. "psr-16",
  6116. "simple-cache"
  6117. ],
  6118. "support": {
  6119. "source": "https://github.com/php-fig/simple-cache/tree/master"
  6120. },
  6121. "time": "2017-10-23T01:57:42+00:00"
  6122. },
  6123. {
  6124. "name": "psy/psysh",
  6125. "version": "v0.11.6",
  6126. "source": {
  6127. "type": "git",
  6128. "url": "https://github.com/bobthecow/psysh.git",
  6129. "reference": "3f5b5f8aaa979fbd0d1783173f4c82ad529fe621"
  6130. },
  6131. "dist": {
  6132. "type": "zip",
  6133. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3f5b5f8aaa979fbd0d1783173f4c82ad529fe621",
  6134. "reference": "3f5b5f8aaa979fbd0d1783173f4c82ad529fe621",
  6135. "shasum": "",
  6136. "mirrors": [
  6137. {
  6138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6139. "preferred": true
  6140. }
  6141. ]
  6142. },
  6143. "require": {
  6144. "ext-json": "*",
  6145. "ext-tokenizer": "*",
  6146. "nikic/php-parser": "^4.0 || ^3.1",
  6147. "php": "^8.0 || ^7.0.8",
  6148. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  6149. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  6150. },
  6151. "conflict": {
  6152. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6153. },
  6154. "require-dev": {
  6155. "bamarni/composer-bin-plugin": "^1.2"
  6156. },
  6157. "suggest": {
  6158. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6159. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6160. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6161. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  6162. },
  6163. "bin": [
  6164. "bin/psysh"
  6165. ],
  6166. "type": "library",
  6167. "extra": {
  6168. "branch-alias": {
  6169. "dev-main": "0.11.x-dev"
  6170. }
  6171. },
  6172. "autoload": {
  6173. "files": [
  6174. "src/functions.php"
  6175. ],
  6176. "psr-4": {
  6177. "Psy\\": "src/"
  6178. }
  6179. },
  6180. "notification-url": "https://packagist.org/downloads/",
  6181. "license": [
  6182. "MIT"
  6183. ],
  6184. "authors": [
  6185. {
  6186. "name": "Justin Hileman",
  6187. "email": "justin@justinhileman.info",
  6188. "homepage": "http://justinhileman.com"
  6189. }
  6190. ],
  6191. "description": "An interactive shell for modern PHP.",
  6192. "homepage": "http://psysh.org",
  6193. "keywords": [
  6194. "REPL",
  6195. "console",
  6196. "interactive",
  6197. "shell"
  6198. ],
  6199. "support": {
  6200. "issues": "https://github.com/bobthecow/psysh/issues",
  6201. "source": "https://github.com/bobthecow/psysh/tree/v0.11.6"
  6202. },
  6203. "time": "2022-07-03T16:40:23+00:00"
  6204. },
  6205. {
  6206. "name": "ralouphie/getallheaders",
  6207. "version": "3.0.3",
  6208. "source": {
  6209. "type": "git",
  6210. "url": "https://github.com/ralouphie/getallheaders.git",
  6211. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6212. },
  6213. "dist": {
  6214. "type": "zip",
  6215. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6216. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6217. "shasum": "",
  6218. "mirrors": [
  6219. {
  6220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6221. "preferred": true
  6222. }
  6223. ]
  6224. },
  6225. "require": {
  6226. "php": ">=5.6"
  6227. },
  6228. "require-dev": {
  6229. "php-coveralls/php-coveralls": "^2.1",
  6230. "phpunit/phpunit": "^5 || ^6.5"
  6231. },
  6232. "type": "library",
  6233. "autoload": {
  6234. "files": [
  6235. "src/getallheaders.php"
  6236. ]
  6237. },
  6238. "notification-url": "https://packagist.org/downloads/",
  6239. "license": [
  6240. "MIT"
  6241. ],
  6242. "authors": [
  6243. {
  6244. "name": "Ralph Khattar",
  6245. "email": "ralph.khattar@gmail.com"
  6246. }
  6247. ],
  6248. "description": "A polyfill for getallheaders.",
  6249. "support": {
  6250. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6251. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6252. },
  6253. "time": "2019-03-08T08:55:37+00:00"
  6254. },
  6255. {
  6256. "name": "ramsey/collection",
  6257. "version": "1.2.2",
  6258. "source": {
  6259. "type": "git",
  6260. "url": "https://github.com/ramsey/collection.git",
  6261. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  6262. },
  6263. "dist": {
  6264. "type": "zip",
  6265. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6266. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6267. "shasum": "",
  6268. "mirrors": [
  6269. {
  6270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6271. "preferred": true
  6272. }
  6273. ]
  6274. },
  6275. "require": {
  6276. "php": "^7.3 || ^8",
  6277. "symfony/polyfill-php81": "^1.23"
  6278. },
  6279. "require-dev": {
  6280. "captainhook/captainhook": "^5.3",
  6281. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6282. "ergebnis/composer-normalize": "^2.6",
  6283. "fakerphp/faker": "^1.5",
  6284. "hamcrest/hamcrest-php": "^2",
  6285. "jangregor/phpstan-prophecy": "^0.8",
  6286. "mockery/mockery": "^1.3",
  6287. "phpspec/prophecy-phpunit": "^2.0",
  6288. "phpstan/extension-installer": "^1",
  6289. "phpstan/phpstan": "^0.12.32",
  6290. "phpstan/phpstan-mockery": "^0.12.5",
  6291. "phpstan/phpstan-phpunit": "^0.12.11",
  6292. "phpunit/phpunit": "^8.5 || ^9",
  6293. "psy/psysh": "^0.10.4",
  6294. "slevomat/coding-standard": "^6.3",
  6295. "squizlabs/php_codesniffer": "^3.5",
  6296. "vimeo/psalm": "^4.4"
  6297. },
  6298. "type": "library",
  6299. "autoload": {
  6300. "psr-4": {
  6301. "Ramsey\\Collection\\": "src/"
  6302. }
  6303. },
  6304. "notification-url": "https://packagist.org/downloads/",
  6305. "license": [
  6306. "MIT"
  6307. ],
  6308. "authors": [
  6309. {
  6310. "name": "Ben Ramsey",
  6311. "email": "ben@benramsey.com",
  6312. "homepage": "https://benramsey.com"
  6313. }
  6314. ],
  6315. "description": "A PHP library for representing and manipulating collections.",
  6316. "keywords": [
  6317. "array",
  6318. "collection",
  6319. "hash",
  6320. "map",
  6321. "queue",
  6322. "set"
  6323. ],
  6324. "support": {
  6325. "issues": "https://github.com/ramsey/collection/issues",
  6326. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  6327. },
  6328. "funding": [
  6329. {
  6330. "url": "https://github.com/ramsey",
  6331. "type": "github"
  6332. },
  6333. {
  6334. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6335. "type": "tidelift"
  6336. }
  6337. ],
  6338. "time": "2021-10-10T03:01:02+00:00"
  6339. },
  6340. {
  6341. "name": "ramsey/uuid",
  6342. "version": "4.3.1",
  6343. "source": {
  6344. "type": "git",
  6345. "url": "https://github.com/ramsey/uuid.git",
  6346. "reference": "8505afd4fea63b81a85d3b7b53ac3cb8dc347c28"
  6347. },
  6348. "dist": {
  6349. "type": "zip",
  6350. "url": "https://api.github.com/repos/ramsey/uuid/zipball/8505afd4fea63b81a85d3b7b53ac3cb8dc347c28",
  6351. "reference": "8505afd4fea63b81a85d3b7b53ac3cb8dc347c28",
  6352. "shasum": "",
  6353. "mirrors": [
  6354. {
  6355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6356. "preferred": true
  6357. }
  6358. ]
  6359. },
  6360. "require": {
  6361. "brick/math": "^0.8 || ^0.9",
  6362. "ext-ctype": "*",
  6363. "ext-json": "*",
  6364. "php": "^8.0",
  6365. "ramsey/collection": "^1.0"
  6366. },
  6367. "replace": {
  6368. "rhumsaa/uuid": "self.version"
  6369. },
  6370. "require-dev": {
  6371. "captainhook/captainhook": "^5.10",
  6372. "captainhook/plugin-composer": "^5.3",
  6373. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6374. "doctrine/annotations": "^1.8",
  6375. "ergebnis/composer-normalize": "^2.15",
  6376. "mockery/mockery": "^1.3",
  6377. "moontoast/math": "^1.1",
  6378. "paragonie/random-lib": "^2",
  6379. "php-mock/php-mock": "^2.2",
  6380. "php-mock/php-mock-mockery": "^1.3",
  6381. "php-parallel-lint/php-parallel-lint": "^1.1",
  6382. "phpbench/phpbench": "^1.0",
  6383. "phpstan/extension-installer": "^1.0",
  6384. "phpstan/phpstan": "^0.12",
  6385. "phpstan/phpstan-mockery": "^0.12",
  6386. "phpstan/phpstan-phpunit": "^0.12",
  6387. "phpunit/phpunit": "^8.5 || ^9",
  6388. "slevomat/coding-standard": "^7.0",
  6389. "squizlabs/php_codesniffer": "^3.5",
  6390. "vimeo/psalm": "^4.9"
  6391. },
  6392. "suggest": {
  6393. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6394. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  6395. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6396. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6397. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6398. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6399. },
  6400. "type": "library",
  6401. "extra": {
  6402. "captainhook": {
  6403. "force-install": true
  6404. }
  6405. },
  6406. "autoload": {
  6407. "files": [
  6408. "src/functions.php"
  6409. ],
  6410. "psr-4": {
  6411. "Ramsey\\Uuid\\": "src/"
  6412. }
  6413. },
  6414. "notification-url": "https://packagist.org/downloads/",
  6415. "license": [
  6416. "MIT"
  6417. ],
  6418. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6419. "keywords": [
  6420. "guid",
  6421. "identifier",
  6422. "uuid"
  6423. ],
  6424. "support": {
  6425. "issues": "https://github.com/ramsey/uuid/issues",
  6426. "source": "https://github.com/ramsey/uuid/tree/4.3.1"
  6427. },
  6428. "funding": [
  6429. {
  6430. "url": "https://github.com/ramsey",
  6431. "type": "github"
  6432. },
  6433. {
  6434. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6435. "type": "tidelift"
  6436. }
  6437. ],
  6438. "time": "2022-03-27T21:42:02+00:00"
  6439. },
  6440. {
  6441. "name": "socialiteproviders/facebook",
  6442. "version": "4.1.0",
  6443. "source": {
  6444. "type": "git",
  6445. "url": "https://github.com/SocialiteProviders/Facebook.git",
  6446. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d"
  6447. },
  6448. "dist": {
  6449. "type": "zip",
  6450. "url": "https://api.github.com/repos/SocialiteProviders/Facebook/zipball/9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6451. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6452. "shasum": "",
  6453. "mirrors": [
  6454. {
  6455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6456. "preferred": true
  6457. }
  6458. ]
  6459. },
  6460. "require": {
  6461. "ext-json": "*",
  6462. "php": "^7.2 || ^8.0",
  6463. "socialiteproviders/manager": "~4.0"
  6464. },
  6465. "type": "library",
  6466. "autoload": {
  6467. "psr-4": {
  6468. "SocialiteProviders\\Facebook\\": ""
  6469. }
  6470. },
  6471. "notification-url": "https://packagist.org/downloads/",
  6472. "license": [
  6473. "MIT"
  6474. ],
  6475. "authors": [
  6476. {
  6477. "name": "Oleksandr Prypkhan (Alex Wells)",
  6478. "email": "autaut03@googlemail.com"
  6479. }
  6480. ],
  6481. "description": "Facebook (facebook.com) OAuth2 Provider for Laravel Socialite",
  6482. "support": {
  6483. "source": "https://github.com/SocialiteProviders/Facebook/tree/4.1.0"
  6484. },
  6485. "time": "2020-12-01T23:10:59+00:00"
  6486. },
  6487. {
  6488. "name": "socialiteproviders/manager",
  6489. "version": "v4.1.0",
  6490. "source": {
  6491. "type": "git",
  6492. "url": "https://github.com/SocialiteProviders/Manager.git",
  6493. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9"
  6494. },
  6495. "dist": {
  6496. "type": "zip",
  6497. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6498. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6499. "shasum": "",
  6500. "mirrors": [
  6501. {
  6502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6503. "preferred": true
  6504. }
  6505. ]
  6506. },
  6507. "require": {
  6508. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  6509. "laravel/socialite": "~4.0 || ~5.0",
  6510. "php": "^7.2 || ^8.0"
  6511. },
  6512. "require-dev": {
  6513. "mockery/mockery": "^1.2",
  6514. "phpunit/phpunit": "^6.0 || ^9.0"
  6515. },
  6516. "type": "library",
  6517. "extra": {
  6518. "laravel": {
  6519. "providers": [
  6520. "SocialiteProviders\\Manager\\ServiceProvider"
  6521. ]
  6522. }
  6523. },
  6524. "autoload": {
  6525. "psr-4": {
  6526. "SocialiteProviders\\Manager\\": "src/"
  6527. }
  6528. },
  6529. "notification-url": "https://packagist.org/downloads/",
  6530. "license": [
  6531. "MIT"
  6532. ],
  6533. "authors": [
  6534. {
  6535. "name": "Andy Wendt",
  6536. "email": "andy@awendt.com"
  6537. },
  6538. {
  6539. "name": "Anton Komarev",
  6540. "email": "a.komarev@cybercog.su"
  6541. },
  6542. {
  6543. "name": "Miguel Piedrafita",
  6544. "email": "soy@miguelpiedrafita.com"
  6545. },
  6546. {
  6547. "name": "atymic",
  6548. "email": "atymicq@gmail.com",
  6549. "homepage": "https://atymic.dev"
  6550. }
  6551. ],
  6552. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  6553. "homepage": "https://socialiteproviders.com",
  6554. "keywords": [
  6555. "laravel",
  6556. "manager",
  6557. "oauth",
  6558. "providers",
  6559. "socialite"
  6560. ],
  6561. "support": {
  6562. "issues": "https://github.com/socialiteproviders/manager/issues",
  6563. "source": "https://github.com/socialiteproviders/manager"
  6564. },
  6565. "time": "2022-01-23T22:40:23+00:00"
  6566. },
  6567. {
  6568. "name": "socialiteproviders/weixin",
  6569. "version": "4.1.0",
  6570. "source": {
  6571. "type": "git",
  6572. "url": "https://github.com/SocialiteProviders/Weixin.git",
  6573. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  6574. },
  6575. "dist": {
  6576. "type": "zip",
  6577. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6578. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6579. "shasum": "",
  6580. "mirrors": [
  6581. {
  6582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6583. "preferred": true
  6584. }
  6585. ]
  6586. },
  6587. "require": {
  6588. "ext-json": "*",
  6589. "php": "^7.2 || ^8.0",
  6590. "socialiteproviders/manager": "~4.0"
  6591. },
  6592. "type": "library",
  6593. "autoload": {
  6594. "psr-4": {
  6595. "SocialiteProviders\\Weixin\\": ""
  6596. }
  6597. },
  6598. "notification-url": "https://packagist.org/downloads/",
  6599. "license": [
  6600. "MIT"
  6601. ],
  6602. "authors": [
  6603. {
  6604. "name": "xyxu",
  6605. "email": "techxu@gmail.com"
  6606. },
  6607. {
  6608. "name": "xiami",
  6609. "email": "jhdxr@php.net"
  6610. }
  6611. ],
  6612. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  6613. "support": {
  6614. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  6615. },
  6616. "time": "2020-12-01T23:10:59+00:00"
  6617. },
  6618. {
  6619. "name": "spatie/eloquent-sortable",
  6620. "version": "4.0.1",
  6621. "source": {
  6622. "type": "git",
  6623. "url": "https://github.com/spatie/eloquent-sortable.git",
  6624. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a"
  6625. },
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  6629. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  6630. "shasum": "",
  6631. "mirrors": [
  6632. {
  6633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6634. "preferred": true
  6635. }
  6636. ]
  6637. },
  6638. "require": {
  6639. "illuminate/database": "^8.0|^9.0",
  6640. "illuminate/support": "^8.0|^9.0",
  6641. "php": "^8.0",
  6642. "spatie/laravel-package-tools": "^1.9"
  6643. },
  6644. "require-dev": {
  6645. "orchestra/testbench": "^6.0|^7.0",
  6646. "phpunit/phpunit": "^9.5"
  6647. },
  6648. "type": "library",
  6649. "extra": {
  6650. "laravel": {
  6651. "providers": [
  6652. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  6653. ]
  6654. }
  6655. },
  6656. "autoload": {
  6657. "psr-4": {
  6658. "Spatie\\EloquentSortable\\": "src/"
  6659. }
  6660. },
  6661. "notification-url": "https://packagist.org/downloads/",
  6662. "license": [
  6663. "MIT"
  6664. ],
  6665. "authors": [
  6666. {
  6667. "name": "Freek Van der Herten",
  6668. "email": "freek@spatie.be"
  6669. }
  6670. ],
  6671. "description": "Sortable behaviour for eloquent models",
  6672. "homepage": "https://github.com/spatie/eloquent-sortable",
  6673. "keywords": [
  6674. "behaviour",
  6675. "eloquent",
  6676. "laravel",
  6677. "model",
  6678. "sort",
  6679. "sortable"
  6680. ],
  6681. "support": {
  6682. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  6683. "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.1"
  6684. },
  6685. "funding": [
  6686. {
  6687. "url": "https://spatie.be/open-source/support-us",
  6688. "type": "custom"
  6689. },
  6690. {
  6691. "url": "https://github.com/spatie",
  6692. "type": "github"
  6693. }
  6694. ],
  6695. "time": "2022-01-21T08:32:41+00:00"
  6696. },
  6697. {
  6698. "name": "spatie/laravel-package-tools",
  6699. "version": "1.12.1",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/spatie/laravel-package-tools.git",
  6703. "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/09f80fa240d44fafb1c70657c74ee44ffa929357",
  6708. "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357",
  6709. "shasum": "",
  6710. "mirrors": [
  6711. {
  6712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6713. "preferred": true
  6714. }
  6715. ]
  6716. },
  6717. "require": {
  6718. "illuminate/contracts": "^7.0|^8.0|^9.0",
  6719. "php": "^7.4|^8.0"
  6720. },
  6721. "require-dev": {
  6722. "mockery/mockery": "^1.4",
  6723. "orchestra/testbench": "^5.0|^6.23|^7.0",
  6724. "phpunit/phpunit": "^9.4",
  6725. "spatie/test-time": "^1.2"
  6726. },
  6727. "type": "library",
  6728. "autoload": {
  6729. "psr-4": {
  6730. "Spatie\\LaravelPackageTools\\": "src"
  6731. }
  6732. },
  6733. "notification-url": "https://packagist.org/downloads/",
  6734. "license": [
  6735. "MIT"
  6736. ],
  6737. "authors": [
  6738. {
  6739. "name": "Freek Van der Herten",
  6740. "email": "freek@spatie.be",
  6741. "role": "Developer"
  6742. }
  6743. ],
  6744. "description": "Tools for creating Laravel packages",
  6745. "homepage": "https://github.com/spatie/laravel-package-tools",
  6746. "keywords": [
  6747. "laravel-package-tools",
  6748. "spatie"
  6749. ],
  6750. "support": {
  6751. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6752. "source": "https://github.com/spatie/laravel-package-tools/tree/1.12.1"
  6753. },
  6754. "funding": [
  6755. {
  6756. "url": "https://github.com/spatie",
  6757. "type": "github"
  6758. }
  6759. ],
  6760. "time": "2022-06-28T14:29:26+00:00"
  6761. },
  6762. {
  6763. "name": "stella-maris/clock",
  6764. "version": "0.1.4",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://gitlab.com/stella-maris/clock.git",
  6768. "reference": "8a0a967896df4c63417385dc69328a0aec84d9cf"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://gitlab.com/api/v4/projects/stella-maris%2Fclock/repository/archive.zip?sha=8a0a967896df4c63417385dc69328a0aec84d9cf",
  6773. "reference": "8a0a967896df4c63417385dc69328a0aec84d9cf",
  6774. "shasum": "",
  6775. "mirrors": [
  6776. {
  6777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6778. "preferred": true
  6779. }
  6780. ]
  6781. },
  6782. "require": {
  6783. "php": "^7.0|^8.0"
  6784. },
  6785. "type": "library",
  6786. "autoload": {
  6787. "psr-4": {
  6788. "StellaMaris\\Clock\\": "src"
  6789. }
  6790. },
  6791. "notification-url": "https://packagist.org/downloads/",
  6792. "license": [
  6793. "MIT"
  6794. ],
  6795. "authors": [
  6796. {
  6797. "name": "Andreas Heigl",
  6798. "role": "Maintainer"
  6799. }
  6800. ],
  6801. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6802. "homepage": "https://gitlab.com/stella-maris/clock",
  6803. "keywords": [
  6804. "clock",
  6805. "datetime",
  6806. "point in time",
  6807. "psr20"
  6808. ],
  6809. "support": {
  6810. "issues": "https://gitlab.com/stella-maris/clock/-/issues",
  6811. "source": "https://gitlab.com/stella-maris/clock/-/tree/0.1.4"
  6812. },
  6813. "time": "2022-04-17T14:12:26+00:00"
  6814. },
  6815. {
  6816. "name": "stomp-php/stomp-php",
  6817. "version": "5.0.0",
  6818. "source": {
  6819. "type": "git",
  6820. "url": "https://github.com/stomp-php/stomp-php.git",
  6821. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98"
  6822. },
  6823. "dist": {
  6824. "type": "zip",
  6825. "url": "https://api.github.com/repos/stomp-php/stomp-php/zipball/50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  6826. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  6827. "shasum": "",
  6828. "mirrors": [
  6829. {
  6830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6831. "preferred": true
  6832. }
  6833. ]
  6834. },
  6835. "require": {
  6836. "php": "^7.3|^8.0"
  6837. },
  6838. "require-dev": {
  6839. "phpunit/phpunit": "^9.5"
  6840. },
  6841. "type": "library",
  6842. "autoload": {
  6843. "psr-4": {
  6844. "Stomp\\": "src/"
  6845. }
  6846. },
  6847. "notification-url": "https://packagist.org/downloads/",
  6848. "license": [
  6849. "Apache-2.0"
  6850. ],
  6851. "authors": [
  6852. {
  6853. "name": "Dejan Bosnanac",
  6854. "email": "dejan@nighttale.net",
  6855. "homepage": "http://www.nighttale.net"
  6856. },
  6857. {
  6858. "name": "Sören Rohweder",
  6859. "email": "s.rohweder@blage.net",
  6860. "homepage": "http://www.monofone.de"
  6861. },
  6862. {
  6863. "name": "Jens Radtke",
  6864. "email": "swefl@fin-sn.de",
  6865. "homepage": "http://www.fin-sn.de"
  6866. }
  6867. ],
  6868. "description": "stomp support for PHP",
  6869. "homepage": "http://github.com/stomp-php/stomp-php",
  6870. "keywords": [
  6871. "activeMQ",
  6872. "apollomq",
  6873. "jms",
  6874. "messaging",
  6875. "rabbitmq",
  6876. "stomp"
  6877. ],
  6878. "support": {
  6879. "issues": "https://github.com/stomp-php/stomp-php/issues",
  6880. "source": "https://github.com/stomp-php/stomp-php/tree/5.0.0"
  6881. },
  6882. "funding": [
  6883. {
  6884. "url": "https://github.com/jmglsn",
  6885. "type": "github"
  6886. },
  6887. {
  6888. "url": "https://github.com/staabm",
  6889. "type": "github"
  6890. }
  6891. ],
  6892. "time": "2021-02-02T19:25:59+00:00"
  6893. },
  6894. {
  6895. "name": "swiftmailer/swiftmailer",
  6896. "version": "v6.3.0",
  6897. "source": {
  6898. "type": "git",
  6899. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6900. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6901. },
  6902. "dist": {
  6903. "type": "zip",
  6904. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6905. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6906. "shasum": "",
  6907. "mirrors": [
  6908. {
  6909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6910. "preferred": true
  6911. }
  6912. ]
  6913. },
  6914. "require": {
  6915. "egulias/email-validator": "^2.0|^3.1",
  6916. "php": ">=7.0.0",
  6917. "symfony/polyfill-iconv": "^1.0",
  6918. "symfony/polyfill-intl-idn": "^1.10",
  6919. "symfony/polyfill-mbstring": "^1.0"
  6920. },
  6921. "require-dev": {
  6922. "mockery/mockery": "^1.0",
  6923. "symfony/phpunit-bridge": "^4.4|^5.4"
  6924. },
  6925. "suggest": {
  6926. "ext-intl": "Needed to support internationalized email addresses"
  6927. },
  6928. "type": "library",
  6929. "extra": {
  6930. "branch-alias": {
  6931. "dev-master": "6.2-dev"
  6932. }
  6933. },
  6934. "autoload": {
  6935. "files": [
  6936. "lib/swift_required.php"
  6937. ]
  6938. },
  6939. "notification-url": "https://packagist.org/downloads/",
  6940. "license": [
  6941. "MIT"
  6942. ],
  6943. "authors": [
  6944. {
  6945. "name": "Chris Corbyn"
  6946. },
  6947. {
  6948. "name": "Fabien Potencier",
  6949. "email": "fabien@symfony.com"
  6950. }
  6951. ],
  6952. "description": "Swiftmailer, free feature-rich PHP mailer",
  6953. "homepage": "https://swiftmailer.symfony.com",
  6954. "keywords": [
  6955. "email",
  6956. "mail",
  6957. "mailer"
  6958. ],
  6959. "support": {
  6960. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6961. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6962. },
  6963. "funding": [
  6964. {
  6965. "url": "https://github.com/fabpot",
  6966. "type": "github"
  6967. },
  6968. {
  6969. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6970. "type": "tidelift"
  6971. }
  6972. ],
  6973. "abandoned": "symfony/mailer",
  6974. "time": "2021-10-18T15:26:12+00:00"
  6975. },
  6976. {
  6977. "name": "symfony/cache",
  6978. "version": "v5.4.10",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/symfony/cache.git",
  6982. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/symfony/cache/zipball/c4e387b739022fd4b20abd8edb2143c44c5daa14",
  6987. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14",
  6988. "shasum": "",
  6989. "mirrors": [
  6990. {
  6991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6992. "preferred": true
  6993. }
  6994. ]
  6995. },
  6996. "require": {
  6997. "php": ">=7.2.5",
  6998. "psr/cache": "^1.0|^2.0",
  6999. "psr/log": "^1.1|^2|^3",
  7000. "symfony/cache-contracts": "^1.1.7|^2",
  7001. "symfony/deprecation-contracts": "^2.1|^3",
  7002. "symfony/polyfill-php73": "^1.9",
  7003. "symfony/polyfill-php80": "^1.16",
  7004. "symfony/service-contracts": "^1.1|^2|^3",
  7005. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7006. },
  7007. "conflict": {
  7008. "doctrine/dbal": "<2.13.1",
  7009. "symfony/dependency-injection": "<4.4",
  7010. "symfony/http-kernel": "<4.4",
  7011. "symfony/var-dumper": "<4.4"
  7012. },
  7013. "provide": {
  7014. "psr/cache-implementation": "1.0|2.0",
  7015. "psr/simple-cache-implementation": "1.0|2.0",
  7016. "symfony/cache-implementation": "1.0|2.0"
  7017. },
  7018. "require-dev": {
  7019. "cache/integration-tests": "dev-master",
  7020. "doctrine/cache": "^1.6|^2.0",
  7021. "doctrine/dbal": "^2.13.1|^3.0",
  7022. "predis/predis": "^1.1",
  7023. "psr/simple-cache": "^1.0|^2.0",
  7024. "symfony/config": "^4.4|^5.0|^6.0",
  7025. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7026. "symfony/filesystem": "^4.4|^5.0|^6.0",
  7027. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7028. "symfony/messenger": "^4.4|^5.0|^6.0",
  7029. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7030. },
  7031. "type": "library",
  7032. "autoload": {
  7033. "psr-4": {
  7034. "Symfony\\Component\\Cache\\": ""
  7035. },
  7036. "exclude-from-classmap": [
  7037. "/Tests/"
  7038. ]
  7039. },
  7040. "notification-url": "https://packagist.org/downloads/",
  7041. "license": [
  7042. "MIT"
  7043. ],
  7044. "authors": [
  7045. {
  7046. "name": "Nicolas Grekas",
  7047. "email": "p@tchwork.com"
  7048. },
  7049. {
  7050. "name": "Symfony Community",
  7051. "homepage": "https://symfony.com/contributors"
  7052. }
  7053. ],
  7054. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  7055. "homepage": "https://symfony.com",
  7056. "keywords": [
  7057. "caching",
  7058. "psr6"
  7059. ],
  7060. "support": {
  7061. "source": "https://github.com/symfony/cache/tree/v5.4.10"
  7062. },
  7063. "funding": [
  7064. {
  7065. "url": "https://symfony.com/sponsor",
  7066. "type": "custom"
  7067. },
  7068. {
  7069. "url": "https://github.com/fabpot",
  7070. "type": "github"
  7071. },
  7072. {
  7073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7074. "type": "tidelift"
  7075. }
  7076. ],
  7077. "time": "2022-06-19T12:03:50+00:00"
  7078. },
  7079. {
  7080. "name": "symfony/cache-contracts",
  7081. "version": "v2.5.2",
  7082. "source": {
  7083. "type": "git",
  7084. "url": "https://github.com/symfony/cache-contracts.git",
  7085. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  7086. },
  7087. "dist": {
  7088. "type": "zip",
  7089. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7090. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7091. "shasum": "",
  7092. "mirrors": [
  7093. {
  7094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7095. "preferred": true
  7096. }
  7097. ]
  7098. },
  7099. "require": {
  7100. "php": ">=7.2.5",
  7101. "psr/cache": "^1.0|^2.0|^3.0"
  7102. },
  7103. "suggest": {
  7104. "symfony/cache-implementation": ""
  7105. },
  7106. "type": "library",
  7107. "extra": {
  7108. "branch-alias": {
  7109. "dev-main": "2.5-dev"
  7110. },
  7111. "thanks": {
  7112. "name": "symfony/contracts",
  7113. "url": "https://github.com/symfony/contracts"
  7114. }
  7115. },
  7116. "autoload": {
  7117. "psr-4": {
  7118. "Symfony\\Contracts\\Cache\\": ""
  7119. }
  7120. },
  7121. "notification-url": "https://packagist.org/downloads/",
  7122. "license": [
  7123. "MIT"
  7124. ],
  7125. "authors": [
  7126. {
  7127. "name": "Nicolas Grekas",
  7128. "email": "p@tchwork.com"
  7129. },
  7130. {
  7131. "name": "Symfony Community",
  7132. "homepage": "https://symfony.com/contributors"
  7133. }
  7134. ],
  7135. "description": "Generic abstractions related to caching",
  7136. "homepage": "https://symfony.com",
  7137. "keywords": [
  7138. "abstractions",
  7139. "contracts",
  7140. "decoupling",
  7141. "interfaces",
  7142. "interoperability",
  7143. "standards"
  7144. ],
  7145. "support": {
  7146. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  7147. },
  7148. "funding": [
  7149. {
  7150. "url": "https://symfony.com/sponsor",
  7151. "type": "custom"
  7152. },
  7153. {
  7154. "url": "https://github.com/fabpot",
  7155. "type": "github"
  7156. },
  7157. {
  7158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7159. "type": "tidelift"
  7160. }
  7161. ],
  7162. "time": "2022-01-02T09:53:40+00:00"
  7163. },
  7164. {
  7165. "name": "symfony/console",
  7166. "version": "v5.4.10",
  7167. "source": {
  7168. "type": "git",
  7169. "url": "https://github.com/symfony/console.git",
  7170. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000"
  7171. },
  7172. "dist": {
  7173. "type": "zip",
  7174. "url": "https://api.github.com/repos/symfony/console/zipball/4d671ab4ddac94ee439ea73649c69d9d200b5000",
  7175. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000",
  7176. "shasum": "",
  7177. "mirrors": [
  7178. {
  7179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7180. "preferred": true
  7181. }
  7182. ]
  7183. },
  7184. "require": {
  7185. "php": ">=7.2.5",
  7186. "symfony/deprecation-contracts": "^2.1|^3",
  7187. "symfony/polyfill-mbstring": "~1.0",
  7188. "symfony/polyfill-php73": "^1.9",
  7189. "symfony/polyfill-php80": "^1.16",
  7190. "symfony/service-contracts": "^1.1|^2|^3",
  7191. "symfony/string": "^5.1|^6.0"
  7192. },
  7193. "conflict": {
  7194. "psr/log": ">=3",
  7195. "symfony/dependency-injection": "<4.4",
  7196. "symfony/dotenv": "<5.1",
  7197. "symfony/event-dispatcher": "<4.4",
  7198. "symfony/lock": "<4.4",
  7199. "symfony/process": "<4.4"
  7200. },
  7201. "provide": {
  7202. "psr/log-implementation": "1.0|2.0"
  7203. },
  7204. "require-dev": {
  7205. "psr/log": "^1|^2",
  7206. "symfony/config": "^4.4|^5.0|^6.0",
  7207. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7208. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  7209. "symfony/lock": "^4.4|^5.0|^6.0",
  7210. "symfony/process": "^4.4|^5.0|^6.0",
  7211. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7212. },
  7213. "suggest": {
  7214. "psr/log": "For using the console logger",
  7215. "symfony/event-dispatcher": "",
  7216. "symfony/lock": "",
  7217. "symfony/process": ""
  7218. },
  7219. "type": "library",
  7220. "autoload": {
  7221. "psr-4": {
  7222. "Symfony\\Component\\Console\\": ""
  7223. },
  7224. "exclude-from-classmap": [
  7225. "/Tests/"
  7226. ]
  7227. },
  7228. "notification-url": "https://packagist.org/downloads/",
  7229. "license": [
  7230. "MIT"
  7231. ],
  7232. "authors": [
  7233. {
  7234. "name": "Fabien Potencier",
  7235. "email": "fabien@symfony.com"
  7236. },
  7237. {
  7238. "name": "Symfony Community",
  7239. "homepage": "https://symfony.com/contributors"
  7240. }
  7241. ],
  7242. "description": "Eases the creation of beautiful and testable command line interfaces",
  7243. "homepage": "https://symfony.com",
  7244. "keywords": [
  7245. "cli",
  7246. "command line",
  7247. "console",
  7248. "terminal"
  7249. ],
  7250. "support": {
  7251. "source": "https://github.com/symfony/console/tree/v5.4.10"
  7252. },
  7253. "funding": [
  7254. {
  7255. "url": "https://symfony.com/sponsor",
  7256. "type": "custom"
  7257. },
  7258. {
  7259. "url": "https://github.com/fabpot",
  7260. "type": "github"
  7261. },
  7262. {
  7263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7264. "type": "tidelift"
  7265. }
  7266. ],
  7267. "time": "2022-06-26T13:00:04+00:00"
  7268. },
  7269. {
  7270. "name": "symfony/css-selector",
  7271. "version": "v6.0.3",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/symfony/css-selector.git",
  7275. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1955d595c12c111629cc814d3f2a2ff13580508a",
  7280. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a",
  7281. "shasum": "",
  7282. "mirrors": [
  7283. {
  7284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7285. "preferred": true
  7286. }
  7287. ]
  7288. },
  7289. "require": {
  7290. "php": ">=8.0.2"
  7291. },
  7292. "type": "library",
  7293. "autoload": {
  7294. "psr-4": {
  7295. "Symfony\\Component\\CssSelector\\": ""
  7296. },
  7297. "exclude-from-classmap": [
  7298. "/Tests/"
  7299. ]
  7300. },
  7301. "notification-url": "https://packagist.org/downloads/",
  7302. "license": [
  7303. "MIT"
  7304. ],
  7305. "authors": [
  7306. {
  7307. "name": "Fabien Potencier",
  7308. "email": "fabien@symfony.com"
  7309. },
  7310. {
  7311. "name": "Jean-François Simon",
  7312. "email": "jeanfrancois.simon@sensiolabs.com"
  7313. },
  7314. {
  7315. "name": "Symfony Community",
  7316. "homepage": "https://symfony.com/contributors"
  7317. }
  7318. ],
  7319. "description": "Converts CSS selectors to XPath expressions",
  7320. "homepage": "https://symfony.com",
  7321. "support": {
  7322. "source": "https://github.com/symfony/css-selector/tree/v6.0.3"
  7323. },
  7324. "funding": [
  7325. {
  7326. "url": "https://symfony.com/sponsor",
  7327. "type": "custom"
  7328. },
  7329. {
  7330. "url": "https://github.com/fabpot",
  7331. "type": "github"
  7332. },
  7333. {
  7334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7335. "type": "tidelift"
  7336. }
  7337. ],
  7338. "time": "2022-01-02T09:55:41+00:00"
  7339. },
  7340. {
  7341. "name": "symfony/deprecation-contracts",
  7342. "version": "v3.0.2",
  7343. "source": {
  7344. "type": "git",
  7345. "url": "https://github.com/symfony/deprecation-contracts.git",
  7346. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  7347. },
  7348. "dist": {
  7349. "type": "zip",
  7350. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7351. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7352. "shasum": "",
  7353. "mirrors": [
  7354. {
  7355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7356. "preferred": true
  7357. }
  7358. ]
  7359. },
  7360. "require": {
  7361. "php": ">=8.0.2"
  7362. },
  7363. "type": "library",
  7364. "extra": {
  7365. "branch-alias": {
  7366. "dev-main": "3.0-dev"
  7367. },
  7368. "thanks": {
  7369. "name": "symfony/contracts",
  7370. "url": "https://github.com/symfony/contracts"
  7371. }
  7372. },
  7373. "autoload": {
  7374. "files": [
  7375. "function.php"
  7376. ]
  7377. },
  7378. "notification-url": "https://packagist.org/downloads/",
  7379. "license": [
  7380. "MIT"
  7381. ],
  7382. "authors": [
  7383. {
  7384. "name": "Nicolas Grekas",
  7385. "email": "p@tchwork.com"
  7386. },
  7387. {
  7388. "name": "Symfony Community",
  7389. "homepage": "https://symfony.com/contributors"
  7390. }
  7391. ],
  7392. "description": "A generic function and convention to trigger deprecation notices",
  7393. "homepage": "https://symfony.com",
  7394. "support": {
  7395. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  7396. },
  7397. "funding": [
  7398. {
  7399. "url": "https://symfony.com/sponsor",
  7400. "type": "custom"
  7401. },
  7402. {
  7403. "url": "https://github.com/fabpot",
  7404. "type": "github"
  7405. },
  7406. {
  7407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7408. "type": "tidelift"
  7409. }
  7410. ],
  7411. "time": "2022-01-02T09:55:41+00:00"
  7412. },
  7413. {
  7414. "name": "symfony/error-handler",
  7415. "version": "v5.4.9",
  7416. "source": {
  7417. "type": "git",
  7418. "url": "https://github.com/symfony/error-handler.git",
  7419. "reference": "c116cda1f51c678782768dce89a45f13c949455d"
  7420. },
  7421. "dist": {
  7422. "type": "zip",
  7423. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
  7424. "reference": "c116cda1f51c678782768dce89a45f13c949455d",
  7425. "shasum": "",
  7426. "mirrors": [
  7427. {
  7428. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7429. "preferred": true
  7430. }
  7431. ]
  7432. },
  7433. "require": {
  7434. "php": ">=7.2.5",
  7435. "psr/log": "^1|^2|^3",
  7436. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7437. },
  7438. "require-dev": {
  7439. "symfony/deprecation-contracts": "^2.1|^3",
  7440. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7441. "symfony/serializer": "^4.4|^5.0|^6.0"
  7442. },
  7443. "bin": [
  7444. "Resources/bin/patch-type-declarations"
  7445. ],
  7446. "type": "library",
  7447. "autoload": {
  7448. "psr-4": {
  7449. "Symfony\\Component\\ErrorHandler\\": ""
  7450. },
  7451. "exclude-from-classmap": [
  7452. "/Tests/"
  7453. ]
  7454. },
  7455. "notification-url": "https://packagist.org/downloads/",
  7456. "license": [
  7457. "MIT"
  7458. ],
  7459. "authors": [
  7460. {
  7461. "name": "Fabien Potencier",
  7462. "email": "fabien@symfony.com"
  7463. },
  7464. {
  7465. "name": "Symfony Community",
  7466. "homepage": "https://symfony.com/contributors"
  7467. }
  7468. ],
  7469. "description": "Provides tools to manage errors and ease debugging PHP code",
  7470. "homepage": "https://symfony.com",
  7471. "support": {
  7472. "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
  7473. },
  7474. "funding": [
  7475. {
  7476. "url": "https://symfony.com/sponsor",
  7477. "type": "custom"
  7478. },
  7479. {
  7480. "url": "https://github.com/fabpot",
  7481. "type": "github"
  7482. },
  7483. {
  7484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7485. "type": "tidelift"
  7486. }
  7487. ],
  7488. "time": "2022-05-21T13:57:48+00:00"
  7489. },
  7490. {
  7491. "name": "symfony/event-dispatcher",
  7492. "version": "v5.4.9",
  7493. "source": {
  7494. "type": "git",
  7495. "url": "https://github.com/symfony/event-dispatcher.git",
  7496. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  7497. },
  7498. "dist": {
  7499. "type": "zip",
  7500. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7501. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7502. "shasum": "",
  7503. "mirrors": [
  7504. {
  7505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7506. "preferred": true
  7507. }
  7508. ]
  7509. },
  7510. "require": {
  7511. "php": ">=7.2.5",
  7512. "symfony/deprecation-contracts": "^2.1|^3",
  7513. "symfony/event-dispatcher-contracts": "^2|^3",
  7514. "symfony/polyfill-php80": "^1.16"
  7515. },
  7516. "conflict": {
  7517. "symfony/dependency-injection": "<4.4"
  7518. },
  7519. "provide": {
  7520. "psr/event-dispatcher-implementation": "1.0",
  7521. "symfony/event-dispatcher-implementation": "2.0"
  7522. },
  7523. "require-dev": {
  7524. "psr/log": "^1|^2|^3",
  7525. "symfony/config": "^4.4|^5.0|^6.0",
  7526. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7527. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7528. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7529. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7530. "symfony/service-contracts": "^1.1|^2|^3",
  7531. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  7532. },
  7533. "suggest": {
  7534. "symfony/dependency-injection": "",
  7535. "symfony/http-kernel": ""
  7536. },
  7537. "type": "library",
  7538. "autoload": {
  7539. "psr-4": {
  7540. "Symfony\\Component\\EventDispatcher\\": ""
  7541. },
  7542. "exclude-from-classmap": [
  7543. "/Tests/"
  7544. ]
  7545. },
  7546. "notification-url": "https://packagist.org/downloads/",
  7547. "license": [
  7548. "MIT"
  7549. ],
  7550. "authors": [
  7551. {
  7552. "name": "Fabien Potencier",
  7553. "email": "fabien@symfony.com"
  7554. },
  7555. {
  7556. "name": "Symfony Community",
  7557. "homepage": "https://symfony.com/contributors"
  7558. }
  7559. ],
  7560. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7561. "homepage": "https://symfony.com",
  7562. "support": {
  7563. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  7564. },
  7565. "funding": [
  7566. {
  7567. "url": "https://symfony.com/sponsor",
  7568. "type": "custom"
  7569. },
  7570. {
  7571. "url": "https://github.com/fabpot",
  7572. "type": "github"
  7573. },
  7574. {
  7575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7576. "type": "tidelift"
  7577. }
  7578. ],
  7579. "time": "2022-05-05T16:45:39+00:00"
  7580. },
  7581. {
  7582. "name": "symfony/event-dispatcher-contracts",
  7583. "version": "v3.0.2",
  7584. "source": {
  7585. "type": "git",
  7586. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7587. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  7588. },
  7589. "dist": {
  7590. "type": "zip",
  7591. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  7592. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  7593. "shasum": "",
  7594. "mirrors": [
  7595. {
  7596. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7597. "preferred": true
  7598. }
  7599. ]
  7600. },
  7601. "require": {
  7602. "php": ">=8.0.2",
  7603. "psr/event-dispatcher": "^1"
  7604. },
  7605. "suggest": {
  7606. "symfony/event-dispatcher-implementation": ""
  7607. },
  7608. "type": "library",
  7609. "extra": {
  7610. "branch-alias": {
  7611. "dev-main": "3.0-dev"
  7612. },
  7613. "thanks": {
  7614. "name": "symfony/contracts",
  7615. "url": "https://github.com/symfony/contracts"
  7616. }
  7617. },
  7618. "autoload": {
  7619. "psr-4": {
  7620. "Symfony\\Contracts\\EventDispatcher\\": ""
  7621. }
  7622. },
  7623. "notification-url": "https://packagist.org/downloads/",
  7624. "license": [
  7625. "MIT"
  7626. ],
  7627. "authors": [
  7628. {
  7629. "name": "Nicolas Grekas",
  7630. "email": "p@tchwork.com"
  7631. },
  7632. {
  7633. "name": "Symfony Community",
  7634. "homepage": "https://symfony.com/contributors"
  7635. }
  7636. ],
  7637. "description": "Generic abstractions related to dispatching event",
  7638. "homepage": "https://symfony.com",
  7639. "keywords": [
  7640. "abstractions",
  7641. "contracts",
  7642. "decoupling",
  7643. "interfaces",
  7644. "interoperability",
  7645. "standards"
  7646. ],
  7647. "support": {
  7648. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  7649. },
  7650. "funding": [
  7651. {
  7652. "url": "https://symfony.com/sponsor",
  7653. "type": "custom"
  7654. },
  7655. {
  7656. "url": "https://github.com/fabpot",
  7657. "type": "github"
  7658. },
  7659. {
  7660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7661. "type": "tidelift"
  7662. }
  7663. ],
  7664. "time": "2022-01-02T09:55:41+00:00"
  7665. },
  7666. {
  7667. "name": "symfony/finder",
  7668. "version": "v5.4.8",
  7669. "source": {
  7670. "type": "git",
  7671. "url": "https://github.com/symfony/finder.git",
  7672. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  7673. },
  7674. "dist": {
  7675. "type": "zip",
  7676. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  7677. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  7678. "shasum": "",
  7679. "mirrors": [
  7680. {
  7681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7682. "preferred": true
  7683. }
  7684. ]
  7685. },
  7686. "require": {
  7687. "php": ">=7.2.5",
  7688. "symfony/deprecation-contracts": "^2.1|^3",
  7689. "symfony/polyfill-php80": "^1.16"
  7690. },
  7691. "type": "library",
  7692. "autoload": {
  7693. "psr-4": {
  7694. "Symfony\\Component\\Finder\\": ""
  7695. },
  7696. "exclude-from-classmap": [
  7697. "/Tests/"
  7698. ]
  7699. },
  7700. "notification-url": "https://packagist.org/downloads/",
  7701. "license": [
  7702. "MIT"
  7703. ],
  7704. "authors": [
  7705. {
  7706. "name": "Fabien Potencier",
  7707. "email": "fabien@symfony.com"
  7708. },
  7709. {
  7710. "name": "Symfony Community",
  7711. "homepage": "https://symfony.com/contributors"
  7712. }
  7713. ],
  7714. "description": "Finds files and directories via an intuitive fluent interface",
  7715. "homepage": "https://symfony.com",
  7716. "support": {
  7717. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  7718. },
  7719. "funding": [
  7720. {
  7721. "url": "https://symfony.com/sponsor",
  7722. "type": "custom"
  7723. },
  7724. {
  7725. "url": "https://github.com/fabpot",
  7726. "type": "github"
  7727. },
  7728. {
  7729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7730. "type": "tidelift"
  7731. }
  7732. ],
  7733. "time": "2022-04-15T08:07:45+00:00"
  7734. },
  7735. {
  7736. "name": "symfony/http-foundation",
  7737. "version": "v5.4.10",
  7738. "source": {
  7739. "type": "git",
  7740. "url": "https://github.com/symfony/http-foundation.git",
  7741. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  7742. },
  7743. "dist": {
  7744. "type": "zip",
  7745. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  7746. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  7747. "shasum": "",
  7748. "mirrors": [
  7749. {
  7750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7751. "preferred": true
  7752. }
  7753. ]
  7754. },
  7755. "require": {
  7756. "php": ">=7.2.5",
  7757. "symfony/deprecation-contracts": "^2.1|^3",
  7758. "symfony/polyfill-mbstring": "~1.1",
  7759. "symfony/polyfill-php80": "^1.16"
  7760. },
  7761. "require-dev": {
  7762. "predis/predis": "~1.0",
  7763. "symfony/cache": "^4.4|^5.0|^6.0",
  7764. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7765. "symfony/mime": "^4.4|^5.0|^6.0"
  7766. },
  7767. "suggest": {
  7768. "symfony/mime": "To use the file extension guesser"
  7769. },
  7770. "type": "library",
  7771. "autoload": {
  7772. "psr-4": {
  7773. "Symfony\\Component\\HttpFoundation\\": ""
  7774. },
  7775. "exclude-from-classmap": [
  7776. "/Tests/"
  7777. ]
  7778. },
  7779. "notification-url": "https://packagist.org/downloads/",
  7780. "license": [
  7781. "MIT"
  7782. ],
  7783. "authors": [
  7784. {
  7785. "name": "Fabien Potencier",
  7786. "email": "fabien@symfony.com"
  7787. },
  7788. {
  7789. "name": "Symfony Community",
  7790. "homepage": "https://symfony.com/contributors"
  7791. }
  7792. ],
  7793. "description": "Defines an object-oriented layer for the HTTP specification",
  7794. "homepage": "https://symfony.com",
  7795. "support": {
  7796. "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
  7797. },
  7798. "funding": [
  7799. {
  7800. "url": "https://symfony.com/sponsor",
  7801. "type": "custom"
  7802. },
  7803. {
  7804. "url": "https://github.com/fabpot",
  7805. "type": "github"
  7806. },
  7807. {
  7808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7809. "type": "tidelift"
  7810. }
  7811. ],
  7812. "time": "2022-06-19T13:13:40+00:00"
  7813. },
  7814. {
  7815. "name": "symfony/http-kernel",
  7816. "version": "v5.4.10",
  7817. "source": {
  7818. "type": "git",
  7819. "url": "https://github.com/symfony/http-kernel.git",
  7820. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948"
  7821. },
  7822. "dist": {
  7823. "type": "zip",
  7824. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/255ae3b0a488d78fbb34da23d3e0c059874b5948",
  7825. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948",
  7826. "shasum": "",
  7827. "mirrors": [
  7828. {
  7829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7830. "preferred": true
  7831. }
  7832. ]
  7833. },
  7834. "require": {
  7835. "php": ">=7.2.5",
  7836. "psr/log": "^1|^2",
  7837. "symfony/deprecation-contracts": "^2.1|^3",
  7838. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7839. "symfony/event-dispatcher": "^5.0|^6.0",
  7840. "symfony/http-foundation": "^5.3.7|^6.0",
  7841. "symfony/polyfill-ctype": "^1.8",
  7842. "symfony/polyfill-php73": "^1.9",
  7843. "symfony/polyfill-php80": "^1.16"
  7844. },
  7845. "conflict": {
  7846. "symfony/browser-kit": "<5.4",
  7847. "symfony/cache": "<5.0",
  7848. "symfony/config": "<5.0",
  7849. "symfony/console": "<4.4",
  7850. "symfony/dependency-injection": "<5.3",
  7851. "symfony/doctrine-bridge": "<5.0",
  7852. "symfony/form": "<5.0",
  7853. "symfony/http-client": "<5.0",
  7854. "symfony/mailer": "<5.0",
  7855. "symfony/messenger": "<5.0",
  7856. "symfony/translation": "<5.0",
  7857. "symfony/twig-bridge": "<5.0",
  7858. "symfony/validator": "<5.0",
  7859. "twig/twig": "<2.13"
  7860. },
  7861. "provide": {
  7862. "psr/log-implementation": "1.0|2.0"
  7863. },
  7864. "require-dev": {
  7865. "psr/cache": "^1.0|^2.0|^3.0",
  7866. "symfony/browser-kit": "^5.4|^6.0",
  7867. "symfony/config": "^5.0|^6.0",
  7868. "symfony/console": "^4.4|^5.0|^6.0",
  7869. "symfony/css-selector": "^4.4|^5.0|^6.0",
  7870. "symfony/dependency-injection": "^5.3|^6.0",
  7871. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  7872. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7873. "symfony/finder": "^4.4|^5.0|^6.0",
  7874. "symfony/http-client-contracts": "^1.1|^2|^3",
  7875. "symfony/process": "^4.4|^5.0|^6.0",
  7876. "symfony/routing": "^4.4|^5.0|^6.0",
  7877. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  7878. "symfony/translation": "^4.4|^5.0|^6.0",
  7879. "symfony/translation-contracts": "^1.1|^2|^3",
  7880. "twig/twig": "^2.13|^3.0.4"
  7881. },
  7882. "suggest": {
  7883. "symfony/browser-kit": "",
  7884. "symfony/config": "",
  7885. "symfony/console": "",
  7886. "symfony/dependency-injection": ""
  7887. },
  7888. "type": "library",
  7889. "autoload": {
  7890. "psr-4": {
  7891. "Symfony\\Component\\HttpKernel\\": ""
  7892. },
  7893. "exclude-from-classmap": [
  7894. "/Tests/"
  7895. ]
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "MIT"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Fabien Potencier",
  7904. "email": "fabien@symfony.com"
  7905. },
  7906. {
  7907. "name": "Symfony Community",
  7908. "homepage": "https://symfony.com/contributors"
  7909. }
  7910. ],
  7911. "description": "Provides a structured process for converting a Request into a Response",
  7912. "homepage": "https://symfony.com",
  7913. "support": {
  7914. "source": "https://github.com/symfony/http-kernel/tree/v5.4.10"
  7915. },
  7916. "funding": [
  7917. {
  7918. "url": "https://symfony.com/sponsor",
  7919. "type": "custom"
  7920. },
  7921. {
  7922. "url": "https://github.com/fabpot",
  7923. "type": "github"
  7924. },
  7925. {
  7926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7927. "type": "tidelift"
  7928. }
  7929. ],
  7930. "time": "2022-06-26T16:57:59+00:00"
  7931. },
  7932. {
  7933. "name": "symfony/mime",
  7934. "version": "v5.4.10",
  7935. "source": {
  7936. "type": "git",
  7937. "url": "https://github.com/symfony/mime.git",
  7938. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc"
  7939. },
  7940. "dist": {
  7941. "type": "zip",
  7942. "url": "https://api.github.com/repos/symfony/mime/zipball/02265e1e5111c3cd7480387af25e82378b7ab9cc",
  7943. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc",
  7944. "shasum": "",
  7945. "mirrors": [
  7946. {
  7947. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7948. "preferred": true
  7949. }
  7950. ]
  7951. },
  7952. "require": {
  7953. "php": ">=7.2.5",
  7954. "symfony/deprecation-contracts": "^2.1|^3",
  7955. "symfony/polyfill-intl-idn": "^1.10",
  7956. "symfony/polyfill-mbstring": "^1.0",
  7957. "symfony/polyfill-php80": "^1.16"
  7958. },
  7959. "conflict": {
  7960. "egulias/email-validator": "~3.0.0",
  7961. "phpdocumentor/reflection-docblock": "<3.2.2",
  7962. "phpdocumentor/type-resolver": "<1.4.0",
  7963. "symfony/mailer": "<4.4"
  7964. },
  7965. "require-dev": {
  7966. "egulias/email-validator": "^2.1.10|^3.1",
  7967. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7968. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7969. "symfony/property-access": "^4.4|^5.1|^6.0",
  7970. "symfony/property-info": "^4.4|^5.1|^6.0",
  7971. "symfony/serializer": "^5.2|^6.0"
  7972. },
  7973. "type": "library",
  7974. "autoload": {
  7975. "psr-4": {
  7976. "Symfony\\Component\\Mime\\": ""
  7977. },
  7978. "exclude-from-classmap": [
  7979. "/Tests/"
  7980. ]
  7981. },
  7982. "notification-url": "https://packagist.org/downloads/",
  7983. "license": [
  7984. "MIT"
  7985. ],
  7986. "authors": [
  7987. {
  7988. "name": "Fabien Potencier",
  7989. "email": "fabien@symfony.com"
  7990. },
  7991. {
  7992. "name": "Symfony Community",
  7993. "homepage": "https://symfony.com/contributors"
  7994. }
  7995. ],
  7996. "description": "Allows manipulating MIME messages",
  7997. "homepage": "https://symfony.com",
  7998. "keywords": [
  7999. "mime",
  8000. "mime-type"
  8001. ],
  8002. "support": {
  8003. "source": "https://github.com/symfony/mime/tree/v5.4.10"
  8004. },
  8005. "funding": [
  8006. {
  8007. "url": "https://symfony.com/sponsor",
  8008. "type": "custom"
  8009. },
  8010. {
  8011. "url": "https://github.com/fabpot",
  8012. "type": "github"
  8013. },
  8014. {
  8015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8016. "type": "tidelift"
  8017. }
  8018. ],
  8019. "time": "2022-06-09T12:22:40+00:00"
  8020. },
  8021. {
  8022. "name": "symfony/polyfill-ctype",
  8023. "version": "v1.26.0",
  8024. "source": {
  8025. "type": "git",
  8026. "url": "https://github.com/symfony/polyfill-ctype.git",
  8027. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  8028. },
  8029. "dist": {
  8030. "type": "zip",
  8031. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8032. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8033. "shasum": "",
  8034. "mirrors": [
  8035. {
  8036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8037. "preferred": true
  8038. }
  8039. ]
  8040. },
  8041. "require": {
  8042. "php": ">=7.1"
  8043. },
  8044. "provide": {
  8045. "ext-ctype": "*"
  8046. },
  8047. "suggest": {
  8048. "ext-ctype": "For best performance"
  8049. },
  8050. "type": "library",
  8051. "extra": {
  8052. "branch-alias": {
  8053. "dev-main": "1.26-dev"
  8054. },
  8055. "thanks": {
  8056. "name": "symfony/polyfill",
  8057. "url": "https://github.com/symfony/polyfill"
  8058. }
  8059. },
  8060. "autoload": {
  8061. "files": [
  8062. "bootstrap.php"
  8063. ],
  8064. "psr-4": {
  8065. "Symfony\\Polyfill\\Ctype\\": ""
  8066. }
  8067. },
  8068. "notification-url": "https://packagist.org/downloads/",
  8069. "license": [
  8070. "MIT"
  8071. ],
  8072. "authors": [
  8073. {
  8074. "name": "Gert de Pagter",
  8075. "email": "BackEndTea@gmail.com"
  8076. },
  8077. {
  8078. "name": "Symfony Community",
  8079. "homepage": "https://symfony.com/contributors"
  8080. }
  8081. ],
  8082. "description": "Symfony polyfill for ctype functions",
  8083. "homepage": "https://symfony.com",
  8084. "keywords": [
  8085. "compatibility",
  8086. "ctype",
  8087. "polyfill",
  8088. "portable"
  8089. ],
  8090. "support": {
  8091. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  8092. },
  8093. "funding": [
  8094. {
  8095. "url": "https://symfony.com/sponsor",
  8096. "type": "custom"
  8097. },
  8098. {
  8099. "url": "https://github.com/fabpot",
  8100. "type": "github"
  8101. },
  8102. {
  8103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8104. "type": "tidelift"
  8105. }
  8106. ],
  8107. "time": "2022-05-24T11:49:31+00:00"
  8108. },
  8109. {
  8110. "name": "symfony/polyfill-iconv",
  8111. "version": "v1.26.0",
  8112. "source": {
  8113. "type": "git",
  8114. "url": "https://github.com/symfony/polyfill-iconv.git",
  8115. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  8116. },
  8117. "dist": {
  8118. "type": "zip",
  8119. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  8120. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  8121. "shasum": "",
  8122. "mirrors": [
  8123. {
  8124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8125. "preferred": true
  8126. }
  8127. ]
  8128. },
  8129. "require": {
  8130. "php": ">=7.1"
  8131. },
  8132. "provide": {
  8133. "ext-iconv": "*"
  8134. },
  8135. "suggest": {
  8136. "ext-iconv": "For best performance"
  8137. },
  8138. "type": "library",
  8139. "extra": {
  8140. "branch-alias": {
  8141. "dev-main": "1.26-dev"
  8142. },
  8143. "thanks": {
  8144. "name": "symfony/polyfill",
  8145. "url": "https://github.com/symfony/polyfill"
  8146. }
  8147. },
  8148. "autoload": {
  8149. "files": [
  8150. "bootstrap.php"
  8151. ],
  8152. "psr-4": {
  8153. "Symfony\\Polyfill\\Iconv\\": ""
  8154. }
  8155. },
  8156. "notification-url": "https://packagist.org/downloads/",
  8157. "license": [
  8158. "MIT"
  8159. ],
  8160. "authors": [
  8161. {
  8162. "name": "Nicolas Grekas",
  8163. "email": "p@tchwork.com"
  8164. },
  8165. {
  8166. "name": "Symfony Community",
  8167. "homepage": "https://symfony.com/contributors"
  8168. }
  8169. ],
  8170. "description": "Symfony polyfill for the Iconv extension",
  8171. "homepage": "https://symfony.com",
  8172. "keywords": [
  8173. "compatibility",
  8174. "iconv",
  8175. "polyfill",
  8176. "portable",
  8177. "shim"
  8178. ],
  8179. "support": {
  8180. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  8181. },
  8182. "funding": [
  8183. {
  8184. "url": "https://symfony.com/sponsor",
  8185. "type": "custom"
  8186. },
  8187. {
  8188. "url": "https://github.com/fabpot",
  8189. "type": "github"
  8190. },
  8191. {
  8192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8193. "type": "tidelift"
  8194. }
  8195. ],
  8196. "time": "2022-05-24T11:49:31+00:00"
  8197. },
  8198. {
  8199. "name": "symfony/polyfill-intl-grapheme",
  8200. "version": "v1.26.0",
  8201. "source": {
  8202. "type": "git",
  8203. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8204. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  8205. },
  8206. "dist": {
  8207. "type": "zip",
  8208. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  8209. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  8210. "shasum": "",
  8211. "mirrors": [
  8212. {
  8213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8214. "preferred": true
  8215. }
  8216. ]
  8217. },
  8218. "require": {
  8219. "php": ">=7.1"
  8220. },
  8221. "suggest": {
  8222. "ext-intl": "For best performance"
  8223. },
  8224. "type": "library",
  8225. "extra": {
  8226. "branch-alias": {
  8227. "dev-main": "1.26-dev"
  8228. },
  8229. "thanks": {
  8230. "name": "symfony/polyfill",
  8231. "url": "https://github.com/symfony/polyfill"
  8232. }
  8233. },
  8234. "autoload": {
  8235. "files": [
  8236. "bootstrap.php"
  8237. ],
  8238. "psr-4": {
  8239. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8240. }
  8241. },
  8242. "notification-url": "https://packagist.org/downloads/",
  8243. "license": [
  8244. "MIT"
  8245. ],
  8246. "authors": [
  8247. {
  8248. "name": "Nicolas Grekas",
  8249. "email": "p@tchwork.com"
  8250. },
  8251. {
  8252. "name": "Symfony Community",
  8253. "homepage": "https://symfony.com/contributors"
  8254. }
  8255. ],
  8256. "description": "Symfony polyfill for intl's grapheme_* functions",
  8257. "homepage": "https://symfony.com",
  8258. "keywords": [
  8259. "compatibility",
  8260. "grapheme",
  8261. "intl",
  8262. "polyfill",
  8263. "portable",
  8264. "shim"
  8265. ],
  8266. "support": {
  8267. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  8268. },
  8269. "funding": [
  8270. {
  8271. "url": "https://symfony.com/sponsor",
  8272. "type": "custom"
  8273. },
  8274. {
  8275. "url": "https://github.com/fabpot",
  8276. "type": "github"
  8277. },
  8278. {
  8279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8280. "type": "tidelift"
  8281. }
  8282. ],
  8283. "time": "2022-05-24T11:49:31+00:00"
  8284. },
  8285. {
  8286. "name": "symfony/polyfill-intl-idn",
  8287. "version": "v1.26.0",
  8288. "source": {
  8289. "type": "git",
  8290. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8291. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  8292. },
  8293. "dist": {
  8294. "type": "zip",
  8295. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8296. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8297. "shasum": "",
  8298. "mirrors": [
  8299. {
  8300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8301. "preferred": true
  8302. }
  8303. ]
  8304. },
  8305. "require": {
  8306. "php": ">=7.1",
  8307. "symfony/polyfill-intl-normalizer": "^1.10",
  8308. "symfony/polyfill-php72": "^1.10"
  8309. },
  8310. "suggest": {
  8311. "ext-intl": "For best performance"
  8312. },
  8313. "type": "library",
  8314. "extra": {
  8315. "branch-alias": {
  8316. "dev-main": "1.26-dev"
  8317. },
  8318. "thanks": {
  8319. "name": "symfony/polyfill",
  8320. "url": "https://github.com/symfony/polyfill"
  8321. }
  8322. },
  8323. "autoload": {
  8324. "files": [
  8325. "bootstrap.php"
  8326. ],
  8327. "psr-4": {
  8328. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8329. }
  8330. },
  8331. "notification-url": "https://packagist.org/downloads/",
  8332. "license": [
  8333. "MIT"
  8334. ],
  8335. "authors": [
  8336. {
  8337. "name": "Laurent Bassin",
  8338. "email": "laurent@bassin.info"
  8339. },
  8340. {
  8341. "name": "Trevor Rowbotham",
  8342. "email": "trevor.rowbotham@pm.me"
  8343. },
  8344. {
  8345. "name": "Symfony Community",
  8346. "homepage": "https://symfony.com/contributors"
  8347. }
  8348. ],
  8349. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8350. "homepage": "https://symfony.com",
  8351. "keywords": [
  8352. "compatibility",
  8353. "idn",
  8354. "intl",
  8355. "polyfill",
  8356. "portable",
  8357. "shim"
  8358. ],
  8359. "support": {
  8360. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  8361. },
  8362. "funding": [
  8363. {
  8364. "url": "https://symfony.com/sponsor",
  8365. "type": "custom"
  8366. },
  8367. {
  8368. "url": "https://github.com/fabpot",
  8369. "type": "github"
  8370. },
  8371. {
  8372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8373. "type": "tidelift"
  8374. }
  8375. ],
  8376. "time": "2022-05-24T11:49:31+00:00"
  8377. },
  8378. {
  8379. "name": "symfony/polyfill-intl-normalizer",
  8380. "version": "v1.26.0",
  8381. "source": {
  8382. "type": "git",
  8383. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8384. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  8385. },
  8386. "dist": {
  8387. "type": "zip",
  8388. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  8389. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  8390. "shasum": "",
  8391. "mirrors": [
  8392. {
  8393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8394. "preferred": true
  8395. }
  8396. ]
  8397. },
  8398. "require": {
  8399. "php": ">=7.1"
  8400. },
  8401. "suggest": {
  8402. "ext-intl": "For best performance"
  8403. },
  8404. "type": "library",
  8405. "extra": {
  8406. "branch-alias": {
  8407. "dev-main": "1.26-dev"
  8408. },
  8409. "thanks": {
  8410. "name": "symfony/polyfill",
  8411. "url": "https://github.com/symfony/polyfill"
  8412. }
  8413. },
  8414. "autoload": {
  8415. "files": [
  8416. "bootstrap.php"
  8417. ],
  8418. "psr-4": {
  8419. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8420. },
  8421. "classmap": [
  8422. "Resources/stubs"
  8423. ]
  8424. },
  8425. "notification-url": "https://packagist.org/downloads/",
  8426. "license": [
  8427. "MIT"
  8428. ],
  8429. "authors": [
  8430. {
  8431. "name": "Nicolas Grekas",
  8432. "email": "p@tchwork.com"
  8433. },
  8434. {
  8435. "name": "Symfony Community",
  8436. "homepage": "https://symfony.com/contributors"
  8437. }
  8438. ],
  8439. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8440. "homepage": "https://symfony.com",
  8441. "keywords": [
  8442. "compatibility",
  8443. "intl",
  8444. "normalizer",
  8445. "polyfill",
  8446. "portable",
  8447. "shim"
  8448. ],
  8449. "support": {
  8450. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  8451. },
  8452. "funding": [
  8453. {
  8454. "url": "https://symfony.com/sponsor",
  8455. "type": "custom"
  8456. },
  8457. {
  8458. "url": "https://github.com/fabpot",
  8459. "type": "github"
  8460. },
  8461. {
  8462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8463. "type": "tidelift"
  8464. }
  8465. ],
  8466. "time": "2022-05-24T11:49:31+00:00"
  8467. },
  8468. {
  8469. "name": "symfony/polyfill-mbstring",
  8470. "version": "v1.26.0",
  8471. "source": {
  8472. "type": "git",
  8473. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8474. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  8475. },
  8476. "dist": {
  8477. "type": "zip",
  8478. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8479. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8480. "shasum": "",
  8481. "mirrors": [
  8482. {
  8483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8484. "preferred": true
  8485. }
  8486. ]
  8487. },
  8488. "require": {
  8489. "php": ">=7.1"
  8490. },
  8491. "provide": {
  8492. "ext-mbstring": "*"
  8493. },
  8494. "suggest": {
  8495. "ext-mbstring": "For best performance"
  8496. },
  8497. "type": "library",
  8498. "extra": {
  8499. "branch-alias": {
  8500. "dev-main": "1.26-dev"
  8501. },
  8502. "thanks": {
  8503. "name": "symfony/polyfill",
  8504. "url": "https://github.com/symfony/polyfill"
  8505. }
  8506. },
  8507. "autoload": {
  8508. "files": [
  8509. "bootstrap.php"
  8510. ],
  8511. "psr-4": {
  8512. "Symfony\\Polyfill\\Mbstring\\": ""
  8513. }
  8514. },
  8515. "notification-url": "https://packagist.org/downloads/",
  8516. "license": [
  8517. "MIT"
  8518. ],
  8519. "authors": [
  8520. {
  8521. "name": "Nicolas Grekas",
  8522. "email": "p@tchwork.com"
  8523. },
  8524. {
  8525. "name": "Symfony Community",
  8526. "homepage": "https://symfony.com/contributors"
  8527. }
  8528. ],
  8529. "description": "Symfony polyfill for the Mbstring extension",
  8530. "homepage": "https://symfony.com",
  8531. "keywords": [
  8532. "compatibility",
  8533. "mbstring",
  8534. "polyfill",
  8535. "portable",
  8536. "shim"
  8537. ],
  8538. "support": {
  8539. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  8540. },
  8541. "funding": [
  8542. {
  8543. "url": "https://symfony.com/sponsor",
  8544. "type": "custom"
  8545. },
  8546. {
  8547. "url": "https://github.com/fabpot",
  8548. "type": "github"
  8549. },
  8550. {
  8551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8552. "type": "tidelift"
  8553. }
  8554. ],
  8555. "time": "2022-05-24T11:49:31+00:00"
  8556. },
  8557. {
  8558. "name": "symfony/polyfill-php56",
  8559. "version": "v1.20.0",
  8560. "source": {
  8561. "type": "git",
  8562. "url": "https://github.com/symfony/polyfill-php56.git",
  8563. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  8564. },
  8565. "dist": {
  8566. "type": "zip",
  8567. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8568. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8569. "shasum": "",
  8570. "mirrors": [
  8571. {
  8572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8573. "preferred": true
  8574. }
  8575. ]
  8576. },
  8577. "require": {
  8578. "php": ">=7.1"
  8579. },
  8580. "type": "metapackage",
  8581. "extra": {
  8582. "branch-alias": {
  8583. "dev-main": "1.20-dev"
  8584. },
  8585. "thanks": {
  8586. "name": "symfony/polyfill",
  8587. "url": "https://github.com/symfony/polyfill"
  8588. }
  8589. },
  8590. "notification-url": "https://packagist.org/downloads/",
  8591. "license": [
  8592. "MIT"
  8593. ],
  8594. "authors": [
  8595. {
  8596. "name": "Nicolas Grekas",
  8597. "email": "p@tchwork.com"
  8598. },
  8599. {
  8600. "name": "Symfony Community",
  8601. "homepage": "https://symfony.com/contributors"
  8602. }
  8603. ],
  8604. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8605. "homepage": "https://symfony.com",
  8606. "keywords": [
  8607. "compatibility",
  8608. "polyfill",
  8609. "portable",
  8610. "shim"
  8611. ],
  8612. "support": {
  8613. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  8614. },
  8615. "funding": [
  8616. {
  8617. "url": "https://symfony.com/sponsor",
  8618. "type": "custom"
  8619. },
  8620. {
  8621. "url": "https://github.com/fabpot",
  8622. "type": "github"
  8623. },
  8624. {
  8625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8626. "type": "tidelift"
  8627. }
  8628. ],
  8629. "time": "2020-10-23T14:02:19+00:00"
  8630. },
  8631. {
  8632. "name": "symfony/polyfill-php72",
  8633. "version": "v1.26.0",
  8634. "source": {
  8635. "type": "git",
  8636. "url": "https://github.com/symfony/polyfill-php72.git",
  8637. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  8638. },
  8639. "dist": {
  8640. "type": "zip",
  8641. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  8642. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  8643. "shasum": "",
  8644. "mirrors": [
  8645. {
  8646. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8647. "preferred": true
  8648. }
  8649. ]
  8650. },
  8651. "require": {
  8652. "php": ">=7.1"
  8653. },
  8654. "type": "library",
  8655. "extra": {
  8656. "branch-alias": {
  8657. "dev-main": "1.26-dev"
  8658. },
  8659. "thanks": {
  8660. "name": "symfony/polyfill",
  8661. "url": "https://github.com/symfony/polyfill"
  8662. }
  8663. },
  8664. "autoload": {
  8665. "files": [
  8666. "bootstrap.php"
  8667. ],
  8668. "psr-4": {
  8669. "Symfony\\Polyfill\\Php72\\": ""
  8670. }
  8671. },
  8672. "notification-url": "https://packagist.org/downloads/",
  8673. "license": [
  8674. "MIT"
  8675. ],
  8676. "authors": [
  8677. {
  8678. "name": "Nicolas Grekas",
  8679. "email": "p@tchwork.com"
  8680. },
  8681. {
  8682. "name": "Symfony Community",
  8683. "homepage": "https://symfony.com/contributors"
  8684. }
  8685. ],
  8686. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8687. "homepage": "https://symfony.com",
  8688. "keywords": [
  8689. "compatibility",
  8690. "polyfill",
  8691. "portable",
  8692. "shim"
  8693. ],
  8694. "support": {
  8695. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  8696. },
  8697. "funding": [
  8698. {
  8699. "url": "https://symfony.com/sponsor",
  8700. "type": "custom"
  8701. },
  8702. {
  8703. "url": "https://github.com/fabpot",
  8704. "type": "github"
  8705. },
  8706. {
  8707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8708. "type": "tidelift"
  8709. }
  8710. ],
  8711. "time": "2022-05-24T11:49:31+00:00"
  8712. },
  8713. {
  8714. "name": "symfony/polyfill-php73",
  8715. "version": "v1.26.0",
  8716. "source": {
  8717. "type": "git",
  8718. "url": "https://github.com/symfony/polyfill-php73.git",
  8719. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  8720. },
  8721. "dist": {
  8722. "type": "zip",
  8723. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  8724. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  8725. "shasum": "",
  8726. "mirrors": [
  8727. {
  8728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8729. "preferred": true
  8730. }
  8731. ]
  8732. },
  8733. "require": {
  8734. "php": ">=7.1"
  8735. },
  8736. "type": "library",
  8737. "extra": {
  8738. "branch-alias": {
  8739. "dev-main": "1.26-dev"
  8740. },
  8741. "thanks": {
  8742. "name": "symfony/polyfill",
  8743. "url": "https://github.com/symfony/polyfill"
  8744. }
  8745. },
  8746. "autoload": {
  8747. "files": [
  8748. "bootstrap.php"
  8749. ],
  8750. "psr-4": {
  8751. "Symfony\\Polyfill\\Php73\\": ""
  8752. },
  8753. "classmap": [
  8754. "Resources/stubs"
  8755. ]
  8756. },
  8757. "notification-url": "https://packagist.org/downloads/",
  8758. "license": [
  8759. "MIT"
  8760. ],
  8761. "authors": [
  8762. {
  8763. "name": "Nicolas Grekas",
  8764. "email": "p@tchwork.com"
  8765. },
  8766. {
  8767. "name": "Symfony Community",
  8768. "homepage": "https://symfony.com/contributors"
  8769. }
  8770. ],
  8771. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  8772. "homepage": "https://symfony.com",
  8773. "keywords": [
  8774. "compatibility",
  8775. "polyfill",
  8776. "portable",
  8777. "shim"
  8778. ],
  8779. "support": {
  8780. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  8781. },
  8782. "funding": [
  8783. {
  8784. "url": "https://symfony.com/sponsor",
  8785. "type": "custom"
  8786. },
  8787. {
  8788. "url": "https://github.com/fabpot",
  8789. "type": "github"
  8790. },
  8791. {
  8792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8793. "type": "tidelift"
  8794. }
  8795. ],
  8796. "time": "2022-05-24T11:49:31+00:00"
  8797. },
  8798. {
  8799. "name": "symfony/polyfill-php80",
  8800. "version": "v1.26.0",
  8801. "source": {
  8802. "type": "git",
  8803. "url": "https://github.com/symfony/polyfill-php80.git",
  8804. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  8805. },
  8806. "dist": {
  8807. "type": "zip",
  8808. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8809. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8810. "shasum": "",
  8811. "mirrors": [
  8812. {
  8813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8814. "preferred": true
  8815. }
  8816. ]
  8817. },
  8818. "require": {
  8819. "php": ">=7.1"
  8820. },
  8821. "type": "library",
  8822. "extra": {
  8823. "branch-alias": {
  8824. "dev-main": "1.26-dev"
  8825. },
  8826. "thanks": {
  8827. "name": "symfony/polyfill",
  8828. "url": "https://github.com/symfony/polyfill"
  8829. }
  8830. },
  8831. "autoload": {
  8832. "files": [
  8833. "bootstrap.php"
  8834. ],
  8835. "psr-4": {
  8836. "Symfony\\Polyfill\\Php80\\": ""
  8837. },
  8838. "classmap": [
  8839. "Resources/stubs"
  8840. ]
  8841. },
  8842. "notification-url": "https://packagist.org/downloads/",
  8843. "license": [
  8844. "MIT"
  8845. ],
  8846. "authors": [
  8847. {
  8848. "name": "Ion Bazan",
  8849. "email": "ion.bazan@gmail.com"
  8850. },
  8851. {
  8852. "name": "Nicolas Grekas",
  8853. "email": "p@tchwork.com"
  8854. },
  8855. {
  8856. "name": "Symfony Community",
  8857. "homepage": "https://symfony.com/contributors"
  8858. }
  8859. ],
  8860. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8861. "homepage": "https://symfony.com",
  8862. "keywords": [
  8863. "compatibility",
  8864. "polyfill",
  8865. "portable",
  8866. "shim"
  8867. ],
  8868. "support": {
  8869. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  8870. },
  8871. "funding": [
  8872. {
  8873. "url": "https://symfony.com/sponsor",
  8874. "type": "custom"
  8875. },
  8876. {
  8877. "url": "https://github.com/fabpot",
  8878. "type": "github"
  8879. },
  8880. {
  8881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8882. "type": "tidelift"
  8883. }
  8884. ],
  8885. "time": "2022-05-10T07:21:04+00:00"
  8886. },
  8887. {
  8888. "name": "symfony/polyfill-php81",
  8889. "version": "v1.26.0",
  8890. "source": {
  8891. "type": "git",
  8892. "url": "https://github.com/symfony/polyfill-php81.git",
  8893. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  8894. },
  8895. "dist": {
  8896. "type": "zip",
  8897. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  8898. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  8899. "shasum": "",
  8900. "mirrors": [
  8901. {
  8902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8903. "preferred": true
  8904. }
  8905. ]
  8906. },
  8907. "require": {
  8908. "php": ">=7.1"
  8909. },
  8910. "type": "library",
  8911. "extra": {
  8912. "branch-alias": {
  8913. "dev-main": "1.26-dev"
  8914. },
  8915. "thanks": {
  8916. "name": "symfony/polyfill",
  8917. "url": "https://github.com/symfony/polyfill"
  8918. }
  8919. },
  8920. "autoload": {
  8921. "files": [
  8922. "bootstrap.php"
  8923. ],
  8924. "psr-4": {
  8925. "Symfony\\Polyfill\\Php81\\": ""
  8926. },
  8927. "classmap": [
  8928. "Resources/stubs"
  8929. ]
  8930. },
  8931. "notification-url": "https://packagist.org/downloads/",
  8932. "license": [
  8933. "MIT"
  8934. ],
  8935. "authors": [
  8936. {
  8937. "name": "Nicolas Grekas",
  8938. "email": "p@tchwork.com"
  8939. },
  8940. {
  8941. "name": "Symfony Community",
  8942. "homepage": "https://symfony.com/contributors"
  8943. }
  8944. ],
  8945. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8946. "homepage": "https://symfony.com",
  8947. "keywords": [
  8948. "compatibility",
  8949. "polyfill",
  8950. "portable",
  8951. "shim"
  8952. ],
  8953. "support": {
  8954. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  8955. },
  8956. "funding": [
  8957. {
  8958. "url": "https://symfony.com/sponsor",
  8959. "type": "custom"
  8960. },
  8961. {
  8962. "url": "https://github.com/fabpot",
  8963. "type": "github"
  8964. },
  8965. {
  8966. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8967. "type": "tidelift"
  8968. }
  8969. ],
  8970. "time": "2022-05-24T11:49:31+00:00"
  8971. },
  8972. {
  8973. "name": "symfony/process",
  8974. "version": "v5.4.8",
  8975. "source": {
  8976. "type": "git",
  8977. "url": "https://github.com/symfony/process.git",
  8978. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
  8979. },
  8980. "dist": {
  8981. "type": "zip",
  8982. "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  8983. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  8984. "shasum": "",
  8985. "mirrors": [
  8986. {
  8987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8988. "preferred": true
  8989. }
  8990. ]
  8991. },
  8992. "require": {
  8993. "php": ">=7.2.5",
  8994. "symfony/polyfill-php80": "^1.16"
  8995. },
  8996. "type": "library",
  8997. "autoload": {
  8998. "psr-4": {
  8999. "Symfony\\Component\\Process\\": ""
  9000. },
  9001. "exclude-from-classmap": [
  9002. "/Tests/"
  9003. ]
  9004. },
  9005. "notification-url": "https://packagist.org/downloads/",
  9006. "license": [
  9007. "MIT"
  9008. ],
  9009. "authors": [
  9010. {
  9011. "name": "Fabien Potencier",
  9012. "email": "fabien@symfony.com"
  9013. },
  9014. {
  9015. "name": "Symfony Community",
  9016. "homepage": "https://symfony.com/contributors"
  9017. }
  9018. ],
  9019. "description": "Executes commands in sub-processes",
  9020. "homepage": "https://symfony.com",
  9021. "support": {
  9022. "source": "https://github.com/symfony/process/tree/v5.4.8"
  9023. },
  9024. "funding": [
  9025. {
  9026. "url": "https://symfony.com/sponsor",
  9027. "type": "custom"
  9028. },
  9029. {
  9030. "url": "https://github.com/fabpot",
  9031. "type": "github"
  9032. },
  9033. {
  9034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9035. "type": "tidelift"
  9036. }
  9037. ],
  9038. "time": "2022-04-08T05:07:18+00:00"
  9039. },
  9040. {
  9041. "name": "symfony/psr-http-message-bridge",
  9042. "version": "v2.1.2",
  9043. "source": {
  9044. "type": "git",
  9045. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9046. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  9047. },
  9048. "dist": {
  9049. "type": "zip",
  9050. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9051. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9052. "shasum": "",
  9053. "mirrors": [
  9054. {
  9055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9056. "preferred": true
  9057. }
  9058. ]
  9059. },
  9060. "require": {
  9061. "php": ">=7.1",
  9062. "psr/http-message": "^1.0",
  9063. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9064. },
  9065. "require-dev": {
  9066. "nyholm/psr7": "^1.1",
  9067. "psr/log": "^1.1 || ^2 || ^3",
  9068. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9069. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9070. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9071. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9072. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9073. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9074. },
  9075. "suggest": {
  9076. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9077. },
  9078. "type": "symfony-bridge",
  9079. "extra": {
  9080. "branch-alias": {
  9081. "dev-main": "2.1-dev"
  9082. }
  9083. },
  9084. "autoload": {
  9085. "psr-4": {
  9086. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9087. },
  9088. "exclude-from-classmap": [
  9089. "/Tests/"
  9090. ]
  9091. },
  9092. "notification-url": "https://packagist.org/downloads/",
  9093. "license": [
  9094. "MIT"
  9095. ],
  9096. "authors": [
  9097. {
  9098. "name": "Fabien Potencier",
  9099. "email": "fabien@symfony.com"
  9100. },
  9101. {
  9102. "name": "Symfony Community",
  9103. "homepage": "http://symfony.com/contributors"
  9104. }
  9105. ],
  9106. "description": "PSR HTTP message bridge",
  9107. "homepage": "http://symfony.com",
  9108. "keywords": [
  9109. "http",
  9110. "http-message",
  9111. "psr-17",
  9112. "psr-7"
  9113. ],
  9114. "support": {
  9115. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9116. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  9117. },
  9118. "funding": [
  9119. {
  9120. "url": "https://symfony.com/sponsor",
  9121. "type": "custom"
  9122. },
  9123. {
  9124. "url": "https://github.com/fabpot",
  9125. "type": "github"
  9126. },
  9127. {
  9128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9129. "type": "tidelift"
  9130. }
  9131. ],
  9132. "time": "2021-11-05T13:13:39+00:00"
  9133. },
  9134. {
  9135. "name": "symfony/routing",
  9136. "version": "v5.4.8",
  9137. "source": {
  9138. "type": "git",
  9139. "url": "https://github.com/symfony/routing.git",
  9140. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7"
  9141. },
  9142. "dist": {
  9143. "type": "zip",
  9144. "url": "https://api.github.com/repos/symfony/routing/zipball/e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  9145. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  9146. "shasum": "",
  9147. "mirrors": [
  9148. {
  9149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9150. "preferred": true
  9151. }
  9152. ]
  9153. },
  9154. "require": {
  9155. "php": ">=7.2.5",
  9156. "symfony/deprecation-contracts": "^2.1|^3",
  9157. "symfony/polyfill-php80": "^1.16"
  9158. },
  9159. "conflict": {
  9160. "doctrine/annotations": "<1.12",
  9161. "symfony/config": "<5.3",
  9162. "symfony/dependency-injection": "<4.4",
  9163. "symfony/yaml": "<4.4"
  9164. },
  9165. "require-dev": {
  9166. "doctrine/annotations": "^1.12",
  9167. "psr/log": "^1|^2|^3",
  9168. "symfony/config": "^5.3|^6.0",
  9169. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9170. "symfony/expression-language": "^4.4|^5.0|^6.0",
  9171. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  9172. "symfony/yaml": "^4.4|^5.0|^6.0"
  9173. },
  9174. "suggest": {
  9175. "symfony/config": "For using the all-in-one router or any loader",
  9176. "symfony/expression-language": "For using expression matching",
  9177. "symfony/http-foundation": "For using a Symfony Request object",
  9178. "symfony/yaml": "For using the YAML loader"
  9179. },
  9180. "type": "library",
  9181. "autoload": {
  9182. "psr-4": {
  9183. "Symfony\\Component\\Routing\\": ""
  9184. },
  9185. "exclude-from-classmap": [
  9186. "/Tests/"
  9187. ]
  9188. },
  9189. "notification-url": "https://packagist.org/downloads/",
  9190. "license": [
  9191. "MIT"
  9192. ],
  9193. "authors": [
  9194. {
  9195. "name": "Fabien Potencier",
  9196. "email": "fabien@symfony.com"
  9197. },
  9198. {
  9199. "name": "Symfony Community",
  9200. "homepage": "https://symfony.com/contributors"
  9201. }
  9202. ],
  9203. "description": "Maps an HTTP request to a set of configuration variables",
  9204. "homepage": "https://symfony.com",
  9205. "keywords": [
  9206. "router",
  9207. "routing",
  9208. "uri",
  9209. "url"
  9210. ],
  9211. "support": {
  9212. "source": "https://github.com/symfony/routing/tree/v5.4.8"
  9213. },
  9214. "funding": [
  9215. {
  9216. "url": "https://symfony.com/sponsor",
  9217. "type": "custom"
  9218. },
  9219. {
  9220. "url": "https://github.com/fabpot",
  9221. "type": "github"
  9222. },
  9223. {
  9224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9225. "type": "tidelift"
  9226. }
  9227. ],
  9228. "time": "2022-04-18T21:45:37+00:00"
  9229. },
  9230. {
  9231. "name": "symfony/service-contracts",
  9232. "version": "v2.5.2",
  9233. "source": {
  9234. "type": "git",
  9235. "url": "https://github.com/symfony/service-contracts.git",
  9236. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  9237. },
  9238. "dist": {
  9239. "type": "zip",
  9240. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9241. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9242. "shasum": "",
  9243. "mirrors": [
  9244. {
  9245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9246. "preferred": true
  9247. }
  9248. ]
  9249. },
  9250. "require": {
  9251. "php": ">=7.2.5",
  9252. "psr/container": "^1.1",
  9253. "symfony/deprecation-contracts": "^2.1|^3"
  9254. },
  9255. "conflict": {
  9256. "ext-psr": "<1.1|>=2"
  9257. },
  9258. "suggest": {
  9259. "symfony/service-implementation": ""
  9260. },
  9261. "type": "library",
  9262. "extra": {
  9263. "branch-alias": {
  9264. "dev-main": "2.5-dev"
  9265. },
  9266. "thanks": {
  9267. "name": "symfony/contracts",
  9268. "url": "https://github.com/symfony/contracts"
  9269. }
  9270. },
  9271. "autoload": {
  9272. "psr-4": {
  9273. "Symfony\\Contracts\\Service\\": ""
  9274. }
  9275. },
  9276. "notification-url": "https://packagist.org/downloads/",
  9277. "license": [
  9278. "MIT"
  9279. ],
  9280. "authors": [
  9281. {
  9282. "name": "Nicolas Grekas",
  9283. "email": "p@tchwork.com"
  9284. },
  9285. {
  9286. "name": "Symfony Community",
  9287. "homepage": "https://symfony.com/contributors"
  9288. }
  9289. ],
  9290. "description": "Generic abstractions related to writing services",
  9291. "homepage": "https://symfony.com",
  9292. "keywords": [
  9293. "abstractions",
  9294. "contracts",
  9295. "decoupling",
  9296. "interfaces",
  9297. "interoperability",
  9298. "standards"
  9299. ],
  9300. "support": {
  9301. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  9302. },
  9303. "funding": [
  9304. {
  9305. "url": "https://symfony.com/sponsor",
  9306. "type": "custom"
  9307. },
  9308. {
  9309. "url": "https://github.com/fabpot",
  9310. "type": "github"
  9311. },
  9312. {
  9313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9314. "type": "tidelift"
  9315. }
  9316. ],
  9317. "time": "2022-05-30T19:17:29+00:00"
  9318. },
  9319. {
  9320. "name": "symfony/string",
  9321. "version": "v6.0.10",
  9322. "source": {
  9323. "type": "git",
  9324. "url": "https://github.com/symfony/string.git",
  9325. "reference": "1b3adf02a0fc814bd9118d7fd68a097a599ebc27"
  9326. },
  9327. "dist": {
  9328. "type": "zip",
  9329. "url": "https://api.github.com/repos/symfony/string/zipball/1b3adf02a0fc814bd9118d7fd68a097a599ebc27",
  9330. "reference": "1b3adf02a0fc814bd9118d7fd68a097a599ebc27",
  9331. "shasum": "",
  9332. "mirrors": [
  9333. {
  9334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9335. "preferred": true
  9336. }
  9337. ]
  9338. },
  9339. "require": {
  9340. "php": ">=8.0.2",
  9341. "symfony/polyfill-ctype": "~1.8",
  9342. "symfony/polyfill-intl-grapheme": "~1.0",
  9343. "symfony/polyfill-intl-normalizer": "~1.0",
  9344. "symfony/polyfill-mbstring": "~1.0"
  9345. },
  9346. "conflict": {
  9347. "symfony/translation-contracts": "<2.0"
  9348. },
  9349. "require-dev": {
  9350. "symfony/error-handler": "^5.4|^6.0",
  9351. "symfony/http-client": "^5.4|^6.0",
  9352. "symfony/translation-contracts": "^2.0|^3.0",
  9353. "symfony/var-exporter": "^5.4|^6.0"
  9354. },
  9355. "type": "library",
  9356. "autoload": {
  9357. "files": [
  9358. "Resources/functions.php"
  9359. ],
  9360. "psr-4": {
  9361. "Symfony\\Component\\String\\": ""
  9362. },
  9363. "exclude-from-classmap": [
  9364. "/Tests/"
  9365. ]
  9366. },
  9367. "notification-url": "https://packagist.org/downloads/",
  9368. "license": [
  9369. "MIT"
  9370. ],
  9371. "authors": [
  9372. {
  9373. "name": "Nicolas Grekas",
  9374. "email": "p@tchwork.com"
  9375. },
  9376. {
  9377. "name": "Symfony Community",
  9378. "homepage": "https://symfony.com/contributors"
  9379. }
  9380. ],
  9381. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9382. "homepage": "https://symfony.com",
  9383. "keywords": [
  9384. "grapheme",
  9385. "i18n",
  9386. "string",
  9387. "unicode",
  9388. "utf-8",
  9389. "utf8"
  9390. ],
  9391. "support": {
  9392. "source": "https://github.com/symfony/string/tree/v6.0.10"
  9393. },
  9394. "funding": [
  9395. {
  9396. "url": "https://symfony.com/sponsor",
  9397. "type": "custom"
  9398. },
  9399. {
  9400. "url": "https://github.com/fabpot",
  9401. "type": "github"
  9402. },
  9403. {
  9404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9405. "type": "tidelift"
  9406. }
  9407. ],
  9408. "time": "2022-06-26T16:34:50+00:00"
  9409. },
  9410. {
  9411. "name": "symfony/translation",
  9412. "version": "v6.0.9",
  9413. "source": {
  9414. "type": "git",
  9415. "url": "https://github.com/symfony/translation.git",
  9416. "reference": "9ba011309943955a3807b8236c17cff3b88f67b6"
  9417. },
  9418. "dist": {
  9419. "type": "zip",
  9420. "url": "https://api.github.com/repos/symfony/translation/zipball/9ba011309943955a3807b8236c17cff3b88f67b6",
  9421. "reference": "9ba011309943955a3807b8236c17cff3b88f67b6",
  9422. "shasum": "",
  9423. "mirrors": [
  9424. {
  9425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9426. "preferred": true
  9427. }
  9428. ]
  9429. },
  9430. "require": {
  9431. "php": ">=8.0.2",
  9432. "symfony/polyfill-mbstring": "~1.0",
  9433. "symfony/translation-contracts": "^2.3|^3.0"
  9434. },
  9435. "conflict": {
  9436. "symfony/config": "<5.4",
  9437. "symfony/console": "<5.4",
  9438. "symfony/dependency-injection": "<5.4",
  9439. "symfony/http-kernel": "<5.4",
  9440. "symfony/twig-bundle": "<5.4",
  9441. "symfony/yaml": "<5.4"
  9442. },
  9443. "provide": {
  9444. "symfony/translation-implementation": "2.3|3.0"
  9445. },
  9446. "require-dev": {
  9447. "psr/log": "^1|^2|^3",
  9448. "symfony/config": "^5.4|^6.0",
  9449. "symfony/console": "^5.4|^6.0",
  9450. "symfony/dependency-injection": "^5.4|^6.0",
  9451. "symfony/finder": "^5.4|^6.0",
  9452. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  9453. "symfony/http-kernel": "^5.4|^6.0",
  9454. "symfony/intl": "^5.4|^6.0",
  9455. "symfony/polyfill-intl-icu": "^1.21",
  9456. "symfony/service-contracts": "^1.1.2|^2|^3",
  9457. "symfony/yaml": "^5.4|^6.0"
  9458. },
  9459. "suggest": {
  9460. "psr/log-implementation": "To use logging capability in translator",
  9461. "symfony/config": "",
  9462. "symfony/yaml": ""
  9463. },
  9464. "type": "library",
  9465. "autoload": {
  9466. "files": [
  9467. "Resources/functions.php"
  9468. ],
  9469. "psr-4": {
  9470. "Symfony\\Component\\Translation\\": ""
  9471. },
  9472. "exclude-from-classmap": [
  9473. "/Tests/"
  9474. ]
  9475. },
  9476. "notification-url": "https://packagist.org/downloads/",
  9477. "license": [
  9478. "MIT"
  9479. ],
  9480. "authors": [
  9481. {
  9482. "name": "Fabien Potencier",
  9483. "email": "fabien@symfony.com"
  9484. },
  9485. {
  9486. "name": "Symfony Community",
  9487. "homepage": "https://symfony.com/contributors"
  9488. }
  9489. ],
  9490. "description": "Provides tools to internationalize your application",
  9491. "homepage": "https://symfony.com",
  9492. "support": {
  9493. "source": "https://github.com/symfony/translation/tree/v6.0.9"
  9494. },
  9495. "funding": [
  9496. {
  9497. "url": "https://symfony.com/sponsor",
  9498. "type": "custom"
  9499. },
  9500. {
  9501. "url": "https://github.com/fabpot",
  9502. "type": "github"
  9503. },
  9504. {
  9505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9506. "type": "tidelift"
  9507. }
  9508. ],
  9509. "time": "2022-05-06T14:27:17+00:00"
  9510. },
  9511. {
  9512. "name": "symfony/translation-contracts",
  9513. "version": "v3.0.2",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/symfony/translation-contracts.git",
  9517. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9522. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9523. "shasum": "",
  9524. "mirrors": [
  9525. {
  9526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9527. "preferred": true
  9528. }
  9529. ]
  9530. },
  9531. "require": {
  9532. "php": ">=8.0.2"
  9533. },
  9534. "suggest": {
  9535. "symfony/translation-implementation": ""
  9536. },
  9537. "type": "library",
  9538. "extra": {
  9539. "branch-alias": {
  9540. "dev-main": "3.0-dev"
  9541. },
  9542. "thanks": {
  9543. "name": "symfony/contracts",
  9544. "url": "https://github.com/symfony/contracts"
  9545. }
  9546. },
  9547. "autoload": {
  9548. "psr-4": {
  9549. "Symfony\\Contracts\\Translation\\": ""
  9550. }
  9551. },
  9552. "notification-url": "https://packagist.org/downloads/",
  9553. "license": [
  9554. "MIT"
  9555. ],
  9556. "authors": [
  9557. {
  9558. "name": "Nicolas Grekas",
  9559. "email": "p@tchwork.com"
  9560. },
  9561. {
  9562. "name": "Symfony Community",
  9563. "homepage": "https://symfony.com/contributors"
  9564. }
  9565. ],
  9566. "description": "Generic abstractions related to translation",
  9567. "homepage": "https://symfony.com",
  9568. "keywords": [
  9569. "abstractions",
  9570. "contracts",
  9571. "decoupling",
  9572. "interfaces",
  9573. "interoperability",
  9574. "standards"
  9575. ],
  9576. "support": {
  9577. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  9578. },
  9579. "funding": [
  9580. {
  9581. "url": "https://symfony.com/sponsor",
  9582. "type": "custom"
  9583. },
  9584. {
  9585. "url": "https://github.com/fabpot",
  9586. "type": "github"
  9587. },
  9588. {
  9589. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9590. "type": "tidelift"
  9591. }
  9592. ],
  9593. "time": "2022-06-27T17:10:44+00:00"
  9594. },
  9595. {
  9596. "name": "symfony/var-dumper",
  9597. "version": "v5.4.9",
  9598. "source": {
  9599. "type": "git",
  9600. "url": "https://github.com/symfony/var-dumper.git",
  9601. "reference": "af52239a330fafd192c773795520dc2dd62b5657"
  9602. },
  9603. "dist": {
  9604. "type": "zip",
  9605. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
  9606. "reference": "af52239a330fafd192c773795520dc2dd62b5657",
  9607. "shasum": "",
  9608. "mirrors": [
  9609. {
  9610. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9611. "preferred": true
  9612. }
  9613. ]
  9614. },
  9615. "require": {
  9616. "php": ">=7.2.5",
  9617. "symfony/polyfill-mbstring": "~1.0",
  9618. "symfony/polyfill-php80": "^1.16"
  9619. },
  9620. "conflict": {
  9621. "phpunit/phpunit": "<5.4.3",
  9622. "symfony/console": "<4.4"
  9623. },
  9624. "require-dev": {
  9625. "ext-iconv": "*",
  9626. "symfony/console": "^4.4|^5.0|^6.0",
  9627. "symfony/process": "^4.4|^5.0|^6.0",
  9628. "symfony/uid": "^5.1|^6.0",
  9629. "twig/twig": "^2.13|^3.0.4"
  9630. },
  9631. "suggest": {
  9632. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9633. "ext-intl": "To show region name in time zone dump",
  9634. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9635. },
  9636. "bin": [
  9637. "Resources/bin/var-dump-server"
  9638. ],
  9639. "type": "library",
  9640. "autoload": {
  9641. "files": [
  9642. "Resources/functions/dump.php"
  9643. ],
  9644. "psr-4": {
  9645. "Symfony\\Component\\VarDumper\\": ""
  9646. },
  9647. "exclude-from-classmap": [
  9648. "/Tests/"
  9649. ]
  9650. },
  9651. "notification-url": "https://packagist.org/downloads/",
  9652. "license": [
  9653. "MIT"
  9654. ],
  9655. "authors": [
  9656. {
  9657. "name": "Nicolas Grekas",
  9658. "email": "p@tchwork.com"
  9659. },
  9660. {
  9661. "name": "Symfony Community",
  9662. "homepage": "https://symfony.com/contributors"
  9663. }
  9664. ],
  9665. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9666. "homepage": "https://symfony.com",
  9667. "keywords": [
  9668. "debug",
  9669. "dump"
  9670. ],
  9671. "support": {
  9672. "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
  9673. },
  9674. "funding": [
  9675. {
  9676. "url": "https://symfony.com/sponsor",
  9677. "type": "custom"
  9678. },
  9679. {
  9680. "url": "https://github.com/fabpot",
  9681. "type": "github"
  9682. },
  9683. {
  9684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9685. "type": "tidelift"
  9686. }
  9687. ],
  9688. "time": "2022-05-21T10:24:18+00:00"
  9689. },
  9690. {
  9691. "name": "symfony/var-exporter",
  9692. "version": "v6.0.9",
  9693. "source": {
  9694. "type": "git",
  9695. "url": "https://github.com/symfony/var-exporter.git",
  9696. "reference": "51c9947398d4f87f0b5a861999534a95afcd971e"
  9697. },
  9698. "dist": {
  9699. "type": "zip",
  9700. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/51c9947398d4f87f0b5a861999534a95afcd971e",
  9701. "reference": "51c9947398d4f87f0b5a861999534a95afcd971e",
  9702. "shasum": "",
  9703. "mirrors": [
  9704. {
  9705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9706. "preferred": true
  9707. }
  9708. ]
  9709. },
  9710. "require": {
  9711. "php": ">=8.0.2"
  9712. },
  9713. "require-dev": {
  9714. "symfony/var-dumper": "^5.4|^6.0"
  9715. },
  9716. "type": "library",
  9717. "autoload": {
  9718. "psr-4": {
  9719. "Symfony\\Component\\VarExporter\\": ""
  9720. },
  9721. "exclude-from-classmap": [
  9722. "/Tests/"
  9723. ]
  9724. },
  9725. "notification-url": "https://packagist.org/downloads/",
  9726. "license": [
  9727. "MIT"
  9728. ],
  9729. "authors": [
  9730. {
  9731. "name": "Nicolas Grekas",
  9732. "email": "p@tchwork.com"
  9733. },
  9734. {
  9735. "name": "Symfony Community",
  9736. "homepage": "https://symfony.com/contributors"
  9737. }
  9738. ],
  9739. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9740. "homepage": "https://symfony.com",
  9741. "keywords": [
  9742. "clone",
  9743. "construct",
  9744. "export",
  9745. "hydrate",
  9746. "instantiate",
  9747. "serialize"
  9748. ],
  9749. "support": {
  9750. "source": "https://github.com/symfony/var-exporter/tree/v6.0.9"
  9751. },
  9752. "funding": [
  9753. {
  9754. "url": "https://symfony.com/sponsor",
  9755. "type": "custom"
  9756. },
  9757. {
  9758. "url": "https://github.com/fabpot",
  9759. "type": "github"
  9760. },
  9761. {
  9762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9763. "type": "tidelift"
  9764. }
  9765. ],
  9766. "time": "2022-05-21T13:33:31+00:00"
  9767. },
  9768. {
  9769. "name": "tencent/tls-sig-api-v2",
  9770. "version": "v1.0",
  9771. "source": {
  9772. "type": "git",
  9773. "url": "https://github.com/tencentyun/tls-sig-api-v2-php.git",
  9774. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f"
  9775. },
  9776. "dist": {
  9777. "type": "zip",
  9778. "url": "https://api.github.com/repos/tencentyun/tls-sig-api-v2-php/zipball/af947437779ac6f18233e24c3e12ad5dae866a9f",
  9779. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f",
  9780. "shasum": "",
  9781. "mirrors": [
  9782. {
  9783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9784. "preferred": true
  9785. }
  9786. ]
  9787. },
  9788. "require": {
  9789. "php": ">=5.3.0"
  9790. },
  9791. "type": "library",
  9792. "autoload": {
  9793. "psr-4": {
  9794. "Tencent\\": "src/"
  9795. }
  9796. },
  9797. "notification-url": "https://packagist.org/downloads/",
  9798. "license": [
  9799. "MIT"
  9800. ],
  9801. "authors": [
  9802. {
  9803. "name": "weijunyi",
  9804. "email": "weijunyi@tencent.com",
  9805. "role": "Developer"
  9806. }
  9807. ],
  9808. "description": "tls-sig-api-v2 适用于腾讯云通信生成用户账号签名。",
  9809. "homepage": "https://github.com/tencentyun/tls-sig-api-v2-php",
  9810. "keywords": [
  9811. "im",
  9812. "tencent"
  9813. ],
  9814. "support": {
  9815. "issues": "https://github.com/tencentyun/tls-sig-api-v2-php/issues",
  9816. "source": "https://github.com/tencentyun/tls-sig-api-v2-php/tree/v1.0"
  9817. },
  9818. "time": "2019-06-20T08:42:03+00:00"
  9819. },
  9820. {
  9821. "name": "tencentcloud/tencentcloud-sdk-php",
  9822. "version": "3.0.671",
  9823. "source": {
  9824. "type": "git",
  9825. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  9826. "reference": "c3de84ff705dc58e186d65865870cab712cfbdb7"
  9827. },
  9828. "dist": {
  9829. "type": "zip",
  9830. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/c3de84ff705dc58e186d65865870cab712cfbdb7",
  9831. "reference": "c3de84ff705dc58e186d65865870cab712cfbdb7",
  9832. "shasum": "",
  9833. "mirrors": [
  9834. {
  9835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9836. "preferred": true
  9837. }
  9838. ]
  9839. },
  9840. "require": {
  9841. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  9842. "php": ">=5.6.0"
  9843. },
  9844. "type": "library",
  9845. "autoload": {
  9846. "psr-4": {
  9847. "TencentCloud\\": "./src/TencentCloud"
  9848. },
  9849. "classmap": [
  9850. "src/QcloudApi/QcloudApi.php"
  9851. ]
  9852. },
  9853. "notification-url": "https://packagist.org/downloads/",
  9854. "license": [
  9855. "Apache-2.0"
  9856. ],
  9857. "authors": [
  9858. {
  9859. "name": "coolli",
  9860. "email": "tencentcloudapi@tencent.com",
  9861. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  9862. "role": "Developer"
  9863. }
  9864. ],
  9865. "description": "TencentCloudApi php sdk",
  9866. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  9867. "support": {
  9868. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  9869. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.671"
  9870. },
  9871. "time": "2022-07-13T23:02:46+00:00"
  9872. },
  9873. {
  9874. "name": "tijsverkoyen/css-to-inline-styles",
  9875. "version": "2.2.4",
  9876. "source": {
  9877. "type": "git",
  9878. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9879. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  9880. },
  9881. "dist": {
  9882. "type": "zip",
  9883. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  9884. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  9885. "shasum": "",
  9886. "mirrors": [
  9887. {
  9888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9889. "preferred": true
  9890. }
  9891. ]
  9892. },
  9893. "require": {
  9894. "ext-dom": "*",
  9895. "ext-libxml": "*",
  9896. "php": "^5.5 || ^7.0 || ^8.0",
  9897. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  9898. },
  9899. "require-dev": {
  9900. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  9901. },
  9902. "type": "library",
  9903. "extra": {
  9904. "branch-alias": {
  9905. "dev-master": "2.2.x-dev"
  9906. }
  9907. },
  9908. "autoload": {
  9909. "psr-4": {
  9910. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9911. }
  9912. },
  9913. "notification-url": "https://packagist.org/downloads/",
  9914. "license": [
  9915. "BSD-3-Clause"
  9916. ],
  9917. "authors": [
  9918. {
  9919. "name": "Tijs Verkoyen",
  9920. "email": "css_to_inline_styles@verkoyen.eu",
  9921. "role": "Developer"
  9922. }
  9923. ],
  9924. "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.",
  9925. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9926. "support": {
  9927. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9928. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  9929. },
  9930. "time": "2021-12-08T09:12:39+00:00"
  9931. },
  9932. {
  9933. "name": "vlucas/phpdotenv",
  9934. "version": "v5.4.1",
  9935. "source": {
  9936. "type": "git",
  9937. "url": "https://github.com/vlucas/phpdotenv.git",
  9938. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  9939. },
  9940. "dist": {
  9941. "type": "zip",
  9942. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  9943. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  9944. "shasum": "",
  9945. "mirrors": [
  9946. {
  9947. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9948. "preferred": true
  9949. }
  9950. ]
  9951. },
  9952. "require": {
  9953. "ext-pcre": "*",
  9954. "graham-campbell/result-type": "^1.0.2",
  9955. "php": "^7.1.3 || ^8.0",
  9956. "phpoption/phpoption": "^1.8",
  9957. "symfony/polyfill-ctype": "^1.23",
  9958. "symfony/polyfill-mbstring": "^1.23.1",
  9959. "symfony/polyfill-php80": "^1.23.1"
  9960. },
  9961. "require-dev": {
  9962. "bamarni/composer-bin-plugin": "^1.4.1",
  9963. "ext-filter": "*",
  9964. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  9965. },
  9966. "suggest": {
  9967. "ext-filter": "Required to use the boolean validator."
  9968. },
  9969. "type": "library",
  9970. "extra": {
  9971. "branch-alias": {
  9972. "dev-master": "5.4-dev"
  9973. }
  9974. },
  9975. "autoload": {
  9976. "psr-4": {
  9977. "Dotenv\\": "src/"
  9978. }
  9979. },
  9980. "notification-url": "https://packagist.org/downloads/",
  9981. "license": [
  9982. "BSD-3-Clause"
  9983. ],
  9984. "authors": [
  9985. {
  9986. "name": "Graham Campbell",
  9987. "email": "hello@gjcampbell.co.uk",
  9988. "homepage": "https://github.com/GrahamCampbell"
  9989. },
  9990. {
  9991. "name": "Vance Lucas",
  9992. "email": "vance@vancelucas.com",
  9993. "homepage": "https://github.com/vlucas"
  9994. }
  9995. ],
  9996. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9997. "keywords": [
  9998. "dotenv",
  9999. "env",
  10000. "environment"
  10001. ],
  10002. "support": {
  10003. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10004. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  10005. },
  10006. "funding": [
  10007. {
  10008. "url": "https://github.com/GrahamCampbell",
  10009. "type": "github"
  10010. },
  10011. {
  10012. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10013. "type": "tidelift"
  10014. }
  10015. ],
  10016. "time": "2021-12-12T23:22:04+00:00"
  10017. },
  10018. {
  10019. "name": "voku/portable-ascii",
  10020. "version": "1.6.1",
  10021. "source": {
  10022. "type": "git",
  10023. "url": "https://github.com/voku/portable-ascii.git",
  10024. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  10025. },
  10026. "dist": {
  10027. "type": "zip",
  10028. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  10029. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  10030. "shasum": "",
  10031. "mirrors": [
  10032. {
  10033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10034. "preferred": true
  10035. }
  10036. ]
  10037. },
  10038. "require": {
  10039. "php": ">=7.0.0"
  10040. },
  10041. "require-dev": {
  10042. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  10043. },
  10044. "suggest": {
  10045. "ext-intl": "Use Intl for transliterator_transliterate() support"
  10046. },
  10047. "type": "library",
  10048. "autoload": {
  10049. "psr-4": {
  10050. "voku\\": "src/voku/"
  10051. }
  10052. },
  10053. "notification-url": "https://packagist.org/downloads/",
  10054. "license": [
  10055. "MIT"
  10056. ],
  10057. "authors": [
  10058. {
  10059. "name": "Lars Moelleken",
  10060. "homepage": "http://www.moelleken.org/"
  10061. }
  10062. ],
  10063. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  10064. "homepage": "https://github.com/voku/portable-ascii",
  10065. "keywords": [
  10066. "ascii",
  10067. "clean",
  10068. "php"
  10069. ],
  10070. "support": {
  10071. "issues": "https://github.com/voku/portable-ascii/issues",
  10072. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  10073. },
  10074. "funding": [
  10075. {
  10076. "url": "https://www.paypal.me/moelleken",
  10077. "type": "custom"
  10078. },
  10079. {
  10080. "url": "https://github.com/voku",
  10081. "type": "github"
  10082. },
  10083. {
  10084. "url": "https://opencollective.com/portable-ascii",
  10085. "type": "open_collective"
  10086. },
  10087. {
  10088. "url": "https://www.patreon.com/voku",
  10089. "type": "patreon"
  10090. },
  10091. {
  10092. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10093. "type": "tidelift"
  10094. }
  10095. ],
  10096. "time": "2022-01-24T18:55:24+00:00"
  10097. },
  10098. {
  10099. "name": "webmozart/assert",
  10100. "version": "1.11.0",
  10101. "source": {
  10102. "type": "git",
  10103. "url": "https://github.com/webmozarts/assert.git",
  10104. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10105. },
  10106. "dist": {
  10107. "type": "zip",
  10108. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10109. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10110. "shasum": "",
  10111. "mirrors": [
  10112. {
  10113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10114. "preferred": true
  10115. }
  10116. ]
  10117. },
  10118. "require": {
  10119. "ext-ctype": "*",
  10120. "php": "^7.2 || ^8.0"
  10121. },
  10122. "conflict": {
  10123. "phpstan/phpstan": "<0.12.20",
  10124. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10125. },
  10126. "require-dev": {
  10127. "phpunit/phpunit": "^8.5.13"
  10128. },
  10129. "type": "library",
  10130. "extra": {
  10131. "branch-alias": {
  10132. "dev-master": "1.10-dev"
  10133. }
  10134. },
  10135. "autoload": {
  10136. "psr-4": {
  10137. "Webmozart\\Assert\\": "src/"
  10138. }
  10139. },
  10140. "notification-url": "https://packagist.org/downloads/",
  10141. "license": [
  10142. "MIT"
  10143. ],
  10144. "authors": [
  10145. {
  10146. "name": "Bernhard Schussek",
  10147. "email": "bschussek@gmail.com"
  10148. }
  10149. ],
  10150. "description": "Assertions to validate method input/output with nice error messages.",
  10151. "keywords": [
  10152. "assert",
  10153. "check",
  10154. "validate"
  10155. ],
  10156. "support": {
  10157. "issues": "https://github.com/webmozarts/assert/issues",
  10158. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10159. },
  10160. "time": "2022-06-03T18:03:27+00:00"
  10161. },
  10162. {
  10163. "name": "wemersonjanuario/wkhtmltopdf-windows",
  10164. "version": "0.12.2.3",
  10165. "source": {
  10166. "type": "git",
  10167. "url": "https://github.com/wemersonjanuario/wkhtmltopdf-windows.git",
  10168. "reference": "90fcd3487cad5931287742113c449b926e9e48d8"
  10169. },
  10170. "dist": {
  10171. "type": "zip",
  10172. "url": "https://api.github.com/repos/wemersonjanuario/wkhtmltopdf-windows/zipball/90fcd3487cad5931287742113c449b926e9e48d8",
  10173. "reference": "90fcd3487cad5931287742113c449b926e9e48d8",
  10174. "shasum": "",
  10175. "mirrors": [
  10176. {
  10177. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10178. "preferred": true
  10179. }
  10180. ]
  10181. },
  10182. "suggest": {
  10183. "h4cc/wkhtmltopdf-amd64": "*",
  10184. "h4cc/wkhtmltopdf-i386": "*",
  10185. "wemersonjanuario/laravelpdf": "1.0.*"
  10186. },
  10187. "bin": [
  10188. "bin/32bit/wkhtmltopdf.exe",
  10189. "bin/32bit/wkhtmltoimage.exe",
  10190. "bin/64bit/wkhtmltopdf.exe",
  10191. "bin/64bit/wkhtmltoimage.exe"
  10192. ],
  10193. "type": "library",
  10194. "notification-url": "https://packagist.org/downloads/",
  10195. "license": [
  10196. "LGPL Version 3"
  10197. ],
  10198. "authors": [
  10199. {
  10200. "name": "Wemerson Januario",
  10201. "email": "wemerson.januario@gmail.com",
  10202. "homepage": "http://wemersonjanuario.com.br"
  10203. }
  10204. ],
  10205. "description": "Convert html to pdf using webkit (qtwebkit). Static linked windows binary for 32 bit and 64 bit systems.",
  10206. "homepage": "http://wkhtmltopdf.org/",
  10207. "keywords": [
  10208. "binary",
  10209. "convert",
  10210. "htmltoimage",
  10211. "htmltopdf",
  10212. "pdf",
  10213. "snapshot",
  10214. "thumbnail",
  10215. "wkhtmltopdf"
  10216. ],
  10217. "support": {
  10218. "issues": "https://github.com/wemersonjanuario/wkhtmltopdf-windows/issues?state=open",
  10219. "source": "https://github.com/wemersonjanuario/wkhtmltopdf-windows/tree/master"
  10220. },
  10221. "time": "2015-06-30T20:19:22+00:00"
  10222. }
  10223. ],
  10224. "packages-dev": [
  10225. {
  10226. "name": "doctrine/instantiator",
  10227. "version": "1.4.1",
  10228. "source": {
  10229. "type": "git",
  10230. "url": "https://github.com/doctrine/instantiator.git",
  10231. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  10232. },
  10233. "dist": {
  10234. "type": "zip",
  10235. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  10236. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  10237. "shasum": "",
  10238. "mirrors": [
  10239. {
  10240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10241. "preferred": true
  10242. }
  10243. ]
  10244. },
  10245. "require": {
  10246. "php": "^7.1 || ^8.0"
  10247. },
  10248. "require-dev": {
  10249. "doctrine/coding-standard": "^9",
  10250. "ext-pdo": "*",
  10251. "ext-phar": "*",
  10252. "phpbench/phpbench": "^0.16 || ^1",
  10253. "phpstan/phpstan": "^1.4",
  10254. "phpstan/phpstan-phpunit": "^1",
  10255. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  10256. "vimeo/psalm": "^4.22"
  10257. },
  10258. "type": "library",
  10259. "autoload": {
  10260. "psr-4": {
  10261. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10262. }
  10263. },
  10264. "notification-url": "https://packagist.org/downloads/",
  10265. "license": [
  10266. "MIT"
  10267. ],
  10268. "authors": [
  10269. {
  10270. "name": "Marco Pivetta",
  10271. "email": "ocramius@gmail.com",
  10272. "homepage": "https://ocramius.github.io/"
  10273. }
  10274. ],
  10275. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10276. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  10277. "keywords": [
  10278. "constructor",
  10279. "instantiate"
  10280. ],
  10281. "support": {
  10282. "issues": "https://github.com/doctrine/instantiator/issues",
  10283. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  10284. },
  10285. "funding": [
  10286. {
  10287. "url": "https://www.doctrine-project.org/sponsorship.html",
  10288. "type": "custom"
  10289. },
  10290. {
  10291. "url": "https://www.patreon.com/phpdoctrine",
  10292. "type": "patreon"
  10293. },
  10294. {
  10295. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  10296. "type": "tidelift"
  10297. }
  10298. ],
  10299. "time": "2022-03-03T08:28:38+00:00"
  10300. },
  10301. {
  10302. "name": "facade/flare-client-php",
  10303. "version": "1.9.1",
  10304. "source": {
  10305. "type": "git",
  10306. "url": "https://github.com/facade/flare-client-php.git",
  10307. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  10308. },
  10309. "dist": {
  10310. "type": "zip",
  10311. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  10312. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  10313. "shasum": "",
  10314. "mirrors": [
  10315. {
  10316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10317. "preferred": true
  10318. }
  10319. ]
  10320. },
  10321. "require": {
  10322. "facade/ignition-contracts": "~1.0",
  10323. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  10324. "php": "^7.1|^8.0",
  10325. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  10326. "symfony/mime": "^3.4|^4.0|^5.1",
  10327. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  10328. },
  10329. "require-dev": {
  10330. "friendsofphp/php-cs-fixer": "^2.14",
  10331. "phpunit/phpunit": "^7.5.16",
  10332. "spatie/phpunit-snapshot-assertions": "^2.0"
  10333. },
  10334. "type": "library",
  10335. "extra": {
  10336. "branch-alias": {
  10337. "dev-master": "1.0-dev"
  10338. }
  10339. },
  10340. "autoload": {
  10341. "files": [
  10342. "src/helpers.php"
  10343. ],
  10344. "psr-4": {
  10345. "Facade\\FlareClient\\": "src"
  10346. }
  10347. },
  10348. "notification-url": "https://packagist.org/downloads/",
  10349. "license": [
  10350. "MIT"
  10351. ],
  10352. "description": "Send PHP errors to Flare",
  10353. "homepage": "https://github.com/facade/flare-client-php",
  10354. "keywords": [
  10355. "exception",
  10356. "facade",
  10357. "flare",
  10358. "reporting"
  10359. ],
  10360. "support": {
  10361. "issues": "https://github.com/facade/flare-client-php/issues",
  10362. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  10363. },
  10364. "funding": [
  10365. {
  10366. "url": "https://github.com/spatie",
  10367. "type": "github"
  10368. }
  10369. ],
  10370. "time": "2021-09-13T12:16:46+00:00"
  10371. },
  10372. {
  10373. "name": "facade/ignition",
  10374. "version": "2.17.6",
  10375. "source": {
  10376. "type": "git",
  10377. "url": "https://github.com/facade/ignition.git",
  10378. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c"
  10379. },
  10380. "dist": {
  10381. "type": "zip",
  10382. "url": "https://api.github.com/repos/facade/ignition/zipball/6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  10383. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  10384. "shasum": "",
  10385. "mirrors": [
  10386. {
  10387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10388. "preferred": true
  10389. }
  10390. ]
  10391. },
  10392. "require": {
  10393. "ext-curl": "*",
  10394. "ext-json": "*",
  10395. "ext-mbstring": "*",
  10396. "facade/flare-client-php": "^1.9.1",
  10397. "facade/ignition-contracts": "^1.0.2",
  10398. "illuminate/support": "^7.0|^8.0",
  10399. "monolog/monolog": "^2.0",
  10400. "php": "^7.2.5|^8.0",
  10401. "symfony/console": "^5.0",
  10402. "symfony/var-dumper": "^5.0"
  10403. },
  10404. "require-dev": {
  10405. "friendsofphp/php-cs-fixer": "^2.14",
  10406. "livewire/livewire": "^2.4",
  10407. "mockery/mockery": "^1.3",
  10408. "orchestra/testbench": "^5.0|^6.0",
  10409. "psalm/plugin-laravel": "^1.2"
  10410. },
  10411. "suggest": {
  10412. "laravel/telescope": "^3.1"
  10413. },
  10414. "type": "library",
  10415. "extra": {
  10416. "branch-alias": {
  10417. "dev-master": "2.x-dev"
  10418. },
  10419. "laravel": {
  10420. "providers": [
  10421. "Facade\\Ignition\\IgnitionServiceProvider"
  10422. ],
  10423. "aliases": {
  10424. "Flare": "Facade\\Ignition\\Facades\\Flare"
  10425. }
  10426. }
  10427. },
  10428. "autoload": {
  10429. "files": [
  10430. "src/helpers.php"
  10431. ],
  10432. "psr-4": {
  10433. "Facade\\Ignition\\": "src"
  10434. }
  10435. },
  10436. "notification-url": "https://packagist.org/downloads/",
  10437. "license": [
  10438. "MIT"
  10439. ],
  10440. "description": "A beautiful error page for Laravel applications.",
  10441. "homepage": "https://github.com/facade/ignition",
  10442. "keywords": [
  10443. "error",
  10444. "flare",
  10445. "laravel",
  10446. "page"
  10447. ],
  10448. "support": {
  10449. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10450. "forum": "https://twitter.com/flareappio",
  10451. "issues": "https://github.com/facade/ignition/issues",
  10452. "source": "https://github.com/facade/ignition"
  10453. },
  10454. "time": "2022-06-30T18:26:59+00:00"
  10455. },
  10456. {
  10457. "name": "facade/ignition-contracts",
  10458. "version": "1.0.2",
  10459. "source": {
  10460. "type": "git",
  10461. "url": "https://github.com/facade/ignition-contracts.git",
  10462. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  10463. },
  10464. "dist": {
  10465. "type": "zip",
  10466. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10467. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10468. "shasum": "",
  10469. "mirrors": [
  10470. {
  10471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10472. "preferred": true
  10473. }
  10474. ]
  10475. },
  10476. "require": {
  10477. "php": "^7.3|^8.0"
  10478. },
  10479. "require-dev": {
  10480. "friendsofphp/php-cs-fixer": "^v2.15.8",
  10481. "phpunit/phpunit": "^9.3.11",
  10482. "vimeo/psalm": "^3.17.1"
  10483. },
  10484. "type": "library",
  10485. "autoload": {
  10486. "psr-4": {
  10487. "Facade\\IgnitionContracts\\": "src"
  10488. }
  10489. },
  10490. "notification-url": "https://packagist.org/downloads/",
  10491. "license": [
  10492. "MIT"
  10493. ],
  10494. "authors": [
  10495. {
  10496. "name": "Freek Van der Herten",
  10497. "email": "freek@spatie.be",
  10498. "homepage": "https://flareapp.io",
  10499. "role": "Developer"
  10500. }
  10501. ],
  10502. "description": "Solution contracts for Ignition",
  10503. "homepage": "https://github.com/facade/ignition-contracts",
  10504. "keywords": [
  10505. "contracts",
  10506. "flare",
  10507. "ignition"
  10508. ],
  10509. "support": {
  10510. "issues": "https://github.com/facade/ignition-contracts/issues",
  10511. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  10512. },
  10513. "time": "2020-10-16T08:27:54+00:00"
  10514. },
  10515. {
  10516. "name": "fakerphp/faker",
  10517. "version": "v1.19.0",
  10518. "source": {
  10519. "type": "git",
  10520. "url": "https://github.com/FakerPHP/Faker.git",
  10521. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  10522. },
  10523. "dist": {
  10524. "type": "zip",
  10525. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  10526. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  10527. "shasum": "",
  10528. "mirrors": [
  10529. {
  10530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10531. "preferred": true
  10532. }
  10533. ]
  10534. },
  10535. "require": {
  10536. "php": "^7.1 || ^8.0",
  10537. "psr/container": "^1.0 || ^2.0",
  10538. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  10539. },
  10540. "conflict": {
  10541. "fzaninotto/faker": "*"
  10542. },
  10543. "require-dev": {
  10544. "bamarni/composer-bin-plugin": "^1.4.1",
  10545. "doctrine/persistence": "^1.3 || ^2.0",
  10546. "ext-intl": "*",
  10547. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  10548. },
  10549. "suggest": {
  10550. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  10551. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  10552. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  10553. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  10554. "ext-mbstring": "Required for multibyte Unicode string functionality."
  10555. },
  10556. "type": "library",
  10557. "extra": {
  10558. "branch-alias": {
  10559. "dev-main": "v1.19-dev"
  10560. }
  10561. },
  10562. "autoload": {
  10563. "psr-4": {
  10564. "Faker\\": "src/Faker/"
  10565. }
  10566. },
  10567. "notification-url": "https://packagist.org/downloads/",
  10568. "license": [
  10569. "MIT"
  10570. ],
  10571. "authors": [
  10572. {
  10573. "name": "François Zaninotto"
  10574. }
  10575. ],
  10576. "description": "Faker is a PHP library that generates fake data for you.",
  10577. "keywords": [
  10578. "data",
  10579. "faker",
  10580. "fixtures"
  10581. ],
  10582. "support": {
  10583. "issues": "https://github.com/FakerPHP/Faker/issues",
  10584. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  10585. },
  10586. "time": "2022-02-02T17:38:57+00:00"
  10587. },
  10588. {
  10589. "name": "filp/whoops",
  10590. "version": "2.14.5",
  10591. "source": {
  10592. "type": "git",
  10593. "url": "https://github.com/filp/whoops.git",
  10594. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  10595. },
  10596. "dist": {
  10597. "type": "zip",
  10598. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10599. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10600. "shasum": "",
  10601. "mirrors": [
  10602. {
  10603. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10604. "preferred": true
  10605. }
  10606. ]
  10607. },
  10608. "require": {
  10609. "php": "^5.5.9 || ^7.0 || ^8.0",
  10610. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  10611. },
  10612. "require-dev": {
  10613. "mockery/mockery": "^0.9 || ^1.0",
  10614. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  10615. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  10616. },
  10617. "suggest": {
  10618. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  10619. "whoops/soap": "Formats errors as SOAP responses"
  10620. },
  10621. "type": "library",
  10622. "extra": {
  10623. "branch-alias": {
  10624. "dev-master": "2.7-dev"
  10625. }
  10626. },
  10627. "autoload": {
  10628. "psr-4": {
  10629. "Whoops\\": "src/Whoops/"
  10630. }
  10631. },
  10632. "notification-url": "https://packagist.org/downloads/",
  10633. "license": [
  10634. "MIT"
  10635. ],
  10636. "authors": [
  10637. {
  10638. "name": "Filipe Dobreira",
  10639. "homepage": "https://github.com/filp",
  10640. "role": "Developer"
  10641. }
  10642. ],
  10643. "description": "php error handling for cool kids",
  10644. "homepage": "https://filp.github.io/whoops/",
  10645. "keywords": [
  10646. "error",
  10647. "exception",
  10648. "handling",
  10649. "library",
  10650. "throwable",
  10651. "whoops"
  10652. ],
  10653. "support": {
  10654. "issues": "https://github.com/filp/whoops/issues",
  10655. "source": "https://github.com/filp/whoops/tree/2.14.5"
  10656. },
  10657. "funding": [
  10658. {
  10659. "url": "https://github.com/denis-sokolov",
  10660. "type": "github"
  10661. }
  10662. ],
  10663. "time": "2022-01-07T12:00:00+00:00"
  10664. },
  10665. {
  10666. "name": "hamcrest/hamcrest-php",
  10667. "version": "v2.0.1",
  10668. "source": {
  10669. "type": "git",
  10670. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10671. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10672. },
  10673. "dist": {
  10674. "type": "zip",
  10675. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10676. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10677. "shasum": "",
  10678. "mirrors": [
  10679. {
  10680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10681. "preferred": true
  10682. }
  10683. ]
  10684. },
  10685. "require": {
  10686. "php": "^5.3|^7.0|^8.0"
  10687. },
  10688. "replace": {
  10689. "cordoval/hamcrest-php": "*",
  10690. "davedevelopment/hamcrest-php": "*",
  10691. "kodova/hamcrest-php": "*"
  10692. },
  10693. "require-dev": {
  10694. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10695. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10696. },
  10697. "type": "library",
  10698. "extra": {
  10699. "branch-alias": {
  10700. "dev-master": "2.1-dev"
  10701. }
  10702. },
  10703. "autoload": {
  10704. "classmap": [
  10705. "hamcrest"
  10706. ]
  10707. },
  10708. "notification-url": "https://packagist.org/downloads/",
  10709. "license": [
  10710. "BSD-3-Clause"
  10711. ],
  10712. "description": "This is the PHP port of Hamcrest Matchers",
  10713. "keywords": [
  10714. "test"
  10715. ],
  10716. "support": {
  10717. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10718. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10719. },
  10720. "time": "2020-07-09T08:09:16+00:00"
  10721. },
  10722. {
  10723. "name": "laravel/sail",
  10724. "version": "v1.14.11",
  10725. "source": {
  10726. "type": "git",
  10727. "url": "https://github.com/laravel/sail.git",
  10728. "reference": "6edf45a247b3688e0d07e149570a62fd9bc11c73"
  10729. },
  10730. "dist": {
  10731. "type": "zip",
  10732. "url": "https://api.github.com/repos/laravel/sail/zipball/6edf45a247b3688e0d07e149570a62fd9bc11c73",
  10733. "reference": "6edf45a247b3688e0d07e149570a62fd9bc11c73",
  10734. "shasum": "",
  10735. "mirrors": [
  10736. {
  10737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10738. "preferred": true
  10739. }
  10740. ]
  10741. },
  10742. "require": {
  10743. "illuminate/console": "^8.0|^9.0",
  10744. "illuminate/contracts": "^8.0|^9.0",
  10745. "illuminate/support": "^8.0|^9.0",
  10746. "php": "^7.3|^8.0"
  10747. },
  10748. "bin": [
  10749. "bin/sail"
  10750. ],
  10751. "type": "library",
  10752. "extra": {
  10753. "branch-alias": {
  10754. "dev-master": "1.x-dev"
  10755. },
  10756. "laravel": {
  10757. "providers": [
  10758. "Laravel\\Sail\\SailServiceProvider"
  10759. ]
  10760. }
  10761. },
  10762. "autoload": {
  10763. "psr-4": {
  10764. "Laravel\\Sail\\": "src/"
  10765. }
  10766. },
  10767. "notification-url": "https://packagist.org/downloads/",
  10768. "license": [
  10769. "MIT"
  10770. ],
  10771. "authors": [
  10772. {
  10773. "name": "Taylor Otwell",
  10774. "email": "taylor@laravel.com"
  10775. }
  10776. ],
  10777. "description": "Docker files for running a basic Laravel application.",
  10778. "keywords": [
  10779. "docker",
  10780. "laravel"
  10781. ],
  10782. "support": {
  10783. "issues": "https://github.com/laravel/sail/issues",
  10784. "source": "https://github.com/laravel/sail"
  10785. },
  10786. "time": "2022-06-13T18:32:48+00:00"
  10787. },
  10788. {
  10789. "name": "mockery/mockery",
  10790. "version": "1.5.0",
  10791. "source": {
  10792. "type": "git",
  10793. "url": "https://github.com/mockery/mockery.git",
  10794. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  10795. },
  10796. "dist": {
  10797. "type": "zip",
  10798. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  10799. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  10800. "shasum": "",
  10801. "mirrors": [
  10802. {
  10803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10804. "preferred": true
  10805. }
  10806. ]
  10807. },
  10808. "require": {
  10809. "hamcrest/hamcrest-php": "^2.0.1",
  10810. "lib-pcre": ">=7.0",
  10811. "php": "^7.3 || ^8.0"
  10812. },
  10813. "conflict": {
  10814. "phpunit/phpunit": "<8.0"
  10815. },
  10816. "require-dev": {
  10817. "phpunit/phpunit": "^8.5 || ^9.3"
  10818. },
  10819. "type": "library",
  10820. "extra": {
  10821. "branch-alias": {
  10822. "dev-master": "1.4.x-dev"
  10823. }
  10824. },
  10825. "autoload": {
  10826. "psr-0": {
  10827. "Mockery": "library/"
  10828. }
  10829. },
  10830. "notification-url": "https://packagist.org/downloads/",
  10831. "license": [
  10832. "BSD-3-Clause"
  10833. ],
  10834. "authors": [
  10835. {
  10836. "name": "Pádraic Brady",
  10837. "email": "padraic.brady@gmail.com",
  10838. "homepage": "http://blog.astrumfutura.com"
  10839. },
  10840. {
  10841. "name": "Dave Marshall",
  10842. "email": "dave.marshall@atstsolutions.co.uk",
  10843. "homepage": "http://davedevelopment.co.uk"
  10844. }
  10845. ],
  10846. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10847. "homepage": "https://github.com/mockery/mockery",
  10848. "keywords": [
  10849. "BDD",
  10850. "TDD",
  10851. "library",
  10852. "mock",
  10853. "mock objects",
  10854. "mockery",
  10855. "stub",
  10856. "test",
  10857. "test double",
  10858. "testing"
  10859. ],
  10860. "support": {
  10861. "issues": "https://github.com/mockery/mockery/issues",
  10862. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  10863. },
  10864. "time": "2022-01-20T13:18:17+00:00"
  10865. },
  10866. {
  10867. "name": "myclabs/deep-copy",
  10868. "version": "1.11.0",
  10869. "source": {
  10870. "type": "git",
  10871. "url": "https://github.com/myclabs/DeepCopy.git",
  10872. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  10873. },
  10874. "dist": {
  10875. "type": "zip",
  10876. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  10877. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  10878. "shasum": "",
  10879. "mirrors": [
  10880. {
  10881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10882. "preferred": true
  10883. }
  10884. ]
  10885. },
  10886. "require": {
  10887. "php": "^7.1 || ^8.0"
  10888. },
  10889. "conflict": {
  10890. "doctrine/collections": "<1.6.8",
  10891. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  10892. },
  10893. "require-dev": {
  10894. "doctrine/collections": "^1.6.8",
  10895. "doctrine/common": "^2.13.3 || ^3.2.2",
  10896. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10897. },
  10898. "type": "library",
  10899. "autoload": {
  10900. "files": [
  10901. "src/DeepCopy/deep_copy.php"
  10902. ],
  10903. "psr-4": {
  10904. "DeepCopy\\": "src/DeepCopy/"
  10905. }
  10906. },
  10907. "notification-url": "https://packagist.org/downloads/",
  10908. "license": [
  10909. "MIT"
  10910. ],
  10911. "description": "Create deep copies (clones) of your objects",
  10912. "keywords": [
  10913. "clone",
  10914. "copy",
  10915. "duplicate",
  10916. "object",
  10917. "object graph"
  10918. ],
  10919. "support": {
  10920. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10921. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  10922. },
  10923. "funding": [
  10924. {
  10925. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10926. "type": "tidelift"
  10927. }
  10928. ],
  10929. "time": "2022-03-03T13:19:32+00:00"
  10930. },
  10931. {
  10932. "name": "nunomaduro/collision",
  10933. "version": "v5.11.0",
  10934. "source": {
  10935. "type": "git",
  10936. "url": "https://github.com/nunomaduro/collision.git",
  10937. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  10938. },
  10939. "dist": {
  10940. "type": "zip",
  10941. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  10942. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  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. "facade/ignition-contracts": "^1.0",
  10953. "filp/whoops": "^2.14.3",
  10954. "php": "^7.3 || ^8.0",
  10955. "symfony/console": "^5.0"
  10956. },
  10957. "require-dev": {
  10958. "brianium/paratest": "^6.1",
  10959. "fideloper/proxy": "^4.4.1",
  10960. "fruitcake/laravel-cors": "^2.0.3",
  10961. "laravel/framework": "8.x-dev",
  10962. "nunomaduro/larastan": "^0.6.2",
  10963. "nunomaduro/mock-final-classes": "^1.0",
  10964. "orchestra/testbench": "^6.0",
  10965. "phpstan/phpstan": "^0.12.64",
  10966. "phpunit/phpunit": "^9.5.0"
  10967. },
  10968. "type": "library",
  10969. "extra": {
  10970. "laravel": {
  10971. "providers": [
  10972. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10973. ]
  10974. }
  10975. },
  10976. "autoload": {
  10977. "psr-4": {
  10978. "NunoMaduro\\Collision\\": "src/"
  10979. }
  10980. },
  10981. "notification-url": "https://packagist.org/downloads/",
  10982. "license": [
  10983. "MIT"
  10984. ],
  10985. "authors": [
  10986. {
  10987. "name": "Nuno Maduro",
  10988. "email": "enunomaduro@gmail.com"
  10989. }
  10990. ],
  10991. "description": "Cli error handling for console/command-line PHP applications.",
  10992. "keywords": [
  10993. "artisan",
  10994. "cli",
  10995. "command-line",
  10996. "console",
  10997. "error",
  10998. "handling",
  10999. "laravel",
  11000. "laravel-zero",
  11001. "php",
  11002. "symfony"
  11003. ],
  11004. "support": {
  11005. "issues": "https://github.com/nunomaduro/collision/issues",
  11006. "source": "https://github.com/nunomaduro/collision"
  11007. },
  11008. "funding": [
  11009. {
  11010. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11011. "type": "custom"
  11012. },
  11013. {
  11014. "url": "https://github.com/nunomaduro",
  11015. "type": "github"
  11016. },
  11017. {
  11018. "url": "https://www.patreon.com/nunomaduro",
  11019. "type": "patreon"
  11020. }
  11021. ],
  11022. "time": "2022-01-10T16:22:52+00:00"
  11023. },
  11024. {
  11025. "name": "phar-io/manifest",
  11026. "version": "2.0.3",
  11027. "source": {
  11028. "type": "git",
  11029. "url": "https://github.com/phar-io/manifest.git",
  11030. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  11031. },
  11032. "dist": {
  11033. "type": "zip",
  11034. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  11035. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  11036. "shasum": "",
  11037. "mirrors": [
  11038. {
  11039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11040. "preferred": true
  11041. }
  11042. ]
  11043. },
  11044. "require": {
  11045. "ext-dom": "*",
  11046. "ext-phar": "*",
  11047. "ext-xmlwriter": "*",
  11048. "phar-io/version": "^3.0.1",
  11049. "php": "^7.2 || ^8.0"
  11050. },
  11051. "type": "library",
  11052. "extra": {
  11053. "branch-alias": {
  11054. "dev-master": "2.0.x-dev"
  11055. }
  11056. },
  11057. "autoload": {
  11058. "classmap": [
  11059. "src/"
  11060. ]
  11061. },
  11062. "notification-url": "https://packagist.org/downloads/",
  11063. "license": [
  11064. "BSD-3-Clause"
  11065. ],
  11066. "authors": [
  11067. {
  11068. "name": "Arne Blankerts",
  11069. "email": "arne@blankerts.de",
  11070. "role": "Developer"
  11071. },
  11072. {
  11073. "name": "Sebastian Heuer",
  11074. "email": "sebastian@phpeople.de",
  11075. "role": "Developer"
  11076. },
  11077. {
  11078. "name": "Sebastian Bergmann",
  11079. "email": "sebastian@phpunit.de",
  11080. "role": "Developer"
  11081. }
  11082. ],
  11083. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11084. "support": {
  11085. "issues": "https://github.com/phar-io/manifest/issues",
  11086. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  11087. },
  11088. "time": "2021-07-20T11:28:43+00:00"
  11089. },
  11090. {
  11091. "name": "phar-io/version",
  11092. "version": "3.2.1",
  11093. "source": {
  11094. "type": "git",
  11095. "url": "https://github.com/phar-io/version.git",
  11096. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11097. },
  11098. "dist": {
  11099. "type": "zip",
  11100. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11101. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11102. "shasum": "",
  11103. "mirrors": [
  11104. {
  11105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11106. "preferred": true
  11107. }
  11108. ]
  11109. },
  11110. "require": {
  11111. "php": "^7.2 || ^8.0"
  11112. },
  11113. "type": "library",
  11114. "autoload": {
  11115. "classmap": [
  11116. "src/"
  11117. ]
  11118. },
  11119. "notification-url": "https://packagist.org/downloads/",
  11120. "license": [
  11121. "BSD-3-Clause"
  11122. ],
  11123. "authors": [
  11124. {
  11125. "name": "Arne Blankerts",
  11126. "email": "arne@blankerts.de",
  11127. "role": "Developer"
  11128. },
  11129. {
  11130. "name": "Sebastian Heuer",
  11131. "email": "sebastian@phpeople.de",
  11132. "role": "Developer"
  11133. },
  11134. {
  11135. "name": "Sebastian Bergmann",
  11136. "email": "sebastian@phpunit.de",
  11137. "role": "Developer"
  11138. }
  11139. ],
  11140. "description": "Library for handling version information and constraints",
  11141. "support": {
  11142. "issues": "https://github.com/phar-io/version/issues",
  11143. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11144. },
  11145. "time": "2022-02-21T01:04:05+00:00"
  11146. },
  11147. {
  11148. "name": "phpspec/prophecy",
  11149. "version": "v1.15.0",
  11150. "source": {
  11151. "type": "git",
  11152. "url": "https://github.com/phpspec/prophecy.git",
  11153. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  11154. },
  11155. "dist": {
  11156. "type": "zip",
  11157. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11158. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11159. "shasum": "",
  11160. "mirrors": [
  11161. {
  11162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11163. "preferred": true
  11164. }
  11165. ]
  11166. },
  11167. "require": {
  11168. "doctrine/instantiator": "^1.2",
  11169. "php": "^7.2 || ~8.0, <8.2",
  11170. "phpdocumentor/reflection-docblock": "^5.2",
  11171. "sebastian/comparator": "^3.0 || ^4.0",
  11172. "sebastian/recursion-context": "^3.0 || ^4.0"
  11173. },
  11174. "require-dev": {
  11175. "phpspec/phpspec": "^6.0 || ^7.0",
  11176. "phpunit/phpunit": "^8.0 || ^9.0"
  11177. },
  11178. "type": "library",
  11179. "extra": {
  11180. "branch-alias": {
  11181. "dev-master": "1.x-dev"
  11182. }
  11183. },
  11184. "autoload": {
  11185. "psr-4": {
  11186. "Prophecy\\": "src/Prophecy"
  11187. }
  11188. },
  11189. "notification-url": "https://packagist.org/downloads/",
  11190. "license": [
  11191. "MIT"
  11192. ],
  11193. "authors": [
  11194. {
  11195. "name": "Konstantin Kudryashov",
  11196. "email": "ever.zet@gmail.com",
  11197. "homepage": "http://everzet.com"
  11198. },
  11199. {
  11200. "name": "Marcello Duarte",
  11201. "email": "marcello.duarte@gmail.com"
  11202. }
  11203. ],
  11204. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11205. "homepage": "https://github.com/phpspec/prophecy",
  11206. "keywords": [
  11207. "Double",
  11208. "Dummy",
  11209. "fake",
  11210. "mock",
  11211. "spy",
  11212. "stub"
  11213. ],
  11214. "support": {
  11215. "issues": "https://github.com/phpspec/prophecy/issues",
  11216. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  11217. },
  11218. "time": "2021-12-08T12:19:24+00:00"
  11219. },
  11220. {
  11221. "name": "phpunit/php-code-coverage",
  11222. "version": "9.2.15",
  11223. "source": {
  11224. "type": "git",
  11225. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11226. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  11227. },
  11228. "dist": {
  11229. "type": "zip",
  11230. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  11231. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  11232. "shasum": "",
  11233. "mirrors": [
  11234. {
  11235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11236. "preferred": true
  11237. }
  11238. ]
  11239. },
  11240. "require": {
  11241. "ext-dom": "*",
  11242. "ext-libxml": "*",
  11243. "ext-xmlwriter": "*",
  11244. "nikic/php-parser": "^4.13.0",
  11245. "php": ">=7.3",
  11246. "phpunit/php-file-iterator": "^3.0.3",
  11247. "phpunit/php-text-template": "^2.0.2",
  11248. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  11249. "sebastian/complexity": "^2.0",
  11250. "sebastian/environment": "^5.1.2",
  11251. "sebastian/lines-of-code": "^1.0.3",
  11252. "sebastian/version": "^3.0.1",
  11253. "theseer/tokenizer": "^1.2.0"
  11254. },
  11255. "require-dev": {
  11256. "phpunit/phpunit": "^9.3"
  11257. },
  11258. "suggest": {
  11259. "ext-pcov": "*",
  11260. "ext-xdebug": "*"
  11261. },
  11262. "type": "library",
  11263. "extra": {
  11264. "branch-alias": {
  11265. "dev-master": "9.2-dev"
  11266. }
  11267. },
  11268. "autoload": {
  11269. "classmap": [
  11270. "src/"
  11271. ]
  11272. },
  11273. "notification-url": "https://packagist.org/downloads/",
  11274. "license": [
  11275. "BSD-3-Clause"
  11276. ],
  11277. "authors": [
  11278. {
  11279. "name": "Sebastian Bergmann",
  11280. "email": "sebastian@phpunit.de",
  11281. "role": "lead"
  11282. }
  11283. ],
  11284. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11285. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11286. "keywords": [
  11287. "coverage",
  11288. "testing",
  11289. "xunit"
  11290. ],
  11291. "support": {
  11292. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11293. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  11294. },
  11295. "funding": [
  11296. {
  11297. "url": "https://github.com/sebastianbergmann",
  11298. "type": "github"
  11299. }
  11300. ],
  11301. "time": "2022-03-07T09:28:20+00:00"
  11302. },
  11303. {
  11304. "name": "phpunit/php-file-iterator",
  11305. "version": "3.0.6",
  11306. "source": {
  11307. "type": "git",
  11308. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11309. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11310. },
  11311. "dist": {
  11312. "type": "zip",
  11313. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11314. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11315. "shasum": "",
  11316. "mirrors": [
  11317. {
  11318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11319. "preferred": true
  11320. }
  11321. ]
  11322. },
  11323. "require": {
  11324. "php": ">=7.3"
  11325. },
  11326. "require-dev": {
  11327. "phpunit/phpunit": "^9.3"
  11328. },
  11329. "type": "library",
  11330. "extra": {
  11331. "branch-alias": {
  11332. "dev-master": "3.0-dev"
  11333. }
  11334. },
  11335. "autoload": {
  11336. "classmap": [
  11337. "src/"
  11338. ]
  11339. },
  11340. "notification-url": "https://packagist.org/downloads/",
  11341. "license": [
  11342. "BSD-3-Clause"
  11343. ],
  11344. "authors": [
  11345. {
  11346. "name": "Sebastian Bergmann",
  11347. "email": "sebastian@phpunit.de",
  11348. "role": "lead"
  11349. }
  11350. ],
  11351. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11352. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11353. "keywords": [
  11354. "filesystem",
  11355. "iterator"
  11356. ],
  11357. "support": {
  11358. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11359. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11360. },
  11361. "funding": [
  11362. {
  11363. "url": "https://github.com/sebastianbergmann",
  11364. "type": "github"
  11365. }
  11366. ],
  11367. "time": "2021-12-02T12:48:52+00:00"
  11368. },
  11369. {
  11370. "name": "phpunit/php-invoker",
  11371. "version": "3.1.1",
  11372. "source": {
  11373. "type": "git",
  11374. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11375. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11376. },
  11377. "dist": {
  11378. "type": "zip",
  11379. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11380. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11381. "shasum": "",
  11382. "mirrors": [
  11383. {
  11384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11385. "preferred": true
  11386. }
  11387. ]
  11388. },
  11389. "require": {
  11390. "php": ">=7.3"
  11391. },
  11392. "require-dev": {
  11393. "ext-pcntl": "*",
  11394. "phpunit/phpunit": "^9.3"
  11395. },
  11396. "suggest": {
  11397. "ext-pcntl": "*"
  11398. },
  11399. "type": "library",
  11400. "extra": {
  11401. "branch-alias": {
  11402. "dev-master": "3.1-dev"
  11403. }
  11404. },
  11405. "autoload": {
  11406. "classmap": [
  11407. "src/"
  11408. ]
  11409. },
  11410. "notification-url": "https://packagist.org/downloads/",
  11411. "license": [
  11412. "BSD-3-Clause"
  11413. ],
  11414. "authors": [
  11415. {
  11416. "name": "Sebastian Bergmann",
  11417. "email": "sebastian@phpunit.de",
  11418. "role": "lead"
  11419. }
  11420. ],
  11421. "description": "Invoke callables with a timeout",
  11422. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11423. "keywords": [
  11424. "process"
  11425. ],
  11426. "support": {
  11427. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11428. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11429. },
  11430. "funding": [
  11431. {
  11432. "url": "https://github.com/sebastianbergmann",
  11433. "type": "github"
  11434. }
  11435. ],
  11436. "time": "2020-09-28T05:58:55+00:00"
  11437. },
  11438. {
  11439. "name": "phpunit/php-text-template",
  11440. "version": "2.0.4",
  11441. "source": {
  11442. "type": "git",
  11443. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11444. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  11445. },
  11446. "dist": {
  11447. "type": "zip",
  11448. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11449. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11450. "shasum": "",
  11451. "mirrors": [
  11452. {
  11453. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11454. "preferred": true
  11455. }
  11456. ]
  11457. },
  11458. "require": {
  11459. "php": ">=7.3"
  11460. },
  11461. "require-dev": {
  11462. "phpunit/phpunit": "^9.3"
  11463. },
  11464. "type": "library",
  11465. "extra": {
  11466. "branch-alias": {
  11467. "dev-master": "2.0-dev"
  11468. }
  11469. },
  11470. "autoload": {
  11471. "classmap": [
  11472. "src/"
  11473. ]
  11474. },
  11475. "notification-url": "https://packagist.org/downloads/",
  11476. "license": [
  11477. "BSD-3-Clause"
  11478. ],
  11479. "authors": [
  11480. {
  11481. "name": "Sebastian Bergmann",
  11482. "email": "sebastian@phpunit.de",
  11483. "role": "lead"
  11484. }
  11485. ],
  11486. "description": "Simple template engine.",
  11487. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11488. "keywords": [
  11489. "template"
  11490. ],
  11491. "support": {
  11492. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11493. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  11494. },
  11495. "funding": [
  11496. {
  11497. "url": "https://github.com/sebastianbergmann",
  11498. "type": "github"
  11499. }
  11500. ],
  11501. "time": "2020-10-26T05:33:50+00:00"
  11502. },
  11503. {
  11504. "name": "phpunit/php-timer",
  11505. "version": "5.0.3",
  11506. "source": {
  11507. "type": "git",
  11508. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11509. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  11510. },
  11511. "dist": {
  11512. "type": "zip",
  11513. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11514. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11515. "shasum": "",
  11516. "mirrors": [
  11517. {
  11518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11519. "preferred": true
  11520. }
  11521. ]
  11522. },
  11523. "require": {
  11524. "php": ">=7.3"
  11525. },
  11526. "require-dev": {
  11527. "phpunit/phpunit": "^9.3"
  11528. },
  11529. "type": "library",
  11530. "extra": {
  11531. "branch-alias": {
  11532. "dev-master": "5.0-dev"
  11533. }
  11534. },
  11535. "autoload": {
  11536. "classmap": [
  11537. "src/"
  11538. ]
  11539. },
  11540. "notification-url": "https://packagist.org/downloads/",
  11541. "license": [
  11542. "BSD-3-Clause"
  11543. ],
  11544. "authors": [
  11545. {
  11546. "name": "Sebastian Bergmann",
  11547. "email": "sebastian@phpunit.de",
  11548. "role": "lead"
  11549. }
  11550. ],
  11551. "description": "Utility class for timing",
  11552. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11553. "keywords": [
  11554. "timer"
  11555. ],
  11556. "support": {
  11557. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11558. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  11559. },
  11560. "funding": [
  11561. {
  11562. "url": "https://github.com/sebastianbergmann",
  11563. "type": "github"
  11564. }
  11565. ],
  11566. "time": "2020-10-26T13:16:10+00:00"
  11567. },
  11568. {
  11569. "name": "phpunit/phpunit",
  11570. "version": "9.5.21",
  11571. "source": {
  11572. "type": "git",
  11573. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11574. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
  11575. },
  11576. "dist": {
  11577. "type": "zip",
  11578. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
  11579. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
  11580. "shasum": "",
  11581. "mirrors": [
  11582. {
  11583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11584. "preferred": true
  11585. }
  11586. ]
  11587. },
  11588. "require": {
  11589. "doctrine/instantiator": "^1.3.1",
  11590. "ext-dom": "*",
  11591. "ext-json": "*",
  11592. "ext-libxml": "*",
  11593. "ext-mbstring": "*",
  11594. "ext-xml": "*",
  11595. "ext-xmlwriter": "*",
  11596. "myclabs/deep-copy": "^1.10.1",
  11597. "phar-io/manifest": "^2.0.3",
  11598. "phar-io/version": "^3.0.2",
  11599. "php": ">=7.3",
  11600. "phpspec/prophecy": "^1.12.1",
  11601. "phpunit/php-code-coverage": "^9.2.13",
  11602. "phpunit/php-file-iterator": "^3.0.5",
  11603. "phpunit/php-invoker": "^3.1.1",
  11604. "phpunit/php-text-template": "^2.0.3",
  11605. "phpunit/php-timer": "^5.0.2",
  11606. "sebastian/cli-parser": "^1.0.1",
  11607. "sebastian/code-unit": "^1.0.6",
  11608. "sebastian/comparator": "^4.0.5",
  11609. "sebastian/diff": "^4.0.3",
  11610. "sebastian/environment": "^5.1.3",
  11611. "sebastian/exporter": "^4.0.3",
  11612. "sebastian/global-state": "^5.0.1",
  11613. "sebastian/object-enumerator": "^4.0.3",
  11614. "sebastian/resource-operations": "^3.0.3",
  11615. "sebastian/type": "^3.0",
  11616. "sebastian/version": "^3.0.2"
  11617. },
  11618. "require-dev": {
  11619. "phpspec/prophecy-phpunit": "^2.0.1"
  11620. },
  11621. "suggest": {
  11622. "ext-soap": "*",
  11623. "ext-xdebug": "*"
  11624. },
  11625. "bin": [
  11626. "phpunit"
  11627. ],
  11628. "type": "library",
  11629. "extra": {
  11630. "branch-alias": {
  11631. "dev-master": "9.5-dev"
  11632. }
  11633. },
  11634. "autoload": {
  11635. "files": [
  11636. "src/Framework/Assert/Functions.php"
  11637. ],
  11638. "classmap": [
  11639. "src/"
  11640. ]
  11641. },
  11642. "notification-url": "https://packagist.org/downloads/",
  11643. "license": [
  11644. "BSD-3-Clause"
  11645. ],
  11646. "authors": [
  11647. {
  11648. "name": "Sebastian Bergmann",
  11649. "email": "sebastian@phpunit.de",
  11650. "role": "lead"
  11651. }
  11652. ],
  11653. "description": "The PHP Unit Testing framework.",
  11654. "homepage": "https://phpunit.de/",
  11655. "keywords": [
  11656. "phpunit",
  11657. "testing",
  11658. "xunit"
  11659. ],
  11660. "support": {
  11661. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11662. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21"
  11663. },
  11664. "funding": [
  11665. {
  11666. "url": "https://phpunit.de/sponsors.html",
  11667. "type": "custom"
  11668. },
  11669. {
  11670. "url": "https://github.com/sebastianbergmann",
  11671. "type": "github"
  11672. }
  11673. ],
  11674. "time": "2022-06-19T12:14:25+00:00"
  11675. },
  11676. {
  11677. "name": "sebastian/cli-parser",
  11678. "version": "1.0.1",
  11679. "source": {
  11680. "type": "git",
  11681. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11682. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  11683. },
  11684. "dist": {
  11685. "type": "zip",
  11686. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11687. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11688. "shasum": "",
  11689. "mirrors": [
  11690. {
  11691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11692. "preferred": true
  11693. }
  11694. ]
  11695. },
  11696. "require": {
  11697. "php": ">=7.3"
  11698. },
  11699. "require-dev": {
  11700. "phpunit/phpunit": "^9.3"
  11701. },
  11702. "type": "library",
  11703. "extra": {
  11704. "branch-alias": {
  11705. "dev-master": "1.0-dev"
  11706. }
  11707. },
  11708. "autoload": {
  11709. "classmap": [
  11710. "src/"
  11711. ]
  11712. },
  11713. "notification-url": "https://packagist.org/downloads/",
  11714. "license": [
  11715. "BSD-3-Clause"
  11716. ],
  11717. "authors": [
  11718. {
  11719. "name": "Sebastian Bergmann",
  11720. "email": "sebastian@phpunit.de",
  11721. "role": "lead"
  11722. }
  11723. ],
  11724. "description": "Library for parsing CLI options",
  11725. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11726. "support": {
  11727. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11728. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  11729. },
  11730. "funding": [
  11731. {
  11732. "url": "https://github.com/sebastianbergmann",
  11733. "type": "github"
  11734. }
  11735. ],
  11736. "time": "2020-09-28T06:08:49+00:00"
  11737. },
  11738. {
  11739. "name": "sebastian/code-unit",
  11740. "version": "1.0.8",
  11741. "source": {
  11742. "type": "git",
  11743. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11744. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  11745. },
  11746. "dist": {
  11747. "type": "zip",
  11748. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11749. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11750. "shasum": "",
  11751. "mirrors": [
  11752. {
  11753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11754. "preferred": true
  11755. }
  11756. ]
  11757. },
  11758. "require": {
  11759. "php": ">=7.3"
  11760. },
  11761. "require-dev": {
  11762. "phpunit/phpunit": "^9.3"
  11763. },
  11764. "type": "library",
  11765. "extra": {
  11766. "branch-alias": {
  11767. "dev-master": "1.0-dev"
  11768. }
  11769. },
  11770. "autoload": {
  11771. "classmap": [
  11772. "src/"
  11773. ]
  11774. },
  11775. "notification-url": "https://packagist.org/downloads/",
  11776. "license": [
  11777. "BSD-3-Clause"
  11778. ],
  11779. "authors": [
  11780. {
  11781. "name": "Sebastian Bergmann",
  11782. "email": "sebastian@phpunit.de",
  11783. "role": "lead"
  11784. }
  11785. ],
  11786. "description": "Collection of value objects that represent the PHP code units",
  11787. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11788. "support": {
  11789. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11790. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  11791. },
  11792. "funding": [
  11793. {
  11794. "url": "https://github.com/sebastianbergmann",
  11795. "type": "github"
  11796. }
  11797. ],
  11798. "time": "2020-10-26T13:08:54+00:00"
  11799. },
  11800. {
  11801. "name": "sebastian/code-unit-reverse-lookup",
  11802. "version": "2.0.3",
  11803. "source": {
  11804. "type": "git",
  11805. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11806. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  11807. },
  11808. "dist": {
  11809. "type": "zip",
  11810. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11811. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11812. "shasum": "",
  11813. "mirrors": [
  11814. {
  11815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11816. "preferred": true
  11817. }
  11818. ]
  11819. },
  11820. "require": {
  11821. "php": ">=7.3"
  11822. },
  11823. "require-dev": {
  11824. "phpunit/phpunit": "^9.3"
  11825. },
  11826. "type": "library",
  11827. "extra": {
  11828. "branch-alias": {
  11829. "dev-master": "2.0-dev"
  11830. }
  11831. },
  11832. "autoload": {
  11833. "classmap": [
  11834. "src/"
  11835. ]
  11836. },
  11837. "notification-url": "https://packagist.org/downloads/",
  11838. "license": [
  11839. "BSD-3-Clause"
  11840. ],
  11841. "authors": [
  11842. {
  11843. "name": "Sebastian Bergmann",
  11844. "email": "sebastian@phpunit.de"
  11845. }
  11846. ],
  11847. "description": "Looks up which function or method a line of code belongs to",
  11848. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11849. "support": {
  11850. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11851. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  11852. },
  11853. "funding": [
  11854. {
  11855. "url": "https://github.com/sebastianbergmann",
  11856. "type": "github"
  11857. }
  11858. ],
  11859. "time": "2020-09-28T05:30:19+00:00"
  11860. },
  11861. {
  11862. "name": "sebastian/comparator",
  11863. "version": "4.0.6",
  11864. "source": {
  11865. "type": "git",
  11866. "url": "https://github.com/sebastianbergmann/comparator.git",
  11867. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  11868. },
  11869. "dist": {
  11870. "type": "zip",
  11871. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  11872. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  11873. "shasum": "",
  11874. "mirrors": [
  11875. {
  11876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11877. "preferred": true
  11878. }
  11879. ]
  11880. },
  11881. "require": {
  11882. "php": ">=7.3",
  11883. "sebastian/diff": "^4.0",
  11884. "sebastian/exporter": "^4.0"
  11885. },
  11886. "require-dev": {
  11887. "phpunit/phpunit": "^9.3"
  11888. },
  11889. "type": "library",
  11890. "extra": {
  11891. "branch-alias": {
  11892. "dev-master": "4.0-dev"
  11893. }
  11894. },
  11895. "autoload": {
  11896. "classmap": [
  11897. "src/"
  11898. ]
  11899. },
  11900. "notification-url": "https://packagist.org/downloads/",
  11901. "license": [
  11902. "BSD-3-Clause"
  11903. ],
  11904. "authors": [
  11905. {
  11906. "name": "Sebastian Bergmann",
  11907. "email": "sebastian@phpunit.de"
  11908. },
  11909. {
  11910. "name": "Jeff Welch",
  11911. "email": "whatthejeff@gmail.com"
  11912. },
  11913. {
  11914. "name": "Volker Dusch",
  11915. "email": "github@wallbash.com"
  11916. },
  11917. {
  11918. "name": "Bernhard Schussek",
  11919. "email": "bschussek@2bepublished.at"
  11920. }
  11921. ],
  11922. "description": "Provides the functionality to compare PHP values for equality",
  11923. "homepage": "https://github.com/sebastianbergmann/comparator",
  11924. "keywords": [
  11925. "comparator",
  11926. "compare",
  11927. "equality"
  11928. ],
  11929. "support": {
  11930. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11931. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  11932. },
  11933. "funding": [
  11934. {
  11935. "url": "https://github.com/sebastianbergmann",
  11936. "type": "github"
  11937. }
  11938. ],
  11939. "time": "2020-10-26T15:49:45+00:00"
  11940. },
  11941. {
  11942. "name": "sebastian/complexity",
  11943. "version": "2.0.2",
  11944. "source": {
  11945. "type": "git",
  11946. "url": "https://github.com/sebastianbergmann/complexity.git",
  11947. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  11948. },
  11949. "dist": {
  11950. "type": "zip",
  11951. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  11952. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  11953. "shasum": "",
  11954. "mirrors": [
  11955. {
  11956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11957. "preferred": true
  11958. }
  11959. ]
  11960. },
  11961. "require": {
  11962. "nikic/php-parser": "^4.7",
  11963. "php": ">=7.3"
  11964. },
  11965. "require-dev": {
  11966. "phpunit/phpunit": "^9.3"
  11967. },
  11968. "type": "library",
  11969. "extra": {
  11970. "branch-alias": {
  11971. "dev-master": "2.0-dev"
  11972. }
  11973. },
  11974. "autoload": {
  11975. "classmap": [
  11976. "src/"
  11977. ]
  11978. },
  11979. "notification-url": "https://packagist.org/downloads/",
  11980. "license": [
  11981. "BSD-3-Clause"
  11982. ],
  11983. "authors": [
  11984. {
  11985. "name": "Sebastian Bergmann",
  11986. "email": "sebastian@phpunit.de",
  11987. "role": "lead"
  11988. }
  11989. ],
  11990. "description": "Library for calculating the complexity of PHP code units",
  11991. "homepage": "https://github.com/sebastianbergmann/complexity",
  11992. "support": {
  11993. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11994. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  11995. },
  11996. "funding": [
  11997. {
  11998. "url": "https://github.com/sebastianbergmann",
  11999. "type": "github"
  12000. }
  12001. ],
  12002. "time": "2020-10-26T15:52:27+00:00"
  12003. },
  12004. {
  12005. "name": "sebastian/diff",
  12006. "version": "4.0.4",
  12007. "source": {
  12008. "type": "git",
  12009. "url": "https://github.com/sebastianbergmann/diff.git",
  12010. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  12011. },
  12012. "dist": {
  12013. "type": "zip",
  12014. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12015. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12016. "shasum": "",
  12017. "mirrors": [
  12018. {
  12019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12020. "preferred": true
  12021. }
  12022. ]
  12023. },
  12024. "require": {
  12025. "php": ">=7.3"
  12026. },
  12027. "require-dev": {
  12028. "phpunit/phpunit": "^9.3",
  12029. "symfony/process": "^4.2 || ^5"
  12030. },
  12031. "type": "library",
  12032. "extra": {
  12033. "branch-alias": {
  12034. "dev-master": "4.0-dev"
  12035. }
  12036. },
  12037. "autoload": {
  12038. "classmap": [
  12039. "src/"
  12040. ]
  12041. },
  12042. "notification-url": "https://packagist.org/downloads/",
  12043. "license": [
  12044. "BSD-3-Clause"
  12045. ],
  12046. "authors": [
  12047. {
  12048. "name": "Sebastian Bergmann",
  12049. "email": "sebastian@phpunit.de"
  12050. },
  12051. {
  12052. "name": "Kore Nordmann",
  12053. "email": "mail@kore-nordmann.de"
  12054. }
  12055. ],
  12056. "description": "Diff implementation",
  12057. "homepage": "https://github.com/sebastianbergmann/diff",
  12058. "keywords": [
  12059. "diff",
  12060. "udiff",
  12061. "unidiff",
  12062. "unified diff"
  12063. ],
  12064. "support": {
  12065. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12066. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  12067. },
  12068. "funding": [
  12069. {
  12070. "url": "https://github.com/sebastianbergmann",
  12071. "type": "github"
  12072. }
  12073. ],
  12074. "time": "2020-10-26T13:10:38+00:00"
  12075. },
  12076. {
  12077. "name": "sebastian/environment",
  12078. "version": "5.1.4",
  12079. "source": {
  12080. "type": "git",
  12081. "url": "https://github.com/sebastianbergmann/environment.git",
  12082. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  12083. },
  12084. "dist": {
  12085. "type": "zip",
  12086. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12087. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12088. "shasum": "",
  12089. "mirrors": [
  12090. {
  12091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12092. "preferred": true
  12093. }
  12094. ]
  12095. },
  12096. "require": {
  12097. "php": ">=7.3"
  12098. },
  12099. "require-dev": {
  12100. "phpunit/phpunit": "^9.3"
  12101. },
  12102. "suggest": {
  12103. "ext-posix": "*"
  12104. },
  12105. "type": "library",
  12106. "extra": {
  12107. "branch-alias": {
  12108. "dev-master": "5.1-dev"
  12109. }
  12110. },
  12111. "autoload": {
  12112. "classmap": [
  12113. "src/"
  12114. ]
  12115. },
  12116. "notification-url": "https://packagist.org/downloads/",
  12117. "license": [
  12118. "BSD-3-Clause"
  12119. ],
  12120. "authors": [
  12121. {
  12122. "name": "Sebastian Bergmann",
  12123. "email": "sebastian@phpunit.de"
  12124. }
  12125. ],
  12126. "description": "Provides functionality to handle HHVM/PHP environments",
  12127. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12128. "keywords": [
  12129. "Xdebug",
  12130. "environment",
  12131. "hhvm"
  12132. ],
  12133. "support": {
  12134. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12135. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  12136. },
  12137. "funding": [
  12138. {
  12139. "url": "https://github.com/sebastianbergmann",
  12140. "type": "github"
  12141. }
  12142. ],
  12143. "time": "2022-04-03T09:37:03+00:00"
  12144. },
  12145. {
  12146. "name": "sebastian/exporter",
  12147. "version": "4.0.4",
  12148. "source": {
  12149. "type": "git",
  12150. "url": "https://github.com/sebastianbergmann/exporter.git",
  12151. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  12152. },
  12153. "dist": {
  12154. "type": "zip",
  12155. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12156. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12157. "shasum": "",
  12158. "mirrors": [
  12159. {
  12160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12161. "preferred": true
  12162. }
  12163. ]
  12164. },
  12165. "require": {
  12166. "php": ">=7.3",
  12167. "sebastian/recursion-context": "^4.0"
  12168. },
  12169. "require-dev": {
  12170. "ext-mbstring": "*",
  12171. "phpunit/phpunit": "^9.3"
  12172. },
  12173. "type": "library",
  12174. "extra": {
  12175. "branch-alias": {
  12176. "dev-master": "4.0-dev"
  12177. }
  12178. },
  12179. "autoload": {
  12180. "classmap": [
  12181. "src/"
  12182. ]
  12183. },
  12184. "notification-url": "https://packagist.org/downloads/",
  12185. "license": [
  12186. "BSD-3-Clause"
  12187. ],
  12188. "authors": [
  12189. {
  12190. "name": "Sebastian Bergmann",
  12191. "email": "sebastian@phpunit.de"
  12192. },
  12193. {
  12194. "name": "Jeff Welch",
  12195. "email": "whatthejeff@gmail.com"
  12196. },
  12197. {
  12198. "name": "Volker Dusch",
  12199. "email": "github@wallbash.com"
  12200. },
  12201. {
  12202. "name": "Adam Harvey",
  12203. "email": "aharvey@php.net"
  12204. },
  12205. {
  12206. "name": "Bernhard Schussek",
  12207. "email": "bschussek@gmail.com"
  12208. }
  12209. ],
  12210. "description": "Provides the functionality to export PHP variables for visualization",
  12211. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12212. "keywords": [
  12213. "export",
  12214. "exporter"
  12215. ],
  12216. "support": {
  12217. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12218. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  12219. },
  12220. "funding": [
  12221. {
  12222. "url": "https://github.com/sebastianbergmann",
  12223. "type": "github"
  12224. }
  12225. ],
  12226. "time": "2021-11-11T14:18:36+00:00"
  12227. },
  12228. {
  12229. "name": "sebastian/global-state",
  12230. "version": "5.0.5",
  12231. "source": {
  12232. "type": "git",
  12233. "url": "https://github.com/sebastianbergmann/global-state.git",
  12234. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  12235. },
  12236. "dist": {
  12237. "type": "zip",
  12238. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12239. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12240. "shasum": "",
  12241. "mirrors": [
  12242. {
  12243. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12244. "preferred": true
  12245. }
  12246. ]
  12247. },
  12248. "require": {
  12249. "php": ">=7.3",
  12250. "sebastian/object-reflector": "^2.0",
  12251. "sebastian/recursion-context": "^4.0"
  12252. },
  12253. "require-dev": {
  12254. "ext-dom": "*",
  12255. "phpunit/phpunit": "^9.3"
  12256. },
  12257. "suggest": {
  12258. "ext-uopz": "*"
  12259. },
  12260. "type": "library",
  12261. "extra": {
  12262. "branch-alias": {
  12263. "dev-master": "5.0-dev"
  12264. }
  12265. },
  12266. "autoload": {
  12267. "classmap": [
  12268. "src/"
  12269. ]
  12270. },
  12271. "notification-url": "https://packagist.org/downloads/",
  12272. "license": [
  12273. "BSD-3-Clause"
  12274. ],
  12275. "authors": [
  12276. {
  12277. "name": "Sebastian Bergmann",
  12278. "email": "sebastian@phpunit.de"
  12279. }
  12280. ],
  12281. "description": "Snapshotting of global state",
  12282. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12283. "keywords": [
  12284. "global state"
  12285. ],
  12286. "support": {
  12287. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12288. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  12289. },
  12290. "funding": [
  12291. {
  12292. "url": "https://github.com/sebastianbergmann",
  12293. "type": "github"
  12294. }
  12295. ],
  12296. "time": "2022-02-14T08:28:10+00:00"
  12297. },
  12298. {
  12299. "name": "sebastian/lines-of-code",
  12300. "version": "1.0.3",
  12301. "source": {
  12302. "type": "git",
  12303. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12304. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  12305. },
  12306. "dist": {
  12307. "type": "zip",
  12308. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12309. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12310. "shasum": "",
  12311. "mirrors": [
  12312. {
  12313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12314. "preferred": true
  12315. }
  12316. ]
  12317. },
  12318. "require": {
  12319. "nikic/php-parser": "^4.6",
  12320. "php": ">=7.3"
  12321. },
  12322. "require-dev": {
  12323. "phpunit/phpunit": "^9.3"
  12324. },
  12325. "type": "library",
  12326. "extra": {
  12327. "branch-alias": {
  12328. "dev-master": "1.0-dev"
  12329. }
  12330. },
  12331. "autoload": {
  12332. "classmap": [
  12333. "src/"
  12334. ]
  12335. },
  12336. "notification-url": "https://packagist.org/downloads/",
  12337. "license": [
  12338. "BSD-3-Clause"
  12339. ],
  12340. "authors": [
  12341. {
  12342. "name": "Sebastian Bergmann",
  12343. "email": "sebastian@phpunit.de",
  12344. "role": "lead"
  12345. }
  12346. ],
  12347. "description": "Library for counting the lines of code in PHP source code",
  12348. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12349. "support": {
  12350. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12351. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  12352. },
  12353. "funding": [
  12354. {
  12355. "url": "https://github.com/sebastianbergmann",
  12356. "type": "github"
  12357. }
  12358. ],
  12359. "time": "2020-11-28T06:42:11+00:00"
  12360. },
  12361. {
  12362. "name": "sebastian/object-enumerator",
  12363. "version": "4.0.4",
  12364. "source": {
  12365. "type": "git",
  12366. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12367. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12368. },
  12369. "dist": {
  12370. "type": "zip",
  12371. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12372. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12373. "shasum": "",
  12374. "mirrors": [
  12375. {
  12376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12377. "preferred": true
  12378. }
  12379. ]
  12380. },
  12381. "require": {
  12382. "php": ">=7.3",
  12383. "sebastian/object-reflector": "^2.0",
  12384. "sebastian/recursion-context": "^4.0"
  12385. },
  12386. "require-dev": {
  12387. "phpunit/phpunit": "^9.3"
  12388. },
  12389. "type": "library",
  12390. "extra": {
  12391. "branch-alias": {
  12392. "dev-master": "4.0-dev"
  12393. }
  12394. },
  12395. "autoload": {
  12396. "classmap": [
  12397. "src/"
  12398. ]
  12399. },
  12400. "notification-url": "https://packagist.org/downloads/",
  12401. "license": [
  12402. "BSD-3-Clause"
  12403. ],
  12404. "authors": [
  12405. {
  12406. "name": "Sebastian Bergmann",
  12407. "email": "sebastian@phpunit.de"
  12408. }
  12409. ],
  12410. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12411. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12412. "support": {
  12413. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12414. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12415. },
  12416. "funding": [
  12417. {
  12418. "url": "https://github.com/sebastianbergmann",
  12419. "type": "github"
  12420. }
  12421. ],
  12422. "time": "2020-10-26T13:12:34+00:00"
  12423. },
  12424. {
  12425. "name": "sebastian/object-reflector",
  12426. "version": "2.0.4",
  12427. "source": {
  12428. "type": "git",
  12429. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12430. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  12431. },
  12432. "dist": {
  12433. "type": "zip",
  12434. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12435. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12436. "shasum": "",
  12437. "mirrors": [
  12438. {
  12439. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12440. "preferred": true
  12441. }
  12442. ]
  12443. },
  12444. "require": {
  12445. "php": ">=7.3"
  12446. },
  12447. "require-dev": {
  12448. "phpunit/phpunit": "^9.3"
  12449. },
  12450. "type": "library",
  12451. "extra": {
  12452. "branch-alias": {
  12453. "dev-master": "2.0-dev"
  12454. }
  12455. },
  12456. "autoload": {
  12457. "classmap": [
  12458. "src/"
  12459. ]
  12460. },
  12461. "notification-url": "https://packagist.org/downloads/",
  12462. "license": [
  12463. "BSD-3-Clause"
  12464. ],
  12465. "authors": [
  12466. {
  12467. "name": "Sebastian Bergmann",
  12468. "email": "sebastian@phpunit.de"
  12469. }
  12470. ],
  12471. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12472. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12473. "support": {
  12474. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12475. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  12476. },
  12477. "funding": [
  12478. {
  12479. "url": "https://github.com/sebastianbergmann",
  12480. "type": "github"
  12481. }
  12482. ],
  12483. "time": "2020-10-26T13:14:26+00:00"
  12484. },
  12485. {
  12486. "name": "sebastian/recursion-context",
  12487. "version": "4.0.4",
  12488. "source": {
  12489. "type": "git",
  12490. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12491. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  12492. },
  12493. "dist": {
  12494. "type": "zip",
  12495. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  12496. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  12497. "shasum": "",
  12498. "mirrors": [
  12499. {
  12500. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12501. "preferred": true
  12502. }
  12503. ]
  12504. },
  12505. "require": {
  12506. "php": ">=7.3"
  12507. },
  12508. "require-dev": {
  12509. "phpunit/phpunit": "^9.3"
  12510. },
  12511. "type": "library",
  12512. "extra": {
  12513. "branch-alias": {
  12514. "dev-master": "4.0-dev"
  12515. }
  12516. },
  12517. "autoload": {
  12518. "classmap": [
  12519. "src/"
  12520. ]
  12521. },
  12522. "notification-url": "https://packagist.org/downloads/",
  12523. "license": [
  12524. "BSD-3-Clause"
  12525. ],
  12526. "authors": [
  12527. {
  12528. "name": "Sebastian Bergmann",
  12529. "email": "sebastian@phpunit.de"
  12530. },
  12531. {
  12532. "name": "Jeff Welch",
  12533. "email": "whatthejeff@gmail.com"
  12534. },
  12535. {
  12536. "name": "Adam Harvey",
  12537. "email": "aharvey@php.net"
  12538. }
  12539. ],
  12540. "description": "Provides functionality to recursively process PHP variables",
  12541. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12542. "support": {
  12543. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12544. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  12545. },
  12546. "funding": [
  12547. {
  12548. "url": "https://github.com/sebastianbergmann",
  12549. "type": "github"
  12550. }
  12551. ],
  12552. "time": "2020-10-26T13:17:30+00:00"
  12553. },
  12554. {
  12555. "name": "sebastian/resource-operations",
  12556. "version": "3.0.3",
  12557. "source": {
  12558. "type": "git",
  12559. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12560. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  12561. },
  12562. "dist": {
  12563. "type": "zip",
  12564. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12565. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12566. "shasum": "",
  12567. "mirrors": [
  12568. {
  12569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12570. "preferred": true
  12571. }
  12572. ]
  12573. },
  12574. "require": {
  12575. "php": ">=7.3"
  12576. },
  12577. "require-dev": {
  12578. "phpunit/phpunit": "^9.0"
  12579. },
  12580. "type": "library",
  12581. "extra": {
  12582. "branch-alias": {
  12583. "dev-master": "3.0-dev"
  12584. }
  12585. },
  12586. "autoload": {
  12587. "classmap": [
  12588. "src/"
  12589. ]
  12590. },
  12591. "notification-url": "https://packagist.org/downloads/",
  12592. "license": [
  12593. "BSD-3-Clause"
  12594. ],
  12595. "authors": [
  12596. {
  12597. "name": "Sebastian Bergmann",
  12598. "email": "sebastian@phpunit.de"
  12599. }
  12600. ],
  12601. "description": "Provides a list of PHP built-in functions that operate on resources",
  12602. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12603. "support": {
  12604. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  12605. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  12606. },
  12607. "funding": [
  12608. {
  12609. "url": "https://github.com/sebastianbergmann",
  12610. "type": "github"
  12611. }
  12612. ],
  12613. "time": "2020-09-28T06:45:17+00:00"
  12614. },
  12615. {
  12616. "name": "sebastian/type",
  12617. "version": "3.0.0",
  12618. "source": {
  12619. "type": "git",
  12620. "url": "https://github.com/sebastianbergmann/type.git",
  12621. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  12622. },
  12623. "dist": {
  12624. "type": "zip",
  12625. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  12626. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  12627. "shasum": "",
  12628. "mirrors": [
  12629. {
  12630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12631. "preferred": true
  12632. }
  12633. ]
  12634. },
  12635. "require": {
  12636. "php": ">=7.3"
  12637. },
  12638. "require-dev": {
  12639. "phpunit/phpunit": "^9.5"
  12640. },
  12641. "type": "library",
  12642. "extra": {
  12643. "branch-alias": {
  12644. "dev-master": "3.0-dev"
  12645. }
  12646. },
  12647. "autoload": {
  12648. "classmap": [
  12649. "src/"
  12650. ]
  12651. },
  12652. "notification-url": "https://packagist.org/downloads/",
  12653. "license": [
  12654. "BSD-3-Clause"
  12655. ],
  12656. "authors": [
  12657. {
  12658. "name": "Sebastian Bergmann",
  12659. "email": "sebastian@phpunit.de",
  12660. "role": "lead"
  12661. }
  12662. ],
  12663. "description": "Collection of value objects that represent the types of the PHP type system",
  12664. "homepage": "https://github.com/sebastianbergmann/type",
  12665. "support": {
  12666. "issues": "https://github.com/sebastianbergmann/type/issues",
  12667. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  12668. },
  12669. "funding": [
  12670. {
  12671. "url": "https://github.com/sebastianbergmann",
  12672. "type": "github"
  12673. }
  12674. ],
  12675. "time": "2022-03-15T09:54:48+00:00"
  12676. },
  12677. {
  12678. "name": "sebastian/version",
  12679. "version": "3.0.2",
  12680. "source": {
  12681. "type": "git",
  12682. "url": "https://github.com/sebastianbergmann/version.git",
  12683. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  12684. },
  12685. "dist": {
  12686. "type": "zip",
  12687. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  12688. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  12689. "shasum": "",
  12690. "mirrors": [
  12691. {
  12692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12693. "preferred": true
  12694. }
  12695. ]
  12696. },
  12697. "require": {
  12698. "php": ">=7.3"
  12699. },
  12700. "type": "library",
  12701. "extra": {
  12702. "branch-alias": {
  12703. "dev-master": "3.0-dev"
  12704. }
  12705. },
  12706. "autoload": {
  12707. "classmap": [
  12708. "src/"
  12709. ]
  12710. },
  12711. "notification-url": "https://packagist.org/downloads/",
  12712. "license": [
  12713. "BSD-3-Clause"
  12714. ],
  12715. "authors": [
  12716. {
  12717. "name": "Sebastian Bergmann",
  12718. "email": "sebastian@phpunit.de",
  12719. "role": "lead"
  12720. }
  12721. ],
  12722. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12723. "homepage": "https://github.com/sebastianbergmann/version",
  12724. "support": {
  12725. "issues": "https://github.com/sebastianbergmann/version/issues",
  12726. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  12727. },
  12728. "funding": [
  12729. {
  12730. "url": "https://github.com/sebastianbergmann",
  12731. "type": "github"
  12732. }
  12733. ],
  12734. "time": "2020-09-28T06:39:44+00:00"
  12735. },
  12736. {
  12737. "name": "theseer/tokenizer",
  12738. "version": "1.2.1",
  12739. "source": {
  12740. "type": "git",
  12741. "url": "https://github.com/theseer/tokenizer.git",
  12742. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  12743. },
  12744. "dist": {
  12745. "type": "zip",
  12746. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  12747. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  12748. "shasum": "",
  12749. "mirrors": [
  12750. {
  12751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12752. "preferred": true
  12753. }
  12754. ]
  12755. },
  12756. "require": {
  12757. "ext-dom": "*",
  12758. "ext-tokenizer": "*",
  12759. "ext-xmlwriter": "*",
  12760. "php": "^7.2 || ^8.0"
  12761. },
  12762. "type": "library",
  12763. "autoload": {
  12764. "classmap": [
  12765. "src/"
  12766. ]
  12767. },
  12768. "notification-url": "https://packagist.org/downloads/",
  12769. "license": [
  12770. "BSD-3-Clause"
  12771. ],
  12772. "authors": [
  12773. {
  12774. "name": "Arne Blankerts",
  12775. "email": "arne@blankerts.de",
  12776. "role": "Developer"
  12777. }
  12778. ],
  12779. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12780. "support": {
  12781. "issues": "https://github.com/theseer/tokenizer/issues",
  12782. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  12783. },
  12784. "funding": [
  12785. {
  12786. "url": "https://github.com/theseer",
  12787. "type": "github"
  12788. }
  12789. ],
  12790. "time": "2021-07-28T10:34:58+00:00"
  12791. }
  12792. ],
  12793. "aliases": [],
  12794. "minimum-stability": "dev",
  12795. "stability-flags": [],
  12796. "prefer-stable": true,
  12797. "prefer-lowest": false,
  12798. "platform": {
  12799. "php": "^7.3|^8.0"
  12800. },
  12801. "platform-dev": [],
  12802. "plugin-api-version": "2.1.0"
  12803. }