composer.lock 303 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386
  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": "87b6b4465c53113ed31f287dca44e5e3",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  15. "reference": "4ccead614915ee6685bf30016afb01aabd347e46"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/4ccead614915ee6685bf30016afb01aabd347e46",
  20. "reference": "4ccead614915ee6685bf30016afb01aabd347e46",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": ">=5.3"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "*",
  34. "satooshi/php-coveralls": "*"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "psr-4": {
  39. "OSS\\": "src/OSS"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Aliyuncs",
  49. "homepage": "http://www.aliyun.com"
  50. }
  51. ],
  52. "description": "Aliyun OSS SDK for PHP",
  53. "homepage": "http://www.aliyun.com/product/oss/",
  54. "support": {
  55. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  56. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.4.3"
  57. },
  58. "time": "2021-08-25T13:03:58+00:00"
  59. },
  60. {
  61. "name": "box/spout",
  62. "version": "v3.3.0",
  63. "source": {
  64. "type": "git",
  65. "url": "https://github.com/box/spout.git",
  66. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  67. },
  68. "dist": {
  69. "type": "zip",
  70. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  71. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  72. "shasum": "",
  73. "mirrors": [
  74. {
  75. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  76. "preferred": true
  77. }
  78. ]
  79. },
  80. "require": {
  81. "ext-dom": "*",
  82. "ext-xmlreader": "*",
  83. "ext-zip": "*",
  84. "php": ">=7.2.0"
  85. },
  86. "require-dev": {
  87. "friendsofphp/php-cs-fixer": "^2",
  88. "phpunit/phpunit": "^8"
  89. },
  90. "suggest": {
  91. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  92. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  93. },
  94. "type": "library",
  95. "extra": {
  96. "branch-alias": {
  97. "dev-master": "3.1.x-dev"
  98. }
  99. },
  100. "autoload": {
  101. "psr-4": {
  102. "Box\\Spout\\": "src/Spout"
  103. }
  104. },
  105. "notification-url": "https://packagist.org/downloads/",
  106. "license": [
  107. "Apache-2.0"
  108. ],
  109. "authors": [
  110. {
  111. "name": "Adrien Loison",
  112. "email": "adrien@box.com"
  113. }
  114. ],
  115. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  116. "homepage": "https://www.github.com/box/spout",
  117. "keywords": [
  118. "OOXML",
  119. "csv",
  120. "excel",
  121. "memory",
  122. "odf",
  123. "ods",
  124. "office",
  125. "open",
  126. "php",
  127. "read",
  128. "scale",
  129. "spreadsheet",
  130. "stream",
  131. "write",
  132. "xlsx"
  133. ],
  134. "support": {
  135. "issues": "https://github.com/box/spout/issues",
  136. "source": "https://github.com/box/spout/tree/v3.3.0"
  137. },
  138. "time": "2021-05-14T21:18:09+00:00"
  139. },
  140. {
  141. "name": "defuse/php-encryption",
  142. "version": "v2.3.1",
  143. "source": {
  144. "type": "git",
  145. "url": "https://github.com/defuse/php-encryption.git",
  146. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2"
  147. },
  148. "dist": {
  149. "type": "zip",
  150. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/77880488b9954b7884c25555c2a0ea9e7053f9d2",
  151. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2",
  152. "shasum": "",
  153. "mirrors": [
  154. {
  155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  156. "preferred": true
  157. }
  158. ]
  159. },
  160. "require": {
  161. "ext-openssl": "*",
  162. "paragonie/random_compat": ">= 2",
  163. "php": ">=5.6.0"
  164. },
  165. "require-dev": {
  166. "phpunit/phpunit": "^4|^5|^6|^7|^8|^9"
  167. },
  168. "bin": [
  169. "bin/generate-defuse-key"
  170. ],
  171. "type": "library",
  172. "autoload": {
  173. "psr-4": {
  174. "Defuse\\Crypto\\": "src"
  175. }
  176. },
  177. "notification-url": "https://packagist.org/downloads/",
  178. "license": [
  179. "MIT"
  180. ],
  181. "authors": [
  182. {
  183. "name": "Taylor Hornby",
  184. "email": "taylor@defuse.ca",
  185. "homepage": "https://defuse.ca/"
  186. },
  187. {
  188. "name": "Scott Arciszewski",
  189. "email": "info@paragonie.com",
  190. "homepage": "https://paragonie.com"
  191. }
  192. ],
  193. "description": "Secure PHP Encryption Library",
  194. "keywords": [
  195. "aes",
  196. "authenticated encryption",
  197. "cipher",
  198. "crypto",
  199. "cryptography",
  200. "encrypt",
  201. "encryption",
  202. "openssl",
  203. "security",
  204. "symmetric key cryptography"
  205. ],
  206. "support": {
  207. "issues": "https://github.com/defuse/php-encryption/issues",
  208. "source": "https://github.com/defuse/php-encryption/tree/v2.3.1"
  209. },
  210. "time": "2021-04-09T23:57:26+00:00"
  211. },
  212. {
  213. "name": "dnoegel/php-xdg-base-dir",
  214. "version": "v0.1.1",
  215. "source": {
  216. "type": "git",
  217. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  218. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  219. },
  220. "dist": {
  221. "type": "zip",
  222. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  223. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  224. "shasum": "",
  225. "mirrors": [
  226. {
  227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  228. "preferred": true
  229. }
  230. ]
  231. },
  232. "require": {
  233. "php": ">=5.3.2"
  234. },
  235. "require-dev": {
  236. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  237. },
  238. "type": "library",
  239. "autoload": {
  240. "psr-4": {
  241. "XdgBaseDir\\": "src/"
  242. }
  243. },
  244. "notification-url": "https://packagist.org/downloads/",
  245. "license": [
  246. "MIT"
  247. ],
  248. "description": "implementation of xdg base directory specification for php",
  249. "support": {
  250. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  251. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  252. },
  253. "time": "2019-12-04T15:06:13+00:00"
  254. },
  255. {
  256. "name": "doctrine/cache",
  257. "version": "2.1.1",
  258. "source": {
  259. "type": "git",
  260. "url": "https://github.com/doctrine/cache.git",
  261. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  262. },
  263. "dist": {
  264. "type": "zip",
  265. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  266. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  267. "shasum": "",
  268. "mirrors": [
  269. {
  270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  271. "preferred": true
  272. }
  273. ]
  274. },
  275. "require": {
  276. "php": "~7.1 || ^8.0"
  277. },
  278. "conflict": {
  279. "doctrine/common": ">2.2,<2.4"
  280. },
  281. "require-dev": {
  282. "alcaeus/mongo-php-adapter": "^1.1",
  283. "cache/integration-tests": "dev-master",
  284. "doctrine/coding-standard": "^8.0",
  285. "mongodb/mongodb": "^1.1",
  286. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  287. "predis/predis": "~1.0",
  288. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  289. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  290. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  291. },
  292. "suggest": {
  293. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  294. },
  295. "type": "library",
  296. "autoload": {
  297. "psr-4": {
  298. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  299. }
  300. },
  301. "notification-url": "https://packagist.org/downloads/",
  302. "license": [
  303. "MIT"
  304. ],
  305. "authors": [
  306. {
  307. "name": "Guilherme Blanco",
  308. "email": "guilhermeblanco@gmail.com"
  309. },
  310. {
  311. "name": "Roman Borschel",
  312. "email": "roman@code-factory.org"
  313. },
  314. {
  315. "name": "Benjamin Eberlei",
  316. "email": "kontakt@beberlei.de"
  317. },
  318. {
  319. "name": "Jonathan Wage",
  320. "email": "jonwage@gmail.com"
  321. },
  322. {
  323. "name": "Johannes Schmitt",
  324. "email": "schmittjoh@gmail.com"
  325. }
  326. ],
  327. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  328. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  329. "keywords": [
  330. "abstraction",
  331. "apcu",
  332. "cache",
  333. "caching",
  334. "couchdb",
  335. "memcached",
  336. "php",
  337. "redis",
  338. "xcache"
  339. ],
  340. "support": {
  341. "issues": "https://github.com/doctrine/cache/issues",
  342. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  343. },
  344. "funding": [
  345. {
  346. "url": "https://www.doctrine-project.org/sponsorship.html",
  347. "type": "custom"
  348. },
  349. {
  350. "url": "https://www.patreon.com/phpdoctrine",
  351. "type": "patreon"
  352. },
  353. {
  354. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  355. "type": "tidelift"
  356. }
  357. ],
  358. "time": "2021-07-17T14:49:29+00:00"
  359. },
  360. {
  361. "name": "doctrine/dbal",
  362. "version": "2.13.7",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/doctrine/dbal.git",
  366. "reference": "6e22f6012b42d7932674857989fcf184e9e9b1c3"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/doctrine/dbal/zipball/6e22f6012b42d7932674857989fcf184e9e9b1c3",
  371. "reference": "6e22f6012b42d7932674857989fcf184e9e9b1c3",
  372. "shasum": "",
  373. "mirrors": [
  374. {
  375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  376. "preferred": true
  377. }
  378. ]
  379. },
  380. "require": {
  381. "doctrine/cache": "^1.0|^2.0",
  382. "doctrine/deprecations": "^0.5.3",
  383. "doctrine/event-manager": "^1.0",
  384. "ext-pdo": "*",
  385. "php": "^7.1 || ^8"
  386. },
  387. "require-dev": {
  388. "doctrine/coding-standard": "9.0.0",
  389. "jetbrains/phpstorm-stubs": "2021.1",
  390. "phpstan/phpstan": "1.3.0",
  391. "phpunit/phpunit": "^7.5.20|^8.5|9.5.11",
  392. "psalm/plugin-phpunit": "0.16.1",
  393. "squizlabs/php_codesniffer": "3.6.2",
  394. "symfony/cache": "^4.4",
  395. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  396. "vimeo/psalm": "4.16.1"
  397. },
  398. "suggest": {
  399. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  400. },
  401. "bin": [
  402. "bin/doctrine-dbal"
  403. ],
  404. "type": "library",
  405. "autoload": {
  406. "psr-4": {
  407. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Guilherme Blanco",
  417. "email": "guilhermeblanco@gmail.com"
  418. },
  419. {
  420. "name": "Roman Borschel",
  421. "email": "roman@code-factory.org"
  422. },
  423. {
  424. "name": "Benjamin Eberlei",
  425. "email": "kontakt@beberlei.de"
  426. },
  427. {
  428. "name": "Jonathan Wage",
  429. "email": "jonwage@gmail.com"
  430. }
  431. ],
  432. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  433. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  434. "keywords": [
  435. "abstraction",
  436. "database",
  437. "db2",
  438. "dbal",
  439. "mariadb",
  440. "mssql",
  441. "mysql",
  442. "oci8",
  443. "oracle",
  444. "pdo",
  445. "pgsql",
  446. "postgresql",
  447. "queryobject",
  448. "sasql",
  449. "sql",
  450. "sqlanywhere",
  451. "sqlite",
  452. "sqlserver",
  453. "sqlsrv"
  454. ],
  455. "support": {
  456. "issues": "https://github.com/doctrine/dbal/issues",
  457. "source": "https://github.com/doctrine/dbal/tree/2.13.7"
  458. },
  459. "funding": [
  460. {
  461. "url": "https://www.doctrine-project.org/sponsorship.html",
  462. "type": "custom"
  463. },
  464. {
  465. "url": "https://www.patreon.com/phpdoctrine",
  466. "type": "patreon"
  467. },
  468. {
  469. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  470. "type": "tidelift"
  471. }
  472. ],
  473. "time": "2022-01-06T09:08:04+00:00"
  474. },
  475. {
  476. "name": "doctrine/deprecations",
  477. "version": "v0.5.3",
  478. "source": {
  479. "type": "git",
  480. "url": "https://github.com/doctrine/deprecations.git",
  481. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  482. },
  483. "dist": {
  484. "type": "zip",
  485. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  486. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  487. "shasum": "",
  488. "mirrors": [
  489. {
  490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  491. "preferred": true
  492. }
  493. ]
  494. },
  495. "require": {
  496. "php": "^7.1|^8.0"
  497. },
  498. "require-dev": {
  499. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  500. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  501. "psr/log": "^1.0"
  502. },
  503. "suggest": {
  504. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  505. },
  506. "type": "library",
  507. "autoload": {
  508. "psr-4": {
  509. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  510. }
  511. },
  512. "notification-url": "https://packagist.org/downloads/",
  513. "license": [
  514. "MIT"
  515. ],
  516. "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.",
  517. "homepage": "https://www.doctrine-project.org/",
  518. "support": {
  519. "issues": "https://github.com/doctrine/deprecations/issues",
  520. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  521. },
  522. "time": "2021-03-21T12:59:47+00:00"
  523. },
  524. {
  525. "name": "doctrine/event-manager",
  526. "version": "1.1.1",
  527. "source": {
  528. "type": "git",
  529. "url": "https://github.com/doctrine/event-manager.git",
  530. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  531. },
  532. "dist": {
  533. "type": "zip",
  534. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  535. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  536. "shasum": "",
  537. "mirrors": [
  538. {
  539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  540. "preferred": true
  541. }
  542. ]
  543. },
  544. "require": {
  545. "php": "^7.1 || ^8.0"
  546. },
  547. "conflict": {
  548. "doctrine/common": "<2.9@dev"
  549. },
  550. "require-dev": {
  551. "doctrine/coding-standard": "^6.0",
  552. "phpunit/phpunit": "^7.0"
  553. },
  554. "type": "library",
  555. "extra": {
  556. "branch-alias": {
  557. "dev-master": "1.0.x-dev"
  558. }
  559. },
  560. "autoload": {
  561. "psr-4": {
  562. "Doctrine\\Common\\": "lib/Doctrine/Common"
  563. }
  564. },
  565. "notification-url": "https://packagist.org/downloads/",
  566. "license": [
  567. "MIT"
  568. ],
  569. "authors": [
  570. {
  571. "name": "Guilherme Blanco",
  572. "email": "guilhermeblanco@gmail.com"
  573. },
  574. {
  575. "name": "Roman Borschel",
  576. "email": "roman@code-factory.org"
  577. },
  578. {
  579. "name": "Benjamin Eberlei",
  580. "email": "kontakt@beberlei.de"
  581. },
  582. {
  583. "name": "Jonathan Wage",
  584. "email": "jonwage@gmail.com"
  585. },
  586. {
  587. "name": "Johannes Schmitt",
  588. "email": "schmittjoh@gmail.com"
  589. },
  590. {
  591. "name": "Marco Pivetta",
  592. "email": "ocramius@gmail.com"
  593. }
  594. ],
  595. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  596. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  597. "keywords": [
  598. "event",
  599. "event dispatcher",
  600. "event manager",
  601. "event system",
  602. "events"
  603. ],
  604. "support": {
  605. "issues": "https://github.com/doctrine/event-manager/issues",
  606. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  607. },
  608. "funding": [
  609. {
  610. "url": "https://www.doctrine-project.org/sponsorship.html",
  611. "type": "custom"
  612. },
  613. {
  614. "url": "https://www.patreon.com/phpdoctrine",
  615. "type": "patreon"
  616. },
  617. {
  618. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  619. "type": "tidelift"
  620. }
  621. ],
  622. "time": "2020-05-29T18:28:51+00:00"
  623. },
  624. {
  625. "name": "doctrine/inflector",
  626. "version": "1.4.4",
  627. "source": {
  628. "type": "git",
  629. "url": "https://github.com/doctrine/inflector.git",
  630. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
  631. },
  632. "dist": {
  633. "type": "zip",
  634. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  635. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  636. "shasum": "",
  637. "mirrors": [
  638. {
  639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  640. "preferred": true
  641. }
  642. ]
  643. },
  644. "require": {
  645. "php": "^7.1 || ^8.0"
  646. },
  647. "require-dev": {
  648. "doctrine/coding-standard": "^8.0",
  649. "phpstan/phpstan": "^0.12",
  650. "phpstan/phpstan-phpunit": "^0.12",
  651. "phpstan/phpstan-strict-rules": "^0.12",
  652. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  653. },
  654. "type": "library",
  655. "extra": {
  656. "branch-alias": {
  657. "dev-master": "2.0.x-dev"
  658. }
  659. },
  660. "autoload": {
  661. "psr-4": {
  662. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector",
  663. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  664. }
  665. },
  666. "notification-url": "https://packagist.org/downloads/",
  667. "license": [
  668. "MIT"
  669. ],
  670. "authors": [
  671. {
  672. "name": "Guilherme Blanco",
  673. "email": "guilhermeblanco@gmail.com"
  674. },
  675. {
  676. "name": "Roman Borschel",
  677. "email": "roman@code-factory.org"
  678. },
  679. {
  680. "name": "Benjamin Eberlei",
  681. "email": "kontakt@beberlei.de"
  682. },
  683. {
  684. "name": "Jonathan Wage",
  685. "email": "jonwage@gmail.com"
  686. },
  687. {
  688. "name": "Johannes Schmitt",
  689. "email": "schmittjoh@gmail.com"
  690. }
  691. ],
  692. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  693. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  694. "keywords": [
  695. "inflection",
  696. "inflector",
  697. "lowercase",
  698. "manipulation",
  699. "php",
  700. "plural",
  701. "singular",
  702. "strings",
  703. "uppercase",
  704. "words"
  705. ],
  706. "support": {
  707. "issues": "https://github.com/doctrine/inflector/issues",
  708. "source": "https://github.com/doctrine/inflector/tree/1.4.4"
  709. },
  710. "funding": [
  711. {
  712. "url": "https://www.doctrine-project.org/sponsorship.html",
  713. "type": "custom"
  714. },
  715. {
  716. "url": "https://www.patreon.com/phpdoctrine",
  717. "type": "patreon"
  718. },
  719. {
  720. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  721. "type": "tidelift"
  722. }
  723. ],
  724. "time": "2021-04-16T17:34:40+00:00"
  725. },
  726. {
  727. "name": "doctrine/lexer",
  728. "version": "1.2.3",
  729. "source": {
  730. "type": "git",
  731. "url": "https://github.com/doctrine/lexer.git",
  732. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  733. },
  734. "dist": {
  735. "type": "zip",
  736. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  737. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  738. "shasum": "",
  739. "mirrors": [
  740. {
  741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  742. "preferred": true
  743. }
  744. ]
  745. },
  746. "require": {
  747. "php": "^7.1 || ^8.0"
  748. },
  749. "require-dev": {
  750. "doctrine/coding-standard": "^9.0",
  751. "phpstan/phpstan": "^1.3",
  752. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  753. "vimeo/psalm": "^4.11"
  754. },
  755. "type": "library",
  756. "autoload": {
  757. "psr-4": {
  758. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  759. }
  760. },
  761. "notification-url": "https://packagist.org/downloads/",
  762. "license": [
  763. "MIT"
  764. ],
  765. "authors": [
  766. {
  767. "name": "Guilherme Blanco",
  768. "email": "guilhermeblanco@gmail.com"
  769. },
  770. {
  771. "name": "Roman Borschel",
  772. "email": "roman@code-factory.org"
  773. },
  774. {
  775. "name": "Johannes Schmitt",
  776. "email": "schmittjoh@gmail.com"
  777. }
  778. ],
  779. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  780. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  781. "keywords": [
  782. "annotations",
  783. "docblock",
  784. "lexer",
  785. "parser",
  786. "php"
  787. ],
  788. "support": {
  789. "issues": "https://github.com/doctrine/lexer/issues",
  790. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  791. },
  792. "funding": [
  793. {
  794. "url": "https://www.doctrine-project.org/sponsorship.html",
  795. "type": "custom"
  796. },
  797. {
  798. "url": "https://www.patreon.com/phpdoctrine",
  799. "type": "patreon"
  800. },
  801. {
  802. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  803. "type": "tidelift"
  804. }
  805. ],
  806. "time": "2022-02-28T11:07:21+00:00"
  807. },
  808. {
  809. "name": "dragonmantank/cron-expression",
  810. "version": "v2.3.1",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/dragonmantank/cron-expression.git",
  814. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  819. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  820. "shasum": "",
  821. "mirrors": [
  822. {
  823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  824. "preferred": true
  825. }
  826. ]
  827. },
  828. "require": {
  829. "php": "^7.0|^8.0"
  830. },
  831. "require-dev": {
  832. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  833. },
  834. "type": "library",
  835. "extra": {
  836. "branch-alias": {
  837. "dev-master": "2.3-dev"
  838. }
  839. },
  840. "autoload": {
  841. "psr-4": {
  842. "Cron\\": "src/Cron/"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "MIT"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Michael Dowling",
  852. "email": "mtdowling@gmail.com",
  853. "homepage": "https://github.com/mtdowling"
  854. },
  855. {
  856. "name": "Chris Tankersley",
  857. "email": "chris@ctankersley.com",
  858. "homepage": "https://github.com/dragonmantank"
  859. }
  860. ],
  861. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  862. "keywords": [
  863. "cron",
  864. "schedule"
  865. ],
  866. "support": {
  867. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  868. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  869. },
  870. "funding": [
  871. {
  872. "url": "https://github.com/dragonmantank",
  873. "type": "github"
  874. }
  875. ],
  876. "time": "2020-10-13T00:52:37+00:00"
  877. },
  878. {
  879. "name": "egulias/email-validator",
  880. "version": "2.1.25",
  881. "source": {
  882. "type": "git",
  883. "url": "https://github.com/egulias/EmailValidator.git",
  884. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  885. },
  886. "dist": {
  887. "type": "zip",
  888. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  889. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  890. "shasum": "",
  891. "mirrors": [
  892. {
  893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  894. "preferred": true
  895. }
  896. ]
  897. },
  898. "require": {
  899. "doctrine/lexer": "^1.0.1",
  900. "php": ">=5.5",
  901. "symfony/polyfill-intl-idn": "^1.10"
  902. },
  903. "require-dev": {
  904. "dominicsayers/isemail": "^3.0.7",
  905. "phpunit/phpunit": "^4.8.36|^7.5.15",
  906. "satooshi/php-coveralls": "^1.0.1"
  907. },
  908. "suggest": {
  909. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  910. },
  911. "type": "library",
  912. "extra": {
  913. "branch-alias": {
  914. "dev-master": "2.1.x-dev"
  915. }
  916. },
  917. "autoload": {
  918. "psr-4": {
  919. "Egulias\\EmailValidator\\": "src"
  920. }
  921. },
  922. "notification-url": "https://packagist.org/downloads/",
  923. "license": [
  924. "MIT"
  925. ],
  926. "authors": [
  927. {
  928. "name": "Eduardo Gulias Davis"
  929. }
  930. ],
  931. "description": "A library for validating emails against several RFCs",
  932. "homepage": "https://github.com/egulias/EmailValidator",
  933. "keywords": [
  934. "email",
  935. "emailvalidation",
  936. "emailvalidator",
  937. "validation",
  938. "validator"
  939. ],
  940. "support": {
  941. "issues": "https://github.com/egulias/EmailValidator/issues",
  942. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  943. },
  944. "funding": [
  945. {
  946. "url": "https://github.com/egulias",
  947. "type": "github"
  948. }
  949. ],
  950. "time": "2020-12-29T14:50:06+00:00"
  951. },
  952. {
  953. "name": "erusev/parsedown",
  954. "version": "1.7.4",
  955. "source": {
  956. "type": "git",
  957. "url": "https://github.com/erusev/parsedown.git",
  958. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  959. },
  960. "dist": {
  961. "type": "zip",
  962. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  963. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  964. "shasum": "",
  965. "mirrors": [
  966. {
  967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  968. "preferred": true
  969. }
  970. ]
  971. },
  972. "require": {
  973. "ext-mbstring": "*",
  974. "php": ">=5.3.0"
  975. },
  976. "require-dev": {
  977. "phpunit/phpunit": "^4.8.35"
  978. },
  979. "type": "library",
  980. "autoload": {
  981. "psr-0": {
  982. "Parsedown": ""
  983. }
  984. },
  985. "notification-url": "https://packagist.org/downloads/",
  986. "license": [
  987. "MIT"
  988. ],
  989. "authors": [
  990. {
  991. "name": "Emanuil Rusev",
  992. "email": "hello@erusev.com",
  993. "homepage": "http://erusev.com"
  994. }
  995. ],
  996. "description": "Parser for Markdown.",
  997. "homepage": "http://parsedown.org",
  998. "keywords": [
  999. "markdown",
  1000. "parser"
  1001. ],
  1002. "support": {
  1003. "issues": "https://github.com/erusev/parsedown/issues",
  1004. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  1005. },
  1006. "time": "2019-12-30T22:54:17+00:00"
  1007. },
  1008. {
  1009. "name": "fideloper/proxy",
  1010. "version": "4.4.1",
  1011. "source": {
  1012. "type": "git",
  1013. "url": "https://github.com/fideloper/TrustedProxy.git",
  1014. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1015. },
  1016. "dist": {
  1017. "type": "zip",
  1018. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1019. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1020. "shasum": "",
  1021. "mirrors": [
  1022. {
  1023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1024. "preferred": true
  1025. }
  1026. ]
  1027. },
  1028. "require": {
  1029. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1030. "php": ">=5.4.0"
  1031. },
  1032. "require-dev": {
  1033. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1034. "mockery/mockery": "^1.0",
  1035. "phpunit/phpunit": "^6.0"
  1036. },
  1037. "type": "library",
  1038. "extra": {
  1039. "laravel": {
  1040. "providers": [
  1041. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1042. ]
  1043. }
  1044. },
  1045. "autoload": {
  1046. "psr-4": {
  1047. "Fideloper\\Proxy\\": "src/"
  1048. }
  1049. },
  1050. "notification-url": "https://packagist.org/downloads/",
  1051. "license": [
  1052. "MIT"
  1053. ],
  1054. "authors": [
  1055. {
  1056. "name": "Chris Fidao",
  1057. "email": "fideloper@gmail.com"
  1058. }
  1059. ],
  1060. "description": "Set trusted proxies for Laravel",
  1061. "keywords": [
  1062. "load balancing",
  1063. "proxy",
  1064. "trusted proxy"
  1065. ],
  1066. "support": {
  1067. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1068. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1069. },
  1070. "time": "2020-10-22T13:48:01+00:00"
  1071. },
  1072. {
  1073. "name": "firebase/php-jwt",
  1074. "version": "v5.5.1",
  1075. "source": {
  1076. "type": "git",
  1077. "url": "https://github.com/firebase/php-jwt.git",
  1078. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  1079. },
  1080. "dist": {
  1081. "type": "zip",
  1082. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  1083. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  1084. "shasum": "",
  1085. "mirrors": [
  1086. {
  1087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1088. "preferred": true
  1089. }
  1090. ]
  1091. },
  1092. "require": {
  1093. "php": ">=5.3.0"
  1094. },
  1095. "require-dev": {
  1096. "phpunit/phpunit": ">=4.8 <=9"
  1097. },
  1098. "suggest": {
  1099. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1100. },
  1101. "type": "library",
  1102. "autoload": {
  1103. "psr-4": {
  1104. "Firebase\\JWT\\": "src"
  1105. }
  1106. },
  1107. "notification-url": "https://packagist.org/downloads/",
  1108. "license": [
  1109. "BSD-3-Clause"
  1110. ],
  1111. "authors": [
  1112. {
  1113. "name": "Neuman Vong",
  1114. "email": "neuman+pear@twilio.com",
  1115. "role": "Developer"
  1116. },
  1117. {
  1118. "name": "Anant Narayanan",
  1119. "email": "anant@php.net",
  1120. "role": "Developer"
  1121. }
  1122. ],
  1123. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1124. "homepage": "https://github.com/firebase/php-jwt",
  1125. "keywords": [
  1126. "jwt",
  1127. "php"
  1128. ],
  1129. "support": {
  1130. "issues": "https://github.com/firebase/php-jwt/issues",
  1131. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  1132. },
  1133. "time": "2021-11-08T20:18:51+00:00"
  1134. },
  1135. {
  1136. "name": "guzzlehttp/guzzle",
  1137. "version": "6.5.5",
  1138. "source": {
  1139. "type": "git",
  1140. "url": "https://github.com/guzzle/guzzle.git",
  1141. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1142. },
  1143. "dist": {
  1144. "type": "zip",
  1145. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1146. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1147. "shasum": "",
  1148. "mirrors": [
  1149. {
  1150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1151. "preferred": true
  1152. }
  1153. ]
  1154. },
  1155. "require": {
  1156. "ext-json": "*",
  1157. "guzzlehttp/promises": "^1.0",
  1158. "guzzlehttp/psr7": "^1.6.1",
  1159. "php": ">=5.5",
  1160. "symfony/polyfill-intl-idn": "^1.17.0"
  1161. },
  1162. "require-dev": {
  1163. "ext-curl": "*",
  1164. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1165. "psr/log": "^1.1"
  1166. },
  1167. "suggest": {
  1168. "psr/log": "Required for using the Log middleware"
  1169. },
  1170. "type": "library",
  1171. "extra": {
  1172. "branch-alias": {
  1173. "dev-master": "6.5-dev"
  1174. }
  1175. },
  1176. "autoload": {
  1177. "files": [
  1178. "src/functions_include.php"
  1179. ],
  1180. "psr-4": {
  1181. "GuzzleHttp\\": "src/"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Michael Dowling",
  1191. "email": "mtdowling@gmail.com",
  1192. "homepage": "https://github.com/mtdowling"
  1193. }
  1194. ],
  1195. "description": "Guzzle is a PHP HTTP client library",
  1196. "homepage": "http://guzzlephp.org/",
  1197. "keywords": [
  1198. "client",
  1199. "curl",
  1200. "framework",
  1201. "http",
  1202. "http client",
  1203. "rest",
  1204. "web service"
  1205. ],
  1206. "support": {
  1207. "issues": "https://github.com/guzzle/guzzle/issues",
  1208. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1209. },
  1210. "time": "2020-06-16T21:01:06+00:00"
  1211. },
  1212. {
  1213. "name": "guzzlehttp/promises",
  1214. "version": "1.5.1",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/guzzle/promises.git",
  1218. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1223. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1224. "shasum": "",
  1225. "mirrors": [
  1226. {
  1227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1228. "preferred": true
  1229. }
  1230. ]
  1231. },
  1232. "require": {
  1233. "php": ">=5.5"
  1234. },
  1235. "require-dev": {
  1236. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1237. },
  1238. "type": "library",
  1239. "extra": {
  1240. "branch-alias": {
  1241. "dev-master": "1.5-dev"
  1242. }
  1243. },
  1244. "autoload": {
  1245. "files": [
  1246. "src/functions_include.php"
  1247. ],
  1248. "psr-4": {
  1249. "GuzzleHttp\\Promise\\": "src/"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Graham Campbell",
  1259. "email": "hello@gjcampbell.co.uk",
  1260. "homepage": "https://github.com/GrahamCampbell"
  1261. },
  1262. {
  1263. "name": "Michael Dowling",
  1264. "email": "mtdowling@gmail.com",
  1265. "homepage": "https://github.com/mtdowling"
  1266. },
  1267. {
  1268. "name": "Tobias Nyholm",
  1269. "email": "tobias.nyholm@gmail.com",
  1270. "homepage": "https://github.com/Nyholm"
  1271. },
  1272. {
  1273. "name": "Tobias Schultze",
  1274. "email": "webmaster@tubo-world.de",
  1275. "homepage": "https://github.com/Tobion"
  1276. }
  1277. ],
  1278. "description": "Guzzle promises library",
  1279. "keywords": [
  1280. "promise"
  1281. ],
  1282. "support": {
  1283. "issues": "https://github.com/guzzle/promises/issues",
  1284. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1285. },
  1286. "funding": [
  1287. {
  1288. "url": "https://github.com/GrahamCampbell",
  1289. "type": "github"
  1290. },
  1291. {
  1292. "url": "https://github.com/Nyholm",
  1293. "type": "github"
  1294. },
  1295. {
  1296. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1297. "type": "tidelift"
  1298. }
  1299. ],
  1300. "time": "2021-10-22T20:56:57+00:00"
  1301. },
  1302. {
  1303. "name": "guzzlehttp/psr7",
  1304. "version": "1.8.3",
  1305. "source": {
  1306. "type": "git",
  1307. "url": "https://github.com/guzzle/psr7.git",
  1308. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
  1309. },
  1310. "dist": {
  1311. "type": "zip",
  1312. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1313. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1314. "shasum": "",
  1315. "mirrors": [
  1316. {
  1317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1318. "preferred": true
  1319. }
  1320. ]
  1321. },
  1322. "require": {
  1323. "php": ">=5.4.0",
  1324. "psr/http-message": "~1.0",
  1325. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1326. },
  1327. "provide": {
  1328. "psr/http-message-implementation": "1.0"
  1329. },
  1330. "require-dev": {
  1331. "ext-zlib": "*",
  1332. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1333. },
  1334. "suggest": {
  1335. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1336. },
  1337. "type": "library",
  1338. "extra": {
  1339. "branch-alias": {
  1340. "dev-master": "1.7-dev"
  1341. }
  1342. },
  1343. "autoload": {
  1344. "files": [
  1345. "src/functions_include.php"
  1346. ],
  1347. "psr-4": {
  1348. "GuzzleHttp\\Psr7\\": "src/"
  1349. }
  1350. },
  1351. "notification-url": "https://packagist.org/downloads/",
  1352. "license": [
  1353. "MIT"
  1354. ],
  1355. "authors": [
  1356. {
  1357. "name": "Graham Campbell",
  1358. "email": "hello@gjcampbell.co.uk",
  1359. "homepage": "https://github.com/GrahamCampbell"
  1360. },
  1361. {
  1362. "name": "Michael Dowling",
  1363. "email": "mtdowling@gmail.com",
  1364. "homepage": "https://github.com/mtdowling"
  1365. },
  1366. {
  1367. "name": "George Mponos",
  1368. "email": "gmponos@gmail.com",
  1369. "homepage": "https://github.com/gmponos"
  1370. },
  1371. {
  1372. "name": "Tobias Nyholm",
  1373. "email": "tobias.nyholm@gmail.com",
  1374. "homepage": "https://github.com/Nyholm"
  1375. },
  1376. {
  1377. "name": "Márk Sági-Kazár",
  1378. "email": "mark.sagikazar@gmail.com",
  1379. "homepage": "https://github.com/sagikazarmark"
  1380. },
  1381. {
  1382. "name": "Tobias Schultze",
  1383. "email": "webmaster@tubo-world.de",
  1384. "homepage": "https://github.com/Tobion"
  1385. }
  1386. ],
  1387. "description": "PSR-7 message implementation that also provides common utility methods",
  1388. "keywords": [
  1389. "http",
  1390. "message",
  1391. "psr-7",
  1392. "request",
  1393. "response",
  1394. "stream",
  1395. "uri",
  1396. "url"
  1397. ],
  1398. "support": {
  1399. "issues": "https://github.com/guzzle/psr7/issues",
  1400. "source": "https://github.com/guzzle/psr7/tree/1.8.3"
  1401. },
  1402. "funding": [
  1403. {
  1404. "url": "https://github.com/GrahamCampbell",
  1405. "type": "github"
  1406. },
  1407. {
  1408. "url": "https://github.com/Nyholm",
  1409. "type": "github"
  1410. },
  1411. {
  1412. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1413. "type": "tidelift"
  1414. }
  1415. ],
  1416. "time": "2021-10-05T13:56:00+00:00"
  1417. },
  1418. {
  1419. "name": "jacobcyl/ali-oss-storage",
  1420. "version": "2.1.0",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://github.com/jacobcyl/Aliyun-oss-storage.git",
  1424. "reference": "c0cb9ba1d3faf22a1e04a03602aac90a187b5959"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://api.github.com/repos/jacobcyl/Aliyun-oss-storage/zipball/c0cb9ba1d3faf22a1e04a03602aac90a187b5959",
  1429. "reference": "c0cb9ba1d3faf22a1e04a03602aac90a187b5959",
  1430. "shasum": "",
  1431. "mirrors": [
  1432. {
  1433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1434. "preferred": true
  1435. }
  1436. ]
  1437. },
  1438. "require": {
  1439. "aliyuncs/oss-sdk-php": "~2.0"
  1440. },
  1441. "type": "library",
  1442. "extra": {
  1443. "laravel": {
  1444. "providers": [
  1445. "Jacobcyl\\AliOSS\\AliOssServiceProvider"
  1446. ]
  1447. }
  1448. },
  1449. "autoload": {
  1450. "psr-4": {
  1451. "Jacobcyl\\AliOSS\\": "src/"
  1452. }
  1453. },
  1454. "notification-url": "https://packagist.org/downloads/",
  1455. "license": [
  1456. "MIT"
  1457. ],
  1458. "authors": [
  1459. {
  1460. "name": "jacobcyl",
  1461. "email": "cyl.jacob@gmail.com"
  1462. }
  1463. ],
  1464. "description": "aliyun oss filesystem storage for laravel 5+",
  1465. "homepage": "http://jacobcyl.github.io/Aliyun-oss-storage/",
  1466. "keywords": [
  1467. "aliyun",
  1468. "filesystems",
  1469. "laravel",
  1470. "oss",
  1471. "storage"
  1472. ],
  1473. "support": {
  1474. "issues": "https://github.com/jacobcyl/Aliyun-oss-storage/issues",
  1475. "source": "https://github.com/jacobcyl/Aliyun-oss-storage/tree/2.1.0"
  1476. },
  1477. "time": "2018-04-02T03:44:01+00:00"
  1478. },
  1479. {
  1480. "name": "laravel/framework",
  1481. "version": "v5.8.38",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/laravel/framework.git",
  1485. "reference": "78eb4dabcc03e189620c16f436358d41d31ae11f"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/laravel/framework/zipball/78eb4dabcc03e189620c16f436358d41d31ae11f",
  1490. "reference": "78eb4dabcc03e189620c16f436358d41d31ae11f",
  1491. "shasum": "",
  1492. "mirrors": [
  1493. {
  1494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1495. "preferred": true
  1496. }
  1497. ]
  1498. },
  1499. "require": {
  1500. "doctrine/inflector": "^1.1",
  1501. "dragonmantank/cron-expression": "^2.0",
  1502. "egulias/email-validator": "^2.0",
  1503. "erusev/parsedown": "^1.7",
  1504. "ext-json": "*",
  1505. "ext-mbstring": "*",
  1506. "ext-openssl": "*",
  1507. "league/flysystem": "^1.0.8",
  1508. "monolog/monolog": "^1.12",
  1509. "nesbot/carbon": "^1.26.3 || ^2.0",
  1510. "opis/closure": "^3.1",
  1511. "php": "^7.1.3",
  1512. "psr/container": "^1.0",
  1513. "psr/simple-cache": "^1.0",
  1514. "ramsey/uuid": "^3.7",
  1515. "swiftmailer/swiftmailer": "^6.0",
  1516. "symfony/console": "^4.2",
  1517. "symfony/debug": "^4.2",
  1518. "symfony/finder": "^4.2",
  1519. "symfony/http-foundation": "^4.2",
  1520. "symfony/http-kernel": "^4.2",
  1521. "symfony/process": "^4.2",
  1522. "symfony/routing": "^4.2",
  1523. "symfony/var-dumper": "^4.2",
  1524. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1525. "vlucas/phpdotenv": "^3.3"
  1526. },
  1527. "conflict": {
  1528. "tightenco/collect": "<5.5.33"
  1529. },
  1530. "replace": {
  1531. "illuminate/auth": "self.version",
  1532. "illuminate/broadcasting": "self.version",
  1533. "illuminate/bus": "self.version",
  1534. "illuminate/cache": "self.version",
  1535. "illuminate/config": "self.version",
  1536. "illuminate/console": "self.version",
  1537. "illuminate/container": "self.version",
  1538. "illuminate/contracts": "self.version",
  1539. "illuminate/cookie": "self.version",
  1540. "illuminate/database": "self.version",
  1541. "illuminate/encryption": "self.version",
  1542. "illuminate/events": "self.version",
  1543. "illuminate/filesystem": "self.version",
  1544. "illuminate/hashing": "self.version",
  1545. "illuminate/http": "self.version",
  1546. "illuminate/log": "self.version",
  1547. "illuminate/mail": "self.version",
  1548. "illuminate/notifications": "self.version",
  1549. "illuminate/pagination": "self.version",
  1550. "illuminate/pipeline": "self.version",
  1551. "illuminate/queue": "self.version",
  1552. "illuminate/redis": "self.version",
  1553. "illuminate/routing": "self.version",
  1554. "illuminate/session": "self.version",
  1555. "illuminate/support": "self.version",
  1556. "illuminate/translation": "self.version",
  1557. "illuminate/validation": "self.version",
  1558. "illuminate/view": "self.version"
  1559. },
  1560. "require-dev": {
  1561. "aws/aws-sdk-php": "^3.0",
  1562. "doctrine/dbal": "^2.6",
  1563. "filp/whoops": "^2.1.4",
  1564. "guzzlehttp/guzzle": "^6.3",
  1565. "league/flysystem-cached-adapter": "^1.0",
  1566. "mockery/mockery": "^1.0",
  1567. "moontoast/math": "^1.1",
  1568. "orchestra/testbench-core": "3.8.*",
  1569. "pda/pheanstalk": "^4.0",
  1570. "phpunit/phpunit": "^7.5|^8.0",
  1571. "predis/predis": "^1.1.1",
  1572. "symfony/css-selector": "^4.2",
  1573. "symfony/dom-crawler": "^4.2",
  1574. "true/punycode": "^2.1"
  1575. },
  1576. "suggest": {
  1577. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  1578. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1579. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1580. "ext-pcntl": "Required to use all features of the queue worker.",
  1581. "ext-posix": "Required to use all features of the queue worker.",
  1582. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  1583. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  1584. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  1585. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  1586. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1587. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1588. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  1589. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1590. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1591. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  1592. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1593. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  1594. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  1595. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.2).",
  1596. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.2).",
  1597. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.1).",
  1598. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1599. },
  1600. "type": "library",
  1601. "extra": {
  1602. "branch-alias": {
  1603. "dev-master": "5.8-dev"
  1604. }
  1605. },
  1606. "autoload": {
  1607. "files": [
  1608. "src/Illuminate/Foundation/helpers.php",
  1609. "src/Illuminate/Support/helpers.php"
  1610. ],
  1611. "psr-4": {
  1612. "Illuminate\\": "src/Illuminate/"
  1613. }
  1614. },
  1615. "notification-url": "https://packagist.org/downloads/",
  1616. "license": [
  1617. "MIT"
  1618. ],
  1619. "authors": [
  1620. {
  1621. "name": "Taylor Otwell",
  1622. "email": "taylor@laravel.com"
  1623. }
  1624. ],
  1625. "description": "The Laravel Framework.",
  1626. "homepage": "https://laravel.com",
  1627. "keywords": [
  1628. "framework",
  1629. "laravel"
  1630. ],
  1631. "support": {
  1632. "issues": "https://github.com/laravel/framework/issues",
  1633. "source": "https://github.com/laravel/framework"
  1634. },
  1635. "time": "2020-04-14T14:14:36+00:00"
  1636. },
  1637. {
  1638. "name": "laravel/passport",
  1639. "version": "v7.5.1",
  1640. "source": {
  1641. "type": "git",
  1642. "url": "https://github.com/laravel/passport.git",
  1643. "reference": "d63cdd672c3d65b3c35b73d0ef13a9dbfcb71c08"
  1644. },
  1645. "dist": {
  1646. "type": "zip",
  1647. "url": "https://api.github.com/repos/laravel/passport/zipball/d63cdd672c3d65b3c35b73d0ef13a9dbfcb71c08",
  1648. "reference": "d63cdd672c3d65b3c35b73d0ef13a9dbfcb71c08",
  1649. "shasum": "",
  1650. "mirrors": [
  1651. {
  1652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1653. "preferred": true
  1654. }
  1655. ]
  1656. },
  1657. "require": {
  1658. "ext-json": "*",
  1659. "firebase/php-jwt": "~3.0|~4.0|~5.0",
  1660. "guzzlehttp/guzzle": "~6.0",
  1661. "illuminate/auth": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1662. "illuminate/console": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1663. "illuminate/container": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1664. "illuminate/contracts": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1665. "illuminate/cookie": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1666. "illuminate/database": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1667. "illuminate/encryption": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1668. "illuminate/http": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1669. "illuminate/support": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1670. "league/oauth2-server": "^7.0",
  1671. "php": ">=7.1",
  1672. "phpseclib/phpseclib": "^2.0",
  1673. "symfony/psr-http-message-bridge": "~1.0",
  1674. "zendframework/zend-diactoros": "~1.0|~2.0"
  1675. },
  1676. "require-dev": {
  1677. "mockery/mockery": "^1.0",
  1678. "phpunit/phpunit": "^7.4|^8.0"
  1679. },
  1680. "type": "library",
  1681. "extra": {
  1682. "branch-alias": {
  1683. "dev-master": "7.0-dev"
  1684. },
  1685. "laravel": {
  1686. "providers": [
  1687. "Laravel\\Passport\\PassportServiceProvider"
  1688. ]
  1689. }
  1690. },
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Laravel\\Passport\\": "src/"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "Taylor Otwell",
  1703. "email": "taylor@laravel.com"
  1704. }
  1705. ],
  1706. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  1707. "keywords": [
  1708. "laravel",
  1709. "oauth",
  1710. "passport"
  1711. ],
  1712. "support": {
  1713. "issues": "https://github.com/laravel/passport/issues",
  1714. "source": "https://github.com/laravel/passport"
  1715. },
  1716. "time": "2019-10-08T16:45:24+00:00"
  1717. },
  1718. {
  1719. "name": "laravel/tinker",
  1720. "version": "v1.0.10",
  1721. "source": {
  1722. "type": "git",
  1723. "url": "https://github.com/laravel/tinker.git",
  1724. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  1725. },
  1726. "dist": {
  1727. "type": "zip",
  1728. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1729. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1730. "shasum": "",
  1731. "mirrors": [
  1732. {
  1733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1734. "preferred": true
  1735. }
  1736. ]
  1737. },
  1738. "require": {
  1739. "illuminate/console": "~5.1|^6.0",
  1740. "illuminate/contracts": "~5.1|^6.0",
  1741. "illuminate/support": "~5.1|^6.0",
  1742. "php": ">=5.5.9",
  1743. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1744. "symfony/var-dumper": "~3.0|~4.0"
  1745. },
  1746. "require-dev": {
  1747. "phpunit/phpunit": "~4.0|~5.0"
  1748. },
  1749. "suggest": {
  1750. "illuminate/database": "The Illuminate Database package (~5.1)."
  1751. },
  1752. "type": "library",
  1753. "extra": {
  1754. "branch-alias": {
  1755. "dev-master": "1.0-dev"
  1756. },
  1757. "laravel": {
  1758. "providers": [
  1759. "Laravel\\Tinker\\TinkerServiceProvider"
  1760. ]
  1761. }
  1762. },
  1763. "autoload": {
  1764. "psr-4": {
  1765. "Laravel\\Tinker\\": "src/"
  1766. }
  1767. },
  1768. "notification-url": "https://packagist.org/downloads/",
  1769. "license": [
  1770. "MIT"
  1771. ],
  1772. "authors": [
  1773. {
  1774. "name": "Taylor Otwell",
  1775. "email": "taylor@laravel.com"
  1776. }
  1777. ],
  1778. "description": "Powerful REPL for the Laravel framework.",
  1779. "keywords": [
  1780. "REPL",
  1781. "Tinker",
  1782. "laravel",
  1783. "psysh"
  1784. ],
  1785. "support": {
  1786. "issues": "https://github.com/laravel/tinker/issues",
  1787. "source": "https://github.com/laravel/tinker/tree/v1.0.10"
  1788. },
  1789. "time": "2019-08-07T15:10:45+00:00"
  1790. },
  1791. {
  1792. "name": "lcobucci/jwt",
  1793. "version": "3.3.3",
  1794. "source": {
  1795. "type": "git",
  1796. "url": "https://github.com/lcobucci/jwt.git",
  1797. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  1798. },
  1799. "dist": {
  1800. "type": "zip",
  1801. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  1802. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  1803. "shasum": "",
  1804. "mirrors": [
  1805. {
  1806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1807. "preferred": true
  1808. }
  1809. ]
  1810. },
  1811. "require": {
  1812. "ext-mbstring": "*",
  1813. "ext-openssl": "*",
  1814. "php": "^5.6 || ^7.0"
  1815. },
  1816. "require-dev": {
  1817. "mikey179/vfsstream": "~1.5",
  1818. "phpmd/phpmd": "~2.2",
  1819. "phpunit/php-invoker": "~1.1",
  1820. "phpunit/phpunit": "^5.7 || ^7.3",
  1821. "squizlabs/php_codesniffer": "~2.3"
  1822. },
  1823. "type": "library",
  1824. "extra": {
  1825. "branch-alias": {
  1826. "dev-master": "3.1-dev"
  1827. }
  1828. },
  1829. "autoload": {
  1830. "psr-4": {
  1831. "Lcobucci\\JWT\\": "src"
  1832. }
  1833. },
  1834. "notification-url": "https://packagist.org/downloads/",
  1835. "license": [
  1836. "BSD-3-Clause"
  1837. ],
  1838. "authors": [
  1839. {
  1840. "name": "Luís Otávio Cobucci Oblonczyk",
  1841. "email": "lcobucci@gmail.com",
  1842. "role": "Developer"
  1843. }
  1844. ],
  1845. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1846. "keywords": [
  1847. "JWS",
  1848. "jwt"
  1849. ],
  1850. "support": {
  1851. "issues": "https://github.com/lcobucci/jwt/issues",
  1852. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  1853. },
  1854. "funding": [
  1855. {
  1856. "url": "https://github.com/lcobucci",
  1857. "type": "github"
  1858. },
  1859. {
  1860. "url": "https://www.patreon.com/lcobucci",
  1861. "type": "patreon"
  1862. }
  1863. ],
  1864. "time": "2020-08-20T13:22:28+00:00"
  1865. },
  1866. {
  1867. "name": "league/event",
  1868. "version": "2.2.0",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://github.com/thephpleague/event.git",
  1872. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  1877. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  1878. "shasum": "",
  1879. "mirrors": [
  1880. {
  1881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1882. "preferred": true
  1883. }
  1884. ]
  1885. },
  1886. "require": {
  1887. "php": ">=5.4.0"
  1888. },
  1889. "require-dev": {
  1890. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  1891. "phpspec/phpspec": "^2.2"
  1892. },
  1893. "type": "library",
  1894. "extra": {
  1895. "branch-alias": {
  1896. "dev-master": "2.2-dev"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "psr-4": {
  1901. "League\\Event\\": "src/"
  1902. }
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "MIT"
  1907. ],
  1908. "authors": [
  1909. {
  1910. "name": "Frank de Jonge",
  1911. "email": "info@frenky.net"
  1912. }
  1913. ],
  1914. "description": "Event package",
  1915. "keywords": [
  1916. "emitter",
  1917. "event",
  1918. "listener"
  1919. ],
  1920. "support": {
  1921. "issues": "https://github.com/thephpleague/event/issues",
  1922. "source": "https://github.com/thephpleague/event/tree/master"
  1923. },
  1924. "time": "2018-11-26T11:52:41+00:00"
  1925. },
  1926. {
  1927. "name": "league/flysystem",
  1928. "version": "1.0.46",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://github.com/thephpleague/flysystem.git",
  1932. "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2",
  1937. "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2",
  1938. "shasum": "",
  1939. "mirrors": [
  1940. {
  1941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1942. "preferred": true
  1943. }
  1944. ]
  1945. },
  1946. "require": {
  1947. "php": ">=5.5.9"
  1948. },
  1949. "conflict": {
  1950. "league/flysystem-sftp": "<1.0.6"
  1951. },
  1952. "require-dev": {
  1953. "ext-fileinfo": "*",
  1954. "phpspec/phpspec": "^3.4",
  1955. "phpunit/phpunit": "^5.7.10"
  1956. },
  1957. "suggest": {
  1958. "ext-fileinfo": "Required for MimeType",
  1959. "ext-ftp": "Allows you to use FTP server storage",
  1960. "ext-openssl": "Allows you to use FTPS server storage",
  1961. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1962. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1963. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1964. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1965. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1966. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1967. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1968. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1969. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1970. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1971. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "branch-alias": {
  1976. "dev-master": "1.1-dev"
  1977. }
  1978. },
  1979. "autoload": {
  1980. "psr-4": {
  1981. "League\\Flysystem\\": "src/"
  1982. }
  1983. },
  1984. "notification-url": "https://packagist.org/downloads/",
  1985. "license": [
  1986. "MIT"
  1987. ],
  1988. "authors": [
  1989. {
  1990. "name": "Frank de Jonge",
  1991. "email": "info@frenky.net"
  1992. }
  1993. ],
  1994. "description": "Filesystem abstraction: Many filesystems, one API.",
  1995. "keywords": [
  1996. "Cloud Files",
  1997. "WebDAV",
  1998. "abstraction",
  1999. "aws",
  2000. "cloud",
  2001. "copy.com",
  2002. "dropbox",
  2003. "file systems",
  2004. "files",
  2005. "filesystem",
  2006. "filesystems",
  2007. "ftp",
  2008. "rackspace",
  2009. "remote",
  2010. "s3",
  2011. "sftp",
  2012. "storage"
  2013. ],
  2014. "support": {
  2015. "issues": "https://github.com/thephpleague/flysystem/issues",
  2016. "source": "https://github.com/thephpleague/flysystem/tree/master"
  2017. },
  2018. "time": "2018-08-22T07:45:22+00:00"
  2019. },
  2020. {
  2021. "name": "league/oauth2-server",
  2022. "version": "7.4.0",
  2023. "source": {
  2024. "type": "git",
  2025. "url": "https://github.com/thephpleague/oauth2-server.git",
  2026. "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf"
  2027. },
  2028. "dist": {
  2029. "type": "zip",
  2030. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf",
  2031. "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf",
  2032. "shasum": "",
  2033. "mirrors": [
  2034. {
  2035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2036. "preferred": true
  2037. }
  2038. ]
  2039. },
  2040. "require": {
  2041. "defuse/php-encryption": "^2.1",
  2042. "ext-openssl": "*",
  2043. "lcobucci/jwt": "^3.2.2",
  2044. "league/event": "^2.1",
  2045. "php": ">=7.0.0",
  2046. "psr/http-message": "^1.0.1"
  2047. },
  2048. "replace": {
  2049. "league/oauth2server": "*",
  2050. "lncd/oauth2": "*"
  2051. },
  2052. "require-dev": {
  2053. "phpstan/phpstan": "^0.9.2",
  2054. "phpstan/phpstan-phpunit": "^0.9.4",
  2055. "phpstan/phpstan-strict-rules": "^0.9.0",
  2056. "phpunit/phpunit": "^6.3 || ^7.0",
  2057. "roave/security-advisories": "dev-master",
  2058. "zendframework/zend-diactoros": "^1.3.2"
  2059. },
  2060. "type": "library",
  2061. "autoload": {
  2062. "psr-4": {
  2063. "League\\OAuth2\\Server\\": "src/"
  2064. }
  2065. },
  2066. "notification-url": "https://packagist.org/downloads/",
  2067. "license": [
  2068. "MIT"
  2069. ],
  2070. "authors": [
  2071. {
  2072. "name": "Alex Bilbie",
  2073. "email": "hello@alexbilbie.com",
  2074. "homepage": "http://www.alexbilbie.com",
  2075. "role": "Developer"
  2076. },
  2077. {
  2078. "name": "Andy Millington",
  2079. "email": "andrew@noexceptions.io",
  2080. "homepage": "https://www.noexceptions.io",
  2081. "role": "Developer"
  2082. }
  2083. ],
  2084. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  2085. "homepage": "https://oauth2.thephpleague.com/",
  2086. "keywords": [
  2087. "Authentication",
  2088. "api",
  2089. "auth",
  2090. "authorisation",
  2091. "authorization",
  2092. "oauth",
  2093. "oauth 2",
  2094. "oauth 2.0",
  2095. "oauth2",
  2096. "protect",
  2097. "resource",
  2098. "secure",
  2099. "server"
  2100. ],
  2101. "support": {
  2102. "issues": "https://github.com/thephpleague/oauth2-server/issues",
  2103. "source": "https://github.com/thephpleague/oauth2-server/tree/master"
  2104. },
  2105. "time": "2019-05-05T09:22:01+00:00"
  2106. },
  2107. {
  2108. "name": "monolog/monolog",
  2109. "version": "1.26.1",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/Seldaek/monolog.git",
  2113. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  2118. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  2119. "shasum": "",
  2120. "mirrors": [
  2121. {
  2122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2123. "preferred": true
  2124. }
  2125. ]
  2126. },
  2127. "require": {
  2128. "php": ">=5.3.0",
  2129. "psr/log": "~1.0"
  2130. },
  2131. "provide": {
  2132. "psr/log-implementation": "1.0.0"
  2133. },
  2134. "require-dev": {
  2135. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2136. "doctrine/couchdb": "~1.0@dev",
  2137. "graylog2/gelf-php": "~1.0",
  2138. "php-amqplib/php-amqplib": "~2.4",
  2139. "php-console/php-console": "^3.1.3",
  2140. "phpstan/phpstan": "^0.12.59",
  2141. "phpunit/phpunit": "~4.5",
  2142. "ruflin/elastica": ">=0.90 <3.0",
  2143. "sentry/sentry": "^0.13",
  2144. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2145. },
  2146. "suggest": {
  2147. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2148. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2149. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2150. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2151. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2152. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2153. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2154. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2155. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2156. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2157. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2158. },
  2159. "type": "library",
  2160. "autoload": {
  2161. "psr-4": {
  2162. "Monolog\\": "src/Monolog"
  2163. }
  2164. },
  2165. "notification-url": "https://packagist.org/downloads/",
  2166. "license": [
  2167. "MIT"
  2168. ],
  2169. "authors": [
  2170. {
  2171. "name": "Jordi Boggiano",
  2172. "email": "j.boggiano@seld.be",
  2173. "homepage": "http://seld.be"
  2174. }
  2175. ],
  2176. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2177. "homepage": "http://github.com/Seldaek/monolog",
  2178. "keywords": [
  2179. "log",
  2180. "logging",
  2181. "psr-3"
  2182. ],
  2183. "support": {
  2184. "issues": "https://github.com/Seldaek/monolog/issues",
  2185. "source": "https://github.com/Seldaek/monolog/tree/1.26.1"
  2186. },
  2187. "funding": [
  2188. {
  2189. "url": "https://github.com/Seldaek",
  2190. "type": "github"
  2191. },
  2192. {
  2193. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2194. "type": "tidelift"
  2195. }
  2196. ],
  2197. "time": "2021-05-28T08:32:12+00:00"
  2198. },
  2199. {
  2200. "name": "nesbot/carbon",
  2201. "version": "2.57.0",
  2202. "source": {
  2203. "type": "git",
  2204. "url": "https://github.com/briannesbitt/Carbon.git",
  2205. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78"
  2206. },
  2207. "dist": {
  2208. "type": "zip",
  2209. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4a54375c21eea4811dbd1149fe6b246517554e78",
  2210. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78",
  2211. "shasum": "",
  2212. "mirrors": [
  2213. {
  2214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2215. "preferred": true
  2216. }
  2217. ]
  2218. },
  2219. "require": {
  2220. "ext-json": "*",
  2221. "php": "^7.1.8 || ^8.0",
  2222. "symfony/polyfill-mbstring": "^1.0",
  2223. "symfony/polyfill-php80": "^1.16",
  2224. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2225. },
  2226. "require-dev": {
  2227. "doctrine/dbal": "^2.0 || ^3.0",
  2228. "doctrine/orm": "^2.7",
  2229. "friendsofphp/php-cs-fixer": "^3.0",
  2230. "kylekatarnls/multi-tester": "^2.0",
  2231. "phpmd/phpmd": "^2.9",
  2232. "phpstan/extension-installer": "^1.0",
  2233. "phpstan/phpstan": "^0.12.54 || ^1.0",
  2234. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  2235. "squizlabs/php_codesniffer": "^3.4"
  2236. },
  2237. "bin": [
  2238. "bin/carbon"
  2239. ],
  2240. "type": "library",
  2241. "extra": {
  2242. "branch-alias": {
  2243. "dev-3.x": "3.x-dev",
  2244. "dev-master": "2.x-dev"
  2245. },
  2246. "laravel": {
  2247. "providers": [
  2248. "Carbon\\Laravel\\ServiceProvider"
  2249. ]
  2250. },
  2251. "phpstan": {
  2252. "includes": [
  2253. "extension.neon"
  2254. ]
  2255. }
  2256. },
  2257. "autoload": {
  2258. "psr-4": {
  2259. "Carbon\\": "src/Carbon/"
  2260. }
  2261. },
  2262. "notification-url": "https://packagist.org/downloads/",
  2263. "license": [
  2264. "MIT"
  2265. ],
  2266. "authors": [
  2267. {
  2268. "name": "Brian Nesbitt",
  2269. "email": "brian@nesbot.com",
  2270. "homepage": "https://markido.com"
  2271. },
  2272. {
  2273. "name": "kylekatarnls",
  2274. "homepage": "https://github.com/kylekatarnls"
  2275. }
  2276. ],
  2277. "description": "An API extension for DateTime that supports 281 different languages.",
  2278. "homepage": "https://carbon.nesbot.com",
  2279. "keywords": [
  2280. "date",
  2281. "datetime",
  2282. "time"
  2283. ],
  2284. "support": {
  2285. "docs": "https://carbon.nesbot.com/docs",
  2286. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2287. "source": "https://github.com/briannesbitt/Carbon"
  2288. },
  2289. "funding": [
  2290. {
  2291. "url": "https://opencollective.com/Carbon",
  2292. "type": "open_collective"
  2293. },
  2294. {
  2295. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2296. "type": "tidelift"
  2297. }
  2298. ],
  2299. "time": "2022-02-13T18:13:33+00:00"
  2300. },
  2301. {
  2302. "name": "nikic/php-parser",
  2303. "version": "v4.13.2",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://github.com/nikic/PHP-Parser.git",
  2307. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  2312. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  2313. "shasum": "",
  2314. "mirrors": [
  2315. {
  2316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2317. "preferred": true
  2318. }
  2319. ]
  2320. },
  2321. "require": {
  2322. "ext-tokenizer": "*",
  2323. "php": ">=7.0"
  2324. },
  2325. "require-dev": {
  2326. "ircmaxell/php-yacc": "^0.0.7",
  2327. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2328. },
  2329. "bin": [
  2330. "bin/php-parse"
  2331. ],
  2332. "type": "library",
  2333. "extra": {
  2334. "branch-alias": {
  2335. "dev-master": "4.9-dev"
  2336. }
  2337. },
  2338. "autoload": {
  2339. "psr-4": {
  2340. "PhpParser\\": "lib/PhpParser"
  2341. }
  2342. },
  2343. "notification-url": "https://packagist.org/downloads/",
  2344. "license": [
  2345. "BSD-3-Clause"
  2346. ],
  2347. "authors": [
  2348. {
  2349. "name": "Nikita Popov"
  2350. }
  2351. ],
  2352. "description": "A PHP parser written in PHP",
  2353. "keywords": [
  2354. "parser",
  2355. "php"
  2356. ],
  2357. "support": {
  2358. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2359. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  2360. },
  2361. "time": "2021-11-30T19:35:32+00:00"
  2362. },
  2363. {
  2364. "name": "nwidart/laravel-modules",
  2365. "version": "7.3.0",
  2366. "source": {
  2367. "type": "git",
  2368. "url": "https://github.com/nWidart/laravel-modules.git",
  2369. "reference": "5194d3c1941518f6131238745aff916453afc727"
  2370. },
  2371. "dist": {
  2372. "type": "zip",
  2373. "url": "https://api.github.com/repos/nWidart/laravel-modules/zipball/5194d3c1941518f6131238745aff916453afc727",
  2374. "reference": "5194d3c1941518f6131238745aff916453afc727",
  2375. "shasum": "",
  2376. "mirrors": [
  2377. {
  2378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2379. "preferred": true
  2380. }
  2381. ]
  2382. },
  2383. "require": {
  2384. "ext-json": "*",
  2385. "php": ">=7.2.5"
  2386. },
  2387. "require-dev": {
  2388. "friendsofphp/php-cs-fixer": "^2.16",
  2389. "laravel/framework": "^7.0",
  2390. "mockery/mockery": "~1.0",
  2391. "orchestra/testbench": "^5.0",
  2392. "phpstan/phpstan": "^0.12.14",
  2393. "phpunit/phpunit": "^8.5",
  2394. "spatie/phpunit-snapshot-assertions": "^2.1.0"
  2395. },
  2396. "type": "library",
  2397. "extra": {
  2398. "laravel": {
  2399. "providers": [
  2400. "Nwidart\\Modules\\LaravelModulesServiceProvider"
  2401. ],
  2402. "aliases": {
  2403. "Module": "Nwidart\\Modules\\Facades\\Module"
  2404. }
  2405. },
  2406. "branch-alias": {
  2407. "dev-master": "7.0-dev"
  2408. }
  2409. },
  2410. "autoload": {
  2411. "files": [
  2412. "src/helpers.php"
  2413. ],
  2414. "psr-4": {
  2415. "Nwidart\\Modules\\": "src"
  2416. }
  2417. },
  2418. "notification-url": "https://packagist.org/downloads/",
  2419. "license": [
  2420. "MIT"
  2421. ],
  2422. "authors": [
  2423. {
  2424. "name": "Nicolas Widart",
  2425. "email": "n.widart@gmail.com",
  2426. "homepage": "https://nicolaswidart.com",
  2427. "role": "Developer"
  2428. }
  2429. ],
  2430. "description": "Laravel Module management",
  2431. "keywords": [
  2432. "laravel",
  2433. "module",
  2434. "modules",
  2435. "nwidart",
  2436. "rad"
  2437. ],
  2438. "support": {
  2439. "issues": "https://github.com/nWidart/laravel-modules/issues",
  2440. "source": "https://github.com/nWidart/laravel-modules/tree/7.3.0"
  2441. },
  2442. "funding": [
  2443. {
  2444. "url": "https://github.com/nwidart",
  2445. "type": "github"
  2446. }
  2447. ],
  2448. "time": "2020-09-10T08:40:16+00:00"
  2449. },
  2450. {
  2451. "name": "opis/closure",
  2452. "version": "3.6.3",
  2453. "source": {
  2454. "type": "git",
  2455. "url": "https://github.com/opis/closure.git",
  2456. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  2457. },
  2458. "dist": {
  2459. "type": "zip",
  2460. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  2461. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  2462. "shasum": "",
  2463. "mirrors": [
  2464. {
  2465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2466. "preferred": true
  2467. }
  2468. ]
  2469. },
  2470. "require": {
  2471. "php": "^5.4 || ^7.0 || ^8.0"
  2472. },
  2473. "require-dev": {
  2474. "jeremeamia/superclosure": "^2.0",
  2475. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2476. },
  2477. "type": "library",
  2478. "extra": {
  2479. "branch-alias": {
  2480. "dev-master": "3.6.x-dev"
  2481. }
  2482. },
  2483. "autoload": {
  2484. "files": [
  2485. "functions.php"
  2486. ],
  2487. "psr-4": {
  2488. "Opis\\Closure\\": "src/"
  2489. }
  2490. },
  2491. "notification-url": "https://packagist.org/downloads/",
  2492. "license": [
  2493. "MIT"
  2494. ],
  2495. "authors": [
  2496. {
  2497. "name": "Marius Sarca",
  2498. "email": "marius.sarca@gmail.com"
  2499. },
  2500. {
  2501. "name": "Sorin Sarca",
  2502. "email": "sarca_sorin@hotmail.com"
  2503. }
  2504. ],
  2505. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2506. "homepage": "https://opis.io/closure",
  2507. "keywords": [
  2508. "anonymous functions",
  2509. "closure",
  2510. "function",
  2511. "serializable",
  2512. "serialization",
  2513. "serialize"
  2514. ],
  2515. "support": {
  2516. "issues": "https://github.com/opis/closure/issues",
  2517. "source": "https://github.com/opis/closure/tree/3.6.3"
  2518. },
  2519. "time": "2022-01-27T09:35:39+00:00"
  2520. },
  2521. {
  2522. "name": "overtrue/pinyin",
  2523. "version": "4.0.8",
  2524. "source": {
  2525. "type": "git",
  2526. "url": "https://github.com/overtrue/pinyin.git",
  2527. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  2528. },
  2529. "dist": {
  2530. "type": "zip",
  2531. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  2532. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  2533. "shasum": "",
  2534. "mirrors": [
  2535. {
  2536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2537. "preferred": true
  2538. }
  2539. ]
  2540. },
  2541. "require": {
  2542. "php": ">=7.1"
  2543. },
  2544. "require-dev": {
  2545. "brainmaestro/composer-git-hooks": "^2.7",
  2546. "friendsofphp/php-cs-fixer": "^2.16",
  2547. "phpunit/phpunit": "~8.0"
  2548. },
  2549. "type": "library",
  2550. "extra": {
  2551. "hooks": {
  2552. "pre-commit": [
  2553. "composer test",
  2554. "composer fix-style"
  2555. ],
  2556. "pre-push": [
  2557. "composer test",
  2558. "composer check-style"
  2559. ]
  2560. }
  2561. },
  2562. "autoload": {
  2563. "files": [
  2564. "src/const.php"
  2565. ],
  2566. "psr-4": {
  2567. "Overtrue\\Pinyin\\": "src/"
  2568. }
  2569. },
  2570. "notification-url": "https://packagist.org/downloads/",
  2571. "license": [
  2572. "MIT"
  2573. ],
  2574. "authors": [
  2575. {
  2576. "name": "overtrue",
  2577. "email": "anzhengchao@gmail.com",
  2578. "homepage": "http://github.com/overtrue"
  2579. }
  2580. ],
  2581. "description": "Chinese to pinyin translator.",
  2582. "homepage": "https://github.com/overtrue/pinyin",
  2583. "keywords": [
  2584. "Chinese",
  2585. "Pinyin",
  2586. "cn2pinyin"
  2587. ],
  2588. "support": {
  2589. "issues": "https://github.com/overtrue/pinyin/issues",
  2590. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  2591. },
  2592. "funding": [
  2593. {
  2594. "url": "https://www.patreon.com/overtrue",
  2595. "type": "patreon"
  2596. }
  2597. ],
  2598. "time": "2021-07-19T03:43:32+00:00"
  2599. },
  2600. {
  2601. "name": "paragonie/random_compat",
  2602. "version": "v9.99.100",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/paragonie/random_compat.git",
  2606. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2611. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2612. "shasum": "",
  2613. "mirrors": [
  2614. {
  2615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2616. "preferred": true
  2617. }
  2618. ]
  2619. },
  2620. "require": {
  2621. "php": ">= 7"
  2622. },
  2623. "require-dev": {
  2624. "phpunit/phpunit": "4.*|5.*",
  2625. "vimeo/psalm": "^1"
  2626. },
  2627. "suggest": {
  2628. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2629. },
  2630. "type": "library",
  2631. "notification-url": "https://packagist.org/downloads/",
  2632. "license": [
  2633. "MIT"
  2634. ],
  2635. "authors": [
  2636. {
  2637. "name": "Paragon Initiative Enterprises",
  2638. "email": "security@paragonie.com",
  2639. "homepage": "https://paragonie.com"
  2640. }
  2641. ],
  2642. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2643. "keywords": [
  2644. "csprng",
  2645. "polyfill",
  2646. "pseudorandom",
  2647. "random"
  2648. ],
  2649. "support": {
  2650. "email": "info@paragonie.com",
  2651. "issues": "https://github.com/paragonie/random_compat/issues",
  2652. "source": "https://github.com/paragonie/random_compat"
  2653. },
  2654. "time": "2020-10-15T08:29:30+00:00"
  2655. },
  2656. {
  2657. "name": "php-parallel-lint/php-console-color",
  2658. "version": "v0.3",
  2659. "source": {
  2660. "type": "git",
  2661. "url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
  2662. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e"
  2663. },
  2664. "dist": {
  2665. "type": "zip",
  2666. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/b6af326b2088f1ad3b264696c9fd590ec395b49e",
  2667. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e",
  2668. "shasum": "",
  2669. "mirrors": [
  2670. {
  2671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2672. "preferred": true
  2673. }
  2674. ]
  2675. },
  2676. "require": {
  2677. "php": ">=5.4.0"
  2678. },
  2679. "replace": {
  2680. "jakub-onderka/php-console-color": "*"
  2681. },
  2682. "require-dev": {
  2683. "php-parallel-lint/php-code-style": "1.0",
  2684. "php-parallel-lint/php-parallel-lint": "1.0",
  2685. "php-parallel-lint/php-var-dump-check": "0.*",
  2686. "phpunit/phpunit": "~4.3",
  2687. "squizlabs/php_codesniffer": "1.*"
  2688. },
  2689. "type": "library",
  2690. "autoload": {
  2691. "psr-4": {
  2692. "JakubOnderka\\PhpConsoleColor\\": "src/"
  2693. }
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "BSD-2-Clause"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Jakub Onderka",
  2702. "email": "jakub.onderka@gmail.com"
  2703. }
  2704. ],
  2705. "support": {
  2706. "issues": "https://github.com/php-parallel-lint/PHP-Console-Color/issues",
  2707. "source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/master"
  2708. },
  2709. "time": "2020-05-14T05:47:14+00:00"
  2710. },
  2711. {
  2712. "name": "php-parallel-lint/php-console-highlighter",
  2713. "version": "v0.5",
  2714. "source": {
  2715. "type": "git",
  2716. "url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
  2717. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8"
  2718. },
  2719. "dist": {
  2720. "type": "zip",
  2721. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/21bf002f077b177f056d8cb455c5ed573adfdbb8",
  2722. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8",
  2723. "shasum": "",
  2724. "mirrors": [
  2725. {
  2726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2727. "preferred": true
  2728. }
  2729. ]
  2730. },
  2731. "require": {
  2732. "ext-tokenizer": "*",
  2733. "php": ">=5.4.0",
  2734. "php-parallel-lint/php-console-color": "~0.2"
  2735. },
  2736. "replace": {
  2737. "jakub-onderka/php-console-highlighter": "*"
  2738. },
  2739. "require-dev": {
  2740. "php-parallel-lint/php-code-style": "~1.0",
  2741. "php-parallel-lint/php-parallel-lint": "~1.0",
  2742. "php-parallel-lint/php-var-dump-check": "~0.1",
  2743. "phpunit/phpunit": "~4.0",
  2744. "squizlabs/php_codesniffer": "~1.5"
  2745. },
  2746. "type": "library",
  2747. "autoload": {
  2748. "psr-4": {
  2749. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  2750. }
  2751. },
  2752. "notification-url": "https://packagist.org/downloads/",
  2753. "license": [
  2754. "MIT"
  2755. ],
  2756. "authors": [
  2757. {
  2758. "name": "Jakub Onderka",
  2759. "email": "acci@acci.cz",
  2760. "homepage": "http://www.acci.cz/"
  2761. }
  2762. ],
  2763. "description": "Highlight PHP code in terminal",
  2764. "support": {
  2765. "issues": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/issues",
  2766. "source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/master"
  2767. },
  2768. "time": "2020-05-13T07:37:49+00:00"
  2769. },
  2770. {
  2771. "name": "phpoption/phpoption",
  2772. "version": "1.8.1",
  2773. "source": {
  2774. "type": "git",
  2775. "url": "https://github.com/schmittjoh/php-option.git",
  2776. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  2777. },
  2778. "dist": {
  2779. "type": "zip",
  2780. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  2781. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  2782. "shasum": "",
  2783. "mirrors": [
  2784. {
  2785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2786. "preferred": true
  2787. }
  2788. ]
  2789. },
  2790. "require": {
  2791. "php": "^7.0 || ^8.0"
  2792. },
  2793. "require-dev": {
  2794. "bamarni/composer-bin-plugin": "^1.4.1",
  2795. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2796. },
  2797. "type": "library",
  2798. "extra": {
  2799. "branch-alias": {
  2800. "dev-master": "1.8-dev"
  2801. }
  2802. },
  2803. "autoload": {
  2804. "psr-4": {
  2805. "PhpOption\\": "src/PhpOption/"
  2806. }
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "Apache-2.0"
  2811. ],
  2812. "authors": [
  2813. {
  2814. "name": "Johannes M. Schmitt",
  2815. "email": "schmittjoh@gmail.com",
  2816. "homepage": "https://github.com/schmittjoh"
  2817. },
  2818. {
  2819. "name": "Graham Campbell",
  2820. "email": "hello@gjcampbell.co.uk",
  2821. "homepage": "https://github.com/GrahamCampbell"
  2822. }
  2823. ],
  2824. "description": "Option Type for PHP",
  2825. "keywords": [
  2826. "language",
  2827. "option",
  2828. "php",
  2829. "type"
  2830. ],
  2831. "support": {
  2832. "issues": "https://github.com/schmittjoh/php-option/issues",
  2833. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  2834. },
  2835. "funding": [
  2836. {
  2837. "url": "https://github.com/GrahamCampbell",
  2838. "type": "github"
  2839. },
  2840. {
  2841. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2842. "type": "tidelift"
  2843. }
  2844. ],
  2845. "time": "2021-12-04T23:24:31+00:00"
  2846. },
  2847. {
  2848. "name": "phpseclib/phpseclib",
  2849. "version": "2.0.36",
  2850. "source": {
  2851. "type": "git",
  2852. "url": "https://github.com/phpseclib/phpseclib.git",
  2853. "reference": "a97547126396548c224703a267a30af1592be146"
  2854. },
  2855. "dist": {
  2856. "type": "zip",
  2857. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/a97547126396548c224703a267a30af1592be146",
  2858. "reference": "a97547126396548c224703a267a30af1592be146",
  2859. "shasum": "",
  2860. "mirrors": [
  2861. {
  2862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2863. "preferred": true
  2864. }
  2865. ]
  2866. },
  2867. "require": {
  2868. "php": ">=5.3.3"
  2869. },
  2870. "require-dev": {
  2871. "phing/phing": "~2.7",
  2872. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  2873. "squizlabs/php_codesniffer": "~2.0"
  2874. },
  2875. "suggest": {
  2876. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  2877. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  2878. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  2879. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  2880. },
  2881. "type": "library",
  2882. "autoload": {
  2883. "files": [
  2884. "phpseclib/bootstrap.php"
  2885. ],
  2886. "psr-4": {
  2887. "phpseclib\\": "phpseclib/"
  2888. }
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "Jim Wigginton",
  2897. "email": "terrafrost@php.net",
  2898. "role": "Lead Developer"
  2899. },
  2900. {
  2901. "name": "Patrick Monnerat",
  2902. "email": "pm@datasphere.ch",
  2903. "role": "Developer"
  2904. },
  2905. {
  2906. "name": "Andreas Fischer",
  2907. "email": "bantu@phpbb.com",
  2908. "role": "Developer"
  2909. },
  2910. {
  2911. "name": "Hans-Jürgen Petrich",
  2912. "email": "petrich@tronic-media.com",
  2913. "role": "Developer"
  2914. },
  2915. {
  2916. "name": "Graham Campbell",
  2917. "email": "graham@alt-three.com",
  2918. "role": "Developer"
  2919. }
  2920. ],
  2921. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  2922. "homepage": "http://phpseclib.sourceforge.net",
  2923. "keywords": [
  2924. "BigInteger",
  2925. "aes",
  2926. "asn.1",
  2927. "asn1",
  2928. "blowfish",
  2929. "crypto",
  2930. "cryptography",
  2931. "encryption",
  2932. "rsa",
  2933. "security",
  2934. "sftp",
  2935. "signature",
  2936. "signing",
  2937. "ssh",
  2938. "twofish",
  2939. "x.509",
  2940. "x509"
  2941. ],
  2942. "support": {
  2943. "issues": "https://github.com/phpseclib/phpseclib/issues",
  2944. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.36"
  2945. },
  2946. "funding": [
  2947. {
  2948. "url": "https://github.com/terrafrost",
  2949. "type": "github"
  2950. },
  2951. {
  2952. "url": "https://www.patreon.com/phpseclib",
  2953. "type": "patreon"
  2954. },
  2955. {
  2956. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  2957. "type": "tidelift"
  2958. }
  2959. ],
  2960. "time": "2022-01-30T08:48:36+00:00"
  2961. },
  2962. {
  2963. "name": "predis/predis",
  2964. "version": "v1.1.10",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/predis/predis.git",
  2968. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  2973. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  2974. "shasum": "",
  2975. "mirrors": [
  2976. {
  2977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2978. "preferred": true
  2979. }
  2980. ]
  2981. },
  2982. "require": {
  2983. "php": ">=5.3.9"
  2984. },
  2985. "require-dev": {
  2986. "phpunit/phpunit": "~4.8"
  2987. },
  2988. "suggest": {
  2989. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2990. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2991. },
  2992. "type": "library",
  2993. "autoload": {
  2994. "psr-4": {
  2995. "Predis\\": "src/"
  2996. }
  2997. },
  2998. "notification-url": "https://packagist.org/downloads/",
  2999. "license": [
  3000. "MIT"
  3001. ],
  3002. "authors": [
  3003. {
  3004. "name": "Daniele Alessandri",
  3005. "email": "suppakilla@gmail.com",
  3006. "homepage": "http://clorophilla.net",
  3007. "role": "Creator & Maintainer"
  3008. },
  3009. {
  3010. "name": "Till Krüss",
  3011. "homepage": "https://till.im",
  3012. "role": "Maintainer"
  3013. }
  3014. ],
  3015. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3016. "homepage": "http://github.com/predis/predis",
  3017. "keywords": [
  3018. "nosql",
  3019. "predis",
  3020. "redis"
  3021. ],
  3022. "support": {
  3023. "issues": "https://github.com/predis/predis/issues",
  3024. "source": "https://github.com/predis/predis/tree/v1.1.10"
  3025. },
  3026. "funding": [
  3027. {
  3028. "url": "https://github.com/sponsors/tillkruss",
  3029. "type": "github"
  3030. }
  3031. ],
  3032. "time": "2022-01-05T17:46:08+00:00"
  3033. },
  3034. {
  3035. "name": "psr/container",
  3036. "version": "1.1.1",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/php-fig/container.git",
  3040. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3045. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3046. "shasum": "",
  3047. "mirrors": [
  3048. {
  3049. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3050. "preferred": true
  3051. }
  3052. ]
  3053. },
  3054. "require": {
  3055. "php": ">=7.2.0"
  3056. },
  3057. "type": "library",
  3058. "autoload": {
  3059. "psr-4": {
  3060. "Psr\\Container\\": "src/"
  3061. }
  3062. },
  3063. "notification-url": "https://packagist.org/downloads/",
  3064. "license": [
  3065. "MIT"
  3066. ],
  3067. "authors": [
  3068. {
  3069. "name": "PHP-FIG",
  3070. "homepage": "https://www.php-fig.org/"
  3071. }
  3072. ],
  3073. "description": "Common Container Interface (PHP FIG PSR-11)",
  3074. "homepage": "https://github.com/php-fig/container",
  3075. "keywords": [
  3076. "PSR-11",
  3077. "container",
  3078. "container-interface",
  3079. "container-interop",
  3080. "psr"
  3081. ],
  3082. "support": {
  3083. "issues": "https://github.com/php-fig/container/issues",
  3084. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3085. },
  3086. "time": "2021-03-05T17:36:06+00:00"
  3087. },
  3088. {
  3089. "name": "psr/http-factory",
  3090. "version": "1.0.1",
  3091. "source": {
  3092. "type": "git",
  3093. "url": "https://github.com/php-fig/http-factory.git",
  3094. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3095. },
  3096. "dist": {
  3097. "type": "zip",
  3098. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3099. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3100. "shasum": "",
  3101. "mirrors": [
  3102. {
  3103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3104. "preferred": true
  3105. }
  3106. ]
  3107. },
  3108. "require": {
  3109. "php": ">=7.0.0",
  3110. "psr/http-message": "^1.0"
  3111. },
  3112. "type": "library",
  3113. "extra": {
  3114. "branch-alias": {
  3115. "dev-master": "1.0.x-dev"
  3116. }
  3117. },
  3118. "autoload": {
  3119. "psr-4": {
  3120. "Psr\\Http\\Message\\": "src/"
  3121. }
  3122. },
  3123. "notification-url": "https://packagist.org/downloads/",
  3124. "license": [
  3125. "MIT"
  3126. ],
  3127. "authors": [
  3128. {
  3129. "name": "PHP-FIG",
  3130. "homepage": "http://www.php-fig.org/"
  3131. }
  3132. ],
  3133. "description": "Common interfaces for PSR-7 HTTP message factories",
  3134. "keywords": [
  3135. "factory",
  3136. "http",
  3137. "message",
  3138. "psr",
  3139. "psr-17",
  3140. "psr-7",
  3141. "request",
  3142. "response"
  3143. ],
  3144. "support": {
  3145. "source": "https://github.com/php-fig/http-factory/tree/master"
  3146. },
  3147. "time": "2019-04-30T12:38:16+00:00"
  3148. },
  3149. {
  3150. "name": "psr/http-message",
  3151. "version": "1.0.1",
  3152. "source": {
  3153. "type": "git",
  3154. "url": "https://github.com/php-fig/http-message.git",
  3155. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3156. },
  3157. "dist": {
  3158. "type": "zip",
  3159. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3160. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3161. "shasum": "",
  3162. "mirrors": [
  3163. {
  3164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3165. "preferred": true
  3166. }
  3167. ]
  3168. },
  3169. "require": {
  3170. "php": ">=5.3.0"
  3171. },
  3172. "type": "library",
  3173. "extra": {
  3174. "branch-alias": {
  3175. "dev-master": "1.0.x-dev"
  3176. }
  3177. },
  3178. "autoload": {
  3179. "psr-4": {
  3180. "Psr\\Http\\Message\\": "src/"
  3181. }
  3182. },
  3183. "notification-url": "https://packagist.org/downloads/",
  3184. "license": [
  3185. "MIT"
  3186. ],
  3187. "authors": [
  3188. {
  3189. "name": "PHP-FIG",
  3190. "homepage": "http://www.php-fig.org/"
  3191. }
  3192. ],
  3193. "description": "Common interface for HTTP messages",
  3194. "homepage": "https://github.com/php-fig/http-message",
  3195. "keywords": [
  3196. "http",
  3197. "http-message",
  3198. "psr",
  3199. "psr-7",
  3200. "request",
  3201. "response"
  3202. ],
  3203. "support": {
  3204. "source": "https://github.com/php-fig/http-message/tree/master"
  3205. },
  3206. "time": "2016-08-06T14:39:51+00:00"
  3207. },
  3208. {
  3209. "name": "psr/log",
  3210. "version": "1.1.4",
  3211. "source": {
  3212. "type": "git",
  3213. "url": "https://github.com/php-fig/log.git",
  3214. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3215. },
  3216. "dist": {
  3217. "type": "zip",
  3218. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3219. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3220. "shasum": "",
  3221. "mirrors": [
  3222. {
  3223. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3224. "preferred": true
  3225. }
  3226. ]
  3227. },
  3228. "require": {
  3229. "php": ">=5.3.0"
  3230. },
  3231. "type": "library",
  3232. "extra": {
  3233. "branch-alias": {
  3234. "dev-master": "1.1.x-dev"
  3235. }
  3236. },
  3237. "autoload": {
  3238. "psr-4": {
  3239. "Psr\\Log\\": "Psr/Log/"
  3240. }
  3241. },
  3242. "notification-url": "https://packagist.org/downloads/",
  3243. "license": [
  3244. "MIT"
  3245. ],
  3246. "authors": [
  3247. {
  3248. "name": "PHP-FIG",
  3249. "homepage": "https://www.php-fig.org/"
  3250. }
  3251. ],
  3252. "description": "Common interface for logging libraries",
  3253. "homepage": "https://github.com/php-fig/log",
  3254. "keywords": [
  3255. "log",
  3256. "psr",
  3257. "psr-3"
  3258. ],
  3259. "support": {
  3260. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3261. },
  3262. "time": "2021-05-03T11:20:27+00:00"
  3263. },
  3264. {
  3265. "name": "psr/simple-cache",
  3266. "version": "1.0.1",
  3267. "source": {
  3268. "type": "git",
  3269. "url": "https://github.com/php-fig/simple-cache.git",
  3270. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3271. },
  3272. "dist": {
  3273. "type": "zip",
  3274. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3275. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3276. "shasum": "",
  3277. "mirrors": [
  3278. {
  3279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3280. "preferred": true
  3281. }
  3282. ]
  3283. },
  3284. "require": {
  3285. "php": ">=5.3.0"
  3286. },
  3287. "type": "library",
  3288. "extra": {
  3289. "branch-alias": {
  3290. "dev-master": "1.0.x-dev"
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Psr\\SimpleCache\\": "src/"
  3296. }
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "authors": [
  3303. {
  3304. "name": "PHP-FIG",
  3305. "homepage": "http://www.php-fig.org/"
  3306. }
  3307. ],
  3308. "description": "Common interfaces for simple caching",
  3309. "keywords": [
  3310. "cache",
  3311. "caching",
  3312. "psr",
  3313. "psr-16",
  3314. "simple-cache"
  3315. ],
  3316. "support": {
  3317. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3318. },
  3319. "time": "2017-10-23T01:57:42+00:00"
  3320. },
  3321. {
  3322. "name": "psy/psysh",
  3323. "version": "v0.9.12",
  3324. "source": {
  3325. "type": "git",
  3326. "url": "https://github.com/bobthecow/psysh.git",
  3327. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  3328. },
  3329. "dist": {
  3330. "type": "zip",
  3331. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  3332. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  3333. "shasum": "",
  3334. "mirrors": [
  3335. {
  3336. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3337. "preferred": true
  3338. }
  3339. ]
  3340. },
  3341. "require": {
  3342. "dnoegel/php-xdg-base-dir": "0.1.*",
  3343. "ext-json": "*",
  3344. "ext-tokenizer": "*",
  3345. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3346. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  3347. "php": ">=5.4.0",
  3348. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  3349. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  3350. },
  3351. "require-dev": {
  3352. "bamarni/composer-bin-plugin": "^1.2",
  3353. "hoa/console": "~2.15|~3.16",
  3354. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  3355. },
  3356. "suggest": {
  3357. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3358. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3359. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3360. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3361. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3362. },
  3363. "bin": [
  3364. "bin/psysh"
  3365. ],
  3366. "type": "library",
  3367. "extra": {
  3368. "branch-alias": {
  3369. "dev-develop": "0.9.x-dev"
  3370. }
  3371. },
  3372. "autoload": {
  3373. "files": [
  3374. "src/functions.php"
  3375. ],
  3376. "psr-4": {
  3377. "Psy\\": "src/"
  3378. }
  3379. },
  3380. "notification-url": "https://packagist.org/downloads/",
  3381. "license": [
  3382. "MIT"
  3383. ],
  3384. "authors": [
  3385. {
  3386. "name": "Justin Hileman",
  3387. "email": "justin@justinhileman.info",
  3388. "homepage": "http://justinhileman.com"
  3389. }
  3390. ],
  3391. "description": "An interactive shell for modern PHP.",
  3392. "homepage": "http://psysh.org",
  3393. "keywords": [
  3394. "REPL",
  3395. "console",
  3396. "interactive",
  3397. "shell"
  3398. ],
  3399. "support": {
  3400. "issues": "https://github.com/bobthecow/psysh/issues",
  3401. "source": "https://github.com/bobthecow/psysh/tree/v0.9.12"
  3402. },
  3403. "time": "2019-12-06T14:19:43+00:00"
  3404. },
  3405. {
  3406. "name": "ralouphie/getallheaders",
  3407. "version": "3.0.3",
  3408. "source": {
  3409. "type": "git",
  3410. "url": "https://github.com/ralouphie/getallheaders.git",
  3411. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3412. },
  3413. "dist": {
  3414. "type": "zip",
  3415. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3416. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3417. "shasum": "",
  3418. "mirrors": [
  3419. {
  3420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3421. "preferred": true
  3422. }
  3423. ]
  3424. },
  3425. "require": {
  3426. "php": ">=5.6"
  3427. },
  3428. "require-dev": {
  3429. "php-coveralls/php-coveralls": "^2.1",
  3430. "phpunit/phpunit": "^5 || ^6.5"
  3431. },
  3432. "type": "library",
  3433. "autoload": {
  3434. "files": [
  3435. "src/getallheaders.php"
  3436. ]
  3437. },
  3438. "notification-url": "https://packagist.org/downloads/",
  3439. "license": [
  3440. "MIT"
  3441. ],
  3442. "authors": [
  3443. {
  3444. "name": "Ralph Khattar",
  3445. "email": "ralph.khattar@gmail.com"
  3446. }
  3447. ],
  3448. "description": "A polyfill for getallheaders.",
  3449. "support": {
  3450. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3451. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3452. },
  3453. "time": "2019-03-08T08:55:37+00:00"
  3454. },
  3455. {
  3456. "name": "ramsey/uuid",
  3457. "version": "3.9.6",
  3458. "source": {
  3459. "type": "git",
  3460. "url": "https://github.com/ramsey/uuid.git",
  3461. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3"
  3462. },
  3463. "dist": {
  3464. "type": "zip",
  3465. "url": "https://api.github.com/repos/ramsey/uuid/zipball/ffa80ab953edd85d5b6c004f96181a538aad35a3",
  3466. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3",
  3467. "shasum": "",
  3468. "mirrors": [
  3469. {
  3470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3471. "preferred": true
  3472. }
  3473. ]
  3474. },
  3475. "require": {
  3476. "ext-json": "*",
  3477. "paragonie/random_compat": "^1 | ^2 | ^9.99.99",
  3478. "php": "^5.4 | ^7.0 | ^8.0",
  3479. "symfony/polyfill-ctype": "^1.8"
  3480. },
  3481. "replace": {
  3482. "rhumsaa/uuid": "self.version"
  3483. },
  3484. "require-dev": {
  3485. "codeception/aspect-mock": "^1 | ^2",
  3486. "doctrine/annotations": "^1.2",
  3487. "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2",
  3488. "mockery/mockery": "^0.9.11 | ^1",
  3489. "moontoast/math": "^1.1",
  3490. "nikic/php-parser": "<=4.5.0",
  3491. "paragonie/random-lib": "^2",
  3492. "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
  3493. "php-parallel-lint/php-parallel-lint": "^1.3",
  3494. "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
  3495. "squizlabs/php_codesniffer": "^3.5",
  3496. "yoast/phpunit-polyfills": "^1.0"
  3497. },
  3498. "suggest": {
  3499. "ext-ctype": "Provides support for PHP Ctype functions",
  3500. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  3501. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  3502. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  3503. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  3504. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3505. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  3506. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3507. },
  3508. "type": "library",
  3509. "extra": {
  3510. "branch-alias": {
  3511. "dev-master": "3.x-dev"
  3512. }
  3513. },
  3514. "autoload": {
  3515. "files": [
  3516. "src/functions.php"
  3517. ],
  3518. "psr-4": {
  3519. "Ramsey\\Uuid\\": "src/"
  3520. }
  3521. },
  3522. "notification-url": "https://packagist.org/downloads/",
  3523. "license": [
  3524. "MIT"
  3525. ],
  3526. "authors": [
  3527. {
  3528. "name": "Ben Ramsey",
  3529. "email": "ben@benramsey.com",
  3530. "homepage": "https://benramsey.com"
  3531. },
  3532. {
  3533. "name": "Marijn Huizendveld",
  3534. "email": "marijn.huizendveld@gmail.com"
  3535. },
  3536. {
  3537. "name": "Thibaud Fabre",
  3538. "email": "thibaud@aztech.io"
  3539. }
  3540. ],
  3541. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  3542. "homepage": "https://github.com/ramsey/uuid",
  3543. "keywords": [
  3544. "guid",
  3545. "identifier",
  3546. "uuid"
  3547. ],
  3548. "support": {
  3549. "issues": "https://github.com/ramsey/uuid/issues",
  3550. "rss": "https://github.com/ramsey/uuid/releases.atom",
  3551. "source": "https://github.com/ramsey/uuid",
  3552. "wiki": "https://github.com/ramsey/uuid/wiki"
  3553. },
  3554. "funding": [
  3555. {
  3556. "url": "https://github.com/ramsey",
  3557. "type": "github"
  3558. },
  3559. {
  3560. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3561. "type": "tidelift"
  3562. }
  3563. ],
  3564. "time": "2021-09-25T23:07:42+00:00"
  3565. },
  3566. {
  3567. "name": "swiftmailer/swiftmailer",
  3568. "version": "v6.3.0",
  3569. "source": {
  3570. "type": "git",
  3571. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3572. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  3573. },
  3574. "dist": {
  3575. "type": "zip",
  3576. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  3577. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  3578. "shasum": "",
  3579. "mirrors": [
  3580. {
  3581. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3582. "preferred": true
  3583. }
  3584. ]
  3585. },
  3586. "require": {
  3587. "egulias/email-validator": "^2.0|^3.1",
  3588. "php": ">=7.0.0",
  3589. "symfony/polyfill-iconv": "^1.0",
  3590. "symfony/polyfill-intl-idn": "^1.10",
  3591. "symfony/polyfill-mbstring": "^1.0"
  3592. },
  3593. "require-dev": {
  3594. "mockery/mockery": "^1.0",
  3595. "symfony/phpunit-bridge": "^4.4|^5.4"
  3596. },
  3597. "suggest": {
  3598. "ext-intl": "Needed to support internationalized email addresses"
  3599. },
  3600. "type": "library",
  3601. "extra": {
  3602. "branch-alias": {
  3603. "dev-master": "6.2-dev"
  3604. }
  3605. },
  3606. "autoload": {
  3607. "files": [
  3608. "lib/swift_required.php"
  3609. ]
  3610. },
  3611. "notification-url": "https://packagist.org/downloads/",
  3612. "license": [
  3613. "MIT"
  3614. ],
  3615. "authors": [
  3616. {
  3617. "name": "Chris Corbyn"
  3618. },
  3619. {
  3620. "name": "Fabien Potencier",
  3621. "email": "fabien@symfony.com"
  3622. }
  3623. ],
  3624. "description": "Swiftmailer, free feature-rich PHP mailer",
  3625. "homepage": "https://swiftmailer.symfony.com",
  3626. "keywords": [
  3627. "email",
  3628. "mail",
  3629. "mailer"
  3630. ],
  3631. "support": {
  3632. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  3633. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  3634. },
  3635. "funding": [
  3636. {
  3637. "url": "https://github.com/fabpot",
  3638. "type": "github"
  3639. },
  3640. {
  3641. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  3642. "type": "tidelift"
  3643. }
  3644. ],
  3645. "abandoned": "symfony/mailer",
  3646. "time": "2021-10-18T15:26:12+00:00"
  3647. },
  3648. {
  3649. "name": "symfony/console",
  3650. "version": "v4.4.38",
  3651. "source": {
  3652. "type": "git",
  3653. "url": "https://github.com/symfony/console.git",
  3654. "reference": "5a50085bf5460f0c0d60a50b58388c1249826b8a"
  3655. },
  3656. "dist": {
  3657. "type": "zip",
  3658. "url": "https://api.github.com/repos/symfony/console/zipball/5a50085bf5460f0c0d60a50b58388c1249826b8a",
  3659. "reference": "5a50085bf5460f0c0d60a50b58388c1249826b8a",
  3660. "shasum": "",
  3661. "mirrors": [
  3662. {
  3663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3664. "preferred": true
  3665. }
  3666. ]
  3667. },
  3668. "require": {
  3669. "php": ">=7.1.3",
  3670. "symfony/polyfill-mbstring": "~1.0",
  3671. "symfony/polyfill-php73": "^1.8",
  3672. "symfony/polyfill-php80": "^1.16",
  3673. "symfony/service-contracts": "^1.1|^2"
  3674. },
  3675. "conflict": {
  3676. "psr/log": ">=3",
  3677. "symfony/dependency-injection": "<3.4",
  3678. "symfony/event-dispatcher": "<4.3|>=5",
  3679. "symfony/lock": "<4.4",
  3680. "symfony/process": "<3.3"
  3681. },
  3682. "provide": {
  3683. "psr/log-implementation": "1.0|2.0"
  3684. },
  3685. "require-dev": {
  3686. "psr/log": "^1|^2",
  3687. "symfony/config": "^3.4|^4.0|^5.0",
  3688. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3689. "symfony/event-dispatcher": "^4.3",
  3690. "symfony/lock": "^4.4|^5.0",
  3691. "symfony/process": "^3.4|^4.0|^5.0",
  3692. "symfony/var-dumper": "^4.3|^5.0"
  3693. },
  3694. "suggest": {
  3695. "psr/log": "For using the console logger",
  3696. "symfony/event-dispatcher": "",
  3697. "symfony/lock": "",
  3698. "symfony/process": ""
  3699. },
  3700. "type": "library",
  3701. "autoload": {
  3702. "psr-4": {
  3703. "Symfony\\Component\\Console\\": ""
  3704. },
  3705. "exclude-from-classmap": [
  3706. "/Tests/"
  3707. ]
  3708. },
  3709. "notification-url": "https://packagist.org/downloads/",
  3710. "license": [
  3711. "MIT"
  3712. ],
  3713. "authors": [
  3714. {
  3715. "name": "Fabien Potencier",
  3716. "email": "fabien@symfony.com"
  3717. },
  3718. {
  3719. "name": "Symfony Community",
  3720. "homepage": "https://symfony.com/contributors"
  3721. }
  3722. ],
  3723. "description": "Eases the creation of beautiful and testable command line interfaces",
  3724. "homepage": "https://symfony.com",
  3725. "support": {
  3726. "source": "https://github.com/symfony/console/tree/v4.4.38"
  3727. },
  3728. "funding": [
  3729. {
  3730. "url": "https://symfony.com/sponsor",
  3731. "type": "custom"
  3732. },
  3733. {
  3734. "url": "https://github.com/fabpot",
  3735. "type": "github"
  3736. },
  3737. {
  3738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3739. "type": "tidelift"
  3740. }
  3741. ],
  3742. "time": "2022-01-30T21:23:57+00:00"
  3743. },
  3744. {
  3745. "name": "symfony/css-selector",
  3746. "version": "v5.4.3",
  3747. "source": {
  3748. "type": "git",
  3749. "url": "https://github.com/symfony/css-selector.git",
  3750. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  3751. },
  3752. "dist": {
  3753. "type": "zip",
  3754. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  3755. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  3756. "shasum": "",
  3757. "mirrors": [
  3758. {
  3759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3760. "preferred": true
  3761. }
  3762. ]
  3763. },
  3764. "require": {
  3765. "php": ">=7.2.5",
  3766. "symfony/polyfill-php80": "^1.16"
  3767. },
  3768. "type": "library",
  3769. "autoload": {
  3770. "psr-4": {
  3771. "Symfony\\Component\\CssSelector\\": ""
  3772. },
  3773. "exclude-from-classmap": [
  3774. "/Tests/"
  3775. ]
  3776. },
  3777. "notification-url": "https://packagist.org/downloads/",
  3778. "license": [
  3779. "MIT"
  3780. ],
  3781. "authors": [
  3782. {
  3783. "name": "Fabien Potencier",
  3784. "email": "fabien@symfony.com"
  3785. },
  3786. {
  3787. "name": "Jean-François Simon",
  3788. "email": "jeanfrancois.simon@sensiolabs.com"
  3789. },
  3790. {
  3791. "name": "Symfony Community",
  3792. "homepage": "https://symfony.com/contributors"
  3793. }
  3794. ],
  3795. "description": "Converts CSS selectors to XPath expressions",
  3796. "homepage": "https://symfony.com",
  3797. "support": {
  3798. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  3799. },
  3800. "funding": [
  3801. {
  3802. "url": "https://symfony.com/sponsor",
  3803. "type": "custom"
  3804. },
  3805. {
  3806. "url": "https://github.com/fabpot",
  3807. "type": "github"
  3808. },
  3809. {
  3810. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3811. "type": "tidelift"
  3812. }
  3813. ],
  3814. "time": "2022-01-02T09:53:40+00:00"
  3815. },
  3816. {
  3817. "name": "symfony/debug",
  3818. "version": "v4.4.37",
  3819. "source": {
  3820. "type": "git",
  3821. "url": "https://github.com/symfony/debug.git",
  3822. "reference": "5de6c6e7f52b364840e53851c126be4d71e60470"
  3823. },
  3824. "dist": {
  3825. "type": "zip",
  3826. "url": "https://api.github.com/repos/symfony/debug/zipball/5de6c6e7f52b364840e53851c126be4d71e60470",
  3827. "reference": "5de6c6e7f52b364840e53851c126be4d71e60470",
  3828. "shasum": "",
  3829. "mirrors": [
  3830. {
  3831. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3832. "preferred": true
  3833. }
  3834. ]
  3835. },
  3836. "require": {
  3837. "php": ">=7.1.3",
  3838. "psr/log": "^1|^2|^3"
  3839. },
  3840. "conflict": {
  3841. "symfony/http-kernel": "<3.4"
  3842. },
  3843. "require-dev": {
  3844. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  3845. },
  3846. "type": "library",
  3847. "autoload": {
  3848. "psr-4": {
  3849. "Symfony\\Component\\Debug\\": ""
  3850. },
  3851. "exclude-from-classmap": [
  3852. "/Tests/"
  3853. ]
  3854. },
  3855. "notification-url": "https://packagist.org/downloads/",
  3856. "license": [
  3857. "MIT"
  3858. ],
  3859. "authors": [
  3860. {
  3861. "name": "Fabien Potencier",
  3862. "email": "fabien@symfony.com"
  3863. },
  3864. {
  3865. "name": "Symfony Community",
  3866. "homepage": "https://symfony.com/contributors"
  3867. }
  3868. ],
  3869. "description": "Provides tools to ease debugging PHP code",
  3870. "homepage": "https://symfony.com",
  3871. "support": {
  3872. "source": "https://github.com/symfony/debug/tree/v4.4.37"
  3873. },
  3874. "funding": [
  3875. {
  3876. "url": "https://symfony.com/sponsor",
  3877. "type": "custom"
  3878. },
  3879. {
  3880. "url": "https://github.com/fabpot",
  3881. "type": "github"
  3882. },
  3883. {
  3884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3885. "type": "tidelift"
  3886. }
  3887. ],
  3888. "time": "2022-01-02T09:41:36+00:00"
  3889. },
  3890. {
  3891. "name": "symfony/deprecation-contracts",
  3892. "version": "v2.5.0",
  3893. "source": {
  3894. "type": "git",
  3895. "url": "https://github.com/symfony/deprecation-contracts.git",
  3896. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  3897. },
  3898. "dist": {
  3899. "type": "zip",
  3900. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  3901. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  3902. "shasum": "",
  3903. "mirrors": [
  3904. {
  3905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3906. "preferred": true
  3907. }
  3908. ]
  3909. },
  3910. "require": {
  3911. "php": ">=7.1"
  3912. },
  3913. "type": "library",
  3914. "extra": {
  3915. "branch-alias": {
  3916. "dev-main": "2.5-dev"
  3917. },
  3918. "thanks": {
  3919. "name": "symfony/contracts",
  3920. "url": "https://github.com/symfony/contracts"
  3921. }
  3922. },
  3923. "autoload": {
  3924. "files": [
  3925. "function.php"
  3926. ]
  3927. },
  3928. "notification-url": "https://packagist.org/downloads/",
  3929. "license": [
  3930. "MIT"
  3931. ],
  3932. "authors": [
  3933. {
  3934. "name": "Nicolas Grekas",
  3935. "email": "p@tchwork.com"
  3936. },
  3937. {
  3938. "name": "Symfony Community",
  3939. "homepage": "https://symfony.com/contributors"
  3940. }
  3941. ],
  3942. "description": "A generic function and convention to trigger deprecation notices",
  3943. "homepage": "https://symfony.com",
  3944. "support": {
  3945. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  3946. },
  3947. "funding": [
  3948. {
  3949. "url": "https://symfony.com/sponsor",
  3950. "type": "custom"
  3951. },
  3952. {
  3953. "url": "https://github.com/fabpot",
  3954. "type": "github"
  3955. },
  3956. {
  3957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3958. "type": "tidelift"
  3959. }
  3960. ],
  3961. "time": "2021-07-12T14:48:14+00:00"
  3962. },
  3963. {
  3964. "name": "symfony/error-handler",
  3965. "version": "v4.4.37",
  3966. "source": {
  3967. "type": "git",
  3968. "url": "https://github.com/symfony/error-handler.git",
  3969. "reference": "8d80ad881e1ce17979547873d093e3c987a6a629"
  3970. },
  3971. "dist": {
  3972. "type": "zip",
  3973. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8d80ad881e1ce17979547873d093e3c987a6a629",
  3974. "reference": "8d80ad881e1ce17979547873d093e3c987a6a629",
  3975. "shasum": "",
  3976. "mirrors": [
  3977. {
  3978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3979. "preferred": true
  3980. }
  3981. ]
  3982. },
  3983. "require": {
  3984. "php": ">=7.1.3",
  3985. "psr/log": "^1|^2|^3",
  3986. "symfony/debug": "^4.4.5",
  3987. "symfony/var-dumper": "^4.4|^5.0"
  3988. },
  3989. "require-dev": {
  3990. "symfony/http-kernel": "^4.4|^5.0",
  3991. "symfony/serializer": "^4.4|^5.0"
  3992. },
  3993. "type": "library",
  3994. "autoload": {
  3995. "psr-4": {
  3996. "Symfony\\Component\\ErrorHandler\\": ""
  3997. },
  3998. "exclude-from-classmap": [
  3999. "/Tests/"
  4000. ]
  4001. },
  4002. "notification-url": "https://packagist.org/downloads/",
  4003. "license": [
  4004. "MIT"
  4005. ],
  4006. "authors": [
  4007. {
  4008. "name": "Fabien Potencier",
  4009. "email": "fabien@symfony.com"
  4010. },
  4011. {
  4012. "name": "Symfony Community",
  4013. "homepage": "https://symfony.com/contributors"
  4014. }
  4015. ],
  4016. "description": "Provides tools to manage errors and ease debugging PHP code",
  4017. "homepage": "https://symfony.com",
  4018. "support": {
  4019. "source": "https://github.com/symfony/error-handler/tree/v4.4.37"
  4020. },
  4021. "funding": [
  4022. {
  4023. "url": "https://symfony.com/sponsor",
  4024. "type": "custom"
  4025. },
  4026. {
  4027. "url": "https://github.com/fabpot",
  4028. "type": "github"
  4029. },
  4030. {
  4031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4032. "type": "tidelift"
  4033. }
  4034. ],
  4035. "time": "2022-01-02T09:41:36+00:00"
  4036. },
  4037. {
  4038. "name": "symfony/event-dispatcher",
  4039. "version": "v4.4.37",
  4040. "source": {
  4041. "type": "git",
  4042. "url": "https://github.com/symfony/event-dispatcher.git",
  4043. "reference": "3ccfcfb96ecce1217d7b0875a0736976bc6e63dc"
  4044. },
  4045. "dist": {
  4046. "type": "zip",
  4047. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3ccfcfb96ecce1217d7b0875a0736976bc6e63dc",
  4048. "reference": "3ccfcfb96ecce1217d7b0875a0736976bc6e63dc",
  4049. "shasum": "",
  4050. "mirrors": [
  4051. {
  4052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4053. "preferred": true
  4054. }
  4055. ]
  4056. },
  4057. "require": {
  4058. "php": ">=7.1.3",
  4059. "symfony/event-dispatcher-contracts": "^1.1",
  4060. "symfony/polyfill-php80": "^1.16"
  4061. },
  4062. "conflict": {
  4063. "symfony/dependency-injection": "<3.4"
  4064. },
  4065. "provide": {
  4066. "psr/event-dispatcher-implementation": "1.0",
  4067. "symfony/event-dispatcher-implementation": "1.1"
  4068. },
  4069. "require-dev": {
  4070. "psr/log": "^1|^2|^3",
  4071. "symfony/config": "^3.4|^4.0|^5.0",
  4072. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4073. "symfony/error-handler": "~3.4|~4.4",
  4074. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4075. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4076. "symfony/service-contracts": "^1.1|^2",
  4077. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  4078. },
  4079. "suggest": {
  4080. "symfony/dependency-injection": "",
  4081. "symfony/http-kernel": ""
  4082. },
  4083. "type": "library",
  4084. "autoload": {
  4085. "psr-4": {
  4086. "Symfony\\Component\\EventDispatcher\\": ""
  4087. },
  4088. "exclude-from-classmap": [
  4089. "/Tests/"
  4090. ]
  4091. },
  4092. "notification-url": "https://packagist.org/downloads/",
  4093. "license": [
  4094. "MIT"
  4095. ],
  4096. "authors": [
  4097. {
  4098. "name": "Fabien Potencier",
  4099. "email": "fabien@symfony.com"
  4100. },
  4101. {
  4102. "name": "Symfony Community",
  4103. "homepage": "https://symfony.com/contributors"
  4104. }
  4105. ],
  4106. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4107. "homepage": "https://symfony.com",
  4108. "support": {
  4109. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.37"
  4110. },
  4111. "funding": [
  4112. {
  4113. "url": "https://symfony.com/sponsor",
  4114. "type": "custom"
  4115. },
  4116. {
  4117. "url": "https://github.com/fabpot",
  4118. "type": "github"
  4119. },
  4120. {
  4121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4122. "type": "tidelift"
  4123. }
  4124. ],
  4125. "time": "2022-01-02T09:41:36+00:00"
  4126. },
  4127. {
  4128. "name": "symfony/event-dispatcher-contracts",
  4129. "version": "v1.1.11",
  4130. "source": {
  4131. "type": "git",
  4132. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4133. "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c"
  4134. },
  4135. "dist": {
  4136. "type": "zip",
  4137. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/01e9a4efac0ee33a05dfdf93b346f62e7d0e998c",
  4138. "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c",
  4139. "shasum": "",
  4140. "mirrors": [
  4141. {
  4142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4143. "preferred": true
  4144. }
  4145. ]
  4146. },
  4147. "require": {
  4148. "php": ">=7.1.3"
  4149. },
  4150. "suggest": {
  4151. "psr/event-dispatcher": "",
  4152. "symfony/event-dispatcher-implementation": ""
  4153. },
  4154. "type": "library",
  4155. "extra": {
  4156. "branch-alias": {
  4157. "dev-main": "1.1-dev"
  4158. },
  4159. "thanks": {
  4160. "name": "symfony/contracts",
  4161. "url": "https://github.com/symfony/contracts"
  4162. }
  4163. },
  4164. "autoload": {
  4165. "psr-4": {
  4166. "Symfony\\Contracts\\EventDispatcher\\": ""
  4167. }
  4168. },
  4169. "notification-url": "https://packagist.org/downloads/",
  4170. "license": [
  4171. "MIT"
  4172. ],
  4173. "authors": [
  4174. {
  4175. "name": "Nicolas Grekas",
  4176. "email": "p@tchwork.com"
  4177. },
  4178. {
  4179. "name": "Symfony Community",
  4180. "homepage": "https://symfony.com/contributors"
  4181. }
  4182. ],
  4183. "description": "Generic abstractions related to dispatching event",
  4184. "homepage": "https://symfony.com",
  4185. "keywords": [
  4186. "abstractions",
  4187. "contracts",
  4188. "decoupling",
  4189. "interfaces",
  4190. "interoperability",
  4191. "standards"
  4192. ],
  4193. "support": {
  4194. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.11"
  4195. },
  4196. "funding": [
  4197. {
  4198. "url": "https://symfony.com/sponsor",
  4199. "type": "custom"
  4200. },
  4201. {
  4202. "url": "https://github.com/fabpot",
  4203. "type": "github"
  4204. },
  4205. {
  4206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4207. "type": "tidelift"
  4208. }
  4209. ],
  4210. "time": "2021-03-23T15:25:38+00:00"
  4211. },
  4212. {
  4213. "name": "symfony/finder",
  4214. "version": "v4.4.37",
  4215. "source": {
  4216. "type": "git",
  4217. "url": "https://github.com/symfony/finder.git",
  4218. "reference": "b17d76d7ed179f017aad646e858c90a2771af15d"
  4219. },
  4220. "dist": {
  4221. "type": "zip",
  4222. "url": "https://api.github.com/repos/symfony/finder/zipball/b17d76d7ed179f017aad646e858c90a2771af15d",
  4223. "reference": "b17d76d7ed179f017aad646e858c90a2771af15d",
  4224. "shasum": "",
  4225. "mirrors": [
  4226. {
  4227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4228. "preferred": true
  4229. }
  4230. ]
  4231. },
  4232. "require": {
  4233. "php": ">=7.1.3",
  4234. "symfony/polyfill-php80": "^1.16"
  4235. },
  4236. "type": "library",
  4237. "autoload": {
  4238. "psr-4": {
  4239. "Symfony\\Component\\Finder\\": ""
  4240. },
  4241. "exclude-from-classmap": [
  4242. "/Tests/"
  4243. ]
  4244. },
  4245. "notification-url": "https://packagist.org/downloads/",
  4246. "license": [
  4247. "MIT"
  4248. ],
  4249. "authors": [
  4250. {
  4251. "name": "Fabien Potencier",
  4252. "email": "fabien@symfony.com"
  4253. },
  4254. {
  4255. "name": "Symfony Community",
  4256. "homepage": "https://symfony.com/contributors"
  4257. }
  4258. ],
  4259. "description": "Finds files and directories via an intuitive fluent interface",
  4260. "homepage": "https://symfony.com",
  4261. "support": {
  4262. "source": "https://github.com/symfony/finder/tree/v4.4.37"
  4263. },
  4264. "funding": [
  4265. {
  4266. "url": "https://symfony.com/sponsor",
  4267. "type": "custom"
  4268. },
  4269. {
  4270. "url": "https://github.com/fabpot",
  4271. "type": "github"
  4272. },
  4273. {
  4274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4275. "type": "tidelift"
  4276. }
  4277. ],
  4278. "time": "2022-01-02T09:41:36+00:00"
  4279. },
  4280. {
  4281. "name": "symfony/http-client-contracts",
  4282. "version": "v2.5.0",
  4283. "source": {
  4284. "type": "git",
  4285. "url": "https://github.com/symfony/http-client-contracts.git",
  4286. "reference": "ec82e57b5b714dbb69300d348bd840b345e24166"
  4287. },
  4288. "dist": {
  4289. "type": "zip",
  4290. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ec82e57b5b714dbb69300d348bd840b345e24166",
  4291. "reference": "ec82e57b5b714dbb69300d348bd840b345e24166",
  4292. "shasum": "",
  4293. "mirrors": [
  4294. {
  4295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4296. "preferred": true
  4297. }
  4298. ]
  4299. },
  4300. "require": {
  4301. "php": ">=7.2.5"
  4302. },
  4303. "suggest": {
  4304. "symfony/http-client-implementation": ""
  4305. },
  4306. "type": "library",
  4307. "extra": {
  4308. "branch-alias": {
  4309. "dev-main": "2.5-dev"
  4310. },
  4311. "thanks": {
  4312. "name": "symfony/contracts",
  4313. "url": "https://github.com/symfony/contracts"
  4314. }
  4315. },
  4316. "autoload": {
  4317. "psr-4": {
  4318. "Symfony\\Contracts\\HttpClient\\": ""
  4319. }
  4320. },
  4321. "notification-url": "https://packagist.org/downloads/",
  4322. "license": [
  4323. "MIT"
  4324. ],
  4325. "authors": [
  4326. {
  4327. "name": "Nicolas Grekas",
  4328. "email": "p@tchwork.com"
  4329. },
  4330. {
  4331. "name": "Symfony Community",
  4332. "homepage": "https://symfony.com/contributors"
  4333. }
  4334. ],
  4335. "description": "Generic abstractions related to HTTP clients",
  4336. "homepage": "https://symfony.com",
  4337. "keywords": [
  4338. "abstractions",
  4339. "contracts",
  4340. "decoupling",
  4341. "interfaces",
  4342. "interoperability",
  4343. "standards"
  4344. ],
  4345. "support": {
  4346. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.0"
  4347. },
  4348. "funding": [
  4349. {
  4350. "url": "https://symfony.com/sponsor",
  4351. "type": "custom"
  4352. },
  4353. {
  4354. "url": "https://github.com/fabpot",
  4355. "type": "github"
  4356. },
  4357. {
  4358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4359. "type": "tidelift"
  4360. }
  4361. ],
  4362. "time": "2021-11-03T09:24:47+00:00"
  4363. },
  4364. {
  4365. "name": "symfony/http-foundation",
  4366. "version": "v4.4.39",
  4367. "source": {
  4368. "type": "git",
  4369. "url": "https://github.com/symfony/http-foundation.git",
  4370. "reference": "60e8e42a4579551e5ec887d04380e2ab9e4cc314"
  4371. },
  4372. "dist": {
  4373. "type": "zip",
  4374. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/60e8e42a4579551e5ec887d04380e2ab9e4cc314",
  4375. "reference": "60e8e42a4579551e5ec887d04380e2ab9e4cc314",
  4376. "shasum": "",
  4377. "mirrors": [
  4378. {
  4379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4380. "preferred": true
  4381. }
  4382. ]
  4383. },
  4384. "require": {
  4385. "php": ">=7.1.3",
  4386. "symfony/mime": "^4.3|^5.0",
  4387. "symfony/polyfill-mbstring": "~1.1",
  4388. "symfony/polyfill-php80": "^1.16"
  4389. },
  4390. "require-dev": {
  4391. "predis/predis": "~1.0",
  4392. "symfony/expression-language": "^3.4|^4.0|^5.0"
  4393. },
  4394. "type": "library",
  4395. "autoload": {
  4396. "psr-4": {
  4397. "Symfony\\Component\\HttpFoundation\\": ""
  4398. },
  4399. "exclude-from-classmap": [
  4400. "/Tests/"
  4401. ]
  4402. },
  4403. "notification-url": "https://packagist.org/downloads/",
  4404. "license": [
  4405. "MIT"
  4406. ],
  4407. "authors": [
  4408. {
  4409. "name": "Fabien Potencier",
  4410. "email": "fabien@symfony.com"
  4411. },
  4412. {
  4413. "name": "Symfony Community",
  4414. "homepage": "https://symfony.com/contributors"
  4415. }
  4416. ],
  4417. "description": "Defines an object-oriented layer for the HTTP specification",
  4418. "homepage": "https://symfony.com",
  4419. "support": {
  4420. "source": "https://github.com/symfony/http-foundation/tree/v4.4.39"
  4421. },
  4422. "funding": [
  4423. {
  4424. "url": "https://symfony.com/sponsor",
  4425. "type": "custom"
  4426. },
  4427. {
  4428. "url": "https://github.com/fabpot",
  4429. "type": "github"
  4430. },
  4431. {
  4432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4433. "type": "tidelift"
  4434. }
  4435. ],
  4436. "time": "2022-03-04T07:06:13+00:00"
  4437. },
  4438. {
  4439. "name": "symfony/http-kernel",
  4440. "version": "v4.4.39",
  4441. "source": {
  4442. "type": "git",
  4443. "url": "https://github.com/symfony/http-kernel.git",
  4444. "reference": "19d1cacefe81cb448227cc4d5909fb36e2e23081"
  4445. },
  4446. "dist": {
  4447. "type": "zip",
  4448. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/19d1cacefe81cb448227cc4d5909fb36e2e23081",
  4449. "reference": "19d1cacefe81cb448227cc4d5909fb36e2e23081",
  4450. "shasum": "",
  4451. "mirrors": [
  4452. {
  4453. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4454. "preferred": true
  4455. }
  4456. ]
  4457. },
  4458. "require": {
  4459. "php": ">=7.1.3",
  4460. "psr/log": "^1|^2",
  4461. "symfony/error-handler": "^4.4",
  4462. "symfony/event-dispatcher": "^4.4",
  4463. "symfony/http-client-contracts": "^1.1|^2",
  4464. "symfony/http-foundation": "^4.4.30|^5.3.7",
  4465. "symfony/polyfill-ctype": "^1.8",
  4466. "symfony/polyfill-php73": "^1.9",
  4467. "symfony/polyfill-php80": "^1.16"
  4468. },
  4469. "conflict": {
  4470. "symfony/browser-kit": "<4.3",
  4471. "symfony/config": "<3.4",
  4472. "symfony/console": ">=5",
  4473. "symfony/dependency-injection": "<4.3",
  4474. "symfony/translation": "<4.2",
  4475. "twig/twig": "<1.43|<2.13,>=2"
  4476. },
  4477. "provide": {
  4478. "psr/log-implementation": "1.0|2.0"
  4479. },
  4480. "require-dev": {
  4481. "psr/cache": "^1.0|^2.0|^3.0",
  4482. "symfony/browser-kit": "^4.3|^5.0",
  4483. "symfony/config": "^3.4|^4.0|^5.0",
  4484. "symfony/console": "^3.4|^4.0",
  4485. "symfony/css-selector": "^3.4|^4.0|^5.0",
  4486. "symfony/dependency-injection": "^4.3|^5.0",
  4487. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  4488. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4489. "symfony/finder": "^3.4|^4.0|^5.0",
  4490. "symfony/process": "^3.4|^4.0|^5.0",
  4491. "symfony/routing": "^3.4|^4.0|^5.0",
  4492. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  4493. "symfony/templating": "^3.4|^4.0|^5.0",
  4494. "symfony/translation": "^4.2|^5.0",
  4495. "symfony/translation-contracts": "^1.1|^2",
  4496. "twig/twig": "^1.43|^2.13|^3.0.4"
  4497. },
  4498. "suggest": {
  4499. "symfony/browser-kit": "",
  4500. "symfony/config": "",
  4501. "symfony/console": "",
  4502. "symfony/dependency-injection": ""
  4503. },
  4504. "type": "library",
  4505. "autoload": {
  4506. "psr-4": {
  4507. "Symfony\\Component\\HttpKernel\\": ""
  4508. },
  4509. "exclude-from-classmap": [
  4510. "/Tests/"
  4511. ]
  4512. },
  4513. "notification-url": "https://packagist.org/downloads/",
  4514. "license": [
  4515. "MIT"
  4516. ],
  4517. "authors": [
  4518. {
  4519. "name": "Fabien Potencier",
  4520. "email": "fabien@symfony.com"
  4521. },
  4522. {
  4523. "name": "Symfony Community",
  4524. "homepage": "https://symfony.com/contributors"
  4525. }
  4526. ],
  4527. "description": "Provides a structured process for converting a Request into a Response",
  4528. "homepage": "https://symfony.com",
  4529. "support": {
  4530. "source": "https://github.com/symfony/http-kernel/tree/v4.4.39"
  4531. },
  4532. "funding": [
  4533. {
  4534. "url": "https://symfony.com/sponsor",
  4535. "type": "custom"
  4536. },
  4537. {
  4538. "url": "https://github.com/fabpot",
  4539. "type": "github"
  4540. },
  4541. {
  4542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4543. "type": "tidelift"
  4544. }
  4545. ],
  4546. "time": "2022-03-05T21:04:55+00:00"
  4547. },
  4548. {
  4549. "name": "symfony/mime",
  4550. "version": "v5.4.3",
  4551. "source": {
  4552. "type": "git",
  4553. "url": "https://github.com/symfony/mime.git",
  4554. "reference": "e1503cfb5c9a225350f549d3bb99296f4abfb80f"
  4555. },
  4556. "dist": {
  4557. "type": "zip",
  4558. "url": "https://api.github.com/repos/symfony/mime/zipball/e1503cfb5c9a225350f549d3bb99296f4abfb80f",
  4559. "reference": "e1503cfb5c9a225350f549d3bb99296f4abfb80f",
  4560. "shasum": "",
  4561. "mirrors": [
  4562. {
  4563. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4564. "preferred": true
  4565. }
  4566. ]
  4567. },
  4568. "require": {
  4569. "php": ">=7.2.5",
  4570. "symfony/deprecation-contracts": "^2.1|^3",
  4571. "symfony/polyfill-intl-idn": "^1.10",
  4572. "symfony/polyfill-mbstring": "^1.0",
  4573. "symfony/polyfill-php80": "^1.16"
  4574. },
  4575. "conflict": {
  4576. "egulias/email-validator": "~3.0.0",
  4577. "phpdocumentor/reflection-docblock": "<3.2.2",
  4578. "phpdocumentor/type-resolver": "<1.4.0",
  4579. "symfony/mailer": "<4.4"
  4580. },
  4581. "require-dev": {
  4582. "egulias/email-validator": "^2.1.10|^3.1",
  4583. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4584. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4585. "symfony/property-access": "^4.4|^5.1|^6.0",
  4586. "symfony/property-info": "^4.4|^5.1|^6.0",
  4587. "symfony/serializer": "^5.2|^6.0"
  4588. },
  4589. "type": "library",
  4590. "autoload": {
  4591. "psr-4": {
  4592. "Symfony\\Component\\Mime\\": ""
  4593. },
  4594. "exclude-from-classmap": [
  4595. "/Tests/"
  4596. ]
  4597. },
  4598. "notification-url": "https://packagist.org/downloads/",
  4599. "license": [
  4600. "MIT"
  4601. ],
  4602. "authors": [
  4603. {
  4604. "name": "Fabien Potencier",
  4605. "email": "fabien@symfony.com"
  4606. },
  4607. {
  4608. "name": "Symfony Community",
  4609. "homepage": "https://symfony.com/contributors"
  4610. }
  4611. ],
  4612. "description": "Allows manipulating MIME messages",
  4613. "homepage": "https://symfony.com",
  4614. "keywords": [
  4615. "mime",
  4616. "mime-type"
  4617. ],
  4618. "support": {
  4619. "source": "https://github.com/symfony/mime/tree/v5.4.3"
  4620. },
  4621. "funding": [
  4622. {
  4623. "url": "https://symfony.com/sponsor",
  4624. "type": "custom"
  4625. },
  4626. {
  4627. "url": "https://github.com/fabpot",
  4628. "type": "github"
  4629. },
  4630. {
  4631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4632. "type": "tidelift"
  4633. }
  4634. ],
  4635. "time": "2022-01-02T09:53:40+00:00"
  4636. },
  4637. {
  4638. "name": "symfony/polyfill-ctype",
  4639. "version": "v1.25.0",
  4640. "source": {
  4641. "type": "git",
  4642. "url": "https://github.com/symfony/polyfill-ctype.git",
  4643. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  4644. },
  4645. "dist": {
  4646. "type": "zip",
  4647. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  4648. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  4649. "shasum": "",
  4650. "mirrors": [
  4651. {
  4652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4653. "preferred": true
  4654. }
  4655. ]
  4656. },
  4657. "require": {
  4658. "php": ">=7.1"
  4659. },
  4660. "provide": {
  4661. "ext-ctype": "*"
  4662. },
  4663. "suggest": {
  4664. "ext-ctype": "For best performance"
  4665. },
  4666. "type": "library",
  4667. "extra": {
  4668. "branch-alias": {
  4669. "dev-main": "1.23-dev"
  4670. },
  4671. "thanks": {
  4672. "name": "symfony/polyfill",
  4673. "url": "https://github.com/symfony/polyfill"
  4674. }
  4675. },
  4676. "autoload": {
  4677. "files": [
  4678. "bootstrap.php"
  4679. ],
  4680. "psr-4": {
  4681. "Symfony\\Polyfill\\Ctype\\": ""
  4682. }
  4683. },
  4684. "notification-url": "https://packagist.org/downloads/",
  4685. "license": [
  4686. "MIT"
  4687. ],
  4688. "authors": [
  4689. {
  4690. "name": "Gert de Pagter",
  4691. "email": "BackEndTea@gmail.com"
  4692. },
  4693. {
  4694. "name": "Symfony Community",
  4695. "homepage": "https://symfony.com/contributors"
  4696. }
  4697. ],
  4698. "description": "Symfony polyfill for ctype functions",
  4699. "homepage": "https://symfony.com",
  4700. "keywords": [
  4701. "compatibility",
  4702. "ctype",
  4703. "polyfill",
  4704. "portable"
  4705. ],
  4706. "support": {
  4707. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0"
  4708. },
  4709. "funding": [
  4710. {
  4711. "url": "https://symfony.com/sponsor",
  4712. "type": "custom"
  4713. },
  4714. {
  4715. "url": "https://github.com/fabpot",
  4716. "type": "github"
  4717. },
  4718. {
  4719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4720. "type": "tidelift"
  4721. }
  4722. ],
  4723. "time": "2021-10-20T20:35:02+00:00"
  4724. },
  4725. {
  4726. "name": "symfony/polyfill-iconv",
  4727. "version": "v1.25.0",
  4728. "source": {
  4729. "type": "git",
  4730. "url": "https://github.com/symfony/polyfill-iconv.git",
  4731. "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40"
  4732. },
  4733. "dist": {
  4734. "type": "zip",
  4735. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f1aed619e28cb077fc83fac8c4c0383578356e40",
  4736. "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40",
  4737. "shasum": "",
  4738. "mirrors": [
  4739. {
  4740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4741. "preferred": true
  4742. }
  4743. ]
  4744. },
  4745. "require": {
  4746. "php": ">=7.1"
  4747. },
  4748. "provide": {
  4749. "ext-iconv": "*"
  4750. },
  4751. "suggest": {
  4752. "ext-iconv": "For best performance"
  4753. },
  4754. "type": "library",
  4755. "extra": {
  4756. "branch-alias": {
  4757. "dev-main": "1.23-dev"
  4758. },
  4759. "thanks": {
  4760. "name": "symfony/polyfill",
  4761. "url": "https://github.com/symfony/polyfill"
  4762. }
  4763. },
  4764. "autoload": {
  4765. "files": [
  4766. "bootstrap.php"
  4767. ],
  4768. "psr-4": {
  4769. "Symfony\\Polyfill\\Iconv\\": ""
  4770. }
  4771. },
  4772. "notification-url": "https://packagist.org/downloads/",
  4773. "license": [
  4774. "MIT"
  4775. ],
  4776. "authors": [
  4777. {
  4778. "name": "Nicolas Grekas",
  4779. "email": "p@tchwork.com"
  4780. },
  4781. {
  4782. "name": "Symfony Community",
  4783. "homepage": "https://symfony.com/contributors"
  4784. }
  4785. ],
  4786. "description": "Symfony polyfill for the Iconv extension",
  4787. "homepage": "https://symfony.com",
  4788. "keywords": [
  4789. "compatibility",
  4790. "iconv",
  4791. "polyfill",
  4792. "portable",
  4793. "shim"
  4794. ],
  4795. "support": {
  4796. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.25.0"
  4797. },
  4798. "funding": [
  4799. {
  4800. "url": "https://symfony.com/sponsor",
  4801. "type": "custom"
  4802. },
  4803. {
  4804. "url": "https://github.com/fabpot",
  4805. "type": "github"
  4806. },
  4807. {
  4808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4809. "type": "tidelift"
  4810. }
  4811. ],
  4812. "time": "2022-01-04T09:04:05+00:00"
  4813. },
  4814. {
  4815. "name": "symfony/polyfill-intl-idn",
  4816. "version": "v1.25.0",
  4817. "source": {
  4818. "type": "git",
  4819. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4820. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  4821. },
  4822. "dist": {
  4823. "type": "zip",
  4824. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  4825. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  4826. "shasum": "",
  4827. "mirrors": [
  4828. {
  4829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4830. "preferred": true
  4831. }
  4832. ]
  4833. },
  4834. "require": {
  4835. "php": ">=7.1",
  4836. "symfony/polyfill-intl-normalizer": "^1.10",
  4837. "symfony/polyfill-php72": "^1.10"
  4838. },
  4839. "suggest": {
  4840. "ext-intl": "For best performance"
  4841. },
  4842. "type": "library",
  4843. "extra": {
  4844. "branch-alias": {
  4845. "dev-main": "1.23-dev"
  4846. },
  4847. "thanks": {
  4848. "name": "symfony/polyfill",
  4849. "url": "https://github.com/symfony/polyfill"
  4850. }
  4851. },
  4852. "autoload": {
  4853. "files": [
  4854. "bootstrap.php"
  4855. ],
  4856. "psr-4": {
  4857. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4858. }
  4859. },
  4860. "notification-url": "https://packagist.org/downloads/",
  4861. "license": [
  4862. "MIT"
  4863. ],
  4864. "authors": [
  4865. {
  4866. "name": "Laurent Bassin",
  4867. "email": "laurent@bassin.info"
  4868. },
  4869. {
  4870. "name": "Trevor Rowbotham",
  4871. "email": "trevor.rowbotham@pm.me"
  4872. },
  4873. {
  4874. "name": "Symfony Community",
  4875. "homepage": "https://symfony.com/contributors"
  4876. }
  4877. ],
  4878. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4879. "homepage": "https://symfony.com",
  4880. "keywords": [
  4881. "compatibility",
  4882. "idn",
  4883. "intl",
  4884. "polyfill",
  4885. "portable",
  4886. "shim"
  4887. ],
  4888. "support": {
  4889. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0"
  4890. },
  4891. "funding": [
  4892. {
  4893. "url": "https://symfony.com/sponsor",
  4894. "type": "custom"
  4895. },
  4896. {
  4897. "url": "https://github.com/fabpot",
  4898. "type": "github"
  4899. },
  4900. {
  4901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4902. "type": "tidelift"
  4903. }
  4904. ],
  4905. "time": "2021-09-14T14:02:44+00:00"
  4906. },
  4907. {
  4908. "name": "symfony/polyfill-intl-normalizer",
  4909. "version": "v1.25.0",
  4910. "source": {
  4911. "type": "git",
  4912. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4913. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  4914. },
  4915. "dist": {
  4916. "type": "zip",
  4917. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4918. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4919. "shasum": "",
  4920. "mirrors": [
  4921. {
  4922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4923. "preferred": true
  4924. }
  4925. ]
  4926. },
  4927. "require": {
  4928. "php": ">=7.1"
  4929. },
  4930. "suggest": {
  4931. "ext-intl": "For best performance"
  4932. },
  4933. "type": "library",
  4934. "extra": {
  4935. "branch-alias": {
  4936. "dev-main": "1.23-dev"
  4937. },
  4938. "thanks": {
  4939. "name": "symfony/polyfill",
  4940. "url": "https://github.com/symfony/polyfill"
  4941. }
  4942. },
  4943. "autoload": {
  4944. "files": [
  4945. "bootstrap.php"
  4946. ],
  4947. "psr-4": {
  4948. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4949. },
  4950. "classmap": [
  4951. "Resources/stubs"
  4952. ]
  4953. },
  4954. "notification-url": "https://packagist.org/downloads/",
  4955. "license": [
  4956. "MIT"
  4957. ],
  4958. "authors": [
  4959. {
  4960. "name": "Nicolas Grekas",
  4961. "email": "p@tchwork.com"
  4962. },
  4963. {
  4964. "name": "Symfony Community",
  4965. "homepage": "https://symfony.com/contributors"
  4966. }
  4967. ],
  4968. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4969. "homepage": "https://symfony.com",
  4970. "keywords": [
  4971. "compatibility",
  4972. "intl",
  4973. "normalizer",
  4974. "polyfill",
  4975. "portable",
  4976. "shim"
  4977. ],
  4978. "support": {
  4979. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0"
  4980. },
  4981. "funding": [
  4982. {
  4983. "url": "https://symfony.com/sponsor",
  4984. "type": "custom"
  4985. },
  4986. {
  4987. "url": "https://github.com/fabpot",
  4988. "type": "github"
  4989. },
  4990. {
  4991. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4992. "type": "tidelift"
  4993. }
  4994. ],
  4995. "time": "2021-02-19T12:13:01+00:00"
  4996. },
  4997. {
  4998. "name": "symfony/polyfill-mbstring",
  4999. "version": "v1.25.0",
  5000. "source": {
  5001. "type": "git",
  5002. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5003. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  5004. },
  5005. "dist": {
  5006. "type": "zip",
  5007. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  5008. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  5009. "shasum": "",
  5010. "mirrors": [
  5011. {
  5012. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5013. "preferred": true
  5014. }
  5015. ]
  5016. },
  5017. "require": {
  5018. "php": ">=7.1"
  5019. },
  5020. "provide": {
  5021. "ext-mbstring": "*"
  5022. },
  5023. "suggest": {
  5024. "ext-mbstring": "For best performance"
  5025. },
  5026. "type": "library",
  5027. "extra": {
  5028. "branch-alias": {
  5029. "dev-main": "1.23-dev"
  5030. },
  5031. "thanks": {
  5032. "name": "symfony/polyfill",
  5033. "url": "https://github.com/symfony/polyfill"
  5034. }
  5035. },
  5036. "autoload": {
  5037. "files": [
  5038. "bootstrap.php"
  5039. ],
  5040. "psr-4": {
  5041. "Symfony\\Polyfill\\Mbstring\\": ""
  5042. }
  5043. },
  5044. "notification-url": "https://packagist.org/downloads/",
  5045. "license": [
  5046. "MIT"
  5047. ],
  5048. "authors": [
  5049. {
  5050. "name": "Nicolas Grekas",
  5051. "email": "p@tchwork.com"
  5052. },
  5053. {
  5054. "name": "Symfony Community",
  5055. "homepage": "https://symfony.com/contributors"
  5056. }
  5057. ],
  5058. "description": "Symfony polyfill for the Mbstring extension",
  5059. "homepage": "https://symfony.com",
  5060. "keywords": [
  5061. "compatibility",
  5062. "mbstring",
  5063. "polyfill",
  5064. "portable",
  5065. "shim"
  5066. ],
  5067. "support": {
  5068. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
  5069. },
  5070. "funding": [
  5071. {
  5072. "url": "https://symfony.com/sponsor",
  5073. "type": "custom"
  5074. },
  5075. {
  5076. "url": "https://github.com/fabpot",
  5077. "type": "github"
  5078. },
  5079. {
  5080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5081. "type": "tidelift"
  5082. }
  5083. ],
  5084. "time": "2021-11-30T18:21:41+00:00"
  5085. },
  5086. {
  5087. "name": "symfony/polyfill-php72",
  5088. "version": "v1.25.0",
  5089. "source": {
  5090. "type": "git",
  5091. "url": "https://github.com/symfony/polyfill-php72.git",
  5092. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  5093. },
  5094. "dist": {
  5095. "type": "zip",
  5096. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  5097. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  5098. "shasum": "",
  5099. "mirrors": [
  5100. {
  5101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5102. "preferred": true
  5103. }
  5104. ]
  5105. },
  5106. "require": {
  5107. "php": ">=7.1"
  5108. },
  5109. "type": "library",
  5110. "extra": {
  5111. "branch-alias": {
  5112. "dev-main": "1.23-dev"
  5113. },
  5114. "thanks": {
  5115. "name": "symfony/polyfill",
  5116. "url": "https://github.com/symfony/polyfill"
  5117. }
  5118. },
  5119. "autoload": {
  5120. "files": [
  5121. "bootstrap.php"
  5122. ],
  5123. "psr-4": {
  5124. "Symfony\\Polyfill\\Php72\\": ""
  5125. }
  5126. },
  5127. "notification-url": "https://packagist.org/downloads/",
  5128. "license": [
  5129. "MIT"
  5130. ],
  5131. "authors": [
  5132. {
  5133. "name": "Nicolas Grekas",
  5134. "email": "p@tchwork.com"
  5135. },
  5136. {
  5137. "name": "Symfony Community",
  5138. "homepage": "https://symfony.com/contributors"
  5139. }
  5140. ],
  5141. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5142. "homepage": "https://symfony.com",
  5143. "keywords": [
  5144. "compatibility",
  5145. "polyfill",
  5146. "portable",
  5147. "shim"
  5148. ],
  5149. "support": {
  5150. "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0"
  5151. },
  5152. "funding": [
  5153. {
  5154. "url": "https://symfony.com/sponsor",
  5155. "type": "custom"
  5156. },
  5157. {
  5158. "url": "https://github.com/fabpot",
  5159. "type": "github"
  5160. },
  5161. {
  5162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5163. "type": "tidelift"
  5164. }
  5165. ],
  5166. "time": "2021-05-27T09:17:38+00:00"
  5167. },
  5168. {
  5169. "name": "symfony/polyfill-php73",
  5170. "version": "v1.25.0",
  5171. "source": {
  5172. "type": "git",
  5173. "url": "https://github.com/symfony/polyfill-php73.git",
  5174. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
  5175. },
  5176. "dist": {
  5177. "type": "zip",
  5178. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
  5179. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  5180. "shasum": "",
  5181. "mirrors": [
  5182. {
  5183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5184. "preferred": true
  5185. }
  5186. ]
  5187. },
  5188. "require": {
  5189. "php": ">=7.1"
  5190. },
  5191. "type": "library",
  5192. "extra": {
  5193. "branch-alias": {
  5194. "dev-main": "1.23-dev"
  5195. },
  5196. "thanks": {
  5197. "name": "symfony/polyfill",
  5198. "url": "https://github.com/symfony/polyfill"
  5199. }
  5200. },
  5201. "autoload": {
  5202. "files": [
  5203. "bootstrap.php"
  5204. ],
  5205. "psr-4": {
  5206. "Symfony\\Polyfill\\Php73\\": ""
  5207. },
  5208. "classmap": [
  5209. "Resources/stubs"
  5210. ]
  5211. },
  5212. "notification-url": "https://packagist.org/downloads/",
  5213. "license": [
  5214. "MIT"
  5215. ],
  5216. "authors": [
  5217. {
  5218. "name": "Nicolas Grekas",
  5219. "email": "p@tchwork.com"
  5220. },
  5221. {
  5222. "name": "Symfony Community",
  5223. "homepage": "https://symfony.com/contributors"
  5224. }
  5225. ],
  5226. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5227. "homepage": "https://symfony.com",
  5228. "keywords": [
  5229. "compatibility",
  5230. "polyfill",
  5231. "portable",
  5232. "shim"
  5233. ],
  5234. "support": {
  5235. "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0"
  5236. },
  5237. "funding": [
  5238. {
  5239. "url": "https://symfony.com/sponsor",
  5240. "type": "custom"
  5241. },
  5242. {
  5243. "url": "https://github.com/fabpot",
  5244. "type": "github"
  5245. },
  5246. {
  5247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5248. "type": "tidelift"
  5249. }
  5250. ],
  5251. "time": "2021-06-05T21:20:04+00:00"
  5252. },
  5253. {
  5254. "name": "symfony/polyfill-php80",
  5255. "version": "v1.25.0",
  5256. "source": {
  5257. "type": "git",
  5258. "url": "https://github.com/symfony/polyfill-php80.git",
  5259. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  5260. },
  5261. "dist": {
  5262. "type": "zip",
  5263. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  5264. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  5265. "shasum": "",
  5266. "mirrors": [
  5267. {
  5268. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5269. "preferred": true
  5270. }
  5271. ]
  5272. },
  5273. "require": {
  5274. "php": ">=7.1"
  5275. },
  5276. "type": "library",
  5277. "extra": {
  5278. "branch-alias": {
  5279. "dev-main": "1.23-dev"
  5280. },
  5281. "thanks": {
  5282. "name": "symfony/polyfill",
  5283. "url": "https://github.com/symfony/polyfill"
  5284. }
  5285. },
  5286. "autoload": {
  5287. "files": [
  5288. "bootstrap.php"
  5289. ],
  5290. "psr-4": {
  5291. "Symfony\\Polyfill\\Php80\\": ""
  5292. },
  5293. "classmap": [
  5294. "Resources/stubs"
  5295. ]
  5296. },
  5297. "notification-url": "https://packagist.org/downloads/",
  5298. "license": [
  5299. "MIT"
  5300. ],
  5301. "authors": [
  5302. {
  5303. "name": "Ion Bazan",
  5304. "email": "ion.bazan@gmail.com"
  5305. },
  5306. {
  5307. "name": "Nicolas Grekas",
  5308. "email": "p@tchwork.com"
  5309. },
  5310. {
  5311. "name": "Symfony Community",
  5312. "homepage": "https://symfony.com/contributors"
  5313. }
  5314. ],
  5315. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5316. "homepage": "https://symfony.com",
  5317. "keywords": [
  5318. "compatibility",
  5319. "polyfill",
  5320. "portable",
  5321. "shim"
  5322. ],
  5323. "support": {
  5324. "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
  5325. },
  5326. "funding": [
  5327. {
  5328. "url": "https://symfony.com/sponsor",
  5329. "type": "custom"
  5330. },
  5331. {
  5332. "url": "https://github.com/fabpot",
  5333. "type": "github"
  5334. },
  5335. {
  5336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5337. "type": "tidelift"
  5338. }
  5339. ],
  5340. "time": "2022-03-04T08:16:47+00:00"
  5341. },
  5342. {
  5343. "name": "symfony/process",
  5344. "version": "v4.4.37",
  5345. "source": {
  5346. "type": "git",
  5347. "url": "https://github.com/symfony/process.git",
  5348. "reference": "b2d924e5a4cb284f293d5092b1dbf0d364cb8b67"
  5349. },
  5350. "dist": {
  5351. "type": "zip",
  5352. "url": "https://api.github.com/repos/symfony/process/zipball/b2d924e5a4cb284f293d5092b1dbf0d364cb8b67",
  5353. "reference": "b2d924e5a4cb284f293d5092b1dbf0d364cb8b67",
  5354. "shasum": "",
  5355. "mirrors": [
  5356. {
  5357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5358. "preferred": true
  5359. }
  5360. ]
  5361. },
  5362. "require": {
  5363. "php": ">=7.1.3",
  5364. "symfony/polyfill-php80": "^1.16"
  5365. },
  5366. "type": "library",
  5367. "autoload": {
  5368. "psr-4": {
  5369. "Symfony\\Component\\Process\\": ""
  5370. },
  5371. "exclude-from-classmap": [
  5372. "/Tests/"
  5373. ]
  5374. },
  5375. "notification-url": "https://packagist.org/downloads/",
  5376. "license": [
  5377. "MIT"
  5378. ],
  5379. "authors": [
  5380. {
  5381. "name": "Fabien Potencier",
  5382. "email": "fabien@symfony.com"
  5383. },
  5384. {
  5385. "name": "Symfony Community",
  5386. "homepage": "https://symfony.com/contributors"
  5387. }
  5388. ],
  5389. "description": "Executes commands in sub-processes",
  5390. "homepage": "https://symfony.com",
  5391. "support": {
  5392. "source": "https://github.com/symfony/process/tree/v4.4.37"
  5393. },
  5394. "funding": [
  5395. {
  5396. "url": "https://symfony.com/sponsor",
  5397. "type": "custom"
  5398. },
  5399. {
  5400. "url": "https://github.com/fabpot",
  5401. "type": "github"
  5402. },
  5403. {
  5404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5405. "type": "tidelift"
  5406. }
  5407. ],
  5408. "time": "2022-01-27T17:14:04+00:00"
  5409. },
  5410. {
  5411. "name": "symfony/psr-http-message-bridge",
  5412. "version": "v1.3.0",
  5413. "source": {
  5414. "type": "git",
  5415. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  5416. "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796"
  5417. },
  5418. "dist": {
  5419. "type": "zip",
  5420. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9d3e80d54d9ae747ad573cad796e8e247df7b796",
  5421. "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796",
  5422. "shasum": "",
  5423. "mirrors": [
  5424. {
  5425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5426. "preferred": true
  5427. }
  5428. ]
  5429. },
  5430. "require": {
  5431. "php": "^7.1",
  5432. "psr/http-message": "^1.0",
  5433. "symfony/http-foundation": "^4.4 || ^5.0"
  5434. },
  5435. "require-dev": {
  5436. "nyholm/psr7": "^1.1",
  5437. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  5438. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  5439. },
  5440. "suggest": {
  5441. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  5442. },
  5443. "type": "symfony-bridge",
  5444. "extra": {
  5445. "branch-alias": {
  5446. "dev-master": "1.3-dev"
  5447. }
  5448. },
  5449. "autoload": {
  5450. "psr-4": {
  5451. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  5452. },
  5453. "exclude-from-classmap": [
  5454. "/Tests/"
  5455. ]
  5456. },
  5457. "notification-url": "https://packagist.org/downloads/",
  5458. "license": [
  5459. "MIT"
  5460. ],
  5461. "authors": [
  5462. {
  5463. "name": "Fabien Potencier",
  5464. "email": "fabien@symfony.com"
  5465. },
  5466. {
  5467. "name": "Symfony Community",
  5468. "homepage": "http://symfony.com/contributors"
  5469. }
  5470. ],
  5471. "description": "PSR HTTP message bridge",
  5472. "homepage": "http://symfony.com",
  5473. "keywords": [
  5474. "http",
  5475. "http-message",
  5476. "psr-17",
  5477. "psr-7"
  5478. ],
  5479. "support": {
  5480. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  5481. "source": "https://github.com/symfony/psr-http-message-bridge/tree/master"
  5482. },
  5483. "time": "2019-11-25T19:33:50+00:00"
  5484. },
  5485. {
  5486. "name": "symfony/routing",
  5487. "version": "v4.4.37",
  5488. "source": {
  5489. "type": "git",
  5490. "url": "https://github.com/symfony/routing.git",
  5491. "reference": "324f7f73b89cd30012575119430ccfb1dfbc24be"
  5492. },
  5493. "dist": {
  5494. "type": "zip",
  5495. "url": "https://api.github.com/repos/symfony/routing/zipball/324f7f73b89cd30012575119430ccfb1dfbc24be",
  5496. "reference": "324f7f73b89cd30012575119430ccfb1dfbc24be",
  5497. "shasum": "",
  5498. "mirrors": [
  5499. {
  5500. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5501. "preferred": true
  5502. }
  5503. ]
  5504. },
  5505. "require": {
  5506. "php": ">=7.1.3",
  5507. "symfony/polyfill-php80": "^1.16"
  5508. },
  5509. "conflict": {
  5510. "symfony/config": "<4.2",
  5511. "symfony/dependency-injection": "<3.4",
  5512. "symfony/yaml": "<3.4"
  5513. },
  5514. "require-dev": {
  5515. "doctrine/annotations": "^1.10.4",
  5516. "psr/log": "^1|^2|^3",
  5517. "symfony/config": "^4.2|^5.0",
  5518. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5519. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5520. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5521. "symfony/yaml": "^3.4|^4.0|^5.0"
  5522. },
  5523. "suggest": {
  5524. "doctrine/annotations": "For using the annotation loader",
  5525. "symfony/config": "For using the all-in-one router or any loader",
  5526. "symfony/expression-language": "For using expression matching",
  5527. "symfony/http-foundation": "For using a Symfony Request object",
  5528. "symfony/yaml": "For using the YAML loader"
  5529. },
  5530. "type": "library",
  5531. "autoload": {
  5532. "psr-4": {
  5533. "Symfony\\Component\\Routing\\": ""
  5534. },
  5535. "exclude-from-classmap": [
  5536. "/Tests/"
  5537. ]
  5538. },
  5539. "notification-url": "https://packagist.org/downloads/",
  5540. "license": [
  5541. "MIT"
  5542. ],
  5543. "authors": [
  5544. {
  5545. "name": "Fabien Potencier",
  5546. "email": "fabien@symfony.com"
  5547. },
  5548. {
  5549. "name": "Symfony Community",
  5550. "homepage": "https://symfony.com/contributors"
  5551. }
  5552. ],
  5553. "description": "Maps an HTTP request to a set of configuration variables",
  5554. "homepage": "https://symfony.com",
  5555. "keywords": [
  5556. "router",
  5557. "routing",
  5558. "uri",
  5559. "url"
  5560. ],
  5561. "support": {
  5562. "source": "https://github.com/symfony/routing/tree/v4.4.37"
  5563. },
  5564. "funding": [
  5565. {
  5566. "url": "https://symfony.com/sponsor",
  5567. "type": "custom"
  5568. },
  5569. {
  5570. "url": "https://github.com/fabpot",
  5571. "type": "github"
  5572. },
  5573. {
  5574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5575. "type": "tidelift"
  5576. }
  5577. ],
  5578. "time": "2022-01-02T09:41:36+00:00"
  5579. },
  5580. {
  5581. "name": "symfony/service-contracts",
  5582. "version": "v2.5.0",
  5583. "source": {
  5584. "type": "git",
  5585. "url": "https://github.com/symfony/service-contracts.git",
  5586. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  5587. },
  5588. "dist": {
  5589. "type": "zip",
  5590. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  5591. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  5592. "shasum": "",
  5593. "mirrors": [
  5594. {
  5595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5596. "preferred": true
  5597. }
  5598. ]
  5599. },
  5600. "require": {
  5601. "php": ">=7.2.5",
  5602. "psr/container": "^1.1",
  5603. "symfony/deprecation-contracts": "^2.1"
  5604. },
  5605. "conflict": {
  5606. "ext-psr": "<1.1|>=2"
  5607. },
  5608. "suggest": {
  5609. "symfony/service-implementation": ""
  5610. },
  5611. "type": "library",
  5612. "extra": {
  5613. "branch-alias": {
  5614. "dev-main": "2.5-dev"
  5615. },
  5616. "thanks": {
  5617. "name": "symfony/contracts",
  5618. "url": "https://github.com/symfony/contracts"
  5619. }
  5620. },
  5621. "autoload": {
  5622. "psr-4": {
  5623. "Symfony\\Contracts\\Service\\": ""
  5624. }
  5625. },
  5626. "notification-url": "https://packagist.org/downloads/",
  5627. "license": [
  5628. "MIT"
  5629. ],
  5630. "authors": [
  5631. {
  5632. "name": "Nicolas Grekas",
  5633. "email": "p@tchwork.com"
  5634. },
  5635. {
  5636. "name": "Symfony Community",
  5637. "homepage": "https://symfony.com/contributors"
  5638. }
  5639. ],
  5640. "description": "Generic abstractions related to writing services",
  5641. "homepage": "https://symfony.com",
  5642. "keywords": [
  5643. "abstractions",
  5644. "contracts",
  5645. "decoupling",
  5646. "interfaces",
  5647. "interoperability",
  5648. "standards"
  5649. ],
  5650. "support": {
  5651. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  5652. },
  5653. "funding": [
  5654. {
  5655. "url": "https://symfony.com/sponsor",
  5656. "type": "custom"
  5657. },
  5658. {
  5659. "url": "https://github.com/fabpot",
  5660. "type": "github"
  5661. },
  5662. {
  5663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5664. "type": "tidelift"
  5665. }
  5666. ],
  5667. "time": "2021-11-04T16:48:04+00:00"
  5668. },
  5669. {
  5670. "name": "symfony/translation",
  5671. "version": "v4.4.37",
  5672. "source": {
  5673. "type": "git",
  5674. "url": "https://github.com/symfony/translation.git",
  5675. "reference": "4ce00d6875230b839f5feef82e51971f6c886e00"
  5676. },
  5677. "dist": {
  5678. "type": "zip",
  5679. "url": "https://api.github.com/repos/symfony/translation/zipball/4ce00d6875230b839f5feef82e51971f6c886e00",
  5680. "reference": "4ce00d6875230b839f5feef82e51971f6c886e00",
  5681. "shasum": "",
  5682. "mirrors": [
  5683. {
  5684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5685. "preferred": true
  5686. }
  5687. ]
  5688. },
  5689. "require": {
  5690. "php": ">=7.1.3",
  5691. "symfony/polyfill-mbstring": "~1.0",
  5692. "symfony/polyfill-php80": "^1.16",
  5693. "symfony/translation-contracts": "^1.1.6|^2"
  5694. },
  5695. "conflict": {
  5696. "symfony/config": "<3.4",
  5697. "symfony/dependency-injection": "<3.4",
  5698. "symfony/http-kernel": "<4.4",
  5699. "symfony/yaml": "<3.4"
  5700. },
  5701. "provide": {
  5702. "symfony/translation-implementation": "1.0|2.0"
  5703. },
  5704. "require-dev": {
  5705. "psr/log": "^1|^2|^3",
  5706. "symfony/config": "^3.4|^4.0|^5.0",
  5707. "symfony/console": "^3.4|^4.0|^5.0",
  5708. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5709. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  5710. "symfony/http-kernel": "^4.4",
  5711. "symfony/intl": "^3.4|^4.0|^5.0",
  5712. "symfony/service-contracts": "^1.1.2|^2",
  5713. "symfony/yaml": "^3.4|^4.0|^5.0"
  5714. },
  5715. "suggest": {
  5716. "psr/log-implementation": "To use logging capability in translator",
  5717. "symfony/config": "",
  5718. "symfony/yaml": ""
  5719. },
  5720. "type": "library",
  5721. "autoload": {
  5722. "psr-4": {
  5723. "Symfony\\Component\\Translation\\": ""
  5724. },
  5725. "exclude-from-classmap": [
  5726. "/Tests/"
  5727. ]
  5728. },
  5729. "notification-url": "https://packagist.org/downloads/",
  5730. "license": [
  5731. "MIT"
  5732. ],
  5733. "authors": [
  5734. {
  5735. "name": "Fabien Potencier",
  5736. "email": "fabien@symfony.com"
  5737. },
  5738. {
  5739. "name": "Symfony Community",
  5740. "homepage": "https://symfony.com/contributors"
  5741. }
  5742. ],
  5743. "description": "Provides tools to internationalize your application",
  5744. "homepage": "https://symfony.com",
  5745. "support": {
  5746. "source": "https://github.com/symfony/translation/tree/v4.4.37"
  5747. },
  5748. "funding": [
  5749. {
  5750. "url": "https://symfony.com/sponsor",
  5751. "type": "custom"
  5752. },
  5753. {
  5754. "url": "https://github.com/fabpot",
  5755. "type": "github"
  5756. },
  5757. {
  5758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5759. "type": "tidelift"
  5760. }
  5761. ],
  5762. "time": "2022-01-02T09:41:36+00:00"
  5763. },
  5764. {
  5765. "name": "symfony/translation-contracts",
  5766. "version": "v2.5.0",
  5767. "source": {
  5768. "type": "git",
  5769. "url": "https://github.com/symfony/translation-contracts.git",
  5770. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
  5771. },
  5772. "dist": {
  5773. "type": "zip",
  5774. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
  5775. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  5776. "shasum": "",
  5777. "mirrors": [
  5778. {
  5779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5780. "preferred": true
  5781. }
  5782. ]
  5783. },
  5784. "require": {
  5785. "php": ">=7.2.5"
  5786. },
  5787. "suggest": {
  5788. "symfony/translation-implementation": ""
  5789. },
  5790. "type": "library",
  5791. "extra": {
  5792. "branch-alias": {
  5793. "dev-main": "2.5-dev"
  5794. },
  5795. "thanks": {
  5796. "name": "symfony/contracts",
  5797. "url": "https://github.com/symfony/contracts"
  5798. }
  5799. },
  5800. "autoload": {
  5801. "psr-4": {
  5802. "Symfony\\Contracts\\Translation\\": ""
  5803. }
  5804. },
  5805. "notification-url": "https://packagist.org/downloads/",
  5806. "license": [
  5807. "MIT"
  5808. ],
  5809. "authors": [
  5810. {
  5811. "name": "Nicolas Grekas",
  5812. "email": "p@tchwork.com"
  5813. },
  5814. {
  5815. "name": "Symfony Community",
  5816. "homepage": "https://symfony.com/contributors"
  5817. }
  5818. ],
  5819. "description": "Generic abstractions related to translation",
  5820. "homepage": "https://symfony.com",
  5821. "keywords": [
  5822. "abstractions",
  5823. "contracts",
  5824. "decoupling",
  5825. "interfaces",
  5826. "interoperability",
  5827. "standards"
  5828. ],
  5829. "support": {
  5830. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
  5831. },
  5832. "funding": [
  5833. {
  5834. "url": "https://symfony.com/sponsor",
  5835. "type": "custom"
  5836. },
  5837. {
  5838. "url": "https://github.com/fabpot",
  5839. "type": "github"
  5840. },
  5841. {
  5842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5843. "type": "tidelift"
  5844. }
  5845. ],
  5846. "time": "2021-08-17T14:20:01+00:00"
  5847. },
  5848. {
  5849. "name": "symfony/var-dumper",
  5850. "version": "v4.4.39",
  5851. "source": {
  5852. "type": "git",
  5853. "url": "https://github.com/symfony/var-dumper.git",
  5854. "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e"
  5855. },
  5856. "dist": {
  5857. "type": "zip",
  5858. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/35237c5e5dcb6593a46a860ba5b29c1d4683d80e",
  5859. "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e",
  5860. "shasum": "",
  5861. "mirrors": [
  5862. {
  5863. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5864. "preferred": true
  5865. }
  5866. ]
  5867. },
  5868. "require": {
  5869. "php": ">=7.1.3",
  5870. "symfony/polyfill-mbstring": "~1.0",
  5871. "symfony/polyfill-php72": "~1.5",
  5872. "symfony/polyfill-php80": "^1.16"
  5873. },
  5874. "conflict": {
  5875. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5876. "symfony/console": "<3.4"
  5877. },
  5878. "require-dev": {
  5879. "ext-iconv": "*",
  5880. "symfony/console": "^3.4|^4.0|^5.0",
  5881. "symfony/process": "^4.4|^5.0",
  5882. "twig/twig": "^1.43|^2.13|^3.0.4"
  5883. },
  5884. "suggest": {
  5885. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5886. "ext-intl": "To show region name in time zone dump",
  5887. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5888. },
  5889. "bin": [
  5890. "Resources/bin/var-dump-server"
  5891. ],
  5892. "type": "library",
  5893. "autoload": {
  5894. "files": [
  5895. "Resources/functions/dump.php"
  5896. ],
  5897. "psr-4": {
  5898. "Symfony\\Component\\VarDumper\\": ""
  5899. },
  5900. "exclude-from-classmap": [
  5901. "/Tests/"
  5902. ]
  5903. },
  5904. "notification-url": "https://packagist.org/downloads/",
  5905. "license": [
  5906. "MIT"
  5907. ],
  5908. "authors": [
  5909. {
  5910. "name": "Nicolas Grekas",
  5911. "email": "p@tchwork.com"
  5912. },
  5913. {
  5914. "name": "Symfony Community",
  5915. "homepage": "https://symfony.com/contributors"
  5916. }
  5917. ],
  5918. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5919. "homepage": "https://symfony.com",
  5920. "keywords": [
  5921. "debug",
  5922. "dump"
  5923. ],
  5924. "support": {
  5925. "source": "https://github.com/symfony/var-dumper/tree/v4.4.39"
  5926. },
  5927. "funding": [
  5928. {
  5929. "url": "https://symfony.com/sponsor",
  5930. "type": "custom"
  5931. },
  5932. {
  5933. "url": "https://github.com/fabpot",
  5934. "type": "github"
  5935. },
  5936. {
  5937. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5938. "type": "tidelift"
  5939. }
  5940. ],
  5941. "time": "2022-02-25T10:38:15+00:00"
  5942. },
  5943. {
  5944. "name": "tijsverkoyen/css-to-inline-styles",
  5945. "version": "2.2.4",
  5946. "source": {
  5947. "type": "git",
  5948. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5949. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  5950. },
  5951. "dist": {
  5952. "type": "zip",
  5953. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  5954. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  5955. "shasum": "",
  5956. "mirrors": [
  5957. {
  5958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5959. "preferred": true
  5960. }
  5961. ]
  5962. },
  5963. "require": {
  5964. "ext-dom": "*",
  5965. "ext-libxml": "*",
  5966. "php": "^5.5 || ^7.0 || ^8.0",
  5967. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  5968. },
  5969. "require-dev": {
  5970. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5971. },
  5972. "type": "library",
  5973. "extra": {
  5974. "branch-alias": {
  5975. "dev-master": "2.2.x-dev"
  5976. }
  5977. },
  5978. "autoload": {
  5979. "psr-4": {
  5980. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5981. }
  5982. },
  5983. "notification-url": "https://packagist.org/downloads/",
  5984. "license": [
  5985. "BSD-3-Clause"
  5986. ],
  5987. "authors": [
  5988. {
  5989. "name": "Tijs Verkoyen",
  5990. "email": "css_to_inline_styles@verkoyen.eu",
  5991. "role": "Developer"
  5992. }
  5993. ],
  5994. "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.",
  5995. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5996. "support": {
  5997. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5998. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  5999. },
  6000. "time": "2021-12-08T09:12:39+00:00"
  6001. },
  6002. {
  6003. "name": "vlucas/phpdotenv",
  6004. "version": "v3.6.10",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/vlucas/phpdotenv.git",
  6008. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/5b547cdb25825f10251370f57ba5d9d924e6f68e",
  6013. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e",
  6014. "shasum": "",
  6015. "mirrors": [
  6016. {
  6017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6018. "preferred": true
  6019. }
  6020. ]
  6021. },
  6022. "require": {
  6023. "php": "^5.4 || ^7.0 || ^8.0",
  6024. "phpoption/phpoption": "^1.5.2",
  6025. "symfony/polyfill-ctype": "^1.17"
  6026. },
  6027. "require-dev": {
  6028. "ext-filter": "*",
  6029. "ext-pcre": "*",
  6030. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  6031. },
  6032. "suggest": {
  6033. "ext-filter": "Required to use the boolean validator.",
  6034. "ext-pcre": "Required to use most of the library."
  6035. },
  6036. "type": "library",
  6037. "extra": {
  6038. "branch-alias": {
  6039. "dev-master": "3.6-dev"
  6040. }
  6041. },
  6042. "autoload": {
  6043. "psr-4": {
  6044. "Dotenv\\": "src/"
  6045. }
  6046. },
  6047. "notification-url": "https://packagist.org/downloads/",
  6048. "license": [
  6049. "BSD-3-Clause"
  6050. ],
  6051. "authors": [
  6052. {
  6053. "name": "Graham Campbell",
  6054. "email": "hello@gjcampbell.co.uk",
  6055. "homepage": "https://github.com/GrahamCampbell"
  6056. },
  6057. {
  6058. "name": "Vance Lucas",
  6059. "email": "vance@vancelucas.com",
  6060. "homepage": "https://github.com/vlucas"
  6061. }
  6062. ],
  6063. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6064. "keywords": [
  6065. "dotenv",
  6066. "env",
  6067. "environment"
  6068. ],
  6069. "support": {
  6070. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6071. "source": "https://github.com/vlucas/phpdotenv/tree/v3.6.10"
  6072. },
  6073. "funding": [
  6074. {
  6075. "url": "https://github.com/GrahamCampbell",
  6076. "type": "github"
  6077. },
  6078. {
  6079. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6080. "type": "tidelift"
  6081. }
  6082. ],
  6083. "time": "2021-12-12T23:02:06+00:00"
  6084. },
  6085. {
  6086. "name": "zendframework/zend-diactoros",
  6087. "version": "2.2.1",
  6088. "source": {
  6089. "type": "git",
  6090. "url": "https://github.com/zendframework/zend-diactoros.git",
  6091. "reference": "de5847b068362a88684a55b0dbb40d85986cfa52"
  6092. },
  6093. "dist": {
  6094. "type": "zip",
  6095. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/de5847b068362a88684a55b0dbb40d85986cfa52",
  6096. "reference": "de5847b068362a88684a55b0dbb40d85986cfa52",
  6097. "shasum": "",
  6098. "mirrors": [
  6099. {
  6100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6101. "preferred": true
  6102. }
  6103. ]
  6104. },
  6105. "require": {
  6106. "php": "^7.1",
  6107. "psr/http-factory": "^1.0",
  6108. "psr/http-message": "^1.0"
  6109. },
  6110. "provide": {
  6111. "psr/http-factory-implementation": "1.0",
  6112. "psr/http-message-implementation": "1.0"
  6113. },
  6114. "require-dev": {
  6115. "ext-curl": "*",
  6116. "ext-dom": "*",
  6117. "ext-libxml": "*",
  6118. "http-interop/http-factory-tests": "^0.5.0",
  6119. "php-http/psr7-integration-tests": "dev-master",
  6120. "phpunit/phpunit": "^7.0.2",
  6121. "zendframework/zend-coding-standard": "~1.0.0"
  6122. },
  6123. "type": "library",
  6124. "extra": {
  6125. "branch-alias": {
  6126. "dev-master": "2.1.x-dev",
  6127. "dev-develop": "2.2.x-dev",
  6128. "dev-release-1.8": "1.8.x-dev"
  6129. }
  6130. },
  6131. "autoload": {
  6132. "files": [
  6133. "src/functions/create_uploaded_file.php",
  6134. "src/functions/marshal_headers_from_sapi.php",
  6135. "src/functions/marshal_method_from_sapi.php",
  6136. "src/functions/marshal_protocol_version_from_sapi.php",
  6137. "src/functions/marshal_uri_from_sapi.php",
  6138. "src/functions/normalize_server.php",
  6139. "src/functions/normalize_uploaded_files.php",
  6140. "src/functions/parse_cookie_header.php"
  6141. ],
  6142. "psr-4": {
  6143. "Zend\\Diactoros\\": "src/"
  6144. }
  6145. },
  6146. "notification-url": "https://packagist.org/downloads/",
  6147. "license": [
  6148. "BSD-3-Clause"
  6149. ],
  6150. "description": "PSR HTTP Message implementations",
  6151. "keywords": [
  6152. "http",
  6153. "psr",
  6154. "psr-7"
  6155. ],
  6156. "support": {
  6157. "docs": "https://docs.zendframework.com/zend-diactoros/",
  6158. "forum": "https://discourse.zendframework.com/c/questions/exprssive",
  6159. "issues": "https://github.com/zendframework/zend-diactoros/issues",
  6160. "rss": "https://github.com/zendframework/zend-diactoros/releases.atom",
  6161. "slack": "https://zendframework-slack.herokuapp.com",
  6162. "source": "https://github.com/zendframework/zend-diactoros"
  6163. },
  6164. "abandoned": "laminas/laminas-diactoros",
  6165. "time": "2019-11-13T19:16:13+00:00"
  6166. }
  6167. ],
  6168. "packages-dev": [
  6169. {
  6170. "name": "beyondcode/laravel-dump-server",
  6171. "version": "1.3.0",
  6172. "source": {
  6173. "type": "git",
  6174. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  6175. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a"
  6176. },
  6177. "dist": {
  6178. "type": "zip",
  6179. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  6180. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  6181. "shasum": "",
  6182. "mirrors": [
  6183. {
  6184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6185. "preferred": true
  6186. }
  6187. ]
  6188. },
  6189. "require": {
  6190. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0",
  6191. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0",
  6192. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
  6193. "php": "^7.1",
  6194. "symfony/var-dumper": "^4.1.1"
  6195. },
  6196. "require-dev": {
  6197. "larapack/dd": "^1.0",
  6198. "phpunit/phpunit": "^7.0"
  6199. },
  6200. "type": "library",
  6201. "extra": {
  6202. "laravel": {
  6203. "providers": [
  6204. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  6205. ]
  6206. }
  6207. },
  6208. "autoload": {
  6209. "files": [
  6210. "helpers.php"
  6211. ],
  6212. "psr-4": {
  6213. "BeyondCode\\DumpServer\\": "src"
  6214. }
  6215. },
  6216. "notification-url": "https://packagist.org/downloads/",
  6217. "license": [
  6218. "MIT"
  6219. ],
  6220. "authors": [
  6221. {
  6222. "name": "Marcel Pociot",
  6223. "email": "marcel@beyondco.de",
  6224. "homepage": "https://beyondco.de",
  6225. "role": "Developer"
  6226. }
  6227. ],
  6228. "description": "Symfony Var-Dump Server for Laravel",
  6229. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  6230. "keywords": [
  6231. "beyondcode",
  6232. "laravel-dump-server"
  6233. ],
  6234. "support": {
  6235. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  6236. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.3.0"
  6237. },
  6238. "time": "2019-08-11T13:17:40+00:00"
  6239. },
  6240. {
  6241. "name": "doctrine/instantiator",
  6242. "version": "1.4.1",
  6243. "source": {
  6244. "type": "git",
  6245. "url": "https://github.com/doctrine/instantiator.git",
  6246. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  6247. },
  6248. "dist": {
  6249. "type": "zip",
  6250. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  6251. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  6252. "shasum": "",
  6253. "mirrors": [
  6254. {
  6255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6256. "preferred": true
  6257. }
  6258. ]
  6259. },
  6260. "require": {
  6261. "php": "^7.1 || ^8.0"
  6262. },
  6263. "require-dev": {
  6264. "doctrine/coding-standard": "^9",
  6265. "ext-pdo": "*",
  6266. "ext-phar": "*",
  6267. "phpbench/phpbench": "^0.16 || ^1",
  6268. "phpstan/phpstan": "^1.4",
  6269. "phpstan/phpstan-phpunit": "^1",
  6270. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  6271. "vimeo/psalm": "^4.22"
  6272. },
  6273. "type": "library",
  6274. "autoload": {
  6275. "psr-4": {
  6276. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  6277. }
  6278. },
  6279. "notification-url": "https://packagist.org/downloads/",
  6280. "license": [
  6281. "MIT"
  6282. ],
  6283. "authors": [
  6284. {
  6285. "name": "Marco Pivetta",
  6286. "email": "ocramius@gmail.com",
  6287. "homepage": "https://ocramius.github.io/"
  6288. }
  6289. ],
  6290. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  6291. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  6292. "keywords": [
  6293. "constructor",
  6294. "instantiate"
  6295. ],
  6296. "support": {
  6297. "issues": "https://github.com/doctrine/instantiator/issues",
  6298. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  6299. },
  6300. "funding": [
  6301. {
  6302. "url": "https://www.doctrine-project.org/sponsorship.html",
  6303. "type": "custom"
  6304. },
  6305. {
  6306. "url": "https://www.patreon.com/phpdoctrine",
  6307. "type": "patreon"
  6308. },
  6309. {
  6310. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  6311. "type": "tidelift"
  6312. }
  6313. ],
  6314. "time": "2022-03-03T08:28:38+00:00"
  6315. },
  6316. {
  6317. "name": "filp/whoops",
  6318. "version": "2.14.5",
  6319. "source": {
  6320. "type": "git",
  6321. "url": "https://github.com/filp/whoops.git",
  6322. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  6323. },
  6324. "dist": {
  6325. "type": "zip",
  6326. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  6327. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  6328. "shasum": "",
  6329. "mirrors": [
  6330. {
  6331. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6332. "preferred": true
  6333. }
  6334. ]
  6335. },
  6336. "require": {
  6337. "php": "^5.5.9 || ^7.0 || ^8.0",
  6338. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  6339. },
  6340. "require-dev": {
  6341. "mockery/mockery": "^0.9 || ^1.0",
  6342. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  6343. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  6344. },
  6345. "suggest": {
  6346. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6347. "whoops/soap": "Formats errors as SOAP responses"
  6348. },
  6349. "type": "library",
  6350. "extra": {
  6351. "branch-alias": {
  6352. "dev-master": "2.7-dev"
  6353. }
  6354. },
  6355. "autoload": {
  6356. "psr-4": {
  6357. "Whoops\\": "src/Whoops/"
  6358. }
  6359. },
  6360. "notification-url": "https://packagist.org/downloads/",
  6361. "license": [
  6362. "MIT"
  6363. ],
  6364. "authors": [
  6365. {
  6366. "name": "Filipe Dobreira",
  6367. "homepage": "https://github.com/filp",
  6368. "role": "Developer"
  6369. }
  6370. ],
  6371. "description": "php error handling for cool kids",
  6372. "homepage": "https://filp.github.io/whoops/",
  6373. "keywords": [
  6374. "error",
  6375. "exception",
  6376. "handling",
  6377. "library",
  6378. "throwable",
  6379. "whoops"
  6380. ],
  6381. "support": {
  6382. "issues": "https://github.com/filp/whoops/issues",
  6383. "source": "https://github.com/filp/whoops/tree/2.14.5"
  6384. },
  6385. "funding": [
  6386. {
  6387. "url": "https://github.com/denis-sokolov",
  6388. "type": "github"
  6389. }
  6390. ],
  6391. "time": "2022-01-07T12:00:00+00:00"
  6392. },
  6393. {
  6394. "name": "fzaninotto/faker",
  6395. "version": "v1.9.2",
  6396. "source": {
  6397. "type": "git",
  6398. "url": "https://github.com/fzaninotto/Faker.git",
  6399. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  6400. },
  6401. "dist": {
  6402. "type": "zip",
  6403. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  6404. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  6405. "shasum": "",
  6406. "mirrors": [
  6407. {
  6408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6409. "preferred": true
  6410. }
  6411. ]
  6412. },
  6413. "require": {
  6414. "php": "^5.3.3 || ^7.0"
  6415. },
  6416. "require-dev": {
  6417. "ext-intl": "*",
  6418. "phpunit/phpunit": "^4.8.35 || ^5.7",
  6419. "squizlabs/php_codesniffer": "^2.9.2"
  6420. },
  6421. "type": "library",
  6422. "extra": {
  6423. "branch-alias": {
  6424. "dev-master": "1.9-dev"
  6425. }
  6426. },
  6427. "autoload": {
  6428. "psr-4": {
  6429. "Faker\\": "src/Faker/"
  6430. }
  6431. },
  6432. "notification-url": "https://packagist.org/downloads/",
  6433. "license": [
  6434. "MIT"
  6435. ],
  6436. "authors": [
  6437. {
  6438. "name": "François Zaninotto"
  6439. }
  6440. ],
  6441. "description": "Faker is a PHP library that generates fake data for you.",
  6442. "keywords": [
  6443. "data",
  6444. "faker",
  6445. "fixtures"
  6446. ],
  6447. "support": {
  6448. "issues": "https://github.com/fzaninotto/Faker/issues",
  6449. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  6450. },
  6451. "abandoned": true,
  6452. "time": "2020-12-11T09:56:16+00:00"
  6453. },
  6454. {
  6455. "name": "hamcrest/hamcrest-php",
  6456. "version": "v2.0.1",
  6457. "source": {
  6458. "type": "git",
  6459. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6460. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6461. },
  6462. "dist": {
  6463. "type": "zip",
  6464. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6465. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6466. "shasum": "",
  6467. "mirrors": [
  6468. {
  6469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6470. "preferred": true
  6471. }
  6472. ]
  6473. },
  6474. "require": {
  6475. "php": "^5.3|^7.0|^8.0"
  6476. },
  6477. "replace": {
  6478. "cordoval/hamcrest-php": "*",
  6479. "davedevelopment/hamcrest-php": "*",
  6480. "kodova/hamcrest-php": "*"
  6481. },
  6482. "require-dev": {
  6483. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6484. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6485. },
  6486. "type": "library",
  6487. "extra": {
  6488. "branch-alias": {
  6489. "dev-master": "2.1-dev"
  6490. }
  6491. },
  6492. "autoload": {
  6493. "classmap": [
  6494. "hamcrest"
  6495. ]
  6496. },
  6497. "notification-url": "https://packagist.org/downloads/",
  6498. "license": [
  6499. "BSD-3-Clause"
  6500. ],
  6501. "description": "This is the PHP port of Hamcrest Matchers",
  6502. "keywords": [
  6503. "test"
  6504. ],
  6505. "support": {
  6506. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6507. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  6508. },
  6509. "time": "2020-07-09T08:09:16+00:00"
  6510. },
  6511. {
  6512. "name": "mockery/mockery",
  6513. "version": "1.3.5",
  6514. "source": {
  6515. "type": "git",
  6516. "url": "https://github.com/mockery/mockery.git",
  6517. "reference": "472fa8ca4e55483d55ee1e73c963718c4393791d"
  6518. },
  6519. "dist": {
  6520. "type": "zip",
  6521. "url": "https://api.github.com/repos/mockery/mockery/zipball/472fa8ca4e55483d55ee1e73c963718c4393791d",
  6522. "reference": "472fa8ca4e55483d55ee1e73c963718c4393791d",
  6523. "shasum": "",
  6524. "mirrors": [
  6525. {
  6526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6527. "preferred": true
  6528. }
  6529. ]
  6530. },
  6531. "require": {
  6532. "hamcrest/hamcrest-php": "^2.0.1",
  6533. "lib-pcre": ">=7.0",
  6534. "php": ">=5.6.0"
  6535. },
  6536. "require-dev": {
  6537. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  6538. },
  6539. "type": "library",
  6540. "extra": {
  6541. "branch-alias": {
  6542. "dev-master": "1.3.x-dev"
  6543. }
  6544. },
  6545. "autoload": {
  6546. "psr-0": {
  6547. "Mockery": "library/"
  6548. }
  6549. },
  6550. "notification-url": "https://packagist.org/downloads/",
  6551. "license": [
  6552. "BSD-3-Clause"
  6553. ],
  6554. "authors": [
  6555. {
  6556. "name": "Pádraic Brady",
  6557. "email": "padraic.brady@gmail.com",
  6558. "homepage": "http://blog.astrumfutura.com"
  6559. },
  6560. {
  6561. "name": "Dave Marshall",
  6562. "email": "dave.marshall@atstsolutions.co.uk",
  6563. "homepage": "http://davedevelopment.co.uk"
  6564. }
  6565. ],
  6566. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6567. "homepage": "https://github.com/mockery/mockery",
  6568. "keywords": [
  6569. "BDD",
  6570. "TDD",
  6571. "library",
  6572. "mock",
  6573. "mock objects",
  6574. "mockery",
  6575. "stub",
  6576. "test",
  6577. "test double",
  6578. "testing"
  6579. ],
  6580. "support": {
  6581. "issues": "https://github.com/mockery/mockery/issues",
  6582. "source": "https://github.com/mockery/mockery/tree/1.3.5"
  6583. },
  6584. "time": "2021-09-13T15:33:03+00:00"
  6585. },
  6586. {
  6587. "name": "myclabs/deep-copy",
  6588. "version": "1.11.0",
  6589. "source": {
  6590. "type": "git",
  6591. "url": "https://github.com/myclabs/DeepCopy.git",
  6592. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  6593. },
  6594. "dist": {
  6595. "type": "zip",
  6596. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  6597. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  6598. "shasum": "",
  6599. "mirrors": [
  6600. {
  6601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6602. "preferred": true
  6603. }
  6604. ]
  6605. },
  6606. "require": {
  6607. "php": "^7.1 || ^8.0"
  6608. },
  6609. "conflict": {
  6610. "doctrine/collections": "<1.6.8",
  6611. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  6612. },
  6613. "require-dev": {
  6614. "doctrine/collections": "^1.6.8",
  6615. "doctrine/common": "^2.13.3 || ^3.2.2",
  6616. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  6617. },
  6618. "type": "library",
  6619. "autoload": {
  6620. "files": [
  6621. "src/DeepCopy/deep_copy.php"
  6622. ],
  6623. "psr-4": {
  6624. "DeepCopy\\": "src/DeepCopy/"
  6625. }
  6626. },
  6627. "notification-url": "https://packagist.org/downloads/",
  6628. "license": [
  6629. "MIT"
  6630. ],
  6631. "description": "Create deep copies (clones) of your objects",
  6632. "keywords": [
  6633. "clone",
  6634. "copy",
  6635. "duplicate",
  6636. "object",
  6637. "object graph"
  6638. ],
  6639. "support": {
  6640. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6641. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  6642. },
  6643. "funding": [
  6644. {
  6645. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6646. "type": "tidelift"
  6647. }
  6648. ],
  6649. "time": "2022-03-03T13:19:32+00:00"
  6650. },
  6651. {
  6652. "name": "nunomaduro/collision",
  6653. "version": "v3.2.0",
  6654. "source": {
  6655. "type": "git",
  6656. "url": "https://github.com/nunomaduro/collision.git",
  6657. "reference": "f7c45764dfe4ba5f2618d265a6f1f9c72732e01d"
  6658. },
  6659. "dist": {
  6660. "type": "zip",
  6661. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f7c45764dfe4ba5f2618d265a6f1f9c72732e01d",
  6662. "reference": "f7c45764dfe4ba5f2618d265a6f1f9c72732e01d",
  6663. "shasum": "",
  6664. "mirrors": [
  6665. {
  6666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6667. "preferred": true
  6668. }
  6669. ]
  6670. },
  6671. "require": {
  6672. "filp/whoops": "^2.1.4",
  6673. "php": "^7.2.5 || ^8.0",
  6674. "php-parallel-lint/php-console-highlighter": "0.5.*",
  6675. "symfony/console": "~2.8|~3.3|~4.0"
  6676. },
  6677. "require-dev": {
  6678. "laravel/framework": "^6.0",
  6679. "phpunit/phpunit": "^8.0 || ^9.0"
  6680. },
  6681. "type": "library",
  6682. "extra": {
  6683. "laravel": {
  6684. "providers": [
  6685. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6686. ]
  6687. }
  6688. },
  6689. "autoload": {
  6690. "psr-4": {
  6691. "NunoMaduro\\Collision\\": "src/"
  6692. }
  6693. },
  6694. "notification-url": "https://packagist.org/downloads/",
  6695. "license": [
  6696. "MIT"
  6697. ],
  6698. "authors": [
  6699. {
  6700. "name": "Nuno Maduro",
  6701. "email": "enunomaduro@gmail.com"
  6702. }
  6703. ],
  6704. "description": "Cli error handling for console/command-line PHP applications.",
  6705. "keywords": [
  6706. "artisan",
  6707. "cli",
  6708. "command-line",
  6709. "console",
  6710. "error",
  6711. "handling",
  6712. "laravel",
  6713. "laravel-zero",
  6714. "php",
  6715. "symfony"
  6716. ],
  6717. "support": {
  6718. "issues": "https://github.com/nunomaduro/collision/issues",
  6719. "source": "https://github.com/nunomaduro/collision"
  6720. },
  6721. "funding": [
  6722. {
  6723. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  6724. "type": "custom"
  6725. },
  6726. {
  6727. "url": "https://github.com/nunomaduro",
  6728. "type": "github"
  6729. },
  6730. {
  6731. "url": "https://www.patreon.com/nunomaduro",
  6732. "type": "patreon"
  6733. }
  6734. ],
  6735. "time": "2021-02-11T09:01:42+00:00"
  6736. },
  6737. {
  6738. "name": "phar-io/manifest",
  6739. "version": "1.0.3",
  6740. "source": {
  6741. "type": "git",
  6742. "url": "https://github.com/phar-io/manifest.git",
  6743. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  6744. },
  6745. "dist": {
  6746. "type": "zip",
  6747. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6748. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6749. "shasum": "",
  6750. "mirrors": [
  6751. {
  6752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6753. "preferred": true
  6754. }
  6755. ]
  6756. },
  6757. "require": {
  6758. "ext-dom": "*",
  6759. "ext-phar": "*",
  6760. "phar-io/version": "^2.0",
  6761. "php": "^5.6 || ^7.0"
  6762. },
  6763. "type": "library",
  6764. "extra": {
  6765. "branch-alias": {
  6766. "dev-master": "1.0.x-dev"
  6767. }
  6768. },
  6769. "autoload": {
  6770. "classmap": [
  6771. "src/"
  6772. ]
  6773. },
  6774. "notification-url": "https://packagist.org/downloads/",
  6775. "license": [
  6776. "BSD-3-Clause"
  6777. ],
  6778. "authors": [
  6779. {
  6780. "name": "Arne Blankerts",
  6781. "email": "arne@blankerts.de",
  6782. "role": "Developer"
  6783. },
  6784. {
  6785. "name": "Sebastian Heuer",
  6786. "email": "sebastian@phpeople.de",
  6787. "role": "Developer"
  6788. },
  6789. {
  6790. "name": "Sebastian Bergmann",
  6791. "email": "sebastian@phpunit.de",
  6792. "role": "Developer"
  6793. }
  6794. ],
  6795. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6796. "support": {
  6797. "issues": "https://github.com/phar-io/manifest/issues",
  6798. "source": "https://github.com/phar-io/manifest/tree/master"
  6799. },
  6800. "time": "2018-07-08T19:23:20+00:00"
  6801. },
  6802. {
  6803. "name": "phar-io/version",
  6804. "version": "2.0.1",
  6805. "source": {
  6806. "type": "git",
  6807. "url": "https://github.com/phar-io/version.git",
  6808. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  6809. },
  6810. "dist": {
  6811. "type": "zip",
  6812. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6813. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6814. "shasum": "",
  6815. "mirrors": [
  6816. {
  6817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6818. "preferred": true
  6819. }
  6820. ]
  6821. },
  6822. "require": {
  6823. "php": "^5.6 || ^7.0"
  6824. },
  6825. "type": "library",
  6826. "autoload": {
  6827. "classmap": [
  6828. "src/"
  6829. ]
  6830. },
  6831. "notification-url": "https://packagist.org/downloads/",
  6832. "license": [
  6833. "BSD-3-Clause"
  6834. ],
  6835. "authors": [
  6836. {
  6837. "name": "Arne Blankerts",
  6838. "email": "arne@blankerts.de",
  6839. "role": "Developer"
  6840. },
  6841. {
  6842. "name": "Sebastian Heuer",
  6843. "email": "sebastian@phpeople.de",
  6844. "role": "Developer"
  6845. },
  6846. {
  6847. "name": "Sebastian Bergmann",
  6848. "email": "sebastian@phpunit.de",
  6849. "role": "Developer"
  6850. }
  6851. ],
  6852. "description": "Library for handling version information and constraints",
  6853. "support": {
  6854. "issues": "https://github.com/phar-io/version/issues",
  6855. "source": "https://github.com/phar-io/version/tree/master"
  6856. },
  6857. "time": "2018-07-08T19:19:57+00:00"
  6858. },
  6859. {
  6860. "name": "phpdocumentor/reflection-common",
  6861. "version": "2.2.0",
  6862. "source": {
  6863. "type": "git",
  6864. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6865. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  6866. },
  6867. "dist": {
  6868. "type": "zip",
  6869. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6870. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6871. "shasum": "",
  6872. "mirrors": [
  6873. {
  6874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6875. "preferred": true
  6876. }
  6877. ]
  6878. },
  6879. "require": {
  6880. "php": "^7.2 || ^8.0"
  6881. },
  6882. "type": "library",
  6883. "extra": {
  6884. "branch-alias": {
  6885. "dev-2.x": "2.x-dev"
  6886. }
  6887. },
  6888. "autoload": {
  6889. "psr-4": {
  6890. "phpDocumentor\\Reflection\\": "src/"
  6891. }
  6892. },
  6893. "notification-url": "https://packagist.org/downloads/",
  6894. "license": [
  6895. "MIT"
  6896. ],
  6897. "authors": [
  6898. {
  6899. "name": "Jaap van Otterdijk",
  6900. "email": "opensource@ijaap.nl"
  6901. }
  6902. ],
  6903. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6904. "homepage": "http://www.phpdoc.org",
  6905. "keywords": [
  6906. "FQSEN",
  6907. "phpDocumentor",
  6908. "phpdoc",
  6909. "reflection",
  6910. "static analysis"
  6911. ],
  6912. "support": {
  6913. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  6914. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  6915. },
  6916. "time": "2020-06-27T09:03:43+00:00"
  6917. },
  6918. {
  6919. "name": "phpdocumentor/reflection-docblock",
  6920. "version": "5.3.0",
  6921. "source": {
  6922. "type": "git",
  6923. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6924. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  6925. },
  6926. "dist": {
  6927. "type": "zip",
  6928. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  6929. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  6930. "shasum": "",
  6931. "mirrors": [
  6932. {
  6933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6934. "preferred": true
  6935. }
  6936. ]
  6937. },
  6938. "require": {
  6939. "ext-filter": "*",
  6940. "php": "^7.2 || ^8.0",
  6941. "phpdocumentor/reflection-common": "^2.2",
  6942. "phpdocumentor/type-resolver": "^1.3",
  6943. "webmozart/assert": "^1.9.1"
  6944. },
  6945. "require-dev": {
  6946. "mockery/mockery": "~1.3.2",
  6947. "psalm/phar": "^4.8"
  6948. },
  6949. "type": "library",
  6950. "extra": {
  6951. "branch-alias": {
  6952. "dev-master": "5.x-dev"
  6953. }
  6954. },
  6955. "autoload": {
  6956. "psr-4": {
  6957. "phpDocumentor\\Reflection\\": "src"
  6958. }
  6959. },
  6960. "notification-url": "https://packagist.org/downloads/",
  6961. "license": [
  6962. "MIT"
  6963. ],
  6964. "authors": [
  6965. {
  6966. "name": "Mike van Riel",
  6967. "email": "me@mikevanriel.com"
  6968. },
  6969. {
  6970. "name": "Jaap van Otterdijk",
  6971. "email": "account@ijaap.nl"
  6972. }
  6973. ],
  6974. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6975. "support": {
  6976. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  6977. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  6978. },
  6979. "time": "2021-10-19T17:43:47+00:00"
  6980. },
  6981. {
  6982. "name": "phpdocumentor/type-resolver",
  6983. "version": "1.6.1",
  6984. "source": {
  6985. "type": "git",
  6986. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6987. "reference": "77a32518733312af16a44300404e945338981de3"
  6988. },
  6989. "dist": {
  6990. "type": "zip",
  6991. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  6992. "reference": "77a32518733312af16a44300404e945338981de3",
  6993. "shasum": "",
  6994. "mirrors": [
  6995. {
  6996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6997. "preferred": true
  6998. }
  6999. ]
  7000. },
  7001. "require": {
  7002. "php": "^7.2 || ^8.0",
  7003. "phpdocumentor/reflection-common": "^2.0"
  7004. },
  7005. "require-dev": {
  7006. "ext-tokenizer": "*",
  7007. "psalm/phar": "^4.8"
  7008. },
  7009. "type": "library",
  7010. "extra": {
  7011. "branch-alias": {
  7012. "dev-1.x": "1.x-dev"
  7013. }
  7014. },
  7015. "autoload": {
  7016. "psr-4": {
  7017. "phpDocumentor\\Reflection\\": "src"
  7018. }
  7019. },
  7020. "notification-url": "https://packagist.org/downloads/",
  7021. "license": [
  7022. "MIT"
  7023. ],
  7024. "authors": [
  7025. {
  7026. "name": "Mike van Riel",
  7027. "email": "me@mikevanriel.com"
  7028. }
  7029. ],
  7030. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  7031. "support": {
  7032. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  7033. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  7034. },
  7035. "time": "2022-03-15T21:29:03+00:00"
  7036. },
  7037. {
  7038. "name": "phpspec/prophecy",
  7039. "version": "v1.15.0",
  7040. "source": {
  7041. "type": "git",
  7042. "url": "https://github.com/phpspec/prophecy.git",
  7043. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  7044. },
  7045. "dist": {
  7046. "type": "zip",
  7047. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  7048. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  7049. "shasum": "",
  7050. "mirrors": [
  7051. {
  7052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7053. "preferred": true
  7054. }
  7055. ]
  7056. },
  7057. "require": {
  7058. "doctrine/instantiator": "^1.2",
  7059. "php": "^7.2 || ~8.0, <8.2",
  7060. "phpdocumentor/reflection-docblock": "^5.2",
  7061. "sebastian/comparator": "^3.0 || ^4.0",
  7062. "sebastian/recursion-context": "^3.0 || ^4.0"
  7063. },
  7064. "require-dev": {
  7065. "phpspec/phpspec": "^6.0 || ^7.0",
  7066. "phpunit/phpunit": "^8.0 || ^9.0"
  7067. },
  7068. "type": "library",
  7069. "extra": {
  7070. "branch-alias": {
  7071. "dev-master": "1.x-dev"
  7072. }
  7073. },
  7074. "autoload": {
  7075. "psr-4": {
  7076. "Prophecy\\": "src/Prophecy"
  7077. }
  7078. },
  7079. "notification-url": "https://packagist.org/downloads/",
  7080. "license": [
  7081. "MIT"
  7082. ],
  7083. "authors": [
  7084. {
  7085. "name": "Konstantin Kudryashov",
  7086. "email": "ever.zet@gmail.com",
  7087. "homepage": "http://everzet.com"
  7088. },
  7089. {
  7090. "name": "Marcello Duarte",
  7091. "email": "marcello.duarte@gmail.com"
  7092. }
  7093. ],
  7094. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7095. "homepage": "https://github.com/phpspec/prophecy",
  7096. "keywords": [
  7097. "Double",
  7098. "Dummy",
  7099. "fake",
  7100. "mock",
  7101. "spy",
  7102. "stub"
  7103. ],
  7104. "support": {
  7105. "issues": "https://github.com/phpspec/prophecy/issues",
  7106. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  7107. },
  7108. "time": "2021-12-08T12:19:24+00:00"
  7109. },
  7110. {
  7111. "name": "phpunit/php-code-coverage",
  7112. "version": "6.1.4",
  7113. "source": {
  7114. "type": "git",
  7115. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7116. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  7117. },
  7118. "dist": {
  7119. "type": "zip",
  7120. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  7121. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  7122. "shasum": "",
  7123. "mirrors": [
  7124. {
  7125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7126. "preferred": true
  7127. }
  7128. ]
  7129. },
  7130. "require": {
  7131. "ext-dom": "*",
  7132. "ext-xmlwriter": "*",
  7133. "php": "^7.1",
  7134. "phpunit/php-file-iterator": "^2.0",
  7135. "phpunit/php-text-template": "^1.2.1",
  7136. "phpunit/php-token-stream": "^3.0",
  7137. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7138. "sebastian/environment": "^3.1 || ^4.0",
  7139. "sebastian/version": "^2.0.1",
  7140. "theseer/tokenizer": "^1.1"
  7141. },
  7142. "require-dev": {
  7143. "phpunit/phpunit": "^7.0"
  7144. },
  7145. "suggest": {
  7146. "ext-xdebug": "^2.6.0"
  7147. },
  7148. "type": "library",
  7149. "extra": {
  7150. "branch-alias": {
  7151. "dev-master": "6.1-dev"
  7152. }
  7153. },
  7154. "autoload": {
  7155. "classmap": [
  7156. "src/"
  7157. ]
  7158. },
  7159. "notification-url": "https://packagist.org/downloads/",
  7160. "license": [
  7161. "BSD-3-Clause"
  7162. ],
  7163. "authors": [
  7164. {
  7165. "name": "Sebastian Bergmann",
  7166. "email": "sebastian@phpunit.de",
  7167. "role": "lead"
  7168. }
  7169. ],
  7170. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7171. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7172. "keywords": [
  7173. "coverage",
  7174. "testing",
  7175. "xunit"
  7176. ],
  7177. "support": {
  7178. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7179. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/master"
  7180. },
  7181. "time": "2018-10-31T16:06:48+00:00"
  7182. },
  7183. {
  7184. "name": "phpunit/php-file-iterator",
  7185. "version": "2.0.5",
  7186. "source": {
  7187. "type": "git",
  7188. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7189. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
  7190. },
  7191. "dist": {
  7192. "type": "zip",
  7193. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  7194. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  7195. "shasum": "",
  7196. "mirrors": [
  7197. {
  7198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7199. "preferred": true
  7200. }
  7201. ]
  7202. },
  7203. "require": {
  7204. "php": ">=7.1"
  7205. },
  7206. "require-dev": {
  7207. "phpunit/phpunit": "^8.5"
  7208. },
  7209. "type": "library",
  7210. "extra": {
  7211. "branch-alias": {
  7212. "dev-master": "2.0.x-dev"
  7213. }
  7214. },
  7215. "autoload": {
  7216. "classmap": [
  7217. "src/"
  7218. ]
  7219. },
  7220. "notification-url": "https://packagist.org/downloads/",
  7221. "license": [
  7222. "BSD-3-Clause"
  7223. ],
  7224. "authors": [
  7225. {
  7226. "name": "Sebastian Bergmann",
  7227. "email": "sebastian@phpunit.de",
  7228. "role": "lead"
  7229. }
  7230. ],
  7231. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7232. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7233. "keywords": [
  7234. "filesystem",
  7235. "iterator"
  7236. ],
  7237. "support": {
  7238. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7239. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5"
  7240. },
  7241. "funding": [
  7242. {
  7243. "url": "https://github.com/sebastianbergmann",
  7244. "type": "github"
  7245. }
  7246. ],
  7247. "time": "2021-12-02T12:42:26+00:00"
  7248. },
  7249. {
  7250. "name": "phpunit/php-text-template",
  7251. "version": "1.2.1",
  7252. "source": {
  7253. "type": "git",
  7254. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7255. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7256. },
  7257. "dist": {
  7258. "type": "zip",
  7259. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7260. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7261. "shasum": "",
  7262. "mirrors": [
  7263. {
  7264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7265. "preferred": true
  7266. }
  7267. ]
  7268. },
  7269. "require": {
  7270. "php": ">=5.3.3"
  7271. },
  7272. "type": "library",
  7273. "autoload": {
  7274. "classmap": [
  7275. "src/"
  7276. ]
  7277. },
  7278. "notification-url": "https://packagist.org/downloads/",
  7279. "license": [
  7280. "BSD-3-Clause"
  7281. ],
  7282. "authors": [
  7283. {
  7284. "name": "Sebastian Bergmann",
  7285. "email": "sebastian@phpunit.de",
  7286. "role": "lead"
  7287. }
  7288. ],
  7289. "description": "Simple template engine.",
  7290. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7291. "keywords": [
  7292. "template"
  7293. ],
  7294. "support": {
  7295. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7296. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  7297. },
  7298. "time": "2015-06-21T13:50:34+00:00"
  7299. },
  7300. {
  7301. "name": "phpunit/php-timer",
  7302. "version": "2.1.3",
  7303. "source": {
  7304. "type": "git",
  7305. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7306. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  7307. },
  7308. "dist": {
  7309. "type": "zip",
  7310. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  7311. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  7312. "shasum": "",
  7313. "mirrors": [
  7314. {
  7315. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7316. "preferred": true
  7317. }
  7318. ]
  7319. },
  7320. "require": {
  7321. "php": ">=7.1"
  7322. },
  7323. "require-dev": {
  7324. "phpunit/phpunit": "^8.5"
  7325. },
  7326. "type": "library",
  7327. "extra": {
  7328. "branch-alias": {
  7329. "dev-master": "2.1-dev"
  7330. }
  7331. },
  7332. "autoload": {
  7333. "classmap": [
  7334. "src/"
  7335. ]
  7336. },
  7337. "notification-url": "https://packagist.org/downloads/",
  7338. "license": [
  7339. "BSD-3-Clause"
  7340. ],
  7341. "authors": [
  7342. {
  7343. "name": "Sebastian Bergmann",
  7344. "email": "sebastian@phpunit.de",
  7345. "role": "lead"
  7346. }
  7347. ],
  7348. "description": "Utility class for timing",
  7349. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7350. "keywords": [
  7351. "timer"
  7352. ],
  7353. "support": {
  7354. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7355. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  7356. },
  7357. "funding": [
  7358. {
  7359. "url": "https://github.com/sebastianbergmann",
  7360. "type": "github"
  7361. }
  7362. ],
  7363. "time": "2020-11-30T08:20:02+00:00"
  7364. },
  7365. {
  7366. "name": "phpunit/php-token-stream",
  7367. "version": "3.1.3",
  7368. "source": {
  7369. "type": "git",
  7370. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7371. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768"
  7372. },
  7373. "dist": {
  7374. "type": "zip",
  7375. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9c1da83261628cb24b6a6df371b6e312b3954768",
  7376. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768",
  7377. "shasum": "",
  7378. "mirrors": [
  7379. {
  7380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7381. "preferred": true
  7382. }
  7383. ]
  7384. },
  7385. "require": {
  7386. "ext-tokenizer": "*",
  7387. "php": ">=7.1"
  7388. },
  7389. "require-dev": {
  7390. "phpunit/phpunit": "^7.0"
  7391. },
  7392. "type": "library",
  7393. "extra": {
  7394. "branch-alias": {
  7395. "dev-master": "3.1-dev"
  7396. }
  7397. },
  7398. "autoload": {
  7399. "classmap": [
  7400. "src/"
  7401. ]
  7402. },
  7403. "notification-url": "https://packagist.org/downloads/",
  7404. "license": [
  7405. "BSD-3-Clause"
  7406. ],
  7407. "authors": [
  7408. {
  7409. "name": "Sebastian Bergmann",
  7410. "email": "sebastian@phpunit.de"
  7411. }
  7412. ],
  7413. "description": "Wrapper around PHP's tokenizer extension.",
  7414. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7415. "keywords": [
  7416. "tokenizer"
  7417. ],
  7418. "support": {
  7419. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  7420. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.3"
  7421. },
  7422. "funding": [
  7423. {
  7424. "url": "https://github.com/sebastianbergmann",
  7425. "type": "github"
  7426. }
  7427. ],
  7428. "abandoned": true,
  7429. "time": "2021-07-26T12:15:06+00:00"
  7430. },
  7431. {
  7432. "name": "phpunit/phpunit",
  7433. "version": "7.5.20",
  7434. "source": {
  7435. "type": "git",
  7436. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7437. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  7438. },
  7439. "dist": {
  7440. "type": "zip",
  7441. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  7442. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  7443. "shasum": "",
  7444. "mirrors": [
  7445. {
  7446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7447. "preferred": true
  7448. }
  7449. ]
  7450. },
  7451. "require": {
  7452. "doctrine/instantiator": "^1.1",
  7453. "ext-dom": "*",
  7454. "ext-json": "*",
  7455. "ext-libxml": "*",
  7456. "ext-mbstring": "*",
  7457. "ext-xml": "*",
  7458. "myclabs/deep-copy": "^1.7",
  7459. "phar-io/manifest": "^1.0.2",
  7460. "phar-io/version": "^2.0",
  7461. "php": "^7.1",
  7462. "phpspec/prophecy": "^1.7",
  7463. "phpunit/php-code-coverage": "^6.0.7",
  7464. "phpunit/php-file-iterator": "^2.0.1",
  7465. "phpunit/php-text-template": "^1.2.1",
  7466. "phpunit/php-timer": "^2.1",
  7467. "sebastian/comparator": "^3.0",
  7468. "sebastian/diff": "^3.0",
  7469. "sebastian/environment": "^4.0",
  7470. "sebastian/exporter": "^3.1",
  7471. "sebastian/global-state": "^2.0",
  7472. "sebastian/object-enumerator": "^3.0.3",
  7473. "sebastian/resource-operations": "^2.0",
  7474. "sebastian/version": "^2.0.1"
  7475. },
  7476. "conflict": {
  7477. "phpunit/phpunit-mock-objects": "*"
  7478. },
  7479. "require-dev": {
  7480. "ext-pdo": "*"
  7481. },
  7482. "suggest": {
  7483. "ext-soap": "*",
  7484. "ext-xdebug": "*",
  7485. "phpunit/php-invoker": "^2.0"
  7486. },
  7487. "bin": [
  7488. "phpunit"
  7489. ],
  7490. "type": "library",
  7491. "extra": {
  7492. "branch-alias": {
  7493. "dev-master": "7.5-dev"
  7494. }
  7495. },
  7496. "autoload": {
  7497. "classmap": [
  7498. "src/"
  7499. ]
  7500. },
  7501. "notification-url": "https://packagist.org/downloads/",
  7502. "license": [
  7503. "BSD-3-Clause"
  7504. ],
  7505. "authors": [
  7506. {
  7507. "name": "Sebastian Bergmann",
  7508. "email": "sebastian@phpunit.de",
  7509. "role": "lead"
  7510. }
  7511. ],
  7512. "description": "The PHP Unit Testing framework.",
  7513. "homepage": "https://phpunit.de/",
  7514. "keywords": [
  7515. "phpunit",
  7516. "testing",
  7517. "xunit"
  7518. ],
  7519. "support": {
  7520. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7521. "source": "https://github.com/sebastianbergmann/phpunit/tree/7.5.20"
  7522. },
  7523. "time": "2020-01-08T08:45:45+00:00"
  7524. },
  7525. {
  7526. "name": "sebastian/code-unit-reverse-lookup",
  7527. "version": "1.0.2",
  7528. "source": {
  7529. "type": "git",
  7530. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7531. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  7532. },
  7533. "dist": {
  7534. "type": "zip",
  7535. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  7536. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  7537. "shasum": "",
  7538. "mirrors": [
  7539. {
  7540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7541. "preferred": true
  7542. }
  7543. ]
  7544. },
  7545. "require": {
  7546. "php": ">=5.6"
  7547. },
  7548. "require-dev": {
  7549. "phpunit/phpunit": "^8.5"
  7550. },
  7551. "type": "library",
  7552. "extra": {
  7553. "branch-alias": {
  7554. "dev-master": "1.0.x-dev"
  7555. }
  7556. },
  7557. "autoload": {
  7558. "classmap": [
  7559. "src/"
  7560. ]
  7561. },
  7562. "notification-url": "https://packagist.org/downloads/",
  7563. "license": [
  7564. "BSD-3-Clause"
  7565. ],
  7566. "authors": [
  7567. {
  7568. "name": "Sebastian Bergmann",
  7569. "email": "sebastian@phpunit.de"
  7570. }
  7571. ],
  7572. "description": "Looks up which function or method a line of code belongs to",
  7573. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7574. "support": {
  7575. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7576. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  7577. },
  7578. "funding": [
  7579. {
  7580. "url": "https://github.com/sebastianbergmann",
  7581. "type": "github"
  7582. }
  7583. ],
  7584. "time": "2020-11-30T08:15:22+00:00"
  7585. },
  7586. {
  7587. "name": "sebastian/comparator",
  7588. "version": "3.0.3",
  7589. "source": {
  7590. "type": "git",
  7591. "url": "https://github.com/sebastianbergmann/comparator.git",
  7592. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  7593. },
  7594. "dist": {
  7595. "type": "zip",
  7596. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  7597. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  7598. "shasum": "",
  7599. "mirrors": [
  7600. {
  7601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7602. "preferred": true
  7603. }
  7604. ]
  7605. },
  7606. "require": {
  7607. "php": ">=7.1",
  7608. "sebastian/diff": "^3.0",
  7609. "sebastian/exporter": "^3.1"
  7610. },
  7611. "require-dev": {
  7612. "phpunit/phpunit": "^8.5"
  7613. },
  7614. "type": "library",
  7615. "extra": {
  7616. "branch-alias": {
  7617. "dev-master": "3.0-dev"
  7618. }
  7619. },
  7620. "autoload": {
  7621. "classmap": [
  7622. "src/"
  7623. ]
  7624. },
  7625. "notification-url": "https://packagist.org/downloads/",
  7626. "license": [
  7627. "BSD-3-Clause"
  7628. ],
  7629. "authors": [
  7630. {
  7631. "name": "Sebastian Bergmann",
  7632. "email": "sebastian@phpunit.de"
  7633. },
  7634. {
  7635. "name": "Jeff Welch",
  7636. "email": "whatthejeff@gmail.com"
  7637. },
  7638. {
  7639. "name": "Volker Dusch",
  7640. "email": "github@wallbash.com"
  7641. },
  7642. {
  7643. "name": "Bernhard Schussek",
  7644. "email": "bschussek@2bepublished.at"
  7645. }
  7646. ],
  7647. "description": "Provides the functionality to compare PHP values for equality",
  7648. "homepage": "https://github.com/sebastianbergmann/comparator",
  7649. "keywords": [
  7650. "comparator",
  7651. "compare",
  7652. "equality"
  7653. ],
  7654. "support": {
  7655. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7656. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  7657. },
  7658. "funding": [
  7659. {
  7660. "url": "https://github.com/sebastianbergmann",
  7661. "type": "github"
  7662. }
  7663. ],
  7664. "time": "2020-11-30T08:04:30+00:00"
  7665. },
  7666. {
  7667. "name": "sebastian/diff",
  7668. "version": "3.0.3",
  7669. "source": {
  7670. "type": "git",
  7671. "url": "https://github.com/sebastianbergmann/diff.git",
  7672. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  7673. },
  7674. "dist": {
  7675. "type": "zip",
  7676. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  7677. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  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.1"
  7688. },
  7689. "require-dev": {
  7690. "phpunit/phpunit": "^7.5 || ^8.0",
  7691. "symfony/process": "^2 || ^3.3 || ^4"
  7692. },
  7693. "type": "library",
  7694. "extra": {
  7695. "branch-alias": {
  7696. "dev-master": "3.0-dev"
  7697. }
  7698. },
  7699. "autoload": {
  7700. "classmap": [
  7701. "src/"
  7702. ]
  7703. },
  7704. "notification-url": "https://packagist.org/downloads/",
  7705. "license": [
  7706. "BSD-3-Clause"
  7707. ],
  7708. "authors": [
  7709. {
  7710. "name": "Sebastian Bergmann",
  7711. "email": "sebastian@phpunit.de"
  7712. },
  7713. {
  7714. "name": "Kore Nordmann",
  7715. "email": "mail@kore-nordmann.de"
  7716. }
  7717. ],
  7718. "description": "Diff implementation",
  7719. "homepage": "https://github.com/sebastianbergmann/diff",
  7720. "keywords": [
  7721. "diff",
  7722. "udiff",
  7723. "unidiff",
  7724. "unified diff"
  7725. ],
  7726. "support": {
  7727. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7728. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  7729. },
  7730. "funding": [
  7731. {
  7732. "url": "https://github.com/sebastianbergmann",
  7733. "type": "github"
  7734. }
  7735. ],
  7736. "time": "2020-11-30T07:59:04+00:00"
  7737. },
  7738. {
  7739. "name": "sebastian/environment",
  7740. "version": "4.2.4",
  7741. "source": {
  7742. "type": "git",
  7743. "url": "https://github.com/sebastianbergmann/environment.git",
  7744. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  7745. },
  7746. "dist": {
  7747. "type": "zip",
  7748. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  7749. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  7750. "shasum": "",
  7751. "mirrors": [
  7752. {
  7753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7754. "preferred": true
  7755. }
  7756. ]
  7757. },
  7758. "require": {
  7759. "php": ">=7.1"
  7760. },
  7761. "require-dev": {
  7762. "phpunit/phpunit": "^7.5"
  7763. },
  7764. "suggest": {
  7765. "ext-posix": "*"
  7766. },
  7767. "type": "library",
  7768. "extra": {
  7769. "branch-alias": {
  7770. "dev-master": "4.2-dev"
  7771. }
  7772. },
  7773. "autoload": {
  7774. "classmap": [
  7775. "src/"
  7776. ]
  7777. },
  7778. "notification-url": "https://packagist.org/downloads/",
  7779. "license": [
  7780. "BSD-3-Clause"
  7781. ],
  7782. "authors": [
  7783. {
  7784. "name": "Sebastian Bergmann",
  7785. "email": "sebastian@phpunit.de"
  7786. }
  7787. ],
  7788. "description": "Provides functionality to handle HHVM/PHP environments",
  7789. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7790. "keywords": [
  7791. "Xdebug",
  7792. "environment",
  7793. "hhvm"
  7794. ],
  7795. "support": {
  7796. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7797. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  7798. },
  7799. "funding": [
  7800. {
  7801. "url": "https://github.com/sebastianbergmann",
  7802. "type": "github"
  7803. }
  7804. ],
  7805. "time": "2020-11-30T07:53:42+00:00"
  7806. },
  7807. {
  7808. "name": "sebastian/exporter",
  7809. "version": "3.1.4",
  7810. "source": {
  7811. "type": "git",
  7812. "url": "https://github.com/sebastianbergmann/exporter.git",
  7813. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db"
  7814. },
  7815. "dist": {
  7816. "type": "zip",
  7817. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  7818. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  7819. "shasum": "",
  7820. "mirrors": [
  7821. {
  7822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7823. "preferred": true
  7824. }
  7825. ]
  7826. },
  7827. "require": {
  7828. "php": ">=7.0",
  7829. "sebastian/recursion-context": "^3.0"
  7830. },
  7831. "require-dev": {
  7832. "ext-mbstring": "*",
  7833. "phpunit/phpunit": "^8.5"
  7834. },
  7835. "type": "library",
  7836. "extra": {
  7837. "branch-alias": {
  7838. "dev-master": "3.1.x-dev"
  7839. }
  7840. },
  7841. "autoload": {
  7842. "classmap": [
  7843. "src/"
  7844. ]
  7845. },
  7846. "notification-url": "https://packagist.org/downloads/",
  7847. "license": [
  7848. "BSD-3-Clause"
  7849. ],
  7850. "authors": [
  7851. {
  7852. "name": "Sebastian Bergmann",
  7853. "email": "sebastian@phpunit.de"
  7854. },
  7855. {
  7856. "name": "Jeff Welch",
  7857. "email": "whatthejeff@gmail.com"
  7858. },
  7859. {
  7860. "name": "Volker Dusch",
  7861. "email": "github@wallbash.com"
  7862. },
  7863. {
  7864. "name": "Adam Harvey",
  7865. "email": "aharvey@php.net"
  7866. },
  7867. {
  7868. "name": "Bernhard Schussek",
  7869. "email": "bschussek@gmail.com"
  7870. }
  7871. ],
  7872. "description": "Provides the functionality to export PHP variables for visualization",
  7873. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7874. "keywords": [
  7875. "export",
  7876. "exporter"
  7877. ],
  7878. "support": {
  7879. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7880. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.4"
  7881. },
  7882. "funding": [
  7883. {
  7884. "url": "https://github.com/sebastianbergmann",
  7885. "type": "github"
  7886. }
  7887. ],
  7888. "time": "2021-11-11T13:51:24+00:00"
  7889. },
  7890. {
  7891. "name": "sebastian/global-state",
  7892. "version": "2.0.0",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://github.com/sebastianbergmann/global-state.git",
  7896. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7901. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7902. "shasum": "",
  7903. "mirrors": [
  7904. {
  7905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7906. "preferred": true
  7907. }
  7908. ]
  7909. },
  7910. "require": {
  7911. "php": "^7.0"
  7912. },
  7913. "require-dev": {
  7914. "phpunit/phpunit": "^6.0"
  7915. },
  7916. "suggest": {
  7917. "ext-uopz": "*"
  7918. },
  7919. "type": "library",
  7920. "extra": {
  7921. "branch-alias": {
  7922. "dev-master": "2.0-dev"
  7923. }
  7924. },
  7925. "autoload": {
  7926. "classmap": [
  7927. "src/"
  7928. ]
  7929. },
  7930. "notification-url": "https://packagist.org/downloads/",
  7931. "license": [
  7932. "BSD-3-Clause"
  7933. ],
  7934. "authors": [
  7935. {
  7936. "name": "Sebastian Bergmann",
  7937. "email": "sebastian@phpunit.de"
  7938. }
  7939. ],
  7940. "description": "Snapshotting of global state",
  7941. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7942. "keywords": [
  7943. "global state"
  7944. ],
  7945. "support": {
  7946. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7947. "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0"
  7948. },
  7949. "time": "2017-04-27T15:39:26+00:00"
  7950. },
  7951. {
  7952. "name": "sebastian/object-enumerator",
  7953. "version": "3.0.4",
  7954. "source": {
  7955. "type": "git",
  7956. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7957. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  7958. },
  7959. "dist": {
  7960. "type": "zip",
  7961. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  7962. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  7963. "shasum": "",
  7964. "mirrors": [
  7965. {
  7966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7967. "preferred": true
  7968. }
  7969. ]
  7970. },
  7971. "require": {
  7972. "php": ">=7.0",
  7973. "sebastian/object-reflector": "^1.1.1",
  7974. "sebastian/recursion-context": "^3.0"
  7975. },
  7976. "require-dev": {
  7977. "phpunit/phpunit": "^6.0"
  7978. },
  7979. "type": "library",
  7980. "extra": {
  7981. "branch-alias": {
  7982. "dev-master": "3.0.x-dev"
  7983. }
  7984. },
  7985. "autoload": {
  7986. "classmap": [
  7987. "src/"
  7988. ]
  7989. },
  7990. "notification-url": "https://packagist.org/downloads/",
  7991. "license": [
  7992. "BSD-3-Clause"
  7993. ],
  7994. "authors": [
  7995. {
  7996. "name": "Sebastian Bergmann",
  7997. "email": "sebastian@phpunit.de"
  7998. }
  7999. ],
  8000. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8001. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8002. "support": {
  8003. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8004. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  8005. },
  8006. "funding": [
  8007. {
  8008. "url": "https://github.com/sebastianbergmann",
  8009. "type": "github"
  8010. }
  8011. ],
  8012. "time": "2020-11-30T07:40:27+00:00"
  8013. },
  8014. {
  8015. "name": "sebastian/object-reflector",
  8016. "version": "1.1.2",
  8017. "source": {
  8018. "type": "git",
  8019. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8020. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  8021. },
  8022. "dist": {
  8023. "type": "zip",
  8024. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  8025. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  8026. "shasum": "",
  8027. "mirrors": [
  8028. {
  8029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8030. "preferred": true
  8031. }
  8032. ]
  8033. },
  8034. "require": {
  8035. "php": ">=7.0"
  8036. },
  8037. "require-dev": {
  8038. "phpunit/phpunit": "^6.0"
  8039. },
  8040. "type": "library",
  8041. "extra": {
  8042. "branch-alias": {
  8043. "dev-master": "1.1-dev"
  8044. }
  8045. },
  8046. "autoload": {
  8047. "classmap": [
  8048. "src/"
  8049. ]
  8050. },
  8051. "notification-url": "https://packagist.org/downloads/",
  8052. "license": [
  8053. "BSD-3-Clause"
  8054. ],
  8055. "authors": [
  8056. {
  8057. "name": "Sebastian Bergmann",
  8058. "email": "sebastian@phpunit.de"
  8059. }
  8060. ],
  8061. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8062. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8063. "support": {
  8064. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8065. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  8066. },
  8067. "funding": [
  8068. {
  8069. "url": "https://github.com/sebastianbergmann",
  8070. "type": "github"
  8071. }
  8072. ],
  8073. "time": "2020-11-30T07:37:18+00:00"
  8074. },
  8075. {
  8076. "name": "sebastian/recursion-context",
  8077. "version": "3.0.1",
  8078. "source": {
  8079. "type": "git",
  8080. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8081. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  8082. },
  8083. "dist": {
  8084. "type": "zip",
  8085. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  8086. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  8087. "shasum": "",
  8088. "mirrors": [
  8089. {
  8090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8091. "preferred": true
  8092. }
  8093. ]
  8094. },
  8095. "require": {
  8096. "php": ">=7.0"
  8097. },
  8098. "require-dev": {
  8099. "phpunit/phpunit": "^6.0"
  8100. },
  8101. "type": "library",
  8102. "extra": {
  8103. "branch-alias": {
  8104. "dev-master": "3.0.x-dev"
  8105. }
  8106. },
  8107. "autoload": {
  8108. "classmap": [
  8109. "src/"
  8110. ]
  8111. },
  8112. "notification-url": "https://packagist.org/downloads/",
  8113. "license": [
  8114. "BSD-3-Clause"
  8115. ],
  8116. "authors": [
  8117. {
  8118. "name": "Sebastian Bergmann",
  8119. "email": "sebastian@phpunit.de"
  8120. },
  8121. {
  8122. "name": "Jeff Welch",
  8123. "email": "whatthejeff@gmail.com"
  8124. },
  8125. {
  8126. "name": "Adam Harvey",
  8127. "email": "aharvey@php.net"
  8128. }
  8129. ],
  8130. "description": "Provides functionality to recursively process PHP variables",
  8131. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8132. "support": {
  8133. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8134. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  8135. },
  8136. "funding": [
  8137. {
  8138. "url": "https://github.com/sebastianbergmann",
  8139. "type": "github"
  8140. }
  8141. ],
  8142. "time": "2020-11-30T07:34:24+00:00"
  8143. },
  8144. {
  8145. "name": "sebastian/resource-operations",
  8146. "version": "2.0.2",
  8147. "source": {
  8148. "type": "git",
  8149. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8150. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  8151. },
  8152. "dist": {
  8153. "type": "zip",
  8154. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  8155. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  8156. "shasum": "",
  8157. "mirrors": [
  8158. {
  8159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8160. "preferred": true
  8161. }
  8162. ]
  8163. },
  8164. "require": {
  8165. "php": ">=7.1"
  8166. },
  8167. "type": "library",
  8168. "extra": {
  8169. "branch-alias": {
  8170. "dev-master": "2.0-dev"
  8171. }
  8172. },
  8173. "autoload": {
  8174. "classmap": [
  8175. "src/"
  8176. ]
  8177. },
  8178. "notification-url": "https://packagist.org/downloads/",
  8179. "license": [
  8180. "BSD-3-Clause"
  8181. ],
  8182. "authors": [
  8183. {
  8184. "name": "Sebastian Bergmann",
  8185. "email": "sebastian@phpunit.de"
  8186. }
  8187. ],
  8188. "description": "Provides a list of PHP built-in functions that operate on resources",
  8189. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8190. "support": {
  8191. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  8192. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  8193. },
  8194. "funding": [
  8195. {
  8196. "url": "https://github.com/sebastianbergmann",
  8197. "type": "github"
  8198. }
  8199. ],
  8200. "time": "2020-11-30T07:30:19+00:00"
  8201. },
  8202. {
  8203. "name": "sebastian/version",
  8204. "version": "2.0.1",
  8205. "source": {
  8206. "type": "git",
  8207. "url": "https://github.com/sebastianbergmann/version.git",
  8208. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8209. },
  8210. "dist": {
  8211. "type": "zip",
  8212. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8213. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8214. "shasum": "",
  8215. "mirrors": [
  8216. {
  8217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8218. "preferred": true
  8219. }
  8220. ]
  8221. },
  8222. "require": {
  8223. "php": ">=5.6"
  8224. },
  8225. "type": "library",
  8226. "extra": {
  8227. "branch-alias": {
  8228. "dev-master": "2.0.x-dev"
  8229. }
  8230. },
  8231. "autoload": {
  8232. "classmap": [
  8233. "src/"
  8234. ]
  8235. },
  8236. "notification-url": "https://packagist.org/downloads/",
  8237. "license": [
  8238. "BSD-3-Clause"
  8239. ],
  8240. "authors": [
  8241. {
  8242. "name": "Sebastian Bergmann",
  8243. "email": "sebastian@phpunit.de",
  8244. "role": "lead"
  8245. }
  8246. ],
  8247. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8248. "homepage": "https://github.com/sebastianbergmann/version",
  8249. "support": {
  8250. "issues": "https://github.com/sebastianbergmann/version/issues",
  8251. "source": "https://github.com/sebastianbergmann/version/tree/master"
  8252. },
  8253. "time": "2016-10-03T07:35:21+00:00"
  8254. },
  8255. {
  8256. "name": "theseer/tokenizer",
  8257. "version": "1.2.1",
  8258. "source": {
  8259. "type": "git",
  8260. "url": "https://github.com/theseer/tokenizer.git",
  8261. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  8262. },
  8263. "dist": {
  8264. "type": "zip",
  8265. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  8266. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  8267. "shasum": "",
  8268. "mirrors": [
  8269. {
  8270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8271. "preferred": true
  8272. }
  8273. ]
  8274. },
  8275. "require": {
  8276. "ext-dom": "*",
  8277. "ext-tokenizer": "*",
  8278. "ext-xmlwriter": "*",
  8279. "php": "^7.2 || ^8.0"
  8280. },
  8281. "type": "library",
  8282. "autoload": {
  8283. "classmap": [
  8284. "src/"
  8285. ]
  8286. },
  8287. "notification-url": "https://packagist.org/downloads/",
  8288. "license": [
  8289. "BSD-3-Clause"
  8290. ],
  8291. "authors": [
  8292. {
  8293. "name": "Arne Blankerts",
  8294. "email": "arne@blankerts.de",
  8295. "role": "Developer"
  8296. }
  8297. ],
  8298. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8299. "support": {
  8300. "issues": "https://github.com/theseer/tokenizer/issues",
  8301. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  8302. },
  8303. "funding": [
  8304. {
  8305. "url": "https://github.com/theseer",
  8306. "type": "github"
  8307. }
  8308. ],
  8309. "time": "2021-07-28T10:34:58+00:00"
  8310. },
  8311. {
  8312. "name": "webmozart/assert",
  8313. "version": "1.10.0",
  8314. "source": {
  8315. "type": "git",
  8316. "url": "https://github.com/webmozarts/assert.git",
  8317. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  8318. },
  8319. "dist": {
  8320. "type": "zip",
  8321. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  8322. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  8323. "shasum": "",
  8324. "mirrors": [
  8325. {
  8326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8327. "preferred": true
  8328. }
  8329. ]
  8330. },
  8331. "require": {
  8332. "php": "^7.2 || ^8.0",
  8333. "symfony/polyfill-ctype": "^1.8"
  8334. },
  8335. "conflict": {
  8336. "phpstan/phpstan": "<0.12.20",
  8337. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8338. },
  8339. "require-dev": {
  8340. "phpunit/phpunit": "^8.5.13"
  8341. },
  8342. "type": "library",
  8343. "extra": {
  8344. "branch-alias": {
  8345. "dev-master": "1.10-dev"
  8346. }
  8347. },
  8348. "autoload": {
  8349. "psr-4": {
  8350. "Webmozart\\Assert\\": "src/"
  8351. }
  8352. },
  8353. "notification-url": "https://packagist.org/downloads/",
  8354. "license": [
  8355. "MIT"
  8356. ],
  8357. "authors": [
  8358. {
  8359. "name": "Bernhard Schussek",
  8360. "email": "bschussek@gmail.com"
  8361. }
  8362. ],
  8363. "description": "Assertions to validate method input/output with nice error messages.",
  8364. "keywords": [
  8365. "assert",
  8366. "check",
  8367. "validate"
  8368. ],
  8369. "support": {
  8370. "issues": "https://github.com/webmozarts/assert/issues",
  8371. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  8372. },
  8373. "time": "2021-03-09T10:59:23+00:00"
  8374. }
  8375. ],
  8376. "aliases": [],
  8377. "minimum-stability": "dev",
  8378. "stability-flags": [],
  8379. "prefer-stable": true,
  8380. "prefer-lowest": false,
  8381. "platform": {
  8382. "php": "^7.1.3"
  8383. },
  8384. "platform-dev": [],
  8385. "plugin-api-version": "2.0.0"
  8386. }