composer.lock 259 KB

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