composer.lock 285 KB

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