composer.lock 235 KB

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