composer.lock 239 KB

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