composer.lock 247 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958
  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": "e91f865b54abffebaf1fa3d1af9fff46",
  8. "packages": [
  9. {
  10. "name": "algolia/algoliasearch-client-php",
  11. "version": "2.2.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/algolia/algoliasearch-client-php.git",
  15. "reference": "7423057ca904f676307eddf300e08a26e2d194e0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/algolia/algoliasearch-client-php/zipball/7423057ca904f676307eddf300e08a26e2d194e0",
  20. "reference": "7423057ca904f676307eddf300e08a26e2d194e0",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-curl": "*",
  25. "ext-json": "*",
  26. "ext-mbstring": "*",
  27. "php": "^5.3 || ^7.0",
  28. "psr/http-message": "^1.0",
  29. "psr/log": "^1.0",
  30. "psr/simple-cache": "^1.0"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^4.8",
  34. "symfony/yaml": "^2.0 || ^4.0"
  35. },
  36. "suggest": {
  37. "guzzlehttp/guzzle": "If you prefer to use Guzzle HTTP client instead of the Http Client implementation provided by the package"
  38. },
  39. "bin": [
  40. "bin/algolia-doctor"
  41. ],
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-2.0": "2.0.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Algolia\\AlgoliaSearch\\": "src/"
  51. },
  52. "files": [
  53. "src/Http/Psr7/functions.php",
  54. "src/functions.php"
  55. ]
  56. },
  57. "notification-url": "https://packagist.org/downloads/",
  58. "license": [
  59. "MIT"
  60. ],
  61. "authors": [
  62. {
  63. "name": "Algolia Team",
  64. "email": "contact@algolia.com"
  65. }
  66. ],
  67. "description": "Algolia Search API Client for PHP",
  68. "keywords": [
  69. "algolia",
  70. "api",
  71. "client",
  72. "php",
  73. "search"
  74. ],
  75. "time": "2019-02-26T15:58:17+00:00"
  76. },
  77. {
  78. "name": "cebe/markdown",
  79. "version": "1.2.1",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/cebe/markdown.git",
  83. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  88. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "lib-pcre": "*",
  93. "php": ">=5.4.0"
  94. },
  95. "require-dev": {
  96. "cebe/indent": "*",
  97. "facebook/xhprof": "*@dev",
  98. "phpunit/phpunit": "4.1.*"
  99. },
  100. "bin": [
  101. "bin/markdown"
  102. ],
  103. "type": "library",
  104. "extra": {
  105. "branch-alias": {
  106. "dev-master": "1.2.x-dev"
  107. }
  108. },
  109. "autoload": {
  110. "psr-4": {
  111. "cebe\\markdown\\": ""
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "MIT"
  117. ],
  118. "authors": [
  119. {
  120. "name": "Carsten Brandt",
  121. "email": "mail@cebe.cc",
  122. "homepage": "http://cebe.cc/",
  123. "role": "Creator"
  124. }
  125. ],
  126. "description": "A super fast, highly extensible markdown parser for PHP",
  127. "homepage": "https://github.com/cebe/markdown#readme",
  128. "keywords": [
  129. "extensible",
  130. "fast",
  131. "gfm",
  132. "markdown",
  133. "markdown-extra"
  134. ],
  135. "time": "2018-03-26T11:24:36+00:00"
  136. },
  137. {
  138. "name": "clue/stream-filter",
  139. "version": "v1.4.0",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/clue/php-stream-filter.git",
  143. "reference": "d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0",
  148. "reference": "d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "php": ">=5.3"
  153. },
  154. "require-dev": {
  155. "phpunit/phpunit": "^5.0 || ^4.8"
  156. },
  157. "type": "library",
  158. "autoload": {
  159. "psr-4": {
  160. "Clue\\StreamFilter\\": "src/"
  161. },
  162. "files": [
  163. "src/functions.php"
  164. ]
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Christian Lück",
  173. "email": "christian@lueck.tv"
  174. }
  175. ],
  176. "description": "A simple and modern approach to stream filtering in PHP",
  177. "homepage": "https://github.com/clue/php-stream-filter",
  178. "keywords": [
  179. "bucket brigade",
  180. "callback",
  181. "filter",
  182. "php_user_filter",
  183. "stream",
  184. "stream_filter_append",
  185. "stream_filter_register"
  186. ],
  187. "time": "2017-08-18T09:54:01+00:00"
  188. },
  189. {
  190. "name": "composer/ca-bundle",
  191. "version": "1.2.4",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/composer/ca-bundle.git",
  195. "reference": "10bb96592168a0f8e8f6dcde3532d9fa50b0b527"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/10bb96592168a0f8e8f6dcde3532d9fa50b0b527",
  200. "reference": "10bb96592168a0f8e8f6dcde3532d9fa50b0b527",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "ext-openssl": "*",
  205. "ext-pcre": "*",
  206. "php": "^5.3.2 || ^7.0 || ^8.0"
  207. },
  208. "require-dev": {
  209. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  210. "psr/log": "^1.0",
  211. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  212. },
  213. "type": "library",
  214. "extra": {
  215. "branch-alias": {
  216. "dev-master": "1.x-dev"
  217. }
  218. },
  219. "autoload": {
  220. "psr-4": {
  221. "Composer\\CaBundle\\": "src"
  222. }
  223. },
  224. "notification-url": "https://packagist.org/downloads/",
  225. "license": [
  226. "MIT"
  227. ],
  228. "authors": [
  229. {
  230. "name": "Jordi Boggiano",
  231. "email": "j.boggiano@seld.be",
  232. "homepage": "http://seld.be"
  233. }
  234. ],
  235. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  236. "keywords": [
  237. "cabundle",
  238. "cacert",
  239. "certificate",
  240. "ssl",
  241. "tls"
  242. ],
  243. "time": "2019-08-30T08:44:50+00:00"
  244. },
  245. {
  246. "name": "composer/composer",
  247. "version": "dev-master",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/composer/composer.git",
  251. "reference": "f753c15664c24d95bb64bd99ddc32cb01d1e32b8"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/composer/composer/zipball/f753c15664c24d95bb64bd99ddc32cb01d1e32b8",
  256. "reference": "f753c15664c24d95bb64bd99ddc32cb01d1e32b8",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "composer/ca-bundle": "^1.0",
  261. "composer/semver": "^1.0",
  262. "composer/spdx-licenses": "^1.2",
  263. "composer/xdebug-handler": "^1.1",
  264. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  265. "php": "^5.3.2 || ^7.0",
  266. "psr/log": "^1.0",
  267. "seld/jsonlint": "^1.4",
  268. "seld/phar-utils": "^1.0",
  269. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  270. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
  271. "symfony/finder": "^2.7 || ^3.0 || ^4.0",
  272. "symfony/process": "^2.7 || ^3.0 || ^4.0"
  273. },
  274. "conflict": {
  275. "symfony/console": "2.8.38"
  276. },
  277. "require-dev": {
  278. "phpunit/phpunit": "^4.8.35 || ^5.7",
  279. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  280. },
  281. "suggest": {
  282. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  283. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  284. "ext-zlib": "Allow gzip compression of HTTP requests"
  285. },
  286. "bin": [
  287. "bin/composer"
  288. ],
  289. "type": "library",
  290. "extra": {
  291. "branch-alias": {
  292. "dev-master": "1.10-dev"
  293. }
  294. },
  295. "autoload": {
  296. "psr-4": {
  297. "Composer\\": "src/Composer"
  298. }
  299. },
  300. "notification-url": "https://packagist.org/downloads/",
  301. "license": [
  302. "MIT"
  303. ],
  304. "authors": [
  305. {
  306. "name": "Nils Adermann",
  307. "email": "naderman@naderman.de",
  308. "homepage": "http://www.naderman.de"
  309. },
  310. {
  311. "name": "Jordi Boggiano",
  312. "email": "j.boggiano@seld.be",
  313. "homepage": "http://seld.be"
  314. }
  315. ],
  316. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  317. "homepage": "https://getcomposer.org/",
  318. "keywords": [
  319. "autoload",
  320. "dependency",
  321. "package"
  322. ],
  323. "time": "2019-10-06T20:15:11+00:00"
  324. },
  325. {
  326. "name": "composer/semver",
  327. "version": "1.5.0",
  328. "source": {
  329. "type": "git",
  330. "url": "https://github.com/composer/semver.git",
  331. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  332. },
  333. "dist": {
  334. "type": "zip",
  335. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  336. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  337. "shasum": ""
  338. },
  339. "require": {
  340. "php": "^5.3.2 || ^7.0"
  341. },
  342. "require-dev": {
  343. "phpunit/phpunit": "^4.5 || ^5.0.5",
  344. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  345. },
  346. "type": "library",
  347. "extra": {
  348. "branch-alias": {
  349. "dev-master": "1.x-dev"
  350. }
  351. },
  352. "autoload": {
  353. "psr-4": {
  354. "Composer\\Semver\\": "src"
  355. }
  356. },
  357. "notification-url": "https://packagist.org/downloads/",
  358. "license": [
  359. "MIT"
  360. ],
  361. "authors": [
  362. {
  363. "name": "Nils Adermann",
  364. "email": "naderman@naderman.de",
  365. "homepage": "http://www.naderman.de"
  366. },
  367. {
  368. "name": "Jordi Boggiano",
  369. "email": "j.boggiano@seld.be",
  370. "homepage": "http://seld.be"
  371. },
  372. {
  373. "name": "Rob Bast",
  374. "email": "rob.bast@gmail.com",
  375. "homepage": "http://robbast.nl"
  376. }
  377. ],
  378. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  379. "keywords": [
  380. "semantic",
  381. "semver",
  382. "validation",
  383. "versioning"
  384. ],
  385. "time": "2019-03-19T17:25:45+00:00"
  386. },
  387. {
  388. "name": "composer/spdx-licenses",
  389. "version": "1.5.2",
  390. "source": {
  391. "type": "git",
  392. "url": "https://github.com/composer/spdx-licenses.git",
  393. "reference": "7ac1e6aec371357df067f8a688c3d6974df68fa5"
  394. },
  395. "dist": {
  396. "type": "zip",
  397. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/7ac1e6aec371357df067f8a688c3d6974df68fa5",
  398. "reference": "7ac1e6aec371357df067f8a688c3d6974df68fa5",
  399. "shasum": ""
  400. },
  401. "require": {
  402. "php": "^5.3.2 || ^7.0 || ^8.0"
  403. },
  404. "require-dev": {
  405. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  406. },
  407. "type": "library",
  408. "extra": {
  409. "branch-alias": {
  410. "dev-master": "1.x-dev"
  411. }
  412. },
  413. "autoload": {
  414. "psr-4": {
  415. "Composer\\Spdx\\": "src"
  416. }
  417. },
  418. "notification-url": "https://packagist.org/downloads/",
  419. "license": [
  420. "MIT"
  421. ],
  422. "authors": [
  423. {
  424. "name": "Nils Adermann",
  425. "email": "naderman@naderman.de",
  426. "homepage": "http://www.naderman.de"
  427. },
  428. {
  429. "name": "Jordi Boggiano",
  430. "email": "j.boggiano@seld.be",
  431. "homepage": "http://seld.be"
  432. },
  433. {
  434. "name": "Rob Bast",
  435. "email": "rob.bast@gmail.com",
  436. "homepage": "http://robbast.nl"
  437. }
  438. ],
  439. "description": "SPDX licenses list and validation library.",
  440. "keywords": [
  441. "license",
  442. "spdx",
  443. "validator"
  444. ],
  445. "time": "2019-07-29T10:31:59+00:00"
  446. },
  447. {
  448. "name": "composer/xdebug-handler",
  449. "version": "1.3.3",
  450. "source": {
  451. "type": "git",
  452. "url": "https://github.com/composer/xdebug-handler.git",
  453. "reference": "46867cbf8ca9fb8d60c506895449eb799db1184f"
  454. },
  455. "dist": {
  456. "type": "zip",
  457. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/46867cbf8ca9fb8d60c506895449eb799db1184f",
  458. "reference": "46867cbf8ca9fb8d60c506895449eb799db1184f",
  459. "shasum": ""
  460. },
  461. "require": {
  462. "php": "^5.3.2 || ^7.0",
  463. "psr/log": "^1.0"
  464. },
  465. "require-dev": {
  466. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  467. },
  468. "type": "library",
  469. "autoload": {
  470. "psr-4": {
  471. "Composer\\XdebugHandler\\": "src"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "John Stevenson",
  481. "email": "john-stevenson@blueyonder.co.uk"
  482. }
  483. ],
  484. "description": "Restarts a process without xdebug.",
  485. "keywords": [
  486. "Xdebug",
  487. "performance"
  488. ],
  489. "time": "2019-05-27T17:52:04+00:00"
  490. },
  491. {
  492. "name": "container-interop/container-interop",
  493. "version": "1.2.0",
  494. "source": {
  495. "type": "git",
  496. "url": "https://github.com/container-interop/container-interop.git",
  497. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  498. },
  499. "dist": {
  500. "type": "zip",
  501. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  502. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  503. "shasum": ""
  504. },
  505. "require": {
  506. "psr/container": "^1.0"
  507. },
  508. "type": "library",
  509. "autoload": {
  510. "psr-4": {
  511. "Interop\\Container\\": "src/Interop/Container/"
  512. }
  513. },
  514. "notification-url": "https://packagist.org/downloads/",
  515. "license": [
  516. "MIT"
  517. ],
  518. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  519. "homepage": "https://github.com/container-interop/container-interop",
  520. "time": "2017-02-14T19:40:03+00:00"
  521. },
  522. {
  523. "name": "doctrine/annotations",
  524. "version": "v1.6.1",
  525. "source": {
  526. "type": "git",
  527. "url": "https://github.com/doctrine/annotations.git",
  528. "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24"
  529. },
  530. "dist": {
  531. "type": "zip",
  532. "url": "https://api.github.com/repos/doctrine/annotations/zipball/53120e0eb10355388d6ccbe462f1fea34ddadb24",
  533. "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24",
  534. "shasum": ""
  535. },
  536. "require": {
  537. "doctrine/lexer": "1.*",
  538. "php": "^7.1"
  539. },
  540. "require-dev": {
  541. "doctrine/cache": "1.*",
  542. "phpunit/phpunit": "^6.4"
  543. },
  544. "type": "library",
  545. "extra": {
  546. "branch-alias": {
  547. "dev-master": "1.6.x-dev"
  548. }
  549. },
  550. "autoload": {
  551. "psr-4": {
  552. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  553. }
  554. },
  555. "notification-url": "https://packagist.org/downloads/",
  556. "license": [
  557. "MIT"
  558. ],
  559. "authors": [
  560. {
  561. "name": "Roman Borschel",
  562. "email": "roman@code-factory.org"
  563. },
  564. {
  565. "name": "Benjamin Eberlei",
  566. "email": "kontakt@beberlei.de"
  567. },
  568. {
  569. "name": "Guilherme Blanco",
  570. "email": "guilhermeblanco@gmail.com"
  571. },
  572. {
  573. "name": "Jonathan Wage",
  574. "email": "jonwage@gmail.com"
  575. },
  576. {
  577. "name": "Johannes Schmitt",
  578. "email": "schmittjoh@gmail.com"
  579. }
  580. ],
  581. "description": "Docblock Annotations Parser",
  582. "homepage": "http://www.doctrine-project.org",
  583. "keywords": [
  584. "annotations",
  585. "docblock",
  586. "parser"
  587. ],
  588. "time": "2019-03-25T19:12:02+00:00"
  589. },
  590. {
  591. "name": "doctrine/cache",
  592. "version": "v1.8.0",
  593. "source": {
  594. "type": "git",
  595. "url": "https://github.com/doctrine/cache.git",
  596. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  597. },
  598. "dist": {
  599. "type": "zip",
  600. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  601. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  602. "shasum": ""
  603. },
  604. "require": {
  605. "php": "~7.1"
  606. },
  607. "conflict": {
  608. "doctrine/common": ">2.2,<2.4"
  609. },
  610. "require-dev": {
  611. "alcaeus/mongo-php-adapter": "^1.1",
  612. "doctrine/coding-standard": "^4.0",
  613. "mongodb/mongodb": "^1.1",
  614. "phpunit/phpunit": "^7.0",
  615. "predis/predis": "~1.0"
  616. },
  617. "suggest": {
  618. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  619. },
  620. "type": "library",
  621. "extra": {
  622. "branch-alias": {
  623. "dev-master": "1.8.x-dev"
  624. }
  625. },
  626. "autoload": {
  627. "psr-4": {
  628. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  629. }
  630. },
  631. "notification-url": "https://packagist.org/downloads/",
  632. "license": [
  633. "MIT"
  634. ],
  635. "description": "Caching library offering an object-oriented API for many cache backends",
  636. "homepage": "https://www.doctrine-project.org",
  637. "time": "2018-08-21T18:01:43+00:00"
  638. },
  639. {
  640. "name": "doctrine/collections",
  641. "version": "v1.6.1",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/doctrine/collections.git",
  645. "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/doctrine/collections/zipball/d2ae4ef05e25197343b6a39bae1d3c427a2f6956",
  650. "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956",
  651. "shasum": ""
  652. },
  653. "require": {
  654. "php": "^7.1.3"
  655. },
  656. "require-dev": {
  657. "doctrine/coding-standard": "^6.0",
  658. "phpstan/phpstan-shim": "^0.9.2",
  659. "phpunit/phpunit": "^7.0",
  660. "vimeo/psalm": "^3.2.2"
  661. },
  662. "type": "library",
  663. "extra": {
  664. "branch-alias": {
  665. "dev-master": "1.6.x-dev"
  666. }
  667. },
  668. "autoload": {
  669. "psr-4": {
  670. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  671. }
  672. },
  673. "notification-url": "https://packagist.org/downloads/",
  674. "license": [
  675. "MIT"
  676. ],
  677. "authors": [
  678. {
  679. "name": "Roman Borschel",
  680. "email": "roman@code-factory.org"
  681. },
  682. {
  683. "name": "Benjamin Eberlei",
  684. "email": "kontakt@beberlei.de"
  685. },
  686. {
  687. "name": "Guilherme Blanco",
  688. "email": "guilhermeblanco@gmail.com"
  689. },
  690. {
  691. "name": "Jonathan Wage",
  692. "email": "jonwage@gmail.com"
  693. },
  694. {
  695. "name": "Johannes Schmitt",
  696. "email": "schmittjoh@gmail.com"
  697. }
  698. ],
  699. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  700. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  701. "keywords": [
  702. "array",
  703. "collections",
  704. "iterators",
  705. "php"
  706. ],
  707. "time": "2019-03-25T19:03:48+00:00"
  708. },
  709. {
  710. "name": "doctrine/common",
  711. "version": "v2.10.0",
  712. "source": {
  713. "type": "git",
  714. "url": "https://github.com/doctrine/common.git",
  715. "reference": "30e33f60f64deec87df728c02b107f82cdafad9d"
  716. },
  717. "dist": {
  718. "type": "zip",
  719. "url": "https://api.github.com/repos/doctrine/common/zipball/30e33f60f64deec87df728c02b107f82cdafad9d",
  720. "reference": "30e33f60f64deec87df728c02b107f82cdafad9d",
  721. "shasum": ""
  722. },
  723. "require": {
  724. "doctrine/annotations": "^1.0",
  725. "doctrine/cache": "^1.0",
  726. "doctrine/collections": "^1.0",
  727. "doctrine/event-manager": "^1.0",
  728. "doctrine/inflector": "^1.0",
  729. "doctrine/lexer": "^1.0",
  730. "doctrine/persistence": "^1.1",
  731. "doctrine/reflection": "^1.0",
  732. "php": "^7.1"
  733. },
  734. "require-dev": {
  735. "doctrine/coding-standard": "^1.0",
  736. "phpunit/phpunit": "^6.3",
  737. "squizlabs/php_codesniffer": "^3.0",
  738. "symfony/phpunit-bridge": "^4.0.5"
  739. },
  740. "type": "library",
  741. "extra": {
  742. "branch-alias": {
  743. "dev-master": "2.10.x-dev"
  744. }
  745. },
  746. "autoload": {
  747. "psr-4": {
  748. "Doctrine\\Common\\": "lib/Doctrine/Common"
  749. }
  750. },
  751. "notification-url": "https://packagist.org/downloads/",
  752. "license": [
  753. "MIT"
  754. ],
  755. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  756. "homepage": "https://www.doctrine-project.org/projects/common.html",
  757. "time": "2018-11-21T01:24:55+00:00"
  758. },
  759. {
  760. "name": "doctrine/dbal",
  761. "version": "v2.9.2",
  762. "source": {
  763. "type": "git",
  764. "url": "https://github.com/doctrine/dbal.git",
  765. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9"
  766. },
  767. "dist": {
  768. "type": "zip",
  769. "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  770. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  771. "shasum": ""
  772. },
  773. "require": {
  774. "doctrine/cache": "^1.0",
  775. "doctrine/event-manager": "^1.0",
  776. "ext-pdo": "*",
  777. "php": "^7.1"
  778. },
  779. "require-dev": {
  780. "doctrine/coding-standard": "^5.0",
  781. "jetbrains/phpstorm-stubs": "^2018.1.2",
  782. "phpstan/phpstan": "^0.10.1",
  783. "phpunit/phpunit": "^7.4",
  784. "symfony/console": "^2.0.5|^3.0|^4.0",
  785. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  786. },
  787. "suggest": {
  788. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  789. },
  790. "bin": [
  791. "bin/doctrine-dbal"
  792. ],
  793. "type": "library",
  794. "extra": {
  795. "branch-alias": {
  796. "dev-master": "2.9.x-dev",
  797. "dev-develop": "3.0.x-dev"
  798. }
  799. },
  800. "autoload": {
  801. "psr-4": {
  802. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  803. }
  804. },
  805. "notification-url": "https://packagist.org/downloads/",
  806. "license": [
  807. "MIT"
  808. ],
  809. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  810. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  811. "time": "2018-12-31T03:27:51+00:00"
  812. },
  813. {
  814. "name": "doctrine/doctrine-bundle",
  815. "version": "1.10.2",
  816. "source": {
  817. "type": "git",
  818. "url": "https://github.com/doctrine/DoctrineBundle.git",
  819. "reference": "1f99e6645030542079c57d4680601a4a8778a1bd"
  820. },
  821. "dist": {
  822. "type": "zip",
  823. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/1f99e6645030542079c57d4680601a4a8778a1bd",
  824. "reference": "1f99e6645030542079c57d4680601a4a8778a1bd",
  825. "shasum": ""
  826. },
  827. "require": {
  828. "doctrine/dbal": "^2.5.12",
  829. "doctrine/doctrine-cache-bundle": "~1.2",
  830. "jdorn/sql-formatter": "^1.2.16",
  831. "php": "^5.5.9|^7.0",
  832. "symfony/console": "~2.7|~3.0|~4.0",
  833. "symfony/dependency-injection": "~2.7|~3.0|~4.0",
  834. "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
  835. "symfony/framework-bundle": "^2.7.22|~3.0|~4.0"
  836. },
  837. "conflict": {
  838. "symfony/http-foundation": "<2.6"
  839. },
  840. "require-dev": {
  841. "doctrine/orm": "~2.4",
  842. "php-coveralls/php-coveralls": "^2.1",
  843. "phpunit/phpunit": "^4.8.36|^5.7|^6.4",
  844. "symfony/phpunit-bridge": "~2.7|~3.0|~4.0",
  845. "symfony/property-info": "~2.8|~3.0|~4.0",
  846. "symfony/validator": "~2.7|~3.0|~4.0",
  847. "symfony/web-profiler-bundle": "~2.7|~3.0|~4.0",
  848. "symfony/yaml": "~2.7|~3.0|~4.0",
  849. "twig/twig": "~1.26|~2.0"
  850. },
  851. "suggest": {
  852. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  853. "symfony/web-profiler-bundle": "To use the data collector."
  854. },
  855. "type": "symfony-bundle",
  856. "extra": {
  857. "branch-alias": {
  858. "dev-master": "1.9.x-dev"
  859. }
  860. },
  861. "autoload": {
  862. "psr-4": {
  863. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "description": "Symfony DoctrineBundle",
  871. "homepage": "http://www.doctrine-project.org",
  872. "time": "2019-02-06T13:18:04+00:00"
  873. },
  874. {
  875. "name": "doctrine/doctrine-cache-bundle",
  876. "version": "1.3.5",
  877. "source": {
  878. "type": "git",
  879. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  880. "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927"
  881. },
  882. "dist": {
  883. "type": "zip",
  884. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/5514c90d9fb595e1095e6d66ebb98ce9ef049927",
  885. "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927",
  886. "shasum": ""
  887. },
  888. "require": {
  889. "doctrine/cache": "^1.4.2",
  890. "doctrine/inflector": "~1.0",
  891. "php": ">=5.3.2",
  892. "symfony/doctrine-bridge": "~2.7|~3.3|~4.0"
  893. },
  894. "require-dev": {
  895. "instaclick/coding-standard": "~1.1",
  896. "instaclick/object-calisthenics-sniffs": "dev-master",
  897. "instaclick/symfony2-coding-standard": "dev-remaster",
  898. "phpunit/phpunit": "~4.8.36|~5.6|~6.5|~7.0",
  899. "predis/predis": "~0.8",
  900. "satooshi/php-coveralls": "^1.0",
  901. "squizlabs/php_codesniffer": "~1.5",
  902. "symfony/console": "~2.7|~3.3|~4.0",
  903. "symfony/finder": "~2.7|~3.3|~4.0",
  904. "symfony/framework-bundle": "~2.7|~3.3|~4.0",
  905. "symfony/phpunit-bridge": "~2.7|~3.3|~4.0",
  906. "symfony/security-acl": "~2.7|~3.3",
  907. "symfony/validator": "~2.7|~3.3|~4.0",
  908. "symfony/yaml": "~2.7|~3.3|~4.0"
  909. },
  910. "suggest": {
  911. "symfony/security-acl": "For using this bundle to cache ACLs"
  912. },
  913. "type": "symfony-bundle",
  914. "extra": {
  915. "branch-alias": {
  916. "dev-master": "1.3.x-dev"
  917. }
  918. },
  919. "autoload": {
  920. "psr-4": {
  921. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  922. },
  923. "exclude-from-classmap": [
  924. "/Tests/"
  925. ]
  926. },
  927. "notification-url": "https://packagist.org/downloads/",
  928. "license": [
  929. "MIT"
  930. ],
  931. "authors": [
  932. {
  933. "name": "Symfony Community",
  934. "homepage": "http://symfony.com/contributors"
  935. },
  936. {
  937. "name": "Benjamin Eberlei",
  938. "email": "kontakt@beberlei.de"
  939. },
  940. {
  941. "name": "Fabio B. Silva",
  942. "email": "fabio.bat.silva@gmail.com"
  943. },
  944. {
  945. "name": "Guilherme Blanco",
  946. "email": "guilhermeblanco@hotmail.com"
  947. },
  948. {
  949. "name": "Doctrine Project",
  950. "homepage": "http://www.doctrine-project.org/"
  951. },
  952. {
  953. "name": "Fabien Potencier",
  954. "email": "fabien@symfony.com"
  955. }
  956. ],
  957. "description": "Symfony Bundle for Doctrine Cache",
  958. "homepage": "https://www.doctrine-project.org",
  959. "keywords": [
  960. "cache",
  961. "caching"
  962. ],
  963. "time": "2018-11-09T06:25:35+00:00"
  964. },
  965. {
  966. "name": "doctrine/event-manager",
  967. "version": "v1.0.0",
  968. "source": {
  969. "type": "git",
  970. "url": "https://github.com/doctrine/event-manager.git",
  971. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  972. },
  973. "dist": {
  974. "type": "zip",
  975. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  976. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  977. "shasum": ""
  978. },
  979. "require": {
  980. "php": "^7.1"
  981. },
  982. "conflict": {
  983. "doctrine/common": "<2.9@dev"
  984. },
  985. "require-dev": {
  986. "doctrine/coding-standard": "^4.0",
  987. "phpunit/phpunit": "^7.0"
  988. },
  989. "type": "library",
  990. "extra": {
  991. "branch-alias": {
  992. "dev-master": "1.0.x-dev"
  993. }
  994. },
  995. "autoload": {
  996. "psr-4": {
  997. "Doctrine\\Common\\": "lib/Doctrine/Common"
  998. }
  999. },
  1000. "notification-url": "https://packagist.org/downloads/",
  1001. "license": [
  1002. "MIT"
  1003. ],
  1004. "description": "Doctrine Event Manager component",
  1005. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1006. "time": "2018-06-11T11:59:03+00:00"
  1007. },
  1008. {
  1009. "name": "doctrine/inflector",
  1010. "version": "v1.3.0",
  1011. "source": {
  1012. "type": "git",
  1013. "url": "https://github.com/doctrine/inflector.git",
  1014. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  1015. },
  1016. "dist": {
  1017. "type": "zip",
  1018. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  1019. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  1020. "shasum": ""
  1021. },
  1022. "require": {
  1023. "php": "^7.1"
  1024. },
  1025. "require-dev": {
  1026. "phpunit/phpunit": "^6.2"
  1027. },
  1028. "type": "library",
  1029. "extra": {
  1030. "branch-alias": {
  1031. "dev-master": "1.3.x-dev"
  1032. }
  1033. },
  1034. "autoload": {
  1035. "psr-4": {
  1036. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1044. "homepage": "http://www.doctrine-project.org",
  1045. "time": "2018-01-09T20:05:19+00:00"
  1046. },
  1047. {
  1048. "name": "doctrine/instantiator",
  1049. "version": "1.2.0",
  1050. "source": {
  1051. "type": "git",
  1052. "url": "https://github.com/doctrine/instantiator.git",
  1053. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  1054. },
  1055. "dist": {
  1056. "type": "zip",
  1057. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  1058. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  1059. "shasum": ""
  1060. },
  1061. "require": {
  1062. "php": "^7.1"
  1063. },
  1064. "require-dev": {
  1065. "doctrine/coding-standard": "^6.0",
  1066. "ext-pdo": "*",
  1067. "ext-phar": "*",
  1068. "phpbench/phpbench": "^0.13",
  1069. "phpstan/phpstan-phpunit": "^0.11",
  1070. "phpstan/phpstan-shim": "^0.11",
  1071. "phpunit/phpunit": "^7.0"
  1072. },
  1073. "type": "library",
  1074. "extra": {
  1075. "branch-alias": {
  1076. "dev-master": "1.2.x-dev"
  1077. }
  1078. },
  1079. "autoload": {
  1080. "psr-4": {
  1081. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1082. }
  1083. },
  1084. "notification-url": "https://packagist.org/downloads/",
  1085. "license": [
  1086. "MIT"
  1087. ],
  1088. "authors": [
  1089. {
  1090. "name": "Marco Pivetta",
  1091. "email": "ocramius@gmail.com",
  1092. "homepage": "http://ocramius.github.com/"
  1093. }
  1094. ],
  1095. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1096. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1097. "keywords": [
  1098. "constructor",
  1099. "instantiate"
  1100. ],
  1101. "time": "2019-03-17T17:37:11+00:00"
  1102. },
  1103. {
  1104. "name": "doctrine/lexer",
  1105. "version": "v1.0.1",
  1106. "source": {
  1107. "type": "git",
  1108. "url": "https://github.com/doctrine/lexer.git",
  1109. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1110. },
  1111. "dist": {
  1112. "type": "zip",
  1113. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1114. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1115. "shasum": ""
  1116. },
  1117. "require": {
  1118. "php": ">=5.3.2"
  1119. },
  1120. "type": "library",
  1121. "extra": {
  1122. "branch-alias": {
  1123. "dev-master": "1.0.x-dev"
  1124. }
  1125. },
  1126. "autoload": {
  1127. "psr-0": {
  1128. "Doctrine\\Common\\Lexer\\": "lib/"
  1129. }
  1130. },
  1131. "notification-url": "https://packagist.org/downloads/",
  1132. "license": [
  1133. "MIT"
  1134. ],
  1135. "authors": [
  1136. {
  1137. "name": "Roman Borschel",
  1138. "email": "roman@code-factory.org"
  1139. },
  1140. {
  1141. "name": "Guilherme Blanco",
  1142. "email": "guilhermeblanco@gmail.com"
  1143. },
  1144. {
  1145. "name": "Johannes Schmitt",
  1146. "email": "schmittjoh@gmail.com"
  1147. }
  1148. ],
  1149. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1150. "homepage": "http://www.doctrine-project.org",
  1151. "keywords": [
  1152. "lexer",
  1153. "parser"
  1154. ],
  1155. "time": "2014-09-09T13:34:57+00:00"
  1156. },
  1157. {
  1158. "name": "doctrine/orm",
  1159. "version": "v2.6.3",
  1160. "source": {
  1161. "type": "git",
  1162. "url": "https://github.com/doctrine/orm.git",
  1163. "reference": "434820973cadf2da2d66e7184be370084cc32ca8"
  1164. },
  1165. "dist": {
  1166. "type": "zip",
  1167. "url": "https://api.github.com/repos/doctrine/orm/zipball/434820973cadf2da2d66e7184be370084cc32ca8",
  1168. "reference": "434820973cadf2da2d66e7184be370084cc32ca8",
  1169. "shasum": ""
  1170. },
  1171. "require": {
  1172. "doctrine/annotations": "~1.5",
  1173. "doctrine/cache": "~1.6",
  1174. "doctrine/collections": "^1.4",
  1175. "doctrine/common": "^2.7.1",
  1176. "doctrine/dbal": "^2.6",
  1177. "doctrine/instantiator": "~1.1",
  1178. "ext-pdo": "*",
  1179. "php": "^7.1",
  1180. "symfony/console": "~3.0|~4.0"
  1181. },
  1182. "require-dev": {
  1183. "doctrine/coding-standard": "^1.0",
  1184. "phpunit/phpunit": "^6.5",
  1185. "squizlabs/php_codesniffer": "^3.2",
  1186. "symfony/yaml": "~3.4|~4.0"
  1187. },
  1188. "suggest": {
  1189. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1190. },
  1191. "bin": [
  1192. "bin/doctrine"
  1193. ],
  1194. "type": "library",
  1195. "extra": {
  1196. "branch-alias": {
  1197. "dev-master": "2.6.x-dev"
  1198. }
  1199. },
  1200. "autoload": {
  1201. "psr-4": {
  1202. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1203. }
  1204. },
  1205. "notification-url": "https://packagist.org/downloads/",
  1206. "license": [
  1207. "MIT"
  1208. ],
  1209. "description": "Object-Relational-Mapper for PHP",
  1210. "homepage": "http://www.doctrine-project.org",
  1211. "time": "2018-11-20T23:46:46+00:00"
  1212. },
  1213. {
  1214. "name": "doctrine/persistence",
  1215. "version": "v1.1.0",
  1216. "source": {
  1217. "type": "git",
  1218. "url": "https://github.com/doctrine/persistence.git",
  1219. "reference": "c0f1c17602afc18b4cbd8e1c8125f264c9cf7d38"
  1220. },
  1221. "dist": {
  1222. "type": "zip",
  1223. "url": "https://api.github.com/repos/doctrine/persistence/zipball/c0f1c17602afc18b4cbd8e1c8125f264c9cf7d38",
  1224. "reference": "c0f1c17602afc18b4cbd8e1c8125f264c9cf7d38",
  1225. "shasum": ""
  1226. },
  1227. "require": {
  1228. "doctrine/annotations": "^1.0",
  1229. "doctrine/cache": "^1.0",
  1230. "doctrine/collections": "^1.0",
  1231. "doctrine/event-manager": "^1.0",
  1232. "doctrine/reflection": "^1.0",
  1233. "php": "^7.1"
  1234. },
  1235. "conflict": {
  1236. "doctrine/common": "<2.10@dev"
  1237. },
  1238. "require-dev": {
  1239. "doctrine/coding-standard": "^5.0",
  1240. "phpstan/phpstan": "^0.8",
  1241. "phpunit/phpunit": "^7.0"
  1242. },
  1243. "type": "library",
  1244. "extra": {
  1245. "branch-alias": {
  1246. "dev-master": "1.1.x-dev"
  1247. }
  1248. },
  1249. "autoload": {
  1250. "psr-4": {
  1251. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1252. }
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "MIT"
  1257. ],
  1258. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1259. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1260. "time": "2018-11-21T00:33:13+00:00"
  1261. },
  1262. {
  1263. "name": "doctrine/reflection",
  1264. "version": "v1.0.0",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/doctrine/reflection.git",
  1268. "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6",
  1273. "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6",
  1274. "shasum": ""
  1275. },
  1276. "require": {
  1277. "doctrine/annotations": "^1.0",
  1278. "ext-tokenizer": "*",
  1279. "php": "^7.1"
  1280. },
  1281. "require-dev": {
  1282. "doctrine/coding-standard": "^4.0",
  1283. "doctrine/common": "^2.8",
  1284. "phpstan/phpstan": "^0.9.2",
  1285. "phpstan/phpstan-phpunit": "^0.9.4",
  1286. "phpunit/phpunit": "^7.0",
  1287. "squizlabs/php_codesniffer": "^3.0"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "1.0.x-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "description": "Doctrine Reflection component",
  1305. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1306. "time": "2018-06-14T14:45:07+00:00"
  1307. },
  1308. {
  1309. "name": "egulias/email-validator",
  1310. "version": "2.1.7",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/egulias/EmailValidator.git",
  1314. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
  1319. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
  1320. "shasum": ""
  1321. },
  1322. "require": {
  1323. "doctrine/lexer": "^1.0.1",
  1324. "php": ">= 5.5"
  1325. },
  1326. "require-dev": {
  1327. "dominicsayers/isemail": "dev-master",
  1328. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  1329. "satooshi/php-coveralls": "^1.0.1"
  1330. },
  1331. "suggest": {
  1332. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1333. },
  1334. "type": "library",
  1335. "extra": {
  1336. "branch-alias": {
  1337. "dev-master": "2.0.x-dev"
  1338. }
  1339. },
  1340. "autoload": {
  1341. "psr-4": {
  1342. "Egulias\\EmailValidator\\": "EmailValidator"
  1343. }
  1344. },
  1345. "notification-url": "https://packagist.org/downloads/",
  1346. "license": [
  1347. "MIT"
  1348. ],
  1349. "authors": [
  1350. {
  1351. "name": "Eduardo Gulias Davis"
  1352. }
  1353. ],
  1354. "description": "A library for validating emails against several RFCs",
  1355. "homepage": "https://github.com/egulias/EmailValidator",
  1356. "keywords": [
  1357. "email",
  1358. "emailvalidation",
  1359. "emailvalidator",
  1360. "validation",
  1361. "validator"
  1362. ],
  1363. "time": "2018-12-04T22:38:24+00:00"
  1364. },
  1365. {
  1366. "name": "ezyang/htmlpurifier",
  1367. "version": "v4.10.0",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/ezyang/htmlpurifier.git",
  1371. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  1376. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  1377. "shasum": ""
  1378. },
  1379. "require": {
  1380. "php": ">=5.2"
  1381. },
  1382. "require-dev": {
  1383. "simpletest/simpletest": "^1.1"
  1384. },
  1385. "type": "library",
  1386. "autoload": {
  1387. "psr-0": {
  1388. "HTMLPurifier": "library/"
  1389. },
  1390. "files": [
  1391. "library/HTMLPurifier.composer.php"
  1392. ]
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "LGPL"
  1397. ],
  1398. "authors": [
  1399. {
  1400. "name": "Edward Z. Yang",
  1401. "email": "admin@htmlpurifier.org",
  1402. "homepage": "http://ezyang.com"
  1403. }
  1404. ],
  1405. "description": "Standards compliant HTML filter written in PHP",
  1406. "homepage": "http://htmlpurifier.org/",
  1407. "keywords": [
  1408. "html"
  1409. ],
  1410. "time": "2018-02-23T01:58:20+00:00"
  1411. },
  1412. {
  1413. "name": "fig/link-util",
  1414. "version": "1.0.0",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "https://github.com/php-fig/link-util.git",
  1418. "reference": "1a07821801a148be4add11ab0603e4af55a72fac"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac",
  1423. "reference": "1a07821801a148be4add11ab0603e4af55a72fac",
  1424. "shasum": ""
  1425. },
  1426. "require": {
  1427. "php": ">=5.5.0",
  1428. "psr/link": "~1.0@dev"
  1429. },
  1430. "require-dev": {
  1431. "phpunit/phpunit": "^5.1",
  1432. "squizlabs/php_codesniffer": "^2.3.1"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "branch-alias": {
  1437. "dev-master": "1.0.x-dev"
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Fig\\Link\\": "src/"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "PHP-FIG",
  1452. "homepage": "http://www.php-fig.org/"
  1453. }
  1454. ],
  1455. "description": "Common utility implementations for HTTP links",
  1456. "keywords": [
  1457. "http",
  1458. "http-link",
  1459. "link",
  1460. "psr",
  1461. "psr-13",
  1462. "rest"
  1463. ],
  1464. "time": "2016-10-17T18:31:11+00:00"
  1465. },
  1466. {
  1467. "name": "friendsofsymfony/user-bundle",
  1468. "version": "v2.1.2",
  1469. "source": {
  1470. "type": "git",
  1471. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1472. "reference": "1049935edd24ec305cc6cfde1875372fa9600446"
  1473. },
  1474. "dist": {
  1475. "type": "zip",
  1476. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/1049935edd24ec305cc6cfde1875372fa9600446",
  1477. "reference": "1049935edd24ec305cc6cfde1875372fa9600446",
  1478. "shasum": ""
  1479. },
  1480. "require": {
  1481. "paragonie/random_compat": "^1 || ^2",
  1482. "php": "^5.5.9 || ^7.0",
  1483. "symfony/form": "^2.8 || ^3.0 || ^4.0",
  1484. "symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0",
  1485. "symfony/security-bundle": "^2.8 || ^3.0 || ^4.0",
  1486. "symfony/templating": "^2.8 || ^3.0 || ^4.0",
  1487. "symfony/twig-bundle": "^2.8 || ^3.0 || ^4.0",
  1488. "symfony/validator": "^2.8 || ^3.0 || ^4.0",
  1489. "twig/twig": "^1.28 || ^2.0"
  1490. },
  1491. "conflict": {
  1492. "doctrine/doctrine-bundle": "<1.3",
  1493. "symfony/doctrine-bridge": "<2.7"
  1494. },
  1495. "require-dev": {
  1496. "doctrine/doctrine-bundle": "^1.3",
  1497. "friendsofphp/php-cs-fixer": "^2.2",
  1498. "phpunit/phpunit": "^4.8.35|^5.7.11|^6.5",
  1499. "swiftmailer/swiftmailer": "^4.3 || ^5.0 || ^6.0",
  1500. "symfony/console": "^2.8 || ^3.0 || ^4.0",
  1501. "symfony/phpunit-bridge": "^2.8 || ^3.0 || ^4.0",
  1502. "symfony/yaml": "^2.8 || ^3.0 || ^4.0"
  1503. },
  1504. "type": "symfony-bundle",
  1505. "extra": {
  1506. "branch-alias": {
  1507. "dev-master": "2.1.x-dev"
  1508. }
  1509. },
  1510. "autoload": {
  1511. "psr-4": {
  1512. "FOS\\UserBundle\\": ""
  1513. },
  1514. "exclude-from-classmap": [
  1515. "/Tests/"
  1516. ]
  1517. },
  1518. "notification-url": "https://packagist.org/downloads/",
  1519. "license": [
  1520. "MIT"
  1521. ],
  1522. "authors": [
  1523. {
  1524. "name": "Christophe Coevoet",
  1525. "email": "stof@notk.org"
  1526. },
  1527. {
  1528. "name": "FriendsOfSymfony Community",
  1529. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1530. },
  1531. {
  1532. "name": "Thibault Duplessis"
  1533. }
  1534. ],
  1535. "description": "Symfony FOSUserBundle",
  1536. "homepage": "http://friendsofsymfony.github.com",
  1537. "keywords": [
  1538. "User management"
  1539. ],
  1540. "time": "2018-03-08T08:59:27+00:00"
  1541. },
  1542. {
  1543. "name": "graze/dog-statsd",
  1544. "version": "0.4.2",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/graze/dog-statsd.git",
  1548. "reference": "94fe0c0d649384f13527eff556136726f6c9803e"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/graze/dog-statsd/zipball/94fe0c0d649384f13527eff556136726f6c9803e",
  1553. "reference": "94fe0c0d649384f13527eff556136726f6c9803e",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": "^5.5|^7.0"
  1558. },
  1559. "require-dev": {
  1560. "graze/standards": "^2",
  1561. "johnkary/phpunit-speedtrap": "^1|^2|^3",
  1562. "phpunit/phpunit": "^5.7.21|^6|^7",
  1563. "squizlabs/php_codesniffer": "^3"
  1564. },
  1565. "type": "library",
  1566. "autoload": {
  1567. "psr-4": {
  1568. "Graze\\DogStatsD\\": "src"
  1569. }
  1570. },
  1571. "notification-url": "https://packagist.org/downloads/",
  1572. "license": [
  1573. "MIT"
  1574. ],
  1575. "authors": [
  1576. {
  1577. "name": "Harry Bragg",
  1578. "role": "Developer",
  1579. "email": "harry.bragg@graze.com"
  1580. },
  1581. {
  1582. "name": "Graze Developers",
  1583. "role": "Development Team",
  1584. "email": "developers@graze.com",
  1585. "homepage": "http://www.graze.com"
  1586. }
  1587. ],
  1588. "description": "DataDog StatsD Client",
  1589. "homepage": "https://github.com/graze/dog-statsd",
  1590. "keywords": [
  1591. "DataDog",
  1592. "dog-statsd",
  1593. "dogstatsd",
  1594. "graze",
  1595. "statsd"
  1596. ],
  1597. "time": "2019-07-29T16:45:12+00:00"
  1598. },
  1599. {
  1600. "name": "guzzlehttp/guzzle",
  1601. "version": "6.3.3",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/guzzle/guzzle.git",
  1605. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1610. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "guzzlehttp/promises": "^1.0",
  1615. "guzzlehttp/psr7": "^1.4",
  1616. "php": ">=5.5"
  1617. },
  1618. "require-dev": {
  1619. "ext-curl": "*",
  1620. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1621. "psr/log": "^1.0"
  1622. },
  1623. "suggest": {
  1624. "psr/log": "Required for using the Log middleware"
  1625. },
  1626. "type": "library",
  1627. "extra": {
  1628. "branch-alias": {
  1629. "dev-master": "6.3-dev"
  1630. }
  1631. },
  1632. "autoload": {
  1633. "files": [
  1634. "src/functions_include.php"
  1635. ],
  1636. "psr-4": {
  1637. "GuzzleHttp\\": "src/"
  1638. }
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "MIT"
  1643. ],
  1644. "authors": [
  1645. {
  1646. "name": "Michael Dowling",
  1647. "email": "mtdowling@gmail.com",
  1648. "homepage": "https://github.com/mtdowling"
  1649. }
  1650. ],
  1651. "description": "Guzzle is a PHP HTTP client library",
  1652. "homepage": "http://guzzlephp.org/",
  1653. "keywords": [
  1654. "client",
  1655. "curl",
  1656. "framework",
  1657. "http",
  1658. "http client",
  1659. "rest",
  1660. "web service"
  1661. ],
  1662. "time": "2018-04-22T15:46:56+00:00"
  1663. },
  1664. {
  1665. "name": "guzzlehttp/promises",
  1666. "version": "v1.3.1",
  1667. "source": {
  1668. "type": "git",
  1669. "url": "https://github.com/guzzle/promises.git",
  1670. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1671. },
  1672. "dist": {
  1673. "type": "zip",
  1674. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1675. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1676. "shasum": ""
  1677. },
  1678. "require": {
  1679. "php": ">=5.5.0"
  1680. },
  1681. "require-dev": {
  1682. "phpunit/phpunit": "^4.0"
  1683. },
  1684. "type": "library",
  1685. "extra": {
  1686. "branch-alias": {
  1687. "dev-master": "1.4-dev"
  1688. }
  1689. },
  1690. "autoload": {
  1691. "psr-4": {
  1692. "GuzzleHttp\\Promise\\": "src/"
  1693. },
  1694. "files": [
  1695. "src/functions_include.php"
  1696. ]
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "MIT"
  1701. ],
  1702. "authors": [
  1703. {
  1704. "name": "Michael Dowling",
  1705. "email": "mtdowling@gmail.com",
  1706. "homepage": "https://github.com/mtdowling"
  1707. }
  1708. ],
  1709. "description": "Guzzle promises library",
  1710. "keywords": [
  1711. "promise"
  1712. ],
  1713. "time": "2016-12-20T10:07:11+00:00"
  1714. },
  1715. {
  1716. "name": "guzzlehttp/psr7",
  1717. "version": "1.5.2",
  1718. "source": {
  1719. "type": "git",
  1720. "url": "https://github.com/guzzle/psr7.git",
  1721. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  1722. },
  1723. "dist": {
  1724. "type": "zip",
  1725. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  1726. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  1727. "shasum": ""
  1728. },
  1729. "require": {
  1730. "php": ">=5.4.0",
  1731. "psr/http-message": "~1.0",
  1732. "ralouphie/getallheaders": "^2.0.5"
  1733. },
  1734. "provide": {
  1735. "psr/http-message-implementation": "1.0"
  1736. },
  1737. "require-dev": {
  1738. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1739. },
  1740. "type": "library",
  1741. "extra": {
  1742. "branch-alias": {
  1743. "dev-master": "1.5-dev"
  1744. }
  1745. },
  1746. "autoload": {
  1747. "psr-4": {
  1748. "GuzzleHttp\\Psr7\\": "src/"
  1749. },
  1750. "files": [
  1751. "src/functions_include.php"
  1752. ]
  1753. },
  1754. "notification-url": "https://packagist.org/downloads/",
  1755. "license": [
  1756. "MIT"
  1757. ],
  1758. "authors": [
  1759. {
  1760. "name": "Michael Dowling",
  1761. "email": "mtdowling@gmail.com",
  1762. "homepage": "https://github.com/mtdowling"
  1763. },
  1764. {
  1765. "name": "Tobias Schultze",
  1766. "homepage": "https://github.com/Tobion"
  1767. }
  1768. ],
  1769. "description": "PSR-7 message implementation that also provides common utility methods",
  1770. "keywords": [
  1771. "http",
  1772. "message",
  1773. "psr-7",
  1774. "request",
  1775. "response",
  1776. "stream",
  1777. "uri",
  1778. "url"
  1779. ],
  1780. "time": "2018-12-04T20:46:45+00:00"
  1781. },
  1782. {
  1783. "name": "hwi/oauth-bundle",
  1784. "version": "0.6.3",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  1788. "reference": "0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01",
  1793. "reference": "0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01",
  1794. "shasum": ""
  1795. },
  1796. "require": {
  1797. "php": "^5.6|^7.0",
  1798. "php-http/client-common": "^1.3",
  1799. "php-http/client-implementation": "^1.0",
  1800. "php-http/discovery": "^1.0",
  1801. "php-http/httplug": "^1.0",
  1802. "php-http/message-factory": "^1.0",
  1803. "psr/http-message": "^1.0",
  1804. "symfony/form": "^2.8|^3.0|^4.0",
  1805. "symfony/framework-bundle": "^2.8|^3.0|^4.0",
  1806. "symfony/options-resolver": "^2.8|^3.0|^4.0",
  1807. "symfony/security-bundle": "^2.8|^3.0|^4.0",
  1808. "symfony/templating": "^2.8|^3.0|^4.0",
  1809. "symfony/yaml": "^2.8|^3.0|^4.0"
  1810. },
  1811. "conflict": {
  1812. "twig/twig": "<1.12"
  1813. },
  1814. "require-dev": {
  1815. "doctrine/orm": "^2.3",
  1816. "friendsofphp/php-cs-fixer": "^2.0",
  1817. "friendsofsymfony/user-bundle": "^1.3|^2.0",
  1818. "php-http/guzzle6-adapter": "^1.1",
  1819. "php-http/httplug-bundle": "^1.7",
  1820. "phpunit/phpunit": "^5.7",
  1821. "symfony/phpunit-bridge": "^2.8|^3.0|^4.0",
  1822. "symfony/property-access": "^2.8|^3.0|^4.0",
  1823. "symfony/stopwatch": "^2.8|^3.0|^4.0",
  1824. "symfony/twig-bundle": "^2.8|^3.0|^4.0",
  1825. "symfony/validator": "^2.8|^3.0|^4.0"
  1826. },
  1827. "suggest": {
  1828. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  1829. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  1830. "php-http/httplug-bundle": "to provide required HTTP client with ease.",
  1831. "symfony/property-access": "to use FOSUB integration with this bundle",
  1832. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  1833. },
  1834. "type": "symfony-bundle",
  1835. "extra": {
  1836. "branch-alias": {
  1837. "dev-master": "0.6-dev"
  1838. }
  1839. },
  1840. "autoload": {
  1841. "psr-4": {
  1842. "HWI\\Bundle\\OAuthBundle\\": ""
  1843. },
  1844. "exclude-from-classmap": [
  1845. "/Tests/"
  1846. ]
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "MIT"
  1851. ],
  1852. "authors": [
  1853. {
  1854. "name": "Contributors",
  1855. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  1856. },
  1857. {
  1858. "name": "Joseph Bielawski",
  1859. "email": "stloyd@gmail.com"
  1860. },
  1861. {
  1862. "name": "Alexander",
  1863. "email": "iam.asm89@gmail.com"
  1864. },
  1865. {
  1866. "name": "Geoffrey Bachelet",
  1867. "email": "geoffrey.bachelet@gmail.com"
  1868. }
  1869. ],
  1870. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  1871. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  1872. "keywords": [
  1873. "37signals",
  1874. "Authentication",
  1875. "Deezer",
  1876. "EVE Online",
  1877. "amazon",
  1878. "asana",
  1879. "auth0",
  1880. "azure",
  1881. "bitbucket",
  1882. "bitly",
  1883. "box",
  1884. "bufferapp",
  1885. "clever",
  1886. "dailymotion",
  1887. "deviantart",
  1888. "discogs",
  1889. "disqus",
  1890. "dropbox",
  1891. "eventbrite",
  1892. "facebook",
  1893. "firewall",
  1894. "fiware",
  1895. "flickr",
  1896. "foursquare",
  1897. "github",
  1898. "gitlab",
  1899. "google",
  1900. "hubic",
  1901. "instagram",
  1902. "jawbone",
  1903. "jira",
  1904. "linkedin",
  1905. "mail.ru",
  1906. "oauth",
  1907. "oauth1",
  1908. "oauth2",
  1909. "odnoklassniki",
  1910. "paypal",
  1911. "qq",
  1912. "reddit",
  1913. "runkeeper",
  1914. "salesforce",
  1915. "security",
  1916. "sensio connect",
  1917. "sina weibo",
  1918. "slack",
  1919. "sound cloud",
  1920. "spotify",
  1921. "stack exchange",
  1922. "stereomood",
  1923. "strava",
  1924. "toshl",
  1925. "trakt",
  1926. "trello",
  1927. "twitch",
  1928. "twitter",
  1929. "vkontakte",
  1930. "windows live",
  1931. "wordpress",
  1932. "wunderlist",
  1933. "xing",
  1934. "yahoo",
  1935. "yandex",
  1936. "youtube"
  1937. ],
  1938. "time": "2018-07-31T10:19:28+00:00"
  1939. },
  1940. {
  1941. "name": "incenteev/composer-parameter-handler",
  1942. "version": "v2.1.3",
  1943. "source": {
  1944. "type": "git",
  1945. "url": "https://github.com/Incenteev/ParameterHandler.git",
  1946. "reference": "933c45a34814f27f2345c11c37d46b3ca7303550"
  1947. },
  1948. "dist": {
  1949. "type": "zip",
  1950. "url": "https://api.github.com/repos/Incenteev/ParameterHandler/zipball/933c45a34814f27f2345c11c37d46b3ca7303550",
  1951. "reference": "933c45a34814f27f2345c11c37d46b3ca7303550",
  1952. "shasum": ""
  1953. },
  1954. "require": {
  1955. "php": ">=5.3.3",
  1956. "symfony/yaml": "^2.3 || ^3.0 || ^4.0"
  1957. },
  1958. "require-dev": {
  1959. "composer/composer": "^1.0@dev",
  1960. "symfony/filesystem": "^2.3 || ^3 || ^4",
  1961. "symfony/phpunit-bridge": "^4.0"
  1962. },
  1963. "type": "library",
  1964. "extra": {
  1965. "branch-alias": {
  1966. "dev-master": "2.1.x-dev"
  1967. }
  1968. },
  1969. "autoload": {
  1970. "psr-4": {
  1971. "Incenteev\\ParameterHandler\\": ""
  1972. }
  1973. },
  1974. "notification-url": "https://packagist.org/downloads/",
  1975. "license": [
  1976. "MIT"
  1977. ],
  1978. "description": "Composer script handling your ignored parameter file",
  1979. "homepage": "https://github.com/Incenteev/ParameterHandler",
  1980. "time": "2018-02-13T18:05:56+00:00"
  1981. },
  1982. {
  1983. "name": "jdorn/sql-formatter",
  1984. "version": "v1.2.17",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/jdorn/sql-formatter.git",
  1988. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1993. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1994. "shasum": ""
  1995. },
  1996. "require": {
  1997. "php": ">=5.2.4"
  1998. },
  1999. "require-dev": {
  2000. "phpunit/phpunit": "3.7.*"
  2001. },
  2002. "type": "library",
  2003. "extra": {
  2004. "branch-alias": {
  2005. "dev-master": "1.3.x-dev"
  2006. }
  2007. },
  2008. "autoload": {
  2009. "classmap": [
  2010. "lib"
  2011. ]
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Jeremy Dorn",
  2020. "email": "jeremy@jeremydorn.com",
  2021. "homepage": "http://jeremydorn.com/"
  2022. }
  2023. ],
  2024. "description": "a PHP SQL highlighting library",
  2025. "homepage": "https://github.com/jdorn/sql-formatter/",
  2026. "keywords": [
  2027. "highlight",
  2028. "sql"
  2029. ],
  2030. "time": "2014-01-12T16:20:24+00:00"
  2031. },
  2032. {
  2033. "name": "justinrainbow/json-schema",
  2034. "version": "5.2.8",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/justinrainbow/json-schema.git",
  2038. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  2043. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  2044. "shasum": ""
  2045. },
  2046. "require": {
  2047. "php": ">=5.3.3"
  2048. },
  2049. "require-dev": {
  2050. "friendsofphp/php-cs-fixer": "~2.2.20",
  2051. "json-schema/json-schema-test-suite": "1.2.0",
  2052. "phpunit/phpunit": "^4.8.35"
  2053. },
  2054. "bin": [
  2055. "bin/validate-json"
  2056. ],
  2057. "type": "library",
  2058. "extra": {
  2059. "branch-alias": {
  2060. "dev-master": "5.0.x-dev"
  2061. }
  2062. },
  2063. "autoload": {
  2064. "psr-4": {
  2065. "JsonSchema\\": "src/JsonSchema/"
  2066. }
  2067. },
  2068. "notification-url": "https://packagist.org/downloads/",
  2069. "license": [
  2070. "MIT"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "Bruno Prieto Reis",
  2075. "email": "bruno.p.reis@gmail.com"
  2076. },
  2077. {
  2078. "name": "Justin Rainbow",
  2079. "email": "justin.rainbow@gmail.com"
  2080. },
  2081. {
  2082. "name": "Igor Wiedler",
  2083. "email": "igor@wiedler.ch"
  2084. },
  2085. {
  2086. "name": "Robert Schönthal",
  2087. "email": "seroscho@googlemail.com"
  2088. }
  2089. ],
  2090. "description": "A library to validate a json schema.",
  2091. "homepage": "https://github.com/justinrainbow/json-schema",
  2092. "keywords": [
  2093. "json",
  2094. "schema"
  2095. ],
  2096. "time": "2019-01-14T23:55:14+00:00"
  2097. },
  2098. {
  2099. "name": "knplabs/knp-menu",
  2100. "version": "2.3.0",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://github.com/KnpLabs/KnpMenu.git",
  2104. "reference": "655630a1db0b72108262d1a844de3b1ba0885be5"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/655630a1db0b72108262d1a844de3b1ba0885be5",
  2109. "reference": "655630a1db0b72108262d1a844de3b1ba0885be5",
  2110. "shasum": ""
  2111. },
  2112. "require": {
  2113. "php": ">=5.6.0"
  2114. },
  2115. "require-dev": {
  2116. "psr/container": "^1.0",
  2117. "symfony/http-foundation": "~2.4|~3.0|^4.0",
  2118. "symfony/phpunit-bridge": "~3.3|^4.0",
  2119. "symfony/routing": "~2.3|~3.0|^4.0",
  2120. "twig/twig": "~1.16|~2.0"
  2121. },
  2122. "suggest": {
  2123. "twig/twig": "for the TwigRenderer and the integration with your templates"
  2124. },
  2125. "type": "library",
  2126. "extra": {
  2127. "branch-alias": {
  2128. "dev-master": "2.3-dev"
  2129. }
  2130. },
  2131. "autoload": {
  2132. "psr-4": {
  2133. "Knp\\Menu\\": "src/Knp/Menu"
  2134. }
  2135. },
  2136. "notification-url": "https://packagist.org/downloads/",
  2137. "license": [
  2138. "MIT"
  2139. ],
  2140. "authors": [
  2141. {
  2142. "name": "Christophe Coevoet",
  2143. "email": "stof@notk.org"
  2144. },
  2145. {
  2146. "name": "Symfony Community",
  2147. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  2148. },
  2149. {
  2150. "name": "KnpLabs",
  2151. "homepage": "https://knplabs.com"
  2152. }
  2153. ],
  2154. "description": "An object oriented menu library",
  2155. "homepage": "https://knplabs.com",
  2156. "keywords": [
  2157. "menu",
  2158. "tree"
  2159. ],
  2160. "time": "2017-11-18T20:49:26+00:00"
  2161. },
  2162. {
  2163. "name": "knplabs/knp-menu-bundle",
  2164. "version": "v2.2.1",
  2165. "source": {
  2166. "type": "git",
  2167. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  2168. "reference": "6bea43eb84fc67c43ab2b43709194efffa8a8ac0"
  2169. },
  2170. "dist": {
  2171. "type": "zip",
  2172. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/6bea43eb84fc67c43ab2b43709194efffa8a8ac0",
  2173. "reference": "6bea43eb84fc67c43ab2b43709194efffa8a8ac0",
  2174. "shasum": ""
  2175. },
  2176. "require": {
  2177. "knplabs/knp-menu": "~2.3",
  2178. "php": "^5.6 || ^7",
  2179. "symfony/framework-bundle": "~2.7|~3.0 | ^4.0"
  2180. },
  2181. "require-dev": {
  2182. "symfony/expression-language": "~2.7|~3.0 | ^4.0",
  2183. "symfony/phpunit-bridge": "^3.3 | ^4.0",
  2184. "symfony/templating": "~2.7|~3.0 | ^4.0"
  2185. },
  2186. "type": "symfony-bundle",
  2187. "extra": {
  2188. "branch-alias": {
  2189. "dev-master": "2.2.x-dev"
  2190. }
  2191. },
  2192. "autoload": {
  2193. "psr-4": {
  2194. "Knp\\Bundle\\MenuBundle\\": "src"
  2195. }
  2196. },
  2197. "notification-url": "https://packagist.org/downloads/",
  2198. "license": [
  2199. "MIT"
  2200. ],
  2201. "authors": [
  2202. {
  2203. "name": "Christophe Coevoet",
  2204. "email": "stof@notk.org"
  2205. },
  2206. {
  2207. "name": "Knplabs",
  2208. "homepage": "http://knplabs.com"
  2209. },
  2210. {
  2211. "name": "Symfony Community",
  2212. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  2213. }
  2214. ],
  2215. "description": "This bundle provides an integration of the KnpMenu library",
  2216. "keywords": [
  2217. "menu"
  2218. ],
  2219. "time": "2017-12-24T16:32:39+00:00"
  2220. },
  2221. {
  2222. "name": "monolog/monolog",
  2223. "version": "1.24.0",
  2224. "source": {
  2225. "type": "git",
  2226. "url": "https://github.com/Seldaek/monolog.git",
  2227. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  2228. },
  2229. "dist": {
  2230. "type": "zip",
  2231. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2232. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2233. "shasum": ""
  2234. },
  2235. "require": {
  2236. "php": ">=5.3.0",
  2237. "psr/log": "~1.0"
  2238. },
  2239. "provide": {
  2240. "psr/log-implementation": "1.0.0"
  2241. },
  2242. "require-dev": {
  2243. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2244. "doctrine/couchdb": "~1.0@dev",
  2245. "graylog2/gelf-php": "~1.0",
  2246. "jakub-onderka/php-parallel-lint": "0.9",
  2247. "php-amqplib/php-amqplib": "~2.4",
  2248. "php-console/php-console": "^3.1.3",
  2249. "phpunit/phpunit": "~4.5",
  2250. "phpunit/phpunit-mock-objects": "2.3.0",
  2251. "ruflin/elastica": ">=0.90 <3.0",
  2252. "sentry/sentry": "^0.13",
  2253. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2254. },
  2255. "suggest": {
  2256. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2257. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2258. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2259. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2260. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2261. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2262. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2263. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2264. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2265. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2266. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2267. },
  2268. "type": "library",
  2269. "extra": {
  2270. "branch-alias": {
  2271. "dev-master": "2.0.x-dev"
  2272. }
  2273. },
  2274. "autoload": {
  2275. "psr-4": {
  2276. "Monolog\\": "src/Monolog"
  2277. }
  2278. },
  2279. "notification-url": "https://packagist.org/downloads/",
  2280. "license": [
  2281. "MIT"
  2282. ],
  2283. "authors": [
  2284. {
  2285. "name": "Jordi Boggiano",
  2286. "email": "j.boggiano@seld.be",
  2287. "homepage": "http://seld.be"
  2288. }
  2289. ],
  2290. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2291. "homepage": "http://github.com/Seldaek/monolog",
  2292. "keywords": [
  2293. "log",
  2294. "logging",
  2295. "psr-3"
  2296. ],
  2297. "time": "2018-11-05T09:00:11+00:00"
  2298. },
  2299. {
  2300. "name": "nelmio/cors-bundle",
  2301. "version": "1.5.5",
  2302. "source": {
  2303. "type": "git",
  2304. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  2305. "reference": "adabee944e6fe52ee566caf1770a29355b1e8d83"
  2306. },
  2307. "dist": {
  2308. "type": "zip",
  2309. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/adabee944e6fe52ee566caf1770a29355b1e8d83",
  2310. "reference": "adabee944e6fe52ee566caf1770a29355b1e8d83",
  2311. "shasum": ""
  2312. },
  2313. "require": {
  2314. "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0"
  2315. },
  2316. "require-dev": {
  2317. "matthiasnoback/symfony-dependency-injection-test": "^1.0 || ^2.0",
  2318. "mockery/mockery": "^0.9 || ^1.0",
  2319. "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0"
  2320. },
  2321. "type": "symfony-bundle",
  2322. "extra": {
  2323. "branch-alias": {
  2324. "dev-master": "1.5.x-dev"
  2325. }
  2326. },
  2327. "autoload": {
  2328. "psr-4": {
  2329. "Nelmio\\CorsBundle\\": ""
  2330. },
  2331. "exclude-from-classmap": [
  2332. "/Tests/"
  2333. ]
  2334. },
  2335. "notification-url": "https://packagist.org/downloads/",
  2336. "license": [
  2337. "MIT"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "Nelmio",
  2342. "homepage": "http://nelm.io"
  2343. },
  2344. {
  2345. "name": "Symfony Community",
  2346. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  2347. }
  2348. ],
  2349. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  2350. "keywords": [
  2351. "api",
  2352. "cors",
  2353. "crossdomain"
  2354. ],
  2355. "time": "2019-02-27T13:13:15+00:00"
  2356. },
  2357. {
  2358. "name": "nelmio/security-bundle",
  2359. "version": "2.7.0",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  2363. "reference": "ce63c12665440b538dc743dfd9afad3dadf7d12c"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/ce63c12665440b538dc743dfd9afad3dadf7d12c",
  2368. "reference": "ce63c12665440b538dc743dfd9afad3dadf7d12c",
  2369. "shasum": ""
  2370. },
  2371. "require": {
  2372. "paragonie/random_compat": "~1.0|~2.0|9.99.99",
  2373. "symfony/framework-bundle": "~2.3|~3.0|~4.0",
  2374. "symfony/security": "~2.3|~3.0|~4.0",
  2375. "ua-parser/uap-php": "^3.4.4"
  2376. },
  2377. "require-dev": {
  2378. "doctrine/cache": "^1.0",
  2379. "psr/cache": "^1.0",
  2380. "symfony/phpunit-bridge": "^3.4.24|~4.0",
  2381. "symfony/yaml": "~2.3|~3.0|~4.0",
  2382. "twig/twig": "^1.24"
  2383. },
  2384. "suggest": {
  2385. "ua-parser/uap-php": "To allow adapt CSP directives given the user-agent"
  2386. },
  2387. "type": "symfony-bundle",
  2388. "extra": {
  2389. "branch-alias": {
  2390. "dev-master": "2.6.x-dev"
  2391. }
  2392. },
  2393. "autoload": {
  2394. "psr-4": {
  2395. "Nelmio\\SecurityBundle\\": ""
  2396. }
  2397. },
  2398. "notification-url": "https://packagist.org/downloads/",
  2399. "license": [
  2400. "MIT"
  2401. ],
  2402. "authors": [
  2403. {
  2404. "name": "Nelmio",
  2405. "homepage": "http://nelm.io"
  2406. },
  2407. {
  2408. "name": "Symfony Community",
  2409. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  2410. }
  2411. ],
  2412. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  2413. "keywords": [
  2414. "security"
  2415. ],
  2416. "time": "2019-04-03T13:44:45+00:00"
  2417. },
  2418. {
  2419. "name": "pagerfanta/pagerfanta",
  2420. "version": "v2.1.2",
  2421. "source": {
  2422. "type": "git",
  2423. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2424. "reference": "45a85ad426316ae37f2d007022e5b4c95bc3aef4"
  2425. },
  2426. "dist": {
  2427. "type": "zip",
  2428. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/45a85ad426316ae37f2d007022e5b4c95bc3aef4",
  2429. "reference": "45a85ad426316ae37f2d007022e5b4c95bc3aef4",
  2430. "shasum": ""
  2431. },
  2432. "require": {
  2433. "php": "^7.0"
  2434. },
  2435. "require-dev": {
  2436. "doctrine/orm": "~2.3",
  2437. "doctrine/phpcr-odm": "1.*",
  2438. "jackalope/jackalope-doctrine-dbal": "1.*",
  2439. "jmikola/geojson": "~1.0",
  2440. "mandango/mandango": "~1.0@dev",
  2441. "mandango/mondator": "~1.0@dev",
  2442. "phpunit/phpunit": "^6.5",
  2443. "propel/propel": "~2.0@dev",
  2444. "propel/propel1": "~1.6",
  2445. "ruflin/elastica": "~1.3",
  2446. "solarium/solarium": "~3.1"
  2447. },
  2448. "suggest": {
  2449. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2450. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2451. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2452. "mandango/mandango": "To use the MandangoAdapter.",
  2453. "propel/propel": "To use the Propel2Adapter",
  2454. "propel/propel1": "To use the PropelAdapter",
  2455. "solarium/solarium": "To use the SolariumAdapter."
  2456. },
  2457. "type": "library",
  2458. "extra": {
  2459. "branch-alias": {
  2460. "dev-master": "1.0.x-dev"
  2461. }
  2462. },
  2463. "autoload": {
  2464. "psr-4": {
  2465. "Pagerfanta\\": "src/Pagerfanta/"
  2466. }
  2467. },
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "MIT"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "Pablo Díez",
  2475. "email": "pablodip@gmail.com"
  2476. }
  2477. ],
  2478. "description": "Pagination for PHP",
  2479. "keywords": [
  2480. "page",
  2481. "pagination",
  2482. "paginator",
  2483. "paging"
  2484. ],
  2485. "time": "2019-04-02T08:50:39+00:00"
  2486. },
  2487. {
  2488. "name": "paragonie/random_compat",
  2489. "version": "v2.0.18",
  2490. "source": {
  2491. "type": "git",
  2492. "url": "https://github.com/paragonie/random_compat.git",
  2493. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  2494. },
  2495. "dist": {
  2496. "type": "zip",
  2497. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2498. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2499. "shasum": ""
  2500. },
  2501. "require": {
  2502. "php": ">=5.2.0"
  2503. },
  2504. "require-dev": {
  2505. "phpunit/phpunit": "4.*|5.*"
  2506. },
  2507. "suggest": {
  2508. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2509. },
  2510. "type": "library",
  2511. "autoload": {
  2512. "files": [
  2513. "lib/random.php"
  2514. ]
  2515. },
  2516. "notification-url": "https://packagist.org/downloads/",
  2517. "license": [
  2518. "MIT"
  2519. ],
  2520. "authors": [
  2521. {
  2522. "name": "Paragon Initiative Enterprises",
  2523. "email": "security@paragonie.com",
  2524. "homepage": "https://paragonie.com"
  2525. }
  2526. ],
  2527. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2528. "keywords": [
  2529. "csprng",
  2530. "polyfill",
  2531. "pseudorandom",
  2532. "random"
  2533. ],
  2534. "time": "2019-01-03T20:59:08+00:00"
  2535. },
  2536. {
  2537. "name": "php-http/client-common",
  2538. "version": "1.9.1",
  2539. "source": {
  2540. "type": "git",
  2541. "url": "https://github.com/php-http/client-common.git",
  2542. "reference": "0e156a12cc3e46f590c73bf57592a2252fc3dc48"
  2543. },
  2544. "dist": {
  2545. "type": "zip",
  2546. "url": "https://api.github.com/repos/php-http/client-common/zipball/0e156a12cc3e46f590c73bf57592a2252fc3dc48",
  2547. "reference": "0e156a12cc3e46f590c73bf57592a2252fc3dc48",
  2548. "shasum": ""
  2549. },
  2550. "require": {
  2551. "php": "^5.4 || ^7.0",
  2552. "php-http/httplug": "^1.1",
  2553. "php-http/message": "^1.6",
  2554. "php-http/message-factory": "^1.0",
  2555. "symfony/options-resolver": "^2.6 || ^3.0 || ^4.0"
  2556. },
  2557. "require-dev": {
  2558. "guzzlehttp/psr7": "^1.4",
  2559. "phpspec/phpspec": "^2.5 || ^3.4 || ^4.2"
  2560. },
  2561. "suggest": {
  2562. "php-http/cache-plugin": "PSR-6 Cache plugin",
  2563. "php-http/logger-plugin": "PSR-3 Logger plugin",
  2564. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  2565. },
  2566. "type": "library",
  2567. "extra": {
  2568. "branch-alias": {
  2569. "dev-master": "1.9.x-dev"
  2570. }
  2571. },
  2572. "autoload": {
  2573. "psr-4": {
  2574. "Http\\Client\\Common\\": "src/"
  2575. }
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Márk Sági-Kazár",
  2584. "email": "mark.sagikazar@gmail.com"
  2585. }
  2586. ],
  2587. "description": "Common HTTP Client implementations and tools for HTTPlug",
  2588. "homepage": "http://httplug.io",
  2589. "keywords": [
  2590. "client",
  2591. "common",
  2592. "http",
  2593. "httplug"
  2594. ],
  2595. "time": "2019-02-02T07:03:15+00:00"
  2596. },
  2597. {
  2598. "name": "php-http/discovery",
  2599. "version": "1.6.1",
  2600. "source": {
  2601. "type": "git",
  2602. "url": "https://github.com/php-http/discovery.git",
  2603. "reference": "684855f2c2e9d0a61868b8f8d6bd0295c8a4b651"
  2604. },
  2605. "dist": {
  2606. "type": "zip",
  2607. "url": "https://api.github.com/repos/php-http/discovery/zipball/684855f2c2e9d0a61868b8f8d6bd0295c8a4b651",
  2608. "reference": "684855f2c2e9d0a61868b8f8d6bd0295c8a4b651",
  2609. "shasum": ""
  2610. },
  2611. "require": {
  2612. "php": "^5.5 || ^7.0"
  2613. },
  2614. "conflict": {
  2615. "nyholm/psr7": "<1.0"
  2616. },
  2617. "require-dev": {
  2618. "php-http/httplug": "^1.0 || ^2.0",
  2619. "php-http/message-factory": "^1.0",
  2620. "phpspec/phpspec": "^2.4",
  2621. "puli/composer-plugin": "1.0.0-beta10"
  2622. },
  2623. "suggest": {
  2624. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  2625. "puli/composer-plugin": "Sets up Puli which is recommended for Discovery to work. Check http://docs.php-http.org/en/latest/discovery.html for more details."
  2626. },
  2627. "type": "library",
  2628. "extra": {
  2629. "branch-alias": {
  2630. "dev-master": "1.5-dev"
  2631. }
  2632. },
  2633. "autoload": {
  2634. "psr-4": {
  2635. "Http\\Discovery\\": "src/"
  2636. }
  2637. },
  2638. "notification-url": "https://packagist.org/downloads/",
  2639. "license": [
  2640. "MIT"
  2641. ],
  2642. "authors": [
  2643. {
  2644. "name": "Márk Sági-Kazár",
  2645. "email": "mark.sagikazar@gmail.com"
  2646. }
  2647. ],
  2648. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  2649. "homepage": "http://php-http.org",
  2650. "keywords": [
  2651. "adapter",
  2652. "client",
  2653. "discovery",
  2654. "factory",
  2655. "http",
  2656. "message",
  2657. "psr7"
  2658. ],
  2659. "time": "2019-02-23T07:42:53+00:00"
  2660. },
  2661. {
  2662. "name": "php-http/guzzle6-adapter",
  2663. "version": "v1.1.1",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/php-http/guzzle6-adapter.git",
  2667. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/a56941f9dc6110409cfcddc91546ee97039277ab",
  2672. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab",
  2673. "shasum": ""
  2674. },
  2675. "require": {
  2676. "guzzlehttp/guzzle": "^6.0",
  2677. "php": ">=5.5.0",
  2678. "php-http/httplug": "^1.0"
  2679. },
  2680. "provide": {
  2681. "php-http/async-client-implementation": "1.0",
  2682. "php-http/client-implementation": "1.0"
  2683. },
  2684. "require-dev": {
  2685. "ext-curl": "*",
  2686. "php-http/adapter-integration-tests": "^0.4"
  2687. },
  2688. "type": "library",
  2689. "extra": {
  2690. "branch-alias": {
  2691. "dev-master": "1.2-dev"
  2692. }
  2693. },
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Http\\Adapter\\Guzzle6\\": "src/"
  2697. }
  2698. },
  2699. "notification-url": "https://packagist.org/downloads/",
  2700. "license": [
  2701. "MIT"
  2702. ],
  2703. "authors": [
  2704. {
  2705. "name": "Márk Sági-Kazár",
  2706. "email": "mark.sagikazar@gmail.com"
  2707. },
  2708. {
  2709. "name": "David de Boer",
  2710. "email": "david@ddeboer.nl"
  2711. }
  2712. ],
  2713. "description": "Guzzle 6 HTTP Adapter",
  2714. "homepage": "http://httplug.io",
  2715. "keywords": [
  2716. "Guzzle",
  2717. "http"
  2718. ],
  2719. "time": "2016-05-10T06:13:32+00:00"
  2720. },
  2721. {
  2722. "name": "php-http/httplug",
  2723. "version": "v1.1.0",
  2724. "source": {
  2725. "type": "git",
  2726. "url": "https://github.com/php-http/httplug.git",
  2727. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018"
  2728. },
  2729. "dist": {
  2730. "type": "zip",
  2731. "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  2732. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  2733. "shasum": ""
  2734. },
  2735. "require": {
  2736. "php": ">=5.4",
  2737. "php-http/promise": "^1.0",
  2738. "psr/http-message": "^1.0"
  2739. },
  2740. "require-dev": {
  2741. "henrikbjorn/phpspec-code-coverage": "^1.0",
  2742. "phpspec/phpspec": "^2.4"
  2743. },
  2744. "type": "library",
  2745. "extra": {
  2746. "branch-alias": {
  2747. "dev-master": "1.1-dev"
  2748. }
  2749. },
  2750. "autoload": {
  2751. "psr-4": {
  2752. "Http\\Client\\": "src/"
  2753. }
  2754. },
  2755. "notification-url": "https://packagist.org/downloads/",
  2756. "license": [
  2757. "MIT"
  2758. ],
  2759. "authors": [
  2760. {
  2761. "name": "Eric GELOEN",
  2762. "email": "geloen.eric@gmail.com"
  2763. },
  2764. {
  2765. "name": "Márk Sági-Kazár",
  2766. "email": "mark.sagikazar@gmail.com"
  2767. }
  2768. ],
  2769. "description": "HTTPlug, the HTTP client abstraction for PHP",
  2770. "homepage": "http://httplug.io",
  2771. "keywords": [
  2772. "client",
  2773. "http"
  2774. ],
  2775. "time": "2016-08-31T08:30:17+00:00"
  2776. },
  2777. {
  2778. "name": "php-http/httplug-bundle",
  2779. "version": "1.15.0",
  2780. "source": {
  2781. "type": "git",
  2782. "url": "https://github.com/php-http/HttplugBundle.git",
  2783. "reference": "8bcd1b180a3033631b7f06bff1aa27644fe0c2b7"
  2784. },
  2785. "dist": {
  2786. "type": "zip",
  2787. "url": "https://api.github.com/repos/php-http/HttplugBundle/zipball/8bcd1b180a3033631b7f06bff1aa27644fe0c2b7",
  2788. "reference": "8bcd1b180a3033631b7f06bff1aa27644fe0c2b7",
  2789. "shasum": ""
  2790. },
  2791. "require": {
  2792. "php": "^5.5 || ^7.0",
  2793. "php-http/client-common": "^1.9 || ^2.0",
  2794. "php-http/client-implementation": "^1.0",
  2795. "php-http/discovery": "^1.0",
  2796. "php-http/httplug": "^1.0 || ^2.0",
  2797. "php-http/logger-plugin": "^1.1",
  2798. "php-http/message": "^1.4",
  2799. "php-http/message-factory": "^1.0.2",
  2800. "php-http/stopwatch-plugin": "^1.2",
  2801. "psr/http-message": "^1.0",
  2802. "symfony/config": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2803. "symfony/dependency-injection": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2804. "symfony/event-dispatcher": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2805. "symfony/http-kernel": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2806. "symfony/options-resolver": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1"
  2807. },
  2808. "conflict": {
  2809. "php-http/guzzle6-adapter": "<1.1"
  2810. },
  2811. "require-dev": {
  2812. "guzzlehttp/psr7": "^1.0",
  2813. "matthiasnoback/symfony-dependency-injection-test": "^1.1 || ^2.3",
  2814. "nyholm/nsa": "^1.1",
  2815. "php-http/cache-plugin": "^1.6",
  2816. "php-http/guzzle6-adapter": "^1.1.1 || ^2.0.1",
  2817. "php-http/mock-client": "^1.2",
  2818. "php-http/promise": "^1.0",
  2819. "polishsymfonycommunity/symfony-mocker-container": "^1.0",
  2820. "symfony/browser-kit": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2821. "symfony/cache": "^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2822. "symfony/dom-crawler": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2823. "symfony/framework-bundle": "^2.8.1 || ^3.0.1 || ^4.0",
  2824. "symfony/http-foundation": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2825. "symfony/phpunit-bridge": "^3.4 || ^4.2",
  2826. "symfony/stopwatch": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2827. "symfony/twig-bundle": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2828. "symfony/web-profiler-bundle": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2829. "twig/twig": "^1.36 || ^2.6"
  2830. },
  2831. "suggest": {
  2832. "php-http/cache-plugin": "To configure clients that cache responses",
  2833. "php-http/mock-client": "Add this to your require-dev section to mock HTTP responses easily",
  2834. "twig/twig": "Add this to your require-dev section when using the WebProfilerBundle"
  2835. },
  2836. "type": "symfony-bundle",
  2837. "extra": {
  2838. "branch-alias": {
  2839. "dev-master": "1.x-dev"
  2840. }
  2841. },
  2842. "autoload": {
  2843. "psr-4": {
  2844. "Http\\HttplugBundle\\": "src/"
  2845. },
  2846. "exclude-from-classmap": [
  2847. "/Tests/Resources/MyPsr18TestClient.php"
  2848. ]
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "David Buchmann",
  2857. "email": "mail@davidbu.ch"
  2858. },
  2859. {
  2860. "name": "Tobias Nyholm",
  2861. "email": "tobias.nyholm@gmail.com"
  2862. }
  2863. ],
  2864. "description": "Symfony integration for HTTPlug",
  2865. "homepage": "http://httplug.io",
  2866. "keywords": [
  2867. "adapter",
  2868. "bundle",
  2869. "discovery",
  2870. "factory",
  2871. "http",
  2872. "httplug",
  2873. "message",
  2874. "php-http"
  2875. ],
  2876. "time": "2019-03-29T17:15:18+00:00"
  2877. },
  2878. {
  2879. "name": "php-http/logger-plugin",
  2880. "version": "1.1.0",
  2881. "source": {
  2882. "type": "git",
  2883. "url": "https://github.com/php-http/logger-plugin.git",
  2884. "reference": "c1c6e90717ce350319b7b8bc489f1db35bb523fd"
  2885. },
  2886. "dist": {
  2887. "type": "zip",
  2888. "url": "https://api.github.com/repos/php-http/logger-plugin/zipball/c1c6e90717ce350319b7b8bc489f1db35bb523fd",
  2889. "reference": "c1c6e90717ce350319b7b8bc489f1db35bb523fd",
  2890. "shasum": ""
  2891. },
  2892. "require": {
  2893. "php": "^5.4 || ^7.0",
  2894. "php-http/client-common": "^1.9 || ^2.0",
  2895. "php-http/message": "^1.0",
  2896. "psr/log": "^1.0"
  2897. },
  2898. "require-dev": {
  2899. "henrikbjorn/phpspec-code-coverage": "^1.0",
  2900. "phpspec/phpspec": "^2.5"
  2901. },
  2902. "type": "library",
  2903. "extra": {
  2904. "branch-alias": {
  2905. "dev-master": "1.1-dev"
  2906. }
  2907. },
  2908. "autoload": {
  2909. "psr-4": {
  2910. "Http\\Client\\Common\\Plugin\\": "src/"
  2911. }
  2912. },
  2913. "notification-url": "https://packagist.org/downloads/",
  2914. "license": [
  2915. "MIT"
  2916. ],
  2917. "authors": [
  2918. {
  2919. "name": "Márk Sági-Kazár",
  2920. "email": "mark.sagikazar@gmail.com"
  2921. }
  2922. ],
  2923. "description": "PSR-3 Logger plugin for HTTPlug",
  2924. "homepage": "http://httplug.io",
  2925. "keywords": [
  2926. "http",
  2927. "httplug",
  2928. "logger",
  2929. "plugin"
  2930. ],
  2931. "time": "2019-01-30T11:48:21+00:00"
  2932. },
  2933. {
  2934. "name": "php-http/message",
  2935. "version": "1.7.2",
  2936. "source": {
  2937. "type": "git",
  2938. "url": "https://github.com/php-http/message.git",
  2939. "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1"
  2940. },
  2941. "dist": {
  2942. "type": "zip",
  2943. "url": "https://api.github.com/repos/php-http/message/zipball/b159ffe570dffd335e22ef0b91a946eacb182fa1",
  2944. "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1",
  2945. "shasum": ""
  2946. },
  2947. "require": {
  2948. "clue/stream-filter": "^1.4",
  2949. "php": "^5.4 || ^7.0",
  2950. "php-http/message-factory": "^1.0.2",
  2951. "psr/http-message": "^1.0"
  2952. },
  2953. "provide": {
  2954. "php-http/message-factory-implementation": "1.0"
  2955. },
  2956. "require-dev": {
  2957. "akeneo/phpspec-skip-example-extension": "^1.0",
  2958. "coduo/phpspec-data-provider-extension": "^1.0",
  2959. "ext-zlib": "*",
  2960. "guzzlehttp/psr7": "^1.0",
  2961. "henrikbjorn/phpspec-code-coverage": "^1.0",
  2962. "phpspec/phpspec": "^2.4",
  2963. "slim/slim": "^3.0",
  2964. "zendframework/zend-diactoros": "^1.0"
  2965. },
  2966. "suggest": {
  2967. "ext-zlib": "Used with compressor/decompressor streams",
  2968. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  2969. "slim/slim": "Used with Slim Framework PSR-7 implementation",
  2970. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  2971. },
  2972. "type": "library",
  2973. "extra": {
  2974. "branch-alias": {
  2975. "dev-master": "1.6-dev"
  2976. }
  2977. },
  2978. "autoload": {
  2979. "psr-4": {
  2980. "Http\\Message\\": "src/"
  2981. },
  2982. "files": [
  2983. "src/filters.php"
  2984. ]
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "Márk Sági-Kazár",
  2993. "email": "mark.sagikazar@gmail.com"
  2994. }
  2995. ],
  2996. "description": "HTTP Message related tools",
  2997. "homepage": "http://php-http.org",
  2998. "keywords": [
  2999. "http",
  3000. "message",
  3001. "psr-7"
  3002. ],
  3003. "time": "2018-11-01T09:32:41+00:00"
  3004. },
  3005. {
  3006. "name": "php-http/message-factory",
  3007. "version": "v1.0.2",
  3008. "source": {
  3009. "type": "git",
  3010. "url": "https://github.com/php-http/message-factory.git",
  3011. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  3012. },
  3013. "dist": {
  3014. "type": "zip",
  3015. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  3016. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  3017. "shasum": ""
  3018. },
  3019. "require": {
  3020. "php": ">=5.4",
  3021. "psr/http-message": "^1.0"
  3022. },
  3023. "type": "library",
  3024. "extra": {
  3025. "branch-alias": {
  3026. "dev-master": "1.0-dev"
  3027. }
  3028. },
  3029. "autoload": {
  3030. "psr-4": {
  3031. "Http\\Message\\": "src/"
  3032. }
  3033. },
  3034. "notification-url": "https://packagist.org/downloads/",
  3035. "license": [
  3036. "MIT"
  3037. ],
  3038. "authors": [
  3039. {
  3040. "name": "Márk Sági-Kazár",
  3041. "email": "mark.sagikazar@gmail.com"
  3042. }
  3043. ],
  3044. "description": "Factory interfaces for PSR-7 HTTP Message",
  3045. "homepage": "http://php-http.org",
  3046. "keywords": [
  3047. "factory",
  3048. "http",
  3049. "message",
  3050. "stream",
  3051. "uri"
  3052. ],
  3053. "time": "2015-12-19T14:08:53+00:00"
  3054. },
  3055. {
  3056. "name": "php-http/promise",
  3057. "version": "v1.0.0",
  3058. "source": {
  3059. "type": "git",
  3060. "url": "https://github.com/php-http/promise.git",
  3061. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980"
  3062. },
  3063. "dist": {
  3064. "type": "zip",
  3065. "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980",
  3066. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980",
  3067. "shasum": ""
  3068. },
  3069. "require-dev": {
  3070. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3071. "phpspec/phpspec": "^2.4"
  3072. },
  3073. "type": "library",
  3074. "extra": {
  3075. "branch-alias": {
  3076. "dev-master": "1.1-dev"
  3077. }
  3078. },
  3079. "autoload": {
  3080. "psr-4": {
  3081. "Http\\Promise\\": "src/"
  3082. }
  3083. },
  3084. "notification-url": "https://packagist.org/downloads/",
  3085. "license": [
  3086. "MIT"
  3087. ],
  3088. "authors": [
  3089. {
  3090. "name": "Márk Sági-Kazár",
  3091. "email": "mark.sagikazar@gmail.com"
  3092. },
  3093. {
  3094. "name": "Joel Wurtz",
  3095. "email": "joel.wurtz@gmail.com"
  3096. }
  3097. ],
  3098. "description": "Promise used for asynchronous HTTP requests",
  3099. "homepage": "http://httplug.io",
  3100. "keywords": [
  3101. "promise"
  3102. ],
  3103. "time": "2016-01-26T13:27:02+00:00"
  3104. },
  3105. {
  3106. "name": "php-http/stopwatch-plugin",
  3107. "version": "1.2.0",
  3108. "source": {
  3109. "type": "git",
  3110. "url": "https://github.com/php-http/stopwatch-plugin.git",
  3111. "reference": "520419dd18755a1e7b29077e677fbeb16b6629e7"
  3112. },
  3113. "dist": {
  3114. "type": "zip",
  3115. "url": "https://api.github.com/repos/php-http/stopwatch-plugin/zipball/520419dd18755a1e7b29077e677fbeb16b6629e7",
  3116. "reference": "520419dd18755a1e7b29077e677fbeb16b6629e7",
  3117. "shasum": ""
  3118. },
  3119. "require": {
  3120. "php": "^5.4 || ^7.0",
  3121. "php-http/client-common": "^1.9 || ^2.0",
  3122. "symfony/stopwatch": "^2.7 || ^3.0 || ^4.0"
  3123. },
  3124. "require-dev": {
  3125. "phpspec/phpspec": "^2.5 || ^3.0 || ^4.0"
  3126. },
  3127. "type": "library",
  3128. "extra": {
  3129. "branch-alias": {
  3130. "dev-master": "1.2-dev"
  3131. }
  3132. },
  3133. "autoload": {
  3134. "psr-4": {
  3135. "Http\\Client\\Common\\Plugin\\": "src/"
  3136. }
  3137. },
  3138. "notification-url": "https://packagist.org/downloads/",
  3139. "license": [
  3140. "MIT"
  3141. ],
  3142. "authors": [
  3143. {
  3144. "name": "Márk Sági-Kazár",
  3145. "email": "mark.sagikazar@gmail.com"
  3146. }
  3147. ],
  3148. "description": "Symfony Stopwatch plugin for HTTPlug",
  3149. "homepage": "http://httplug.io",
  3150. "keywords": [
  3151. "http",
  3152. "httplug",
  3153. "plugin",
  3154. "stopwatch"
  3155. ],
  3156. "time": "2019-01-30T12:01:37+00:00"
  3157. },
  3158. {
  3159. "name": "predis/predis",
  3160. "version": "v1.1.1",
  3161. "source": {
  3162. "type": "git",
  3163. "url": "https://github.com/nrk/predis.git",
  3164. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  3165. },
  3166. "dist": {
  3167. "type": "zip",
  3168. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  3169. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  3170. "shasum": ""
  3171. },
  3172. "require": {
  3173. "php": ">=5.3.9"
  3174. },
  3175. "require-dev": {
  3176. "phpunit/phpunit": "~4.8"
  3177. },
  3178. "suggest": {
  3179. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3180. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3181. },
  3182. "type": "library",
  3183. "autoload": {
  3184. "psr-4": {
  3185. "Predis\\": "src/"
  3186. }
  3187. },
  3188. "notification-url": "https://packagist.org/downloads/",
  3189. "license": [
  3190. "MIT"
  3191. ],
  3192. "authors": [
  3193. {
  3194. "name": "Daniele Alessandri",
  3195. "email": "suppakilla@gmail.com",
  3196. "homepage": "http://clorophilla.net"
  3197. }
  3198. ],
  3199. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3200. "homepage": "http://github.com/nrk/predis",
  3201. "keywords": [
  3202. "nosql",
  3203. "predis",
  3204. "redis"
  3205. ],
  3206. "time": "2016-06-16T16:22:20+00:00"
  3207. },
  3208. {
  3209. "name": "psr/cache",
  3210. "version": "1.0.1",
  3211. "source": {
  3212. "type": "git",
  3213. "url": "https://github.com/php-fig/cache.git",
  3214. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3215. },
  3216. "dist": {
  3217. "type": "zip",
  3218. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3219. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3220. "shasum": ""
  3221. },
  3222. "require": {
  3223. "php": ">=5.3.0"
  3224. },
  3225. "type": "library",
  3226. "extra": {
  3227. "branch-alias": {
  3228. "dev-master": "1.0.x-dev"
  3229. }
  3230. },
  3231. "autoload": {
  3232. "psr-4": {
  3233. "Psr\\Cache\\": "src/"
  3234. }
  3235. },
  3236. "notification-url": "https://packagist.org/downloads/",
  3237. "license": [
  3238. "MIT"
  3239. ],
  3240. "authors": [
  3241. {
  3242. "name": "PHP-FIG",
  3243. "homepage": "http://www.php-fig.org/"
  3244. }
  3245. ],
  3246. "description": "Common interface for caching libraries",
  3247. "keywords": [
  3248. "cache",
  3249. "psr",
  3250. "psr-6"
  3251. ],
  3252. "time": "2016-08-06T20:24:11+00:00"
  3253. },
  3254. {
  3255. "name": "psr/container",
  3256. "version": "1.0.0",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/php-fig/container.git",
  3260. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3265. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3266. "shasum": ""
  3267. },
  3268. "require": {
  3269. "php": ">=5.3.0"
  3270. },
  3271. "type": "library",
  3272. "extra": {
  3273. "branch-alias": {
  3274. "dev-master": "1.0.x-dev"
  3275. }
  3276. },
  3277. "autoload": {
  3278. "psr-4": {
  3279. "Psr\\Container\\": "src/"
  3280. }
  3281. },
  3282. "notification-url": "https://packagist.org/downloads/",
  3283. "license": [
  3284. "MIT"
  3285. ],
  3286. "authors": [
  3287. {
  3288. "name": "PHP-FIG",
  3289. "homepage": "http://www.php-fig.org/"
  3290. }
  3291. ],
  3292. "description": "Common Container Interface (PHP FIG PSR-11)",
  3293. "homepage": "https://github.com/php-fig/container",
  3294. "keywords": [
  3295. "PSR-11",
  3296. "container",
  3297. "container-interface",
  3298. "container-interop",
  3299. "psr"
  3300. ],
  3301. "time": "2017-02-14T16:28:37+00:00"
  3302. },
  3303. {
  3304. "name": "psr/http-message",
  3305. "version": "1.0.1",
  3306. "source": {
  3307. "type": "git",
  3308. "url": "https://github.com/php-fig/http-message.git",
  3309. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3310. },
  3311. "dist": {
  3312. "type": "zip",
  3313. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3314. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3315. "shasum": ""
  3316. },
  3317. "require": {
  3318. "php": ">=5.3.0"
  3319. },
  3320. "type": "library",
  3321. "extra": {
  3322. "branch-alias": {
  3323. "dev-master": "1.0.x-dev"
  3324. }
  3325. },
  3326. "autoload": {
  3327. "psr-4": {
  3328. "Psr\\Http\\Message\\": "src/"
  3329. }
  3330. },
  3331. "notification-url": "https://packagist.org/downloads/",
  3332. "license": [
  3333. "MIT"
  3334. ],
  3335. "authors": [
  3336. {
  3337. "name": "PHP-FIG",
  3338. "homepage": "http://www.php-fig.org/"
  3339. }
  3340. ],
  3341. "description": "Common interface for HTTP messages",
  3342. "homepage": "https://github.com/php-fig/http-message",
  3343. "keywords": [
  3344. "http",
  3345. "http-message",
  3346. "psr",
  3347. "psr-7",
  3348. "request",
  3349. "response"
  3350. ],
  3351. "time": "2016-08-06T14:39:51+00:00"
  3352. },
  3353. {
  3354. "name": "psr/link",
  3355. "version": "1.0.0",
  3356. "source": {
  3357. "type": "git",
  3358. "url": "https://github.com/php-fig/link.git",
  3359. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  3360. },
  3361. "dist": {
  3362. "type": "zip",
  3363. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  3364. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  3365. "shasum": ""
  3366. },
  3367. "require": {
  3368. "php": ">=5.3.0"
  3369. },
  3370. "type": "library",
  3371. "extra": {
  3372. "branch-alias": {
  3373. "dev-master": "1.0.x-dev"
  3374. }
  3375. },
  3376. "autoload": {
  3377. "psr-4": {
  3378. "Psr\\Link\\": "src/"
  3379. }
  3380. },
  3381. "notification-url": "https://packagist.org/downloads/",
  3382. "license": [
  3383. "MIT"
  3384. ],
  3385. "authors": [
  3386. {
  3387. "name": "PHP-FIG",
  3388. "homepage": "http://www.php-fig.org/"
  3389. }
  3390. ],
  3391. "description": "Common interfaces for HTTP links",
  3392. "keywords": [
  3393. "http",
  3394. "http-link",
  3395. "link",
  3396. "psr",
  3397. "psr-13",
  3398. "rest"
  3399. ],
  3400. "time": "2016-10-28T16:06:13+00:00"
  3401. },
  3402. {
  3403. "name": "psr/log",
  3404. "version": "1.1.0",
  3405. "source": {
  3406. "type": "git",
  3407. "url": "https://github.com/php-fig/log.git",
  3408. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  3409. },
  3410. "dist": {
  3411. "type": "zip",
  3412. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3413. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3414. "shasum": ""
  3415. },
  3416. "require": {
  3417. "php": ">=5.3.0"
  3418. },
  3419. "type": "library",
  3420. "extra": {
  3421. "branch-alias": {
  3422. "dev-master": "1.0.x-dev"
  3423. }
  3424. },
  3425. "autoload": {
  3426. "psr-4": {
  3427. "Psr\\Log\\": "Psr/Log/"
  3428. }
  3429. },
  3430. "notification-url": "https://packagist.org/downloads/",
  3431. "license": [
  3432. "MIT"
  3433. ],
  3434. "authors": [
  3435. {
  3436. "name": "PHP-FIG",
  3437. "homepage": "http://www.php-fig.org/"
  3438. }
  3439. ],
  3440. "description": "Common interface for logging libraries",
  3441. "homepage": "https://github.com/php-fig/log",
  3442. "keywords": [
  3443. "log",
  3444. "psr",
  3445. "psr-3"
  3446. ],
  3447. "time": "2018-11-20T15:27:04+00:00"
  3448. },
  3449. {
  3450. "name": "psr/simple-cache",
  3451. "version": "1.0.1",
  3452. "source": {
  3453. "type": "git",
  3454. "url": "https://github.com/php-fig/simple-cache.git",
  3455. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3456. },
  3457. "dist": {
  3458. "type": "zip",
  3459. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3460. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3461. "shasum": ""
  3462. },
  3463. "require": {
  3464. "php": ">=5.3.0"
  3465. },
  3466. "type": "library",
  3467. "extra": {
  3468. "branch-alias": {
  3469. "dev-master": "1.0.x-dev"
  3470. }
  3471. },
  3472. "autoload": {
  3473. "psr-4": {
  3474. "Psr\\SimpleCache\\": "src/"
  3475. }
  3476. },
  3477. "notification-url": "https://packagist.org/downloads/",
  3478. "license": [
  3479. "MIT"
  3480. ],
  3481. "authors": [
  3482. {
  3483. "name": "PHP-FIG",
  3484. "homepage": "http://www.php-fig.org/"
  3485. }
  3486. ],
  3487. "description": "Common interfaces for simple caching",
  3488. "keywords": [
  3489. "cache",
  3490. "caching",
  3491. "psr",
  3492. "psr-16",
  3493. "simple-cache"
  3494. ],
  3495. "time": "2017-10-23T01:57:42+00:00"
  3496. },
  3497. {
  3498. "name": "ralouphie/getallheaders",
  3499. "version": "2.0.5",
  3500. "source": {
  3501. "type": "git",
  3502. "url": "https://github.com/ralouphie/getallheaders.git",
  3503. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  3504. },
  3505. "dist": {
  3506. "type": "zip",
  3507. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3508. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3509. "shasum": ""
  3510. },
  3511. "require": {
  3512. "php": ">=5.3"
  3513. },
  3514. "require-dev": {
  3515. "phpunit/phpunit": "~3.7.0",
  3516. "satooshi/php-coveralls": ">=1.0"
  3517. },
  3518. "type": "library",
  3519. "autoload": {
  3520. "files": [
  3521. "src/getallheaders.php"
  3522. ]
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "Ralph Khattar",
  3531. "email": "ralph.khattar@gmail.com"
  3532. }
  3533. ],
  3534. "description": "A polyfill for getallheaders.",
  3535. "time": "2016-02-11T07:05:27+00:00"
  3536. },
  3537. {
  3538. "name": "seld/jsonlint",
  3539. "version": "1.7.1",
  3540. "source": {
  3541. "type": "git",
  3542. "url": "https://github.com/Seldaek/jsonlint.git",
  3543. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  3544. },
  3545. "dist": {
  3546. "type": "zip",
  3547. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  3548. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  3549. "shasum": ""
  3550. },
  3551. "require": {
  3552. "php": "^5.3 || ^7.0"
  3553. },
  3554. "require-dev": {
  3555. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3556. },
  3557. "bin": [
  3558. "bin/jsonlint"
  3559. ],
  3560. "type": "library",
  3561. "autoload": {
  3562. "psr-4": {
  3563. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  3564. }
  3565. },
  3566. "notification-url": "https://packagist.org/downloads/",
  3567. "license": [
  3568. "MIT"
  3569. ],
  3570. "authors": [
  3571. {
  3572. "name": "Jordi Boggiano",
  3573. "email": "j.boggiano@seld.be",
  3574. "homepage": "http://seld.be"
  3575. }
  3576. ],
  3577. "description": "JSON Linter",
  3578. "keywords": [
  3579. "json",
  3580. "linter",
  3581. "parser",
  3582. "validator"
  3583. ],
  3584. "time": "2018-01-24T12:46:19+00:00"
  3585. },
  3586. {
  3587. "name": "seld/phar-utils",
  3588. "version": "1.0.1",
  3589. "source": {
  3590. "type": "git",
  3591. "url": "https://github.com/Seldaek/phar-utils.git",
  3592. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  3593. },
  3594. "dist": {
  3595. "type": "zip",
  3596. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  3597. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  3598. "shasum": ""
  3599. },
  3600. "require": {
  3601. "php": ">=5.3"
  3602. },
  3603. "type": "library",
  3604. "extra": {
  3605. "branch-alias": {
  3606. "dev-master": "1.x-dev"
  3607. }
  3608. },
  3609. "autoload": {
  3610. "psr-4": {
  3611. "Seld\\PharUtils\\": "src/"
  3612. }
  3613. },
  3614. "notification-url": "https://packagist.org/downloads/",
  3615. "license": [
  3616. "MIT"
  3617. ],
  3618. "authors": [
  3619. {
  3620. "name": "Jordi Boggiano",
  3621. "email": "j.boggiano@seld.be"
  3622. }
  3623. ],
  3624. "description": "PHAR file format utilities, for when PHP phars you up",
  3625. "keywords": [
  3626. "phra"
  3627. ],
  3628. "time": "2015-10-13T18:44:15+00:00"
  3629. },
  3630. {
  3631. "name": "seld/signal-handler",
  3632. "version": "1.1.0",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/Seldaek/signal-handler.git",
  3636. "reference": "86f791965478b33f76878139df78bc3f369f182c"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/86f791965478b33f76878139df78bc3f369f182c",
  3641. "reference": "86f791965478b33f76878139df78bc3f369f182c",
  3642. "shasum": ""
  3643. },
  3644. "require": {
  3645. "php": ">=5.4.0"
  3646. },
  3647. "require-dev": {
  3648. "phpunit/phpunit": "^4.8",
  3649. "psr/log": "^1.0"
  3650. },
  3651. "type": "library",
  3652. "autoload": {
  3653. "psr-4": {
  3654. "Seld\\Signal\\": "src/"
  3655. }
  3656. },
  3657. "notification-url": "https://packagist.org/downloads/",
  3658. "license": [
  3659. "MIT"
  3660. ],
  3661. "authors": [
  3662. {
  3663. "name": "Jordi Boggiano",
  3664. "email": "j.boggiano@seld.be",
  3665. "homepage": "http://seld.be"
  3666. }
  3667. ],
  3668. "description": "Simple unix signal handler that silently fails on windows for easy cross-platform development",
  3669. "keywords": [
  3670. "posix",
  3671. "sigint",
  3672. "signal",
  3673. "sigterm",
  3674. "unix"
  3675. ],
  3676. "time": "2016-09-14T09:32:56+00:00"
  3677. },
  3678. {
  3679. "name": "sensio/distribution-bundle",
  3680. "version": "v5.0.24",
  3681. "source": {
  3682. "type": "git",
  3683. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  3684. "reference": "59eac70f15f97ee945924948a6f5e2f6f86b7a4b"
  3685. },
  3686. "dist": {
  3687. "type": "zip",
  3688. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/59eac70f15f97ee945924948a6f5e2f6f86b7a4b",
  3689. "reference": "59eac70f15f97ee945924948a6f5e2f6f86b7a4b",
  3690. "shasum": ""
  3691. },
  3692. "require": {
  3693. "php": ">=5.3.9",
  3694. "sensiolabs/security-checker": "~5.0",
  3695. "symfony/class-loader": "~2.3|~3.0",
  3696. "symfony/config": "~2.3|~3.0",
  3697. "symfony/dependency-injection": "~2.3|~3.0",
  3698. "symfony/filesystem": "~2.3|~3.0",
  3699. "symfony/http-kernel": "~2.3|~3.0",
  3700. "symfony/process": "~2.3|~3.0"
  3701. },
  3702. "type": "symfony-bundle",
  3703. "extra": {
  3704. "branch-alias": {
  3705. "dev-master": "5.0.x-dev"
  3706. }
  3707. },
  3708. "autoload": {
  3709. "psr-4": {
  3710. "Sensio\\Bundle\\DistributionBundle\\": ""
  3711. }
  3712. },
  3713. "notification-url": "https://packagist.org/downloads/",
  3714. "license": [
  3715. "MIT"
  3716. ],
  3717. "authors": [
  3718. {
  3719. "name": "Fabien Potencier",
  3720. "email": "fabien@symfony.com"
  3721. }
  3722. ],
  3723. "description": "Base bundle for Symfony Distributions",
  3724. "keywords": [
  3725. "configuration",
  3726. "distribution"
  3727. ],
  3728. "time": "2018-12-14T17:36:15+00:00"
  3729. },
  3730. {
  3731. "name": "sensio/framework-extra-bundle",
  3732. "version": "v5.2.4",
  3733. "source": {
  3734. "type": "git",
  3735. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  3736. "reference": "1fdf591c4b388e62dbb2579de89c1560b33f865d"
  3737. },
  3738. "dist": {
  3739. "type": "zip",
  3740. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/1fdf591c4b388e62dbb2579de89c1560b33f865d",
  3741. "reference": "1fdf591c4b388e62dbb2579de89c1560b33f865d",
  3742. "shasum": ""
  3743. },
  3744. "require": {
  3745. "doctrine/common": "^2.2",
  3746. "symfony/config": "^3.3|^4.0",
  3747. "symfony/dependency-injection": "^3.3|^4.0",
  3748. "symfony/framework-bundle": "^3.4|^4.0",
  3749. "symfony/http-kernel": "^3.3|^4.0"
  3750. },
  3751. "require-dev": {
  3752. "doctrine/doctrine-bundle": "^1.6",
  3753. "doctrine/orm": "^2.5",
  3754. "symfony/browser-kit": "^3.3|^4.0",
  3755. "symfony/dom-crawler": "^3.3|^4.0",
  3756. "symfony/expression-language": "^3.3|^4.0",
  3757. "symfony/finder": "^3.3|^4.0",
  3758. "symfony/monolog-bridge": "^3.0|^4.0",
  3759. "symfony/monolog-bundle": "^3.2",
  3760. "symfony/phpunit-bridge": "^3.4.19|^4.1.8",
  3761. "symfony/psr-http-message-bridge": "^0.3",
  3762. "symfony/security-bundle": "^3.3|^4.0",
  3763. "symfony/twig-bundle": "^3.3|^4.0",
  3764. "symfony/yaml": "^3.3|^4.0",
  3765. "twig/twig": "~1.12|~2.0",
  3766. "zendframework/zend-diactoros": "^1.3"
  3767. },
  3768. "suggest": {
  3769. "symfony/expression-language": "",
  3770. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  3771. "symfony/security-bundle": ""
  3772. },
  3773. "type": "symfony-bundle",
  3774. "extra": {
  3775. "branch-alias": {
  3776. "dev-master": "5.2.x-dev"
  3777. }
  3778. },
  3779. "autoload": {
  3780. "psr-4": {
  3781. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  3782. }
  3783. },
  3784. "notification-url": "https://packagist.org/downloads/",
  3785. "license": [
  3786. "MIT"
  3787. ],
  3788. "authors": [
  3789. {
  3790. "name": "Fabien Potencier",
  3791. "email": "fabien@symfony.com"
  3792. }
  3793. ],
  3794. "description": "This bundle provides a way to configure your controllers with annotations",
  3795. "keywords": [
  3796. "annotations",
  3797. "controllers"
  3798. ],
  3799. "time": "2018-12-11T16:59:23+00:00"
  3800. },
  3801. {
  3802. "name": "sensio/generator-bundle",
  3803. "version": "v3.1.7",
  3804. "source": {
  3805. "type": "git",
  3806. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  3807. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65"
  3808. },
  3809. "dist": {
  3810. "type": "zip",
  3811. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  3812. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  3813. "shasum": ""
  3814. },
  3815. "require": {
  3816. "symfony/console": "~2.7|~3.0",
  3817. "symfony/framework-bundle": "~2.7|~3.0",
  3818. "symfony/process": "~2.7|~3.0",
  3819. "symfony/yaml": "~2.7|~3.0",
  3820. "twig/twig": "^1.28.2|^2.0"
  3821. },
  3822. "require-dev": {
  3823. "doctrine/orm": "~2.4",
  3824. "symfony/doctrine-bridge": "~2.7|~3.0",
  3825. "symfony/filesystem": "~2.7|~3.0",
  3826. "symfony/phpunit-bridge": "^3.3"
  3827. },
  3828. "type": "symfony-bundle",
  3829. "extra": {
  3830. "branch-alias": {
  3831. "dev-master": "3.1.x-dev"
  3832. }
  3833. },
  3834. "autoload": {
  3835. "psr-4": {
  3836. "Sensio\\Bundle\\GeneratorBundle\\": ""
  3837. },
  3838. "exclude-from-classmap": [
  3839. "/Tests/"
  3840. ]
  3841. },
  3842. "notification-url": "https://packagist.org/downloads/",
  3843. "license": [
  3844. "MIT"
  3845. ],
  3846. "authors": [
  3847. {
  3848. "name": "Fabien Potencier",
  3849. "email": "fabien@symfony.com"
  3850. }
  3851. ],
  3852. "description": "This bundle generates code for you",
  3853. "time": "2017-12-07T15:36:41+00:00"
  3854. },
  3855. {
  3856. "name": "sensiolabs/security-checker",
  3857. "version": "v5.0.3",
  3858. "source": {
  3859. "type": "git",
  3860. "url": "https://github.com/sensiolabs/security-checker.git",
  3861. "reference": "46be3f58adac13084497961e10eed9a7fb4d44d1"
  3862. },
  3863. "dist": {
  3864. "type": "zip",
  3865. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/46be3f58adac13084497961e10eed9a7fb4d44d1",
  3866. "reference": "46be3f58adac13084497961e10eed9a7fb4d44d1",
  3867. "shasum": ""
  3868. },
  3869. "require": {
  3870. "composer/ca-bundle": "^1.0",
  3871. "php": ">=5.5.9",
  3872. "symfony/console": "~2.7|~3.0|~4.0"
  3873. },
  3874. "bin": [
  3875. "security-checker"
  3876. ],
  3877. "type": "library",
  3878. "extra": {
  3879. "branch-alias": {
  3880. "dev-master": "5.0-dev"
  3881. }
  3882. },
  3883. "autoload": {
  3884. "psr-4": {
  3885. "SensioLabs\\Security\\": "SensioLabs/Security"
  3886. }
  3887. },
  3888. "notification-url": "https://packagist.org/downloads/",
  3889. "license": [
  3890. "MIT"
  3891. ],
  3892. "authors": [
  3893. {
  3894. "name": "Fabien Potencier",
  3895. "email": "fabien.potencier@gmail.com"
  3896. }
  3897. ],
  3898. "description": "A security checker for your composer.lock",
  3899. "time": "2018-12-19T17:14:59+00:00"
  3900. },
  3901. {
  3902. "name": "snc/redis-bundle",
  3903. "version": "2.1.9",
  3904. "source": {
  3905. "type": "git",
  3906. "url": "https://github.com/snc/SncRedisBundle.git",
  3907. "reference": "af3ac967b0351ff880f646486bff87247abb5286"
  3908. },
  3909. "dist": {
  3910. "type": "zip",
  3911. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/af3ac967b0351ff880f646486bff87247abb5286",
  3912. "reference": "af3ac967b0351ff880f646486bff87247abb5286",
  3913. "shasum": ""
  3914. },
  3915. "require": {
  3916. "php": ">=5.3.3",
  3917. "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0",
  3918. "symfony/yaml": "^2.7 || ^3.0 || ^4.0"
  3919. },
  3920. "require-dev": {
  3921. "doctrine/cache": "1.*",
  3922. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  3923. "predis/predis": "^1.0",
  3924. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  3925. "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0"
  3926. },
  3927. "suggest": {
  3928. "monolog/monolog": "If you want to use the monolog redis handler.",
  3929. "predis/predis": "If you want to use predis.",
  3930. "symfony/console": "If you want to use commands to interact with the redis database",
  3931. "symfony/proxy-manager-bridge": "If you want to lazy-load some services"
  3932. },
  3933. "type": "symfony-bundle",
  3934. "extra": {
  3935. "branch-alias": {
  3936. "dev-master": "2.x-dev"
  3937. }
  3938. },
  3939. "autoload": {
  3940. "psr-4": {
  3941. "Snc\\RedisBundle\\": ""
  3942. }
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "MIT"
  3947. ],
  3948. "authors": [
  3949. {
  3950. "name": "Henrik Westphal",
  3951. "email": "henrik.westphal@gmail.com"
  3952. },
  3953. {
  3954. "name": "Community contributors",
  3955. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  3956. }
  3957. ],
  3958. "description": "A Redis bundle for Symfony",
  3959. "homepage": "https://github.com/snc/SncRedisBundle",
  3960. "keywords": [
  3961. "nosql",
  3962. "redis",
  3963. "symfony"
  3964. ],
  3965. "time": "2019-02-20T07:03:43+00:00"
  3966. },
  3967. {
  3968. "name": "swiftmailer/swiftmailer",
  3969. "version": "v6.2.0",
  3970. "source": {
  3971. "type": "git",
  3972. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3973. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707"
  3974. },
  3975. "dist": {
  3976. "type": "zip",
  3977. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  3978. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  3979. "shasum": ""
  3980. },
  3981. "require": {
  3982. "egulias/email-validator": "~2.0",
  3983. "php": ">=7.0.0",
  3984. "symfony/polyfill-iconv": "^1.0",
  3985. "symfony/polyfill-intl-idn": "^1.10",
  3986. "symfony/polyfill-mbstring": "^1.0"
  3987. },
  3988. "require-dev": {
  3989. "mockery/mockery": "~0.9.1",
  3990. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3991. },
  3992. "suggest": {
  3993. "ext-intl": "Needed to support internationalized email addresses",
  3994. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3995. },
  3996. "type": "library",
  3997. "extra": {
  3998. "branch-alias": {
  3999. "dev-master": "6.2-dev"
  4000. }
  4001. },
  4002. "autoload": {
  4003. "files": [
  4004. "lib/swift_required.php"
  4005. ]
  4006. },
  4007. "notification-url": "https://packagist.org/downloads/",
  4008. "license": [
  4009. "MIT"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "Chris Corbyn"
  4014. },
  4015. {
  4016. "name": "Fabien Potencier",
  4017. "email": "fabien@symfony.com"
  4018. }
  4019. ],
  4020. "description": "Swiftmailer, free feature-rich PHP mailer",
  4021. "homepage": "https://swiftmailer.symfony.com",
  4022. "keywords": [
  4023. "email",
  4024. "mail",
  4025. "mailer"
  4026. ],
  4027. "time": "2019-03-10T07:52:41+00:00"
  4028. },
  4029. {
  4030. "name": "symfony/monolog-bundle",
  4031. "version": "v3.3.1",
  4032. "source": {
  4033. "type": "git",
  4034. "url": "https://github.com/symfony/monolog-bundle.git",
  4035. "reference": "572e143afc03419a75ab002c80a2fd99299195ff"
  4036. },
  4037. "dist": {
  4038. "type": "zip",
  4039. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/572e143afc03419a75ab002c80a2fd99299195ff",
  4040. "reference": "572e143afc03419a75ab002c80a2fd99299195ff",
  4041. "shasum": ""
  4042. },
  4043. "require": {
  4044. "monolog/monolog": "~1.22",
  4045. "php": ">=5.6",
  4046. "symfony/config": "~2.7|~3.3|~4.0",
  4047. "symfony/dependency-injection": "~2.7|~3.4.10|^4.0.10",
  4048. "symfony/http-kernel": "~2.7|~3.3|~4.0",
  4049. "symfony/monolog-bridge": "~2.7|~3.3|~4.0"
  4050. },
  4051. "require-dev": {
  4052. "symfony/console": "~2.7|~3.3|~4.0",
  4053. "symfony/phpunit-bridge": "^3.3|^4.0",
  4054. "symfony/yaml": "~2.7|~3.3|~4.0"
  4055. },
  4056. "type": "symfony-bundle",
  4057. "extra": {
  4058. "branch-alias": {
  4059. "dev-master": "3.x-dev"
  4060. }
  4061. },
  4062. "autoload": {
  4063. "psr-4": {
  4064. "Symfony\\Bundle\\MonologBundle\\": ""
  4065. },
  4066. "exclude-from-classmap": [
  4067. "/Tests/"
  4068. ]
  4069. },
  4070. "notification-url": "https://packagist.org/downloads/",
  4071. "license": [
  4072. "MIT"
  4073. ],
  4074. "authors": [
  4075. {
  4076. "name": "Symfony Community",
  4077. "homepage": "http://symfony.com/contributors"
  4078. },
  4079. {
  4080. "name": "Fabien Potencier",
  4081. "email": "fabien@symfony.com"
  4082. }
  4083. ],
  4084. "description": "Symfony MonologBundle",
  4085. "homepage": "http://symfony.com",
  4086. "keywords": [
  4087. "log",
  4088. "logging"
  4089. ],
  4090. "time": "2018-11-04T09:58:13+00:00"
  4091. },
  4092. {
  4093. "name": "symfony/polyfill-apcu",
  4094. "version": "v1.11.0",
  4095. "source": {
  4096. "type": "git",
  4097. "url": "https://github.com/symfony/polyfill-apcu.git",
  4098. "reference": "a502face1da6a53289480166f24de2c3c68e5c3c"
  4099. },
  4100. "dist": {
  4101. "type": "zip",
  4102. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/a502face1da6a53289480166f24de2c3c68e5c3c",
  4103. "reference": "a502face1da6a53289480166f24de2c3c68e5c3c",
  4104. "shasum": ""
  4105. },
  4106. "require": {
  4107. "php": ">=5.3.3"
  4108. },
  4109. "type": "library",
  4110. "extra": {
  4111. "branch-alias": {
  4112. "dev-master": "1.11-dev"
  4113. }
  4114. },
  4115. "autoload": {
  4116. "psr-4": {
  4117. "Symfony\\Polyfill\\Apcu\\": ""
  4118. },
  4119. "files": [
  4120. "bootstrap.php"
  4121. ]
  4122. },
  4123. "notification-url": "https://packagist.org/downloads/",
  4124. "license": [
  4125. "MIT"
  4126. ],
  4127. "authors": [
  4128. {
  4129. "name": "Nicolas Grekas",
  4130. "email": "p@tchwork.com"
  4131. },
  4132. {
  4133. "name": "Symfony Community",
  4134. "homepage": "https://symfony.com/contributors"
  4135. }
  4136. ],
  4137. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  4138. "homepage": "https://symfony.com",
  4139. "keywords": [
  4140. "apcu",
  4141. "compatibility",
  4142. "polyfill",
  4143. "portable",
  4144. "shim"
  4145. ],
  4146. "time": "2019-02-06T07:57:58+00:00"
  4147. },
  4148. {
  4149. "name": "symfony/polyfill-ctype",
  4150. "version": "v1.11.0",
  4151. "source": {
  4152. "type": "git",
  4153. "url": "https://github.com/symfony/polyfill-ctype.git",
  4154. "reference": "82ebae02209c21113908c229e9883c419720738a"
  4155. },
  4156. "dist": {
  4157. "type": "zip",
  4158. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  4159. "reference": "82ebae02209c21113908c229e9883c419720738a",
  4160. "shasum": ""
  4161. },
  4162. "require": {
  4163. "php": ">=5.3.3"
  4164. },
  4165. "suggest": {
  4166. "ext-ctype": "For best performance"
  4167. },
  4168. "type": "library",
  4169. "extra": {
  4170. "branch-alias": {
  4171. "dev-master": "1.11-dev"
  4172. }
  4173. },
  4174. "autoload": {
  4175. "psr-4": {
  4176. "Symfony\\Polyfill\\Ctype\\": ""
  4177. },
  4178. "files": [
  4179. "bootstrap.php"
  4180. ]
  4181. },
  4182. "notification-url": "https://packagist.org/downloads/",
  4183. "license": [
  4184. "MIT"
  4185. ],
  4186. "authors": [
  4187. {
  4188. "name": "Symfony Community",
  4189. "homepage": "https://symfony.com/contributors"
  4190. },
  4191. {
  4192. "name": "Gert de Pagter",
  4193. "email": "backendtea@gmail.com"
  4194. }
  4195. ],
  4196. "description": "Symfony polyfill for ctype functions",
  4197. "homepage": "https://symfony.com",
  4198. "keywords": [
  4199. "compatibility",
  4200. "ctype",
  4201. "polyfill",
  4202. "portable"
  4203. ],
  4204. "time": "2019-02-06T07:57:58+00:00"
  4205. },
  4206. {
  4207. "name": "symfony/polyfill-iconv",
  4208. "version": "v1.11.0",
  4209. "source": {
  4210. "type": "git",
  4211. "url": "https://github.com/symfony/polyfill-iconv.git",
  4212. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  4213. },
  4214. "dist": {
  4215. "type": "zip",
  4216. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  4217. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  4218. "shasum": ""
  4219. },
  4220. "require": {
  4221. "php": ">=5.3.3"
  4222. },
  4223. "suggest": {
  4224. "ext-iconv": "For best performance"
  4225. },
  4226. "type": "library",
  4227. "extra": {
  4228. "branch-alias": {
  4229. "dev-master": "1.11-dev"
  4230. }
  4231. },
  4232. "autoload": {
  4233. "psr-4": {
  4234. "Symfony\\Polyfill\\Iconv\\": ""
  4235. },
  4236. "files": [
  4237. "bootstrap.php"
  4238. ]
  4239. },
  4240. "notification-url": "https://packagist.org/downloads/",
  4241. "license": [
  4242. "MIT"
  4243. ],
  4244. "authors": [
  4245. {
  4246. "name": "Nicolas Grekas",
  4247. "email": "p@tchwork.com"
  4248. },
  4249. {
  4250. "name": "Symfony Community",
  4251. "homepage": "https://symfony.com/contributors"
  4252. }
  4253. ],
  4254. "description": "Symfony polyfill for the Iconv extension",
  4255. "homepage": "https://symfony.com",
  4256. "keywords": [
  4257. "compatibility",
  4258. "iconv",
  4259. "polyfill",
  4260. "portable",
  4261. "shim"
  4262. ],
  4263. "time": "2019-02-06T07:57:58+00:00"
  4264. },
  4265. {
  4266. "name": "symfony/polyfill-intl-icu",
  4267. "version": "v1.11.0",
  4268. "source": {
  4269. "type": "git",
  4270. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4271. "reference": "999878a3a09d73cae157b0cf89bb6fb2cc073057"
  4272. },
  4273. "dist": {
  4274. "type": "zip",
  4275. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/999878a3a09d73cae157b0cf89bb6fb2cc073057",
  4276. "reference": "999878a3a09d73cae157b0cf89bb6fb2cc073057",
  4277. "shasum": ""
  4278. },
  4279. "require": {
  4280. "php": ">=5.3.3",
  4281. "symfony/intl": "~2.3|~3.0|~4.0"
  4282. },
  4283. "suggest": {
  4284. "ext-intl": "For best performance"
  4285. },
  4286. "type": "library",
  4287. "extra": {
  4288. "branch-alias": {
  4289. "dev-master": "1.9-dev"
  4290. }
  4291. },
  4292. "autoload": {
  4293. "files": [
  4294. "bootstrap.php"
  4295. ]
  4296. },
  4297. "notification-url": "https://packagist.org/downloads/",
  4298. "license": [
  4299. "MIT"
  4300. ],
  4301. "authors": [
  4302. {
  4303. "name": "Nicolas Grekas",
  4304. "email": "p@tchwork.com"
  4305. },
  4306. {
  4307. "name": "Symfony Community",
  4308. "homepage": "https://symfony.com/contributors"
  4309. }
  4310. ],
  4311. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4312. "homepage": "https://symfony.com",
  4313. "keywords": [
  4314. "compatibility",
  4315. "icu",
  4316. "intl",
  4317. "polyfill",
  4318. "portable",
  4319. "shim"
  4320. ],
  4321. "time": "2019-01-07T19:39:47+00:00"
  4322. },
  4323. {
  4324. "name": "symfony/polyfill-intl-idn",
  4325. "version": "v1.11.0",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4329. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  4334. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  4335. "shasum": ""
  4336. },
  4337. "require": {
  4338. "php": ">=5.3.3",
  4339. "symfony/polyfill-mbstring": "^1.3",
  4340. "symfony/polyfill-php72": "^1.9"
  4341. },
  4342. "suggest": {
  4343. "ext-intl": "For best performance"
  4344. },
  4345. "type": "library",
  4346. "extra": {
  4347. "branch-alias": {
  4348. "dev-master": "1.9-dev"
  4349. }
  4350. },
  4351. "autoload": {
  4352. "psr-4": {
  4353. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4354. },
  4355. "files": [
  4356. "bootstrap.php"
  4357. ]
  4358. },
  4359. "notification-url": "https://packagist.org/downloads/",
  4360. "license": [
  4361. "MIT"
  4362. ],
  4363. "authors": [
  4364. {
  4365. "name": "Symfony Community",
  4366. "homepage": "https://symfony.com/contributors"
  4367. },
  4368. {
  4369. "name": "Laurent Bassin",
  4370. "email": "laurent@bassin.info"
  4371. }
  4372. ],
  4373. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4374. "homepage": "https://symfony.com",
  4375. "keywords": [
  4376. "compatibility",
  4377. "idn",
  4378. "intl",
  4379. "polyfill",
  4380. "portable",
  4381. "shim"
  4382. ],
  4383. "time": "2019-03-04T13:44:35+00:00"
  4384. },
  4385. {
  4386. "name": "symfony/polyfill-mbstring",
  4387. "version": "v1.11.0",
  4388. "source": {
  4389. "type": "git",
  4390. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4391. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  4392. },
  4393. "dist": {
  4394. "type": "zip",
  4395. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  4396. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  4397. "shasum": ""
  4398. },
  4399. "require": {
  4400. "php": ">=5.3.3"
  4401. },
  4402. "suggest": {
  4403. "ext-mbstring": "For best performance"
  4404. },
  4405. "type": "library",
  4406. "extra": {
  4407. "branch-alias": {
  4408. "dev-master": "1.11-dev"
  4409. }
  4410. },
  4411. "autoload": {
  4412. "psr-4": {
  4413. "Symfony\\Polyfill\\Mbstring\\": ""
  4414. },
  4415. "files": [
  4416. "bootstrap.php"
  4417. ]
  4418. },
  4419. "notification-url": "https://packagist.org/downloads/",
  4420. "license": [
  4421. "MIT"
  4422. ],
  4423. "authors": [
  4424. {
  4425. "name": "Nicolas Grekas",
  4426. "email": "p@tchwork.com"
  4427. },
  4428. {
  4429. "name": "Symfony Community",
  4430. "homepage": "https://symfony.com/contributors"
  4431. }
  4432. ],
  4433. "description": "Symfony polyfill for the Mbstring extension",
  4434. "homepage": "https://symfony.com",
  4435. "keywords": [
  4436. "compatibility",
  4437. "mbstring",
  4438. "polyfill",
  4439. "portable",
  4440. "shim"
  4441. ],
  4442. "time": "2019-02-06T07:57:58+00:00"
  4443. },
  4444. {
  4445. "name": "symfony/polyfill-php56",
  4446. "version": "v1.11.0",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://github.com/symfony/polyfill-php56.git",
  4450. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42"
  4451. },
  4452. "dist": {
  4453. "type": "zip",
  4454. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  4455. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  4456. "shasum": ""
  4457. },
  4458. "require": {
  4459. "php": ">=5.3.3",
  4460. "symfony/polyfill-util": "~1.0"
  4461. },
  4462. "type": "library",
  4463. "extra": {
  4464. "branch-alias": {
  4465. "dev-master": "1.11-dev"
  4466. }
  4467. },
  4468. "autoload": {
  4469. "psr-4": {
  4470. "Symfony\\Polyfill\\Php56\\": ""
  4471. },
  4472. "files": [
  4473. "bootstrap.php"
  4474. ]
  4475. },
  4476. "notification-url": "https://packagist.org/downloads/",
  4477. "license": [
  4478. "MIT"
  4479. ],
  4480. "authors": [
  4481. {
  4482. "name": "Nicolas Grekas",
  4483. "email": "p@tchwork.com"
  4484. },
  4485. {
  4486. "name": "Symfony Community",
  4487. "homepage": "https://symfony.com/contributors"
  4488. }
  4489. ],
  4490. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  4491. "homepage": "https://symfony.com",
  4492. "keywords": [
  4493. "compatibility",
  4494. "polyfill",
  4495. "portable",
  4496. "shim"
  4497. ],
  4498. "time": "2019-02-06T07:57:58+00:00"
  4499. },
  4500. {
  4501. "name": "symfony/polyfill-php70",
  4502. "version": "v1.11.0",
  4503. "source": {
  4504. "type": "git",
  4505. "url": "https://github.com/symfony/polyfill-php70.git",
  4506. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  4507. },
  4508. "dist": {
  4509. "type": "zip",
  4510. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  4511. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  4512. "shasum": ""
  4513. },
  4514. "require": {
  4515. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  4516. "php": ">=5.3.3"
  4517. },
  4518. "type": "library",
  4519. "extra": {
  4520. "branch-alias": {
  4521. "dev-master": "1.11-dev"
  4522. }
  4523. },
  4524. "autoload": {
  4525. "psr-4": {
  4526. "Symfony\\Polyfill\\Php70\\": ""
  4527. },
  4528. "files": [
  4529. "bootstrap.php"
  4530. ],
  4531. "classmap": [
  4532. "Resources/stubs"
  4533. ]
  4534. },
  4535. "notification-url": "https://packagist.org/downloads/",
  4536. "license": [
  4537. "MIT"
  4538. ],
  4539. "authors": [
  4540. {
  4541. "name": "Nicolas Grekas",
  4542. "email": "p@tchwork.com"
  4543. },
  4544. {
  4545. "name": "Symfony Community",
  4546. "homepage": "https://symfony.com/contributors"
  4547. }
  4548. ],
  4549. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  4550. "homepage": "https://symfony.com",
  4551. "keywords": [
  4552. "compatibility",
  4553. "polyfill",
  4554. "portable",
  4555. "shim"
  4556. ],
  4557. "time": "2019-02-06T07:57:58+00:00"
  4558. },
  4559. {
  4560. "name": "symfony/polyfill-php72",
  4561. "version": "v1.11.0",
  4562. "source": {
  4563. "type": "git",
  4564. "url": "https://github.com/symfony/polyfill-php72.git",
  4565. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  4566. },
  4567. "dist": {
  4568. "type": "zip",
  4569. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  4570. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  4571. "shasum": ""
  4572. },
  4573. "require": {
  4574. "php": ">=5.3.3"
  4575. },
  4576. "type": "library",
  4577. "extra": {
  4578. "branch-alias": {
  4579. "dev-master": "1.11-dev"
  4580. }
  4581. },
  4582. "autoload": {
  4583. "psr-4": {
  4584. "Symfony\\Polyfill\\Php72\\": ""
  4585. },
  4586. "files": [
  4587. "bootstrap.php"
  4588. ]
  4589. },
  4590. "notification-url": "https://packagist.org/downloads/",
  4591. "license": [
  4592. "MIT"
  4593. ],
  4594. "authors": [
  4595. {
  4596. "name": "Nicolas Grekas",
  4597. "email": "p@tchwork.com"
  4598. },
  4599. {
  4600. "name": "Symfony Community",
  4601. "homepage": "https://symfony.com/contributors"
  4602. }
  4603. ],
  4604. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4605. "homepage": "https://symfony.com",
  4606. "keywords": [
  4607. "compatibility",
  4608. "polyfill",
  4609. "portable",
  4610. "shim"
  4611. ],
  4612. "time": "2019-02-06T07:57:58+00:00"
  4613. },
  4614. {
  4615. "name": "symfony/polyfill-util",
  4616. "version": "v1.11.0",
  4617. "source": {
  4618. "type": "git",
  4619. "url": "https://github.com/symfony/polyfill-util.git",
  4620. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897"
  4621. },
  4622. "dist": {
  4623. "type": "zip",
  4624. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/b46c6cae28a3106735323f00a0c38eccf2328897",
  4625. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897",
  4626. "shasum": ""
  4627. },
  4628. "require": {
  4629. "php": ">=5.3.3"
  4630. },
  4631. "type": "library",
  4632. "extra": {
  4633. "branch-alias": {
  4634. "dev-master": "1.11-dev"
  4635. }
  4636. },
  4637. "autoload": {
  4638. "psr-4": {
  4639. "Symfony\\Polyfill\\Util\\": ""
  4640. }
  4641. },
  4642. "notification-url": "https://packagist.org/downloads/",
  4643. "license": [
  4644. "MIT"
  4645. ],
  4646. "authors": [
  4647. {
  4648. "name": "Nicolas Grekas",
  4649. "email": "p@tchwork.com"
  4650. },
  4651. {
  4652. "name": "Symfony Community",
  4653. "homepage": "https://symfony.com/contributors"
  4654. }
  4655. ],
  4656. "description": "Symfony utilities for portability of PHP codes",
  4657. "homepage": "https://symfony.com",
  4658. "keywords": [
  4659. "compat",
  4660. "compatibility",
  4661. "polyfill",
  4662. "shim"
  4663. ],
  4664. "time": "2019-02-08T14:16:39+00:00"
  4665. },
  4666. {
  4667. "name": "symfony/swiftmailer-bundle",
  4668. "version": "v3.2.6",
  4669. "source": {
  4670. "type": "git",
  4671. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  4672. "reference": "7a83160b50a2479d37eb74ba71577380b9afe4f5"
  4673. },
  4674. "dist": {
  4675. "type": "zip",
  4676. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/7a83160b50a2479d37eb74ba71577380b9afe4f5",
  4677. "reference": "7a83160b50a2479d37eb74ba71577380b9afe4f5",
  4678. "shasum": ""
  4679. },
  4680. "require": {
  4681. "php": ">=7.0.0",
  4682. "swiftmailer/swiftmailer": "^6.1.3",
  4683. "symfony/config": "~2.8|~3.3|~4.0",
  4684. "symfony/dependency-injection": "~2.7|~3.3|~4.0",
  4685. "symfony/http-kernel": "~2.7|~3.3|~4.0"
  4686. },
  4687. "require-dev": {
  4688. "symfony/console": "~2.7|~3.3|~4.0",
  4689. "symfony/framework-bundle": "~2.7|~3.3|~4.0",
  4690. "symfony/phpunit-bridge": "~3.3|~4.0",
  4691. "symfony/yaml": "~2.7|~3.3|~4.0"
  4692. },
  4693. "suggest": {
  4694. "psr/log": "Allows logging"
  4695. },
  4696. "type": "symfony-bundle",
  4697. "extra": {
  4698. "branch-alias": {
  4699. "dev-master": "3.2-dev"
  4700. }
  4701. },
  4702. "autoload": {
  4703. "psr-4": {
  4704. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  4705. },
  4706. "exclude-from-classmap": [
  4707. "/Tests/"
  4708. ]
  4709. },
  4710. "notification-url": "https://packagist.org/downloads/",
  4711. "license": [
  4712. "MIT"
  4713. ],
  4714. "authors": [
  4715. {
  4716. "name": "Symfony Community",
  4717. "homepage": "http://symfony.com/contributors"
  4718. },
  4719. {
  4720. "name": "Fabien Potencier",
  4721. "email": "fabien@symfony.com"
  4722. }
  4723. ],
  4724. "description": "Symfony SwiftmailerBundle",
  4725. "homepage": "http://symfony.com",
  4726. "time": "2019-04-18T15:52:54+00:00"
  4727. },
  4728. {
  4729. "name": "symfony/symfony",
  4730. "version": "v3.4.26",
  4731. "source": {
  4732. "type": "git",
  4733. "url": "https://github.com/symfony/symfony.git",
  4734. "reference": "1b89e7baec9891c323bbf1ec81af77d901fc60c9"
  4735. },
  4736. "dist": {
  4737. "type": "zip",
  4738. "url": "https://api.github.com/repos/symfony/symfony/zipball/1b89e7baec9891c323bbf1ec81af77d901fc60c9",
  4739. "reference": "1b89e7baec9891c323bbf1ec81af77d901fc60c9",
  4740. "shasum": ""
  4741. },
  4742. "require": {
  4743. "doctrine/common": "~2.4",
  4744. "ext-xml": "*",
  4745. "fig/link-util": "^1.0",
  4746. "php": "^5.5.9|>=7.0.8",
  4747. "psr/cache": "~1.0",
  4748. "psr/container": "^1.0",
  4749. "psr/link": "^1.0",
  4750. "psr/log": "~1.0",
  4751. "psr/simple-cache": "^1.0",
  4752. "symfony/polyfill-apcu": "~1.1",
  4753. "symfony/polyfill-ctype": "~1.8",
  4754. "symfony/polyfill-intl-icu": "~1.0",
  4755. "symfony/polyfill-mbstring": "~1.0",
  4756. "symfony/polyfill-php56": "~1.0",
  4757. "symfony/polyfill-php70": "~1.6",
  4758. "twig/twig": "^1.35|^2.4.4"
  4759. },
  4760. "conflict": {
  4761. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  4762. "phpdocumentor/type-resolver": "<0.3.0",
  4763. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  4764. },
  4765. "provide": {
  4766. "psr/cache-implementation": "1.0",
  4767. "psr/container-implementation": "1.0",
  4768. "psr/log-implementation": "1.0",
  4769. "psr/simple-cache-implementation": "1.0"
  4770. },
  4771. "replace": {
  4772. "symfony/asset": "self.version",
  4773. "symfony/browser-kit": "self.version",
  4774. "symfony/cache": "self.version",
  4775. "symfony/class-loader": "self.version",
  4776. "symfony/config": "self.version",
  4777. "symfony/console": "self.version",
  4778. "symfony/css-selector": "self.version",
  4779. "symfony/debug": "self.version",
  4780. "symfony/debug-bundle": "self.version",
  4781. "symfony/dependency-injection": "self.version",
  4782. "symfony/doctrine-bridge": "self.version",
  4783. "symfony/dom-crawler": "self.version",
  4784. "symfony/dotenv": "self.version",
  4785. "symfony/event-dispatcher": "self.version",
  4786. "symfony/expression-language": "self.version",
  4787. "symfony/filesystem": "self.version",
  4788. "symfony/finder": "self.version",
  4789. "symfony/form": "self.version",
  4790. "symfony/framework-bundle": "self.version",
  4791. "symfony/http-foundation": "self.version",
  4792. "symfony/http-kernel": "self.version",
  4793. "symfony/inflector": "self.version",
  4794. "symfony/intl": "self.version",
  4795. "symfony/ldap": "self.version",
  4796. "symfony/lock": "self.version",
  4797. "symfony/monolog-bridge": "self.version",
  4798. "symfony/options-resolver": "self.version",
  4799. "symfony/process": "self.version",
  4800. "symfony/property-access": "self.version",
  4801. "symfony/property-info": "self.version",
  4802. "symfony/proxy-manager-bridge": "self.version",
  4803. "symfony/routing": "self.version",
  4804. "symfony/security": "self.version",
  4805. "symfony/security-bundle": "self.version",
  4806. "symfony/security-core": "self.version",
  4807. "symfony/security-csrf": "self.version",
  4808. "symfony/security-guard": "self.version",
  4809. "symfony/security-http": "self.version",
  4810. "symfony/serializer": "self.version",
  4811. "symfony/stopwatch": "self.version",
  4812. "symfony/templating": "self.version",
  4813. "symfony/translation": "self.version",
  4814. "symfony/twig-bridge": "self.version",
  4815. "symfony/twig-bundle": "self.version",
  4816. "symfony/validator": "self.version",
  4817. "symfony/var-dumper": "self.version",
  4818. "symfony/web-link": "self.version",
  4819. "symfony/web-profiler-bundle": "self.version",
  4820. "symfony/web-server-bundle": "self.version",
  4821. "symfony/workflow": "self.version",
  4822. "symfony/yaml": "self.version"
  4823. },
  4824. "require-dev": {
  4825. "cache/integration-tests": "dev-master",
  4826. "doctrine/annotations": "~1.0",
  4827. "doctrine/cache": "~1.6",
  4828. "doctrine/data-fixtures": "1.0.*",
  4829. "doctrine/dbal": "~2.4",
  4830. "doctrine/doctrine-bundle": "~1.4",
  4831. "doctrine/orm": "~2.4,>=2.4.5",
  4832. "egulias/email-validator": "~1.2,>=1.2.8|~2.0",
  4833. "monolog/monolog": "~1.11",
  4834. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  4835. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4836. "predis/predis": "~1.0",
  4837. "symfony/phpunit-bridge": "~3.4|~4.0",
  4838. "symfony/security-acl": "~2.8|~3.0"
  4839. },
  4840. "type": "library",
  4841. "extra": {
  4842. "branch-alias": {
  4843. "dev-master": "3.4-dev"
  4844. }
  4845. },
  4846. "autoload": {
  4847. "psr-4": {
  4848. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  4849. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  4850. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  4851. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  4852. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  4853. "Symfony\\Component\\": "src/Symfony/Component/"
  4854. },
  4855. "classmap": [
  4856. "src/Symfony/Component/Intl/Resources/stubs"
  4857. ],
  4858. "exclude-from-classmap": [
  4859. "**/Tests/"
  4860. ]
  4861. },
  4862. "notification-url": "https://packagist.org/downloads/",
  4863. "license": [
  4864. "MIT"
  4865. ],
  4866. "authors": [
  4867. {
  4868. "name": "Fabien Potencier",
  4869. "email": "fabien@symfony.com"
  4870. },
  4871. {
  4872. "name": "Symfony Community",
  4873. "homepage": "https://symfony.com/contributors"
  4874. }
  4875. ],
  4876. "description": "The Symfony PHP framework",
  4877. "homepage": "https://symfony.com",
  4878. "keywords": [
  4879. "framework"
  4880. ],
  4881. "time": "2019-04-17T15:57:27+00:00"
  4882. },
  4883. {
  4884. "name": "twig/extensions",
  4885. "version": "v1.5.4",
  4886. "source": {
  4887. "type": "git",
  4888. "url": "https://github.com/twigphp/Twig-extensions.git",
  4889. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202"
  4890. },
  4891. "dist": {
  4892. "type": "zip",
  4893. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/57873c8b0c1be51caa47df2cdb824490beb16202",
  4894. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202",
  4895. "shasum": ""
  4896. },
  4897. "require": {
  4898. "twig/twig": "^1.27|^2.0"
  4899. },
  4900. "require-dev": {
  4901. "symfony/phpunit-bridge": "^3.4",
  4902. "symfony/translation": "^2.7|^3.4"
  4903. },
  4904. "suggest": {
  4905. "symfony/translation": "Allow the time_diff output to be translated"
  4906. },
  4907. "type": "library",
  4908. "extra": {
  4909. "branch-alias": {
  4910. "dev-master": "1.5-dev"
  4911. }
  4912. },
  4913. "autoload": {
  4914. "psr-0": {
  4915. "Twig_Extensions_": "lib/"
  4916. },
  4917. "psr-4": {
  4918. "Twig\\Extensions\\": "src/"
  4919. }
  4920. },
  4921. "notification-url": "https://packagist.org/downloads/",
  4922. "license": [
  4923. "MIT"
  4924. ],
  4925. "authors": [
  4926. {
  4927. "name": "Fabien Potencier",
  4928. "email": "fabien@symfony.com"
  4929. }
  4930. ],
  4931. "description": "Common additional features for Twig that do not directly belong in core",
  4932. "keywords": [
  4933. "i18n",
  4934. "text"
  4935. ],
  4936. "time": "2018-12-05T18:34:18+00:00"
  4937. },
  4938. {
  4939. "name": "twig/twig",
  4940. "version": "v2.7.4",
  4941. "source": {
  4942. "type": "git",
  4943. "url": "https://github.com/twigphp/Twig.git",
  4944. "reference": "ed9c49220e09bfaeb1ba4d48077c08a7b09908dd"
  4945. },
  4946. "dist": {
  4947. "type": "zip",
  4948. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ed9c49220e09bfaeb1ba4d48077c08a7b09908dd",
  4949. "reference": "ed9c49220e09bfaeb1ba4d48077c08a7b09908dd",
  4950. "shasum": ""
  4951. },
  4952. "require": {
  4953. "php": "^7.0",
  4954. "symfony/polyfill-ctype": "^1.8",
  4955. "symfony/polyfill-mbstring": "^1.3"
  4956. },
  4957. "require-dev": {
  4958. "psr/container": "^1.0",
  4959. "symfony/debug": "^2.7",
  4960. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4961. },
  4962. "type": "library",
  4963. "extra": {
  4964. "branch-alias": {
  4965. "dev-master": "2.7-dev"
  4966. }
  4967. },
  4968. "autoload": {
  4969. "psr-0": {
  4970. "Twig_": "lib/"
  4971. },
  4972. "psr-4": {
  4973. "Twig\\": "src/"
  4974. }
  4975. },
  4976. "notification-url": "https://packagist.org/downloads/",
  4977. "license": [
  4978. "BSD-3-Clause"
  4979. ],
  4980. "authors": [
  4981. {
  4982. "name": "Fabien Potencier",
  4983. "email": "fabien@symfony.com",
  4984. "homepage": "http://fabien.potencier.org",
  4985. "role": "Lead Developer"
  4986. },
  4987. {
  4988. "name": "Armin Ronacher",
  4989. "email": "armin.ronacher@active-4.com",
  4990. "role": "Project Founder"
  4991. },
  4992. {
  4993. "name": "Twig Team",
  4994. "homepage": "https://twig.symfony.com/contributors",
  4995. "role": "Contributors"
  4996. }
  4997. ],
  4998. "description": "Twig, the flexible, fast, and secure template language for PHP",
  4999. "homepage": "https://twig.symfony.com",
  5000. "keywords": [
  5001. "templating"
  5002. ],
  5003. "time": "2019-03-23T14:28:58+00:00"
  5004. },
  5005. {
  5006. "name": "ua-parser/uap-php",
  5007. "version": "v3.8.8",
  5008. "source": {
  5009. "type": "git",
  5010. "url": "https://github.com/ua-parser/uap-php.git",
  5011. "reference": "3004c494d204c3b6d5e1e80a4ff78e4025e24e2f"
  5012. },
  5013. "dist": {
  5014. "type": "zip",
  5015. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/3004c494d204c3b6d5e1e80a4ff78e4025e24e2f",
  5016. "reference": "3004c494d204c3b6d5e1e80a4ff78e4025e24e2f",
  5017. "shasum": ""
  5018. },
  5019. "require": {
  5020. "composer/ca-bundle": "^1.1",
  5021. "php": ">=5.3.0"
  5022. },
  5023. "require-dev": {
  5024. "phpunit/phpunit": "<8",
  5025. "symfony/console": "^2.0 || ^3.0 || ^4.0",
  5026. "symfony/filesystem": "^2.0 || ^3.0 || ^4.0",
  5027. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  5028. "symfony/yaml": "^2.0 || ^3.0 || ^4.0"
  5029. },
  5030. "suggest": {
  5031. "symfony/console": "Required for CLI usage - ^2.0 || ^3.0 || ^4.0",
  5032. "symfony/filesystem": "Required for CLI usage - 2.0 || ^3.0 || ^4.0",
  5033. "symfony/finder": "Required for CLI usage - ^2.0 || ^3.0 || ^4.0",
  5034. "symfony/yaml": "Required for CLI usage - ^4.0 || ^5.0"
  5035. },
  5036. "bin": [
  5037. "bin/uaparser"
  5038. ],
  5039. "type": "library",
  5040. "autoload": {
  5041. "psr-4": {
  5042. "UAParser\\": "src"
  5043. }
  5044. },
  5045. "notification-url": "https://packagist.org/downloads/",
  5046. "license": [
  5047. "MIT"
  5048. ],
  5049. "authors": [
  5050. {
  5051. "name": "Lars Strojny",
  5052. "email": "lars@strojny.net"
  5053. },
  5054. {
  5055. "name": "Dave Olsen",
  5056. "email": "dmolsen@gmail.com"
  5057. }
  5058. ],
  5059. "description": "A multi-language port of Browserscope's user agent parser.",
  5060. "time": "2019-03-19T09:54:19+00:00"
  5061. },
  5062. {
  5063. "name": "white-october/pagerfanta-bundle",
  5064. "version": "v1.2.4",
  5065. "source": {
  5066. "type": "git",
  5067. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  5068. "reference": "19bf14bf8c72e4205c9ca97028436701fe3991a6"
  5069. },
  5070. "dist": {
  5071. "type": "zip",
  5072. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/19bf14bf8c72e4205c9ca97028436701fe3991a6",
  5073. "reference": "19bf14bf8c72e4205c9ca97028436701fe3991a6",
  5074. "shasum": ""
  5075. },
  5076. "require": {
  5077. "pagerfanta/pagerfanta": "^1.1.0|^2.0.0",
  5078. "php": ">=5.3",
  5079. "symfony/framework-bundle": "~2.3|~3.0|~4.0",
  5080. "symfony/property-access": "~2.3|~3.0|~4.0",
  5081. "symfony/translation": "~2.3|~3.0|~4.0",
  5082. "symfony/twig-bundle": "~2.3|~3.0|~4.0"
  5083. },
  5084. "require-dev": {
  5085. "phpunit/phpunit": "~3.7|~4.0|^5.0",
  5086. "symfony/symfony": "~2.3|~3.0|~4.0"
  5087. },
  5088. "type": "symfony-bundle",
  5089. "extra": {
  5090. "branch-alias": {
  5091. "dev-master": "1.0.x-dev"
  5092. }
  5093. },
  5094. "autoload": {
  5095. "psr-4": {
  5096. "WhiteOctober\\PagerfantaBundle\\": ""
  5097. },
  5098. "exclude-from-classmap": [
  5099. "Tests/",
  5100. "TestsProject/"
  5101. ]
  5102. },
  5103. "notification-url": "https://packagist.org/downloads/",
  5104. "license": [
  5105. "MIT"
  5106. ],
  5107. "authors": [
  5108. {
  5109. "name": "Pablo Díez",
  5110. "email": "pablodip@gmail.com"
  5111. }
  5112. ],
  5113. "description": "Bundle to use Pagerfanta with Symfony2",
  5114. "keywords": [
  5115. "page",
  5116. "paging"
  5117. ],
  5118. "time": "2019-02-14T08:42:52+00:00"
  5119. },
  5120. {
  5121. "name": "zendframework/zend-escaper",
  5122. "version": "2.6.0",
  5123. "source": {
  5124. "type": "git",
  5125. "url": "https://github.com/zendframework/zend-escaper.git",
  5126. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  5127. },
  5128. "dist": {
  5129. "type": "zip",
  5130. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  5131. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  5132. "shasum": ""
  5133. },
  5134. "require": {
  5135. "php": "^5.6 || ^7.0"
  5136. },
  5137. "require-dev": {
  5138. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5139. "zendframework/zend-coding-standard": "~1.0.0"
  5140. },
  5141. "type": "library",
  5142. "extra": {
  5143. "branch-alias": {
  5144. "dev-master": "2.6.x-dev",
  5145. "dev-develop": "2.7.x-dev"
  5146. }
  5147. },
  5148. "autoload": {
  5149. "psr-4": {
  5150. "Zend\\Escaper\\": "src/"
  5151. }
  5152. },
  5153. "notification-url": "https://packagist.org/downloads/",
  5154. "license": [
  5155. "BSD-3-Clause"
  5156. ],
  5157. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  5158. "keywords": [
  5159. "ZendFramework",
  5160. "escaper",
  5161. "zf"
  5162. ],
  5163. "time": "2018-04-25T15:48:53+00:00"
  5164. },
  5165. {
  5166. "name": "zendframework/zend-feed",
  5167. "version": "2.12.0",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://github.com/zendframework/zend-feed.git",
  5171. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  5176. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  5177. "shasum": ""
  5178. },
  5179. "require": {
  5180. "ext-dom": "*",
  5181. "ext-libxml": "*",
  5182. "php": "^5.6 || ^7.0",
  5183. "zendframework/zend-escaper": "^2.5.2",
  5184. "zendframework/zend-stdlib": "^3.2.1"
  5185. },
  5186. "require-dev": {
  5187. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  5188. "psr/http-message": "^1.0.1",
  5189. "zendframework/zend-cache": "^2.7.2",
  5190. "zendframework/zend-coding-standard": "~1.0.0",
  5191. "zendframework/zend-db": "^2.8.2",
  5192. "zendframework/zend-http": "^2.7",
  5193. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  5194. "zendframework/zend-validator": "^2.10.1"
  5195. },
  5196. "suggest": {
  5197. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  5198. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  5199. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  5200. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  5201. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  5202. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  5203. },
  5204. "type": "library",
  5205. "extra": {
  5206. "branch-alias": {
  5207. "dev-master": "2.12.x-dev",
  5208. "dev-develop": "2.13.x-dev"
  5209. }
  5210. },
  5211. "autoload": {
  5212. "psr-4": {
  5213. "Zend\\Feed\\": "src/"
  5214. }
  5215. },
  5216. "notification-url": "https://packagist.org/downloads/",
  5217. "license": [
  5218. "BSD-3-Clause"
  5219. ],
  5220. "description": "provides functionality for consuming RSS and Atom feeds",
  5221. "keywords": [
  5222. "ZendFramework",
  5223. "feed",
  5224. "zf"
  5225. ],
  5226. "time": "2019-03-05T20:08:49+00:00"
  5227. },
  5228. {
  5229. "name": "zendframework/zend-servicemanager",
  5230. "version": "2.7.11",
  5231. "source": {
  5232. "type": "git",
  5233. "url": "https://github.com/zendframework/zend-servicemanager.git",
  5234. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7"
  5235. },
  5236. "dist": {
  5237. "type": "zip",
  5238. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5239. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5240. "shasum": ""
  5241. },
  5242. "require": {
  5243. "container-interop/container-interop": "~1.0",
  5244. "php": "^5.5 || ^7.0"
  5245. },
  5246. "require-dev": {
  5247. "athletic/athletic": "dev-master",
  5248. "fabpot/php-cs-fixer": "1.7.*",
  5249. "phpunit/phpunit": "~4.0",
  5250. "zendframework/zend-di": "~2.5",
  5251. "zendframework/zend-mvc": "~2.5"
  5252. },
  5253. "suggest": {
  5254. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  5255. "zendframework/zend-di": "Zend\\Di component"
  5256. },
  5257. "type": "library",
  5258. "extra": {
  5259. "branch-alias": {
  5260. "dev-master": "2.7-dev",
  5261. "dev-develop": "3.0-dev"
  5262. }
  5263. },
  5264. "autoload": {
  5265. "psr-4": {
  5266. "Zend\\ServiceManager\\": "src/"
  5267. }
  5268. },
  5269. "notification-url": "https://packagist.org/downloads/",
  5270. "license": [
  5271. "BSD-3-Clause"
  5272. ],
  5273. "homepage": "https://github.com/zendframework/zend-servicemanager",
  5274. "keywords": [
  5275. "servicemanager",
  5276. "zf2"
  5277. ],
  5278. "time": "2018-06-22T14:49:54+00:00"
  5279. },
  5280. {
  5281. "name": "zendframework/zend-stdlib",
  5282. "version": "3.2.1",
  5283. "source": {
  5284. "type": "git",
  5285. "url": "https://github.com/zendframework/zend-stdlib.git",
  5286. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  5287. },
  5288. "dist": {
  5289. "type": "zip",
  5290. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  5291. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  5292. "shasum": ""
  5293. },
  5294. "require": {
  5295. "php": "^5.6 || ^7.0"
  5296. },
  5297. "require-dev": {
  5298. "phpbench/phpbench": "^0.13",
  5299. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5300. "zendframework/zend-coding-standard": "~1.0.0"
  5301. },
  5302. "type": "library",
  5303. "extra": {
  5304. "branch-alias": {
  5305. "dev-master": "3.2.x-dev",
  5306. "dev-develop": "3.3.x-dev"
  5307. }
  5308. },
  5309. "autoload": {
  5310. "psr-4": {
  5311. "Zend\\Stdlib\\": "src/"
  5312. }
  5313. },
  5314. "notification-url": "https://packagist.org/downloads/",
  5315. "license": [
  5316. "BSD-3-Clause"
  5317. ],
  5318. "description": "SPL extensions, array utilities, error handlers, and more",
  5319. "keywords": [
  5320. "ZendFramework",
  5321. "stdlib",
  5322. "zf"
  5323. ],
  5324. "time": "2018-08-28T21:34:05+00:00"
  5325. },
  5326. {
  5327. "name": "zendframework/zend-uri",
  5328. "version": "2.7.0",
  5329. "source": {
  5330. "type": "git",
  5331. "url": "https://github.com/zendframework/zend-uri.git",
  5332. "reference": "b2785cd38fe379a784645449db86f21b7739b1ee"
  5333. },
  5334. "dist": {
  5335. "type": "zip",
  5336. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/b2785cd38fe379a784645449db86f21b7739b1ee",
  5337. "reference": "b2785cd38fe379a784645449db86f21b7739b1ee",
  5338. "shasum": ""
  5339. },
  5340. "require": {
  5341. "php": "^5.6 || ^7.0",
  5342. "zendframework/zend-escaper": "^2.5",
  5343. "zendframework/zend-validator": "^2.10"
  5344. },
  5345. "require-dev": {
  5346. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
  5347. "zendframework/zend-coding-standard": "~1.0.0"
  5348. },
  5349. "type": "library",
  5350. "extra": {
  5351. "branch-alias": {
  5352. "dev-master": "2.7.x-dev",
  5353. "dev-develop": "2.8.x-dev"
  5354. }
  5355. },
  5356. "autoload": {
  5357. "psr-4": {
  5358. "Zend\\Uri\\": "src/"
  5359. }
  5360. },
  5361. "notification-url": "https://packagist.org/downloads/",
  5362. "license": [
  5363. "BSD-3-Clause"
  5364. ],
  5365. "description": "A component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  5366. "keywords": [
  5367. "ZendFramework",
  5368. "uri",
  5369. "zf"
  5370. ],
  5371. "time": "2019-02-27T21:39:04+00:00"
  5372. },
  5373. {
  5374. "name": "zendframework/zend-validator",
  5375. "version": "2.12.0",
  5376. "source": {
  5377. "type": "git",
  5378. "url": "https://github.com/zendframework/zend-validator.git",
  5379. "reference": "64c33668e5fa2d39c6289a878f927ea2b0850c30"
  5380. },
  5381. "dist": {
  5382. "type": "zip",
  5383. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/64c33668e5fa2d39c6289a878f927ea2b0850c30",
  5384. "reference": "64c33668e5fa2d39c6289a878f927ea2b0850c30",
  5385. "shasum": ""
  5386. },
  5387. "require": {
  5388. "container-interop/container-interop": "^1.1",
  5389. "php": "^5.6 || ^7.0",
  5390. "zendframework/zend-stdlib": "^3.2.1"
  5391. },
  5392. "require-dev": {
  5393. "phpunit/phpunit": "^6.0.8 || ^5.7.15",
  5394. "psr/http-message": "^1.0",
  5395. "zendframework/zend-cache": "^2.6.1",
  5396. "zendframework/zend-coding-standard": "~1.0.0",
  5397. "zendframework/zend-config": "^2.6",
  5398. "zendframework/zend-db": "^2.7",
  5399. "zendframework/zend-filter": "^2.6",
  5400. "zendframework/zend-http": "^2.5.4",
  5401. "zendframework/zend-i18n": "^2.6",
  5402. "zendframework/zend-math": "^2.6",
  5403. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  5404. "zendframework/zend-session": "^2.8",
  5405. "zendframework/zend-uri": "^2.5"
  5406. },
  5407. "suggest": {
  5408. "psr/http-message": "psr/http-message, required when validating PSR-7 UploadedFileInterface instances via the Upload and UploadFile validators",
  5409. "zendframework/zend-db": "Zend\\Db component, required by the (No)RecordExists validator",
  5410. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  5411. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages",
  5412. "zendframework/zend-i18n-resources": "Translations of validator messages",
  5413. "zendframework/zend-math": "Zend\\Math component, required by the Csrf validator",
  5414. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  5415. "zendframework/zend-session": "Zend\\Session component, ^2.8; required by the Csrf validator",
  5416. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  5417. },
  5418. "type": "library",
  5419. "extra": {
  5420. "branch-alias": {
  5421. "dev-master": "2.12.x-dev",
  5422. "dev-develop": "2.13.x-dev"
  5423. },
  5424. "zf": {
  5425. "component": "Zend\\Validator",
  5426. "config-provider": "Zend\\Validator\\ConfigProvider"
  5427. }
  5428. },
  5429. "autoload": {
  5430. "psr-4": {
  5431. "Zend\\Validator\\": "src/"
  5432. }
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "BSD-3-Clause"
  5437. ],
  5438. "description": "provides a set of commonly needed validators",
  5439. "homepage": "https://github.com/zendframework/zend-validator",
  5440. "keywords": [
  5441. "validator",
  5442. "zf2"
  5443. ],
  5444. "time": "2019-01-30T14:26:10+00:00"
  5445. },
  5446. {
  5447. "name": "zendframework/zenddiagnostics",
  5448. "version": "v1.5.0",
  5449. "source": {
  5450. "type": "git",
  5451. "url": "https://github.com/zendframework/zend-diagnostics.git",
  5452. "reference": "2e60c61935ecc70c9d3b4ce5a8903ea9986ae314"
  5453. },
  5454. "dist": {
  5455. "type": "zip",
  5456. "url": "https://api.github.com/repos/zendframework/zend-diagnostics/zipball/2e60c61935ecc70c9d3b4ce5a8903ea9986ae314",
  5457. "reference": "2e60c61935ecc70c9d3b4ce5a8903ea9986ae314",
  5458. "shasum": ""
  5459. },
  5460. "require": {
  5461. "php": "^5.6 || ^7.0"
  5462. },
  5463. "conflict": {
  5464. "guzzlehttp/ringphp": "<1.1.1"
  5465. },
  5466. "require-dev": {
  5467. "doctrine/migrations": "^1.0 || ^2.0",
  5468. "guzzlehttp/guzzle": "^5.3.3 || ^6.3.3",
  5469. "mikey179/vfsstream": "^1.6",
  5470. "php-amqplib/php-amqplib": "^2.0",
  5471. "phpunit/phpunit": "^5.7.27 || 6.5.8 || ^7.1.2",
  5472. "predis/predis": "^1.0",
  5473. "sensiolabs/security-checker": "^5.0",
  5474. "symfony/yaml": "^2.7 || ^3.0 || ^4.0",
  5475. "zendframework/zend-coding-standard": "~1.0.0",
  5476. "zendframework/zend-loader": "^2.0"
  5477. },
  5478. "suggest": {
  5479. "doctrine/migrations": "Required by Check\\DoctrineMigration",
  5480. "ext-bcmath": "Required by Check\\CpuPerformance",
  5481. "guzzlehttp/guzzle": "Required by Check\\GuzzleHttpService",
  5482. "predis/predis": "Required by Check\\Redis",
  5483. "sensiolabs/security-checker": "Required by Check\\SecurityAdvisory",
  5484. "symfony/yaml": "Required by Check\\YamlFile",
  5485. "videlalvaro/php-amqplib": "Required by Check\\RabbitMQ"
  5486. },
  5487. "type": "library",
  5488. "extra": {
  5489. "branch-alias": {
  5490. "dev-master": "1.5.x-dev",
  5491. "dev-develop": "1.6.x-dev"
  5492. }
  5493. },
  5494. "autoload": {
  5495. "files": [
  5496. "src/autoload.php"
  5497. ],
  5498. "psr-4": {
  5499. "ZendDiagnostics\\": "src/"
  5500. }
  5501. },
  5502. "notification-url": "https://packagist.org/downloads/",
  5503. "license": [
  5504. "BSD-3-Clause"
  5505. ],
  5506. "description": "A set of components for performing diagnostic tests in PHP applications",
  5507. "homepage": "https://github.com/zendframework/zend-diagnostics",
  5508. "keywords": [
  5509. "ZendFramework",
  5510. "diagnostics",
  5511. "php",
  5512. "test",
  5513. "zf"
  5514. ],
  5515. "time": "2019-03-26T15:50:07+00:00"
  5516. }
  5517. ],
  5518. "packages-dev": [
  5519. {
  5520. "name": "myclabs/deep-copy",
  5521. "version": "1.8.1",
  5522. "source": {
  5523. "type": "git",
  5524. "url": "https://github.com/myclabs/DeepCopy.git",
  5525. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  5526. },
  5527. "dist": {
  5528. "type": "zip",
  5529. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  5530. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  5531. "shasum": ""
  5532. },
  5533. "require": {
  5534. "php": "^7.1"
  5535. },
  5536. "replace": {
  5537. "myclabs/deep-copy": "self.version"
  5538. },
  5539. "require-dev": {
  5540. "doctrine/collections": "^1.0",
  5541. "doctrine/common": "^2.6",
  5542. "phpunit/phpunit": "^7.1"
  5543. },
  5544. "type": "library",
  5545. "autoload": {
  5546. "psr-4": {
  5547. "DeepCopy\\": "src/DeepCopy/"
  5548. },
  5549. "files": [
  5550. "src/DeepCopy/deep_copy.php"
  5551. ]
  5552. },
  5553. "notification-url": "https://packagist.org/downloads/",
  5554. "license": [
  5555. "MIT"
  5556. ],
  5557. "description": "Create deep copies (clones) of your objects",
  5558. "keywords": [
  5559. "clone",
  5560. "copy",
  5561. "duplicate",
  5562. "object",
  5563. "object graph"
  5564. ],
  5565. "time": "2018-06-11T23:09:50+00:00"
  5566. },
  5567. {
  5568. "name": "phar-io/manifest",
  5569. "version": "1.0.3",
  5570. "source": {
  5571. "type": "git",
  5572. "url": "https://github.com/phar-io/manifest.git",
  5573. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  5574. },
  5575. "dist": {
  5576. "type": "zip",
  5577. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5578. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5579. "shasum": ""
  5580. },
  5581. "require": {
  5582. "ext-dom": "*",
  5583. "ext-phar": "*",
  5584. "phar-io/version": "^2.0",
  5585. "php": "^5.6 || ^7.0"
  5586. },
  5587. "type": "library",
  5588. "extra": {
  5589. "branch-alias": {
  5590. "dev-master": "1.0.x-dev"
  5591. }
  5592. },
  5593. "autoload": {
  5594. "classmap": [
  5595. "src/"
  5596. ]
  5597. },
  5598. "notification-url": "https://packagist.org/downloads/",
  5599. "license": [
  5600. "BSD-3-Clause"
  5601. ],
  5602. "authors": [
  5603. {
  5604. "name": "Arne Blankerts",
  5605. "email": "arne@blankerts.de",
  5606. "role": "Developer"
  5607. },
  5608. {
  5609. "name": "Sebastian Heuer",
  5610. "email": "sebastian@phpeople.de",
  5611. "role": "Developer"
  5612. },
  5613. {
  5614. "name": "Sebastian Bergmann",
  5615. "email": "sebastian@phpunit.de",
  5616. "role": "Developer"
  5617. }
  5618. ],
  5619. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5620. "time": "2018-07-08T19:23:20+00:00"
  5621. },
  5622. {
  5623. "name": "phar-io/version",
  5624. "version": "2.0.1",
  5625. "source": {
  5626. "type": "git",
  5627. "url": "https://github.com/phar-io/version.git",
  5628. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  5629. },
  5630. "dist": {
  5631. "type": "zip",
  5632. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5633. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5634. "shasum": ""
  5635. },
  5636. "require": {
  5637. "php": "^5.6 || ^7.0"
  5638. },
  5639. "type": "library",
  5640. "autoload": {
  5641. "classmap": [
  5642. "src/"
  5643. ]
  5644. },
  5645. "notification-url": "https://packagist.org/downloads/",
  5646. "license": [
  5647. "BSD-3-Clause"
  5648. ],
  5649. "authors": [
  5650. {
  5651. "name": "Arne Blankerts",
  5652. "email": "arne@blankerts.de",
  5653. "role": "Developer"
  5654. },
  5655. {
  5656. "name": "Sebastian Heuer",
  5657. "email": "sebastian@phpeople.de",
  5658. "role": "Developer"
  5659. },
  5660. {
  5661. "name": "Sebastian Bergmann",
  5662. "email": "sebastian@phpunit.de",
  5663. "role": "Developer"
  5664. }
  5665. ],
  5666. "description": "Library for handling version information and constraints",
  5667. "time": "2018-07-08T19:19:57+00:00"
  5668. },
  5669. {
  5670. "name": "phpdocumentor/reflection-common",
  5671. "version": "1.0.1",
  5672. "source": {
  5673. "type": "git",
  5674. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5675. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  5676. },
  5677. "dist": {
  5678. "type": "zip",
  5679. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5680. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5681. "shasum": ""
  5682. },
  5683. "require": {
  5684. "php": ">=5.5"
  5685. },
  5686. "require-dev": {
  5687. "phpunit/phpunit": "^4.6"
  5688. },
  5689. "type": "library",
  5690. "extra": {
  5691. "branch-alias": {
  5692. "dev-master": "1.0.x-dev"
  5693. }
  5694. },
  5695. "autoload": {
  5696. "psr-4": {
  5697. "phpDocumentor\\Reflection\\": [
  5698. "src"
  5699. ]
  5700. }
  5701. },
  5702. "notification-url": "https://packagist.org/downloads/",
  5703. "license": [
  5704. "MIT"
  5705. ],
  5706. "authors": [
  5707. {
  5708. "name": "Jaap van Otterdijk",
  5709. "email": "opensource@ijaap.nl"
  5710. }
  5711. ],
  5712. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5713. "homepage": "http://www.phpdoc.org",
  5714. "keywords": [
  5715. "FQSEN",
  5716. "phpDocumentor",
  5717. "phpdoc",
  5718. "reflection",
  5719. "static analysis"
  5720. ],
  5721. "time": "2017-09-11T18:02:19+00:00"
  5722. },
  5723. {
  5724. "name": "phpdocumentor/reflection-docblock",
  5725. "version": "4.3.0",
  5726. "source": {
  5727. "type": "git",
  5728. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5729. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  5730. },
  5731. "dist": {
  5732. "type": "zip",
  5733. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  5734. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  5735. "shasum": ""
  5736. },
  5737. "require": {
  5738. "php": "^7.0",
  5739. "phpdocumentor/reflection-common": "^1.0.0",
  5740. "phpdocumentor/type-resolver": "^0.4.0",
  5741. "webmozart/assert": "^1.0"
  5742. },
  5743. "require-dev": {
  5744. "doctrine/instantiator": "~1.0.5",
  5745. "mockery/mockery": "^1.0",
  5746. "phpunit/phpunit": "^6.4"
  5747. },
  5748. "type": "library",
  5749. "extra": {
  5750. "branch-alias": {
  5751. "dev-master": "4.x-dev"
  5752. }
  5753. },
  5754. "autoload": {
  5755. "psr-4": {
  5756. "phpDocumentor\\Reflection\\": [
  5757. "src/"
  5758. ]
  5759. }
  5760. },
  5761. "notification-url": "https://packagist.org/downloads/",
  5762. "license": [
  5763. "MIT"
  5764. ],
  5765. "authors": [
  5766. {
  5767. "name": "Mike van Riel",
  5768. "email": "me@mikevanriel.com"
  5769. }
  5770. ],
  5771. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5772. "time": "2017-11-30T07:14:17+00:00"
  5773. },
  5774. {
  5775. "name": "phpdocumentor/type-resolver",
  5776. "version": "0.4.0",
  5777. "source": {
  5778. "type": "git",
  5779. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5780. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  5781. },
  5782. "dist": {
  5783. "type": "zip",
  5784. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  5785. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  5786. "shasum": ""
  5787. },
  5788. "require": {
  5789. "php": "^5.5 || ^7.0",
  5790. "phpdocumentor/reflection-common": "^1.0"
  5791. },
  5792. "require-dev": {
  5793. "mockery/mockery": "^0.9.4",
  5794. "phpunit/phpunit": "^5.2||^4.8.24"
  5795. },
  5796. "type": "library",
  5797. "extra": {
  5798. "branch-alias": {
  5799. "dev-master": "1.0.x-dev"
  5800. }
  5801. },
  5802. "autoload": {
  5803. "psr-4": {
  5804. "phpDocumentor\\Reflection\\": [
  5805. "src/"
  5806. ]
  5807. }
  5808. },
  5809. "notification-url": "https://packagist.org/downloads/",
  5810. "license": [
  5811. "MIT"
  5812. ],
  5813. "authors": [
  5814. {
  5815. "name": "Mike van Riel",
  5816. "email": "me@mikevanriel.com"
  5817. }
  5818. ],
  5819. "time": "2017-07-14T14:27:02+00:00"
  5820. },
  5821. {
  5822. "name": "phpspec/prophecy",
  5823. "version": "1.8.0",
  5824. "source": {
  5825. "type": "git",
  5826. "url": "https://github.com/phpspec/prophecy.git",
  5827. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  5828. },
  5829. "dist": {
  5830. "type": "zip",
  5831. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  5832. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  5833. "shasum": ""
  5834. },
  5835. "require": {
  5836. "doctrine/instantiator": "^1.0.2",
  5837. "php": "^5.3|^7.0",
  5838. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  5839. "sebastian/comparator": "^1.1|^2.0|^3.0",
  5840. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  5841. },
  5842. "require-dev": {
  5843. "phpspec/phpspec": "^2.5|^3.2",
  5844. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  5845. },
  5846. "type": "library",
  5847. "extra": {
  5848. "branch-alias": {
  5849. "dev-master": "1.8.x-dev"
  5850. }
  5851. },
  5852. "autoload": {
  5853. "psr-0": {
  5854. "Prophecy\\": "src/"
  5855. }
  5856. },
  5857. "notification-url": "https://packagist.org/downloads/",
  5858. "license": [
  5859. "MIT"
  5860. ],
  5861. "authors": [
  5862. {
  5863. "name": "Konstantin Kudryashov",
  5864. "email": "ever.zet@gmail.com",
  5865. "homepage": "http://everzet.com"
  5866. },
  5867. {
  5868. "name": "Marcello Duarte",
  5869. "email": "marcello.duarte@gmail.com"
  5870. }
  5871. ],
  5872. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5873. "homepage": "https://github.com/phpspec/prophecy",
  5874. "keywords": [
  5875. "Double",
  5876. "Dummy",
  5877. "fake",
  5878. "mock",
  5879. "spy",
  5880. "stub"
  5881. ],
  5882. "time": "2018-08-05T17:53:17+00:00"
  5883. },
  5884. {
  5885. "name": "phpunit/php-code-coverage",
  5886. "version": "7.0.3",
  5887. "source": {
  5888. "type": "git",
  5889. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5890. "reference": "0317a769a81845c390e19684d9ba25d7f6aa4707"
  5891. },
  5892. "dist": {
  5893. "type": "zip",
  5894. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/0317a769a81845c390e19684d9ba25d7f6aa4707",
  5895. "reference": "0317a769a81845c390e19684d9ba25d7f6aa4707",
  5896. "shasum": ""
  5897. },
  5898. "require": {
  5899. "ext-dom": "*",
  5900. "ext-xmlwriter": "*",
  5901. "php": "^7.2",
  5902. "phpunit/php-file-iterator": "^2.0.2",
  5903. "phpunit/php-text-template": "^1.2.1",
  5904. "phpunit/php-token-stream": "^3.0.1",
  5905. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5906. "sebastian/environment": "^4.1",
  5907. "sebastian/version": "^2.0.1",
  5908. "theseer/tokenizer": "^1.1"
  5909. },
  5910. "require-dev": {
  5911. "phpunit/phpunit": "^8.0"
  5912. },
  5913. "suggest": {
  5914. "ext-xdebug": "^2.6.1"
  5915. },
  5916. "type": "library",
  5917. "extra": {
  5918. "branch-alias": {
  5919. "dev-master": "7.0-dev"
  5920. }
  5921. },
  5922. "autoload": {
  5923. "classmap": [
  5924. "src/"
  5925. ]
  5926. },
  5927. "notification-url": "https://packagist.org/downloads/",
  5928. "license": [
  5929. "BSD-3-Clause"
  5930. ],
  5931. "authors": [
  5932. {
  5933. "name": "Sebastian Bergmann",
  5934. "email": "sebastian@phpunit.de",
  5935. "role": "lead"
  5936. }
  5937. ],
  5938. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5939. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5940. "keywords": [
  5941. "coverage",
  5942. "testing",
  5943. "xunit"
  5944. ],
  5945. "time": "2019-02-26T07:38:26+00:00"
  5946. },
  5947. {
  5948. "name": "phpunit/php-file-iterator",
  5949. "version": "2.0.2",
  5950. "source": {
  5951. "type": "git",
  5952. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5953. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  5954. },
  5955. "dist": {
  5956. "type": "zip",
  5957. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  5958. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  5959. "shasum": ""
  5960. },
  5961. "require": {
  5962. "php": "^7.1"
  5963. },
  5964. "require-dev": {
  5965. "phpunit/phpunit": "^7.1"
  5966. },
  5967. "type": "library",
  5968. "extra": {
  5969. "branch-alias": {
  5970. "dev-master": "2.0.x-dev"
  5971. }
  5972. },
  5973. "autoload": {
  5974. "classmap": [
  5975. "src/"
  5976. ]
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "BSD-3-Clause"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "Sebastian Bergmann",
  5985. "email": "sebastian@phpunit.de",
  5986. "role": "lead"
  5987. }
  5988. ],
  5989. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5990. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5991. "keywords": [
  5992. "filesystem",
  5993. "iterator"
  5994. ],
  5995. "time": "2018-09-13T20:33:42+00:00"
  5996. },
  5997. {
  5998. "name": "phpunit/php-text-template",
  5999. "version": "1.2.1",
  6000. "source": {
  6001. "type": "git",
  6002. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6003. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  6004. },
  6005. "dist": {
  6006. "type": "zip",
  6007. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6008. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6009. "shasum": ""
  6010. },
  6011. "require": {
  6012. "php": ">=5.3.3"
  6013. },
  6014. "type": "library",
  6015. "autoload": {
  6016. "classmap": [
  6017. "src/"
  6018. ]
  6019. },
  6020. "notification-url": "https://packagist.org/downloads/",
  6021. "license": [
  6022. "BSD-3-Clause"
  6023. ],
  6024. "authors": [
  6025. {
  6026. "name": "Sebastian Bergmann",
  6027. "email": "sebastian@phpunit.de",
  6028. "role": "lead"
  6029. }
  6030. ],
  6031. "description": "Simple template engine.",
  6032. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6033. "keywords": [
  6034. "template"
  6035. ],
  6036. "time": "2015-06-21T13:50:34+00:00"
  6037. },
  6038. {
  6039. "name": "phpunit/php-timer",
  6040. "version": "2.1.1",
  6041. "source": {
  6042. "type": "git",
  6043. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6044. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059"
  6045. },
  6046. "dist": {
  6047. "type": "zip",
  6048. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059",
  6049. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059",
  6050. "shasum": ""
  6051. },
  6052. "require": {
  6053. "php": "^7.1"
  6054. },
  6055. "require-dev": {
  6056. "phpunit/phpunit": "^7.0"
  6057. },
  6058. "type": "library",
  6059. "extra": {
  6060. "branch-alias": {
  6061. "dev-master": "2.1-dev"
  6062. }
  6063. },
  6064. "autoload": {
  6065. "classmap": [
  6066. "src/"
  6067. ]
  6068. },
  6069. "notification-url": "https://packagist.org/downloads/",
  6070. "license": [
  6071. "BSD-3-Clause"
  6072. ],
  6073. "authors": [
  6074. {
  6075. "name": "Sebastian Bergmann",
  6076. "email": "sebastian@phpunit.de",
  6077. "role": "lead"
  6078. }
  6079. ],
  6080. "description": "Utility class for timing",
  6081. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6082. "keywords": [
  6083. "timer"
  6084. ],
  6085. "time": "2019-02-20T10:12:59+00:00"
  6086. },
  6087. {
  6088. "name": "phpunit/php-token-stream",
  6089. "version": "3.0.1",
  6090. "source": {
  6091. "type": "git",
  6092. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  6093. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18"
  6094. },
  6095. "dist": {
  6096. "type": "zip",
  6097. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18",
  6098. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18",
  6099. "shasum": ""
  6100. },
  6101. "require": {
  6102. "ext-tokenizer": "*",
  6103. "php": "^7.1"
  6104. },
  6105. "require-dev": {
  6106. "phpunit/phpunit": "^7.0"
  6107. },
  6108. "type": "library",
  6109. "extra": {
  6110. "branch-alias": {
  6111. "dev-master": "3.0-dev"
  6112. }
  6113. },
  6114. "autoload": {
  6115. "classmap": [
  6116. "src/"
  6117. ]
  6118. },
  6119. "notification-url": "https://packagist.org/downloads/",
  6120. "license": [
  6121. "BSD-3-Clause"
  6122. ],
  6123. "authors": [
  6124. {
  6125. "name": "Sebastian Bergmann",
  6126. "email": "sebastian@phpunit.de"
  6127. }
  6128. ],
  6129. "description": "Wrapper around PHP's tokenizer extension.",
  6130. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6131. "keywords": [
  6132. "tokenizer"
  6133. ],
  6134. "time": "2018-10-30T05:52:18+00:00"
  6135. },
  6136. {
  6137. "name": "phpunit/phpunit",
  6138. "version": "8.0.6",
  6139. "source": {
  6140. "type": "git",
  6141. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6142. "reference": "925109f8bbe6dae28fbc7bb07446a53abd3b1c25"
  6143. },
  6144. "dist": {
  6145. "type": "zip",
  6146. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/925109f8bbe6dae28fbc7bb07446a53abd3b1c25",
  6147. "reference": "925109f8bbe6dae28fbc7bb07446a53abd3b1c25",
  6148. "shasum": ""
  6149. },
  6150. "require": {
  6151. "doctrine/instantiator": "^1.1",
  6152. "ext-dom": "*",
  6153. "ext-json": "*",
  6154. "ext-libxml": "*",
  6155. "ext-mbstring": "*",
  6156. "ext-xml": "*",
  6157. "ext-xmlwriter": "*",
  6158. "myclabs/deep-copy": "^1.7",
  6159. "phar-io/manifest": "^1.0.2",
  6160. "phar-io/version": "^2.0",
  6161. "php": "^7.2",
  6162. "phpspec/prophecy": "^1.7",
  6163. "phpunit/php-code-coverage": "^7.0",
  6164. "phpunit/php-file-iterator": "^2.0.1",
  6165. "phpunit/php-text-template": "^1.2.1",
  6166. "phpunit/php-timer": "^2.1",
  6167. "sebastian/comparator": "^3.0",
  6168. "sebastian/diff": "^3.0",
  6169. "sebastian/environment": "^4.1",
  6170. "sebastian/exporter": "^3.1",
  6171. "sebastian/global-state": "^3.0",
  6172. "sebastian/object-enumerator": "^3.0.3",
  6173. "sebastian/resource-operations": "^2.0",
  6174. "sebastian/version": "^2.0.1"
  6175. },
  6176. "require-dev": {
  6177. "ext-pdo": "*"
  6178. },
  6179. "suggest": {
  6180. "ext-soap": "*",
  6181. "ext-xdebug": "*",
  6182. "phpunit/php-invoker": "^2.0"
  6183. },
  6184. "bin": [
  6185. "phpunit"
  6186. ],
  6187. "type": "library",
  6188. "extra": {
  6189. "branch-alias": {
  6190. "dev-master": "8.0-dev"
  6191. }
  6192. },
  6193. "autoload": {
  6194. "classmap": [
  6195. "src/"
  6196. ]
  6197. },
  6198. "notification-url": "https://packagist.org/downloads/",
  6199. "license": [
  6200. "BSD-3-Clause"
  6201. ],
  6202. "authors": [
  6203. {
  6204. "name": "Sebastian Bergmann",
  6205. "email": "sebastian@phpunit.de",
  6206. "role": "lead"
  6207. }
  6208. ],
  6209. "description": "The PHP Unit Testing framework.",
  6210. "homepage": "https://phpunit.de/",
  6211. "keywords": [
  6212. "phpunit",
  6213. "testing",
  6214. "xunit"
  6215. ],
  6216. "time": "2019-03-26T14:00:24+00:00"
  6217. },
  6218. {
  6219. "name": "sebastian/code-unit-reverse-lookup",
  6220. "version": "1.0.1",
  6221. "source": {
  6222. "type": "git",
  6223. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6224. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  6225. },
  6226. "dist": {
  6227. "type": "zip",
  6228. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6229. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6230. "shasum": ""
  6231. },
  6232. "require": {
  6233. "php": "^5.6 || ^7.0"
  6234. },
  6235. "require-dev": {
  6236. "phpunit/phpunit": "^5.7 || ^6.0"
  6237. },
  6238. "type": "library",
  6239. "extra": {
  6240. "branch-alias": {
  6241. "dev-master": "1.0.x-dev"
  6242. }
  6243. },
  6244. "autoload": {
  6245. "classmap": [
  6246. "src/"
  6247. ]
  6248. },
  6249. "notification-url": "https://packagist.org/downloads/",
  6250. "license": [
  6251. "BSD-3-Clause"
  6252. ],
  6253. "authors": [
  6254. {
  6255. "name": "Sebastian Bergmann",
  6256. "email": "sebastian@phpunit.de"
  6257. }
  6258. ],
  6259. "description": "Looks up which function or method a line of code belongs to",
  6260. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6261. "time": "2017-03-04T06:30:41+00:00"
  6262. },
  6263. {
  6264. "name": "sebastian/comparator",
  6265. "version": "3.0.2",
  6266. "source": {
  6267. "type": "git",
  6268. "url": "https://github.com/sebastianbergmann/comparator.git",
  6269. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  6270. },
  6271. "dist": {
  6272. "type": "zip",
  6273. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6274. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6275. "shasum": ""
  6276. },
  6277. "require": {
  6278. "php": "^7.1",
  6279. "sebastian/diff": "^3.0",
  6280. "sebastian/exporter": "^3.1"
  6281. },
  6282. "require-dev": {
  6283. "phpunit/phpunit": "^7.1"
  6284. },
  6285. "type": "library",
  6286. "extra": {
  6287. "branch-alias": {
  6288. "dev-master": "3.0-dev"
  6289. }
  6290. },
  6291. "autoload": {
  6292. "classmap": [
  6293. "src/"
  6294. ]
  6295. },
  6296. "notification-url": "https://packagist.org/downloads/",
  6297. "license": [
  6298. "BSD-3-Clause"
  6299. ],
  6300. "authors": [
  6301. {
  6302. "name": "Jeff Welch",
  6303. "email": "whatthejeff@gmail.com"
  6304. },
  6305. {
  6306. "name": "Volker Dusch",
  6307. "email": "github@wallbash.com"
  6308. },
  6309. {
  6310. "name": "Bernhard Schussek",
  6311. "email": "bschussek@2bepublished.at"
  6312. },
  6313. {
  6314. "name": "Sebastian Bergmann",
  6315. "email": "sebastian@phpunit.de"
  6316. }
  6317. ],
  6318. "description": "Provides the functionality to compare PHP values for equality",
  6319. "homepage": "https://github.com/sebastianbergmann/comparator",
  6320. "keywords": [
  6321. "comparator",
  6322. "compare",
  6323. "equality"
  6324. ],
  6325. "time": "2018-07-12T15:12:46+00:00"
  6326. },
  6327. {
  6328. "name": "sebastian/diff",
  6329. "version": "3.0.2",
  6330. "source": {
  6331. "type": "git",
  6332. "url": "https://github.com/sebastianbergmann/diff.git",
  6333. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  6334. },
  6335. "dist": {
  6336. "type": "zip",
  6337. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6338. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6339. "shasum": ""
  6340. },
  6341. "require": {
  6342. "php": "^7.1"
  6343. },
  6344. "require-dev": {
  6345. "phpunit/phpunit": "^7.5 || ^8.0",
  6346. "symfony/process": "^2 || ^3.3 || ^4"
  6347. },
  6348. "type": "library",
  6349. "extra": {
  6350. "branch-alias": {
  6351. "dev-master": "3.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": "Kore Nordmann",
  6366. "email": "mail@kore-nordmann.de"
  6367. },
  6368. {
  6369. "name": "Sebastian Bergmann",
  6370. "email": "sebastian@phpunit.de"
  6371. }
  6372. ],
  6373. "description": "Diff implementation",
  6374. "homepage": "https://github.com/sebastianbergmann/diff",
  6375. "keywords": [
  6376. "diff",
  6377. "udiff",
  6378. "unidiff",
  6379. "unified diff"
  6380. ],
  6381. "time": "2019-02-04T06:01:07+00:00"
  6382. },
  6383. {
  6384. "name": "sebastian/environment",
  6385. "version": "4.1.0",
  6386. "source": {
  6387. "type": "git",
  6388. "url": "https://github.com/sebastianbergmann/environment.git",
  6389. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656"
  6390. },
  6391. "dist": {
  6392. "type": "zip",
  6393. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6fda8ce1974b62b14935adc02a9ed38252eca656",
  6394. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656",
  6395. "shasum": ""
  6396. },
  6397. "require": {
  6398. "php": "^7.1"
  6399. },
  6400. "require-dev": {
  6401. "phpunit/phpunit": "^7.5"
  6402. },
  6403. "suggest": {
  6404. "ext-posix": "*"
  6405. },
  6406. "type": "library",
  6407. "extra": {
  6408. "branch-alias": {
  6409. "dev-master": "4.1-dev"
  6410. }
  6411. },
  6412. "autoload": {
  6413. "classmap": [
  6414. "src/"
  6415. ]
  6416. },
  6417. "notification-url": "https://packagist.org/downloads/",
  6418. "license": [
  6419. "BSD-3-Clause"
  6420. ],
  6421. "authors": [
  6422. {
  6423. "name": "Sebastian Bergmann",
  6424. "email": "sebastian@phpunit.de"
  6425. }
  6426. ],
  6427. "description": "Provides functionality to handle HHVM/PHP environments",
  6428. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6429. "keywords": [
  6430. "Xdebug",
  6431. "environment",
  6432. "hhvm"
  6433. ],
  6434. "time": "2019-02-01T05:27:49+00:00"
  6435. },
  6436. {
  6437. "name": "sebastian/exporter",
  6438. "version": "3.1.0",
  6439. "source": {
  6440. "type": "git",
  6441. "url": "https://github.com/sebastianbergmann/exporter.git",
  6442. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  6443. },
  6444. "dist": {
  6445. "type": "zip",
  6446. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  6447. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  6448. "shasum": ""
  6449. },
  6450. "require": {
  6451. "php": "^7.0",
  6452. "sebastian/recursion-context": "^3.0"
  6453. },
  6454. "require-dev": {
  6455. "ext-mbstring": "*",
  6456. "phpunit/phpunit": "^6.0"
  6457. },
  6458. "type": "library",
  6459. "extra": {
  6460. "branch-alias": {
  6461. "dev-master": "3.1.x-dev"
  6462. }
  6463. },
  6464. "autoload": {
  6465. "classmap": [
  6466. "src/"
  6467. ]
  6468. },
  6469. "notification-url": "https://packagist.org/downloads/",
  6470. "license": [
  6471. "BSD-3-Clause"
  6472. ],
  6473. "authors": [
  6474. {
  6475. "name": "Jeff Welch",
  6476. "email": "whatthejeff@gmail.com"
  6477. },
  6478. {
  6479. "name": "Volker Dusch",
  6480. "email": "github@wallbash.com"
  6481. },
  6482. {
  6483. "name": "Bernhard Schussek",
  6484. "email": "bschussek@2bepublished.at"
  6485. },
  6486. {
  6487. "name": "Sebastian Bergmann",
  6488. "email": "sebastian@phpunit.de"
  6489. },
  6490. {
  6491. "name": "Adam Harvey",
  6492. "email": "aharvey@php.net"
  6493. }
  6494. ],
  6495. "description": "Provides the functionality to export PHP variables for visualization",
  6496. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6497. "keywords": [
  6498. "export",
  6499. "exporter"
  6500. ],
  6501. "time": "2017-04-03T13:19:02+00:00"
  6502. },
  6503. {
  6504. "name": "sebastian/global-state",
  6505. "version": "3.0.0",
  6506. "source": {
  6507. "type": "git",
  6508. "url": "https://github.com/sebastianbergmann/global-state.git",
  6509. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  6510. },
  6511. "dist": {
  6512. "type": "zip",
  6513. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  6514. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  6515. "shasum": ""
  6516. },
  6517. "require": {
  6518. "php": "^7.2",
  6519. "sebastian/object-reflector": "^1.1.1",
  6520. "sebastian/recursion-context": "^3.0"
  6521. },
  6522. "require-dev": {
  6523. "ext-dom": "*",
  6524. "phpunit/phpunit": "^8.0"
  6525. },
  6526. "suggest": {
  6527. "ext-uopz": "*"
  6528. },
  6529. "type": "library",
  6530. "extra": {
  6531. "branch-alias": {
  6532. "dev-master": "3.0-dev"
  6533. }
  6534. },
  6535. "autoload": {
  6536. "classmap": [
  6537. "src/"
  6538. ]
  6539. },
  6540. "notification-url": "https://packagist.org/downloads/",
  6541. "license": [
  6542. "BSD-3-Clause"
  6543. ],
  6544. "authors": [
  6545. {
  6546. "name": "Sebastian Bergmann",
  6547. "email": "sebastian@phpunit.de"
  6548. }
  6549. ],
  6550. "description": "Snapshotting of global state",
  6551. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6552. "keywords": [
  6553. "global state"
  6554. ],
  6555. "time": "2019-02-01T05:30:01+00:00"
  6556. },
  6557. {
  6558. "name": "sebastian/object-enumerator",
  6559. "version": "3.0.3",
  6560. "source": {
  6561. "type": "git",
  6562. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6563. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6564. },
  6565. "dist": {
  6566. "type": "zip",
  6567. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6568. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6569. "shasum": ""
  6570. },
  6571. "require": {
  6572. "php": "^7.0",
  6573. "sebastian/object-reflector": "^1.1.1",
  6574. "sebastian/recursion-context": "^3.0"
  6575. },
  6576. "require-dev": {
  6577. "phpunit/phpunit": "^6.0"
  6578. },
  6579. "type": "library",
  6580. "extra": {
  6581. "branch-alias": {
  6582. "dev-master": "3.0.x-dev"
  6583. }
  6584. },
  6585. "autoload": {
  6586. "classmap": [
  6587. "src/"
  6588. ]
  6589. },
  6590. "notification-url": "https://packagist.org/downloads/",
  6591. "license": [
  6592. "BSD-3-Clause"
  6593. ],
  6594. "authors": [
  6595. {
  6596. "name": "Sebastian Bergmann",
  6597. "email": "sebastian@phpunit.de"
  6598. }
  6599. ],
  6600. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6601. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6602. "time": "2017-08-03T12:35:26+00:00"
  6603. },
  6604. {
  6605. "name": "sebastian/object-reflector",
  6606. "version": "1.1.1",
  6607. "source": {
  6608. "type": "git",
  6609. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6610. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6611. },
  6612. "dist": {
  6613. "type": "zip",
  6614. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6615. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6616. "shasum": ""
  6617. },
  6618. "require": {
  6619. "php": "^7.0"
  6620. },
  6621. "require-dev": {
  6622. "phpunit/phpunit": "^6.0"
  6623. },
  6624. "type": "library",
  6625. "extra": {
  6626. "branch-alias": {
  6627. "dev-master": "1.1-dev"
  6628. }
  6629. },
  6630. "autoload": {
  6631. "classmap": [
  6632. "src/"
  6633. ]
  6634. },
  6635. "notification-url": "https://packagist.org/downloads/",
  6636. "license": [
  6637. "BSD-3-Clause"
  6638. ],
  6639. "authors": [
  6640. {
  6641. "name": "Sebastian Bergmann",
  6642. "email": "sebastian@phpunit.de"
  6643. }
  6644. ],
  6645. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6646. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6647. "time": "2017-03-29T09:07:27+00:00"
  6648. },
  6649. {
  6650. "name": "sebastian/recursion-context",
  6651. "version": "3.0.0",
  6652. "source": {
  6653. "type": "git",
  6654. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6655. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6656. },
  6657. "dist": {
  6658. "type": "zip",
  6659. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6660. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6661. "shasum": ""
  6662. },
  6663. "require": {
  6664. "php": "^7.0"
  6665. },
  6666. "require-dev": {
  6667. "phpunit/phpunit": "^6.0"
  6668. },
  6669. "type": "library",
  6670. "extra": {
  6671. "branch-alias": {
  6672. "dev-master": "3.0.x-dev"
  6673. }
  6674. },
  6675. "autoload": {
  6676. "classmap": [
  6677. "src/"
  6678. ]
  6679. },
  6680. "notification-url": "https://packagist.org/downloads/",
  6681. "license": [
  6682. "BSD-3-Clause"
  6683. ],
  6684. "authors": [
  6685. {
  6686. "name": "Jeff Welch",
  6687. "email": "whatthejeff@gmail.com"
  6688. },
  6689. {
  6690. "name": "Sebastian Bergmann",
  6691. "email": "sebastian@phpunit.de"
  6692. },
  6693. {
  6694. "name": "Adam Harvey",
  6695. "email": "aharvey@php.net"
  6696. }
  6697. ],
  6698. "description": "Provides functionality to recursively process PHP variables",
  6699. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6700. "time": "2017-03-03T06:23:57+00:00"
  6701. },
  6702. {
  6703. "name": "sebastian/resource-operations",
  6704. "version": "2.0.1",
  6705. "source": {
  6706. "type": "git",
  6707. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6708. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  6709. },
  6710. "dist": {
  6711. "type": "zip",
  6712. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6713. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6714. "shasum": ""
  6715. },
  6716. "require": {
  6717. "php": "^7.1"
  6718. },
  6719. "type": "library",
  6720. "extra": {
  6721. "branch-alias": {
  6722. "dev-master": "2.0-dev"
  6723. }
  6724. },
  6725. "autoload": {
  6726. "classmap": [
  6727. "src/"
  6728. ]
  6729. },
  6730. "notification-url": "https://packagist.org/downloads/",
  6731. "license": [
  6732. "BSD-3-Clause"
  6733. ],
  6734. "authors": [
  6735. {
  6736. "name": "Sebastian Bergmann",
  6737. "email": "sebastian@phpunit.de"
  6738. }
  6739. ],
  6740. "description": "Provides a list of PHP built-in functions that operate on resources",
  6741. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6742. "time": "2018-10-04T04:07:39+00:00"
  6743. },
  6744. {
  6745. "name": "sebastian/version",
  6746. "version": "2.0.1",
  6747. "source": {
  6748. "type": "git",
  6749. "url": "https://github.com/sebastianbergmann/version.git",
  6750. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6751. },
  6752. "dist": {
  6753. "type": "zip",
  6754. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6755. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6756. "shasum": ""
  6757. },
  6758. "require": {
  6759. "php": ">=5.6"
  6760. },
  6761. "type": "library",
  6762. "extra": {
  6763. "branch-alias": {
  6764. "dev-master": "2.0.x-dev"
  6765. }
  6766. },
  6767. "autoload": {
  6768. "classmap": [
  6769. "src/"
  6770. ]
  6771. },
  6772. "notification-url": "https://packagist.org/downloads/",
  6773. "license": [
  6774. "BSD-3-Clause"
  6775. ],
  6776. "authors": [
  6777. {
  6778. "name": "Sebastian Bergmann",
  6779. "email": "sebastian@phpunit.de",
  6780. "role": "lead"
  6781. }
  6782. ],
  6783. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6784. "homepage": "https://github.com/sebastianbergmann/version",
  6785. "time": "2016-10-03T07:35:21+00:00"
  6786. },
  6787. {
  6788. "name": "symfony/phpunit-bridge",
  6789. "version": "v4.2.8",
  6790. "source": {
  6791. "type": "git",
  6792. "url": "https://github.com/symfony/phpunit-bridge.git",
  6793. "reference": "31f2e3c10bc9bd955ca1ae3e4da2bb489205714a"
  6794. },
  6795. "dist": {
  6796. "type": "zip",
  6797. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/31f2e3c10bc9bd955ca1ae3e4da2bb489205714a",
  6798. "reference": "31f2e3c10bc9bd955ca1ae3e4da2bb489205714a",
  6799. "shasum": ""
  6800. },
  6801. "require": {
  6802. "php": ">=5.3.3"
  6803. },
  6804. "conflict": {
  6805. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  6806. },
  6807. "suggest": {
  6808. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  6809. },
  6810. "bin": [
  6811. "bin/simple-phpunit"
  6812. ],
  6813. "type": "symfony-bridge",
  6814. "extra": {
  6815. "branch-alias": {
  6816. "dev-master": "4.2-dev"
  6817. },
  6818. "thanks": {
  6819. "name": "phpunit/phpunit",
  6820. "url": "https://github.com/sebastianbergmann/phpunit"
  6821. }
  6822. },
  6823. "autoload": {
  6824. "files": [
  6825. "bootstrap.php"
  6826. ],
  6827. "psr-4": {
  6828. "Symfony\\Bridge\\PhpUnit\\": ""
  6829. },
  6830. "exclude-from-classmap": [
  6831. "/Tests/"
  6832. ]
  6833. },
  6834. "notification-url": "https://packagist.org/downloads/",
  6835. "license": [
  6836. "MIT"
  6837. ],
  6838. "authors": [
  6839. {
  6840. "name": "Nicolas Grekas",
  6841. "email": "p@tchwork.com"
  6842. },
  6843. {
  6844. "name": "Symfony Community",
  6845. "homepage": "https://symfony.com/contributors"
  6846. }
  6847. ],
  6848. "description": "Symfony PHPUnit Bridge",
  6849. "homepage": "https://symfony.com",
  6850. "time": "2019-04-23T14:37:24+00:00"
  6851. },
  6852. {
  6853. "name": "theseer/tokenizer",
  6854. "version": "1.1.2",
  6855. "source": {
  6856. "type": "git",
  6857. "url": "https://github.com/theseer/tokenizer.git",
  6858. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8"
  6859. },
  6860. "dist": {
  6861. "type": "zip",
  6862. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8",
  6863. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8",
  6864. "shasum": ""
  6865. },
  6866. "require": {
  6867. "ext-dom": "*",
  6868. "ext-tokenizer": "*",
  6869. "ext-xmlwriter": "*",
  6870. "php": "^7.0"
  6871. },
  6872. "type": "library",
  6873. "autoload": {
  6874. "classmap": [
  6875. "src/"
  6876. ]
  6877. },
  6878. "notification-url": "https://packagist.org/downloads/",
  6879. "license": [
  6880. "BSD-3-Clause"
  6881. ],
  6882. "authors": [
  6883. {
  6884. "name": "Arne Blankerts",
  6885. "email": "arne@blankerts.de",
  6886. "role": "Developer"
  6887. }
  6888. ],
  6889. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6890. "time": "2019-04-04T09:56:43+00:00"
  6891. },
  6892. {
  6893. "name": "webmozart/assert",
  6894. "version": "1.4.0",
  6895. "source": {
  6896. "type": "git",
  6897. "url": "https://github.com/webmozart/assert.git",
  6898. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  6899. },
  6900. "dist": {
  6901. "type": "zip",
  6902. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  6903. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  6904. "shasum": ""
  6905. },
  6906. "require": {
  6907. "php": "^5.3.3 || ^7.0",
  6908. "symfony/polyfill-ctype": "^1.8"
  6909. },
  6910. "require-dev": {
  6911. "phpunit/phpunit": "^4.6",
  6912. "sebastian/version": "^1.0.1"
  6913. },
  6914. "type": "library",
  6915. "extra": {
  6916. "branch-alias": {
  6917. "dev-master": "1.3-dev"
  6918. }
  6919. },
  6920. "autoload": {
  6921. "psr-4": {
  6922. "Webmozart\\Assert\\": "src/"
  6923. }
  6924. },
  6925. "notification-url": "https://packagist.org/downloads/",
  6926. "license": [
  6927. "MIT"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "Bernhard Schussek",
  6932. "email": "bschussek@gmail.com"
  6933. }
  6934. ],
  6935. "description": "Assertions to validate method input/output with nice error messages.",
  6936. "keywords": [
  6937. "assert",
  6938. "check",
  6939. "validate"
  6940. ],
  6941. "time": "2018-12-25T11:19:39+00:00"
  6942. }
  6943. ],
  6944. "aliases": [],
  6945. "minimum-stability": "stable",
  6946. "stability-flags": {
  6947. "composer/composer": 20
  6948. },
  6949. "prefer-stable": false,
  6950. "prefer-lowest": false,
  6951. "platform": {
  6952. "php": ">=7.3"
  6953. },
  6954. "platform-dev": [],
  6955. "platform-overrides": {
  6956. "php": "7.3.2"
  6957. }
  6958. }