composer.lock 284 KB

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