composer.lock 257 KB

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