composer.lock 309 KB

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