composer.lock 233 KB

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