composer.lock 280 KB

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