composer.lock 258 KB

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