composer.lock 245 KB

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