composer.lock 238 KB

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