composer.lock 265 KB

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