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