composer.lock 246 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916
  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": "bb9e56d2f9c92be63842385864ff2290",
  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.1.4",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/composer/ca-bundle.git",
  195. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  200. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "ext-openssl": "*",
  205. "ext-pcre": "*",
  206. "php": "^5.3.2 || ^7.0"
  207. },
  208. "require-dev": {
  209. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  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-01-28T09:30:10+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": "88852fbf1adfc1ffeb91e2db7cbbe1aa7f0321f9"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/composer/composer/zipball/88852fbf1adfc1ffeb91e2db7cbbe1aa7f0321f9",
  256. "reference": "88852fbf1adfc1ffeb91e2db7cbbe1aa7f0321f9",
  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.9-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-04-02T09:15:23+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.1",
  390. "source": {
  391. "type": "git",
  392. "url": "https://github.com/composer/spdx-licenses.git",
  393. "reference": "a1aa51cf3ab838b83b0867b14e56fc20fbd55b3d"
  394. },
  395. "dist": {
  396. "type": "zip",
  397. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/a1aa51cf3ab838b83b0867b14e56fc20fbd55b3d",
  398. "reference": "a1aa51cf3ab838b83b0867b14e56fc20fbd55b3d",
  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-03-26T10:23:26+00:00"
  446. },
  447. {
  448. "name": "composer/xdebug-handler",
  449. "version": "1.3.2",
  450. "source": {
  451. "type": "git",
  452. "url": "https://github.com/composer/xdebug-handler.git",
  453. "reference": "d17708133b6c276d6e42ef887a877866b909d892"
  454. },
  455. "dist": {
  456. "type": "zip",
  457. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/d17708133b6c276d6e42ef887a877866b909d892",
  458. "reference": "d17708133b6c276d6e42ef887a877866b909d892",
  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-01-28T20:25:53+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": "jdorn/sql-formatter",
  1942. "version": "v1.2.17",
  1943. "source": {
  1944. "type": "git",
  1945. "url": "https://github.com/jdorn/sql-formatter.git",
  1946. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1947. },
  1948. "dist": {
  1949. "type": "zip",
  1950. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1951. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1952. "shasum": ""
  1953. },
  1954. "require": {
  1955. "php": ">=5.2.4"
  1956. },
  1957. "require-dev": {
  1958. "phpunit/phpunit": "3.7.*"
  1959. },
  1960. "type": "library",
  1961. "extra": {
  1962. "branch-alias": {
  1963. "dev-master": "1.3.x-dev"
  1964. }
  1965. },
  1966. "autoload": {
  1967. "classmap": [
  1968. "lib"
  1969. ]
  1970. },
  1971. "notification-url": "https://packagist.org/downloads/",
  1972. "license": [
  1973. "MIT"
  1974. ],
  1975. "authors": [
  1976. {
  1977. "name": "Jeremy Dorn",
  1978. "email": "jeremy@jeremydorn.com",
  1979. "homepage": "http://jeremydorn.com/"
  1980. }
  1981. ],
  1982. "description": "a PHP SQL highlighting library",
  1983. "homepage": "https://github.com/jdorn/sql-formatter/",
  1984. "keywords": [
  1985. "highlight",
  1986. "sql"
  1987. ],
  1988. "time": "2014-01-12T16:20:24+00:00"
  1989. },
  1990. {
  1991. "name": "justinrainbow/json-schema",
  1992. "version": "5.2.8",
  1993. "source": {
  1994. "type": "git",
  1995. "url": "https://github.com/justinrainbow/json-schema.git",
  1996. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4"
  1997. },
  1998. "dist": {
  1999. "type": "zip",
  2000. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  2001. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  2002. "shasum": ""
  2003. },
  2004. "require": {
  2005. "php": ">=5.3.3"
  2006. },
  2007. "require-dev": {
  2008. "friendsofphp/php-cs-fixer": "~2.2.20",
  2009. "json-schema/json-schema-test-suite": "1.2.0",
  2010. "phpunit/phpunit": "^4.8.35"
  2011. },
  2012. "bin": [
  2013. "bin/validate-json"
  2014. ],
  2015. "type": "library",
  2016. "extra": {
  2017. "branch-alias": {
  2018. "dev-master": "5.0.x-dev"
  2019. }
  2020. },
  2021. "autoload": {
  2022. "psr-4": {
  2023. "JsonSchema\\": "src/JsonSchema/"
  2024. }
  2025. },
  2026. "notification-url": "https://packagist.org/downloads/",
  2027. "license": [
  2028. "MIT"
  2029. ],
  2030. "authors": [
  2031. {
  2032. "name": "Bruno Prieto Reis",
  2033. "email": "bruno.p.reis@gmail.com"
  2034. },
  2035. {
  2036. "name": "Justin Rainbow",
  2037. "email": "justin.rainbow@gmail.com"
  2038. },
  2039. {
  2040. "name": "Igor Wiedler",
  2041. "email": "igor@wiedler.ch"
  2042. },
  2043. {
  2044. "name": "Robert Schönthal",
  2045. "email": "seroscho@googlemail.com"
  2046. }
  2047. ],
  2048. "description": "A library to validate a json schema.",
  2049. "homepage": "https://github.com/justinrainbow/json-schema",
  2050. "keywords": [
  2051. "json",
  2052. "schema"
  2053. ],
  2054. "time": "2019-01-14T23:55:14+00:00"
  2055. },
  2056. {
  2057. "name": "knplabs/knp-menu",
  2058. "version": "2.3.0",
  2059. "source": {
  2060. "type": "git",
  2061. "url": "https://github.com/KnpLabs/KnpMenu.git",
  2062. "reference": "655630a1db0b72108262d1a844de3b1ba0885be5"
  2063. },
  2064. "dist": {
  2065. "type": "zip",
  2066. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/655630a1db0b72108262d1a844de3b1ba0885be5",
  2067. "reference": "655630a1db0b72108262d1a844de3b1ba0885be5",
  2068. "shasum": ""
  2069. },
  2070. "require": {
  2071. "php": ">=5.6.0"
  2072. },
  2073. "require-dev": {
  2074. "psr/container": "^1.0",
  2075. "symfony/http-foundation": "~2.4|~3.0|^4.0",
  2076. "symfony/phpunit-bridge": "~3.3|^4.0",
  2077. "symfony/routing": "~2.3|~3.0|^4.0",
  2078. "twig/twig": "~1.16|~2.0"
  2079. },
  2080. "suggest": {
  2081. "twig/twig": "for the TwigRenderer and the integration with your templates"
  2082. },
  2083. "type": "library",
  2084. "extra": {
  2085. "branch-alias": {
  2086. "dev-master": "2.3-dev"
  2087. }
  2088. },
  2089. "autoload": {
  2090. "psr-4": {
  2091. "Knp\\Menu\\": "src/Knp/Menu"
  2092. }
  2093. },
  2094. "notification-url": "https://packagist.org/downloads/",
  2095. "license": [
  2096. "MIT"
  2097. ],
  2098. "authors": [
  2099. {
  2100. "name": "Christophe Coevoet",
  2101. "email": "stof@notk.org"
  2102. },
  2103. {
  2104. "name": "Symfony Community",
  2105. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  2106. },
  2107. {
  2108. "name": "KnpLabs",
  2109. "homepage": "https://knplabs.com"
  2110. }
  2111. ],
  2112. "description": "An object oriented menu library",
  2113. "homepage": "https://knplabs.com",
  2114. "keywords": [
  2115. "menu",
  2116. "tree"
  2117. ],
  2118. "time": "2017-11-18T20:49:26+00:00"
  2119. },
  2120. {
  2121. "name": "knplabs/knp-menu-bundle",
  2122. "version": "v2.2.1",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  2126. "reference": "6bea43eb84fc67c43ab2b43709194efffa8a8ac0"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/6bea43eb84fc67c43ab2b43709194efffa8a8ac0",
  2131. "reference": "6bea43eb84fc67c43ab2b43709194efffa8a8ac0",
  2132. "shasum": ""
  2133. },
  2134. "require": {
  2135. "knplabs/knp-menu": "~2.3",
  2136. "php": "^5.6 || ^7",
  2137. "symfony/framework-bundle": "~2.7|~3.0 | ^4.0"
  2138. },
  2139. "require-dev": {
  2140. "symfony/expression-language": "~2.7|~3.0 | ^4.0",
  2141. "symfony/phpunit-bridge": "^3.3 | ^4.0",
  2142. "symfony/templating": "~2.7|~3.0 | ^4.0"
  2143. },
  2144. "type": "symfony-bundle",
  2145. "extra": {
  2146. "branch-alias": {
  2147. "dev-master": "2.2.x-dev"
  2148. }
  2149. },
  2150. "autoload": {
  2151. "psr-4": {
  2152. "Knp\\Bundle\\MenuBundle\\": "src"
  2153. }
  2154. },
  2155. "notification-url": "https://packagist.org/downloads/",
  2156. "license": [
  2157. "MIT"
  2158. ],
  2159. "authors": [
  2160. {
  2161. "name": "Christophe Coevoet",
  2162. "email": "stof@notk.org"
  2163. },
  2164. {
  2165. "name": "Knplabs",
  2166. "homepage": "http://knplabs.com"
  2167. },
  2168. {
  2169. "name": "Symfony Community",
  2170. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  2171. }
  2172. ],
  2173. "description": "This bundle provides an integration of the KnpMenu library",
  2174. "keywords": [
  2175. "menu"
  2176. ],
  2177. "time": "2017-12-24T16:32:39+00:00"
  2178. },
  2179. {
  2180. "name": "monolog/monolog",
  2181. "version": "1.24.0",
  2182. "source": {
  2183. "type": "git",
  2184. "url": "https://github.com/Seldaek/monolog.git",
  2185. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  2186. },
  2187. "dist": {
  2188. "type": "zip",
  2189. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2190. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2191. "shasum": ""
  2192. },
  2193. "require": {
  2194. "php": ">=5.3.0",
  2195. "psr/log": "~1.0"
  2196. },
  2197. "provide": {
  2198. "psr/log-implementation": "1.0.0"
  2199. },
  2200. "require-dev": {
  2201. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2202. "doctrine/couchdb": "~1.0@dev",
  2203. "graylog2/gelf-php": "~1.0",
  2204. "jakub-onderka/php-parallel-lint": "0.9",
  2205. "php-amqplib/php-amqplib": "~2.4",
  2206. "php-console/php-console": "^3.1.3",
  2207. "phpunit/phpunit": "~4.5",
  2208. "phpunit/phpunit-mock-objects": "2.3.0",
  2209. "ruflin/elastica": ">=0.90 <3.0",
  2210. "sentry/sentry": "^0.13",
  2211. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2212. },
  2213. "suggest": {
  2214. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2215. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2216. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2217. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2218. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2219. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2220. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2221. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2222. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2223. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2224. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2225. },
  2226. "type": "library",
  2227. "extra": {
  2228. "branch-alias": {
  2229. "dev-master": "2.0.x-dev"
  2230. }
  2231. },
  2232. "autoload": {
  2233. "psr-4": {
  2234. "Monolog\\": "src/Monolog"
  2235. }
  2236. },
  2237. "notification-url": "https://packagist.org/downloads/",
  2238. "license": [
  2239. "MIT"
  2240. ],
  2241. "authors": [
  2242. {
  2243. "name": "Jordi Boggiano",
  2244. "email": "j.boggiano@seld.be",
  2245. "homepage": "http://seld.be"
  2246. }
  2247. ],
  2248. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2249. "homepage": "http://github.com/Seldaek/monolog",
  2250. "keywords": [
  2251. "log",
  2252. "logging",
  2253. "psr-3"
  2254. ],
  2255. "time": "2018-11-05T09:00:11+00:00"
  2256. },
  2257. {
  2258. "name": "nelmio/cors-bundle",
  2259. "version": "1.5.5",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  2263. "reference": "adabee944e6fe52ee566caf1770a29355b1e8d83"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/adabee944e6fe52ee566caf1770a29355b1e8d83",
  2268. "reference": "adabee944e6fe52ee566caf1770a29355b1e8d83",
  2269. "shasum": ""
  2270. },
  2271. "require": {
  2272. "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0"
  2273. },
  2274. "require-dev": {
  2275. "matthiasnoback/symfony-dependency-injection-test": "^1.0 || ^2.0",
  2276. "mockery/mockery": "^0.9 || ^1.0",
  2277. "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0"
  2278. },
  2279. "type": "symfony-bundle",
  2280. "extra": {
  2281. "branch-alias": {
  2282. "dev-master": "1.5.x-dev"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Nelmio\\CorsBundle\\": ""
  2288. },
  2289. "exclude-from-classmap": [
  2290. "/Tests/"
  2291. ]
  2292. },
  2293. "notification-url": "https://packagist.org/downloads/",
  2294. "license": [
  2295. "MIT"
  2296. ],
  2297. "authors": [
  2298. {
  2299. "name": "Nelmio",
  2300. "homepage": "http://nelm.io"
  2301. },
  2302. {
  2303. "name": "Symfony Community",
  2304. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  2305. }
  2306. ],
  2307. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  2308. "keywords": [
  2309. "api",
  2310. "cors",
  2311. "crossdomain"
  2312. ],
  2313. "time": "2019-02-27T13:13:15+00:00"
  2314. },
  2315. {
  2316. "name": "nelmio/security-bundle",
  2317. "version": "2.7.0",
  2318. "source": {
  2319. "type": "git",
  2320. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  2321. "reference": "ce63c12665440b538dc743dfd9afad3dadf7d12c"
  2322. },
  2323. "dist": {
  2324. "type": "zip",
  2325. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/ce63c12665440b538dc743dfd9afad3dadf7d12c",
  2326. "reference": "ce63c12665440b538dc743dfd9afad3dadf7d12c",
  2327. "shasum": ""
  2328. },
  2329. "require": {
  2330. "paragonie/random_compat": "~1.0|~2.0|9.99.99",
  2331. "symfony/framework-bundle": "~2.3|~3.0|~4.0",
  2332. "symfony/security": "~2.3|~3.0|~4.0",
  2333. "ua-parser/uap-php": "^3.4.4"
  2334. },
  2335. "require-dev": {
  2336. "doctrine/cache": "^1.0",
  2337. "psr/cache": "^1.0",
  2338. "symfony/phpunit-bridge": "^3.4.24|~4.0",
  2339. "symfony/yaml": "~2.3|~3.0|~4.0",
  2340. "twig/twig": "^1.24"
  2341. },
  2342. "suggest": {
  2343. "ua-parser/uap-php": "To allow adapt CSP directives given the user-agent"
  2344. },
  2345. "type": "symfony-bundle",
  2346. "extra": {
  2347. "branch-alias": {
  2348. "dev-master": "2.6.x-dev"
  2349. }
  2350. },
  2351. "autoload": {
  2352. "psr-4": {
  2353. "Nelmio\\SecurityBundle\\": ""
  2354. }
  2355. },
  2356. "notification-url": "https://packagist.org/downloads/",
  2357. "license": [
  2358. "MIT"
  2359. ],
  2360. "authors": [
  2361. {
  2362. "name": "Nelmio",
  2363. "homepage": "http://nelm.io"
  2364. },
  2365. {
  2366. "name": "Symfony Community",
  2367. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  2368. }
  2369. ],
  2370. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  2371. "keywords": [
  2372. "security"
  2373. ],
  2374. "time": "2019-04-03T13:44:45+00:00"
  2375. },
  2376. {
  2377. "name": "pagerfanta/pagerfanta",
  2378. "version": "v2.1.2",
  2379. "source": {
  2380. "type": "git",
  2381. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2382. "reference": "45a85ad426316ae37f2d007022e5b4c95bc3aef4"
  2383. },
  2384. "dist": {
  2385. "type": "zip",
  2386. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/45a85ad426316ae37f2d007022e5b4c95bc3aef4",
  2387. "reference": "45a85ad426316ae37f2d007022e5b4c95bc3aef4",
  2388. "shasum": ""
  2389. },
  2390. "require": {
  2391. "php": "^7.0"
  2392. },
  2393. "require-dev": {
  2394. "doctrine/orm": "~2.3",
  2395. "doctrine/phpcr-odm": "1.*",
  2396. "jackalope/jackalope-doctrine-dbal": "1.*",
  2397. "jmikola/geojson": "~1.0",
  2398. "mandango/mandango": "~1.0@dev",
  2399. "mandango/mondator": "~1.0@dev",
  2400. "phpunit/phpunit": "^6.5",
  2401. "propel/propel": "~2.0@dev",
  2402. "propel/propel1": "~1.6",
  2403. "ruflin/elastica": "~1.3",
  2404. "solarium/solarium": "~3.1"
  2405. },
  2406. "suggest": {
  2407. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2408. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2409. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2410. "mandango/mandango": "To use the MandangoAdapter.",
  2411. "propel/propel": "To use the Propel2Adapter",
  2412. "propel/propel1": "To use the PropelAdapter",
  2413. "solarium/solarium": "To use the SolariumAdapter."
  2414. },
  2415. "type": "library",
  2416. "extra": {
  2417. "branch-alias": {
  2418. "dev-master": "1.0.x-dev"
  2419. }
  2420. },
  2421. "autoload": {
  2422. "psr-4": {
  2423. "Pagerfanta\\": "src/Pagerfanta/"
  2424. }
  2425. },
  2426. "notification-url": "https://packagist.org/downloads/",
  2427. "license": [
  2428. "MIT"
  2429. ],
  2430. "authors": [
  2431. {
  2432. "name": "Pablo Díez",
  2433. "email": "pablodip@gmail.com"
  2434. }
  2435. ],
  2436. "description": "Pagination for PHP",
  2437. "keywords": [
  2438. "page",
  2439. "pagination",
  2440. "paginator",
  2441. "paging"
  2442. ],
  2443. "time": "2019-04-02T08:50:39+00:00"
  2444. },
  2445. {
  2446. "name": "paragonie/random_compat",
  2447. "version": "v2.0.18",
  2448. "source": {
  2449. "type": "git",
  2450. "url": "https://github.com/paragonie/random_compat.git",
  2451. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  2452. },
  2453. "dist": {
  2454. "type": "zip",
  2455. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2456. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2457. "shasum": ""
  2458. },
  2459. "require": {
  2460. "php": ">=5.2.0"
  2461. },
  2462. "require-dev": {
  2463. "phpunit/phpunit": "4.*|5.*"
  2464. },
  2465. "suggest": {
  2466. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2467. },
  2468. "type": "library",
  2469. "autoload": {
  2470. "files": [
  2471. "lib/random.php"
  2472. ]
  2473. },
  2474. "notification-url": "https://packagist.org/downloads/",
  2475. "license": [
  2476. "MIT"
  2477. ],
  2478. "authors": [
  2479. {
  2480. "name": "Paragon Initiative Enterprises",
  2481. "email": "security@paragonie.com",
  2482. "homepage": "https://paragonie.com"
  2483. }
  2484. ],
  2485. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2486. "keywords": [
  2487. "csprng",
  2488. "polyfill",
  2489. "pseudorandom",
  2490. "random"
  2491. ],
  2492. "time": "2019-01-03T20:59:08+00:00"
  2493. },
  2494. {
  2495. "name": "php-http/client-common",
  2496. "version": "1.9.1",
  2497. "source": {
  2498. "type": "git",
  2499. "url": "https://github.com/php-http/client-common.git",
  2500. "reference": "0e156a12cc3e46f590c73bf57592a2252fc3dc48"
  2501. },
  2502. "dist": {
  2503. "type": "zip",
  2504. "url": "https://api.github.com/repos/php-http/client-common/zipball/0e156a12cc3e46f590c73bf57592a2252fc3dc48",
  2505. "reference": "0e156a12cc3e46f590c73bf57592a2252fc3dc48",
  2506. "shasum": ""
  2507. },
  2508. "require": {
  2509. "php": "^5.4 || ^7.0",
  2510. "php-http/httplug": "^1.1",
  2511. "php-http/message": "^1.6",
  2512. "php-http/message-factory": "^1.0",
  2513. "symfony/options-resolver": "^2.6 || ^3.0 || ^4.0"
  2514. },
  2515. "require-dev": {
  2516. "guzzlehttp/psr7": "^1.4",
  2517. "phpspec/phpspec": "^2.5 || ^3.4 || ^4.2"
  2518. },
  2519. "suggest": {
  2520. "php-http/cache-plugin": "PSR-6 Cache plugin",
  2521. "php-http/logger-plugin": "PSR-3 Logger plugin",
  2522. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  2523. },
  2524. "type": "library",
  2525. "extra": {
  2526. "branch-alias": {
  2527. "dev-master": "1.9.x-dev"
  2528. }
  2529. },
  2530. "autoload": {
  2531. "psr-4": {
  2532. "Http\\Client\\Common\\": "src/"
  2533. }
  2534. },
  2535. "notification-url": "https://packagist.org/downloads/",
  2536. "license": [
  2537. "MIT"
  2538. ],
  2539. "authors": [
  2540. {
  2541. "name": "Márk Sági-Kazár",
  2542. "email": "mark.sagikazar@gmail.com"
  2543. }
  2544. ],
  2545. "description": "Common HTTP Client implementations and tools for HTTPlug",
  2546. "homepage": "http://httplug.io",
  2547. "keywords": [
  2548. "client",
  2549. "common",
  2550. "http",
  2551. "httplug"
  2552. ],
  2553. "time": "2019-02-02T07:03:15+00:00"
  2554. },
  2555. {
  2556. "name": "php-http/discovery",
  2557. "version": "1.6.1",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://github.com/php-http/discovery.git",
  2561. "reference": "684855f2c2e9d0a61868b8f8d6bd0295c8a4b651"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://api.github.com/repos/php-http/discovery/zipball/684855f2c2e9d0a61868b8f8d6bd0295c8a4b651",
  2566. "reference": "684855f2c2e9d0a61868b8f8d6bd0295c8a4b651",
  2567. "shasum": ""
  2568. },
  2569. "require": {
  2570. "php": "^5.5 || ^7.0"
  2571. },
  2572. "conflict": {
  2573. "nyholm/psr7": "<1.0"
  2574. },
  2575. "require-dev": {
  2576. "php-http/httplug": "^1.0 || ^2.0",
  2577. "php-http/message-factory": "^1.0",
  2578. "phpspec/phpspec": "^2.4",
  2579. "puli/composer-plugin": "1.0.0-beta10"
  2580. },
  2581. "suggest": {
  2582. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  2583. "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."
  2584. },
  2585. "type": "library",
  2586. "extra": {
  2587. "branch-alias": {
  2588. "dev-master": "1.5-dev"
  2589. }
  2590. },
  2591. "autoload": {
  2592. "psr-4": {
  2593. "Http\\Discovery\\": "src/"
  2594. }
  2595. },
  2596. "notification-url": "https://packagist.org/downloads/",
  2597. "license": [
  2598. "MIT"
  2599. ],
  2600. "authors": [
  2601. {
  2602. "name": "Márk Sági-Kazár",
  2603. "email": "mark.sagikazar@gmail.com"
  2604. }
  2605. ],
  2606. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  2607. "homepage": "http://php-http.org",
  2608. "keywords": [
  2609. "adapter",
  2610. "client",
  2611. "discovery",
  2612. "factory",
  2613. "http",
  2614. "message",
  2615. "psr7"
  2616. ],
  2617. "time": "2019-02-23T07:42:53+00:00"
  2618. },
  2619. {
  2620. "name": "php-http/guzzle6-adapter",
  2621. "version": "v1.1.1",
  2622. "source": {
  2623. "type": "git",
  2624. "url": "https://github.com/php-http/guzzle6-adapter.git",
  2625. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab"
  2626. },
  2627. "dist": {
  2628. "type": "zip",
  2629. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/a56941f9dc6110409cfcddc91546ee97039277ab",
  2630. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab",
  2631. "shasum": ""
  2632. },
  2633. "require": {
  2634. "guzzlehttp/guzzle": "^6.0",
  2635. "php": ">=5.5.0",
  2636. "php-http/httplug": "^1.0"
  2637. },
  2638. "provide": {
  2639. "php-http/async-client-implementation": "1.0",
  2640. "php-http/client-implementation": "1.0"
  2641. },
  2642. "require-dev": {
  2643. "ext-curl": "*",
  2644. "php-http/adapter-integration-tests": "^0.4"
  2645. },
  2646. "type": "library",
  2647. "extra": {
  2648. "branch-alias": {
  2649. "dev-master": "1.2-dev"
  2650. }
  2651. },
  2652. "autoload": {
  2653. "psr-4": {
  2654. "Http\\Adapter\\Guzzle6\\": "src/"
  2655. }
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Márk Sági-Kazár",
  2664. "email": "mark.sagikazar@gmail.com"
  2665. },
  2666. {
  2667. "name": "David de Boer",
  2668. "email": "david@ddeboer.nl"
  2669. }
  2670. ],
  2671. "description": "Guzzle 6 HTTP Adapter",
  2672. "homepage": "http://httplug.io",
  2673. "keywords": [
  2674. "Guzzle",
  2675. "http"
  2676. ],
  2677. "time": "2016-05-10T06:13:32+00:00"
  2678. },
  2679. {
  2680. "name": "php-http/httplug",
  2681. "version": "v1.1.0",
  2682. "source": {
  2683. "type": "git",
  2684. "url": "https://github.com/php-http/httplug.git",
  2685. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018"
  2686. },
  2687. "dist": {
  2688. "type": "zip",
  2689. "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  2690. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  2691. "shasum": ""
  2692. },
  2693. "require": {
  2694. "php": ">=5.4",
  2695. "php-http/promise": "^1.0",
  2696. "psr/http-message": "^1.0"
  2697. },
  2698. "require-dev": {
  2699. "henrikbjorn/phpspec-code-coverage": "^1.0",
  2700. "phpspec/phpspec": "^2.4"
  2701. },
  2702. "type": "library",
  2703. "extra": {
  2704. "branch-alias": {
  2705. "dev-master": "1.1-dev"
  2706. }
  2707. },
  2708. "autoload": {
  2709. "psr-4": {
  2710. "Http\\Client\\": "src/"
  2711. }
  2712. },
  2713. "notification-url": "https://packagist.org/downloads/",
  2714. "license": [
  2715. "MIT"
  2716. ],
  2717. "authors": [
  2718. {
  2719. "name": "Eric GELOEN",
  2720. "email": "geloen.eric@gmail.com"
  2721. },
  2722. {
  2723. "name": "Márk Sági-Kazár",
  2724. "email": "mark.sagikazar@gmail.com"
  2725. }
  2726. ],
  2727. "description": "HTTPlug, the HTTP client abstraction for PHP",
  2728. "homepage": "http://httplug.io",
  2729. "keywords": [
  2730. "client",
  2731. "http"
  2732. ],
  2733. "time": "2016-08-31T08:30:17+00:00"
  2734. },
  2735. {
  2736. "name": "php-http/httplug-bundle",
  2737. "version": "1.15.0",
  2738. "source": {
  2739. "type": "git",
  2740. "url": "https://github.com/php-http/HttplugBundle.git",
  2741. "reference": "8bcd1b180a3033631b7f06bff1aa27644fe0c2b7"
  2742. },
  2743. "dist": {
  2744. "type": "zip",
  2745. "url": "https://api.github.com/repos/php-http/HttplugBundle/zipball/8bcd1b180a3033631b7f06bff1aa27644fe0c2b7",
  2746. "reference": "8bcd1b180a3033631b7f06bff1aa27644fe0c2b7",
  2747. "shasum": ""
  2748. },
  2749. "require": {
  2750. "php": "^5.5 || ^7.0",
  2751. "php-http/client-common": "^1.9 || ^2.0",
  2752. "php-http/client-implementation": "^1.0",
  2753. "php-http/discovery": "^1.0",
  2754. "php-http/httplug": "^1.0 || ^2.0",
  2755. "php-http/logger-plugin": "^1.1",
  2756. "php-http/message": "^1.4",
  2757. "php-http/message-factory": "^1.0.2",
  2758. "php-http/stopwatch-plugin": "^1.2",
  2759. "psr/http-message": "^1.0",
  2760. "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",
  2761. "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",
  2762. "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",
  2763. "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",
  2764. "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"
  2765. },
  2766. "conflict": {
  2767. "php-http/guzzle6-adapter": "<1.1"
  2768. },
  2769. "require-dev": {
  2770. "guzzlehttp/psr7": "^1.0",
  2771. "matthiasnoback/symfony-dependency-injection-test": "^1.1 || ^2.3",
  2772. "nyholm/nsa": "^1.1",
  2773. "php-http/cache-plugin": "^1.6",
  2774. "php-http/guzzle6-adapter": "^1.1.1 || ^2.0.1",
  2775. "php-http/mock-client": "^1.2",
  2776. "php-http/promise": "^1.0",
  2777. "polishsymfonycommunity/symfony-mocker-container": "^1.0",
  2778. "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",
  2779. "symfony/cache": "^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  2780. "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",
  2781. "symfony/framework-bundle": "^2.8.1 || ^3.0.1 || ^4.0",
  2782. "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",
  2783. "symfony/phpunit-bridge": "^3.4 || ^4.2",
  2784. "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",
  2785. "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",
  2786. "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",
  2787. "twig/twig": "^1.36 || ^2.6"
  2788. },
  2789. "suggest": {
  2790. "php-http/cache-plugin": "To configure clients that cache responses",
  2791. "php-http/mock-client": "Add this to your require-dev section to mock HTTP responses easily",
  2792. "twig/twig": "Add this to your require-dev section when using the WebProfilerBundle"
  2793. },
  2794. "type": "symfony-bundle",
  2795. "extra": {
  2796. "branch-alias": {
  2797. "dev-master": "1.x-dev"
  2798. }
  2799. },
  2800. "autoload": {
  2801. "psr-4": {
  2802. "Http\\HttplugBundle\\": "src/"
  2803. },
  2804. "exclude-from-classmap": [
  2805. "/Tests/Resources/MyPsr18TestClient.php"
  2806. ]
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "authors": [
  2813. {
  2814. "name": "David Buchmann",
  2815. "email": "mail@davidbu.ch"
  2816. },
  2817. {
  2818. "name": "Tobias Nyholm",
  2819. "email": "tobias.nyholm@gmail.com"
  2820. }
  2821. ],
  2822. "description": "Symfony integration for HTTPlug",
  2823. "homepage": "http://httplug.io",
  2824. "keywords": [
  2825. "adapter",
  2826. "bundle",
  2827. "discovery",
  2828. "factory",
  2829. "http",
  2830. "httplug",
  2831. "message",
  2832. "php-http"
  2833. ],
  2834. "time": "2019-03-29T17:15:18+00:00"
  2835. },
  2836. {
  2837. "name": "php-http/logger-plugin",
  2838. "version": "1.1.0",
  2839. "source": {
  2840. "type": "git",
  2841. "url": "https://github.com/php-http/logger-plugin.git",
  2842. "reference": "c1c6e90717ce350319b7b8bc489f1db35bb523fd"
  2843. },
  2844. "dist": {
  2845. "type": "zip",
  2846. "url": "https://api.github.com/repos/php-http/logger-plugin/zipball/c1c6e90717ce350319b7b8bc489f1db35bb523fd",
  2847. "reference": "c1c6e90717ce350319b7b8bc489f1db35bb523fd",
  2848. "shasum": ""
  2849. },
  2850. "require": {
  2851. "php": "^5.4 || ^7.0",
  2852. "php-http/client-common": "^1.9 || ^2.0",
  2853. "php-http/message": "^1.0",
  2854. "psr/log": "^1.0"
  2855. },
  2856. "require-dev": {
  2857. "henrikbjorn/phpspec-code-coverage": "^1.0",
  2858. "phpspec/phpspec": "^2.5"
  2859. },
  2860. "type": "library",
  2861. "extra": {
  2862. "branch-alias": {
  2863. "dev-master": "1.1-dev"
  2864. }
  2865. },
  2866. "autoload": {
  2867. "psr-4": {
  2868. "Http\\Client\\Common\\Plugin\\": "src/"
  2869. }
  2870. },
  2871. "notification-url": "https://packagist.org/downloads/",
  2872. "license": [
  2873. "MIT"
  2874. ],
  2875. "authors": [
  2876. {
  2877. "name": "Márk Sági-Kazár",
  2878. "email": "mark.sagikazar@gmail.com"
  2879. }
  2880. ],
  2881. "description": "PSR-3 Logger plugin for HTTPlug",
  2882. "homepage": "http://httplug.io",
  2883. "keywords": [
  2884. "http",
  2885. "httplug",
  2886. "logger",
  2887. "plugin"
  2888. ],
  2889. "time": "2019-01-30T11:48:21+00:00"
  2890. },
  2891. {
  2892. "name": "php-http/message",
  2893. "version": "1.7.2",
  2894. "source": {
  2895. "type": "git",
  2896. "url": "https://github.com/php-http/message.git",
  2897. "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1"
  2898. },
  2899. "dist": {
  2900. "type": "zip",
  2901. "url": "https://api.github.com/repos/php-http/message/zipball/b159ffe570dffd335e22ef0b91a946eacb182fa1",
  2902. "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1",
  2903. "shasum": ""
  2904. },
  2905. "require": {
  2906. "clue/stream-filter": "^1.4",
  2907. "php": "^5.4 || ^7.0",
  2908. "php-http/message-factory": "^1.0.2",
  2909. "psr/http-message": "^1.0"
  2910. },
  2911. "provide": {
  2912. "php-http/message-factory-implementation": "1.0"
  2913. },
  2914. "require-dev": {
  2915. "akeneo/phpspec-skip-example-extension": "^1.0",
  2916. "coduo/phpspec-data-provider-extension": "^1.0",
  2917. "ext-zlib": "*",
  2918. "guzzlehttp/psr7": "^1.0",
  2919. "henrikbjorn/phpspec-code-coverage": "^1.0",
  2920. "phpspec/phpspec": "^2.4",
  2921. "slim/slim": "^3.0",
  2922. "zendframework/zend-diactoros": "^1.0"
  2923. },
  2924. "suggest": {
  2925. "ext-zlib": "Used with compressor/decompressor streams",
  2926. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  2927. "slim/slim": "Used with Slim Framework PSR-7 implementation",
  2928. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  2929. },
  2930. "type": "library",
  2931. "extra": {
  2932. "branch-alias": {
  2933. "dev-master": "1.6-dev"
  2934. }
  2935. },
  2936. "autoload": {
  2937. "psr-4": {
  2938. "Http\\Message\\": "src/"
  2939. },
  2940. "files": [
  2941. "src/filters.php"
  2942. ]
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "MIT"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "Márk Sági-Kazár",
  2951. "email": "mark.sagikazar@gmail.com"
  2952. }
  2953. ],
  2954. "description": "HTTP Message related tools",
  2955. "homepage": "http://php-http.org",
  2956. "keywords": [
  2957. "http",
  2958. "message",
  2959. "psr-7"
  2960. ],
  2961. "time": "2018-11-01T09:32:41+00:00"
  2962. },
  2963. {
  2964. "name": "php-http/message-factory",
  2965. "version": "v1.0.2",
  2966. "source": {
  2967. "type": "git",
  2968. "url": "https://github.com/php-http/message-factory.git",
  2969. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  2970. },
  2971. "dist": {
  2972. "type": "zip",
  2973. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  2974. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  2975. "shasum": ""
  2976. },
  2977. "require": {
  2978. "php": ">=5.4",
  2979. "psr/http-message": "^1.0"
  2980. },
  2981. "type": "library",
  2982. "extra": {
  2983. "branch-alias": {
  2984. "dev-master": "1.0-dev"
  2985. }
  2986. },
  2987. "autoload": {
  2988. "psr-4": {
  2989. "Http\\Message\\": "src/"
  2990. }
  2991. },
  2992. "notification-url": "https://packagist.org/downloads/",
  2993. "license": [
  2994. "MIT"
  2995. ],
  2996. "authors": [
  2997. {
  2998. "name": "Márk Sági-Kazár",
  2999. "email": "mark.sagikazar@gmail.com"
  3000. }
  3001. ],
  3002. "description": "Factory interfaces for PSR-7 HTTP Message",
  3003. "homepage": "http://php-http.org",
  3004. "keywords": [
  3005. "factory",
  3006. "http",
  3007. "message",
  3008. "stream",
  3009. "uri"
  3010. ],
  3011. "time": "2015-12-19T14:08:53+00:00"
  3012. },
  3013. {
  3014. "name": "php-http/promise",
  3015. "version": "v1.0.0",
  3016. "source": {
  3017. "type": "git",
  3018. "url": "https://github.com/php-http/promise.git",
  3019. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980"
  3020. },
  3021. "dist": {
  3022. "type": "zip",
  3023. "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980",
  3024. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980",
  3025. "shasum": ""
  3026. },
  3027. "require-dev": {
  3028. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3029. "phpspec/phpspec": "^2.4"
  3030. },
  3031. "type": "library",
  3032. "extra": {
  3033. "branch-alias": {
  3034. "dev-master": "1.1-dev"
  3035. }
  3036. },
  3037. "autoload": {
  3038. "psr-4": {
  3039. "Http\\Promise\\": "src/"
  3040. }
  3041. },
  3042. "notification-url": "https://packagist.org/downloads/",
  3043. "license": [
  3044. "MIT"
  3045. ],
  3046. "authors": [
  3047. {
  3048. "name": "Márk Sági-Kazár",
  3049. "email": "mark.sagikazar@gmail.com"
  3050. },
  3051. {
  3052. "name": "Joel Wurtz",
  3053. "email": "joel.wurtz@gmail.com"
  3054. }
  3055. ],
  3056. "description": "Promise used for asynchronous HTTP requests",
  3057. "homepage": "http://httplug.io",
  3058. "keywords": [
  3059. "promise"
  3060. ],
  3061. "time": "2016-01-26T13:27:02+00:00"
  3062. },
  3063. {
  3064. "name": "php-http/stopwatch-plugin",
  3065. "version": "1.2.0",
  3066. "source": {
  3067. "type": "git",
  3068. "url": "https://github.com/php-http/stopwatch-plugin.git",
  3069. "reference": "520419dd18755a1e7b29077e677fbeb16b6629e7"
  3070. },
  3071. "dist": {
  3072. "type": "zip",
  3073. "url": "https://api.github.com/repos/php-http/stopwatch-plugin/zipball/520419dd18755a1e7b29077e677fbeb16b6629e7",
  3074. "reference": "520419dd18755a1e7b29077e677fbeb16b6629e7",
  3075. "shasum": ""
  3076. },
  3077. "require": {
  3078. "php": "^5.4 || ^7.0",
  3079. "php-http/client-common": "^1.9 || ^2.0",
  3080. "symfony/stopwatch": "^2.7 || ^3.0 || ^4.0"
  3081. },
  3082. "require-dev": {
  3083. "phpspec/phpspec": "^2.5 || ^3.0 || ^4.0"
  3084. },
  3085. "type": "library",
  3086. "extra": {
  3087. "branch-alias": {
  3088. "dev-master": "1.2-dev"
  3089. }
  3090. },
  3091. "autoload": {
  3092. "psr-4": {
  3093. "Http\\Client\\Common\\Plugin\\": "src/"
  3094. }
  3095. },
  3096. "notification-url": "https://packagist.org/downloads/",
  3097. "license": [
  3098. "MIT"
  3099. ],
  3100. "authors": [
  3101. {
  3102. "name": "Márk Sági-Kazár",
  3103. "email": "mark.sagikazar@gmail.com"
  3104. }
  3105. ],
  3106. "description": "Symfony Stopwatch plugin for HTTPlug",
  3107. "homepage": "http://httplug.io",
  3108. "keywords": [
  3109. "http",
  3110. "httplug",
  3111. "plugin",
  3112. "stopwatch"
  3113. ],
  3114. "time": "2019-01-30T12:01:37+00:00"
  3115. },
  3116. {
  3117. "name": "predis/predis",
  3118. "version": "v1.1.1",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/nrk/predis.git",
  3122. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  3127. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "php": ">=5.3.9"
  3132. },
  3133. "require-dev": {
  3134. "phpunit/phpunit": "~4.8"
  3135. },
  3136. "suggest": {
  3137. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3138. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3139. },
  3140. "type": "library",
  3141. "autoload": {
  3142. "psr-4": {
  3143. "Predis\\": "src/"
  3144. }
  3145. },
  3146. "notification-url": "https://packagist.org/downloads/",
  3147. "license": [
  3148. "MIT"
  3149. ],
  3150. "authors": [
  3151. {
  3152. "name": "Daniele Alessandri",
  3153. "email": "suppakilla@gmail.com",
  3154. "homepage": "http://clorophilla.net"
  3155. }
  3156. ],
  3157. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3158. "homepage": "http://github.com/nrk/predis",
  3159. "keywords": [
  3160. "nosql",
  3161. "predis",
  3162. "redis"
  3163. ],
  3164. "time": "2016-06-16T16:22:20+00:00"
  3165. },
  3166. {
  3167. "name": "psr/cache",
  3168. "version": "1.0.1",
  3169. "source": {
  3170. "type": "git",
  3171. "url": "https://github.com/php-fig/cache.git",
  3172. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3173. },
  3174. "dist": {
  3175. "type": "zip",
  3176. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3177. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3178. "shasum": ""
  3179. },
  3180. "require": {
  3181. "php": ">=5.3.0"
  3182. },
  3183. "type": "library",
  3184. "extra": {
  3185. "branch-alias": {
  3186. "dev-master": "1.0.x-dev"
  3187. }
  3188. },
  3189. "autoload": {
  3190. "psr-4": {
  3191. "Psr\\Cache\\": "src/"
  3192. }
  3193. },
  3194. "notification-url": "https://packagist.org/downloads/",
  3195. "license": [
  3196. "MIT"
  3197. ],
  3198. "authors": [
  3199. {
  3200. "name": "PHP-FIG",
  3201. "homepage": "http://www.php-fig.org/"
  3202. }
  3203. ],
  3204. "description": "Common interface for caching libraries",
  3205. "keywords": [
  3206. "cache",
  3207. "psr",
  3208. "psr-6"
  3209. ],
  3210. "time": "2016-08-06T20:24:11+00:00"
  3211. },
  3212. {
  3213. "name": "psr/container",
  3214. "version": "1.0.0",
  3215. "source": {
  3216. "type": "git",
  3217. "url": "https://github.com/php-fig/container.git",
  3218. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3219. },
  3220. "dist": {
  3221. "type": "zip",
  3222. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3223. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3224. "shasum": ""
  3225. },
  3226. "require": {
  3227. "php": ">=5.3.0"
  3228. },
  3229. "type": "library",
  3230. "extra": {
  3231. "branch-alias": {
  3232. "dev-master": "1.0.x-dev"
  3233. }
  3234. },
  3235. "autoload": {
  3236. "psr-4": {
  3237. "Psr\\Container\\": "src/"
  3238. }
  3239. },
  3240. "notification-url": "https://packagist.org/downloads/",
  3241. "license": [
  3242. "MIT"
  3243. ],
  3244. "authors": [
  3245. {
  3246. "name": "PHP-FIG",
  3247. "homepage": "http://www.php-fig.org/"
  3248. }
  3249. ],
  3250. "description": "Common Container Interface (PHP FIG PSR-11)",
  3251. "homepage": "https://github.com/php-fig/container",
  3252. "keywords": [
  3253. "PSR-11",
  3254. "container",
  3255. "container-interface",
  3256. "container-interop",
  3257. "psr"
  3258. ],
  3259. "time": "2017-02-14T16:28:37+00:00"
  3260. },
  3261. {
  3262. "name": "psr/http-message",
  3263. "version": "1.0.1",
  3264. "source": {
  3265. "type": "git",
  3266. "url": "https://github.com/php-fig/http-message.git",
  3267. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3268. },
  3269. "dist": {
  3270. "type": "zip",
  3271. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3272. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3273. "shasum": ""
  3274. },
  3275. "require": {
  3276. "php": ">=5.3.0"
  3277. },
  3278. "type": "library",
  3279. "extra": {
  3280. "branch-alias": {
  3281. "dev-master": "1.0.x-dev"
  3282. }
  3283. },
  3284. "autoload": {
  3285. "psr-4": {
  3286. "Psr\\Http\\Message\\": "src/"
  3287. }
  3288. },
  3289. "notification-url": "https://packagist.org/downloads/",
  3290. "license": [
  3291. "MIT"
  3292. ],
  3293. "authors": [
  3294. {
  3295. "name": "PHP-FIG",
  3296. "homepage": "http://www.php-fig.org/"
  3297. }
  3298. ],
  3299. "description": "Common interface for HTTP messages",
  3300. "homepage": "https://github.com/php-fig/http-message",
  3301. "keywords": [
  3302. "http",
  3303. "http-message",
  3304. "psr",
  3305. "psr-7",
  3306. "request",
  3307. "response"
  3308. ],
  3309. "time": "2016-08-06T14:39:51+00:00"
  3310. },
  3311. {
  3312. "name": "psr/link",
  3313. "version": "1.0.0",
  3314. "source": {
  3315. "type": "git",
  3316. "url": "https://github.com/php-fig/link.git",
  3317. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  3318. },
  3319. "dist": {
  3320. "type": "zip",
  3321. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  3322. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  3323. "shasum": ""
  3324. },
  3325. "require": {
  3326. "php": ">=5.3.0"
  3327. },
  3328. "type": "library",
  3329. "extra": {
  3330. "branch-alias": {
  3331. "dev-master": "1.0.x-dev"
  3332. }
  3333. },
  3334. "autoload": {
  3335. "psr-4": {
  3336. "Psr\\Link\\": "src/"
  3337. }
  3338. },
  3339. "notification-url": "https://packagist.org/downloads/",
  3340. "license": [
  3341. "MIT"
  3342. ],
  3343. "authors": [
  3344. {
  3345. "name": "PHP-FIG",
  3346. "homepage": "http://www.php-fig.org/"
  3347. }
  3348. ],
  3349. "description": "Common interfaces for HTTP links",
  3350. "keywords": [
  3351. "http",
  3352. "http-link",
  3353. "link",
  3354. "psr",
  3355. "psr-13",
  3356. "rest"
  3357. ],
  3358. "time": "2016-10-28T16:06:13+00:00"
  3359. },
  3360. {
  3361. "name": "psr/log",
  3362. "version": "1.1.0",
  3363. "source": {
  3364. "type": "git",
  3365. "url": "https://github.com/php-fig/log.git",
  3366. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  3367. },
  3368. "dist": {
  3369. "type": "zip",
  3370. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3371. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3372. "shasum": ""
  3373. },
  3374. "require": {
  3375. "php": ">=5.3.0"
  3376. },
  3377. "type": "library",
  3378. "extra": {
  3379. "branch-alias": {
  3380. "dev-master": "1.0.x-dev"
  3381. }
  3382. },
  3383. "autoload": {
  3384. "psr-4": {
  3385. "Psr\\Log\\": "Psr/Log/"
  3386. }
  3387. },
  3388. "notification-url": "https://packagist.org/downloads/",
  3389. "license": [
  3390. "MIT"
  3391. ],
  3392. "authors": [
  3393. {
  3394. "name": "PHP-FIG",
  3395. "homepage": "http://www.php-fig.org/"
  3396. }
  3397. ],
  3398. "description": "Common interface for logging libraries",
  3399. "homepage": "https://github.com/php-fig/log",
  3400. "keywords": [
  3401. "log",
  3402. "psr",
  3403. "psr-3"
  3404. ],
  3405. "time": "2018-11-20T15:27:04+00:00"
  3406. },
  3407. {
  3408. "name": "psr/simple-cache",
  3409. "version": "1.0.1",
  3410. "source": {
  3411. "type": "git",
  3412. "url": "https://github.com/php-fig/simple-cache.git",
  3413. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3414. },
  3415. "dist": {
  3416. "type": "zip",
  3417. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3418. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3419. "shasum": ""
  3420. },
  3421. "require": {
  3422. "php": ">=5.3.0"
  3423. },
  3424. "type": "library",
  3425. "extra": {
  3426. "branch-alias": {
  3427. "dev-master": "1.0.x-dev"
  3428. }
  3429. },
  3430. "autoload": {
  3431. "psr-4": {
  3432. "Psr\\SimpleCache\\": "src/"
  3433. }
  3434. },
  3435. "notification-url": "https://packagist.org/downloads/",
  3436. "license": [
  3437. "MIT"
  3438. ],
  3439. "authors": [
  3440. {
  3441. "name": "PHP-FIG",
  3442. "homepage": "http://www.php-fig.org/"
  3443. }
  3444. ],
  3445. "description": "Common interfaces for simple caching",
  3446. "keywords": [
  3447. "cache",
  3448. "caching",
  3449. "psr",
  3450. "psr-16",
  3451. "simple-cache"
  3452. ],
  3453. "time": "2017-10-23T01:57:42+00:00"
  3454. },
  3455. {
  3456. "name": "ralouphie/getallheaders",
  3457. "version": "2.0.5",
  3458. "source": {
  3459. "type": "git",
  3460. "url": "https://github.com/ralouphie/getallheaders.git",
  3461. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  3462. },
  3463. "dist": {
  3464. "type": "zip",
  3465. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3466. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3467. "shasum": ""
  3468. },
  3469. "require": {
  3470. "php": ">=5.3"
  3471. },
  3472. "require-dev": {
  3473. "phpunit/phpunit": "~3.7.0",
  3474. "satooshi/php-coveralls": ">=1.0"
  3475. },
  3476. "type": "library",
  3477. "autoload": {
  3478. "files": [
  3479. "src/getallheaders.php"
  3480. ]
  3481. },
  3482. "notification-url": "https://packagist.org/downloads/",
  3483. "license": [
  3484. "MIT"
  3485. ],
  3486. "authors": [
  3487. {
  3488. "name": "Ralph Khattar",
  3489. "email": "ralph.khattar@gmail.com"
  3490. }
  3491. ],
  3492. "description": "A polyfill for getallheaders.",
  3493. "time": "2016-02-11T07:05:27+00:00"
  3494. },
  3495. {
  3496. "name": "seld/jsonlint",
  3497. "version": "1.7.1",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/Seldaek/jsonlint.git",
  3501. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  3506. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  3507. "shasum": ""
  3508. },
  3509. "require": {
  3510. "php": "^5.3 || ^7.0"
  3511. },
  3512. "require-dev": {
  3513. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3514. },
  3515. "bin": [
  3516. "bin/jsonlint"
  3517. ],
  3518. "type": "library",
  3519. "autoload": {
  3520. "psr-4": {
  3521. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  3522. }
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "Jordi Boggiano",
  3531. "email": "j.boggiano@seld.be",
  3532. "homepage": "http://seld.be"
  3533. }
  3534. ],
  3535. "description": "JSON Linter",
  3536. "keywords": [
  3537. "json",
  3538. "linter",
  3539. "parser",
  3540. "validator"
  3541. ],
  3542. "time": "2018-01-24T12:46:19+00:00"
  3543. },
  3544. {
  3545. "name": "seld/phar-utils",
  3546. "version": "1.0.1",
  3547. "source": {
  3548. "type": "git",
  3549. "url": "https://github.com/Seldaek/phar-utils.git",
  3550. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  3551. },
  3552. "dist": {
  3553. "type": "zip",
  3554. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  3555. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  3556. "shasum": ""
  3557. },
  3558. "require": {
  3559. "php": ">=5.3"
  3560. },
  3561. "type": "library",
  3562. "extra": {
  3563. "branch-alias": {
  3564. "dev-master": "1.x-dev"
  3565. }
  3566. },
  3567. "autoload": {
  3568. "psr-4": {
  3569. "Seld\\PharUtils\\": "src/"
  3570. }
  3571. },
  3572. "notification-url": "https://packagist.org/downloads/",
  3573. "license": [
  3574. "MIT"
  3575. ],
  3576. "authors": [
  3577. {
  3578. "name": "Jordi Boggiano",
  3579. "email": "j.boggiano@seld.be"
  3580. }
  3581. ],
  3582. "description": "PHAR file format utilities, for when PHP phars you up",
  3583. "keywords": [
  3584. "phra"
  3585. ],
  3586. "time": "2015-10-13T18:44:15+00:00"
  3587. },
  3588. {
  3589. "name": "seld/signal-handler",
  3590. "version": "1.1.0",
  3591. "source": {
  3592. "type": "git",
  3593. "url": "https://github.com/Seldaek/signal-handler.git",
  3594. "reference": "86f791965478b33f76878139df78bc3f369f182c"
  3595. },
  3596. "dist": {
  3597. "type": "zip",
  3598. "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/86f791965478b33f76878139df78bc3f369f182c",
  3599. "reference": "86f791965478b33f76878139df78bc3f369f182c",
  3600. "shasum": ""
  3601. },
  3602. "require": {
  3603. "php": ">=5.4.0"
  3604. },
  3605. "require-dev": {
  3606. "phpunit/phpunit": "^4.8",
  3607. "psr/log": "^1.0"
  3608. },
  3609. "type": "library",
  3610. "autoload": {
  3611. "psr-4": {
  3612. "Seld\\Signal\\": "src/"
  3613. }
  3614. },
  3615. "notification-url": "https://packagist.org/downloads/",
  3616. "license": [
  3617. "MIT"
  3618. ],
  3619. "authors": [
  3620. {
  3621. "name": "Jordi Boggiano",
  3622. "email": "j.boggiano@seld.be",
  3623. "homepage": "http://seld.be"
  3624. }
  3625. ],
  3626. "description": "Simple unix signal handler that silently fails on windows for easy cross-platform development",
  3627. "keywords": [
  3628. "posix",
  3629. "sigint",
  3630. "signal",
  3631. "sigterm",
  3632. "unix"
  3633. ],
  3634. "time": "2016-09-14T09:32:56+00:00"
  3635. },
  3636. {
  3637. "name": "sensio/distribution-bundle",
  3638. "version": "v5.0.24",
  3639. "source": {
  3640. "type": "git",
  3641. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  3642. "reference": "59eac70f15f97ee945924948a6f5e2f6f86b7a4b"
  3643. },
  3644. "dist": {
  3645. "type": "zip",
  3646. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/59eac70f15f97ee945924948a6f5e2f6f86b7a4b",
  3647. "reference": "59eac70f15f97ee945924948a6f5e2f6f86b7a4b",
  3648. "shasum": ""
  3649. },
  3650. "require": {
  3651. "php": ">=5.3.9",
  3652. "sensiolabs/security-checker": "~5.0",
  3653. "symfony/class-loader": "~2.3|~3.0",
  3654. "symfony/config": "~2.3|~3.0",
  3655. "symfony/dependency-injection": "~2.3|~3.0",
  3656. "symfony/filesystem": "~2.3|~3.0",
  3657. "symfony/http-kernel": "~2.3|~3.0",
  3658. "symfony/process": "~2.3|~3.0"
  3659. },
  3660. "type": "symfony-bundle",
  3661. "extra": {
  3662. "branch-alias": {
  3663. "dev-master": "5.0.x-dev"
  3664. }
  3665. },
  3666. "autoload": {
  3667. "psr-4": {
  3668. "Sensio\\Bundle\\DistributionBundle\\": ""
  3669. }
  3670. },
  3671. "notification-url": "https://packagist.org/downloads/",
  3672. "license": [
  3673. "MIT"
  3674. ],
  3675. "authors": [
  3676. {
  3677. "name": "Fabien Potencier",
  3678. "email": "fabien@symfony.com"
  3679. }
  3680. ],
  3681. "description": "Base bundle for Symfony Distributions",
  3682. "keywords": [
  3683. "configuration",
  3684. "distribution"
  3685. ],
  3686. "time": "2018-12-14T17:36:15+00:00"
  3687. },
  3688. {
  3689. "name": "sensio/framework-extra-bundle",
  3690. "version": "v5.2.4",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  3694. "reference": "1fdf591c4b388e62dbb2579de89c1560b33f865d"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/1fdf591c4b388e62dbb2579de89c1560b33f865d",
  3699. "reference": "1fdf591c4b388e62dbb2579de89c1560b33f865d",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "doctrine/common": "^2.2",
  3704. "symfony/config": "^3.3|^4.0",
  3705. "symfony/dependency-injection": "^3.3|^4.0",
  3706. "symfony/framework-bundle": "^3.4|^4.0",
  3707. "symfony/http-kernel": "^3.3|^4.0"
  3708. },
  3709. "require-dev": {
  3710. "doctrine/doctrine-bundle": "^1.6",
  3711. "doctrine/orm": "^2.5",
  3712. "symfony/browser-kit": "^3.3|^4.0",
  3713. "symfony/dom-crawler": "^3.3|^4.0",
  3714. "symfony/expression-language": "^3.3|^4.0",
  3715. "symfony/finder": "^3.3|^4.0",
  3716. "symfony/monolog-bridge": "^3.0|^4.0",
  3717. "symfony/monolog-bundle": "^3.2",
  3718. "symfony/phpunit-bridge": "^3.4.19|^4.1.8",
  3719. "symfony/psr-http-message-bridge": "^0.3",
  3720. "symfony/security-bundle": "^3.3|^4.0",
  3721. "symfony/twig-bundle": "^3.3|^4.0",
  3722. "symfony/yaml": "^3.3|^4.0",
  3723. "twig/twig": "~1.12|~2.0",
  3724. "zendframework/zend-diactoros": "^1.3"
  3725. },
  3726. "suggest": {
  3727. "symfony/expression-language": "",
  3728. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  3729. "symfony/security-bundle": ""
  3730. },
  3731. "type": "symfony-bundle",
  3732. "extra": {
  3733. "branch-alias": {
  3734. "dev-master": "5.2.x-dev"
  3735. }
  3736. },
  3737. "autoload": {
  3738. "psr-4": {
  3739. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  3740. }
  3741. },
  3742. "notification-url": "https://packagist.org/downloads/",
  3743. "license": [
  3744. "MIT"
  3745. ],
  3746. "authors": [
  3747. {
  3748. "name": "Fabien Potencier",
  3749. "email": "fabien@symfony.com"
  3750. }
  3751. ],
  3752. "description": "This bundle provides a way to configure your controllers with annotations",
  3753. "keywords": [
  3754. "annotations",
  3755. "controllers"
  3756. ],
  3757. "time": "2018-12-11T16:59:23+00:00"
  3758. },
  3759. {
  3760. "name": "sensio/generator-bundle",
  3761. "version": "v3.1.7",
  3762. "source": {
  3763. "type": "git",
  3764. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  3765. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65"
  3766. },
  3767. "dist": {
  3768. "type": "zip",
  3769. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  3770. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  3771. "shasum": ""
  3772. },
  3773. "require": {
  3774. "symfony/console": "~2.7|~3.0",
  3775. "symfony/framework-bundle": "~2.7|~3.0",
  3776. "symfony/process": "~2.7|~3.0",
  3777. "symfony/yaml": "~2.7|~3.0",
  3778. "twig/twig": "^1.28.2|^2.0"
  3779. },
  3780. "require-dev": {
  3781. "doctrine/orm": "~2.4",
  3782. "symfony/doctrine-bridge": "~2.7|~3.0",
  3783. "symfony/filesystem": "~2.7|~3.0",
  3784. "symfony/phpunit-bridge": "^3.3"
  3785. },
  3786. "type": "symfony-bundle",
  3787. "extra": {
  3788. "branch-alias": {
  3789. "dev-master": "3.1.x-dev"
  3790. }
  3791. },
  3792. "autoload": {
  3793. "psr-4": {
  3794. "Sensio\\Bundle\\GeneratorBundle\\": ""
  3795. },
  3796. "exclude-from-classmap": [
  3797. "/Tests/"
  3798. ]
  3799. },
  3800. "notification-url": "https://packagist.org/downloads/",
  3801. "license": [
  3802. "MIT"
  3803. ],
  3804. "authors": [
  3805. {
  3806. "name": "Fabien Potencier",
  3807. "email": "fabien@symfony.com"
  3808. }
  3809. ],
  3810. "description": "This bundle generates code for you",
  3811. "time": "2017-12-07T15:36:41+00:00"
  3812. },
  3813. {
  3814. "name": "sensiolabs/security-checker",
  3815. "version": "v5.0.3",
  3816. "source": {
  3817. "type": "git",
  3818. "url": "https://github.com/sensiolabs/security-checker.git",
  3819. "reference": "46be3f58adac13084497961e10eed9a7fb4d44d1"
  3820. },
  3821. "dist": {
  3822. "type": "zip",
  3823. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/46be3f58adac13084497961e10eed9a7fb4d44d1",
  3824. "reference": "46be3f58adac13084497961e10eed9a7fb4d44d1",
  3825. "shasum": ""
  3826. },
  3827. "require": {
  3828. "composer/ca-bundle": "^1.0",
  3829. "php": ">=5.5.9",
  3830. "symfony/console": "~2.7|~3.0|~4.0"
  3831. },
  3832. "bin": [
  3833. "security-checker"
  3834. ],
  3835. "type": "library",
  3836. "extra": {
  3837. "branch-alias": {
  3838. "dev-master": "5.0-dev"
  3839. }
  3840. },
  3841. "autoload": {
  3842. "psr-4": {
  3843. "SensioLabs\\Security\\": "SensioLabs/Security"
  3844. }
  3845. },
  3846. "notification-url": "https://packagist.org/downloads/",
  3847. "license": [
  3848. "MIT"
  3849. ],
  3850. "authors": [
  3851. {
  3852. "name": "Fabien Potencier",
  3853. "email": "fabien.potencier@gmail.com"
  3854. }
  3855. ],
  3856. "description": "A security checker for your composer.lock",
  3857. "time": "2018-12-19T17:14:59+00:00"
  3858. },
  3859. {
  3860. "name": "snc/redis-bundle",
  3861. "version": "2.1.9",
  3862. "source": {
  3863. "type": "git",
  3864. "url": "https://github.com/snc/SncRedisBundle.git",
  3865. "reference": "af3ac967b0351ff880f646486bff87247abb5286"
  3866. },
  3867. "dist": {
  3868. "type": "zip",
  3869. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/af3ac967b0351ff880f646486bff87247abb5286",
  3870. "reference": "af3ac967b0351ff880f646486bff87247abb5286",
  3871. "shasum": ""
  3872. },
  3873. "require": {
  3874. "php": ">=5.3.3",
  3875. "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0",
  3876. "symfony/yaml": "^2.7 || ^3.0 || ^4.0"
  3877. },
  3878. "require-dev": {
  3879. "doctrine/cache": "1.*",
  3880. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  3881. "predis/predis": "^1.0",
  3882. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  3883. "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0"
  3884. },
  3885. "suggest": {
  3886. "monolog/monolog": "If you want to use the monolog redis handler.",
  3887. "predis/predis": "If you want to use predis.",
  3888. "symfony/console": "If you want to use commands to interact with the redis database",
  3889. "symfony/proxy-manager-bridge": "If you want to lazy-load some services"
  3890. },
  3891. "type": "symfony-bundle",
  3892. "extra": {
  3893. "branch-alias": {
  3894. "dev-master": "2.x-dev"
  3895. }
  3896. },
  3897. "autoload": {
  3898. "psr-4": {
  3899. "Snc\\RedisBundle\\": ""
  3900. }
  3901. },
  3902. "notification-url": "https://packagist.org/downloads/",
  3903. "license": [
  3904. "MIT"
  3905. ],
  3906. "authors": [
  3907. {
  3908. "name": "Henrik Westphal",
  3909. "email": "henrik.westphal@gmail.com"
  3910. },
  3911. {
  3912. "name": "Community contributors",
  3913. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  3914. }
  3915. ],
  3916. "description": "A Redis bundle for Symfony",
  3917. "homepage": "https://github.com/snc/SncRedisBundle",
  3918. "keywords": [
  3919. "nosql",
  3920. "redis",
  3921. "symfony"
  3922. ],
  3923. "time": "2019-02-20T07:03:43+00:00"
  3924. },
  3925. {
  3926. "name": "swiftmailer/swiftmailer",
  3927. "version": "v6.2.0",
  3928. "source": {
  3929. "type": "git",
  3930. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3931. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707"
  3932. },
  3933. "dist": {
  3934. "type": "zip",
  3935. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  3936. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  3937. "shasum": ""
  3938. },
  3939. "require": {
  3940. "egulias/email-validator": "~2.0",
  3941. "php": ">=7.0.0",
  3942. "symfony/polyfill-iconv": "^1.0",
  3943. "symfony/polyfill-intl-idn": "^1.10",
  3944. "symfony/polyfill-mbstring": "^1.0"
  3945. },
  3946. "require-dev": {
  3947. "mockery/mockery": "~0.9.1",
  3948. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3949. },
  3950. "suggest": {
  3951. "ext-intl": "Needed to support internationalized email addresses",
  3952. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3953. },
  3954. "type": "library",
  3955. "extra": {
  3956. "branch-alias": {
  3957. "dev-master": "6.2-dev"
  3958. }
  3959. },
  3960. "autoload": {
  3961. "files": [
  3962. "lib/swift_required.php"
  3963. ]
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "authors": [
  3970. {
  3971. "name": "Chris Corbyn"
  3972. },
  3973. {
  3974. "name": "Fabien Potencier",
  3975. "email": "fabien@symfony.com"
  3976. }
  3977. ],
  3978. "description": "Swiftmailer, free feature-rich PHP mailer",
  3979. "homepage": "https://swiftmailer.symfony.com",
  3980. "keywords": [
  3981. "email",
  3982. "mail",
  3983. "mailer"
  3984. ],
  3985. "time": "2019-03-10T07:52:41+00:00"
  3986. },
  3987. {
  3988. "name": "symfony/monolog-bundle",
  3989. "version": "v3.3.1",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://github.com/symfony/monolog-bundle.git",
  3993. "reference": "572e143afc03419a75ab002c80a2fd99299195ff"
  3994. },
  3995. "dist": {
  3996. "type": "zip",
  3997. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/572e143afc03419a75ab002c80a2fd99299195ff",
  3998. "reference": "572e143afc03419a75ab002c80a2fd99299195ff",
  3999. "shasum": ""
  4000. },
  4001. "require": {
  4002. "monolog/monolog": "~1.22",
  4003. "php": ">=5.6",
  4004. "symfony/config": "~2.7|~3.3|~4.0",
  4005. "symfony/dependency-injection": "~2.7|~3.4.10|^4.0.10",
  4006. "symfony/http-kernel": "~2.7|~3.3|~4.0",
  4007. "symfony/monolog-bridge": "~2.7|~3.3|~4.0"
  4008. },
  4009. "require-dev": {
  4010. "symfony/console": "~2.7|~3.3|~4.0",
  4011. "symfony/phpunit-bridge": "^3.3|^4.0",
  4012. "symfony/yaml": "~2.7|~3.3|~4.0"
  4013. },
  4014. "type": "symfony-bundle",
  4015. "extra": {
  4016. "branch-alias": {
  4017. "dev-master": "3.x-dev"
  4018. }
  4019. },
  4020. "autoload": {
  4021. "psr-4": {
  4022. "Symfony\\Bundle\\MonologBundle\\": ""
  4023. },
  4024. "exclude-from-classmap": [
  4025. "/Tests/"
  4026. ]
  4027. },
  4028. "notification-url": "https://packagist.org/downloads/",
  4029. "license": [
  4030. "MIT"
  4031. ],
  4032. "authors": [
  4033. {
  4034. "name": "Symfony Community",
  4035. "homepage": "http://symfony.com/contributors"
  4036. },
  4037. {
  4038. "name": "Fabien Potencier",
  4039. "email": "fabien@symfony.com"
  4040. }
  4041. ],
  4042. "description": "Symfony MonologBundle",
  4043. "homepage": "http://symfony.com",
  4044. "keywords": [
  4045. "log",
  4046. "logging"
  4047. ],
  4048. "time": "2018-11-04T09:58:13+00:00"
  4049. },
  4050. {
  4051. "name": "symfony/polyfill-apcu",
  4052. "version": "v1.11.0",
  4053. "source": {
  4054. "type": "git",
  4055. "url": "https://github.com/symfony/polyfill-apcu.git",
  4056. "reference": "a502face1da6a53289480166f24de2c3c68e5c3c"
  4057. },
  4058. "dist": {
  4059. "type": "zip",
  4060. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/a502face1da6a53289480166f24de2c3c68e5c3c",
  4061. "reference": "a502face1da6a53289480166f24de2c3c68e5c3c",
  4062. "shasum": ""
  4063. },
  4064. "require": {
  4065. "php": ">=5.3.3"
  4066. },
  4067. "type": "library",
  4068. "extra": {
  4069. "branch-alias": {
  4070. "dev-master": "1.11-dev"
  4071. }
  4072. },
  4073. "autoload": {
  4074. "psr-4": {
  4075. "Symfony\\Polyfill\\Apcu\\": ""
  4076. },
  4077. "files": [
  4078. "bootstrap.php"
  4079. ]
  4080. },
  4081. "notification-url": "https://packagist.org/downloads/",
  4082. "license": [
  4083. "MIT"
  4084. ],
  4085. "authors": [
  4086. {
  4087. "name": "Nicolas Grekas",
  4088. "email": "p@tchwork.com"
  4089. },
  4090. {
  4091. "name": "Symfony Community",
  4092. "homepage": "https://symfony.com/contributors"
  4093. }
  4094. ],
  4095. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  4096. "homepage": "https://symfony.com",
  4097. "keywords": [
  4098. "apcu",
  4099. "compatibility",
  4100. "polyfill",
  4101. "portable",
  4102. "shim"
  4103. ],
  4104. "time": "2019-02-06T07:57:58+00:00"
  4105. },
  4106. {
  4107. "name": "symfony/polyfill-ctype",
  4108. "version": "v1.11.0",
  4109. "source": {
  4110. "type": "git",
  4111. "url": "https://github.com/symfony/polyfill-ctype.git",
  4112. "reference": "82ebae02209c21113908c229e9883c419720738a"
  4113. },
  4114. "dist": {
  4115. "type": "zip",
  4116. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  4117. "reference": "82ebae02209c21113908c229e9883c419720738a",
  4118. "shasum": ""
  4119. },
  4120. "require": {
  4121. "php": ">=5.3.3"
  4122. },
  4123. "suggest": {
  4124. "ext-ctype": "For best performance"
  4125. },
  4126. "type": "library",
  4127. "extra": {
  4128. "branch-alias": {
  4129. "dev-master": "1.11-dev"
  4130. }
  4131. },
  4132. "autoload": {
  4133. "psr-4": {
  4134. "Symfony\\Polyfill\\Ctype\\": ""
  4135. },
  4136. "files": [
  4137. "bootstrap.php"
  4138. ]
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "MIT"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "Symfony Community",
  4147. "homepage": "https://symfony.com/contributors"
  4148. },
  4149. {
  4150. "name": "Gert de Pagter",
  4151. "email": "backendtea@gmail.com"
  4152. }
  4153. ],
  4154. "description": "Symfony polyfill for ctype functions",
  4155. "homepage": "https://symfony.com",
  4156. "keywords": [
  4157. "compatibility",
  4158. "ctype",
  4159. "polyfill",
  4160. "portable"
  4161. ],
  4162. "time": "2019-02-06T07:57:58+00:00"
  4163. },
  4164. {
  4165. "name": "symfony/polyfill-iconv",
  4166. "version": "v1.11.0",
  4167. "source": {
  4168. "type": "git",
  4169. "url": "https://github.com/symfony/polyfill-iconv.git",
  4170. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  4171. },
  4172. "dist": {
  4173. "type": "zip",
  4174. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  4175. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  4176. "shasum": ""
  4177. },
  4178. "require": {
  4179. "php": ">=5.3.3"
  4180. },
  4181. "suggest": {
  4182. "ext-iconv": "For best performance"
  4183. },
  4184. "type": "library",
  4185. "extra": {
  4186. "branch-alias": {
  4187. "dev-master": "1.11-dev"
  4188. }
  4189. },
  4190. "autoload": {
  4191. "psr-4": {
  4192. "Symfony\\Polyfill\\Iconv\\": ""
  4193. },
  4194. "files": [
  4195. "bootstrap.php"
  4196. ]
  4197. },
  4198. "notification-url": "https://packagist.org/downloads/",
  4199. "license": [
  4200. "MIT"
  4201. ],
  4202. "authors": [
  4203. {
  4204. "name": "Nicolas Grekas",
  4205. "email": "p@tchwork.com"
  4206. },
  4207. {
  4208. "name": "Symfony Community",
  4209. "homepage": "https://symfony.com/contributors"
  4210. }
  4211. ],
  4212. "description": "Symfony polyfill for the Iconv extension",
  4213. "homepage": "https://symfony.com",
  4214. "keywords": [
  4215. "compatibility",
  4216. "iconv",
  4217. "polyfill",
  4218. "portable",
  4219. "shim"
  4220. ],
  4221. "time": "2019-02-06T07:57:58+00:00"
  4222. },
  4223. {
  4224. "name": "symfony/polyfill-intl-icu",
  4225. "version": "v1.11.0",
  4226. "source": {
  4227. "type": "git",
  4228. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4229. "reference": "999878a3a09d73cae157b0cf89bb6fb2cc073057"
  4230. },
  4231. "dist": {
  4232. "type": "zip",
  4233. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/999878a3a09d73cae157b0cf89bb6fb2cc073057",
  4234. "reference": "999878a3a09d73cae157b0cf89bb6fb2cc073057",
  4235. "shasum": ""
  4236. },
  4237. "require": {
  4238. "php": ">=5.3.3",
  4239. "symfony/intl": "~2.3|~3.0|~4.0"
  4240. },
  4241. "suggest": {
  4242. "ext-intl": "For best performance"
  4243. },
  4244. "type": "library",
  4245. "extra": {
  4246. "branch-alias": {
  4247. "dev-master": "1.9-dev"
  4248. }
  4249. },
  4250. "autoload": {
  4251. "files": [
  4252. "bootstrap.php"
  4253. ]
  4254. },
  4255. "notification-url": "https://packagist.org/downloads/",
  4256. "license": [
  4257. "MIT"
  4258. ],
  4259. "authors": [
  4260. {
  4261. "name": "Nicolas Grekas",
  4262. "email": "p@tchwork.com"
  4263. },
  4264. {
  4265. "name": "Symfony Community",
  4266. "homepage": "https://symfony.com/contributors"
  4267. }
  4268. ],
  4269. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4270. "homepage": "https://symfony.com",
  4271. "keywords": [
  4272. "compatibility",
  4273. "icu",
  4274. "intl",
  4275. "polyfill",
  4276. "portable",
  4277. "shim"
  4278. ],
  4279. "time": "2019-01-07T19:39:47+00:00"
  4280. },
  4281. {
  4282. "name": "symfony/polyfill-intl-idn",
  4283. "version": "v1.11.0",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4287. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  4292. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  4293. "shasum": ""
  4294. },
  4295. "require": {
  4296. "php": ">=5.3.3",
  4297. "symfony/polyfill-mbstring": "^1.3",
  4298. "symfony/polyfill-php72": "^1.9"
  4299. },
  4300. "suggest": {
  4301. "ext-intl": "For best performance"
  4302. },
  4303. "type": "library",
  4304. "extra": {
  4305. "branch-alias": {
  4306. "dev-master": "1.9-dev"
  4307. }
  4308. },
  4309. "autoload": {
  4310. "psr-4": {
  4311. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4312. },
  4313. "files": [
  4314. "bootstrap.php"
  4315. ]
  4316. },
  4317. "notification-url": "https://packagist.org/downloads/",
  4318. "license": [
  4319. "MIT"
  4320. ],
  4321. "authors": [
  4322. {
  4323. "name": "Symfony Community",
  4324. "homepage": "https://symfony.com/contributors"
  4325. },
  4326. {
  4327. "name": "Laurent Bassin",
  4328. "email": "laurent@bassin.info"
  4329. }
  4330. ],
  4331. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4332. "homepage": "https://symfony.com",
  4333. "keywords": [
  4334. "compatibility",
  4335. "idn",
  4336. "intl",
  4337. "polyfill",
  4338. "portable",
  4339. "shim"
  4340. ],
  4341. "time": "2019-03-04T13:44:35+00:00"
  4342. },
  4343. {
  4344. "name": "symfony/polyfill-mbstring",
  4345. "version": "v1.11.0",
  4346. "source": {
  4347. "type": "git",
  4348. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4349. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  4350. },
  4351. "dist": {
  4352. "type": "zip",
  4353. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  4354. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  4355. "shasum": ""
  4356. },
  4357. "require": {
  4358. "php": ">=5.3.3"
  4359. },
  4360. "suggest": {
  4361. "ext-mbstring": "For best performance"
  4362. },
  4363. "type": "library",
  4364. "extra": {
  4365. "branch-alias": {
  4366. "dev-master": "1.11-dev"
  4367. }
  4368. },
  4369. "autoload": {
  4370. "psr-4": {
  4371. "Symfony\\Polyfill\\Mbstring\\": ""
  4372. },
  4373. "files": [
  4374. "bootstrap.php"
  4375. ]
  4376. },
  4377. "notification-url": "https://packagist.org/downloads/",
  4378. "license": [
  4379. "MIT"
  4380. ],
  4381. "authors": [
  4382. {
  4383. "name": "Nicolas Grekas",
  4384. "email": "p@tchwork.com"
  4385. },
  4386. {
  4387. "name": "Symfony Community",
  4388. "homepage": "https://symfony.com/contributors"
  4389. }
  4390. ],
  4391. "description": "Symfony polyfill for the Mbstring extension",
  4392. "homepage": "https://symfony.com",
  4393. "keywords": [
  4394. "compatibility",
  4395. "mbstring",
  4396. "polyfill",
  4397. "portable",
  4398. "shim"
  4399. ],
  4400. "time": "2019-02-06T07:57:58+00:00"
  4401. },
  4402. {
  4403. "name": "symfony/polyfill-php56",
  4404. "version": "v1.11.0",
  4405. "source": {
  4406. "type": "git",
  4407. "url": "https://github.com/symfony/polyfill-php56.git",
  4408. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42"
  4409. },
  4410. "dist": {
  4411. "type": "zip",
  4412. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  4413. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  4414. "shasum": ""
  4415. },
  4416. "require": {
  4417. "php": ">=5.3.3",
  4418. "symfony/polyfill-util": "~1.0"
  4419. },
  4420. "type": "library",
  4421. "extra": {
  4422. "branch-alias": {
  4423. "dev-master": "1.11-dev"
  4424. }
  4425. },
  4426. "autoload": {
  4427. "psr-4": {
  4428. "Symfony\\Polyfill\\Php56\\": ""
  4429. },
  4430. "files": [
  4431. "bootstrap.php"
  4432. ]
  4433. },
  4434. "notification-url": "https://packagist.org/downloads/",
  4435. "license": [
  4436. "MIT"
  4437. ],
  4438. "authors": [
  4439. {
  4440. "name": "Nicolas Grekas",
  4441. "email": "p@tchwork.com"
  4442. },
  4443. {
  4444. "name": "Symfony Community",
  4445. "homepage": "https://symfony.com/contributors"
  4446. }
  4447. ],
  4448. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  4449. "homepage": "https://symfony.com",
  4450. "keywords": [
  4451. "compatibility",
  4452. "polyfill",
  4453. "portable",
  4454. "shim"
  4455. ],
  4456. "time": "2019-02-06T07:57:58+00:00"
  4457. },
  4458. {
  4459. "name": "symfony/polyfill-php70",
  4460. "version": "v1.11.0",
  4461. "source": {
  4462. "type": "git",
  4463. "url": "https://github.com/symfony/polyfill-php70.git",
  4464. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  4465. },
  4466. "dist": {
  4467. "type": "zip",
  4468. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  4469. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  4470. "shasum": ""
  4471. },
  4472. "require": {
  4473. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  4474. "php": ">=5.3.3"
  4475. },
  4476. "type": "library",
  4477. "extra": {
  4478. "branch-alias": {
  4479. "dev-master": "1.11-dev"
  4480. }
  4481. },
  4482. "autoload": {
  4483. "psr-4": {
  4484. "Symfony\\Polyfill\\Php70\\": ""
  4485. },
  4486. "files": [
  4487. "bootstrap.php"
  4488. ],
  4489. "classmap": [
  4490. "Resources/stubs"
  4491. ]
  4492. },
  4493. "notification-url": "https://packagist.org/downloads/",
  4494. "license": [
  4495. "MIT"
  4496. ],
  4497. "authors": [
  4498. {
  4499. "name": "Nicolas Grekas",
  4500. "email": "p@tchwork.com"
  4501. },
  4502. {
  4503. "name": "Symfony Community",
  4504. "homepage": "https://symfony.com/contributors"
  4505. }
  4506. ],
  4507. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  4508. "homepage": "https://symfony.com",
  4509. "keywords": [
  4510. "compatibility",
  4511. "polyfill",
  4512. "portable",
  4513. "shim"
  4514. ],
  4515. "time": "2019-02-06T07:57:58+00:00"
  4516. },
  4517. {
  4518. "name": "symfony/polyfill-php72",
  4519. "version": "v1.11.0",
  4520. "source": {
  4521. "type": "git",
  4522. "url": "https://github.com/symfony/polyfill-php72.git",
  4523. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  4524. },
  4525. "dist": {
  4526. "type": "zip",
  4527. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  4528. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  4529. "shasum": ""
  4530. },
  4531. "require": {
  4532. "php": ">=5.3.3"
  4533. },
  4534. "type": "library",
  4535. "extra": {
  4536. "branch-alias": {
  4537. "dev-master": "1.11-dev"
  4538. }
  4539. },
  4540. "autoload": {
  4541. "psr-4": {
  4542. "Symfony\\Polyfill\\Php72\\": ""
  4543. },
  4544. "files": [
  4545. "bootstrap.php"
  4546. ]
  4547. },
  4548. "notification-url": "https://packagist.org/downloads/",
  4549. "license": [
  4550. "MIT"
  4551. ],
  4552. "authors": [
  4553. {
  4554. "name": "Nicolas Grekas",
  4555. "email": "p@tchwork.com"
  4556. },
  4557. {
  4558. "name": "Symfony Community",
  4559. "homepage": "https://symfony.com/contributors"
  4560. }
  4561. ],
  4562. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4563. "homepage": "https://symfony.com",
  4564. "keywords": [
  4565. "compatibility",
  4566. "polyfill",
  4567. "portable",
  4568. "shim"
  4569. ],
  4570. "time": "2019-02-06T07:57:58+00:00"
  4571. },
  4572. {
  4573. "name": "symfony/polyfill-util",
  4574. "version": "v1.11.0",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/symfony/polyfill-util.git",
  4578. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/b46c6cae28a3106735323f00a0c38eccf2328897",
  4583. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897",
  4584. "shasum": ""
  4585. },
  4586. "require": {
  4587. "php": ">=5.3.3"
  4588. },
  4589. "type": "library",
  4590. "extra": {
  4591. "branch-alias": {
  4592. "dev-master": "1.11-dev"
  4593. }
  4594. },
  4595. "autoload": {
  4596. "psr-4": {
  4597. "Symfony\\Polyfill\\Util\\": ""
  4598. }
  4599. },
  4600. "notification-url": "https://packagist.org/downloads/",
  4601. "license": [
  4602. "MIT"
  4603. ],
  4604. "authors": [
  4605. {
  4606. "name": "Nicolas Grekas",
  4607. "email": "p@tchwork.com"
  4608. },
  4609. {
  4610. "name": "Symfony Community",
  4611. "homepage": "https://symfony.com/contributors"
  4612. }
  4613. ],
  4614. "description": "Symfony utilities for portability of PHP codes",
  4615. "homepage": "https://symfony.com",
  4616. "keywords": [
  4617. "compat",
  4618. "compatibility",
  4619. "polyfill",
  4620. "shim"
  4621. ],
  4622. "time": "2019-02-08T14:16:39+00:00"
  4623. },
  4624. {
  4625. "name": "symfony/swiftmailer-bundle",
  4626. "version": "v3.2.6",
  4627. "source": {
  4628. "type": "git",
  4629. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  4630. "reference": "7a83160b50a2479d37eb74ba71577380b9afe4f5"
  4631. },
  4632. "dist": {
  4633. "type": "zip",
  4634. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/7a83160b50a2479d37eb74ba71577380b9afe4f5",
  4635. "reference": "7a83160b50a2479d37eb74ba71577380b9afe4f5",
  4636. "shasum": ""
  4637. },
  4638. "require": {
  4639. "php": ">=7.0.0",
  4640. "swiftmailer/swiftmailer": "^6.1.3",
  4641. "symfony/config": "~2.8|~3.3|~4.0",
  4642. "symfony/dependency-injection": "~2.7|~3.3|~4.0",
  4643. "symfony/http-kernel": "~2.7|~3.3|~4.0"
  4644. },
  4645. "require-dev": {
  4646. "symfony/console": "~2.7|~3.3|~4.0",
  4647. "symfony/framework-bundle": "~2.7|~3.3|~4.0",
  4648. "symfony/phpunit-bridge": "~3.3|~4.0",
  4649. "symfony/yaml": "~2.7|~3.3|~4.0"
  4650. },
  4651. "suggest": {
  4652. "psr/log": "Allows logging"
  4653. },
  4654. "type": "symfony-bundle",
  4655. "extra": {
  4656. "branch-alias": {
  4657. "dev-master": "3.2-dev"
  4658. }
  4659. },
  4660. "autoload": {
  4661. "psr-4": {
  4662. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  4663. },
  4664. "exclude-from-classmap": [
  4665. "/Tests/"
  4666. ]
  4667. },
  4668. "notification-url": "https://packagist.org/downloads/",
  4669. "license": [
  4670. "MIT"
  4671. ],
  4672. "authors": [
  4673. {
  4674. "name": "Symfony Community",
  4675. "homepage": "http://symfony.com/contributors"
  4676. },
  4677. {
  4678. "name": "Fabien Potencier",
  4679. "email": "fabien@symfony.com"
  4680. }
  4681. ],
  4682. "description": "Symfony SwiftmailerBundle",
  4683. "homepage": "http://symfony.com",
  4684. "time": "2019-04-18T15:52:54+00:00"
  4685. },
  4686. {
  4687. "name": "symfony/symfony",
  4688. "version": "v3.4.26",
  4689. "source": {
  4690. "type": "git",
  4691. "url": "https://github.com/symfony/symfony.git",
  4692. "reference": "1b89e7baec9891c323bbf1ec81af77d901fc60c9"
  4693. },
  4694. "dist": {
  4695. "type": "zip",
  4696. "url": "https://api.github.com/repos/symfony/symfony/zipball/1b89e7baec9891c323bbf1ec81af77d901fc60c9",
  4697. "reference": "1b89e7baec9891c323bbf1ec81af77d901fc60c9",
  4698. "shasum": ""
  4699. },
  4700. "require": {
  4701. "doctrine/common": "~2.4",
  4702. "ext-xml": "*",
  4703. "fig/link-util": "^1.0",
  4704. "php": "^5.5.9|>=7.0.8",
  4705. "psr/cache": "~1.0",
  4706. "psr/container": "^1.0",
  4707. "psr/link": "^1.0",
  4708. "psr/log": "~1.0",
  4709. "psr/simple-cache": "^1.0",
  4710. "symfony/polyfill-apcu": "~1.1",
  4711. "symfony/polyfill-ctype": "~1.8",
  4712. "symfony/polyfill-intl-icu": "~1.0",
  4713. "symfony/polyfill-mbstring": "~1.0",
  4714. "symfony/polyfill-php56": "~1.0",
  4715. "symfony/polyfill-php70": "~1.6",
  4716. "twig/twig": "^1.35|^2.4.4"
  4717. },
  4718. "conflict": {
  4719. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  4720. "phpdocumentor/type-resolver": "<0.3.0",
  4721. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  4722. },
  4723. "provide": {
  4724. "psr/cache-implementation": "1.0",
  4725. "psr/container-implementation": "1.0",
  4726. "psr/log-implementation": "1.0",
  4727. "psr/simple-cache-implementation": "1.0"
  4728. },
  4729. "replace": {
  4730. "symfony/asset": "self.version",
  4731. "symfony/browser-kit": "self.version",
  4732. "symfony/cache": "self.version",
  4733. "symfony/class-loader": "self.version",
  4734. "symfony/config": "self.version",
  4735. "symfony/console": "self.version",
  4736. "symfony/css-selector": "self.version",
  4737. "symfony/debug": "self.version",
  4738. "symfony/debug-bundle": "self.version",
  4739. "symfony/dependency-injection": "self.version",
  4740. "symfony/doctrine-bridge": "self.version",
  4741. "symfony/dom-crawler": "self.version",
  4742. "symfony/dotenv": "self.version",
  4743. "symfony/event-dispatcher": "self.version",
  4744. "symfony/expression-language": "self.version",
  4745. "symfony/filesystem": "self.version",
  4746. "symfony/finder": "self.version",
  4747. "symfony/form": "self.version",
  4748. "symfony/framework-bundle": "self.version",
  4749. "symfony/http-foundation": "self.version",
  4750. "symfony/http-kernel": "self.version",
  4751. "symfony/inflector": "self.version",
  4752. "symfony/intl": "self.version",
  4753. "symfony/ldap": "self.version",
  4754. "symfony/lock": "self.version",
  4755. "symfony/monolog-bridge": "self.version",
  4756. "symfony/options-resolver": "self.version",
  4757. "symfony/process": "self.version",
  4758. "symfony/property-access": "self.version",
  4759. "symfony/property-info": "self.version",
  4760. "symfony/proxy-manager-bridge": "self.version",
  4761. "symfony/routing": "self.version",
  4762. "symfony/security": "self.version",
  4763. "symfony/security-bundle": "self.version",
  4764. "symfony/security-core": "self.version",
  4765. "symfony/security-csrf": "self.version",
  4766. "symfony/security-guard": "self.version",
  4767. "symfony/security-http": "self.version",
  4768. "symfony/serializer": "self.version",
  4769. "symfony/stopwatch": "self.version",
  4770. "symfony/templating": "self.version",
  4771. "symfony/translation": "self.version",
  4772. "symfony/twig-bridge": "self.version",
  4773. "symfony/twig-bundle": "self.version",
  4774. "symfony/validator": "self.version",
  4775. "symfony/var-dumper": "self.version",
  4776. "symfony/web-link": "self.version",
  4777. "symfony/web-profiler-bundle": "self.version",
  4778. "symfony/web-server-bundle": "self.version",
  4779. "symfony/workflow": "self.version",
  4780. "symfony/yaml": "self.version"
  4781. },
  4782. "require-dev": {
  4783. "cache/integration-tests": "dev-master",
  4784. "doctrine/annotations": "~1.0",
  4785. "doctrine/cache": "~1.6",
  4786. "doctrine/data-fixtures": "1.0.*",
  4787. "doctrine/dbal": "~2.4",
  4788. "doctrine/doctrine-bundle": "~1.4",
  4789. "doctrine/orm": "~2.4,>=2.4.5",
  4790. "egulias/email-validator": "~1.2,>=1.2.8|~2.0",
  4791. "monolog/monolog": "~1.11",
  4792. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  4793. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4794. "predis/predis": "~1.0",
  4795. "symfony/phpunit-bridge": "~3.4|~4.0",
  4796. "symfony/security-acl": "~2.8|~3.0"
  4797. },
  4798. "type": "library",
  4799. "extra": {
  4800. "branch-alias": {
  4801. "dev-master": "3.4-dev"
  4802. }
  4803. },
  4804. "autoload": {
  4805. "psr-4": {
  4806. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  4807. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  4808. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  4809. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  4810. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  4811. "Symfony\\Component\\": "src/Symfony/Component/"
  4812. },
  4813. "classmap": [
  4814. "src/Symfony/Component/Intl/Resources/stubs"
  4815. ],
  4816. "exclude-from-classmap": [
  4817. "**/Tests/"
  4818. ]
  4819. },
  4820. "notification-url": "https://packagist.org/downloads/",
  4821. "license": [
  4822. "MIT"
  4823. ],
  4824. "authors": [
  4825. {
  4826. "name": "Fabien Potencier",
  4827. "email": "fabien@symfony.com"
  4828. },
  4829. {
  4830. "name": "Symfony Community",
  4831. "homepage": "https://symfony.com/contributors"
  4832. }
  4833. ],
  4834. "description": "The Symfony PHP framework",
  4835. "homepage": "https://symfony.com",
  4836. "keywords": [
  4837. "framework"
  4838. ],
  4839. "time": "2019-04-17T15:57:27+00:00"
  4840. },
  4841. {
  4842. "name": "twig/extensions",
  4843. "version": "v1.5.4",
  4844. "source": {
  4845. "type": "git",
  4846. "url": "https://github.com/twigphp/Twig-extensions.git",
  4847. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202"
  4848. },
  4849. "dist": {
  4850. "type": "zip",
  4851. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/57873c8b0c1be51caa47df2cdb824490beb16202",
  4852. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202",
  4853. "shasum": ""
  4854. },
  4855. "require": {
  4856. "twig/twig": "^1.27|^2.0"
  4857. },
  4858. "require-dev": {
  4859. "symfony/phpunit-bridge": "^3.4",
  4860. "symfony/translation": "^2.7|^3.4"
  4861. },
  4862. "suggest": {
  4863. "symfony/translation": "Allow the time_diff output to be translated"
  4864. },
  4865. "type": "library",
  4866. "extra": {
  4867. "branch-alias": {
  4868. "dev-master": "1.5-dev"
  4869. }
  4870. },
  4871. "autoload": {
  4872. "psr-0": {
  4873. "Twig_Extensions_": "lib/"
  4874. },
  4875. "psr-4": {
  4876. "Twig\\Extensions\\": "src/"
  4877. }
  4878. },
  4879. "notification-url": "https://packagist.org/downloads/",
  4880. "license": [
  4881. "MIT"
  4882. ],
  4883. "authors": [
  4884. {
  4885. "name": "Fabien Potencier",
  4886. "email": "fabien@symfony.com"
  4887. }
  4888. ],
  4889. "description": "Common additional features for Twig that do not directly belong in core",
  4890. "keywords": [
  4891. "i18n",
  4892. "text"
  4893. ],
  4894. "time": "2018-12-05T18:34:18+00:00"
  4895. },
  4896. {
  4897. "name": "twig/twig",
  4898. "version": "v2.7.4",
  4899. "source": {
  4900. "type": "git",
  4901. "url": "https://github.com/twigphp/Twig.git",
  4902. "reference": "ed9c49220e09bfaeb1ba4d48077c08a7b09908dd"
  4903. },
  4904. "dist": {
  4905. "type": "zip",
  4906. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ed9c49220e09bfaeb1ba4d48077c08a7b09908dd",
  4907. "reference": "ed9c49220e09bfaeb1ba4d48077c08a7b09908dd",
  4908. "shasum": ""
  4909. },
  4910. "require": {
  4911. "php": "^7.0",
  4912. "symfony/polyfill-ctype": "^1.8",
  4913. "symfony/polyfill-mbstring": "^1.3"
  4914. },
  4915. "require-dev": {
  4916. "psr/container": "^1.0",
  4917. "symfony/debug": "^2.7",
  4918. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4919. },
  4920. "type": "library",
  4921. "extra": {
  4922. "branch-alias": {
  4923. "dev-master": "2.7-dev"
  4924. }
  4925. },
  4926. "autoload": {
  4927. "psr-0": {
  4928. "Twig_": "lib/"
  4929. },
  4930. "psr-4": {
  4931. "Twig\\": "src/"
  4932. }
  4933. },
  4934. "notification-url": "https://packagist.org/downloads/",
  4935. "license": [
  4936. "BSD-3-Clause"
  4937. ],
  4938. "authors": [
  4939. {
  4940. "name": "Fabien Potencier",
  4941. "email": "fabien@symfony.com",
  4942. "homepage": "http://fabien.potencier.org",
  4943. "role": "Lead Developer"
  4944. },
  4945. {
  4946. "name": "Armin Ronacher",
  4947. "email": "armin.ronacher@active-4.com",
  4948. "role": "Project Founder"
  4949. },
  4950. {
  4951. "name": "Twig Team",
  4952. "homepage": "https://twig.symfony.com/contributors",
  4953. "role": "Contributors"
  4954. }
  4955. ],
  4956. "description": "Twig, the flexible, fast, and secure template language for PHP",
  4957. "homepage": "https://twig.symfony.com",
  4958. "keywords": [
  4959. "templating"
  4960. ],
  4961. "time": "2019-03-23T14:28:58+00:00"
  4962. },
  4963. {
  4964. "name": "ua-parser/uap-php",
  4965. "version": "v3.8.8",
  4966. "source": {
  4967. "type": "git",
  4968. "url": "https://github.com/ua-parser/uap-php.git",
  4969. "reference": "3004c494d204c3b6d5e1e80a4ff78e4025e24e2f"
  4970. },
  4971. "dist": {
  4972. "type": "zip",
  4973. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/3004c494d204c3b6d5e1e80a4ff78e4025e24e2f",
  4974. "reference": "3004c494d204c3b6d5e1e80a4ff78e4025e24e2f",
  4975. "shasum": ""
  4976. },
  4977. "require": {
  4978. "composer/ca-bundle": "^1.1",
  4979. "php": ">=5.3.0"
  4980. },
  4981. "require-dev": {
  4982. "phpunit/phpunit": "<8",
  4983. "symfony/console": "^2.0 || ^3.0 || ^4.0",
  4984. "symfony/filesystem": "^2.0 || ^3.0 || ^4.0",
  4985. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  4986. "symfony/yaml": "^2.0 || ^3.0 || ^4.0"
  4987. },
  4988. "suggest": {
  4989. "symfony/console": "Required for CLI usage - ^2.0 || ^3.0 || ^4.0",
  4990. "symfony/filesystem": "Required for CLI usage - 2.0 || ^3.0 || ^4.0",
  4991. "symfony/finder": "Required for CLI usage - ^2.0 || ^3.0 || ^4.0",
  4992. "symfony/yaml": "Required for CLI usage - ^4.0 || ^5.0"
  4993. },
  4994. "bin": [
  4995. "bin/uaparser"
  4996. ],
  4997. "type": "library",
  4998. "autoload": {
  4999. "psr-4": {
  5000. "UAParser\\": "src"
  5001. }
  5002. },
  5003. "notification-url": "https://packagist.org/downloads/",
  5004. "license": [
  5005. "MIT"
  5006. ],
  5007. "authors": [
  5008. {
  5009. "name": "Lars Strojny",
  5010. "email": "lars@strojny.net"
  5011. },
  5012. {
  5013. "name": "Dave Olsen",
  5014. "email": "dmolsen@gmail.com"
  5015. }
  5016. ],
  5017. "description": "A multi-language port of Browserscope's user agent parser.",
  5018. "time": "2019-03-19T09:54:19+00:00"
  5019. },
  5020. {
  5021. "name": "white-october/pagerfanta-bundle",
  5022. "version": "v1.2.4",
  5023. "source": {
  5024. "type": "git",
  5025. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  5026. "reference": "19bf14bf8c72e4205c9ca97028436701fe3991a6"
  5027. },
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/19bf14bf8c72e4205c9ca97028436701fe3991a6",
  5031. "reference": "19bf14bf8c72e4205c9ca97028436701fe3991a6",
  5032. "shasum": ""
  5033. },
  5034. "require": {
  5035. "pagerfanta/pagerfanta": "^1.1.0|^2.0.0",
  5036. "php": ">=5.3",
  5037. "symfony/framework-bundle": "~2.3|~3.0|~4.0",
  5038. "symfony/property-access": "~2.3|~3.0|~4.0",
  5039. "symfony/translation": "~2.3|~3.0|~4.0",
  5040. "symfony/twig-bundle": "~2.3|~3.0|~4.0"
  5041. },
  5042. "require-dev": {
  5043. "phpunit/phpunit": "~3.7|~4.0|^5.0",
  5044. "symfony/symfony": "~2.3|~3.0|~4.0"
  5045. },
  5046. "type": "symfony-bundle",
  5047. "extra": {
  5048. "branch-alias": {
  5049. "dev-master": "1.0.x-dev"
  5050. }
  5051. },
  5052. "autoload": {
  5053. "psr-4": {
  5054. "WhiteOctober\\PagerfantaBundle\\": ""
  5055. },
  5056. "exclude-from-classmap": [
  5057. "Tests/",
  5058. "TestsProject/"
  5059. ]
  5060. },
  5061. "notification-url": "https://packagist.org/downloads/",
  5062. "license": [
  5063. "MIT"
  5064. ],
  5065. "authors": [
  5066. {
  5067. "name": "Pablo Díez",
  5068. "email": "pablodip@gmail.com"
  5069. }
  5070. ],
  5071. "description": "Bundle to use Pagerfanta with Symfony2",
  5072. "keywords": [
  5073. "page",
  5074. "paging"
  5075. ],
  5076. "time": "2019-02-14T08:42:52+00:00"
  5077. },
  5078. {
  5079. "name": "zendframework/zend-escaper",
  5080. "version": "2.6.0",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/zendframework/zend-escaper.git",
  5084. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  5089. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  5090. "shasum": ""
  5091. },
  5092. "require": {
  5093. "php": "^5.6 || ^7.0"
  5094. },
  5095. "require-dev": {
  5096. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5097. "zendframework/zend-coding-standard": "~1.0.0"
  5098. },
  5099. "type": "library",
  5100. "extra": {
  5101. "branch-alias": {
  5102. "dev-master": "2.6.x-dev",
  5103. "dev-develop": "2.7.x-dev"
  5104. }
  5105. },
  5106. "autoload": {
  5107. "psr-4": {
  5108. "Zend\\Escaper\\": "src/"
  5109. }
  5110. },
  5111. "notification-url": "https://packagist.org/downloads/",
  5112. "license": [
  5113. "BSD-3-Clause"
  5114. ],
  5115. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  5116. "keywords": [
  5117. "ZendFramework",
  5118. "escaper",
  5119. "zf"
  5120. ],
  5121. "time": "2018-04-25T15:48:53+00:00"
  5122. },
  5123. {
  5124. "name": "zendframework/zend-feed",
  5125. "version": "2.12.0",
  5126. "source": {
  5127. "type": "git",
  5128. "url": "https://github.com/zendframework/zend-feed.git",
  5129. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  5130. },
  5131. "dist": {
  5132. "type": "zip",
  5133. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  5134. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  5135. "shasum": ""
  5136. },
  5137. "require": {
  5138. "ext-dom": "*",
  5139. "ext-libxml": "*",
  5140. "php": "^5.6 || ^7.0",
  5141. "zendframework/zend-escaper": "^2.5.2",
  5142. "zendframework/zend-stdlib": "^3.2.1"
  5143. },
  5144. "require-dev": {
  5145. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  5146. "psr/http-message": "^1.0.1",
  5147. "zendframework/zend-cache": "^2.7.2",
  5148. "zendframework/zend-coding-standard": "~1.0.0",
  5149. "zendframework/zend-db": "^2.8.2",
  5150. "zendframework/zend-http": "^2.7",
  5151. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  5152. "zendframework/zend-validator": "^2.10.1"
  5153. },
  5154. "suggest": {
  5155. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  5156. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  5157. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  5158. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  5159. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  5160. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  5161. },
  5162. "type": "library",
  5163. "extra": {
  5164. "branch-alias": {
  5165. "dev-master": "2.12.x-dev",
  5166. "dev-develop": "2.13.x-dev"
  5167. }
  5168. },
  5169. "autoload": {
  5170. "psr-4": {
  5171. "Zend\\Feed\\": "src/"
  5172. }
  5173. },
  5174. "notification-url": "https://packagist.org/downloads/",
  5175. "license": [
  5176. "BSD-3-Clause"
  5177. ],
  5178. "description": "provides functionality for consuming RSS and Atom feeds",
  5179. "keywords": [
  5180. "ZendFramework",
  5181. "feed",
  5182. "zf"
  5183. ],
  5184. "time": "2019-03-05T20:08:49+00:00"
  5185. },
  5186. {
  5187. "name": "zendframework/zend-servicemanager",
  5188. "version": "2.7.11",
  5189. "source": {
  5190. "type": "git",
  5191. "url": "https://github.com/zendframework/zend-servicemanager.git",
  5192. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7"
  5193. },
  5194. "dist": {
  5195. "type": "zip",
  5196. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5197. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5198. "shasum": ""
  5199. },
  5200. "require": {
  5201. "container-interop/container-interop": "~1.0",
  5202. "php": "^5.5 || ^7.0"
  5203. },
  5204. "require-dev": {
  5205. "athletic/athletic": "dev-master",
  5206. "fabpot/php-cs-fixer": "1.7.*",
  5207. "phpunit/phpunit": "~4.0",
  5208. "zendframework/zend-di": "~2.5",
  5209. "zendframework/zend-mvc": "~2.5"
  5210. },
  5211. "suggest": {
  5212. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  5213. "zendframework/zend-di": "Zend\\Di component"
  5214. },
  5215. "type": "library",
  5216. "extra": {
  5217. "branch-alias": {
  5218. "dev-master": "2.7-dev",
  5219. "dev-develop": "3.0-dev"
  5220. }
  5221. },
  5222. "autoload": {
  5223. "psr-4": {
  5224. "Zend\\ServiceManager\\": "src/"
  5225. }
  5226. },
  5227. "notification-url": "https://packagist.org/downloads/",
  5228. "license": [
  5229. "BSD-3-Clause"
  5230. ],
  5231. "homepage": "https://github.com/zendframework/zend-servicemanager",
  5232. "keywords": [
  5233. "servicemanager",
  5234. "zf2"
  5235. ],
  5236. "time": "2018-06-22T14:49:54+00:00"
  5237. },
  5238. {
  5239. "name": "zendframework/zend-stdlib",
  5240. "version": "3.2.1",
  5241. "source": {
  5242. "type": "git",
  5243. "url": "https://github.com/zendframework/zend-stdlib.git",
  5244. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  5245. },
  5246. "dist": {
  5247. "type": "zip",
  5248. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  5249. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  5250. "shasum": ""
  5251. },
  5252. "require": {
  5253. "php": "^5.6 || ^7.0"
  5254. },
  5255. "require-dev": {
  5256. "phpbench/phpbench": "^0.13",
  5257. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5258. "zendframework/zend-coding-standard": "~1.0.0"
  5259. },
  5260. "type": "library",
  5261. "extra": {
  5262. "branch-alias": {
  5263. "dev-master": "3.2.x-dev",
  5264. "dev-develop": "3.3.x-dev"
  5265. }
  5266. },
  5267. "autoload": {
  5268. "psr-4": {
  5269. "Zend\\Stdlib\\": "src/"
  5270. }
  5271. },
  5272. "notification-url": "https://packagist.org/downloads/",
  5273. "license": [
  5274. "BSD-3-Clause"
  5275. ],
  5276. "description": "SPL extensions, array utilities, error handlers, and more",
  5277. "keywords": [
  5278. "ZendFramework",
  5279. "stdlib",
  5280. "zf"
  5281. ],
  5282. "time": "2018-08-28T21:34:05+00:00"
  5283. },
  5284. {
  5285. "name": "zendframework/zend-uri",
  5286. "version": "2.7.0",
  5287. "source": {
  5288. "type": "git",
  5289. "url": "https://github.com/zendframework/zend-uri.git",
  5290. "reference": "b2785cd38fe379a784645449db86f21b7739b1ee"
  5291. },
  5292. "dist": {
  5293. "type": "zip",
  5294. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/b2785cd38fe379a784645449db86f21b7739b1ee",
  5295. "reference": "b2785cd38fe379a784645449db86f21b7739b1ee",
  5296. "shasum": ""
  5297. },
  5298. "require": {
  5299. "php": "^5.6 || ^7.0",
  5300. "zendframework/zend-escaper": "^2.5",
  5301. "zendframework/zend-validator": "^2.10"
  5302. },
  5303. "require-dev": {
  5304. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
  5305. "zendframework/zend-coding-standard": "~1.0.0"
  5306. },
  5307. "type": "library",
  5308. "extra": {
  5309. "branch-alias": {
  5310. "dev-master": "2.7.x-dev",
  5311. "dev-develop": "2.8.x-dev"
  5312. }
  5313. },
  5314. "autoload": {
  5315. "psr-4": {
  5316. "Zend\\Uri\\": "src/"
  5317. }
  5318. },
  5319. "notification-url": "https://packagist.org/downloads/",
  5320. "license": [
  5321. "BSD-3-Clause"
  5322. ],
  5323. "description": "A component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  5324. "keywords": [
  5325. "ZendFramework",
  5326. "uri",
  5327. "zf"
  5328. ],
  5329. "time": "2019-02-27T21:39:04+00:00"
  5330. },
  5331. {
  5332. "name": "zendframework/zend-validator",
  5333. "version": "2.12.0",
  5334. "source": {
  5335. "type": "git",
  5336. "url": "https://github.com/zendframework/zend-validator.git",
  5337. "reference": "64c33668e5fa2d39c6289a878f927ea2b0850c30"
  5338. },
  5339. "dist": {
  5340. "type": "zip",
  5341. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/64c33668e5fa2d39c6289a878f927ea2b0850c30",
  5342. "reference": "64c33668e5fa2d39c6289a878f927ea2b0850c30",
  5343. "shasum": ""
  5344. },
  5345. "require": {
  5346. "container-interop/container-interop": "^1.1",
  5347. "php": "^5.6 || ^7.0",
  5348. "zendframework/zend-stdlib": "^3.2.1"
  5349. },
  5350. "require-dev": {
  5351. "phpunit/phpunit": "^6.0.8 || ^5.7.15",
  5352. "psr/http-message": "^1.0",
  5353. "zendframework/zend-cache": "^2.6.1",
  5354. "zendframework/zend-coding-standard": "~1.0.0",
  5355. "zendframework/zend-config": "^2.6",
  5356. "zendframework/zend-db": "^2.7",
  5357. "zendframework/zend-filter": "^2.6",
  5358. "zendframework/zend-http": "^2.5.4",
  5359. "zendframework/zend-i18n": "^2.6",
  5360. "zendframework/zend-math": "^2.6",
  5361. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  5362. "zendframework/zend-session": "^2.8",
  5363. "zendframework/zend-uri": "^2.5"
  5364. },
  5365. "suggest": {
  5366. "psr/http-message": "psr/http-message, required when validating PSR-7 UploadedFileInterface instances via the Upload and UploadFile validators",
  5367. "zendframework/zend-db": "Zend\\Db component, required by the (No)RecordExists validator",
  5368. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  5369. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages",
  5370. "zendframework/zend-i18n-resources": "Translations of validator messages",
  5371. "zendframework/zend-math": "Zend\\Math component, required by the Csrf validator",
  5372. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  5373. "zendframework/zend-session": "Zend\\Session component, ^2.8; required by the Csrf validator",
  5374. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  5375. },
  5376. "type": "library",
  5377. "extra": {
  5378. "branch-alias": {
  5379. "dev-master": "2.12.x-dev",
  5380. "dev-develop": "2.13.x-dev"
  5381. },
  5382. "zf": {
  5383. "component": "Zend\\Validator",
  5384. "config-provider": "Zend\\Validator\\ConfigProvider"
  5385. }
  5386. },
  5387. "autoload": {
  5388. "psr-4": {
  5389. "Zend\\Validator\\": "src/"
  5390. }
  5391. },
  5392. "notification-url": "https://packagist.org/downloads/",
  5393. "license": [
  5394. "BSD-3-Clause"
  5395. ],
  5396. "description": "provides a set of commonly needed validators",
  5397. "homepage": "https://github.com/zendframework/zend-validator",
  5398. "keywords": [
  5399. "validator",
  5400. "zf2"
  5401. ],
  5402. "time": "2019-01-30T14:26:10+00:00"
  5403. },
  5404. {
  5405. "name": "zendframework/zenddiagnostics",
  5406. "version": "v1.5.0",
  5407. "source": {
  5408. "type": "git",
  5409. "url": "https://github.com/zendframework/zend-diagnostics.git",
  5410. "reference": "2e60c61935ecc70c9d3b4ce5a8903ea9986ae314"
  5411. },
  5412. "dist": {
  5413. "type": "zip",
  5414. "url": "https://api.github.com/repos/zendframework/zend-diagnostics/zipball/2e60c61935ecc70c9d3b4ce5a8903ea9986ae314",
  5415. "reference": "2e60c61935ecc70c9d3b4ce5a8903ea9986ae314",
  5416. "shasum": ""
  5417. },
  5418. "require": {
  5419. "php": "^5.6 || ^7.0"
  5420. },
  5421. "conflict": {
  5422. "guzzlehttp/ringphp": "<1.1.1"
  5423. },
  5424. "require-dev": {
  5425. "doctrine/migrations": "^1.0 || ^2.0",
  5426. "guzzlehttp/guzzle": "^5.3.3 || ^6.3.3",
  5427. "mikey179/vfsstream": "^1.6",
  5428. "php-amqplib/php-amqplib": "^2.0",
  5429. "phpunit/phpunit": "^5.7.27 || 6.5.8 || ^7.1.2",
  5430. "predis/predis": "^1.0",
  5431. "sensiolabs/security-checker": "^5.0",
  5432. "symfony/yaml": "^2.7 || ^3.0 || ^4.0",
  5433. "zendframework/zend-coding-standard": "~1.0.0",
  5434. "zendframework/zend-loader": "^2.0"
  5435. },
  5436. "suggest": {
  5437. "doctrine/migrations": "Required by Check\\DoctrineMigration",
  5438. "ext-bcmath": "Required by Check\\CpuPerformance",
  5439. "guzzlehttp/guzzle": "Required by Check\\GuzzleHttpService",
  5440. "predis/predis": "Required by Check\\Redis",
  5441. "sensiolabs/security-checker": "Required by Check\\SecurityAdvisory",
  5442. "symfony/yaml": "Required by Check\\YamlFile",
  5443. "videlalvaro/php-amqplib": "Required by Check\\RabbitMQ"
  5444. },
  5445. "type": "library",
  5446. "extra": {
  5447. "branch-alias": {
  5448. "dev-master": "1.5.x-dev",
  5449. "dev-develop": "1.6.x-dev"
  5450. }
  5451. },
  5452. "autoload": {
  5453. "files": [
  5454. "src/autoload.php"
  5455. ],
  5456. "psr-4": {
  5457. "ZendDiagnostics\\": "src/"
  5458. }
  5459. },
  5460. "notification-url": "https://packagist.org/downloads/",
  5461. "license": [
  5462. "BSD-3-Clause"
  5463. ],
  5464. "description": "A set of components for performing diagnostic tests in PHP applications",
  5465. "homepage": "https://github.com/zendframework/zend-diagnostics",
  5466. "keywords": [
  5467. "ZendFramework",
  5468. "diagnostics",
  5469. "php",
  5470. "test",
  5471. "zf"
  5472. ],
  5473. "time": "2019-03-26T15:50:07+00:00"
  5474. }
  5475. ],
  5476. "packages-dev": [
  5477. {
  5478. "name": "myclabs/deep-copy",
  5479. "version": "1.8.1",
  5480. "source": {
  5481. "type": "git",
  5482. "url": "https://github.com/myclabs/DeepCopy.git",
  5483. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  5484. },
  5485. "dist": {
  5486. "type": "zip",
  5487. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  5488. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  5489. "shasum": ""
  5490. },
  5491. "require": {
  5492. "php": "^7.1"
  5493. },
  5494. "replace": {
  5495. "myclabs/deep-copy": "self.version"
  5496. },
  5497. "require-dev": {
  5498. "doctrine/collections": "^1.0",
  5499. "doctrine/common": "^2.6",
  5500. "phpunit/phpunit": "^7.1"
  5501. },
  5502. "type": "library",
  5503. "autoload": {
  5504. "psr-4": {
  5505. "DeepCopy\\": "src/DeepCopy/"
  5506. },
  5507. "files": [
  5508. "src/DeepCopy/deep_copy.php"
  5509. ]
  5510. },
  5511. "notification-url": "https://packagist.org/downloads/",
  5512. "license": [
  5513. "MIT"
  5514. ],
  5515. "description": "Create deep copies (clones) of your objects",
  5516. "keywords": [
  5517. "clone",
  5518. "copy",
  5519. "duplicate",
  5520. "object",
  5521. "object graph"
  5522. ],
  5523. "time": "2018-06-11T23:09:50+00:00"
  5524. },
  5525. {
  5526. "name": "phar-io/manifest",
  5527. "version": "1.0.3",
  5528. "source": {
  5529. "type": "git",
  5530. "url": "https://github.com/phar-io/manifest.git",
  5531. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  5532. },
  5533. "dist": {
  5534. "type": "zip",
  5535. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5536. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5537. "shasum": ""
  5538. },
  5539. "require": {
  5540. "ext-dom": "*",
  5541. "ext-phar": "*",
  5542. "phar-io/version": "^2.0",
  5543. "php": "^5.6 || ^7.0"
  5544. },
  5545. "type": "library",
  5546. "extra": {
  5547. "branch-alias": {
  5548. "dev-master": "1.0.x-dev"
  5549. }
  5550. },
  5551. "autoload": {
  5552. "classmap": [
  5553. "src/"
  5554. ]
  5555. },
  5556. "notification-url": "https://packagist.org/downloads/",
  5557. "license": [
  5558. "BSD-3-Clause"
  5559. ],
  5560. "authors": [
  5561. {
  5562. "name": "Arne Blankerts",
  5563. "email": "arne@blankerts.de",
  5564. "role": "Developer"
  5565. },
  5566. {
  5567. "name": "Sebastian Heuer",
  5568. "email": "sebastian@phpeople.de",
  5569. "role": "Developer"
  5570. },
  5571. {
  5572. "name": "Sebastian Bergmann",
  5573. "email": "sebastian@phpunit.de",
  5574. "role": "Developer"
  5575. }
  5576. ],
  5577. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5578. "time": "2018-07-08T19:23:20+00:00"
  5579. },
  5580. {
  5581. "name": "phar-io/version",
  5582. "version": "2.0.1",
  5583. "source": {
  5584. "type": "git",
  5585. "url": "https://github.com/phar-io/version.git",
  5586. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  5587. },
  5588. "dist": {
  5589. "type": "zip",
  5590. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5591. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5592. "shasum": ""
  5593. },
  5594. "require": {
  5595. "php": "^5.6 || ^7.0"
  5596. },
  5597. "type": "library",
  5598. "autoload": {
  5599. "classmap": [
  5600. "src/"
  5601. ]
  5602. },
  5603. "notification-url": "https://packagist.org/downloads/",
  5604. "license": [
  5605. "BSD-3-Clause"
  5606. ],
  5607. "authors": [
  5608. {
  5609. "name": "Arne Blankerts",
  5610. "email": "arne@blankerts.de",
  5611. "role": "Developer"
  5612. },
  5613. {
  5614. "name": "Sebastian Heuer",
  5615. "email": "sebastian@phpeople.de",
  5616. "role": "Developer"
  5617. },
  5618. {
  5619. "name": "Sebastian Bergmann",
  5620. "email": "sebastian@phpunit.de",
  5621. "role": "Developer"
  5622. }
  5623. ],
  5624. "description": "Library for handling version information and constraints",
  5625. "time": "2018-07-08T19:19:57+00:00"
  5626. },
  5627. {
  5628. "name": "phpdocumentor/reflection-common",
  5629. "version": "1.0.1",
  5630. "source": {
  5631. "type": "git",
  5632. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5633. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  5634. },
  5635. "dist": {
  5636. "type": "zip",
  5637. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5638. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5639. "shasum": ""
  5640. },
  5641. "require": {
  5642. "php": ">=5.5"
  5643. },
  5644. "require-dev": {
  5645. "phpunit/phpunit": "^4.6"
  5646. },
  5647. "type": "library",
  5648. "extra": {
  5649. "branch-alias": {
  5650. "dev-master": "1.0.x-dev"
  5651. }
  5652. },
  5653. "autoload": {
  5654. "psr-4": {
  5655. "phpDocumentor\\Reflection\\": [
  5656. "src"
  5657. ]
  5658. }
  5659. },
  5660. "notification-url": "https://packagist.org/downloads/",
  5661. "license": [
  5662. "MIT"
  5663. ],
  5664. "authors": [
  5665. {
  5666. "name": "Jaap van Otterdijk",
  5667. "email": "opensource@ijaap.nl"
  5668. }
  5669. ],
  5670. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5671. "homepage": "http://www.phpdoc.org",
  5672. "keywords": [
  5673. "FQSEN",
  5674. "phpDocumentor",
  5675. "phpdoc",
  5676. "reflection",
  5677. "static analysis"
  5678. ],
  5679. "time": "2017-09-11T18:02:19+00:00"
  5680. },
  5681. {
  5682. "name": "phpdocumentor/reflection-docblock",
  5683. "version": "4.3.0",
  5684. "source": {
  5685. "type": "git",
  5686. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5687. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  5688. },
  5689. "dist": {
  5690. "type": "zip",
  5691. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  5692. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  5693. "shasum": ""
  5694. },
  5695. "require": {
  5696. "php": "^7.0",
  5697. "phpdocumentor/reflection-common": "^1.0.0",
  5698. "phpdocumentor/type-resolver": "^0.4.0",
  5699. "webmozart/assert": "^1.0"
  5700. },
  5701. "require-dev": {
  5702. "doctrine/instantiator": "~1.0.5",
  5703. "mockery/mockery": "^1.0",
  5704. "phpunit/phpunit": "^6.4"
  5705. },
  5706. "type": "library",
  5707. "extra": {
  5708. "branch-alias": {
  5709. "dev-master": "4.x-dev"
  5710. }
  5711. },
  5712. "autoload": {
  5713. "psr-4": {
  5714. "phpDocumentor\\Reflection\\": [
  5715. "src/"
  5716. ]
  5717. }
  5718. },
  5719. "notification-url": "https://packagist.org/downloads/",
  5720. "license": [
  5721. "MIT"
  5722. ],
  5723. "authors": [
  5724. {
  5725. "name": "Mike van Riel",
  5726. "email": "me@mikevanriel.com"
  5727. }
  5728. ],
  5729. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5730. "time": "2017-11-30T07:14:17+00:00"
  5731. },
  5732. {
  5733. "name": "phpdocumentor/type-resolver",
  5734. "version": "0.4.0",
  5735. "source": {
  5736. "type": "git",
  5737. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5738. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  5739. },
  5740. "dist": {
  5741. "type": "zip",
  5742. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  5743. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  5744. "shasum": ""
  5745. },
  5746. "require": {
  5747. "php": "^5.5 || ^7.0",
  5748. "phpdocumentor/reflection-common": "^1.0"
  5749. },
  5750. "require-dev": {
  5751. "mockery/mockery": "^0.9.4",
  5752. "phpunit/phpunit": "^5.2||^4.8.24"
  5753. },
  5754. "type": "library",
  5755. "extra": {
  5756. "branch-alias": {
  5757. "dev-master": "1.0.x-dev"
  5758. }
  5759. },
  5760. "autoload": {
  5761. "psr-4": {
  5762. "phpDocumentor\\Reflection\\": [
  5763. "src/"
  5764. ]
  5765. }
  5766. },
  5767. "notification-url": "https://packagist.org/downloads/",
  5768. "license": [
  5769. "MIT"
  5770. ],
  5771. "authors": [
  5772. {
  5773. "name": "Mike van Riel",
  5774. "email": "me@mikevanriel.com"
  5775. }
  5776. ],
  5777. "time": "2017-07-14T14:27:02+00:00"
  5778. },
  5779. {
  5780. "name": "phpspec/prophecy",
  5781. "version": "1.8.0",
  5782. "source": {
  5783. "type": "git",
  5784. "url": "https://github.com/phpspec/prophecy.git",
  5785. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  5786. },
  5787. "dist": {
  5788. "type": "zip",
  5789. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  5790. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  5791. "shasum": ""
  5792. },
  5793. "require": {
  5794. "doctrine/instantiator": "^1.0.2",
  5795. "php": "^5.3|^7.0",
  5796. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  5797. "sebastian/comparator": "^1.1|^2.0|^3.0",
  5798. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  5799. },
  5800. "require-dev": {
  5801. "phpspec/phpspec": "^2.5|^3.2",
  5802. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  5803. },
  5804. "type": "library",
  5805. "extra": {
  5806. "branch-alias": {
  5807. "dev-master": "1.8.x-dev"
  5808. }
  5809. },
  5810. "autoload": {
  5811. "psr-0": {
  5812. "Prophecy\\": "src/"
  5813. }
  5814. },
  5815. "notification-url": "https://packagist.org/downloads/",
  5816. "license": [
  5817. "MIT"
  5818. ],
  5819. "authors": [
  5820. {
  5821. "name": "Konstantin Kudryashov",
  5822. "email": "ever.zet@gmail.com",
  5823. "homepage": "http://everzet.com"
  5824. },
  5825. {
  5826. "name": "Marcello Duarte",
  5827. "email": "marcello.duarte@gmail.com"
  5828. }
  5829. ],
  5830. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5831. "homepage": "https://github.com/phpspec/prophecy",
  5832. "keywords": [
  5833. "Double",
  5834. "Dummy",
  5835. "fake",
  5836. "mock",
  5837. "spy",
  5838. "stub"
  5839. ],
  5840. "time": "2018-08-05T17:53:17+00:00"
  5841. },
  5842. {
  5843. "name": "phpunit/php-code-coverage",
  5844. "version": "7.0.3",
  5845. "source": {
  5846. "type": "git",
  5847. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5848. "reference": "0317a769a81845c390e19684d9ba25d7f6aa4707"
  5849. },
  5850. "dist": {
  5851. "type": "zip",
  5852. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/0317a769a81845c390e19684d9ba25d7f6aa4707",
  5853. "reference": "0317a769a81845c390e19684d9ba25d7f6aa4707",
  5854. "shasum": ""
  5855. },
  5856. "require": {
  5857. "ext-dom": "*",
  5858. "ext-xmlwriter": "*",
  5859. "php": "^7.2",
  5860. "phpunit/php-file-iterator": "^2.0.2",
  5861. "phpunit/php-text-template": "^1.2.1",
  5862. "phpunit/php-token-stream": "^3.0.1",
  5863. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5864. "sebastian/environment": "^4.1",
  5865. "sebastian/version": "^2.0.1",
  5866. "theseer/tokenizer": "^1.1"
  5867. },
  5868. "require-dev": {
  5869. "phpunit/phpunit": "^8.0"
  5870. },
  5871. "suggest": {
  5872. "ext-xdebug": "^2.6.1"
  5873. },
  5874. "type": "library",
  5875. "extra": {
  5876. "branch-alias": {
  5877. "dev-master": "7.0-dev"
  5878. }
  5879. },
  5880. "autoload": {
  5881. "classmap": [
  5882. "src/"
  5883. ]
  5884. },
  5885. "notification-url": "https://packagist.org/downloads/",
  5886. "license": [
  5887. "BSD-3-Clause"
  5888. ],
  5889. "authors": [
  5890. {
  5891. "name": "Sebastian Bergmann",
  5892. "email": "sebastian@phpunit.de",
  5893. "role": "lead"
  5894. }
  5895. ],
  5896. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5897. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5898. "keywords": [
  5899. "coverage",
  5900. "testing",
  5901. "xunit"
  5902. ],
  5903. "time": "2019-02-26T07:38:26+00:00"
  5904. },
  5905. {
  5906. "name": "phpunit/php-file-iterator",
  5907. "version": "2.0.2",
  5908. "source": {
  5909. "type": "git",
  5910. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5911. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  5912. },
  5913. "dist": {
  5914. "type": "zip",
  5915. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  5916. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  5917. "shasum": ""
  5918. },
  5919. "require": {
  5920. "php": "^7.1"
  5921. },
  5922. "require-dev": {
  5923. "phpunit/phpunit": "^7.1"
  5924. },
  5925. "type": "library",
  5926. "extra": {
  5927. "branch-alias": {
  5928. "dev-master": "2.0.x-dev"
  5929. }
  5930. },
  5931. "autoload": {
  5932. "classmap": [
  5933. "src/"
  5934. ]
  5935. },
  5936. "notification-url": "https://packagist.org/downloads/",
  5937. "license": [
  5938. "BSD-3-Clause"
  5939. ],
  5940. "authors": [
  5941. {
  5942. "name": "Sebastian Bergmann",
  5943. "email": "sebastian@phpunit.de",
  5944. "role": "lead"
  5945. }
  5946. ],
  5947. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5948. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5949. "keywords": [
  5950. "filesystem",
  5951. "iterator"
  5952. ],
  5953. "time": "2018-09-13T20:33:42+00:00"
  5954. },
  5955. {
  5956. "name": "phpunit/php-text-template",
  5957. "version": "1.2.1",
  5958. "source": {
  5959. "type": "git",
  5960. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5961. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5962. },
  5963. "dist": {
  5964. "type": "zip",
  5965. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5966. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5967. "shasum": ""
  5968. },
  5969. "require": {
  5970. "php": ">=5.3.3"
  5971. },
  5972. "type": "library",
  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": "Simple template engine.",
  5990. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5991. "keywords": [
  5992. "template"
  5993. ],
  5994. "time": "2015-06-21T13:50:34+00:00"
  5995. },
  5996. {
  5997. "name": "phpunit/php-timer",
  5998. "version": "2.1.1",
  5999. "source": {
  6000. "type": "git",
  6001. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6002. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059"
  6003. },
  6004. "dist": {
  6005. "type": "zip",
  6006. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059",
  6007. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059",
  6008. "shasum": ""
  6009. },
  6010. "require": {
  6011. "php": "^7.1"
  6012. },
  6013. "require-dev": {
  6014. "phpunit/phpunit": "^7.0"
  6015. },
  6016. "type": "library",
  6017. "extra": {
  6018. "branch-alias": {
  6019. "dev-master": "2.1-dev"
  6020. }
  6021. },
  6022. "autoload": {
  6023. "classmap": [
  6024. "src/"
  6025. ]
  6026. },
  6027. "notification-url": "https://packagist.org/downloads/",
  6028. "license": [
  6029. "BSD-3-Clause"
  6030. ],
  6031. "authors": [
  6032. {
  6033. "name": "Sebastian Bergmann",
  6034. "email": "sebastian@phpunit.de",
  6035. "role": "lead"
  6036. }
  6037. ],
  6038. "description": "Utility class for timing",
  6039. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6040. "keywords": [
  6041. "timer"
  6042. ],
  6043. "time": "2019-02-20T10:12:59+00:00"
  6044. },
  6045. {
  6046. "name": "phpunit/php-token-stream",
  6047. "version": "3.0.1",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  6051. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18",
  6056. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18",
  6057. "shasum": ""
  6058. },
  6059. "require": {
  6060. "ext-tokenizer": "*",
  6061. "php": "^7.1"
  6062. },
  6063. "require-dev": {
  6064. "phpunit/phpunit": "^7.0"
  6065. },
  6066. "type": "library",
  6067. "extra": {
  6068. "branch-alias": {
  6069. "dev-master": "3.0-dev"
  6070. }
  6071. },
  6072. "autoload": {
  6073. "classmap": [
  6074. "src/"
  6075. ]
  6076. },
  6077. "notification-url": "https://packagist.org/downloads/",
  6078. "license": [
  6079. "BSD-3-Clause"
  6080. ],
  6081. "authors": [
  6082. {
  6083. "name": "Sebastian Bergmann",
  6084. "email": "sebastian@phpunit.de"
  6085. }
  6086. ],
  6087. "description": "Wrapper around PHP's tokenizer extension.",
  6088. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6089. "keywords": [
  6090. "tokenizer"
  6091. ],
  6092. "time": "2018-10-30T05:52:18+00:00"
  6093. },
  6094. {
  6095. "name": "phpunit/phpunit",
  6096. "version": "8.0.6",
  6097. "source": {
  6098. "type": "git",
  6099. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6100. "reference": "925109f8bbe6dae28fbc7bb07446a53abd3b1c25"
  6101. },
  6102. "dist": {
  6103. "type": "zip",
  6104. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/925109f8bbe6dae28fbc7bb07446a53abd3b1c25",
  6105. "reference": "925109f8bbe6dae28fbc7bb07446a53abd3b1c25",
  6106. "shasum": ""
  6107. },
  6108. "require": {
  6109. "doctrine/instantiator": "^1.1",
  6110. "ext-dom": "*",
  6111. "ext-json": "*",
  6112. "ext-libxml": "*",
  6113. "ext-mbstring": "*",
  6114. "ext-xml": "*",
  6115. "ext-xmlwriter": "*",
  6116. "myclabs/deep-copy": "^1.7",
  6117. "phar-io/manifest": "^1.0.2",
  6118. "phar-io/version": "^2.0",
  6119. "php": "^7.2",
  6120. "phpspec/prophecy": "^1.7",
  6121. "phpunit/php-code-coverage": "^7.0",
  6122. "phpunit/php-file-iterator": "^2.0.1",
  6123. "phpunit/php-text-template": "^1.2.1",
  6124. "phpunit/php-timer": "^2.1",
  6125. "sebastian/comparator": "^3.0",
  6126. "sebastian/diff": "^3.0",
  6127. "sebastian/environment": "^4.1",
  6128. "sebastian/exporter": "^3.1",
  6129. "sebastian/global-state": "^3.0",
  6130. "sebastian/object-enumerator": "^3.0.3",
  6131. "sebastian/resource-operations": "^2.0",
  6132. "sebastian/version": "^2.0.1"
  6133. },
  6134. "require-dev": {
  6135. "ext-pdo": "*"
  6136. },
  6137. "suggest": {
  6138. "ext-soap": "*",
  6139. "ext-xdebug": "*",
  6140. "phpunit/php-invoker": "^2.0"
  6141. },
  6142. "bin": [
  6143. "phpunit"
  6144. ],
  6145. "type": "library",
  6146. "extra": {
  6147. "branch-alias": {
  6148. "dev-master": "8.0-dev"
  6149. }
  6150. },
  6151. "autoload": {
  6152. "classmap": [
  6153. "src/"
  6154. ]
  6155. },
  6156. "notification-url": "https://packagist.org/downloads/",
  6157. "license": [
  6158. "BSD-3-Clause"
  6159. ],
  6160. "authors": [
  6161. {
  6162. "name": "Sebastian Bergmann",
  6163. "email": "sebastian@phpunit.de",
  6164. "role": "lead"
  6165. }
  6166. ],
  6167. "description": "The PHP Unit Testing framework.",
  6168. "homepage": "https://phpunit.de/",
  6169. "keywords": [
  6170. "phpunit",
  6171. "testing",
  6172. "xunit"
  6173. ],
  6174. "time": "2019-03-26T14:00:24+00:00"
  6175. },
  6176. {
  6177. "name": "sebastian/code-unit-reverse-lookup",
  6178. "version": "1.0.1",
  6179. "source": {
  6180. "type": "git",
  6181. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6182. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  6183. },
  6184. "dist": {
  6185. "type": "zip",
  6186. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6187. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6188. "shasum": ""
  6189. },
  6190. "require": {
  6191. "php": "^5.6 || ^7.0"
  6192. },
  6193. "require-dev": {
  6194. "phpunit/phpunit": "^5.7 || ^6.0"
  6195. },
  6196. "type": "library",
  6197. "extra": {
  6198. "branch-alias": {
  6199. "dev-master": "1.0.x-dev"
  6200. }
  6201. },
  6202. "autoload": {
  6203. "classmap": [
  6204. "src/"
  6205. ]
  6206. },
  6207. "notification-url": "https://packagist.org/downloads/",
  6208. "license": [
  6209. "BSD-3-Clause"
  6210. ],
  6211. "authors": [
  6212. {
  6213. "name": "Sebastian Bergmann",
  6214. "email": "sebastian@phpunit.de"
  6215. }
  6216. ],
  6217. "description": "Looks up which function or method a line of code belongs to",
  6218. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6219. "time": "2017-03-04T06:30:41+00:00"
  6220. },
  6221. {
  6222. "name": "sebastian/comparator",
  6223. "version": "3.0.2",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/sebastianbergmann/comparator.git",
  6227. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6232. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6233. "shasum": ""
  6234. },
  6235. "require": {
  6236. "php": "^7.1",
  6237. "sebastian/diff": "^3.0",
  6238. "sebastian/exporter": "^3.1"
  6239. },
  6240. "require-dev": {
  6241. "phpunit/phpunit": "^7.1"
  6242. },
  6243. "type": "library",
  6244. "extra": {
  6245. "branch-alias": {
  6246. "dev-master": "3.0-dev"
  6247. }
  6248. },
  6249. "autoload": {
  6250. "classmap": [
  6251. "src/"
  6252. ]
  6253. },
  6254. "notification-url": "https://packagist.org/downloads/",
  6255. "license": [
  6256. "BSD-3-Clause"
  6257. ],
  6258. "authors": [
  6259. {
  6260. "name": "Jeff Welch",
  6261. "email": "whatthejeff@gmail.com"
  6262. },
  6263. {
  6264. "name": "Volker Dusch",
  6265. "email": "github@wallbash.com"
  6266. },
  6267. {
  6268. "name": "Bernhard Schussek",
  6269. "email": "bschussek@2bepublished.at"
  6270. },
  6271. {
  6272. "name": "Sebastian Bergmann",
  6273. "email": "sebastian@phpunit.de"
  6274. }
  6275. ],
  6276. "description": "Provides the functionality to compare PHP values for equality",
  6277. "homepage": "https://github.com/sebastianbergmann/comparator",
  6278. "keywords": [
  6279. "comparator",
  6280. "compare",
  6281. "equality"
  6282. ],
  6283. "time": "2018-07-12T15:12:46+00:00"
  6284. },
  6285. {
  6286. "name": "sebastian/diff",
  6287. "version": "3.0.2",
  6288. "source": {
  6289. "type": "git",
  6290. "url": "https://github.com/sebastianbergmann/diff.git",
  6291. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  6292. },
  6293. "dist": {
  6294. "type": "zip",
  6295. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6296. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6297. "shasum": ""
  6298. },
  6299. "require": {
  6300. "php": "^7.1"
  6301. },
  6302. "require-dev": {
  6303. "phpunit/phpunit": "^7.5 || ^8.0",
  6304. "symfony/process": "^2 || ^3.3 || ^4"
  6305. },
  6306. "type": "library",
  6307. "extra": {
  6308. "branch-alias": {
  6309. "dev-master": "3.0-dev"
  6310. }
  6311. },
  6312. "autoload": {
  6313. "classmap": [
  6314. "src/"
  6315. ]
  6316. },
  6317. "notification-url": "https://packagist.org/downloads/",
  6318. "license": [
  6319. "BSD-3-Clause"
  6320. ],
  6321. "authors": [
  6322. {
  6323. "name": "Kore Nordmann",
  6324. "email": "mail@kore-nordmann.de"
  6325. },
  6326. {
  6327. "name": "Sebastian Bergmann",
  6328. "email": "sebastian@phpunit.de"
  6329. }
  6330. ],
  6331. "description": "Diff implementation",
  6332. "homepage": "https://github.com/sebastianbergmann/diff",
  6333. "keywords": [
  6334. "diff",
  6335. "udiff",
  6336. "unidiff",
  6337. "unified diff"
  6338. ],
  6339. "time": "2019-02-04T06:01:07+00:00"
  6340. },
  6341. {
  6342. "name": "sebastian/environment",
  6343. "version": "4.1.0",
  6344. "source": {
  6345. "type": "git",
  6346. "url": "https://github.com/sebastianbergmann/environment.git",
  6347. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656"
  6348. },
  6349. "dist": {
  6350. "type": "zip",
  6351. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6fda8ce1974b62b14935adc02a9ed38252eca656",
  6352. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656",
  6353. "shasum": ""
  6354. },
  6355. "require": {
  6356. "php": "^7.1"
  6357. },
  6358. "require-dev": {
  6359. "phpunit/phpunit": "^7.5"
  6360. },
  6361. "suggest": {
  6362. "ext-posix": "*"
  6363. },
  6364. "type": "library",
  6365. "extra": {
  6366. "branch-alias": {
  6367. "dev-master": "4.1-dev"
  6368. }
  6369. },
  6370. "autoload": {
  6371. "classmap": [
  6372. "src/"
  6373. ]
  6374. },
  6375. "notification-url": "https://packagist.org/downloads/",
  6376. "license": [
  6377. "BSD-3-Clause"
  6378. ],
  6379. "authors": [
  6380. {
  6381. "name": "Sebastian Bergmann",
  6382. "email": "sebastian@phpunit.de"
  6383. }
  6384. ],
  6385. "description": "Provides functionality to handle HHVM/PHP environments",
  6386. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6387. "keywords": [
  6388. "Xdebug",
  6389. "environment",
  6390. "hhvm"
  6391. ],
  6392. "time": "2019-02-01T05:27:49+00:00"
  6393. },
  6394. {
  6395. "name": "sebastian/exporter",
  6396. "version": "3.1.0",
  6397. "source": {
  6398. "type": "git",
  6399. "url": "https://github.com/sebastianbergmann/exporter.git",
  6400. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  6401. },
  6402. "dist": {
  6403. "type": "zip",
  6404. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  6405. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  6406. "shasum": ""
  6407. },
  6408. "require": {
  6409. "php": "^7.0",
  6410. "sebastian/recursion-context": "^3.0"
  6411. },
  6412. "require-dev": {
  6413. "ext-mbstring": "*",
  6414. "phpunit/phpunit": "^6.0"
  6415. },
  6416. "type": "library",
  6417. "extra": {
  6418. "branch-alias": {
  6419. "dev-master": "3.1.x-dev"
  6420. }
  6421. },
  6422. "autoload": {
  6423. "classmap": [
  6424. "src/"
  6425. ]
  6426. },
  6427. "notification-url": "https://packagist.org/downloads/",
  6428. "license": [
  6429. "BSD-3-Clause"
  6430. ],
  6431. "authors": [
  6432. {
  6433. "name": "Jeff Welch",
  6434. "email": "whatthejeff@gmail.com"
  6435. },
  6436. {
  6437. "name": "Volker Dusch",
  6438. "email": "github@wallbash.com"
  6439. },
  6440. {
  6441. "name": "Bernhard Schussek",
  6442. "email": "bschussek@2bepublished.at"
  6443. },
  6444. {
  6445. "name": "Sebastian Bergmann",
  6446. "email": "sebastian@phpunit.de"
  6447. },
  6448. {
  6449. "name": "Adam Harvey",
  6450. "email": "aharvey@php.net"
  6451. }
  6452. ],
  6453. "description": "Provides the functionality to export PHP variables for visualization",
  6454. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6455. "keywords": [
  6456. "export",
  6457. "exporter"
  6458. ],
  6459. "time": "2017-04-03T13:19:02+00:00"
  6460. },
  6461. {
  6462. "name": "sebastian/global-state",
  6463. "version": "3.0.0",
  6464. "source": {
  6465. "type": "git",
  6466. "url": "https://github.com/sebastianbergmann/global-state.git",
  6467. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  6468. },
  6469. "dist": {
  6470. "type": "zip",
  6471. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  6472. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  6473. "shasum": ""
  6474. },
  6475. "require": {
  6476. "php": "^7.2",
  6477. "sebastian/object-reflector": "^1.1.1",
  6478. "sebastian/recursion-context": "^3.0"
  6479. },
  6480. "require-dev": {
  6481. "ext-dom": "*",
  6482. "phpunit/phpunit": "^8.0"
  6483. },
  6484. "suggest": {
  6485. "ext-uopz": "*"
  6486. },
  6487. "type": "library",
  6488. "extra": {
  6489. "branch-alias": {
  6490. "dev-master": "3.0-dev"
  6491. }
  6492. },
  6493. "autoload": {
  6494. "classmap": [
  6495. "src/"
  6496. ]
  6497. },
  6498. "notification-url": "https://packagist.org/downloads/",
  6499. "license": [
  6500. "BSD-3-Clause"
  6501. ],
  6502. "authors": [
  6503. {
  6504. "name": "Sebastian Bergmann",
  6505. "email": "sebastian@phpunit.de"
  6506. }
  6507. ],
  6508. "description": "Snapshotting of global state",
  6509. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6510. "keywords": [
  6511. "global state"
  6512. ],
  6513. "time": "2019-02-01T05:30:01+00:00"
  6514. },
  6515. {
  6516. "name": "sebastian/object-enumerator",
  6517. "version": "3.0.3",
  6518. "source": {
  6519. "type": "git",
  6520. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6521. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6522. },
  6523. "dist": {
  6524. "type": "zip",
  6525. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6526. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6527. "shasum": ""
  6528. },
  6529. "require": {
  6530. "php": "^7.0",
  6531. "sebastian/object-reflector": "^1.1.1",
  6532. "sebastian/recursion-context": "^3.0"
  6533. },
  6534. "require-dev": {
  6535. "phpunit/phpunit": "^6.0"
  6536. },
  6537. "type": "library",
  6538. "extra": {
  6539. "branch-alias": {
  6540. "dev-master": "3.0.x-dev"
  6541. }
  6542. },
  6543. "autoload": {
  6544. "classmap": [
  6545. "src/"
  6546. ]
  6547. },
  6548. "notification-url": "https://packagist.org/downloads/",
  6549. "license": [
  6550. "BSD-3-Clause"
  6551. ],
  6552. "authors": [
  6553. {
  6554. "name": "Sebastian Bergmann",
  6555. "email": "sebastian@phpunit.de"
  6556. }
  6557. ],
  6558. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6559. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6560. "time": "2017-08-03T12:35:26+00:00"
  6561. },
  6562. {
  6563. "name": "sebastian/object-reflector",
  6564. "version": "1.1.1",
  6565. "source": {
  6566. "type": "git",
  6567. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6568. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6569. },
  6570. "dist": {
  6571. "type": "zip",
  6572. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6573. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6574. "shasum": ""
  6575. },
  6576. "require": {
  6577. "php": "^7.0"
  6578. },
  6579. "require-dev": {
  6580. "phpunit/phpunit": "^6.0"
  6581. },
  6582. "type": "library",
  6583. "extra": {
  6584. "branch-alias": {
  6585. "dev-master": "1.1-dev"
  6586. }
  6587. },
  6588. "autoload": {
  6589. "classmap": [
  6590. "src/"
  6591. ]
  6592. },
  6593. "notification-url": "https://packagist.org/downloads/",
  6594. "license": [
  6595. "BSD-3-Clause"
  6596. ],
  6597. "authors": [
  6598. {
  6599. "name": "Sebastian Bergmann",
  6600. "email": "sebastian@phpunit.de"
  6601. }
  6602. ],
  6603. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6604. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6605. "time": "2017-03-29T09:07:27+00:00"
  6606. },
  6607. {
  6608. "name": "sebastian/recursion-context",
  6609. "version": "3.0.0",
  6610. "source": {
  6611. "type": "git",
  6612. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6613. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6614. },
  6615. "dist": {
  6616. "type": "zip",
  6617. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6618. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6619. "shasum": ""
  6620. },
  6621. "require": {
  6622. "php": "^7.0"
  6623. },
  6624. "require-dev": {
  6625. "phpunit/phpunit": "^6.0"
  6626. },
  6627. "type": "library",
  6628. "extra": {
  6629. "branch-alias": {
  6630. "dev-master": "3.0.x-dev"
  6631. }
  6632. },
  6633. "autoload": {
  6634. "classmap": [
  6635. "src/"
  6636. ]
  6637. },
  6638. "notification-url": "https://packagist.org/downloads/",
  6639. "license": [
  6640. "BSD-3-Clause"
  6641. ],
  6642. "authors": [
  6643. {
  6644. "name": "Jeff Welch",
  6645. "email": "whatthejeff@gmail.com"
  6646. },
  6647. {
  6648. "name": "Sebastian Bergmann",
  6649. "email": "sebastian@phpunit.de"
  6650. },
  6651. {
  6652. "name": "Adam Harvey",
  6653. "email": "aharvey@php.net"
  6654. }
  6655. ],
  6656. "description": "Provides functionality to recursively process PHP variables",
  6657. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6658. "time": "2017-03-03T06:23:57+00:00"
  6659. },
  6660. {
  6661. "name": "sebastian/resource-operations",
  6662. "version": "2.0.1",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6666. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6671. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6672. "shasum": ""
  6673. },
  6674. "require": {
  6675. "php": "^7.1"
  6676. },
  6677. "type": "library",
  6678. "extra": {
  6679. "branch-alias": {
  6680. "dev-master": "2.0-dev"
  6681. }
  6682. },
  6683. "autoload": {
  6684. "classmap": [
  6685. "src/"
  6686. ]
  6687. },
  6688. "notification-url": "https://packagist.org/downloads/",
  6689. "license": [
  6690. "BSD-3-Clause"
  6691. ],
  6692. "authors": [
  6693. {
  6694. "name": "Sebastian Bergmann",
  6695. "email": "sebastian@phpunit.de"
  6696. }
  6697. ],
  6698. "description": "Provides a list of PHP built-in functions that operate on resources",
  6699. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6700. "time": "2018-10-04T04:07:39+00:00"
  6701. },
  6702. {
  6703. "name": "sebastian/version",
  6704. "version": "2.0.1",
  6705. "source": {
  6706. "type": "git",
  6707. "url": "https://github.com/sebastianbergmann/version.git",
  6708. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6709. },
  6710. "dist": {
  6711. "type": "zip",
  6712. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6713. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6714. "shasum": ""
  6715. },
  6716. "require": {
  6717. "php": ">=5.6"
  6718. },
  6719. "type": "library",
  6720. "extra": {
  6721. "branch-alias": {
  6722. "dev-master": "2.0.x-dev"
  6723. }
  6724. },
  6725. "autoload": {
  6726. "classmap": [
  6727. "src/"
  6728. ]
  6729. },
  6730. "notification-url": "https://packagist.org/downloads/",
  6731. "license": [
  6732. "BSD-3-Clause"
  6733. ],
  6734. "authors": [
  6735. {
  6736. "name": "Sebastian Bergmann",
  6737. "email": "sebastian@phpunit.de",
  6738. "role": "lead"
  6739. }
  6740. ],
  6741. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6742. "homepage": "https://github.com/sebastianbergmann/version",
  6743. "time": "2016-10-03T07:35:21+00:00"
  6744. },
  6745. {
  6746. "name": "symfony/phpunit-bridge",
  6747. "version": "v4.2.8",
  6748. "source": {
  6749. "type": "git",
  6750. "url": "https://github.com/symfony/phpunit-bridge.git",
  6751. "reference": "31f2e3c10bc9bd955ca1ae3e4da2bb489205714a"
  6752. },
  6753. "dist": {
  6754. "type": "zip",
  6755. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/31f2e3c10bc9bd955ca1ae3e4da2bb489205714a",
  6756. "reference": "31f2e3c10bc9bd955ca1ae3e4da2bb489205714a",
  6757. "shasum": ""
  6758. },
  6759. "require": {
  6760. "php": ">=5.3.3"
  6761. },
  6762. "conflict": {
  6763. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  6764. },
  6765. "suggest": {
  6766. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  6767. },
  6768. "bin": [
  6769. "bin/simple-phpunit"
  6770. ],
  6771. "type": "symfony-bridge",
  6772. "extra": {
  6773. "branch-alias": {
  6774. "dev-master": "4.2-dev"
  6775. },
  6776. "thanks": {
  6777. "name": "phpunit/phpunit",
  6778. "url": "https://github.com/sebastianbergmann/phpunit"
  6779. }
  6780. },
  6781. "autoload": {
  6782. "files": [
  6783. "bootstrap.php"
  6784. ],
  6785. "psr-4": {
  6786. "Symfony\\Bridge\\PhpUnit\\": ""
  6787. },
  6788. "exclude-from-classmap": [
  6789. "/Tests/"
  6790. ]
  6791. },
  6792. "notification-url": "https://packagist.org/downloads/",
  6793. "license": [
  6794. "MIT"
  6795. ],
  6796. "authors": [
  6797. {
  6798. "name": "Nicolas Grekas",
  6799. "email": "p@tchwork.com"
  6800. },
  6801. {
  6802. "name": "Symfony Community",
  6803. "homepage": "https://symfony.com/contributors"
  6804. }
  6805. ],
  6806. "description": "Symfony PHPUnit Bridge",
  6807. "homepage": "https://symfony.com",
  6808. "time": "2019-04-23T14:37:24+00:00"
  6809. },
  6810. {
  6811. "name": "theseer/tokenizer",
  6812. "version": "1.1.2",
  6813. "source": {
  6814. "type": "git",
  6815. "url": "https://github.com/theseer/tokenizer.git",
  6816. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8"
  6817. },
  6818. "dist": {
  6819. "type": "zip",
  6820. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8",
  6821. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8",
  6822. "shasum": ""
  6823. },
  6824. "require": {
  6825. "ext-dom": "*",
  6826. "ext-tokenizer": "*",
  6827. "ext-xmlwriter": "*",
  6828. "php": "^7.0"
  6829. },
  6830. "type": "library",
  6831. "autoload": {
  6832. "classmap": [
  6833. "src/"
  6834. ]
  6835. },
  6836. "notification-url": "https://packagist.org/downloads/",
  6837. "license": [
  6838. "BSD-3-Clause"
  6839. ],
  6840. "authors": [
  6841. {
  6842. "name": "Arne Blankerts",
  6843. "email": "arne@blankerts.de",
  6844. "role": "Developer"
  6845. }
  6846. ],
  6847. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6848. "time": "2019-04-04T09:56:43+00:00"
  6849. },
  6850. {
  6851. "name": "webmozart/assert",
  6852. "version": "1.4.0",
  6853. "source": {
  6854. "type": "git",
  6855. "url": "https://github.com/webmozart/assert.git",
  6856. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  6857. },
  6858. "dist": {
  6859. "type": "zip",
  6860. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  6861. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  6862. "shasum": ""
  6863. },
  6864. "require": {
  6865. "php": "^5.3.3 || ^7.0",
  6866. "symfony/polyfill-ctype": "^1.8"
  6867. },
  6868. "require-dev": {
  6869. "phpunit/phpunit": "^4.6",
  6870. "sebastian/version": "^1.0.1"
  6871. },
  6872. "type": "library",
  6873. "extra": {
  6874. "branch-alias": {
  6875. "dev-master": "1.3-dev"
  6876. }
  6877. },
  6878. "autoload": {
  6879. "psr-4": {
  6880. "Webmozart\\Assert\\": "src/"
  6881. }
  6882. },
  6883. "notification-url": "https://packagist.org/downloads/",
  6884. "license": [
  6885. "MIT"
  6886. ],
  6887. "authors": [
  6888. {
  6889. "name": "Bernhard Schussek",
  6890. "email": "bschussek@gmail.com"
  6891. }
  6892. ],
  6893. "description": "Assertions to validate method input/output with nice error messages.",
  6894. "keywords": [
  6895. "assert",
  6896. "check",
  6897. "validate"
  6898. ],
  6899. "time": "2018-12-25T11:19:39+00:00"
  6900. }
  6901. ],
  6902. "aliases": [],
  6903. "minimum-stability": "stable",
  6904. "stability-flags": {
  6905. "composer/composer": 20
  6906. },
  6907. "prefer-stable": false,
  6908. "prefer-lowest": false,
  6909. "platform": {
  6910. "php": ">=7.3"
  6911. },
  6912. "platform-dev": [],
  6913. "platform-overrides": {
  6914. "php": "7.3.2"
  6915. }
  6916. }