composer.lock 265 KB

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