composer.lock 242 KB

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