composer.lock 256 KB

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