composer.lock 244 KB

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