composer.lock 269 KB

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