composer.lock 336 KB

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