composer.lock 412 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471
  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": "afac9754e49e7dbd6c3cfd14393471ff",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2018-02-22T13:58:36+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "behat/mink",
  127. "version": "dev-master",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/minkphp/Mink.git",
  131. "reference": "a534fe7dac9525e8e10ca68e737c3d7e5058ec83"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/minkphp/Mink/zipball/a534fe7dac9525e8e10ca68e737c3d7e5058ec83",
  136. "reference": "a534fe7dac9525e8e10ca68e737c3d7e5058ec83",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.3.1",
  141. "symfony/css-selector": "^2.7|^3.0|^4.0"
  142. },
  143. "require-dev": {
  144. "symfony/phpunit-bridge": "^4.2"
  145. },
  146. "suggest": {
  147. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  148. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  149. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  150. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  151. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "1.7.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "Behat\\Mink\\": "src/"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Konstantin Kudryashov",
  171. "email": "ever.zet@gmail.com",
  172. "homepage": "http://everzet.com"
  173. }
  174. ],
  175. "description": "Browser controller/emulator abstraction for PHP",
  176. "homepage": "http://mink.behat.org/",
  177. "keywords": [
  178. "browser",
  179. "testing",
  180. "web"
  181. ],
  182. "time": "2019-07-15T12:45:29+00:00"
  183. },
  184. {
  185. "name": "behat/mink-browserkit-driver",
  186. "version": "1.3.3",
  187. "source": {
  188. "type": "git",
  189. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  190. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  191. },
  192. "dist": {
  193. "type": "zip",
  194. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  195. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  196. "shasum": ""
  197. },
  198. "require": {
  199. "behat/mink": "^1.7.1@dev",
  200. "php": ">=5.3.6",
  201. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  202. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  203. },
  204. "require-dev": {
  205. "mink/driver-testsuite": "dev-master",
  206. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  207. },
  208. "type": "mink-driver",
  209. "extra": {
  210. "branch-alias": {
  211. "dev-master": "1.3.x-dev"
  212. }
  213. },
  214. "autoload": {
  215. "psr-4": {
  216. "Behat\\Mink\\Driver\\": "src/"
  217. }
  218. },
  219. "notification-url": "https://packagist.org/downloads/",
  220. "license": [
  221. "MIT"
  222. ],
  223. "authors": [
  224. {
  225. "name": "Konstantin Kudryashov",
  226. "email": "ever.zet@gmail.com",
  227. "homepage": "http://everzet.com"
  228. }
  229. ],
  230. "description": "Symfony2 BrowserKit driver for Mink framework",
  231. "homepage": "http://mink.behat.org/",
  232. "keywords": [
  233. "Mink",
  234. "Symfony2",
  235. "browser",
  236. "testing"
  237. ],
  238. "time": "2018-05-02T09:25:31+00:00"
  239. },
  240. {
  241. "name": "behat/mink-goutte-driver",
  242. "version": "v1.2.1",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  246. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  251. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "behat/mink": "~1.6@dev",
  256. "behat/mink-browserkit-driver": "~1.2@dev",
  257. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  258. "php": ">=5.3.1"
  259. },
  260. "require-dev": {
  261. "symfony/phpunit-bridge": "~2.7|~3.0"
  262. },
  263. "type": "mink-driver",
  264. "extra": {
  265. "branch-alias": {
  266. "dev-master": "1.2.x-dev"
  267. }
  268. },
  269. "autoload": {
  270. "psr-4": {
  271. "Behat\\Mink\\Driver\\": "src/"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Konstantin Kudryashov",
  281. "email": "ever.zet@gmail.com",
  282. "homepage": "http://everzet.com"
  283. }
  284. ],
  285. "description": "Goutte driver for Mink framework",
  286. "homepage": "http://mink.behat.org/",
  287. "keywords": [
  288. "browser",
  289. "goutte",
  290. "headless",
  291. "testing"
  292. ],
  293. "time": "2016-03-05T09:04:22+00:00"
  294. },
  295. {
  296. "name": "behat/mink-selenium2-driver",
  297. "version": "dev-master",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  301. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  306. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  307. "shasum": ""
  308. },
  309. "require": {
  310. "behat/mink": "~1.7@dev",
  311. "instaclick/php-webdriver": "~1.1",
  312. "php": ">=5.4"
  313. },
  314. "require-dev": {
  315. "mink/driver-testsuite": "dev-master"
  316. },
  317. "type": "mink-driver",
  318. "extra": {
  319. "branch-alias": {
  320. "dev-master": "1.3.x-dev"
  321. }
  322. },
  323. "autoload": {
  324. "psr-4": {
  325. "Behat\\Mink\\Driver\\": "src/"
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "MIT"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Konstantin Kudryashov",
  335. "email": "ever.zet@gmail.com",
  336. "homepage": "http://everzet.com"
  337. },
  338. {
  339. "name": "Pete Otaqui",
  340. "email": "pete@otaqui.com",
  341. "homepage": "https://github.com/pete-otaqui"
  342. }
  343. ],
  344. "description": "Selenium2 (WebDriver) driver for Mink framework",
  345. "homepage": "http://mink.behat.org/",
  346. "keywords": [
  347. "ajax",
  348. "browser",
  349. "javascript",
  350. "selenium",
  351. "testing",
  352. "webdriver"
  353. ],
  354. "time": "2018-10-10T12:39:06+00:00"
  355. },
  356. {
  357. "name": "brumann/polyfill-unserialize",
  358. "version": "v1.0.4",
  359. "source": {
  360. "type": "git",
  361. "url": "https://github.com/dbrumann/polyfill-unserialize.git",
  362. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008"
  363. },
  364. "dist": {
  365. "type": "zip",
  366. "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  367. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  368. "shasum": ""
  369. },
  370. "require": {
  371. "php": "^5.3|^7.0"
  372. },
  373. "type": "library",
  374. "autoload": {
  375. "psr-4": {
  376. "Brumann\\Polyfill\\": "src/"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Denis Brumann",
  386. "email": "denis.brumann@sensiolabs.de"
  387. }
  388. ],
  389. "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
  390. "time": "2019-07-14T23:16:24+00:00"
  391. },
  392. {
  393. "name": "chi-teck/drupal-code-generator",
  394. "version": "1.30.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  398. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  403. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "ext-json": "*",
  408. "php": ">=5.5.9",
  409. "symfony/console": "^3.4 || ^4.0",
  410. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  411. "twig/twig": "^1.38.2 || ^2.10"
  412. },
  413. "bin": [
  414. "bin/dcg"
  415. ],
  416. "type": "library",
  417. "extra": {
  418. "branch-alias": {
  419. "dev-master": "1.x-dev"
  420. }
  421. },
  422. "autoload": {
  423. "files": [
  424. "src/bootstrap.php"
  425. ],
  426. "psr-4": {
  427. "DrupalCodeGenerator\\": "src"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "GPL-2.0-or-later"
  433. ],
  434. "description": "Drupal code generator",
  435. "time": "2019-10-27T14:27:26+00:00"
  436. },
  437. {
  438. "name": "composer/installers",
  439. "version": "v1.7.0",
  440. "source": {
  441. "type": "git",
  442. "url": "https://github.com/composer/installers.git",
  443. "reference": "141b272484481432cda342727a427dc1e206bfa0"
  444. },
  445. "dist": {
  446. "type": "zip",
  447. "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0",
  448. "reference": "141b272484481432cda342727a427dc1e206bfa0",
  449. "shasum": ""
  450. },
  451. "require": {
  452. "composer-plugin-api": "^1.0"
  453. },
  454. "replace": {
  455. "roundcube/plugin-installer": "*",
  456. "shama/baton": "*"
  457. },
  458. "require-dev": {
  459. "composer/composer": "1.0.*@dev",
  460. "phpunit/phpunit": "^4.8.36"
  461. },
  462. "type": "composer-plugin",
  463. "extra": {
  464. "class": "Composer\\Installers\\Plugin",
  465. "branch-alias": {
  466. "dev-master": "1.0-dev"
  467. }
  468. },
  469. "autoload": {
  470. "psr-4": {
  471. "Composer\\Installers\\": "src/Composer/Installers"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Kyle Robinson Young",
  481. "email": "kyle@dontkry.com",
  482. "homepage": "https://github.com/shama"
  483. }
  484. ],
  485. "description": "A multi-framework Composer library installer",
  486. "homepage": "https://composer.github.io/installers/",
  487. "keywords": [
  488. "Craft",
  489. "Dolibarr",
  490. "Eliasis",
  491. "Hurad",
  492. "ImageCMS",
  493. "Kanboard",
  494. "Lan Management System",
  495. "MODX Evo",
  496. "Mautic",
  497. "Maya",
  498. "OXID",
  499. "Plentymarkets",
  500. "Porto",
  501. "RadPHP",
  502. "SMF",
  503. "Thelia",
  504. "Whmcs",
  505. "WolfCMS",
  506. "agl",
  507. "aimeos",
  508. "annotatecms",
  509. "attogram",
  510. "bitrix",
  511. "cakephp",
  512. "chef",
  513. "cockpit",
  514. "codeigniter",
  515. "concrete5",
  516. "croogo",
  517. "dokuwiki",
  518. "drupal",
  519. "eZ Platform",
  520. "elgg",
  521. "expressionengine",
  522. "fuelphp",
  523. "grav",
  524. "installer",
  525. "itop",
  526. "joomla",
  527. "known",
  528. "kohana",
  529. "laravel",
  530. "lavalite",
  531. "lithium",
  532. "magento",
  533. "majima",
  534. "mako",
  535. "mediawiki",
  536. "modulework",
  537. "modx",
  538. "moodle",
  539. "osclass",
  540. "phpbb",
  541. "piwik",
  542. "ppi",
  543. "puppet",
  544. "pxcms",
  545. "reindex",
  546. "roundcube",
  547. "shopware",
  548. "silverstripe",
  549. "sydes",
  550. "symfony",
  551. "typo3",
  552. "wordpress",
  553. "yawik",
  554. "zend",
  555. "zikula"
  556. ],
  557. "time": "2019-08-12T15:00:31+00:00"
  558. },
  559. {
  560. "name": "composer/semver",
  561. "version": "1.5.0",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/composer/semver.git",
  565. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  570. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  571. "shasum": ""
  572. },
  573. "require": {
  574. "php": "^5.3.2 || ^7.0"
  575. },
  576. "require-dev": {
  577. "phpunit/phpunit": "^4.5 || ^5.0.5",
  578. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-master": "1.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Composer\\Semver\\": "src"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Nils Adermann",
  598. "email": "naderman@naderman.de",
  599. "homepage": "http://www.naderman.de"
  600. },
  601. {
  602. "name": "Jordi Boggiano",
  603. "email": "j.boggiano@seld.be",
  604. "homepage": "http://seld.be"
  605. },
  606. {
  607. "name": "Rob Bast",
  608. "email": "rob.bast@gmail.com",
  609. "homepage": "http://robbast.nl"
  610. }
  611. ],
  612. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  613. "keywords": [
  614. "semantic",
  615. "semver",
  616. "validation",
  617. "versioning"
  618. ],
  619. "time": "2019-03-19T17:25:45+00:00"
  620. },
  621. {
  622. "name": "consolidation/annotated-command",
  623. "version": "2.12.0",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/consolidation/annotated-command.git",
  627. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  632. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "consolidation/output-formatters": "^3.4",
  637. "php": ">=5.4.5",
  638. "psr/log": "^1",
  639. "symfony/console": "^2.8|^3|^4",
  640. "symfony/event-dispatcher": "^2.5|^3|^4",
  641. "symfony/finder": "^2.5|^3|^4"
  642. },
  643. "require-dev": {
  644. "g1a/composer-test-scenarios": "^3",
  645. "php-coveralls/php-coveralls": "^1",
  646. "phpunit/phpunit": "^6",
  647. "squizlabs/php_codesniffer": "^2.7"
  648. },
  649. "type": "library",
  650. "extra": {
  651. "scenarios": {
  652. "symfony4": {
  653. "require": {
  654. "symfony/console": "^4.0"
  655. },
  656. "config": {
  657. "platform": {
  658. "php": "7.1.3"
  659. }
  660. }
  661. },
  662. "symfony2": {
  663. "require": {
  664. "symfony/console": "^2.8"
  665. },
  666. "require-dev": {
  667. "phpunit/phpunit": "^4.8.36"
  668. },
  669. "remove": [
  670. "php-coveralls/php-coveralls"
  671. ],
  672. "config": {
  673. "platform": {
  674. "php": "5.4.8"
  675. }
  676. },
  677. "scenario-options": {
  678. "create-lockfile": "false"
  679. }
  680. },
  681. "phpunit4": {
  682. "require-dev": {
  683. "phpunit/phpunit": "^4.8.36"
  684. },
  685. "remove": [
  686. "php-coveralls/php-coveralls"
  687. ],
  688. "config": {
  689. "platform": {
  690. "php": "5.4.8"
  691. }
  692. }
  693. }
  694. },
  695. "branch-alias": {
  696. "dev-master": "2.x-dev"
  697. }
  698. },
  699. "autoload": {
  700. "psr-4": {
  701. "Consolidation\\AnnotatedCommand\\": "src"
  702. }
  703. },
  704. "notification-url": "https://packagist.org/downloads/",
  705. "license": [
  706. "MIT"
  707. ],
  708. "authors": [
  709. {
  710. "name": "Greg Anderson",
  711. "email": "greg.1.anderson@greenknowe.org"
  712. }
  713. ],
  714. "description": "Initialize Symfony Console commands from annotated command class methods.",
  715. "time": "2019-03-08T16:55:03+00:00"
  716. },
  717. {
  718. "name": "consolidation/config",
  719. "version": "1.2.1",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/consolidation/config.git",
  723. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  728. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  729. "shasum": ""
  730. },
  731. "require": {
  732. "dflydev/dot-access-data": "^1.1.0",
  733. "grasmash/expander": "^1",
  734. "php": ">=5.4.0"
  735. },
  736. "require-dev": {
  737. "g1a/composer-test-scenarios": "^3",
  738. "php-coveralls/php-coveralls": "^1",
  739. "phpunit/phpunit": "^5",
  740. "squizlabs/php_codesniffer": "2.*",
  741. "symfony/console": "^2.5|^3|^4",
  742. "symfony/yaml": "^2.8.11|^3|^4"
  743. },
  744. "suggest": {
  745. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "scenarios": {
  750. "symfony4": {
  751. "require-dev": {
  752. "symfony/console": "^4.0"
  753. },
  754. "config": {
  755. "platform": {
  756. "php": "7.1.3"
  757. }
  758. }
  759. },
  760. "symfony2": {
  761. "require-dev": {
  762. "symfony/console": "^2.8",
  763. "symfony/event-dispatcher": "^2.8",
  764. "phpunit/phpunit": "^4.8.36"
  765. },
  766. "remove": [
  767. "php-coveralls/php-coveralls"
  768. ],
  769. "config": {
  770. "platform": {
  771. "php": "5.4.8"
  772. }
  773. }
  774. }
  775. },
  776. "branch-alias": {
  777. "dev-master": "1.x-dev"
  778. }
  779. },
  780. "autoload": {
  781. "psr-4": {
  782. "Consolidation\\Config\\": "src"
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Greg Anderson",
  792. "email": "greg.1.anderson@greenknowe.org"
  793. }
  794. ],
  795. "description": "Provide configuration services for a commandline tool.",
  796. "time": "2019-03-03T19:37:04+00:00"
  797. },
  798. {
  799. "name": "consolidation/filter-via-dot-access-data",
  800. "version": "1.0.0",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  804. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  809. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "dflydev/dot-access-data": "^1.1.0",
  814. "php": ">=5.5.0"
  815. },
  816. "require-dev": {
  817. "consolidation/robo": "^1.2.3",
  818. "g1a/composer-test-scenarios": "^3",
  819. "knplabs/github-api": "^2.7",
  820. "php-coveralls/php-coveralls": "^1",
  821. "php-http/guzzle6-adapter": "^1.1",
  822. "phpunit/phpunit": "^5",
  823. "squizlabs/php_codesniffer": "^2.8",
  824. "symfony/console": "^2.8|^3|^4"
  825. },
  826. "type": "library",
  827. "extra": {
  828. "scenarios": {
  829. "phpunit5": {
  830. "require-dev": {
  831. "phpunit/phpunit": "^5.7.27"
  832. },
  833. "remove": [
  834. "php-coveralls/php-coveralls"
  835. ],
  836. "config": {
  837. "platform": {
  838. "php": "5.6.33"
  839. }
  840. }
  841. }
  842. },
  843. "branch-alias": {
  844. "dev-master": "1.x-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Consolidation\\Filter\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Greg Anderson",
  859. "email": "greg.1.anderson@greenknowe.org"
  860. }
  861. ],
  862. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  863. "time": "2019-01-18T06:05:07+00:00"
  864. },
  865. {
  866. "name": "consolidation/log",
  867. "version": "1.1.1",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/consolidation/log.git",
  871. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  876. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "php": ">=5.4.5",
  881. "psr/log": "^1.0",
  882. "symfony/console": "^2.8|^3|^4"
  883. },
  884. "require-dev": {
  885. "g1a/composer-test-scenarios": "^3",
  886. "php-coveralls/php-coveralls": "^1",
  887. "phpunit/phpunit": "^6",
  888. "squizlabs/php_codesniffer": "^2"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "scenarios": {
  893. "symfony4": {
  894. "require": {
  895. "symfony/console": "^4.0"
  896. },
  897. "config": {
  898. "platform": {
  899. "php": "7.1.3"
  900. }
  901. }
  902. },
  903. "symfony2": {
  904. "require": {
  905. "symfony/console": "^2.8"
  906. },
  907. "require-dev": {
  908. "phpunit/phpunit": "^4.8.36"
  909. },
  910. "remove": [
  911. "php-coveralls/php-coveralls"
  912. ],
  913. "config": {
  914. "platform": {
  915. "php": "5.4.8"
  916. }
  917. }
  918. },
  919. "phpunit4": {
  920. "require-dev": {
  921. "phpunit/phpunit": "^4.8.36"
  922. },
  923. "remove": [
  924. "php-coveralls/php-coveralls"
  925. ],
  926. "config": {
  927. "platform": {
  928. "php": "5.4.8"
  929. }
  930. }
  931. }
  932. },
  933. "branch-alias": {
  934. "dev-master": "1.x-dev"
  935. }
  936. },
  937. "autoload": {
  938. "psr-4": {
  939. "Consolidation\\Log\\": "src"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Greg Anderson",
  949. "email": "greg.1.anderson@greenknowe.org"
  950. }
  951. ],
  952. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  953. "time": "2019-01-01T17:30:51+00:00"
  954. },
  955. {
  956. "name": "consolidation/output-formatters",
  957. "version": "3.5.0",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/consolidation/output-formatters.git",
  961. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  966. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "dflydev/dot-access-data": "^1.1.0",
  971. "php": ">=5.4.0",
  972. "symfony/console": "^2.8|^3|^4",
  973. "symfony/finder": "^2.5|^3|^4"
  974. },
  975. "require-dev": {
  976. "g1a/composer-test-scenarios": "^3",
  977. "php-coveralls/php-coveralls": "^1",
  978. "phpunit/phpunit": "^5.7.27",
  979. "squizlabs/php_codesniffer": "^2.7",
  980. "symfony/var-dumper": "^2.8|^3|^4",
  981. "victorjonsson/markdowndocs": "^1.3"
  982. },
  983. "suggest": {
  984. "symfony/var-dumper": "For using the var_dump formatter"
  985. },
  986. "type": "library",
  987. "extra": {
  988. "scenarios": {
  989. "symfony4": {
  990. "require": {
  991. "symfony/console": "^4.0"
  992. },
  993. "require-dev": {
  994. "phpunit/phpunit": "^6"
  995. },
  996. "config": {
  997. "platform": {
  998. "php": "7.1.3"
  999. }
  1000. }
  1001. },
  1002. "symfony3": {
  1003. "require": {
  1004. "symfony/console": "^3.4",
  1005. "symfony/finder": "^3.4",
  1006. "symfony/var-dumper": "^3.4"
  1007. },
  1008. "config": {
  1009. "platform": {
  1010. "php": "5.6.32"
  1011. }
  1012. }
  1013. },
  1014. "symfony2": {
  1015. "require": {
  1016. "symfony/console": "^2.8"
  1017. },
  1018. "require-dev": {
  1019. "phpunit/phpunit": "^4.8.36"
  1020. },
  1021. "remove": [
  1022. "php-coveralls/php-coveralls"
  1023. ],
  1024. "config": {
  1025. "platform": {
  1026. "php": "5.4.8"
  1027. }
  1028. },
  1029. "scenario-options": {
  1030. "create-lockfile": "false"
  1031. }
  1032. }
  1033. },
  1034. "branch-alias": {
  1035. "dev-master": "3.x-dev"
  1036. }
  1037. },
  1038. "autoload": {
  1039. "psr-4": {
  1040. "Consolidation\\OutputFormatters\\": "src"
  1041. }
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "MIT"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Greg Anderson",
  1050. "email": "greg.1.anderson@greenknowe.org"
  1051. }
  1052. ],
  1053. "description": "Format text by applying transformations provided by plug-in formatters.",
  1054. "time": "2019-05-30T23:16:01+00:00"
  1055. },
  1056. {
  1057. "name": "consolidation/robo",
  1058. "version": "1.4.11",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/consolidation/Robo.git",
  1062. "reference": "5fa1d901776a628167a325baa9db95d8edf13a80"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/consolidation/Robo/zipball/5fa1d901776a628167a325baa9db95d8edf13a80",
  1067. "reference": "5fa1d901776a628167a325baa9db95d8edf13a80",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "consolidation/annotated-command": "^2.11.0",
  1072. "consolidation/config": "^1.2",
  1073. "consolidation/log": "~1",
  1074. "consolidation/output-formatters": "^3.1.13",
  1075. "consolidation/self-update": "^1",
  1076. "grasmash/yaml-expander": "^1.3",
  1077. "league/container": "^2.2",
  1078. "php": ">=5.5.0",
  1079. "symfony/console": "^2.8|^3|^4",
  1080. "symfony/event-dispatcher": "^2.5|^3|^4",
  1081. "symfony/filesystem": "^2.5|^3|^4",
  1082. "symfony/finder": "^2.5|^3|^4",
  1083. "symfony/process": "^2.5|^3|^4"
  1084. },
  1085. "replace": {
  1086. "codegyre/robo": "< 1.0"
  1087. },
  1088. "require-dev": {
  1089. "codeception/aspect-mock": "^1|^2.1.1",
  1090. "codeception/base": "^2.3.7",
  1091. "codeception/verify": "^0.3.2",
  1092. "g1a/composer-test-scenarios": "^3",
  1093. "goaop/framework": "~2.1.2",
  1094. "goaop/parser-reflection": "^1.1.0",
  1095. "natxet/cssmin": "3.0.4",
  1096. "nikic/php-parser": "^3.1.5",
  1097. "patchwork/jsqueeze": "~2",
  1098. "pear/archive_tar": "^1.4.4",
  1099. "php-coveralls/php-coveralls": "^1",
  1100. "phpunit/php-code-coverage": "~2|~4",
  1101. "sebastian/comparator": "^1.2.4",
  1102. "squizlabs/php_codesniffer": "^2.8"
  1103. },
  1104. "suggest": {
  1105. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  1106. "natxet/CssMin": "For minifying CSS files in taskMinify",
  1107. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  1108. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  1109. },
  1110. "bin": [
  1111. "robo"
  1112. ],
  1113. "type": "library",
  1114. "extra": {
  1115. "scenarios": {
  1116. "symfony4": {
  1117. "require": {
  1118. "symfony/console": "^4"
  1119. },
  1120. "config": {
  1121. "platform": {
  1122. "php": "7.1.3"
  1123. }
  1124. }
  1125. },
  1126. "symfony2": {
  1127. "require": {
  1128. "symfony/console": "^2.8"
  1129. },
  1130. "remove": [
  1131. "goaop/framework"
  1132. ],
  1133. "config": {
  1134. "platform": {
  1135. "php": "5.5.9"
  1136. }
  1137. },
  1138. "scenario-options": {
  1139. "create-lockfile": "false"
  1140. }
  1141. }
  1142. },
  1143. "branch-alias": {
  1144. "dev-master": "2.x-dev"
  1145. }
  1146. },
  1147. "autoload": {
  1148. "psr-4": {
  1149. "Robo\\": "src"
  1150. }
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Davert",
  1159. "email": "davert.php@resend.cc"
  1160. }
  1161. ],
  1162. "description": "Modern task runner",
  1163. "time": "2019-10-29T15:50:02+00:00"
  1164. },
  1165. {
  1166. "name": "consolidation/self-update",
  1167. "version": "1.1.5",
  1168. "source": {
  1169. "type": "git",
  1170. "url": "https://github.com/consolidation/self-update.git",
  1171. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  1172. },
  1173. "dist": {
  1174. "type": "zip",
  1175. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1176. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1177. "shasum": ""
  1178. },
  1179. "require": {
  1180. "php": ">=5.5.0",
  1181. "symfony/console": "^2.8|^3|^4",
  1182. "symfony/filesystem": "^2.5|^3|^4"
  1183. },
  1184. "bin": [
  1185. "scripts/release"
  1186. ],
  1187. "type": "library",
  1188. "extra": {
  1189. "branch-alias": {
  1190. "dev-master": "1.x-dev"
  1191. }
  1192. },
  1193. "autoload": {
  1194. "psr-4": {
  1195. "SelfUpdate\\": "src"
  1196. }
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "MIT"
  1201. ],
  1202. "authors": [
  1203. {
  1204. "name": "Greg Anderson",
  1205. "email": "greg.1.anderson@greenknowe.org"
  1206. },
  1207. {
  1208. "name": "Alexander Menk",
  1209. "email": "menk@mestrona.net"
  1210. }
  1211. ],
  1212. "description": "Provides a self:update command for Symfony Console applications.",
  1213. "time": "2018-10-28T01:52:03+00:00"
  1214. },
  1215. {
  1216. "name": "consolidation/site-alias",
  1217. "version": "3.0.0",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/consolidation/site-alias.git",
  1221. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1226. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "consolidation/config": "^1.2.1",
  1231. "php": ">=5.5.0"
  1232. },
  1233. "require-dev": {
  1234. "consolidation/robo": "^1.2.3",
  1235. "g1a/composer-test-scenarios": "^3",
  1236. "knplabs/github-api": "^2.7",
  1237. "php-coveralls/php-coveralls": "^1",
  1238. "php-http/guzzle6-adapter": "^1.1",
  1239. "phpunit/phpunit": "^6",
  1240. "squizlabs/php_codesniffer": "^2.8",
  1241. "symfony/console": "^2.8|^3|^4",
  1242. "symfony/yaml": "~2.3|^3"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "scenarios": {
  1247. "phpunit5": {
  1248. "require-dev": {
  1249. "phpunit/phpunit": "^5.7.27"
  1250. },
  1251. "remove": [
  1252. "php-coveralls/php-coveralls"
  1253. ],
  1254. "config": {
  1255. "platform": {
  1256. "php": "5.6.33"
  1257. }
  1258. }
  1259. }
  1260. },
  1261. "branch-alias": {
  1262. "dev-master": "3.x-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Consolidation\\SiteAlias\\": "src"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Moshe Weitzman",
  1277. "email": "weitzman@tejasa.com"
  1278. },
  1279. {
  1280. "name": "Greg Anderson",
  1281. "email": "greg.1.anderson@greenknowe.org"
  1282. }
  1283. ],
  1284. "description": "Manage alias records for local and remote sites.",
  1285. "time": "2019-03-12T17:31:48+00:00"
  1286. },
  1287. {
  1288. "name": "consolidation/site-process",
  1289. "version": "2.1.0",
  1290. "source": {
  1291. "type": "git",
  1292. "url": "https://github.com/consolidation/site-process.git",
  1293. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1294. },
  1295. "dist": {
  1296. "type": "zip",
  1297. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1298. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1299. "shasum": ""
  1300. },
  1301. "require": {
  1302. "consolidation/config": "^1.2.1",
  1303. "consolidation/site-alias": "^3",
  1304. "php": ">=5.6.0",
  1305. "symfony/process": "^3.4"
  1306. },
  1307. "require-dev": {
  1308. "consolidation/robo": "^1.3",
  1309. "g1a/composer-test-scenarios": "^3",
  1310. "knplabs/github-api": "^2.7",
  1311. "php-coveralls/php-coveralls": "^1",
  1312. "php-http/guzzle6-adapter": "^1.1",
  1313. "phpunit/phpunit": "^6",
  1314. "squizlabs/php_codesniffer": "^2.8"
  1315. },
  1316. "type": "library",
  1317. "extra": {
  1318. "scenarios": {
  1319. "phpunit5": {
  1320. "require-dev": {
  1321. "phpunit/phpunit": "^5.7.27"
  1322. },
  1323. "remove": [
  1324. "php-coveralls/php-coveralls"
  1325. ],
  1326. "config": {
  1327. "platform": {
  1328. "php": "5.6.33"
  1329. }
  1330. }
  1331. }
  1332. },
  1333. "branch-alias": {
  1334. "dev-master": "0.x-dev"
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Consolidation\\SiteProcess\\": "src"
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Greg Anderson",
  1349. "email": "greg.1.anderson@greenknowe.org"
  1350. },
  1351. {
  1352. "name": "Moshe Weitzman",
  1353. "email": "weitzman@tejasa.com"
  1354. }
  1355. ],
  1356. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  1357. "time": "2019-09-10T17:56:24+00:00"
  1358. },
  1359. {
  1360. "name": "container-interop/container-interop",
  1361. "version": "1.2.0",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/container-interop/container-interop.git",
  1365. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1370. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "psr/container": "^1.0"
  1375. },
  1376. "type": "library",
  1377. "autoload": {
  1378. "psr-4": {
  1379. "Interop\\Container\\": "src/Interop/Container/"
  1380. }
  1381. },
  1382. "notification-url": "https://packagist.org/downloads/",
  1383. "license": [
  1384. "MIT"
  1385. ],
  1386. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1387. "homepage": "https://github.com/container-interop/container-interop",
  1388. "time": "2017-02-14T19:40:03+00:00"
  1389. },
  1390. {
  1391. "name": "cweagans/composer-patches",
  1392. "version": "1.6.7",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/cweagans/composer-patches.git",
  1396. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1401. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1402. "shasum": ""
  1403. },
  1404. "require": {
  1405. "composer-plugin-api": "^1.0",
  1406. "php": ">=5.3.0"
  1407. },
  1408. "require-dev": {
  1409. "composer/composer": "~1.0",
  1410. "phpunit/phpunit": "~4.6"
  1411. },
  1412. "type": "composer-plugin",
  1413. "extra": {
  1414. "class": "cweagans\\Composer\\Patches"
  1415. },
  1416. "autoload": {
  1417. "psr-4": {
  1418. "cweagans\\Composer\\": "src"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "BSD-3-Clause"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Cameron Eagans",
  1428. "email": "me@cweagans.net"
  1429. }
  1430. ],
  1431. "description": "Provides a way to patch Composer packages.",
  1432. "time": "2019-08-29T20:11:49+00:00"
  1433. },
  1434. {
  1435. "name": "dflydev/dot-access-configuration",
  1436. "version": "v1.0.3",
  1437. "source": {
  1438. "type": "git",
  1439. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1440. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1441. },
  1442. "dist": {
  1443. "type": "zip",
  1444. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1445. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1446. "shasum": ""
  1447. },
  1448. "require": {
  1449. "dflydev/dot-access-data": "1.*",
  1450. "dflydev/placeholder-resolver": "1.*",
  1451. "php": ">=5.3.2"
  1452. },
  1453. "require-dev": {
  1454. "symfony/yaml": "~2.1"
  1455. },
  1456. "suggest": {
  1457. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1458. },
  1459. "type": "library",
  1460. "extra": {
  1461. "branch-alias": {
  1462. "dev-master": "1.0-dev"
  1463. }
  1464. },
  1465. "autoload": {
  1466. "psr-0": {
  1467. "Dflydev\\DotAccessConfiguration": "src"
  1468. }
  1469. },
  1470. "notification-url": "https://packagist.org/downloads/",
  1471. "license": [
  1472. "MIT"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Dragonfly Development Inc.",
  1477. "email": "info@dflydev.com",
  1478. "homepage": "http://dflydev.com"
  1479. },
  1480. {
  1481. "name": "Beau Simensen",
  1482. "email": "beau@dflydev.com",
  1483. "homepage": "http://beausimensen.com"
  1484. }
  1485. ],
  1486. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1487. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1488. "keywords": [
  1489. "config",
  1490. "configuration"
  1491. ],
  1492. "time": "2018-09-08T23:00:17+00:00"
  1493. },
  1494. {
  1495. "name": "dflydev/dot-access-data",
  1496. "version": "v1.1.0",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1500. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1505. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "php": ">=5.3.2"
  1510. },
  1511. "type": "library",
  1512. "extra": {
  1513. "branch-alias": {
  1514. "dev-master": "1.0-dev"
  1515. }
  1516. },
  1517. "autoload": {
  1518. "psr-0": {
  1519. "Dflydev\\DotAccessData": "src"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "Dragonfly Development Inc.",
  1529. "email": "info@dflydev.com",
  1530. "homepage": "http://dflydev.com"
  1531. },
  1532. {
  1533. "name": "Beau Simensen",
  1534. "email": "beau@dflydev.com",
  1535. "homepage": "http://beausimensen.com"
  1536. },
  1537. {
  1538. "name": "Carlos Frutos",
  1539. "email": "carlos@kiwing.it",
  1540. "homepage": "https://github.com/cfrutos"
  1541. }
  1542. ],
  1543. "description": "Given a deep data structure, access data by dot notation.",
  1544. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1545. "keywords": [
  1546. "access",
  1547. "data",
  1548. "dot",
  1549. "notation"
  1550. ],
  1551. "time": "2017-01-20T21:14:22+00:00"
  1552. },
  1553. {
  1554. "name": "dflydev/placeholder-resolver",
  1555. "version": "v1.0.2",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1559. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1564. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "php": ">=5.3.2"
  1569. },
  1570. "type": "library",
  1571. "extra": {
  1572. "branch-alias": {
  1573. "dev-master": "1.0-dev"
  1574. }
  1575. },
  1576. "autoload": {
  1577. "psr-0": {
  1578. "Dflydev\\PlaceholderResolver": "src"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Dragonfly Development Inc.",
  1588. "email": "info@dflydev.com",
  1589. "homepage": "http://dflydev.com"
  1590. },
  1591. {
  1592. "name": "Beau Simensen",
  1593. "email": "beau@dflydev.com",
  1594. "homepage": "http://beausimensen.com"
  1595. }
  1596. ],
  1597. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1598. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1599. "keywords": [
  1600. "placeholder",
  1601. "resolver"
  1602. ],
  1603. "time": "2012-10-28T21:08:28+00:00"
  1604. },
  1605. {
  1606. "name": "dnoegel/php-xdg-base-dir",
  1607. "version": "0.1",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1611. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1616. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": ">=5.3.2"
  1621. },
  1622. "require-dev": {
  1623. "phpunit/phpunit": "@stable"
  1624. },
  1625. "type": "project",
  1626. "autoload": {
  1627. "psr-4": {
  1628. "XdgBaseDir\\": "src/"
  1629. }
  1630. },
  1631. "notification-url": "https://packagist.org/downloads/",
  1632. "license": [
  1633. "MIT"
  1634. ],
  1635. "description": "implementation of xdg base directory specification for php",
  1636. "time": "2014-10-24T07:27:01+00:00"
  1637. },
  1638. {
  1639. "name": "doctrine/annotations",
  1640. "version": "v1.4.0",
  1641. "source": {
  1642. "type": "git",
  1643. "url": "https://github.com/doctrine/annotations.git",
  1644. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1645. },
  1646. "dist": {
  1647. "type": "zip",
  1648. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1649. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1650. "shasum": ""
  1651. },
  1652. "require": {
  1653. "doctrine/lexer": "1.*",
  1654. "php": "^5.6 || ^7.0"
  1655. },
  1656. "require-dev": {
  1657. "doctrine/cache": "1.*",
  1658. "phpunit/phpunit": "^5.7"
  1659. },
  1660. "type": "library",
  1661. "extra": {
  1662. "branch-alias": {
  1663. "dev-master": "1.4.x-dev"
  1664. }
  1665. },
  1666. "autoload": {
  1667. "psr-4": {
  1668. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1669. }
  1670. },
  1671. "notification-url": "https://packagist.org/downloads/",
  1672. "license": [
  1673. "MIT"
  1674. ],
  1675. "authors": [
  1676. {
  1677. "name": "Roman Borschel",
  1678. "email": "roman@code-factory.org"
  1679. },
  1680. {
  1681. "name": "Benjamin Eberlei",
  1682. "email": "kontakt@beberlei.de"
  1683. },
  1684. {
  1685. "name": "Guilherme Blanco",
  1686. "email": "guilhermeblanco@gmail.com"
  1687. },
  1688. {
  1689. "name": "Jonathan Wage",
  1690. "email": "jonwage@gmail.com"
  1691. },
  1692. {
  1693. "name": "Johannes Schmitt",
  1694. "email": "schmittjoh@gmail.com"
  1695. }
  1696. ],
  1697. "description": "Docblock Annotations Parser",
  1698. "homepage": "http://www.doctrine-project.org",
  1699. "keywords": [
  1700. "annotations",
  1701. "docblock",
  1702. "parser"
  1703. ],
  1704. "time": "2017-02-24T16:22:25+00:00"
  1705. },
  1706. {
  1707. "name": "doctrine/cache",
  1708. "version": "v1.6.2",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/doctrine/cache.git",
  1712. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1717. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1718. "shasum": ""
  1719. },
  1720. "require": {
  1721. "php": "~5.5|~7.0"
  1722. },
  1723. "conflict": {
  1724. "doctrine/common": ">2.2,<2.4"
  1725. },
  1726. "require-dev": {
  1727. "phpunit/phpunit": "~4.8|~5.0",
  1728. "predis/predis": "~1.0",
  1729. "satooshi/php-coveralls": "~0.6"
  1730. },
  1731. "type": "library",
  1732. "extra": {
  1733. "branch-alias": {
  1734. "dev-master": "1.6.x-dev"
  1735. }
  1736. },
  1737. "autoload": {
  1738. "psr-4": {
  1739. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1740. }
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "Roman Borschel",
  1749. "email": "roman@code-factory.org"
  1750. },
  1751. {
  1752. "name": "Benjamin Eberlei",
  1753. "email": "kontakt@beberlei.de"
  1754. },
  1755. {
  1756. "name": "Guilherme Blanco",
  1757. "email": "guilhermeblanco@gmail.com"
  1758. },
  1759. {
  1760. "name": "Jonathan Wage",
  1761. "email": "jonwage@gmail.com"
  1762. },
  1763. {
  1764. "name": "Johannes Schmitt",
  1765. "email": "schmittjoh@gmail.com"
  1766. }
  1767. ],
  1768. "description": "Caching library offering an object-oriented API for many cache backends",
  1769. "homepage": "http://www.doctrine-project.org",
  1770. "keywords": [
  1771. "cache",
  1772. "caching"
  1773. ],
  1774. "time": "2017-07-22T12:49:21+00:00"
  1775. },
  1776. {
  1777. "name": "doctrine/collections",
  1778. "version": "v1.4.0",
  1779. "source": {
  1780. "type": "git",
  1781. "url": "https://github.com/doctrine/collections.git",
  1782. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1783. },
  1784. "dist": {
  1785. "type": "zip",
  1786. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1787. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1788. "shasum": ""
  1789. },
  1790. "require": {
  1791. "php": "^5.6 || ^7.0"
  1792. },
  1793. "require-dev": {
  1794. "doctrine/coding-standard": "~0.1@dev",
  1795. "phpunit/phpunit": "^5.7"
  1796. },
  1797. "type": "library",
  1798. "extra": {
  1799. "branch-alias": {
  1800. "dev-master": "1.3.x-dev"
  1801. }
  1802. },
  1803. "autoload": {
  1804. "psr-0": {
  1805. "Doctrine\\Common\\Collections\\": "lib/"
  1806. }
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "MIT"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Roman Borschel",
  1815. "email": "roman@code-factory.org"
  1816. },
  1817. {
  1818. "name": "Benjamin Eberlei",
  1819. "email": "kontakt@beberlei.de"
  1820. },
  1821. {
  1822. "name": "Guilherme Blanco",
  1823. "email": "guilhermeblanco@gmail.com"
  1824. },
  1825. {
  1826. "name": "Jonathan Wage",
  1827. "email": "jonwage@gmail.com"
  1828. },
  1829. {
  1830. "name": "Johannes Schmitt",
  1831. "email": "schmittjoh@gmail.com"
  1832. }
  1833. ],
  1834. "description": "Collections Abstraction library",
  1835. "homepage": "http://www.doctrine-project.org",
  1836. "keywords": [
  1837. "array",
  1838. "collections",
  1839. "iterator"
  1840. ],
  1841. "time": "2017-01-03T10:49:41+00:00"
  1842. },
  1843. {
  1844. "name": "doctrine/common",
  1845. "version": "v2.7.3",
  1846. "source": {
  1847. "type": "git",
  1848. "url": "https://github.com/doctrine/common.git",
  1849. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1850. },
  1851. "dist": {
  1852. "type": "zip",
  1853. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1854. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1855. "shasum": ""
  1856. },
  1857. "require": {
  1858. "doctrine/annotations": "1.*",
  1859. "doctrine/cache": "1.*",
  1860. "doctrine/collections": "1.*",
  1861. "doctrine/inflector": "1.*",
  1862. "doctrine/lexer": "1.*",
  1863. "php": "~5.6|~7.0"
  1864. },
  1865. "require-dev": {
  1866. "phpunit/phpunit": "^5.4.6"
  1867. },
  1868. "type": "library",
  1869. "extra": {
  1870. "branch-alias": {
  1871. "dev-master": "2.7.x-dev"
  1872. }
  1873. },
  1874. "autoload": {
  1875. "psr-4": {
  1876. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1877. }
  1878. },
  1879. "notification-url": "https://packagist.org/downloads/",
  1880. "license": [
  1881. "MIT"
  1882. ],
  1883. "authors": [
  1884. {
  1885. "name": "Roman Borschel",
  1886. "email": "roman@code-factory.org"
  1887. },
  1888. {
  1889. "name": "Benjamin Eberlei",
  1890. "email": "kontakt@beberlei.de"
  1891. },
  1892. {
  1893. "name": "Guilherme Blanco",
  1894. "email": "guilhermeblanco@gmail.com"
  1895. },
  1896. {
  1897. "name": "Jonathan Wage",
  1898. "email": "jonwage@gmail.com"
  1899. },
  1900. {
  1901. "name": "Johannes Schmitt",
  1902. "email": "schmittjoh@gmail.com"
  1903. }
  1904. ],
  1905. "description": "Common Library for Doctrine projects",
  1906. "homepage": "http://www.doctrine-project.org",
  1907. "keywords": [
  1908. "annotations",
  1909. "collections",
  1910. "eventmanager",
  1911. "persistence",
  1912. "spl"
  1913. ],
  1914. "time": "2017-07-22T08:35:12+00:00"
  1915. },
  1916. {
  1917. "name": "doctrine/inflector",
  1918. "version": "v1.2.0",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/doctrine/inflector.git",
  1922. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1927. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1928. "shasum": ""
  1929. },
  1930. "require": {
  1931. "php": "^7.0"
  1932. },
  1933. "require-dev": {
  1934. "phpunit/phpunit": "^6.2"
  1935. },
  1936. "type": "library",
  1937. "extra": {
  1938. "branch-alias": {
  1939. "dev-master": "1.2.x-dev"
  1940. }
  1941. },
  1942. "autoload": {
  1943. "psr-4": {
  1944. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1945. }
  1946. },
  1947. "notification-url": "https://packagist.org/downloads/",
  1948. "license": [
  1949. "MIT"
  1950. ],
  1951. "authors": [
  1952. {
  1953. "name": "Roman Borschel",
  1954. "email": "roman@code-factory.org"
  1955. },
  1956. {
  1957. "name": "Benjamin Eberlei",
  1958. "email": "kontakt@beberlei.de"
  1959. },
  1960. {
  1961. "name": "Guilherme Blanco",
  1962. "email": "guilhermeblanco@gmail.com"
  1963. },
  1964. {
  1965. "name": "Jonathan Wage",
  1966. "email": "jonwage@gmail.com"
  1967. },
  1968. {
  1969. "name": "Johannes Schmitt",
  1970. "email": "schmittjoh@gmail.com"
  1971. }
  1972. ],
  1973. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1974. "homepage": "http://www.doctrine-project.org",
  1975. "keywords": [
  1976. "inflection",
  1977. "pluralize",
  1978. "singularize",
  1979. "string"
  1980. ],
  1981. "time": "2017-07-22T12:18:28+00:00"
  1982. },
  1983. {
  1984. "name": "doctrine/instantiator",
  1985. "version": "1.0.5",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/doctrine/instantiator.git",
  1989. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1994. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1995. "shasum": ""
  1996. },
  1997. "require": {
  1998. "php": ">=5.3,<8.0-DEV"
  1999. },
  2000. "require-dev": {
  2001. "athletic/athletic": "~0.1.8",
  2002. "ext-pdo": "*",
  2003. "ext-phar": "*",
  2004. "phpunit/phpunit": "~4.0",
  2005. "squizlabs/php_codesniffer": "~2.0"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "1.0.x-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "MIT"
  2021. ],
  2022. "authors": [
  2023. {
  2024. "name": "Marco Pivetta",
  2025. "email": "ocramius@gmail.com",
  2026. "homepage": "http://ocramius.github.com/"
  2027. }
  2028. ],
  2029. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2030. "homepage": "https://github.com/doctrine/instantiator",
  2031. "keywords": [
  2032. "constructor",
  2033. "instantiate"
  2034. ],
  2035. "time": "2015-06-14T21:17:01+00:00"
  2036. },
  2037. {
  2038. "name": "doctrine/lexer",
  2039. "version": "1.0.2",
  2040. "source": {
  2041. "type": "git",
  2042. "url": "https://github.com/doctrine/lexer.git",
  2043. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  2044. },
  2045. "dist": {
  2046. "type": "zip",
  2047. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2048. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2049. "shasum": ""
  2050. },
  2051. "require": {
  2052. "php": ">=5.3.2"
  2053. },
  2054. "require-dev": {
  2055. "phpunit/phpunit": "^4.5"
  2056. },
  2057. "type": "library",
  2058. "extra": {
  2059. "branch-alias": {
  2060. "dev-master": "1.0.x-dev"
  2061. }
  2062. },
  2063. "autoload": {
  2064. "psr-4": {
  2065. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  2066. }
  2067. },
  2068. "notification-url": "https://packagist.org/downloads/",
  2069. "license": [
  2070. "MIT"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "Roman Borschel",
  2075. "email": "roman@code-factory.org"
  2076. },
  2077. {
  2078. "name": "Guilherme Blanco",
  2079. "email": "guilhermeblanco@gmail.com"
  2080. },
  2081. {
  2082. "name": "Johannes Schmitt",
  2083. "email": "schmittjoh@gmail.com"
  2084. }
  2085. ],
  2086. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  2087. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  2088. "keywords": [
  2089. "annotations",
  2090. "docblock",
  2091. "lexer",
  2092. "parser",
  2093. "php"
  2094. ],
  2095. "time": "2019-06-08T11:03:04+00:00"
  2096. },
  2097. {
  2098. "name": "drupal-composer/drupal-scaffold",
  2099. "version": "2.6.1",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  2103. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2108. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "composer-plugin-api": "^1.0.0",
  2113. "composer/semver": "^1.4",
  2114. "php": "^5.5.9|>=7.0.8"
  2115. },
  2116. "require-dev": {
  2117. "composer/composer": "dev-master",
  2118. "g1a/composer-test-scenarios": "^2.1.0",
  2119. "phpunit/phpunit": "^6",
  2120. "squizlabs/php_codesniffer": "^2.8"
  2121. },
  2122. "type": "composer-plugin",
  2123. "extra": {
  2124. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  2125. "branch-alias": {
  2126. "dev-master": "2.0.x-dev"
  2127. }
  2128. },
  2129. "autoload": {
  2130. "psr-4": {
  2131. "DrupalComposer\\DrupalScaffold\\": "src/"
  2132. }
  2133. },
  2134. "notification-url": "https://packagist.org/downloads/",
  2135. "license": [
  2136. "GPL-2.0-or-later"
  2137. ],
  2138. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  2139. "time": "2019-03-30T10:41:38+00:00"
  2140. },
  2141. {
  2142. "name": "drupal/addtoany",
  2143. "version": "1.12.0",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://git.drupalcode.org/project/addtoany.git",
  2147. "reference": "8.x-1.12"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  2152. "reference": "8.x-1.12",
  2153. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  2154. },
  2155. "require": {
  2156. "drupal/core": "*"
  2157. },
  2158. "type": "drupal-module",
  2159. "extra": {
  2160. "branch-alias": {
  2161. "dev-1.x": "1.x-dev"
  2162. },
  2163. "drupal": {
  2164. "version": "8.x-1.12",
  2165. "datestamp": "1554702781",
  2166. "security-coverage": {
  2167. "status": "covered",
  2168. "message": "Covered by Drupal's security advisory policy"
  2169. }
  2170. }
  2171. },
  2172. "notification-url": "https://packages.drupal.org/8/downloads",
  2173. "license": [
  2174. "GPL-2.0-or-later"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "AddToAny",
  2179. "homepage": "https://www.drupal.org/user/2640913"
  2180. },
  2181. {
  2182. "name": "micropat",
  2183. "homepage": "https://www.drupal.org/user/260224"
  2184. }
  2185. ],
  2186. "description": "Share buttons by AddToAny, including the AddToAny universal sharing button, Facebook, Twitter, Google+, Pinterest, and over 100 more on the <a href=\"https://www.addtoany.com/\" target=\"_blank\">AddToAny</a> platform.",
  2187. "homepage": "https://www.drupal.org/project/addtoany",
  2188. "support": {
  2189. "source": "https://git.drupalcode.org/project/addtoany"
  2190. }
  2191. },
  2192. {
  2193. "name": "drupal/admin_toolbar",
  2194. "version": "2.0.0",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2198. "reference": "8.x-2.0"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.0.zip",
  2203. "reference": "8.x-2.0",
  2204. "shasum": "568de63dbaa8046a82d327dbd0b892ab79fb87aa"
  2205. },
  2206. "require": {
  2207. "drupal/core": "*"
  2208. },
  2209. "type": "drupal-module",
  2210. "extra": {
  2211. "branch-alias": {
  2212. "dev-2.x": "2.x-dev"
  2213. },
  2214. "drupal": {
  2215. "version": "8.x-2.0",
  2216. "datestamp": "1572370984",
  2217. "security-coverage": {
  2218. "status": "covered",
  2219. "message": "Covered by Drupal's security advisory policy"
  2220. }
  2221. }
  2222. },
  2223. "notification-url": "https://packages.drupal.org/8/downloads",
  2224. "license": [
  2225. "GPL-2.0+"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "Wilfrid Roze (eme)",
  2230. "homepage": "https://www.drupal.org/u/eme",
  2231. "role": "Maintainer"
  2232. },
  2233. {
  2234. "name": "Romain Jarraud (romainj)",
  2235. "homepage": "https://www.drupal.org/u/romainj",
  2236. "role": "Maintainer"
  2237. },
  2238. {
  2239. "name": "Adrian Cid Almaguer (adriancid)",
  2240. "homepage": "https://www.drupal.org/u/adriancid",
  2241. "email": "adriancid@gmail.com",
  2242. "role": "Maintainer"
  2243. },
  2244. {
  2245. "name": "Mohamed Anis Taktak (matio89)",
  2246. "homepage": "https://www.drupal.org/u/matio89",
  2247. "role": "Maintainer"
  2248. },
  2249. {
  2250. "name": "fethi.krout",
  2251. "homepage": "https://www.drupal.org/user/3206765"
  2252. },
  2253. {
  2254. "name": "matio89",
  2255. "homepage": "https://www.drupal.org/user/2320090"
  2256. },
  2257. {
  2258. "name": "romainj",
  2259. "homepage": "https://www.drupal.org/user/370706"
  2260. }
  2261. ],
  2262. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2263. "homepage": "http://drupal.org/project/admin_toolbar",
  2264. "keywords": [
  2265. "Drupal",
  2266. "Toolbar"
  2267. ],
  2268. "support": {
  2269. "source": "http://cgit.drupalcode.org/admin_toolbar",
  2270. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2271. }
  2272. },
  2273. {
  2274. "name": "drupal/adminimal_theme",
  2275. "version": "1.5.0",
  2276. "source": {
  2277. "type": "git",
  2278. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2279. "reference": "8.x-1.5"
  2280. },
  2281. "dist": {
  2282. "type": "zip",
  2283. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  2284. "reference": "8.x-1.5",
  2285. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  2286. },
  2287. "require": {
  2288. "drupal/core": "~8.0"
  2289. },
  2290. "type": "drupal-theme",
  2291. "extra": {
  2292. "branch-alias": {
  2293. "dev-1.x": "1.x-dev"
  2294. },
  2295. "drupal": {
  2296. "version": "8.x-1.5",
  2297. "datestamp": "1558584484",
  2298. "security-coverage": {
  2299. "status": "covered",
  2300. "message": "Covered by Drupal's security advisory policy"
  2301. }
  2302. }
  2303. },
  2304. "notification-url": "https://packages.drupal.org/8/downloads",
  2305. "license": [
  2306. "GPL-2.0+"
  2307. ],
  2308. "authors": [
  2309. {
  2310. "name": "ANDiTKO",
  2311. "homepage": "https://www.drupal.org/user/1428124"
  2312. },
  2313. {
  2314. "name": "andrey.troeglazov",
  2315. "homepage": "https://www.drupal.org/user/3145389"
  2316. },
  2317. {
  2318. "name": "realityloop",
  2319. "homepage": "https://www.drupal.org/user/139189"
  2320. }
  2321. ],
  2322. "description": "Drupal administration theme with modern minimalist design.",
  2323. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2324. "support": {
  2325. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2326. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2327. }
  2328. },
  2329. {
  2330. "name": "drupal/audiofield",
  2331. "version": "1.9.0",
  2332. "source": {
  2333. "type": "git",
  2334. "url": "https://git.drupalcode.org/project/audiofield.git",
  2335. "reference": "8.x-1.9"
  2336. },
  2337. "dist": {
  2338. "type": "zip",
  2339. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  2340. "reference": "8.x-1.9",
  2341. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  2342. },
  2343. "require": {
  2344. "drupal/core": "~8.0"
  2345. },
  2346. "type": "drupal-module",
  2347. "extra": {
  2348. "branch-alias": {
  2349. "dev-1.x": "1.x-dev"
  2350. },
  2351. "drupal": {
  2352. "version": "8.x-1.9",
  2353. "datestamp": "1553712781",
  2354. "security-coverage": {
  2355. "status": "covered",
  2356. "message": "Covered by Drupal's security advisory policy"
  2357. }
  2358. },
  2359. "drush": {
  2360. "services": {
  2361. "drush.services.yml": "^9"
  2362. }
  2363. }
  2364. },
  2365. "notification-url": "https://packages.drupal.org/8/downloads",
  2366. "license": [
  2367. "GPL-2.0+"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Daniel Moberly",
  2372. "homepage": "https://www.drupal.org/u/danielmoberly",
  2373. "role": "Maintainer"
  2374. },
  2375. {
  2376. "name": "josipsaric",
  2377. "homepage": "https://www.drupal.org/user/3063287"
  2378. },
  2379. {
  2380. "name": "tamerzg",
  2381. "homepage": "https://www.drupal.org/user/464564"
  2382. }
  2383. ],
  2384. "description": "AudioField Module",
  2385. "homepage": "https://www.drupal.org/project/audiofield",
  2386. "support": {
  2387. "source": "https://git.drupalcode.org/project/audiofield",
  2388. "issues": "https://www.drupal.org/project/issues/audiofield"
  2389. }
  2390. },
  2391. {
  2392. "name": "drupal/autologout",
  2393. "version": "1.0.0",
  2394. "source": {
  2395. "type": "git",
  2396. "url": "https://git.drupalcode.org/project/autologout.git",
  2397. "reference": "8.x-1.0"
  2398. },
  2399. "dist": {
  2400. "type": "zip",
  2401. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2402. "reference": "8.x-1.0",
  2403. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2404. },
  2405. "require": {
  2406. "drupal/core": "~8.0"
  2407. },
  2408. "type": "drupal-module",
  2409. "extra": {
  2410. "branch-alias": {
  2411. "dev-1.x": "1.x-dev"
  2412. },
  2413. "drupal": {
  2414. "version": "8.x-1.0",
  2415. "datestamp": "1494237185",
  2416. "security-coverage": {
  2417. "status": "covered",
  2418. "message": "Covered by Drupal's security advisory policy"
  2419. }
  2420. }
  2421. },
  2422. "notification-url": "https://packages.drupal.org/8/downloads",
  2423. "license": [
  2424. "GPL-2.0+"
  2425. ],
  2426. "authors": [
  2427. {
  2428. "name": "AjK",
  2429. "homepage": "https://www.drupal.org/user/39030"
  2430. },
  2431. {
  2432. "name": "AjitS",
  2433. "homepage": "https://www.drupal.org/user/981944"
  2434. },
  2435. {
  2436. "name": "boshtian",
  2437. "homepage": "https://www.drupal.org/user/1773456"
  2438. },
  2439. {
  2440. "name": "dandrews",
  2441. "homepage": "https://www.drupal.org/user/2014490"
  2442. },
  2443. {
  2444. "name": "darksnow",
  2445. "homepage": "https://www.drupal.org/user/391915"
  2446. },
  2447. {
  2448. "name": "johnennew",
  2449. "homepage": "https://www.drupal.org/user/1150042"
  2450. },
  2451. {
  2452. "name": "jrglasgow",
  2453. "homepage": "https://www.drupal.org/user/36590"
  2454. },
  2455. {
  2456. "name": "kmasood",
  2457. "homepage": "https://www.drupal.org/user/1262860"
  2458. },
  2459. {
  2460. "name": "levelos",
  2461. "homepage": "https://www.drupal.org/user/54135"
  2462. },
  2463. {
  2464. "name": "prabeen.giri",
  2465. "homepage": "https://www.drupal.org/user/913078"
  2466. },
  2467. {
  2468. "name": "str8",
  2469. "homepage": "https://www.drupal.org/user/2865063"
  2470. }
  2471. ],
  2472. "description": "Adds automated timed logout.",
  2473. "homepage": "http://drupal.org/project/autologout",
  2474. "support": {
  2475. "source": "https://git.drupalcode.org/project/autologout"
  2476. }
  2477. },
  2478. {
  2479. "name": "drupal/basic",
  2480. "version": "1.3.0",
  2481. "source": {
  2482. "type": "git",
  2483. "url": "https://git.drupalcode.org/project/basic.git",
  2484. "reference": "8.x-1.3"
  2485. },
  2486. "dist": {
  2487. "type": "zip",
  2488. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2489. "reference": "8.x-1.3",
  2490. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2491. },
  2492. "require": {
  2493. "drupal/core": "~8.0"
  2494. },
  2495. "type": "drupal-theme",
  2496. "extra": {
  2497. "branch-alias": {
  2498. "dev-1.x": "1.x-dev"
  2499. },
  2500. "drupal": {
  2501. "version": "8.x-1.3",
  2502. "datestamp": "1508096944",
  2503. "security-coverage": {
  2504. "status": "covered",
  2505. "message": "Covered by Drupal's security advisory policy"
  2506. }
  2507. }
  2508. },
  2509. "notification-url": "https://packages.drupal.org/8/downloads",
  2510. "license": [
  2511. "GPL-2.0+"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "Steve Krueger",
  2516. "homepage": "http://thejibe.com",
  2517. "email": "steve@thejibe.com",
  2518. "role": "Maintainer"
  2519. },
  2520. {
  2521. "name": "Joël Pittet",
  2522. "homepage": "https://www.drupal.org/u/joelpittet",
  2523. "email": "joel@pittet.ca",
  2524. "role": "Maintainer"
  2525. },
  2526. {
  2527. "name": "Leah Wagner",
  2528. "homepage": "http://thejibe.com",
  2529. "email": "leah@thejibe.com",
  2530. "role": "Maintainer"
  2531. },
  2532. {
  2533. "name": "Catherine Winters",
  2534. "homepage": "http://www.catherinewinters.com",
  2535. "email": "catherine@catherinewinters.com",
  2536. "role": "Maintainer"
  2537. },
  2538. {
  2539. "name": "Johannes Schmidt",
  2540. "homepage": "http://2tabs.com",
  2541. "email": "mail@2tabs.com",
  2542. "role": "Maintainer"
  2543. },
  2544. {
  2545. "name": "johannez",
  2546. "homepage": "https://www.drupal.org/user/670988"
  2547. },
  2548. {
  2549. "name": "leahtard",
  2550. "homepage": "https://www.drupal.org/user/683812"
  2551. }
  2552. ],
  2553. "description": "HTML5, SASS, Responsive grid starter theme.",
  2554. "homepage": "http://drupal.org/project/basic",
  2555. "support": {
  2556. "source": "http://cgit.drupalcode.org/basic",
  2557. "issues": "https://www.drupal.org/project/issues/basic",
  2558. "irc": "irc://irc.freenode.org/drupal-contribute"
  2559. }
  2560. },
  2561. {
  2562. "name": "drupal/better_messages",
  2563. "version": "1.0.0-alpha2",
  2564. "source": {
  2565. "type": "git",
  2566. "url": "https://git.drupalcode.org/project/better_messages.git",
  2567. "reference": "8.x-1.0-alpha2"
  2568. },
  2569. "dist": {
  2570. "type": "zip",
  2571. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2572. "reference": "8.x-1.0-alpha2",
  2573. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2574. },
  2575. "require": {
  2576. "drupal/core": "~8.0"
  2577. },
  2578. "type": "drupal-module",
  2579. "extra": {
  2580. "branch-alias": {
  2581. "dev-1.x": "1.x-dev"
  2582. },
  2583. "drupal": {
  2584. "version": "8.x-1.0-alpha2",
  2585. "datestamp": "1517663880",
  2586. "security-coverage": {
  2587. "status": "not-covered",
  2588. "message": "Alpha releases are not covered by Drupal security advisories."
  2589. }
  2590. }
  2591. },
  2592. "notification-url": "https://packages.drupal.org/8/downloads",
  2593. "license": [
  2594. "GPL-2.0-or-later"
  2595. ],
  2596. "authors": [
  2597. {
  2598. "name": "Mohammed J. Razem",
  2599. "homepage": "https://www.drupal.org/user/255384"
  2600. },
  2601. {
  2602. "name": "bucefal91",
  2603. "homepage": "https://www.drupal.org/user/504128"
  2604. },
  2605. {
  2606. "name": "le72",
  2607. "homepage": "https://www.drupal.org/user/1866896"
  2608. }
  2609. ],
  2610. "description": "Better Messages module for Drupal 8.",
  2611. "homepage": "https://www.drupal.org/project/better_messages",
  2612. "support": {
  2613. "source": "https://git.drupalcode.org/project/better_messages"
  2614. }
  2615. },
  2616. {
  2617. "name": "drupal/bulkdelete",
  2618. "version": "dev-1.x",
  2619. "source": {
  2620. "type": "git",
  2621. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2622. "reference": "22e6ff410cf345609e83605d086cf7885bf4e865"
  2623. },
  2624. "require": {
  2625. "drupal/core": "~8.0"
  2626. },
  2627. "type": "drupal-module",
  2628. "extra": {
  2629. "branch-alias": {
  2630. "dev-1.x": "1.x-dev"
  2631. },
  2632. "drupal": {
  2633. "version": "8.x-1.x-dev",
  2634. "datestamp": "1495565583",
  2635. "security-coverage": {
  2636. "status": "not-covered",
  2637. "message": "Dev releases are not covered by Drupal security advisories."
  2638. }
  2639. }
  2640. },
  2641. "notification-url": "https://packages.drupal.org/8/downloads",
  2642. "license": [
  2643. "GPL-2.0-or-later"
  2644. ],
  2645. "authors": [
  2646. {
  2647. "name": "Kars-T",
  2648. "homepage": "https://www.drupal.org/user/224499"
  2649. },
  2650. {
  2651. "name": "Rahul Seth",
  2652. "homepage": "https://www.drupal.org/user/2694359"
  2653. },
  2654. {
  2655. "name": "adriancid",
  2656. "homepage": "https://www.drupal.org/user/1962106"
  2657. },
  2658. {
  2659. "name": "robertDouglass",
  2660. "homepage": "https://www.drupal.org/user/5449"
  2661. }
  2662. ],
  2663. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2664. "homepage": "https://www.drupal.org/project/bulkdelete",
  2665. "support": {
  2666. "source": "https://git.drupalcode.org/project/bulkdelete"
  2667. },
  2668. "time": "2019-09-27T12:11:08+00:00"
  2669. },
  2670. {
  2671. "name": "drupal/coder",
  2672. "version": "8.3.6",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://git.drupalcode.org/project/coder.git",
  2676. "reference": "4337ddf58d28dbdee4e1367bf71ee13393ab9820"
  2677. },
  2678. "require": {
  2679. "ext-mbstring": "*",
  2680. "php": ">=5.5.9",
  2681. "squizlabs/php_codesniffer": "^3.4.1",
  2682. "symfony/yaml": ">=2.0.5"
  2683. },
  2684. "require-dev": {
  2685. "phpunit/phpunit": ">=3.7 <6"
  2686. },
  2687. "type": "phpcodesniffer-standard",
  2688. "autoload": {
  2689. "psr-0": {
  2690. "Drupal\\": "coder_sniffer/Drupal/",
  2691. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  2692. }
  2693. },
  2694. "notification-url": "https://packagist.org/downloads/",
  2695. "license": [
  2696. "GPL-2.0+"
  2697. ],
  2698. "description": "Coder is a library to review Drupal code.",
  2699. "homepage": "https://www.drupal.org/project/coder",
  2700. "keywords": [
  2701. "code review",
  2702. "phpcs",
  2703. "standards"
  2704. ],
  2705. "time": "2019-08-09T09:27:26+00:00"
  2706. },
  2707. {
  2708. "name": "drupal/color_field",
  2709. "version": "2.0.0",
  2710. "source": {
  2711. "type": "git",
  2712. "url": "https://git.drupalcode.org/project/color_field.git",
  2713. "reference": "8.x-2.0"
  2714. },
  2715. "dist": {
  2716. "type": "zip",
  2717. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2718. "reference": "8.x-2.0",
  2719. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2720. },
  2721. "require": {
  2722. "drupal/core": "*"
  2723. },
  2724. "require-dev": {
  2725. "drupal/token": "~1.3"
  2726. },
  2727. "suggest": {
  2728. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2729. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2730. },
  2731. "type": "drupal-module",
  2732. "extra": {
  2733. "branch-alias": {
  2734. "dev-2.x": "2.x-dev"
  2735. },
  2736. "drupal": {
  2737. "version": "8.x-2.0",
  2738. "datestamp": "1536168780",
  2739. "security-coverage": {
  2740. "status": "covered",
  2741. "message": "Covered by Drupal's security advisory policy"
  2742. }
  2743. }
  2744. },
  2745. "notification-url": "https://packages.drupal.org/8/downloads",
  2746. "license": [
  2747. "GPL-2.0-or-later"
  2748. ],
  2749. "authors": [
  2750. {
  2751. "name": "targoo",
  2752. "homepage": "https://www.drupal.org/user/431910",
  2753. "role": "Maintainer"
  2754. },
  2755. {
  2756. "name": "Nick Wilde",
  2757. "homepage": "https://www.drupal.org/user/nickwilde",
  2758. "role": "Maintainer"
  2759. }
  2760. ],
  2761. "description": "Provides a color field type to store the color value and opacity",
  2762. "homepage": "https://www.drupal.org/project/color_field",
  2763. "support": {
  2764. "source": "http://cgit.drupalcode.org/color_field",
  2765. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2766. }
  2767. },
  2768. {
  2769. "name": "drupal/config_devel",
  2770. "version": "1.4.0",
  2771. "source": {
  2772. "type": "git",
  2773. "url": "https://git.drupalcode.org/project/config_devel.git",
  2774. "reference": "8.x-1.4"
  2775. },
  2776. "dist": {
  2777. "type": "zip",
  2778. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.4.zip",
  2779. "reference": "8.x-1.4",
  2780. "shasum": "93cbecd4811cbf357cd0a8be19e480f7af32f756"
  2781. },
  2782. "require": {
  2783. "drupal/core": "~8.0"
  2784. },
  2785. "type": "drupal-module",
  2786. "extra": {
  2787. "branch-alias": {
  2788. "dev-1.x": "1.x-dev"
  2789. },
  2790. "drupal": {
  2791. "version": "8.x-1.4",
  2792. "datestamp": "1569934685",
  2793. "security-coverage": {
  2794. "status": "covered",
  2795. "message": "Covered by Drupal's security advisory policy"
  2796. }
  2797. }
  2798. },
  2799. "notification-url": "https://packages.drupal.org/8/downloads",
  2800. "license": [
  2801. "GPL-2.0+"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "alexpott",
  2806. "homepage": "https://www.drupal.org/user/157725"
  2807. },
  2808. {
  2809. "name": "benjy",
  2810. "homepage": "https://www.drupal.org/user/1852732"
  2811. },
  2812. {
  2813. "name": "chx",
  2814. "homepage": "https://www.drupal.org/user/9446"
  2815. },
  2816. {
  2817. "name": "joachim",
  2818. "homepage": "https://www.drupal.org/user/107701"
  2819. },
  2820. {
  2821. "name": "nedjo",
  2822. "homepage": "https://www.drupal.org/user/4481"
  2823. },
  2824. {
  2825. "name": "tim.plunkett",
  2826. "homepage": "https://www.drupal.org/user/241634"
  2827. },
  2828. {
  2829. "name": "vijaycs85",
  2830. "homepage": "https://www.drupal.org/user/93488"
  2831. }
  2832. ],
  2833. "description": "Helps developers work with configuration.",
  2834. "homepage": "https://www.drupal.org/project/config_devel",
  2835. "support": {
  2836. "source": "https://git.drupalcode.org/project/config_devel"
  2837. }
  2838. },
  2839. {
  2840. "name": "drupal/config_filter",
  2841. "version": "1.5.0",
  2842. "source": {
  2843. "type": "git",
  2844. "url": "https://git.drupalcode.org/project/config_filter.git",
  2845. "reference": "8.x-1.5"
  2846. },
  2847. "dist": {
  2848. "type": "zip",
  2849. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip",
  2850. "reference": "8.x-1.5",
  2851. "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc"
  2852. },
  2853. "require": {
  2854. "drupal/core": "~8.0"
  2855. },
  2856. "suggest": {
  2857. "drupal/config_split": "Split site configuration for different environments."
  2858. },
  2859. "type": "drupal-module",
  2860. "extra": {
  2861. "branch-alias": {
  2862. "dev-1.x": "1.x-dev"
  2863. },
  2864. "drupal": {
  2865. "version": "8.x-1.5",
  2866. "datestamp": "1572542288",
  2867. "security-coverage": {
  2868. "status": "covered",
  2869. "message": "Covered by Drupal's security advisory policy"
  2870. }
  2871. }
  2872. },
  2873. "notification-url": "https://packages.drupal.org/8/downloads",
  2874. "license": [
  2875. "GPL-2.0+"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Fabian Bircher",
  2880. "homepage": "https://www.drupal.org/u/bircher",
  2881. "email": "opensource@fabianbircher.com",
  2882. "role": "Maintainer"
  2883. },
  2884. {
  2885. "name": "Nuvole Web",
  2886. "homepage": "http://nuvole.org",
  2887. "email": "info@nuvole.org",
  2888. "role": "Maintainer"
  2889. },
  2890. {
  2891. "name": "pescetti",
  2892. "homepage": "https://www.drupal.org/user/436244"
  2893. }
  2894. ],
  2895. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2896. "homepage": "https://www.drupal.org/project/config_filter",
  2897. "keywords": [
  2898. "Drupal",
  2899. "configuration",
  2900. "configuration management"
  2901. ],
  2902. "support": {
  2903. "source": "http://cgit.drupalcode.org/config_filter",
  2904. "issues": "https://www.drupal.org/project/issues/config_filter",
  2905. "irc": "irc://irc.freenode.org/drupal-contribute"
  2906. }
  2907. },
  2908. {
  2909. "name": "drupal/config_ignore",
  2910. "version": "2.1.0",
  2911. "source": {
  2912. "type": "git",
  2913. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2914. "reference": "8.x-2.1"
  2915. },
  2916. "dist": {
  2917. "type": "zip",
  2918. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2919. "reference": "8.x-2.1",
  2920. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2921. },
  2922. "require": {
  2923. "drupal/config_filter": "1.*",
  2924. "drupal/core": "~8.0"
  2925. },
  2926. "type": "drupal-module",
  2927. "extra": {
  2928. "branch-alias": {
  2929. "dev-2.x": "2.x-dev"
  2930. },
  2931. "drupal": {
  2932. "version": "8.x-2.1",
  2933. "datestamp": "1507706044",
  2934. "security-coverage": {
  2935. "status": "covered",
  2936. "message": "Covered by Drupal's security advisory policy"
  2937. }
  2938. }
  2939. },
  2940. "notification-url": "https://packages.drupal.org/8/downloads",
  2941. "license": [
  2942. "GPL-2.0+"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "Tommy Lynge Jørgensen",
  2947. "homepage": "https://www.drupal.org/u/tlyngej",
  2948. "email": "tlyngej@gmail.com",
  2949. "role": "Maintainer"
  2950. },
  2951. {
  2952. "name": "Fabian Bircher",
  2953. "homepage": "https://www.drupal.org/u/bircher",
  2954. "role": "Maintainer"
  2955. }
  2956. ],
  2957. "description": "Ignore certain configuration during import.",
  2958. "homepage": "http://drupal.org/project/config_ignore",
  2959. "support": {
  2960. "source": "http://cgit.drupalcode.org/config_ignore",
  2961. "issues": "http://drupal.org/project/config_ignore",
  2962. "irc": "irc://irc.freenode.org/drupal-contribute"
  2963. }
  2964. },
  2965. {
  2966. "name": "drupal/config_update",
  2967. "version": "1.6.0",
  2968. "source": {
  2969. "type": "git",
  2970. "url": "https://git.drupalcode.org/project/config_update.git",
  2971. "reference": "8.x-1.6"
  2972. },
  2973. "dist": {
  2974. "type": "zip",
  2975. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2976. "reference": "8.x-1.6",
  2977. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2978. },
  2979. "require": {
  2980. "drupal/core": "*"
  2981. },
  2982. "type": "drupal-module",
  2983. "extra": {
  2984. "branch-alias": {
  2985. "dev-1.x": "1.x-dev"
  2986. },
  2987. "drupal": {
  2988. "version": "8.x-1.6",
  2989. "datestamp": "1545090480",
  2990. "security-coverage": {
  2991. "status": "covered",
  2992. "message": "Covered by Drupal's security advisory policy"
  2993. }
  2994. }
  2995. },
  2996. "notification-url": "https://packages.drupal.org/8/downloads",
  2997. "license": [
  2998. "GPL-2.0-or-later"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "jhodgdon",
  3003. "homepage": "https://www.drupal.org/user/155601"
  3004. },
  3005. {
  3006. "name": "nedjo",
  3007. "homepage": "https://www.drupal.org/user/4481"
  3008. }
  3009. ],
  3010. "description": "Provides basic revert and update functionality for other modules",
  3011. "homepage": "https://www.drupal.org/project/config_update",
  3012. "support": {
  3013. "source": "https://git.drupalcode.org/project/config_update"
  3014. }
  3015. },
  3016. {
  3017. "name": "drupal/console",
  3018. "version": "1.9.4",
  3019. "source": {
  3020. "type": "git",
  3021. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3022. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  3023. },
  3024. "dist": {
  3025. "type": "zip",
  3026. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  3027. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  3028. "shasum": ""
  3029. },
  3030. "require": {
  3031. "alchemy/zippy": "~0.4",
  3032. "composer/installers": "~1.0",
  3033. "doctrine/annotations": "^1.2",
  3034. "doctrine/collections": "^1.3",
  3035. "drupal/console-core": "1.9.4",
  3036. "drupal/console-extend-plugin": "~0",
  3037. "php": "^5.5.9 || ^7.0",
  3038. "psy/psysh": "0.6.* || ~0.8",
  3039. "symfony/css-selector": "~2.8|~3.0",
  3040. "symfony/dom-crawler": "~2.8|~3.0",
  3041. "symfony/http-foundation": "~2.8|~3.0"
  3042. },
  3043. "suggest": {
  3044. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3045. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3046. },
  3047. "bin": [
  3048. "bin/drupal"
  3049. ],
  3050. "type": "library",
  3051. "autoload": {
  3052. "psr-4": {
  3053. "Drupal\\Console\\": "src"
  3054. }
  3055. },
  3056. "notification-url": "https://packagist.org/downloads/",
  3057. "license": [
  3058. "GPL-2.0-or-later"
  3059. ],
  3060. "authors": [
  3061. {
  3062. "name": "David Flores",
  3063. "email": "dmousex@gmail.com",
  3064. "homepage": "http://dmouse.net"
  3065. },
  3066. {
  3067. "name": "Jesus Manuel Olivas",
  3068. "email": "jesus.olivas@gmail.com",
  3069. "homepage": "http://jmolivas.com"
  3070. },
  3071. {
  3072. "name": "Eduardo Garcia",
  3073. "email": "enzo@enzolutions.com",
  3074. "homepage": "http://enzolutions.com/"
  3075. },
  3076. {
  3077. "name": "Omar Aguirre",
  3078. "email": "omersguchigu@gmail.com"
  3079. },
  3080. {
  3081. "name": "Drupal Console Contributors",
  3082. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3083. }
  3084. ],
  3085. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3086. "homepage": "http://drupalconsole.com/",
  3087. "keywords": [
  3088. "console",
  3089. "development",
  3090. "drupal",
  3091. "symfony"
  3092. ],
  3093. "time": "2019-11-11T19:35:01+00:00"
  3094. },
  3095. {
  3096. "name": "drupal/console-core",
  3097. "version": "1.9.4",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3101. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3106. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "dflydev/dot-access-configuration": "^1.0",
  3111. "drupal/console-en": "1.9.4",
  3112. "guzzlehttp/guzzle": "~6.1",
  3113. "php": "^5.5.9 || ^7.0",
  3114. "stecman/symfony-console-completion": "~0.7",
  3115. "symfony/config": "~2.8|~3.0",
  3116. "symfony/console": "~2.8|~3.0",
  3117. "symfony/debug": "~2.8|~3.0",
  3118. "symfony/dependency-injection": "~2.8|~3.0",
  3119. "symfony/event-dispatcher": "~2.8|~3.0",
  3120. "symfony/filesystem": "~2.8|~3.0",
  3121. "symfony/finder": "~2.8|~3.0",
  3122. "symfony/process": "~2.8|~3.0",
  3123. "symfony/translation": "~2.8|~3.0",
  3124. "symfony/yaml": "~2.8|~3.0",
  3125. "twig/twig": "^1.23.1",
  3126. "webflo/drupal-finder": "^1.0",
  3127. "webmozart/path-util": "^2.3"
  3128. },
  3129. "type": "library",
  3130. "autoload": {
  3131. "files": [
  3132. "src/functions.php"
  3133. ],
  3134. "psr-4": {
  3135. "Drupal\\Console\\Core\\": "src"
  3136. }
  3137. },
  3138. "notification-url": "https://packagist.org/downloads/",
  3139. "license": [
  3140. "GPL-2.0-or-later"
  3141. ],
  3142. "authors": [
  3143. {
  3144. "name": "David Flores",
  3145. "email": "dmousex@gmail.com",
  3146. "homepage": "http://dmouse.net"
  3147. },
  3148. {
  3149. "name": "Jesus Manuel Olivas",
  3150. "email": "jesus.olivas@gmail.com",
  3151. "homepage": "http://jmolivas.com"
  3152. },
  3153. {
  3154. "name": "Eduardo Garcia",
  3155. "email": "enzo@enzolutions.com",
  3156. "homepage": "http://enzolutions.com/"
  3157. },
  3158. {
  3159. "name": "Omar Aguirre",
  3160. "email": "omersguchigu@gmail.com"
  3161. },
  3162. {
  3163. "name": "Drupal Console Contributors",
  3164. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3165. }
  3166. ],
  3167. "description": "Drupal Console Core",
  3168. "homepage": "http://drupalconsole.com/",
  3169. "keywords": [
  3170. "console",
  3171. "development",
  3172. "drupal",
  3173. "symfony"
  3174. ],
  3175. "time": "2019-11-11T19:26:28+00:00"
  3176. },
  3177. {
  3178. "name": "drupal/console-en",
  3179. "version": "1.9.4",
  3180. "source": {
  3181. "type": "git",
  3182. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3183. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  3184. },
  3185. "dist": {
  3186. "type": "zip",
  3187. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3188. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3189. "shasum": ""
  3190. },
  3191. "type": "library",
  3192. "notification-url": "https://packagist.org/downloads/",
  3193. "license": [
  3194. "GPL-2.0-or-later"
  3195. ],
  3196. "authors": [
  3197. {
  3198. "name": "David Flores",
  3199. "email": "dmousex@gmail.com",
  3200. "homepage": "http://dmouse.net"
  3201. },
  3202. {
  3203. "name": "Jesus Manuel Olivas",
  3204. "email": "jesus.olivas@gmail.com",
  3205. "homepage": "http://jmolivas.com"
  3206. },
  3207. {
  3208. "name": "Eduardo Garcia",
  3209. "email": "enzo@enzolutions.com",
  3210. "homepage": "http://enzolutions.com/"
  3211. },
  3212. {
  3213. "name": "Omar Aguirre",
  3214. "email": "omersguchigu@gmail.com"
  3215. },
  3216. {
  3217. "name": "Drupal Console Contributors",
  3218. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3219. }
  3220. ],
  3221. "description": "Drupal Console English Language",
  3222. "homepage": "http://drupalconsole.com/",
  3223. "keywords": [
  3224. "console",
  3225. "development",
  3226. "drupal",
  3227. "symfony"
  3228. ],
  3229. "time": "2019-10-07T23:45:30+00:00"
  3230. },
  3231. {
  3232. "name": "drupal/console-extend-plugin",
  3233. "version": "0.9.3",
  3234. "source": {
  3235. "type": "git",
  3236. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3237. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  3238. },
  3239. "dist": {
  3240. "type": "zip",
  3241. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3242. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3243. "shasum": ""
  3244. },
  3245. "require": {
  3246. "composer-plugin-api": "^1.0",
  3247. "composer/installers": "^1.2",
  3248. "symfony/finder": "~2.7|~3.0",
  3249. "symfony/yaml": "~2.7|~3.0"
  3250. },
  3251. "type": "composer-plugin",
  3252. "extra": {
  3253. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3254. },
  3255. "autoload": {
  3256. "psr-4": {
  3257. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3258. }
  3259. },
  3260. "notification-url": "https://packagist.org/downloads/",
  3261. "license": [
  3262. "GPL-2.0+"
  3263. ],
  3264. "authors": [
  3265. {
  3266. "name": "Jesus Manuel Olivas",
  3267. "email": "jesus.olivas@gmail.com"
  3268. }
  3269. ],
  3270. "description": "Drupal Console Extend Plugin",
  3271. "time": "2019-11-07T20:15:27+00:00"
  3272. },
  3273. {
  3274. "name": "drupal/context",
  3275. "version": "4.0.0-beta2",
  3276. "source": {
  3277. "type": "git",
  3278. "url": "https://git.drupalcode.org/project/context.git",
  3279. "reference": "8.x-4.0-beta2"
  3280. },
  3281. "dist": {
  3282. "type": "zip",
  3283. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3284. "reference": "8.x-4.0-beta2",
  3285. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3286. },
  3287. "require": {
  3288. "drupal/core": "~8.0"
  3289. },
  3290. "type": "drupal-module",
  3291. "extra": {
  3292. "branch-alias": {
  3293. "dev-4.x": "4.x-dev"
  3294. },
  3295. "drupal": {
  3296. "version": "8.x-4.0-beta2",
  3297. "datestamp": "1505378944",
  3298. "security-coverage": {
  3299. "status": "not-covered",
  3300. "message": "Beta releases are not covered by Drupal security advisories."
  3301. }
  3302. }
  3303. },
  3304. "notification-url": "https://packages.drupal.org/8/downloads",
  3305. "license": [
  3306. "MIT"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "Christoffer Palm",
  3311. "homepage": "http://www.oddhill.se/",
  3312. "email": "christoffer.palm@oddhill.se",
  3313. "role": "Developer"
  3314. },
  3315. {
  3316. "name": "Steven Jones",
  3317. "homepage": "https://www.drupal.org/user/99644"
  3318. },
  3319. {
  3320. "name": "alex_b",
  3321. "homepage": "https://www.drupal.org/user/53995"
  3322. },
  3323. {
  3324. "name": "boshtian",
  3325. "homepage": "https://www.drupal.org/user/1773456"
  3326. },
  3327. {
  3328. "name": "colan",
  3329. "homepage": "https://www.drupal.org/user/58704"
  3330. },
  3331. {
  3332. "name": "emanaton",
  3333. "homepage": "https://www.drupal.org/user/120853"
  3334. },
  3335. {
  3336. "name": "febbraro",
  3337. "homepage": "https://www.drupal.org/user/43670"
  3338. },
  3339. {
  3340. "name": "fizk",
  3341. "homepage": "https://www.drupal.org/user/473174"
  3342. },
  3343. {
  3344. "name": "hass",
  3345. "homepage": "https://www.drupal.org/user/85918"
  3346. },
  3347. {
  3348. "name": "hefox",
  3349. "homepage": "https://www.drupal.org/user/426416"
  3350. },
  3351. {
  3352. "name": "hyrcan",
  3353. "homepage": "https://www.drupal.org/user/26618"
  3354. },
  3355. {
  3356. "name": "jmiccolis",
  3357. "homepage": "https://www.drupal.org/user/31731"
  3358. },
  3359. {
  3360. "name": "nedjo",
  3361. "homepage": "https://www.drupal.org/user/4481"
  3362. },
  3363. {
  3364. "name": "tekante",
  3365. "homepage": "https://www.drupal.org/user/640024"
  3366. },
  3367. {
  3368. "name": "yhahn",
  3369. "homepage": "https://www.drupal.org/user/264833"
  3370. }
  3371. ],
  3372. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3373. "homepage": "https://github.com/oddhill/context",
  3374. "keywords": [
  3375. "Drupal",
  3376. "block",
  3377. "conditions",
  3378. "context",
  3379. "visibility"
  3380. ],
  3381. "support": {
  3382. "source": "https://github.com/oddhill/context",
  3383. "issues": "https://github.com/oddhill/context/issues",
  3384. "docs": "https://github.com/oddhill/context"
  3385. }
  3386. },
  3387. {
  3388. "name": "drupal/core",
  3389. "version": "8.7.9",
  3390. "source": {
  3391. "type": "git",
  3392. "url": "https://github.com/drupal/core.git",
  3393. "reference": "881e60062ea86a8f6809a298f09f56afd20b3cf3"
  3394. },
  3395. "dist": {
  3396. "type": "zip",
  3397. "url": "https://api.github.com/repos/drupal/core/zipball/881e60062ea86a8f6809a298f09f56afd20b3cf3",
  3398. "reference": "881e60062ea86a8f6809a298f09f56afd20b3cf3",
  3399. "shasum": ""
  3400. },
  3401. "require": {
  3402. "asm89/stack-cors": "^1.1",
  3403. "composer/semver": "^1.0",
  3404. "doctrine/annotations": "^1.2",
  3405. "doctrine/common": "^2.5",
  3406. "easyrdf/easyrdf": "^0.9",
  3407. "egulias/email-validator": "^2.0",
  3408. "ext-date": "*",
  3409. "ext-dom": "*",
  3410. "ext-filter": "*",
  3411. "ext-gd": "*",
  3412. "ext-hash": "*",
  3413. "ext-json": "*",
  3414. "ext-pcre": "*",
  3415. "ext-pdo": "*",
  3416. "ext-session": "*",
  3417. "ext-simplexml": "*",
  3418. "ext-spl": "*",
  3419. "ext-tokenizer": "*",
  3420. "ext-xml": "*",
  3421. "guzzlehttp/guzzle": "^6.2.1",
  3422. "masterminds/html5": "^2.1",
  3423. "paragonie/random_compat": "^1.0|^2.0|^9.99.99",
  3424. "pear/archive_tar": "^1.4",
  3425. "php": "^5.5.9|>=7.0.8",
  3426. "stack/builder": "^1.0",
  3427. "symfony-cmf/routing": "^1.4",
  3428. "symfony/class-loader": "~3.4.0",
  3429. "symfony/console": "~3.4.0",
  3430. "symfony/dependency-injection": "~3.4.26",
  3431. "symfony/event-dispatcher": "~3.4.0",
  3432. "symfony/http-foundation": "~3.4.27",
  3433. "symfony/http-kernel": "~3.4.14",
  3434. "symfony/polyfill-iconv": "^1.0",
  3435. "symfony/process": "~3.4.0",
  3436. "symfony/psr-http-message-bridge": "^1.1.2",
  3437. "symfony/routing": "~3.4.0",
  3438. "symfony/serializer": "~3.4.0",
  3439. "symfony/translation": "~3.4.0",
  3440. "symfony/validator": "~3.4.0",
  3441. "symfony/yaml": "~3.4.5",
  3442. "twig/twig": "^1.38.2",
  3443. "typo3/phar-stream-wrapper": "^2.1.1",
  3444. "zendframework/zend-diactoros": "^1.1",
  3445. "zendframework/zend-feed": "^2.4"
  3446. },
  3447. "conflict": {
  3448. "drush/drush": "<8.1.10",
  3449. "symfony/dom-crawler": ">=4"
  3450. },
  3451. "replace": {
  3452. "drupal/action": "self.version",
  3453. "drupal/aggregator": "self.version",
  3454. "drupal/automated_cron": "self.version",
  3455. "drupal/ban": "self.version",
  3456. "drupal/bartik": "self.version",
  3457. "drupal/basic_auth": "self.version",
  3458. "drupal/big_pipe": "self.version",
  3459. "drupal/block": "self.version",
  3460. "drupal/block_content": "self.version",
  3461. "drupal/block_place": "self.version",
  3462. "drupal/book": "self.version",
  3463. "drupal/breakpoint": "self.version",
  3464. "drupal/ckeditor": "self.version",
  3465. "drupal/classy": "self.version",
  3466. "drupal/color": "self.version",
  3467. "drupal/comment": "self.version",
  3468. "drupal/config": "self.version",
  3469. "drupal/config_translation": "self.version",
  3470. "drupal/contact": "self.version",
  3471. "drupal/content_moderation": "self.version",
  3472. "drupal/content_translation": "self.version",
  3473. "drupal/contextual": "self.version",
  3474. "drupal/core-annotation": "self.version",
  3475. "drupal/core-assertion": "self.version",
  3476. "drupal/core-bridge": "self.version",
  3477. "drupal/core-class-finder": "self.version",
  3478. "drupal/core-datetime": "self.version",
  3479. "drupal/core-dependency-injection": "self.version",
  3480. "drupal/core-diff": "self.version",
  3481. "drupal/core-discovery": "self.version",
  3482. "drupal/core-event-dispatcher": "self.version",
  3483. "drupal/core-file-cache": "self.version",
  3484. "drupal/core-filesystem": "self.version",
  3485. "drupal/core-gettext": "self.version",
  3486. "drupal/core-graph": "self.version",
  3487. "drupal/core-http-foundation": "self.version",
  3488. "drupal/core-php-storage": "self.version",
  3489. "drupal/core-plugin": "self.version",
  3490. "drupal/core-proxy-builder": "self.version",
  3491. "drupal/core-render": "self.version",
  3492. "drupal/core-serialization": "self.version",
  3493. "drupal/core-transliteration": "self.version",
  3494. "drupal/core-utility": "self.version",
  3495. "drupal/core-uuid": "self.version",
  3496. "drupal/core-version": "self.version",
  3497. "drupal/datetime": "self.version",
  3498. "drupal/datetime_range": "self.version",
  3499. "drupal/dblog": "self.version",
  3500. "drupal/dynamic_page_cache": "self.version",
  3501. "drupal/editor": "self.version",
  3502. "drupal/entity_reference": "self.version",
  3503. "drupal/field": "self.version",
  3504. "drupal/field_layout": "self.version",
  3505. "drupal/field_ui": "self.version",
  3506. "drupal/file": "self.version",
  3507. "drupal/filter": "self.version",
  3508. "drupal/forum": "self.version",
  3509. "drupal/hal": "self.version",
  3510. "drupal/help": "self.version",
  3511. "drupal/history": "self.version",
  3512. "drupal/image": "self.version",
  3513. "drupal/inline_form_errors": "self.version",
  3514. "drupal/jsonapi": "self.version",
  3515. "drupal/language": "self.version",
  3516. "drupal/layout_builder": "self.version",
  3517. "drupal/layout_discovery": "self.version",
  3518. "drupal/link": "self.version",
  3519. "drupal/locale": "self.version",
  3520. "drupal/media": "self.version",
  3521. "drupal/media_library": "self.version",
  3522. "drupal/menu_link_content": "self.version",
  3523. "drupal/menu_ui": "self.version",
  3524. "drupal/migrate": "self.version",
  3525. "drupal/migrate_drupal": "self.version",
  3526. "drupal/migrate_drupal_multilingual": "self.version",
  3527. "drupal/migrate_drupal_ui": "self.version",
  3528. "drupal/minimal": "self.version",
  3529. "drupal/node": "self.version",
  3530. "drupal/options": "self.version",
  3531. "drupal/page_cache": "self.version",
  3532. "drupal/path": "self.version",
  3533. "drupal/quickedit": "self.version",
  3534. "drupal/rdf": "self.version",
  3535. "drupal/responsive_image": "self.version",
  3536. "drupal/rest": "self.version",
  3537. "drupal/search": "self.version",
  3538. "drupal/serialization": "self.version",
  3539. "drupal/settings_tray": "self.version",
  3540. "drupal/seven": "self.version",
  3541. "drupal/shortcut": "self.version",
  3542. "drupal/simpletest": "self.version",
  3543. "drupal/standard": "self.version",
  3544. "drupal/stark": "self.version",
  3545. "drupal/statistics": "self.version",
  3546. "drupal/syslog": "self.version",
  3547. "drupal/system": "self.version",
  3548. "drupal/taxonomy": "self.version",
  3549. "drupal/telephone": "self.version",
  3550. "drupal/text": "self.version",
  3551. "drupal/toolbar": "self.version",
  3552. "drupal/tour": "self.version",
  3553. "drupal/tracker": "self.version",
  3554. "drupal/update": "self.version",
  3555. "drupal/user": "self.version",
  3556. "drupal/views": "self.version",
  3557. "drupal/views_ui": "self.version",
  3558. "drupal/workflows": "self.version",
  3559. "drupal/workspaces": "self.version"
  3560. },
  3561. "require-dev": {
  3562. "behat/mink": "1.7.x-dev",
  3563. "behat/mink-goutte-driver": "^1.2",
  3564. "behat/mink-selenium2-driver": "1.3.x-dev",
  3565. "drupal/coder": "^8.3.1",
  3566. "jcalderonzumba/gastonjs": "^1.0.2",
  3567. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3568. "justinrainbow/json-schema": "^5.2",
  3569. "mikey179/vfsstream": "^1.2",
  3570. "phpspec/prophecy": "^1.7",
  3571. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3572. "symfony/css-selector": "^3.4.0",
  3573. "symfony/debug": "^3.4.0",
  3574. "symfony/phpunit-bridge": "^3.4.3"
  3575. },
  3576. "type": "drupal-core",
  3577. "extra": {
  3578. "merge-plugin": {
  3579. "require": [
  3580. "core/lib/Drupal/Component/Annotation/composer.json",
  3581. "core/lib/Drupal/Component/Assertion/composer.json",
  3582. "core/lib/Drupal/Component/Bridge/composer.json",
  3583. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3584. "core/lib/Drupal/Component/Datetime/composer.json",
  3585. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3586. "core/lib/Drupal/Component/Diff/composer.json",
  3587. "core/lib/Drupal/Component/Discovery/composer.json",
  3588. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3589. "core/lib/Drupal/Component/FileCache/composer.json",
  3590. "core/lib/Drupal/Component/FileSystem/composer.json",
  3591. "core/lib/Drupal/Component/Gettext/composer.json",
  3592. "core/lib/Drupal/Component/Graph/composer.json",
  3593. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3594. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3595. "core/lib/Drupal/Component/Plugin/composer.json",
  3596. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3597. "core/lib/Drupal/Component/Render/composer.json",
  3598. "core/lib/Drupal/Component/Serialization/composer.json",
  3599. "core/lib/Drupal/Component/Transliteration/composer.json",
  3600. "core/lib/Drupal/Component/Utility/composer.json",
  3601. "core/lib/Drupal/Component/Uuid/composer.json",
  3602. "core/lib/Drupal/Component/Version/composer.json"
  3603. ],
  3604. "recurse": false,
  3605. "replace": false,
  3606. "merge-extra": false
  3607. }
  3608. },
  3609. "autoload": {
  3610. "psr-4": {
  3611. "Drupal\\Core\\": "lib/Drupal/Core",
  3612. "Drupal\\Component\\": "lib/Drupal/Component",
  3613. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3614. },
  3615. "classmap": [
  3616. "lib/Drupal.php",
  3617. "lib/Drupal/Component/Utility/Timer.php",
  3618. "lib/Drupal/Component/Utility/Unicode.php",
  3619. "lib/Drupal/Core/Database/Database.php",
  3620. "lib/Drupal/Core/DrupalKernel.php",
  3621. "lib/Drupal/Core/DrupalKernelInterface.php",
  3622. "lib/Drupal/Core/Site/Settings.php"
  3623. ]
  3624. },
  3625. "notification-url": "https://packagist.org/downloads/",
  3626. "license": [
  3627. "GPL-2.0-or-later"
  3628. ],
  3629. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3630. "time": "2019-11-06T18:00:38+00:00"
  3631. },
  3632. {
  3633. "name": "drupal/ctools",
  3634. "version": "3.2.0",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://git.drupalcode.org/project/ctools.git",
  3638. "reference": "8.x-3.2"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3643. "reference": "8.x-3.2",
  3644. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3645. },
  3646. "require": {
  3647. "drupal/core": "^8.5"
  3648. },
  3649. "type": "drupal-module",
  3650. "extra": {
  3651. "branch-alias": {
  3652. "dev-3.x": "3.x-dev"
  3653. },
  3654. "drupal": {
  3655. "version": "8.x-3.2",
  3656. "datestamp": "1550728386",
  3657. "security-coverage": {
  3658. "status": "covered",
  3659. "message": "Covered by Drupal's security advisory policy"
  3660. }
  3661. }
  3662. },
  3663. "notification-url": "https://packages.drupal.org/8/downloads",
  3664. "license": [
  3665. "GPL-2.0+"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "Kris Vanderwater (EclipseGc)",
  3670. "homepage": "https://www.drupal.org/u/eclipsegc",
  3671. "role": "Maintainer"
  3672. },
  3673. {
  3674. "name": "Jakob Perry (japerry)",
  3675. "homepage": "https://www.drupal.org/u/japerry",
  3676. "role": "Maintainer"
  3677. },
  3678. {
  3679. "name": "Tim Plunkett (tim.plunkett)",
  3680. "homepage": "https://www.drupal.org/u/timplunkett",
  3681. "role": "Maintainer"
  3682. },
  3683. {
  3684. "name": "James Gilliland (neclimdul)",
  3685. "homepage": "https://www.drupal.org/u/neclimdul",
  3686. "role": "Maintainer"
  3687. },
  3688. {
  3689. "name": "Daniel Wehner (dawehner)",
  3690. "homepage": "https://www.drupal.org/u/dawehner",
  3691. "role": "Maintainer"
  3692. },
  3693. {
  3694. "name": "joelpittet",
  3695. "homepage": "https://www.drupal.org/user/160302"
  3696. },
  3697. {
  3698. "name": "merlinofchaos",
  3699. "homepage": "https://www.drupal.org/user/26979"
  3700. },
  3701. {
  3702. "name": "neclimdul",
  3703. "homepage": "https://www.drupal.org/user/48673"
  3704. },
  3705. {
  3706. "name": "sdboyer",
  3707. "homepage": "https://www.drupal.org/user/146719"
  3708. },
  3709. {
  3710. "name": "sun",
  3711. "homepage": "https://www.drupal.org/user/54136"
  3712. },
  3713. {
  3714. "name": "tim.plunkett",
  3715. "homepage": "https://www.drupal.org/user/241634"
  3716. }
  3717. ],
  3718. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3719. "homepage": "https://www.drupal.org/project/ctools",
  3720. "support": {
  3721. "source": "http://cgit.drupalcode.org/ctools",
  3722. "issues": "https://www.drupal.org/project/issues/ctools"
  3723. }
  3724. },
  3725. {
  3726. "name": "drupal/date_range_formatter",
  3727. "version": "3.1.0",
  3728. "source": {
  3729. "type": "git",
  3730. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3731. "reference": "8.x-3.1"
  3732. },
  3733. "dist": {
  3734. "type": "zip",
  3735. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3736. "reference": "8.x-3.1",
  3737. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3738. },
  3739. "require": {
  3740. "drupal/core": "*"
  3741. },
  3742. "type": "drupal-module",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-3.x": "3.x-dev"
  3746. },
  3747. "drupal": {
  3748. "version": "8.x-3.1",
  3749. "datestamp": "1502454544",
  3750. "security-coverage": {
  3751. "status": "covered",
  3752. "message": "Covered by Drupal's security advisory policy"
  3753. }
  3754. }
  3755. },
  3756. "notification-url": "https://packages.drupal.org/8/downloads",
  3757. "license": [
  3758. "GPL-2.0-or-later"
  3759. ],
  3760. "authors": [
  3761. {
  3762. "name": "maximpodorov",
  3763. "homepage": "https://www.drupal.org/user/515310"
  3764. },
  3765. {
  3766. "name": "sudishth",
  3767. "homepage": "https://www.drupal.org/user/1440562"
  3768. }
  3769. ],
  3770. "description": "Formats date ranges.",
  3771. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3772. "support": {
  3773. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3774. }
  3775. },
  3776. {
  3777. "name": "drupal/devel",
  3778. "version": "2.1.0",
  3779. "source": {
  3780. "type": "git",
  3781. "url": "https://git.drupalcode.org/project/devel.git",
  3782. "reference": "8.x-2.1"
  3783. },
  3784. "dist": {
  3785. "type": "zip",
  3786. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3787. "reference": "8.x-2.1",
  3788. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3789. },
  3790. "require": {
  3791. "drupal/core": "~8.0",
  3792. "symfony/var-dumper": "~2.7|^3|^4"
  3793. },
  3794. "type": "drupal-module",
  3795. "extra": {
  3796. "branch-alias": {
  3797. "dev-2.x": "2.x-dev"
  3798. },
  3799. "drupal": {
  3800. "version": "8.x-2.1",
  3801. "datestamp": "1556799496",
  3802. "security-coverage": {
  3803. "status": "covered",
  3804. "message": "Covered by Drupal's security advisory policy"
  3805. }
  3806. },
  3807. "drush": {
  3808. "services": {
  3809. "drush.services.yml": "^9"
  3810. }
  3811. }
  3812. },
  3813. "notification-url": "https://packages.drupal.org/8/downloads",
  3814. "license": [
  3815. "GPL-2.0+"
  3816. ],
  3817. "authors": [
  3818. {
  3819. "name": "Moshe Weitzman",
  3820. "homepage": "https://github.com/weitzman",
  3821. "email": "weitzman@tejasa.com",
  3822. "role": "Maintainer"
  3823. },
  3824. {
  3825. "name": "Hans Salvisberg",
  3826. "homepage": "https://www.drupal.org/u/salvis",
  3827. "email": "drupal@salvisberg.com",
  3828. "role": "Maintainer"
  3829. },
  3830. {
  3831. "name": "Luca Lusso",
  3832. "homepage": "https://www.drupal.org/u/lussoluca",
  3833. "role": "Maintainer"
  3834. },
  3835. {
  3836. "name": "Marco (willzyx)",
  3837. "homepage": "https://www.drupal.org/u/willzyx",
  3838. "role": "Maintainer"
  3839. },
  3840. {
  3841. "name": "See contributors",
  3842. "homepage": "https://www.drupal.org/node/3236/committers"
  3843. },
  3844. {
  3845. "name": "salvis",
  3846. "homepage": "https://www.drupal.org/user/82964"
  3847. },
  3848. {
  3849. "name": "willzyx",
  3850. "homepage": "https://www.drupal.org/user/1043862"
  3851. }
  3852. ],
  3853. "description": "Various blocks, pages, and functions for developers.",
  3854. "homepage": "http://drupal.org/project/devel",
  3855. "support": {
  3856. "source": "http://cgit.drupalcode.org/devel",
  3857. "issues": "http://drupal.org/project/devel",
  3858. "irc": "irc://irc.freenode.org/drupal-contribute"
  3859. }
  3860. },
  3861. {
  3862. "name": "drupal/domain",
  3863. "version": "1.0.0-alpha16",
  3864. "source": {
  3865. "type": "git",
  3866. "url": "https://git.drupalcode.org/project/domain.git",
  3867. "reference": "8.x-1.0-alpha16"
  3868. },
  3869. "dist": {
  3870. "type": "zip",
  3871. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3872. "reference": "8.x-1.0-alpha16",
  3873. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3874. },
  3875. "require": {
  3876. "drupal/core": "^8.5"
  3877. },
  3878. "require-dev": {
  3879. "drupal/domain_access": "*"
  3880. },
  3881. "type": "drupal-module",
  3882. "extra": {
  3883. "branch-alias": {
  3884. "dev-1.x": "1.x-dev"
  3885. },
  3886. "drupal": {
  3887. "version": "8.x-1.0-alpha16",
  3888. "datestamp": "1561126081",
  3889. "security-coverage": {
  3890. "status": "not-covered",
  3891. "message": "Alpha releases are not covered by Drupal security advisories."
  3892. }
  3893. }
  3894. },
  3895. "notification-url": "https://packages.drupal.org/8/downloads",
  3896. "license": [
  3897. "GPL-2.0-or-later"
  3898. ],
  3899. "authors": [
  3900. {
  3901. "name": "agentrickard",
  3902. "homepage": "https://www.drupal.org/user/20975"
  3903. },
  3904. {
  3905. "name": "nonsie",
  3906. "homepage": "https://www.drupal.org/user/29899"
  3907. }
  3908. ],
  3909. "description": "Creates domain records within a Drupal installation.",
  3910. "homepage": "https://www.drupal.org/project/domain",
  3911. "support": {
  3912. "source": "https://git.drupalcode.org/project/domain"
  3913. }
  3914. },
  3915. {
  3916. "name": "drupal/domain_access",
  3917. "version": "1.0.0-alpha16",
  3918. "require": {
  3919. "drupal/core": "*",
  3920. "drupal/domain": "self.version"
  3921. },
  3922. "type": "metapackage",
  3923. "extra": {
  3924. "branch-alias": {
  3925. "dev-1.x": "1.x-dev"
  3926. },
  3927. "drupal": {
  3928. "version": "8.x-1.0-alpha16",
  3929. "datestamp": "1561126081",
  3930. "security-coverage": {
  3931. "status": "not-covered",
  3932. "message": "Alpha releases are not covered by Drupal security advisories."
  3933. }
  3934. }
  3935. },
  3936. "notification-url": "https://packages.drupal.org/8/downloads",
  3937. "license": [
  3938. "GPL-2.0-or-later"
  3939. ],
  3940. "authors": [
  3941. {
  3942. "name": "agentrickard",
  3943. "homepage": "https://www.drupal.org/user/20975"
  3944. },
  3945. {
  3946. "name": "nonsie",
  3947. "homepage": "https://www.drupal.org/user/29899"
  3948. }
  3949. ],
  3950. "description": "Domain-based access control for content.",
  3951. "homepage": "https://www.drupal.org/project/domain",
  3952. "support": {
  3953. "source": "https://git.drupalcode.org/project/domain"
  3954. }
  3955. },
  3956. {
  3957. "name": "drupal/domain_config",
  3958. "version": "1.0.0-alpha16",
  3959. "require": {
  3960. "drupal/core": "~8.0",
  3961. "drupal/domain": "self.version"
  3962. },
  3963. "type": "metapackage",
  3964. "extra": {
  3965. "branch-alias": {
  3966. "dev-1.x": "1.x-dev"
  3967. },
  3968. "drupal": {
  3969. "version": "8.x-1.0-alpha16",
  3970. "datestamp": "1561126081",
  3971. "security-coverage": {
  3972. "status": "not-covered",
  3973. "message": "Alpha releases are not covered by Drupal security advisories."
  3974. }
  3975. }
  3976. },
  3977. "notification-url": "https://packages.drupal.org/8/downloads",
  3978. "license": [
  3979. "GPL-2.0-or-later"
  3980. ],
  3981. "authors": [
  3982. {
  3983. "name": "agentrickard",
  3984. "homepage": "https://www.drupal.org/user/20975"
  3985. },
  3986. {
  3987. "name": "nonsie",
  3988. "homepage": "https://www.drupal.org/user/29899"
  3989. }
  3990. ],
  3991. "description": "Allows domain specific configuration.",
  3992. "homepage": "https://www.drupal.org/project/domain",
  3993. "support": {
  3994. "source": "https://git.drupalcode.org/project/domain"
  3995. }
  3996. },
  3997. {
  3998. "name": "drupal/domain_menu_access",
  3999. "version": "dev-1.x",
  4000. "source": {
  4001. "type": "git",
  4002. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  4003. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  4004. },
  4005. "require": {
  4006. "drupal/core": "~8.0",
  4007. "drupal/domain": "^1",
  4008. "drupal/domain_access": "^1"
  4009. },
  4010. "type": "drupal-module",
  4011. "extra": {
  4012. "branch-alias": {
  4013. "dev-1.x": "1.x-dev"
  4014. },
  4015. "drupal": {
  4016. "version": "8.x-1.0-alpha2+3-dev",
  4017. "datestamp": "1551553085",
  4018. "security-coverage": {
  4019. "status": "not-covered",
  4020. "message": "Dev releases are not covered by Drupal security advisories."
  4021. }
  4022. }
  4023. },
  4024. "notification-url": "https://packages.drupal.org/8/downloads",
  4025. "license": [
  4026. "GPL-2.0+"
  4027. ],
  4028. "authors": [
  4029. {
  4030. "name": "Sebastien @Actualys",
  4031. "homepage": "https://www.drupal.org/user/380104"
  4032. },
  4033. {
  4034. "name": "maciej.zgadzaj",
  4035. "homepage": "https://www.drupal.org/user/271491"
  4036. },
  4037. {
  4038. "name": "pifagor",
  4039. "homepage": "https://www.drupal.org/user/2375692"
  4040. }
  4041. ],
  4042. "description": "Domain-based access control for menu link.",
  4043. "homepage": "https://www.drupal.org/project/domain_menu_access",
  4044. "support": {
  4045. "source": "https://git.drupalcode.org/project/domain_menu_access"
  4046. },
  4047. "time": "2019-04-11T06:07:16+00:00"
  4048. },
  4049. {
  4050. "name": "drupal/domain_site_settings",
  4051. "version": "1.3.0",
  4052. "source": {
  4053. "type": "git",
  4054. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4055. "reference": "8.x-1.3"
  4056. },
  4057. "dist": {
  4058. "type": "zip",
  4059. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4060. "reference": "8.x-1.3",
  4061. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4062. },
  4063. "require": {
  4064. "drupal/core": "~8.0",
  4065. "drupal/domain": "*",
  4066. "drupal/domain_config": "*"
  4067. },
  4068. "type": "drupal-module",
  4069. "extra": {
  4070. "branch-alias": {
  4071. "dev-1.x": "1.x-dev"
  4072. },
  4073. "drupal": {
  4074. "version": "8.x-1.3",
  4075. "datestamp": "1537684980",
  4076. "security-coverage": {
  4077. "status": "covered",
  4078. "message": "Covered by Drupal's security advisory policy"
  4079. }
  4080. },
  4081. "patches_applied": {
  4082. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  4083. }
  4084. },
  4085. "notification-url": "https://packages.drupal.org/8/downloads",
  4086. "license": [
  4087. "GPL-2.0+"
  4088. ],
  4089. "authors": [
  4090. {
  4091. "name": "aloknarwaria",
  4092. "homepage": "https://www.drupal.org/user/906640"
  4093. }
  4094. ],
  4095. "description": "Basic Site Setting for Domains.",
  4096. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4097. "keywords": [
  4098. "Drupal"
  4099. ],
  4100. "support": {
  4101. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4102. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4103. }
  4104. },
  4105. {
  4106. "name": "drupal/email_registration",
  4107. "version": "1.0.0-rc7",
  4108. "source": {
  4109. "type": "git",
  4110. "url": "https://git.drupalcode.org/project/email_registration.git",
  4111. "reference": "8.x-1.0-rc7"
  4112. },
  4113. "dist": {
  4114. "type": "zip",
  4115. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc7.zip",
  4116. "reference": "8.x-1.0-rc7",
  4117. "shasum": "a3ebc1e38539e7916f48e827d5bd7b1abeef0011"
  4118. },
  4119. "require": {
  4120. "drupal/core": "*"
  4121. },
  4122. "type": "drupal-module",
  4123. "extra": {
  4124. "branch-alias": {
  4125. "dev-1.x": "1.x-dev"
  4126. },
  4127. "drupal": {
  4128. "version": "8.x-1.0-rc7",
  4129. "datestamp": "1557344281",
  4130. "security-coverage": {
  4131. "status": "not-covered",
  4132. "message": "RC releases are not covered by Drupal security advisories."
  4133. }
  4134. }
  4135. },
  4136. "notification-url": "https://packages.drupal.org/8/downloads",
  4137. "license": [
  4138. "GPL-2.0+"
  4139. ],
  4140. "authors": [
  4141. {
  4142. "name": "Greg Knaddison (greggles)",
  4143. "homepage": "https://www.drupal.org/u/greggles",
  4144. "role": "Maintainer"
  4145. },
  4146. {
  4147. "name": "Andrey Postnikov (andypost)",
  4148. "homepage": "https://www.drupal.org/u/andypost",
  4149. "role": "Maintainer"
  4150. },
  4151. {
  4152. "name": "Chris Herberte",
  4153. "homepage": "https://www.drupal.org/u/chris-herberte",
  4154. "role": "Maintainer"
  4155. },
  4156. {
  4157. "name": "Moshe Weitzman (moshe weitzman)",
  4158. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4159. "role": "Maintainer"
  4160. }
  4161. ],
  4162. "description": "Allows users to register with an email address as their username.",
  4163. "homepage": "https://www.drupal.org/project/email_registration",
  4164. "support": {
  4165. "source": "http://cgit.drupalcode.org/email_registration",
  4166. "issues": "http://drupal.org/project/issues/email_registration"
  4167. }
  4168. },
  4169. {
  4170. "name": "drupal/entity",
  4171. "version": "1.0.0-rc3",
  4172. "source": {
  4173. "type": "git",
  4174. "url": "https://git.drupalcode.org/project/entity.git",
  4175. "reference": "8.x-1.0-rc3"
  4176. },
  4177. "dist": {
  4178. "type": "zip",
  4179. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc3.zip",
  4180. "reference": "8.x-1.0-rc3",
  4181. "shasum": "6b4ccc0231c52ed9594502a0718057f53d98404d"
  4182. },
  4183. "require": {
  4184. "drupal/core": "^8.6"
  4185. },
  4186. "type": "drupal-module",
  4187. "extra": {
  4188. "branch-alias": {
  4189. "dev-1.x": "1.x-dev"
  4190. },
  4191. "drupal": {
  4192. "version": "8.x-1.0-rc3",
  4193. "datestamp": "1559579884",
  4194. "security-coverage": {
  4195. "status": "not-covered",
  4196. "message": "RC releases are not covered by Drupal security advisories."
  4197. }
  4198. }
  4199. },
  4200. "notification-url": "https://packages.drupal.org/8/downloads",
  4201. "license": [
  4202. "GPL-2.0+"
  4203. ],
  4204. "authors": [
  4205. {
  4206. "name": "Berdir",
  4207. "homepage": "https://www.drupal.org/user/214652"
  4208. },
  4209. {
  4210. "name": "bojanz",
  4211. "homepage": "https://www.drupal.org/user/86106"
  4212. },
  4213. {
  4214. "name": "dawehner",
  4215. "homepage": "https://www.drupal.org/user/99340"
  4216. },
  4217. {
  4218. "name": "dixon_",
  4219. "homepage": "https://www.drupal.org/user/239911"
  4220. },
  4221. {
  4222. "name": "fago",
  4223. "homepage": "https://www.drupal.org/user/16747"
  4224. }
  4225. ],
  4226. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4227. "homepage": "http://drupal.org/project/entity",
  4228. "support": {
  4229. "source": "https://git.drupalcode.org/project/entity"
  4230. }
  4231. },
  4232. {
  4233. "name": "drupal/features",
  4234. "version": "3.8.0",
  4235. "source": {
  4236. "type": "git",
  4237. "url": "https://git.drupalcode.org/project/features.git",
  4238. "reference": "8.x-3.8"
  4239. },
  4240. "dist": {
  4241. "type": "zip",
  4242. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  4243. "reference": "8.x-3.8",
  4244. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  4245. },
  4246. "require": {
  4247. "drupal/config_update": "^1.4",
  4248. "drupal/core": "*"
  4249. },
  4250. "type": "drupal-module",
  4251. "extra": {
  4252. "branch-alias": {
  4253. "dev-3.x": "3.x-dev"
  4254. },
  4255. "drupal": {
  4256. "version": "8.x-3.8",
  4257. "datestamp": "1536512284",
  4258. "security-coverage": {
  4259. "status": "covered",
  4260. "message": "Covered by Drupal's security advisory policy"
  4261. }
  4262. },
  4263. "drush": {
  4264. "services": {
  4265. "drush.services.yml": "^9"
  4266. }
  4267. }
  4268. },
  4269. "notification-url": "https://packages.drupal.org/8/downloads",
  4270. "license": [
  4271. "GPL-2.0+"
  4272. ],
  4273. "authors": [
  4274. {
  4275. "name": "dawehner",
  4276. "homepage": "https://www.drupal.org/user/99340"
  4277. },
  4278. {
  4279. "name": "e2thex",
  4280. "homepage": "https://www.drupal.org/user/189123"
  4281. },
  4282. {
  4283. "name": "febbraro",
  4284. "homepage": "https://www.drupal.org/user/43670"
  4285. },
  4286. {
  4287. "name": "jmiccolis",
  4288. "homepage": "https://www.drupal.org/user/31731"
  4289. },
  4290. {
  4291. "name": "joseph.olstad",
  4292. "homepage": "https://www.drupal.org/user/1321830"
  4293. },
  4294. {
  4295. "name": "mpotter",
  4296. "homepage": "https://www.drupal.org/user/616192"
  4297. },
  4298. {
  4299. "name": "nedjo",
  4300. "homepage": "https://www.drupal.org/user/4481"
  4301. },
  4302. {
  4303. "name": "tim.plunkett",
  4304. "homepage": "https://www.drupal.org/user/241634"
  4305. }
  4306. ],
  4307. "description": "Enables administrators to package configuration into modules",
  4308. "homepage": "https://www.drupal.org/project/features",
  4309. "support": {
  4310. "source": "https://git.drupalcode.org/project/features"
  4311. }
  4312. },
  4313. {
  4314. "name": "drupal/field_group",
  4315. "version": "3.0.0-rc1",
  4316. "source": {
  4317. "type": "git",
  4318. "url": "https://git.drupalcode.org/project/field_group.git",
  4319. "reference": "8.x-3.0-rc1"
  4320. },
  4321. "dist": {
  4322. "type": "zip",
  4323. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-rc1.zip",
  4324. "reference": "8.x-3.0-rc1",
  4325. "shasum": "e291b5468c834a344e9aa6cafd3a76171d473a22"
  4326. },
  4327. "require": {
  4328. "drupal/core": "*"
  4329. },
  4330. "type": "drupal-module",
  4331. "extra": {
  4332. "branch-alias": {
  4333. "dev-3.x": "3.x-dev"
  4334. },
  4335. "drupal": {
  4336. "version": "8.x-3.0-rc1",
  4337. "datestamp": "1558678323",
  4338. "security-coverage": {
  4339. "status": "not-covered",
  4340. "message": "RC releases are not covered by Drupal security advisories."
  4341. }
  4342. }
  4343. },
  4344. "notification-url": "https://packages.drupal.org/8/downloads",
  4345. "license": [
  4346. "GPL-2.0+"
  4347. ],
  4348. "authors": [
  4349. {
  4350. "name": "Hydra",
  4351. "homepage": "https://www.drupal.org/user/647364"
  4352. },
  4353. {
  4354. "name": "Stalski",
  4355. "homepage": "https://www.drupal.org/user/322618"
  4356. },
  4357. {
  4358. "name": "jyve",
  4359. "homepage": "https://www.drupal.org/user/591438"
  4360. },
  4361. {
  4362. "name": "swentel",
  4363. "homepage": "https://www.drupal.org/user/107403"
  4364. },
  4365. {
  4366. "name": "zuuperman",
  4367. "homepage": "https://www.drupal.org/user/361625"
  4368. }
  4369. ],
  4370. "description": "Provides the field_group module.",
  4371. "homepage": "https://www.drupal.org/project/field_group",
  4372. "support": {
  4373. "source": "https://git.drupalcode.org/project/field_group"
  4374. }
  4375. },
  4376. {
  4377. "name": "drupal/filefield_sources",
  4378. "version": "dev-1.x",
  4379. "source": {
  4380. "type": "git",
  4381. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4382. "reference": "6da74b585fcdc66bf5b1f5b3d9c6985df137fa2a"
  4383. },
  4384. "require": {
  4385. "drupal/core": "*"
  4386. },
  4387. "require-dev": {
  4388. "drupal/imce": "*"
  4389. },
  4390. "type": "drupal-module",
  4391. "extra": {
  4392. "branch-alias": {
  4393. "dev-1.x": "1.x-dev"
  4394. },
  4395. "drupal": {
  4396. "version": "8.x-1.0-alpha1+5-dev",
  4397. "datestamp": "1556769786",
  4398. "security-coverage": {
  4399. "status": "not-covered",
  4400. "message": "Dev releases are not covered by Drupal security advisories."
  4401. }
  4402. }
  4403. },
  4404. "notification-url": "https://packages.drupal.org/8/downloads",
  4405. "license": [
  4406. "GPL-2.0-or-later"
  4407. ],
  4408. "authors": [
  4409. {
  4410. "name": "Nate Lampton (quicksketch)",
  4411. "homepage": "https://www.drupal.org/u/quicksketch",
  4412. "role": "Maintainer"
  4413. },
  4414. {
  4415. "name": "Andrey Khromyshev (profak)",
  4416. "homepage": "https://www.drupal.org/u/profak",
  4417. "role": "Maintainer"
  4418. },
  4419. {
  4420. "name": "David Valdez (gnuget)",
  4421. "homepage": "https://www.drupal.org/u/gnuget",
  4422. "role": "Maintainer"
  4423. }
  4424. ],
  4425. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4426. "homepage": "https://www.drupal.org/project/filefield_sources",
  4427. "support": {
  4428. "source": "https://git.drupalcode.org/project/filefield_sources",
  4429. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4430. "irc": "irc://irc.freenode.org/drupal-contribute"
  4431. },
  4432. "time": "2019-05-03T18:32:19+00:00"
  4433. },
  4434. {
  4435. "name": "drupal/filter_perms",
  4436. "version": "dev-1.x",
  4437. "source": {
  4438. "type": "git",
  4439. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4440. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4441. },
  4442. "require": {
  4443. "drupal/core": "*"
  4444. },
  4445. "type": "drupal-module",
  4446. "extra": {
  4447. "branch-alias": {
  4448. "dev-1.x": "1.x-dev"
  4449. },
  4450. "drupal": {
  4451. "version": "8.x-1.x-dev",
  4452. "datestamp": "1469645939",
  4453. "security-coverage": {
  4454. "status": "not-covered",
  4455. "message": "Dev releases are not covered by Drupal security advisories."
  4456. }
  4457. }
  4458. },
  4459. "notification-url": "https://packages.drupal.org/8/downloads",
  4460. "license": [
  4461. "GPL-2.0-or-later"
  4462. ],
  4463. "authors": [
  4464. {
  4465. "name": "cYu",
  4466. "homepage": "https://www.drupal.org/user/202205"
  4467. },
  4468. {
  4469. "name": "deekayen",
  4470. "homepage": "https://www.drupal.org/user/972"
  4471. },
  4472. {
  4473. "name": "willzyx",
  4474. "homepage": "https://www.drupal.org/user/1043862"
  4475. }
  4476. ],
  4477. "description": "Provides role and module filters to simplify the user permissions page.",
  4478. "homepage": "https://www.drupal.org/project/filter_perms",
  4479. "support": {
  4480. "source": "https://git.drupalcode.org/project/filter_perms"
  4481. },
  4482. "time": "2016-07-27T19:01:11+00:00"
  4483. },
  4484. {
  4485. "name": "drupal/honeypot",
  4486. "version": "1.29.0",
  4487. "source": {
  4488. "type": "git",
  4489. "url": "https://git.drupalcode.org/project/honeypot.git",
  4490. "reference": "8.x-1.29"
  4491. },
  4492. "dist": {
  4493. "type": "zip",
  4494. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4495. "reference": "8.x-1.29",
  4496. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4497. },
  4498. "require": {
  4499. "drupal/core": "~8.0"
  4500. },
  4501. "type": "drupal-module",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-1.x": "1.x-dev"
  4505. },
  4506. "drupal": {
  4507. "version": "8.x-1.29",
  4508. "datestamp": "1536179280",
  4509. "security-coverage": {
  4510. "status": "covered",
  4511. "message": "Covered by Drupal's security advisory policy"
  4512. }
  4513. }
  4514. },
  4515. "notification-url": "https://packages.drupal.org/8/downloads",
  4516. "license": [
  4517. "GPL-2.0+"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "Jeff Geerling",
  4522. "homepage": "https://www.drupal.org/user/213194",
  4523. "email": "geerlingguy@mac.com"
  4524. },
  4525. {
  4526. "name": "geerlingguy",
  4527. "homepage": "https://www.drupal.org/user/389011"
  4528. },
  4529. {
  4530. "name": "vijaycs85",
  4531. "homepage": "https://www.drupal.org/user/93488"
  4532. }
  4533. ],
  4534. "description": "Mitigates spam form submissions using the honeypot method.",
  4535. "homepage": "https://www.drupal.org/project/honeypot",
  4536. "keywords": [
  4537. "deterrent",
  4538. "form",
  4539. "honeypot",
  4540. "honeytrap",
  4541. "php",
  4542. "spam"
  4543. ],
  4544. "support": {
  4545. "source": "https://git.drupalcode.org/project/honeypot"
  4546. }
  4547. },
  4548. {
  4549. "name": "drupal/linkit",
  4550. "version": "5.0.0-beta9",
  4551. "source": {
  4552. "type": "git",
  4553. "url": "https://git.drupalcode.org/project/linkit.git",
  4554. "reference": "8.x-5.0-beta9"
  4555. },
  4556. "dist": {
  4557. "type": "zip",
  4558. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta9.zip",
  4559. "reference": "8.x-5.0-beta9",
  4560. "shasum": "150291dd87a4f65027492020c28635e2b5249d1a"
  4561. },
  4562. "require": {
  4563. "drupal/core": "~8.0"
  4564. },
  4565. "require-dev": {
  4566. "drupal/imce": "*"
  4567. },
  4568. "type": "drupal-module",
  4569. "extra": {
  4570. "branch-alias": {
  4571. "dev-5.x": "5.x-dev"
  4572. },
  4573. "drupal": {
  4574. "version": "8.x-5.0-beta9",
  4575. "datestamp": "1562194985",
  4576. "security-coverage": {
  4577. "status": "not-covered",
  4578. "message": "Beta releases are not covered by Drupal security advisories."
  4579. }
  4580. }
  4581. },
  4582. "notification-url": "https://packages.drupal.org/8/downloads",
  4583. "license": [
  4584. "GPL-2.0+"
  4585. ],
  4586. "authors": [
  4587. {
  4588. "name": "Emil Stjerneman",
  4589. "homepage": "https://stjerneman.com",
  4590. "email": "emil@stjerneman.com",
  4591. "role": "Maintainer"
  4592. }
  4593. ],
  4594. "description": "Linkit - Enriched linking experience",
  4595. "homepage": "http://drupal.org/project/linkit",
  4596. "support": {
  4597. "source": "http://cgit.drupalcode.org/linkit",
  4598. "issues": "http://drupal.org/project/linkit"
  4599. }
  4600. },
  4601. {
  4602. "name": "drupal/maillog",
  4603. "version": "dev-1.x",
  4604. "source": {
  4605. "type": "git",
  4606. "url": "https://git.drupalcode.org/project/maillog.git",
  4607. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4608. },
  4609. "require": {
  4610. "drupal/core": "*"
  4611. },
  4612. "type": "drupal-module",
  4613. "extra": {
  4614. "branch-alias": {
  4615. "dev-1.x": "1.x-dev"
  4616. },
  4617. "drupal": {
  4618. "version": "8.x-1.x-dev",
  4619. "datestamp": "1470431939",
  4620. "security-coverage": {
  4621. "status": "not-covered",
  4622. "message": "Project has not opted into security advisory coverage!"
  4623. }
  4624. }
  4625. },
  4626. "notification-url": "https://packages.drupal.org/8/downloads",
  4627. "license": [
  4628. "GPL-2.0-or-later"
  4629. ],
  4630. "authors": [
  4631. {
  4632. "name": "Berdir",
  4633. "homepage": "https://www.drupal.org/user/214652"
  4634. },
  4635. {
  4636. "name": "DamienMcKenna",
  4637. "homepage": "https://www.drupal.org/user/108450"
  4638. },
  4639. {
  4640. "name": "miro_dietiker",
  4641. "homepage": "https://www.drupal.org/user/227761"
  4642. },
  4643. {
  4644. "name": "pluess",
  4645. "homepage": "https://www.drupal.org/user/84659"
  4646. }
  4647. ],
  4648. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4649. "homepage": "https://www.drupal.org/project/maillog",
  4650. "support": {
  4651. "source": "https://git.drupalcode.org/project/maillog"
  4652. },
  4653. "time": "2016-08-05T21:18:07+00:00"
  4654. },
  4655. {
  4656. "name": "drupal/matomo",
  4657. "version": "1.9.0",
  4658. "source": {
  4659. "type": "git",
  4660. "url": "https://git.drupalcode.org/project/matomo.git",
  4661. "reference": "8.x-1.9"
  4662. },
  4663. "dist": {
  4664. "type": "zip",
  4665. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4666. "reference": "8.x-1.9",
  4667. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4668. },
  4669. "require": {
  4670. "drupal/core": "~8.5"
  4671. },
  4672. "require-dev": {
  4673. "drupal/php": "*",
  4674. "drupal/token": "*"
  4675. },
  4676. "type": "drupal-module",
  4677. "extra": {
  4678. "branch-alias": {
  4679. "dev-1.x": "1.x-dev"
  4680. },
  4681. "drupal": {
  4682. "version": "8.x-1.9",
  4683. "datestamp": "1549615080",
  4684. "security-coverage": {
  4685. "status": "covered",
  4686. "message": "Covered by Drupal's security advisory policy"
  4687. }
  4688. }
  4689. },
  4690. "notification-url": "https://packages.drupal.org/8/downloads",
  4691. "license": [
  4692. "GPL-2.0+"
  4693. ],
  4694. "authors": [
  4695. {
  4696. "name": "hass",
  4697. "homepage": "https://www.drupal.org/u/hass"
  4698. },
  4699. {
  4700. "name": "See other contributors",
  4701. "homepage": "https://www.drupal.org/node/247808/committers"
  4702. }
  4703. ],
  4704. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4705. "homepage": "https://www.drupal.org/project/matomo",
  4706. "support": {
  4707. "source": "https://git.drupal.org/project/matomo.git",
  4708. "issues": "https://www.drupal.org/project/issues/matomo"
  4709. }
  4710. },
  4711. {
  4712. "name": "drupal/menu_admin_per_menu",
  4713. "version": "1.0.0",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4717. "reference": "8.x-1.0"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4722. "reference": "8.x-1.0",
  4723. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4724. },
  4725. "require": {
  4726. "drupal/core": "*"
  4727. },
  4728. "type": "drupal-module",
  4729. "extra": {
  4730. "branch-alias": {
  4731. "dev-1.x": "1.x-dev"
  4732. },
  4733. "drupal": {
  4734. "version": "8.x-1.0",
  4735. "datestamp": "1507184944",
  4736. "security-coverage": {
  4737. "status": "covered",
  4738. "message": "Covered by Drupal's security advisory policy"
  4739. }
  4740. }
  4741. },
  4742. "notification-url": "https://packages.drupal.org/8/downloads",
  4743. "license": [
  4744. "GPL-2.0-or-later"
  4745. ],
  4746. "authors": [
  4747. {
  4748. "name": "anrikun",
  4749. "homepage": "https://www.drupal.org/user/410199"
  4750. },
  4751. {
  4752. "name": "mkdok",
  4753. "homepage": "https://www.drupal.org/user/3308753"
  4754. }
  4755. ],
  4756. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4757. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4758. "support": {
  4759. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4760. }
  4761. },
  4762. {
  4763. "name": "drupal/metatag",
  4764. "version": "1.10.0",
  4765. "source": {
  4766. "type": "git",
  4767. "url": "https://git.drupalcode.org/project/metatag.git",
  4768. "reference": "8.x-1.10"
  4769. },
  4770. "dist": {
  4771. "type": "zip",
  4772. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip",
  4773. "reference": "8.x-1.10",
  4774. "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc"
  4775. },
  4776. "require": {
  4777. "drupal/core": "*",
  4778. "drupal/token": "^1.0"
  4779. },
  4780. "require-dev": {
  4781. "drupal/devel": "^2.0",
  4782. "drupal/metatag_dc": "*",
  4783. "drupal/metatag_open_graph": "*",
  4784. "drupal/page_manager": "^4.0",
  4785. "drupal/redirect": "^1.0",
  4786. "drupal/restui": "^1.0",
  4787. "drupal/schema_metatag": "^1.0",
  4788. "drupal/schema_web_page": "*"
  4789. },
  4790. "type": "drupal-module",
  4791. "extra": {
  4792. "branch-alias": {
  4793. "dev-1.x": "1.x-dev"
  4794. },
  4795. "drupal": {
  4796. "version": "8.x-1.10",
  4797. "datestamp": "1567099985",
  4798. "security-coverage": {
  4799. "status": "covered",
  4800. "message": "Covered by Drupal's security advisory policy"
  4801. }
  4802. }
  4803. },
  4804. "notification-url": "https://packages.drupal.org/8/downloads",
  4805. "license": [
  4806. "GPL-2.0+"
  4807. ],
  4808. "authors": [
  4809. {
  4810. "name": "See contributors",
  4811. "homepage": "https://www.drupal.org/node/640498/committers",
  4812. "role": "Developer"
  4813. },
  4814. {
  4815. "name": "Dave Reid",
  4816. "homepage": "https://www.drupal.org/user/53892"
  4817. }
  4818. ],
  4819. "description": "Manage meta tags for all entities.",
  4820. "homepage": "https://www.drupal.org/project/metatag",
  4821. "keywords": [
  4822. "Drupal",
  4823. "seo"
  4824. ],
  4825. "support": {
  4826. "source": "http://cgit.drupalcode.org/metatag",
  4827. "issues": "http://drupal.org/project/issues/metatag"
  4828. }
  4829. },
  4830. {
  4831. "name": "drupal/migrate_plus",
  4832. "version": "4.2.0",
  4833. "source": {
  4834. "type": "git",
  4835. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4836. "reference": "8.x-4.2"
  4837. },
  4838. "dist": {
  4839. "type": "zip",
  4840. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip",
  4841. "reference": "8.x-4.2",
  4842. "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3"
  4843. },
  4844. "require": {
  4845. "drupal/core": "^8.3"
  4846. },
  4847. "require-dev": {
  4848. "drupal/entity": "*",
  4849. "drupal/migrate_example_advanced_setup": "*",
  4850. "drupal/migrate_example_setup": "*",
  4851. "drupal/migrate_tools": "*",
  4852. "drupal/profile": "*"
  4853. },
  4854. "suggest": {
  4855. "ext-soap": "*",
  4856. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4857. },
  4858. "type": "drupal-module",
  4859. "extra": {
  4860. "branch-alias": {
  4861. "dev-4.x": "4.x-dev"
  4862. },
  4863. "drupal": {
  4864. "version": "8.x-4.2",
  4865. "datestamp": "1555683487",
  4866. "security-coverage": {
  4867. "status": "covered",
  4868. "message": "Covered by Drupal's security advisory policy"
  4869. }
  4870. }
  4871. },
  4872. "notification-url": "https://packages.drupal.org/8/downloads",
  4873. "license": [
  4874. "GPL-2.0+"
  4875. ],
  4876. "authors": [
  4877. {
  4878. "name": "Mike Ryan",
  4879. "homepage": "https://www.drupal.org/u/mikeryan",
  4880. "role": "Maintainer"
  4881. },
  4882. {
  4883. "name": "mikeryan",
  4884. "homepage": "https://www.drupal.org/user/4420"
  4885. }
  4886. ],
  4887. "description": "Enhancements to core migration support.",
  4888. "homepage": "https://www.drupal.org/project/migrate_plus",
  4889. "support": {
  4890. "source": "https://cgit.drupalcode.org/migrate_plus",
  4891. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4892. "irc": "irc://irc.freenode.org/drupal-migrate"
  4893. }
  4894. },
  4895. {
  4896. "name": "drupal/migrate_tools",
  4897. "version": "4.4.0",
  4898. "source": {
  4899. "type": "git",
  4900. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4901. "reference": "8.x-4.4"
  4902. },
  4903. "dist": {
  4904. "type": "zip",
  4905. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.4.zip",
  4906. "reference": "8.x-4.4",
  4907. "shasum": "54a9f138809564c7e89d0e37e9fbb2ed57b562e2"
  4908. },
  4909. "require": {
  4910. "drupal/core": "^8.3",
  4911. "drupal/migrate_plus": "^4 || ^5"
  4912. },
  4913. "require-dev": {
  4914. "drupal/migrate_plus": "4.x-dev",
  4915. "drupal/migrate_source_csv": "^2.2",
  4916. "drush/drush": "^10"
  4917. },
  4918. "type": "drupal-module",
  4919. "extra": {
  4920. "branch-alias": {
  4921. "dev-4.x": "4.x-dev"
  4922. },
  4923. "drupal": {
  4924. "version": "8.x-4.4",
  4925. "datestamp": "1570477985",
  4926. "security-coverage": {
  4927. "status": "covered",
  4928. "message": "Covered by Drupal's security advisory policy"
  4929. }
  4930. },
  4931. "drush": {
  4932. "services": {
  4933. "drush.services.yml": "^9 || ^10"
  4934. }
  4935. }
  4936. },
  4937. "notification-url": "https://packages.drupal.org/8/downloads",
  4938. "license": [
  4939. "GPL-2.0-or-later"
  4940. ],
  4941. "authors": [
  4942. {
  4943. "name": "heddn",
  4944. "homepage": "https://www.drupal.org/user/1463982"
  4945. },
  4946. {
  4947. "name": "mikeryan",
  4948. "homepage": "https://www.drupal.org/user/4420"
  4949. },
  4950. {
  4951. "name": "moshe weitzman",
  4952. "homepage": "https://www.drupal.org/user/23"
  4953. }
  4954. ],
  4955. "description": "Tools to assist in developing and running migrations.",
  4956. "homepage": "http://drupal.org/project/migrate_tools",
  4957. "support": {
  4958. "source": "http://cgit.drupalcode.org/migrate_tools",
  4959. "issues": "http://drupal.org/project/migrate_tools",
  4960. "irc": "irc://irc.freenode.org/drupal-migrate"
  4961. }
  4962. },
  4963. {
  4964. "name": "drupal/path_alias_xt",
  4965. "version": "dev-1.x",
  4966. "source": {
  4967. "type": "git",
  4968. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4969. "reference": "30e7fc03f4f8572516160ea3a7d7282653e71818"
  4970. },
  4971. "require": {
  4972. "drupal/core": "*"
  4973. },
  4974. "type": "drupal-module",
  4975. "extra": {
  4976. "branch-alias": {
  4977. "dev-1.x": "1.x-dev"
  4978. },
  4979. "drupal": {
  4980. "version": "8.x-1.x-dev",
  4981. "datestamp": "1557514381",
  4982. "security-coverage": {
  4983. "status": "not-covered",
  4984. "message": "Dev releases are not covered by Drupal security advisories."
  4985. }
  4986. }
  4987. },
  4988. "notification-url": "https://packages.drupal.org/8/downloads",
  4989. "license": [
  4990. "GPL-2.0-or-later"
  4991. ],
  4992. "authors": [
  4993. {
  4994. "name": "RdeBoer",
  4995. "homepage": "https://www.drupal.org/user/404007"
  4996. },
  4997. {
  4998. "name": "adriancid",
  4999. "homepage": "https://www.drupal.org/user/1962106"
  5000. },
  5001. {
  5002. "name": "sdstyles",
  5003. "homepage": "https://www.drupal.org/user/1420228"
  5004. }
  5005. ],
  5006. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  5007. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5008. "support": {
  5009. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5010. },
  5011. "time": "2019-05-28T17:44:23+00:00"
  5012. },
  5013. {
  5014. "name": "drupal/pathauto",
  5015. "version": "1.5.0",
  5016. "source": {
  5017. "type": "git",
  5018. "url": "https://git.drupalcode.org/project/pathauto.git",
  5019. "reference": "8.x-1.5"
  5020. },
  5021. "dist": {
  5022. "type": "zip",
  5023. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.5.zip",
  5024. "reference": "8.x-1.5",
  5025. "shasum": "ae3c13f26d625e63da3b13dc64016888eca519c7"
  5026. },
  5027. "require": {
  5028. "drupal/core": "^8.6",
  5029. "drupal/ctools": "*",
  5030. "drupal/token": "*"
  5031. },
  5032. "type": "drupal-module",
  5033. "extra": {
  5034. "branch-alias": {
  5035. "dev-1.x": "1.x-dev"
  5036. },
  5037. "drupal": {
  5038. "version": "8.x-1.5",
  5039. "datestamp": "1570828084",
  5040. "security-coverage": {
  5041. "status": "covered",
  5042. "message": "Covered by Drupal's security advisory policy"
  5043. }
  5044. }
  5045. },
  5046. "notification-url": "https://packages.drupal.org/8/downloads",
  5047. "license": [
  5048. "GPL-2.0-or-later"
  5049. ],
  5050. "authors": [
  5051. {
  5052. "name": "Berdir",
  5053. "homepage": "https://www.drupal.org/user/214652"
  5054. },
  5055. {
  5056. "name": "Dave Reid",
  5057. "homepage": "https://www.drupal.org/user/53892"
  5058. },
  5059. {
  5060. "name": "Freso",
  5061. "homepage": "https://www.drupal.org/user/27504"
  5062. },
  5063. {
  5064. "name": "greggles",
  5065. "homepage": "https://www.drupal.org/user/36762"
  5066. }
  5067. ],
  5068. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5069. "homepage": "https://www.drupal.org/project/pathauto",
  5070. "support": {
  5071. "source": "https://git.drupalcode.org/project/pathauto"
  5072. }
  5073. },
  5074. {
  5075. "name": "drupal/piwik",
  5076. "version": "1.4.0",
  5077. "source": {
  5078. "type": "git",
  5079. "url": "https://git.drupalcode.org/project/piwik.git",
  5080. "reference": "8.x-1.4"
  5081. },
  5082. "dist": {
  5083. "type": "zip",
  5084. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  5085. "reference": "8.x-1.4",
  5086. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  5087. },
  5088. "require": {
  5089. "drupal/core": "~8.0",
  5090. "drupal/matomo": "^1.0"
  5091. },
  5092. "require-dev": {
  5093. "drupal/php": "*",
  5094. "drupal/token": "*"
  5095. },
  5096. "type": "drupal-module",
  5097. "extra": {
  5098. "branch-alias": {
  5099. "dev-1.x": "1.x-dev"
  5100. },
  5101. "drupal": {
  5102. "version": "8.x-1.4",
  5103. "datestamp": "1530437786",
  5104. "security-coverage": {
  5105. "status": "covered",
  5106. "message": "Covered by Drupal's security advisory policy"
  5107. }
  5108. }
  5109. },
  5110. "notification-url": "https://packages.drupal.org/8/downloads",
  5111. "license": [
  5112. "GPL-2.0+"
  5113. ],
  5114. "authors": [
  5115. {
  5116. "name": "hass",
  5117. "homepage": "https://www.drupal.org/u/hass"
  5118. },
  5119. {
  5120. "name": "See other contributors",
  5121. "homepage": "https://www.drupal.org/node/247808/committers"
  5122. }
  5123. ],
  5124. "description": "Adds Piwik javascript tracking code to all your site's pages",
  5125. "homepage": "https://www.drupal.org/project/piwik",
  5126. "support": {
  5127. "source": "http://git.drupal.org/project/piwik.git",
  5128. "issues": "https://www.drupal.org/project/issues/piwik"
  5129. }
  5130. },
  5131. {
  5132. "name": "drupal/profile",
  5133. "version": "1.0.0",
  5134. "source": {
  5135. "type": "git",
  5136. "url": "https://git.drupalcode.org/project/profile.git",
  5137. "reference": "8.x-1.0"
  5138. },
  5139. "dist": {
  5140. "type": "zip",
  5141. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0.zip",
  5142. "reference": "8.x-1.0",
  5143. "shasum": "45f5ad7f274d5e1e7ec8b72d98f9a20136073112"
  5144. },
  5145. "require": {
  5146. "drupal/core": "^8.6",
  5147. "drupal/entity": "^1.0-rc2"
  5148. },
  5149. "require-dev": {
  5150. "drupal/token": "^1.0"
  5151. },
  5152. "type": "drupal-module",
  5153. "extra": {
  5154. "branch-alias": {
  5155. "dev-1.x": "1.x-dev"
  5156. },
  5157. "drupal": {
  5158. "version": "8.x-1.0",
  5159. "datestamp": "1567007888",
  5160. "security-coverage": {
  5161. "status": "covered",
  5162. "message": "Covered by Drupal's security advisory policy"
  5163. }
  5164. }
  5165. },
  5166. "notification-url": "https://packages.drupal.org/8/downloads",
  5167. "license": [
  5168. "GPL-2.0+"
  5169. ],
  5170. "authors": [
  5171. {
  5172. "name": "bojanz",
  5173. "homepage": "https://www.drupal.org/user/86106"
  5174. },
  5175. {
  5176. "name": "daggerhart",
  5177. "homepage": "https://www.drupal.org/user/167806"
  5178. },
  5179. {
  5180. "name": "fago",
  5181. "homepage": "https://www.drupal.org/user/16747"
  5182. },
  5183. {
  5184. "name": "jsacksick",
  5185. "homepage": "https://www.drupal.org/user/972218"
  5186. },
  5187. {
  5188. "name": "mglaman",
  5189. "homepage": "https://www.drupal.org/user/2416470"
  5190. },
  5191. {
  5192. "name": "pcambra",
  5193. "homepage": "https://www.drupal.org/user/122101"
  5194. }
  5195. ],
  5196. "description": "Provides configurable user profiles.",
  5197. "homepage": "http://drupal.org/project/profile",
  5198. "support": {
  5199. "source": "https://git.drupalcode.org/project/profile"
  5200. }
  5201. },
  5202. {
  5203. "name": "drupal/redirect",
  5204. "version": "1.4.0",
  5205. "source": {
  5206. "type": "git",
  5207. "url": "https://git.drupalcode.org/project/redirect.git",
  5208. "reference": "8.x-1.4"
  5209. },
  5210. "dist": {
  5211. "type": "zip",
  5212. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.4.zip",
  5213. "reference": "8.x-1.4",
  5214. "shasum": "4c7e0dc0ab0cbcc7d66e16cc684882c0eaa71c1c"
  5215. },
  5216. "require": {
  5217. "drupal/core": "~8"
  5218. },
  5219. "type": "drupal-module",
  5220. "extra": {
  5221. "branch-alias": {
  5222. "dev-1.x": "1.x-dev"
  5223. },
  5224. "drupal": {
  5225. "version": "8.x-1.4",
  5226. "datestamp": "1561757585",
  5227. "security-coverage": {
  5228. "status": "covered",
  5229. "message": "Covered by Drupal's security advisory policy"
  5230. }
  5231. }
  5232. },
  5233. "notification-url": "https://packages.drupal.org/8/downloads",
  5234. "license": [
  5235. "GPL-2.0+"
  5236. ],
  5237. "authors": [
  5238. {
  5239. "name": "Berdir",
  5240. "homepage": "https://www.drupal.org/user/214652"
  5241. },
  5242. {
  5243. "name": "Dave Reid",
  5244. "homepage": "https://www.drupal.org/user/53892"
  5245. },
  5246. {
  5247. "name": "pifagor",
  5248. "homepage": "https://www.drupal.org/user/2375692"
  5249. }
  5250. ],
  5251. "description": "Allows users to redirect from old URLs to new URLs.",
  5252. "homepage": "https://www.drupal.org/project/redirect",
  5253. "support": {
  5254. "source": "https://git.drupalcode.org/project/redirect"
  5255. }
  5256. },
  5257. {
  5258. "name": "drupal/redis",
  5259. "version": "1.2.0",
  5260. "source": {
  5261. "type": "git",
  5262. "url": "https://git.drupalcode.org/project/redis.git",
  5263. "reference": "8.x-1.2"
  5264. },
  5265. "dist": {
  5266. "type": "zip",
  5267. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.2.zip",
  5268. "reference": "8.x-1.2",
  5269. "shasum": "6b8847a0816a6e400d495aed1e9dde4c594d6e2b"
  5270. },
  5271. "require": {
  5272. "drupal/core": "~8.0"
  5273. },
  5274. "suggest": {
  5275. "predis/predis": "^1.1.1"
  5276. },
  5277. "type": "drupal-module",
  5278. "extra": {
  5279. "branch-alias": {
  5280. "dev-1.x": "1.x-dev"
  5281. },
  5282. "drupal": {
  5283. "version": "8.x-1.2",
  5284. "datestamp": "1568275684",
  5285. "security-coverage": {
  5286. "status": "covered",
  5287. "message": "Covered by Drupal's security advisory policy"
  5288. }
  5289. }
  5290. },
  5291. "autoload": {
  5292. "psr-4": {
  5293. "Drupal\\redis\\": "src"
  5294. }
  5295. },
  5296. "notification-url": "https://packages.drupal.org/8/downloads",
  5297. "license": [
  5298. "GPL-2.0"
  5299. ],
  5300. "authors": [
  5301. {
  5302. "name": "Berdir",
  5303. "homepage": "https://www.drupal.org/user/214652"
  5304. },
  5305. {
  5306. "name": "pounard",
  5307. "homepage": "https://www.drupal.org/user/240164"
  5308. }
  5309. ],
  5310. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5311. "homepage": "https://www.drupal.org/project/redis",
  5312. "support": {
  5313. "source": "https://git.drupalcode.org/project/redis"
  5314. }
  5315. },
  5316. {
  5317. "name": "drupal/search_api",
  5318. "version": "1.15.0",
  5319. "source": {
  5320. "type": "git",
  5321. "url": "https://git.drupalcode.org/project/search_api.git",
  5322. "reference": "8.x-1.15"
  5323. },
  5324. "dist": {
  5325. "type": "zip",
  5326. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.15.zip",
  5327. "reference": "8.x-1.15",
  5328. "shasum": "12c13141adb6b687fe36781ac9269a49ef810323"
  5329. },
  5330. "require": {
  5331. "drupal/core": "^8.6"
  5332. },
  5333. "conflict": {
  5334. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5335. },
  5336. "require-dev": {
  5337. "drupal/language_fallback_fix": "@dev",
  5338. "drupal/search_api_autocomplete": "@dev",
  5339. "drupal/search_api_db": "*"
  5340. },
  5341. "suggest": {
  5342. "drupal/facets": "Adds the ability to create faceted searches.",
  5343. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5344. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5345. },
  5346. "type": "drupal-module",
  5347. "extra": {
  5348. "branch-alias": {
  5349. "dev-1.x": "1.x-dev"
  5350. },
  5351. "drupal": {
  5352. "version": "8.x-1.15",
  5353. "datestamp": "1573122785",
  5354. "security-coverage": {
  5355. "status": "covered",
  5356. "message": "Covered by Drupal's security advisory policy"
  5357. }
  5358. },
  5359. "drush": {
  5360. "services": {
  5361. "drush.services.yml": "^9"
  5362. }
  5363. }
  5364. },
  5365. "notification-url": "https://packages.drupal.org/8/downloads",
  5366. "license": [
  5367. "GPL-2.0+"
  5368. ],
  5369. "authors": [
  5370. {
  5371. "name": "Thomas Seidl",
  5372. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5373. },
  5374. {
  5375. "name": "Nick Veenhof",
  5376. "homepage": "https://www.drupal.org/u/nick_vh"
  5377. },
  5378. {
  5379. "name": "See other contributors",
  5380. "homepage": "https://www.drupal.org/node/790418/committers"
  5381. }
  5382. ],
  5383. "description": "Provides a generic framework for modules offering search capabilities.",
  5384. "homepage": "https://www.drupal.org/project/search_api",
  5385. "support": {
  5386. "source": "http://git.drupal.org/project/search_api.git",
  5387. "issues": "https://www.drupal.org/project/issues/search_api",
  5388. "irc": "irc://irc.freenode.org/drupal-search-api"
  5389. }
  5390. },
  5391. {
  5392. "name": "drupal/simple_sitemap",
  5393. "version": "3.4.0",
  5394. "source": {
  5395. "type": "git",
  5396. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5397. "reference": "8.x-3.4"
  5398. },
  5399. "dist": {
  5400. "type": "zip",
  5401. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.4.zip",
  5402. "reference": "8.x-3.4",
  5403. "shasum": "7cb1944ca2659e426e20680ef8e7cd48747545c8"
  5404. },
  5405. "require": {
  5406. "drupal/core": "~8.0",
  5407. "ext-xmlwriter": "*"
  5408. },
  5409. "type": "drupal-module",
  5410. "extra": {
  5411. "branch-alias": {
  5412. "dev-3.x": "3.x-dev"
  5413. },
  5414. "drupal": {
  5415. "version": "8.x-3.4",
  5416. "datestamp": "1570445886",
  5417. "security-coverage": {
  5418. "status": "covered",
  5419. "message": "Covered by Drupal's security advisory policy"
  5420. }
  5421. },
  5422. "drush": {
  5423. "services": {
  5424. "drush.services.yml": "^9"
  5425. }
  5426. }
  5427. },
  5428. "notification-url": "https://packages.drupal.org/8/downloads",
  5429. "license": [
  5430. "GPL-2.0+"
  5431. ],
  5432. "authors": [
  5433. {
  5434. "name": "Pawel Ginalski (gbyte.co)",
  5435. "homepage": "https://www.drupal.org/u/gbyte.co",
  5436. "email": "contact@gbyte.co",
  5437. "role": "Maintainer"
  5438. },
  5439. {
  5440. "name": "gbyte.co",
  5441. "homepage": "https://www.drupal.org/user/2381352"
  5442. }
  5443. ],
  5444. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5445. "homepage": "https://drupal.org/project/simple_sitemap",
  5446. "support": {
  5447. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5448. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5449. "irc": "irc://irc.freenode.org/drupal-contribute"
  5450. }
  5451. },
  5452. {
  5453. "name": "drupal/synonyms",
  5454. "version": "dev-1.x",
  5455. "source": {
  5456. "type": "git",
  5457. "url": "https://git.drupalcode.org/project/synonyms.git",
  5458. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5459. },
  5460. "require": {
  5461. "drupal/core": "^8.2"
  5462. },
  5463. "type": "drupal-module",
  5464. "extra": {
  5465. "branch-alias": {
  5466. "dev-1.x": "1.x-dev"
  5467. },
  5468. "drupal": {
  5469. "version": "8.x-1.0-alpha1+5-dev",
  5470. "datestamp": "1540141681",
  5471. "security-coverage": {
  5472. "status": "not-covered",
  5473. "message": "Dev releases are not covered by Drupal security advisories."
  5474. }
  5475. }
  5476. },
  5477. "notification-url": "https://packages.drupal.org/8/downloads",
  5478. "license": [
  5479. "GPL-2.0-or-later"
  5480. ],
  5481. "authors": [
  5482. {
  5483. "name": "Zen",
  5484. "homepage": "https://www.drupal.org/user/21209"
  5485. },
  5486. {
  5487. "name": "bojanz",
  5488. "homepage": "https://www.drupal.org/user/86106"
  5489. },
  5490. {
  5491. "name": "bucefal91",
  5492. "homepage": "https://www.drupal.org/user/504128"
  5493. }
  5494. ],
  5495. "description": "Provides synonyms feature for content entities.",
  5496. "homepage": "https://www.drupal.org/project/synonyms",
  5497. "support": {
  5498. "source": "https://git.drupalcode.org/project/synonyms"
  5499. },
  5500. "time": "2018-10-21T17:05:25+00:00"
  5501. },
  5502. {
  5503. "name": "drupal/token",
  5504. "version": "1.5.0",
  5505. "source": {
  5506. "type": "git",
  5507. "url": "https://git.drupalcode.org/project/token.git",
  5508. "reference": "8.x-1.5"
  5509. },
  5510. "dist": {
  5511. "type": "zip",
  5512. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5513. "reference": "8.x-1.5",
  5514. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5515. },
  5516. "require": {
  5517. "drupal/core": "^8.5"
  5518. },
  5519. "type": "drupal-module",
  5520. "extra": {
  5521. "branch-alias": {
  5522. "dev-1.x": "1.x-dev"
  5523. },
  5524. "drupal": {
  5525. "version": "8.x-1.5",
  5526. "datestamp": "1537557481",
  5527. "security-coverage": {
  5528. "status": "covered",
  5529. "message": "Covered by Drupal's security advisory policy"
  5530. }
  5531. }
  5532. },
  5533. "notification-url": "https://packages.drupal.org/8/downloads",
  5534. "license": [
  5535. "GPL-2.0-or-later"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "Berdir",
  5540. "homepage": "https://www.drupal.org/user/214652"
  5541. },
  5542. {
  5543. "name": "Dave Reid",
  5544. "homepage": "https://www.drupal.org/user/53892"
  5545. },
  5546. {
  5547. "name": "eaton",
  5548. "homepage": "https://www.drupal.org/user/16496"
  5549. },
  5550. {
  5551. "name": "fago",
  5552. "homepage": "https://www.drupal.org/user/16747"
  5553. },
  5554. {
  5555. "name": "greggles",
  5556. "homepage": "https://www.drupal.org/user/36762"
  5557. },
  5558. {
  5559. "name": "mikeryan",
  5560. "homepage": "https://www.drupal.org/user/4420"
  5561. }
  5562. ],
  5563. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5564. "homepage": "https://www.drupal.org/project/token",
  5565. "support": {
  5566. "source": "https://git.drupalcode.org/project/token"
  5567. }
  5568. },
  5569. {
  5570. "name": "drupal/toolbar_themes",
  5571. "version": "dev-1.x",
  5572. "source": {
  5573. "type": "git",
  5574. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5575. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5576. },
  5577. "require": {
  5578. "drupal/core": "*"
  5579. },
  5580. "type": "drupal-module",
  5581. "extra": {
  5582. "branch-alias": {
  5583. "dev-1.x": "1.x-dev"
  5584. },
  5585. "drupal": {
  5586. "version": "8.x-1.0-alpha4+10-dev",
  5587. "datestamp": "1510689485",
  5588. "security-coverage": {
  5589. "status": "not-covered",
  5590. "message": "Project has not opted into security advisory coverage!"
  5591. }
  5592. }
  5593. },
  5594. "notification-url": "https://packages.drupal.org/8/downloads",
  5595. "license": [
  5596. "GPL-2.0-or-later"
  5597. ],
  5598. "authors": [
  5599. {
  5600. "name": "Jeff Burnz",
  5601. "homepage": "https://www.drupal.org/user/61393"
  5602. }
  5603. ],
  5604. "description": "Apply themes to the toolbar.",
  5605. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5606. "support": {
  5607. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5608. },
  5609. "time": "2017-11-14T19:57:02+00:00"
  5610. },
  5611. {
  5612. "name": "drupal/translation_views",
  5613. "version": "1.0.0-alpha8",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://git.drupalcode.org/project/translation_views.git",
  5617. "reference": "8.x-1.0-alpha8"
  5618. },
  5619. "dist": {
  5620. "type": "zip",
  5621. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha8.zip",
  5622. "reference": "8.x-1.0-alpha8",
  5623. "shasum": "5903869f77129aa46daf46cd9a34bd9706072eb5"
  5624. },
  5625. "require": {
  5626. "drupal/core": "*"
  5627. },
  5628. "require-dev": {
  5629. "drupal/translators": "*",
  5630. "drupal/translators_content": "*"
  5631. },
  5632. "type": "drupal-module",
  5633. "extra": {
  5634. "branch-alias": {
  5635. "dev-1.x": "1.x-dev"
  5636. },
  5637. "drupal": {
  5638. "version": "8.x-1.0-alpha8",
  5639. "datestamp": "1572571385",
  5640. "security-coverage": {
  5641. "status": "not-covered",
  5642. "message": "Project has not opted into security advisory coverage!"
  5643. }
  5644. }
  5645. },
  5646. "notification-url": "https://packages.drupal.org/8/downloads",
  5647. "license": [
  5648. "GPL-2.0-or-later"
  5649. ],
  5650. "authors": [
  5651. {
  5652. "name": "matsbla",
  5653. "homepage": "https://www.drupal.org/user/2325394"
  5654. },
  5655. {
  5656. "name": "vlad.dancer",
  5657. "homepage": "https://www.drupal.org/user/903844"
  5658. }
  5659. ],
  5660. "description": "Create customized lists and queries of translations from your database.",
  5661. "homepage": "https://www.drupal.org/project/translation_views",
  5662. "support": {
  5663. "source": "https://git.drupalcode.org/project/translation_views"
  5664. }
  5665. },
  5666. {
  5667. "name": "drupal/url_to_video_filter",
  5668. "version": "1.3.0",
  5669. "source": {
  5670. "type": "git",
  5671. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5672. "reference": "8.x-1.3"
  5673. },
  5674. "dist": {
  5675. "type": "zip",
  5676. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5677. "reference": "8.x-1.3",
  5678. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5679. },
  5680. "require": {
  5681. "drupal/core": "~8.0"
  5682. },
  5683. "type": "drupal-module",
  5684. "extra": {
  5685. "branch-alias": {
  5686. "dev-1.x": "1.x-dev"
  5687. },
  5688. "drupal": {
  5689. "version": "8.x-1.3",
  5690. "datestamp": "1532695981",
  5691. "security-coverage": {
  5692. "status": "covered",
  5693. "message": "Covered by Drupal's security advisory policy"
  5694. }
  5695. }
  5696. },
  5697. "notification-url": "https://packages.drupal.org/8/downloads",
  5698. "license": [
  5699. "GPL-2.0-or-later"
  5700. ],
  5701. "authors": [
  5702. {
  5703. "name": "Jaypan",
  5704. "homepage": "https://www.drupal.org/user/324696"
  5705. }
  5706. ],
  5707. "description": "Text filter to convert URLs to embedded videos",
  5708. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5709. "support": {
  5710. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5711. }
  5712. },
  5713. {
  5714. "name": "drupal/views_bulk_edit",
  5715. "version": "2.4.0",
  5716. "source": {
  5717. "type": "git",
  5718. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5719. "reference": "8.x-2.4"
  5720. },
  5721. "dist": {
  5722. "type": "zip",
  5723. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5724. "reference": "8.x-2.4",
  5725. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5726. },
  5727. "require": {
  5728. "drupal/core": "*",
  5729. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5730. },
  5731. "type": "drupal-module",
  5732. "extra": {
  5733. "branch-alias": {
  5734. "dev-2.x": "2.x-dev"
  5735. },
  5736. "drupal": {
  5737. "version": "8.x-2.4",
  5738. "datestamp": "1570030085",
  5739. "security-coverage": {
  5740. "status": "covered",
  5741. "message": "Covered by Drupal's security advisory policy"
  5742. }
  5743. }
  5744. },
  5745. "notification-url": "https://packages.drupal.org/8/downloads",
  5746. "license": [
  5747. "GPL-2.0+"
  5748. ],
  5749. "authors": [
  5750. {
  5751. "name": "Marcin Grabias",
  5752. "homepage": "https://www.drupal.org/u/graber"
  5753. },
  5754. {
  5755. "name": "benjy",
  5756. "homepage": "https://www.drupal.org/user/1852732"
  5757. }
  5758. ],
  5759. "description": "Allows bulk edition of entity field values.",
  5760. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5761. "support": {
  5762. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5763. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5764. }
  5765. },
  5766. {
  5767. "name": "drupal/views_bulk_operations",
  5768. "version": "3.3.0",
  5769. "source": {
  5770. "type": "git",
  5771. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5772. "reference": "8.x-3.3"
  5773. },
  5774. "dist": {
  5775. "type": "zip",
  5776. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.3.zip",
  5777. "reference": "8.x-3.3",
  5778. "shasum": "480fec7c4a21ce8a57328af45735b5086a5bd178"
  5779. },
  5780. "require": {
  5781. "drupal/core": "~8.5"
  5782. },
  5783. "type": "drupal-module",
  5784. "extra": {
  5785. "branch-alias": {
  5786. "dev-3.x": "3.x-dev"
  5787. },
  5788. "drupal": {
  5789. "version": "8.x-3.3",
  5790. "datestamp": "1570032485",
  5791. "security-coverage": {
  5792. "status": "covered",
  5793. "message": "Covered by Drupal's security advisory policy"
  5794. }
  5795. },
  5796. "drush": {
  5797. "services": {
  5798. "drush.services.yml": "^9"
  5799. }
  5800. }
  5801. },
  5802. "notification-url": "https://packages.drupal.org/8/downloads",
  5803. "license": [
  5804. "GPL-2.0+"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "Marcin Grabias",
  5809. "homepage": "https://www.drupal.org/u/graber"
  5810. },
  5811. {
  5812. "name": "Jon Pugh",
  5813. "homepage": "https://www.drupal.org/user/17028"
  5814. },
  5815. {
  5816. "name": "bojanz",
  5817. "homepage": "https://www.drupal.org/user/86106"
  5818. },
  5819. {
  5820. "name": "infojunkie",
  5821. "homepage": "https://www.drupal.org/user/48424"
  5822. },
  5823. {
  5824. "name": "joelpittet",
  5825. "homepage": "https://www.drupal.org/user/160302"
  5826. }
  5827. ],
  5828. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5829. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5830. "support": {
  5831. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5832. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5833. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5834. }
  5835. },
  5836. {
  5837. "name": "drupal/workflow",
  5838. "version": "dev-1.x",
  5839. "source": {
  5840. "type": "git",
  5841. "url": "https://git.drupalcode.org/project/workflow.git",
  5842. "reference": "920f1e5acc99da722592eb0f3b3cb32c0e96a560"
  5843. },
  5844. "require": {
  5845. "drupal/core": "*"
  5846. },
  5847. "type": "drupal-module",
  5848. "extra": {
  5849. "branch-alias": {
  5850. "dev-1.x": "1.x-dev"
  5851. },
  5852. "drupal": {
  5853. "version": "8.x-1.1+38-dev",
  5854. "datestamp": "1571663284",
  5855. "security-coverage": {
  5856. "status": "not-covered",
  5857. "message": "Dev releases are not covered by Drupal security advisories."
  5858. }
  5859. }
  5860. },
  5861. "notification-url": "https://packages.drupal.org/8/downloads",
  5862. "license": [
  5863. "GPL-2.0-or-later"
  5864. ],
  5865. "authors": [
  5866. {
  5867. "name": "Bastlynn",
  5868. "homepage": "https://www.drupal.org/user/275249"
  5869. },
  5870. {
  5871. "name": "Heine",
  5872. "homepage": "https://www.drupal.org/user/17943"
  5873. },
  5874. {
  5875. "name": "JacobSingh",
  5876. "homepage": "https://www.drupal.org/user/68912"
  5877. },
  5878. {
  5879. "name": "NancyDru",
  5880. "homepage": "https://www.drupal.org/user/101412"
  5881. },
  5882. {
  5883. "name": "eaton",
  5884. "homepage": "https://www.drupal.org/user/16496"
  5885. },
  5886. {
  5887. "name": "johnv",
  5888. "homepage": "https://www.drupal.org/user/591042"
  5889. },
  5890. {
  5891. "name": "jvandyk",
  5892. "homepage": "https://www.drupal.org/user/2375"
  5893. },
  5894. {
  5895. "name": "mfredrickson",
  5896. "homepage": "https://www.drupal.org/user/31994"
  5897. },
  5898. {
  5899. "name": "q0rban",
  5900. "homepage": "https://www.drupal.org/user/31022"
  5901. }
  5902. ],
  5903. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5904. "homepage": "https://www.drupal.org/project/workflow",
  5905. "support": {
  5906. "source": "https://git.drupalcode.org/project/workflow"
  5907. },
  5908. "time": "2019-11-12T11:10:01+00:00"
  5909. },
  5910. {
  5911. "name": "drush/drush",
  5912. "version": "9.7.1",
  5913. "source": {
  5914. "type": "git",
  5915. "url": "https://github.com/drush-ops/drush.git",
  5916. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479"
  5917. },
  5918. "dist": {
  5919. "type": "zip",
  5920. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6f9a8d235daec06fd6f47b2d84da675750566479",
  5921. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479",
  5922. "shasum": ""
  5923. },
  5924. "require": {
  5925. "chi-teck/drupal-code-generator": "^1.28.1",
  5926. "composer/semver": "^1.4",
  5927. "consolidation/annotated-command": "^2.12",
  5928. "consolidation/config": "^1.2",
  5929. "consolidation/filter-via-dot-access-data": "^1",
  5930. "consolidation/output-formatters": "^3.3.1",
  5931. "consolidation/robo": "^1.4.6",
  5932. "consolidation/site-alias": "^3.0.0@stable",
  5933. "consolidation/site-process": "^2.0.3",
  5934. "ext-dom": "*",
  5935. "grasmash/yaml-expander": "^1.1.1",
  5936. "league/container": "~2",
  5937. "php": ">=5.6.0",
  5938. "psr/log": "~1.0",
  5939. "psy/psysh": "~0.6",
  5940. "symfony/console": "^3.4",
  5941. "symfony/event-dispatcher": "^3.4",
  5942. "symfony/finder": "^3.4 || ^4.0",
  5943. "symfony/process": "^3.4",
  5944. "symfony/var-dumper": "^3.4 || ^4.0",
  5945. "symfony/yaml": "^3.4",
  5946. "webflo/drupal-finder": "^1.1",
  5947. "webmozart/path-util": "^2.1.0"
  5948. },
  5949. "require-dev": {
  5950. "composer/installers": "^1.2",
  5951. "cweagans/composer-patches": "~1.0",
  5952. "drupal/alinks": "1.0.0",
  5953. "drupal/devel": "^2",
  5954. "drupal/empty_theme": "1.0",
  5955. "g1a/composer-test-scenarios": "^3",
  5956. "lox/xhprof": "dev-master",
  5957. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5958. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5959. "vlucas/phpdotenv": "^2.4",
  5960. "webflo/drupal-core-require-dev": "8.7.x-dev",
  5961. "webflo/drupal-core-strict": "8.7.x-dev"
  5962. },
  5963. "bin": [
  5964. "drush"
  5965. ],
  5966. "type": "library",
  5967. "extra": {
  5968. "installer-paths": {
  5969. "sut/core": [
  5970. "type:drupal-core"
  5971. ],
  5972. "sut/libraries/{$name}": [
  5973. "type:drupal-library"
  5974. ],
  5975. "sut/modules/unish/{$name}": [
  5976. "drupal/devel"
  5977. ],
  5978. "sut/themes/unish/{$name}": [
  5979. "drupal/empty_theme"
  5980. ],
  5981. "sut/modules/contrib/{$name}": [
  5982. "type:drupal-module"
  5983. ],
  5984. "sut/profiles/contrib/{$name}": [
  5985. "type:drupal-profile"
  5986. ],
  5987. "sut/themes/contrib/{$name}": [
  5988. "type:drupal-theme"
  5989. ],
  5990. "sut/drush/contrib/{$name}": [
  5991. "type:drupal-drush"
  5992. ]
  5993. },
  5994. "scenarios": {
  5995. "php5": {
  5996. "config": {
  5997. "platform": {
  5998. "php": "5.6.38"
  5999. }
  6000. },
  6001. "require-dev": {
  6002. "webflo/drupal-core-strict": "8.6.x-dev",
  6003. "webflo/drupal-core-require-dev": "8.6.x-dev"
  6004. }
  6005. }
  6006. },
  6007. "branch-alias": {
  6008. "dev-master": "9.x-dev"
  6009. }
  6010. },
  6011. "autoload": {
  6012. "psr-4": {
  6013. "Drush\\": "src/",
  6014. "Drush\\Internal\\": "src/internal-forks"
  6015. }
  6016. },
  6017. "notification-url": "https://packagist.org/downloads/",
  6018. "license": [
  6019. "GPL-2.0-or-later"
  6020. ],
  6021. "authors": [
  6022. {
  6023. "name": "Moshe Weitzman",
  6024. "email": "weitzman@tejasa.com"
  6025. },
  6026. {
  6027. "name": "Owen Barton",
  6028. "email": "drupal@owenbarton.com"
  6029. },
  6030. {
  6031. "name": "Greg Anderson",
  6032. "email": "greg.1.anderson@greenknowe.org"
  6033. },
  6034. {
  6035. "name": "Jonathan Araña Cruz",
  6036. "email": "jonhattan@faita.net"
  6037. },
  6038. {
  6039. "name": "Jonathan Hedstrom",
  6040. "email": "jhedstrom@gmail.com"
  6041. },
  6042. {
  6043. "name": "Christopher Gervais",
  6044. "email": "chris@ergonlogic.com"
  6045. },
  6046. {
  6047. "name": "Dave Reid",
  6048. "email": "dave@davereid.net"
  6049. },
  6050. {
  6051. "name": "Damian Lee",
  6052. "email": "damiankloip@googlemail.com"
  6053. }
  6054. ],
  6055. "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  6056. "homepage": "http://www.drush.org",
  6057. "time": "2019-06-30T19:46:39+00:00"
  6058. },
  6059. {
  6060. "name": "easyrdf/easyrdf",
  6061. "version": "0.9.1",
  6062. "source": {
  6063. "type": "git",
  6064. "url": "https://github.com/njh/easyrdf.git",
  6065. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6066. },
  6067. "dist": {
  6068. "type": "zip",
  6069. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6070. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6071. "shasum": ""
  6072. },
  6073. "require": {
  6074. "ext-mbstring": "*",
  6075. "ext-pcre": "*",
  6076. "php": ">=5.2.8"
  6077. },
  6078. "require-dev": {
  6079. "phpunit/phpunit": "~3.5",
  6080. "sami/sami": "~1.4",
  6081. "squizlabs/php_codesniffer": "~1.4.3"
  6082. },
  6083. "suggest": {
  6084. "ml/json-ld": "~1.0"
  6085. },
  6086. "type": "library",
  6087. "autoload": {
  6088. "psr-0": {
  6089. "EasyRdf_": "lib/"
  6090. }
  6091. },
  6092. "notification-url": "https://packagist.org/downloads/",
  6093. "license": [
  6094. "BSD-3-Clause"
  6095. ],
  6096. "authors": [
  6097. {
  6098. "name": "Nicholas Humfrey",
  6099. "email": "njh@aelius.com",
  6100. "homepage": "http://www.aelius.com/njh/",
  6101. "role": "Developer"
  6102. },
  6103. {
  6104. "name": "Alexey Zakhlestin",
  6105. "email": "indeyets@gmail.com",
  6106. "role": "Developer"
  6107. }
  6108. ],
  6109. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6110. "homepage": "http://www.easyrdf.org/",
  6111. "keywords": [
  6112. "Linked Data",
  6113. "RDF",
  6114. "Semantic Web",
  6115. "Turtle",
  6116. "rdfa",
  6117. "sparql"
  6118. ],
  6119. "time": "2015-02-27T09:45:49+00:00"
  6120. },
  6121. {
  6122. "name": "egulias/email-validator",
  6123. "version": "2.1.11",
  6124. "source": {
  6125. "type": "git",
  6126. "url": "https://github.com/egulias/EmailValidator.git",
  6127. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
  6128. },
  6129. "dist": {
  6130. "type": "zip",
  6131. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
  6132. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
  6133. "shasum": ""
  6134. },
  6135. "require": {
  6136. "doctrine/lexer": "^1.0.1",
  6137. "php": ">= 5.5"
  6138. },
  6139. "require-dev": {
  6140. "dominicsayers/isemail": "dev-master",
  6141. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  6142. "satooshi/php-coveralls": "^1.0.1",
  6143. "symfony/phpunit-bridge": "^4.4@dev"
  6144. },
  6145. "suggest": {
  6146. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  6147. },
  6148. "type": "library",
  6149. "extra": {
  6150. "branch-alias": {
  6151. "dev-master": "2.1.x-dev"
  6152. }
  6153. },
  6154. "autoload": {
  6155. "psr-4": {
  6156. "Egulias\\EmailValidator\\": "EmailValidator"
  6157. }
  6158. },
  6159. "notification-url": "https://packagist.org/downloads/",
  6160. "license": [
  6161. "MIT"
  6162. ],
  6163. "authors": [
  6164. {
  6165. "name": "Eduardo Gulias Davis"
  6166. }
  6167. ],
  6168. "description": "A library for validating emails against several RFCs",
  6169. "homepage": "https://github.com/egulias/EmailValidator",
  6170. "keywords": [
  6171. "email",
  6172. "emailvalidation",
  6173. "emailvalidator",
  6174. "validation",
  6175. "validator"
  6176. ],
  6177. "time": "2019-08-13T17:33:27+00:00"
  6178. },
  6179. {
  6180. "name": "fabpot/goutte",
  6181. "version": "v3.2.3",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  6185. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6190. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6191. "shasum": ""
  6192. },
  6193. "require": {
  6194. "guzzlehttp/guzzle": "^6.0",
  6195. "php": ">=5.5.0",
  6196. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  6197. "symfony/css-selector": "~2.1|~3.0|~4.0",
  6198. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  6199. },
  6200. "require-dev": {
  6201. "symfony/phpunit-bridge": "^3.3 || ^4"
  6202. },
  6203. "type": "application",
  6204. "extra": {
  6205. "branch-alias": {
  6206. "dev-master": "3.2-dev"
  6207. }
  6208. },
  6209. "autoload": {
  6210. "psr-4": {
  6211. "Goutte\\": "Goutte"
  6212. },
  6213. "exclude-from-classmap": [
  6214. "Goutte/Tests"
  6215. ]
  6216. },
  6217. "notification-url": "https://packagist.org/downloads/",
  6218. "license": [
  6219. "MIT"
  6220. ],
  6221. "authors": [
  6222. {
  6223. "name": "Fabien Potencier",
  6224. "email": "fabien@symfony.com"
  6225. }
  6226. ],
  6227. "description": "A simple PHP Web Scraper",
  6228. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  6229. "keywords": [
  6230. "scraper"
  6231. ],
  6232. "time": "2018-06-29T15:13:57+00:00"
  6233. },
  6234. {
  6235. "name": "grasmash/expander",
  6236. "version": "1.0.0",
  6237. "source": {
  6238. "type": "git",
  6239. "url": "https://github.com/grasmash/expander.git",
  6240. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6241. },
  6242. "dist": {
  6243. "type": "zip",
  6244. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6245. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6246. "shasum": ""
  6247. },
  6248. "require": {
  6249. "dflydev/dot-access-data": "^1.1.0",
  6250. "php": ">=5.4"
  6251. },
  6252. "require-dev": {
  6253. "greg-1-anderson/composer-test-scenarios": "^1",
  6254. "phpunit/phpunit": "^4|^5.5.4",
  6255. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6256. "squizlabs/php_codesniffer": "^2.7"
  6257. },
  6258. "type": "library",
  6259. "extra": {
  6260. "branch-alias": {
  6261. "dev-master": "1.x-dev"
  6262. }
  6263. },
  6264. "autoload": {
  6265. "psr-4": {
  6266. "Grasmash\\Expander\\": "src/"
  6267. }
  6268. },
  6269. "notification-url": "https://packagist.org/downloads/",
  6270. "license": [
  6271. "MIT"
  6272. ],
  6273. "authors": [
  6274. {
  6275. "name": "Matthew Grasmick"
  6276. }
  6277. ],
  6278. "description": "Expands internal property references in PHP arrays file.",
  6279. "time": "2017-12-21T22:14:55+00:00"
  6280. },
  6281. {
  6282. "name": "grasmash/yaml-expander",
  6283. "version": "1.4.0",
  6284. "source": {
  6285. "type": "git",
  6286. "url": "https://github.com/grasmash/yaml-expander.git",
  6287. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6288. },
  6289. "dist": {
  6290. "type": "zip",
  6291. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6292. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6293. "shasum": ""
  6294. },
  6295. "require": {
  6296. "dflydev/dot-access-data": "^1.1.0",
  6297. "php": ">=5.4",
  6298. "symfony/yaml": "^2.8.11|^3|^4"
  6299. },
  6300. "require-dev": {
  6301. "greg-1-anderson/composer-test-scenarios": "^1",
  6302. "phpunit/phpunit": "^4.8|^5.5.4",
  6303. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6304. "squizlabs/php_codesniffer": "^2.7"
  6305. },
  6306. "type": "library",
  6307. "extra": {
  6308. "branch-alias": {
  6309. "dev-master": "1.x-dev"
  6310. }
  6311. },
  6312. "autoload": {
  6313. "psr-4": {
  6314. "Grasmash\\YamlExpander\\": "src/"
  6315. }
  6316. },
  6317. "notification-url": "https://packagist.org/downloads/",
  6318. "license": [
  6319. "MIT"
  6320. ],
  6321. "authors": [
  6322. {
  6323. "name": "Matthew Grasmick"
  6324. }
  6325. ],
  6326. "description": "Expands internal property references in a yaml file.",
  6327. "time": "2017-12-16T16:06:03+00:00"
  6328. },
  6329. {
  6330. "name": "guzzlehttp/guzzle",
  6331. "version": "6.4.1",
  6332. "source": {
  6333. "type": "git",
  6334. "url": "https://github.com/guzzle/guzzle.git",
  6335. "reference": "0895c932405407fd3a7368b6910c09a24d26db11"
  6336. },
  6337. "dist": {
  6338. "type": "zip",
  6339. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11",
  6340. "reference": "0895c932405407fd3a7368b6910c09a24d26db11",
  6341. "shasum": ""
  6342. },
  6343. "require": {
  6344. "ext-json": "*",
  6345. "guzzlehttp/promises": "^1.0",
  6346. "guzzlehttp/psr7": "^1.6.1",
  6347. "php": ">=5.5"
  6348. },
  6349. "require-dev": {
  6350. "ext-curl": "*",
  6351. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6352. "psr/log": "^1.1"
  6353. },
  6354. "suggest": {
  6355. "psr/log": "Required for using the Log middleware"
  6356. },
  6357. "type": "library",
  6358. "extra": {
  6359. "branch-alias": {
  6360. "dev-master": "6.3-dev"
  6361. }
  6362. },
  6363. "autoload": {
  6364. "psr-4": {
  6365. "GuzzleHttp\\": "src/"
  6366. },
  6367. "files": [
  6368. "src/functions_include.php"
  6369. ]
  6370. },
  6371. "notification-url": "https://packagist.org/downloads/",
  6372. "license": [
  6373. "MIT"
  6374. ],
  6375. "authors": [
  6376. {
  6377. "name": "Michael Dowling",
  6378. "email": "mtdowling@gmail.com",
  6379. "homepage": "https://github.com/mtdowling"
  6380. }
  6381. ],
  6382. "description": "Guzzle is a PHP HTTP client library",
  6383. "homepage": "http://guzzlephp.org/",
  6384. "keywords": [
  6385. "client",
  6386. "curl",
  6387. "framework",
  6388. "http",
  6389. "http client",
  6390. "rest",
  6391. "web service"
  6392. ],
  6393. "time": "2019-10-23T15:58:00+00:00"
  6394. },
  6395. {
  6396. "name": "guzzlehttp/promises",
  6397. "version": "v1.3.1",
  6398. "source": {
  6399. "type": "git",
  6400. "url": "https://github.com/guzzle/promises.git",
  6401. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6402. },
  6403. "dist": {
  6404. "type": "zip",
  6405. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6406. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6407. "shasum": ""
  6408. },
  6409. "require": {
  6410. "php": ">=5.5.0"
  6411. },
  6412. "require-dev": {
  6413. "phpunit/phpunit": "^4.0"
  6414. },
  6415. "type": "library",
  6416. "extra": {
  6417. "branch-alias": {
  6418. "dev-master": "1.4-dev"
  6419. }
  6420. },
  6421. "autoload": {
  6422. "psr-4": {
  6423. "GuzzleHttp\\Promise\\": "src/"
  6424. },
  6425. "files": [
  6426. "src/functions_include.php"
  6427. ]
  6428. },
  6429. "notification-url": "https://packagist.org/downloads/",
  6430. "license": [
  6431. "MIT"
  6432. ],
  6433. "authors": [
  6434. {
  6435. "name": "Michael Dowling",
  6436. "email": "mtdowling@gmail.com",
  6437. "homepage": "https://github.com/mtdowling"
  6438. }
  6439. ],
  6440. "description": "Guzzle promises library",
  6441. "keywords": [
  6442. "promise"
  6443. ],
  6444. "time": "2016-12-20T10:07:11+00:00"
  6445. },
  6446. {
  6447. "name": "guzzlehttp/psr7",
  6448. "version": "1.6.1",
  6449. "source": {
  6450. "type": "git",
  6451. "url": "https://github.com/guzzle/psr7.git",
  6452. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6453. },
  6454. "dist": {
  6455. "type": "zip",
  6456. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6457. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6458. "shasum": ""
  6459. },
  6460. "require": {
  6461. "php": ">=5.4.0",
  6462. "psr/http-message": "~1.0",
  6463. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6464. },
  6465. "provide": {
  6466. "psr/http-message-implementation": "1.0"
  6467. },
  6468. "require-dev": {
  6469. "ext-zlib": "*",
  6470. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6471. },
  6472. "suggest": {
  6473. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6474. },
  6475. "type": "library",
  6476. "extra": {
  6477. "branch-alias": {
  6478. "dev-master": "1.6-dev"
  6479. }
  6480. },
  6481. "autoload": {
  6482. "psr-4": {
  6483. "GuzzleHttp\\Psr7\\": "src/"
  6484. },
  6485. "files": [
  6486. "src/functions_include.php"
  6487. ]
  6488. },
  6489. "notification-url": "https://packagist.org/downloads/",
  6490. "license": [
  6491. "MIT"
  6492. ],
  6493. "authors": [
  6494. {
  6495. "name": "Michael Dowling",
  6496. "email": "mtdowling@gmail.com",
  6497. "homepage": "https://github.com/mtdowling"
  6498. },
  6499. {
  6500. "name": "Tobias Schultze",
  6501. "homepage": "https://github.com/Tobion"
  6502. }
  6503. ],
  6504. "description": "PSR-7 message implementation that also provides common utility methods",
  6505. "keywords": [
  6506. "http",
  6507. "message",
  6508. "psr-7",
  6509. "request",
  6510. "response",
  6511. "stream",
  6512. "uri",
  6513. "url"
  6514. ],
  6515. "time": "2019-07-01T23:21:34+00:00"
  6516. },
  6517. {
  6518. "name": "instaclick/php-webdriver",
  6519. "version": "1.4.6",
  6520. "source": {
  6521. "type": "git",
  6522. "url": "https://github.com/instaclick/php-webdriver.git",
  6523. "reference": "bd9405077ca04129a73059a06873bedb5e138402"
  6524. },
  6525. "dist": {
  6526. "type": "zip",
  6527. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/bd9405077ca04129a73059a06873bedb5e138402",
  6528. "reference": "bd9405077ca04129a73059a06873bedb5e138402",
  6529. "shasum": ""
  6530. },
  6531. "require": {
  6532. "ext-curl": "*",
  6533. "php": ">=5.3.2"
  6534. },
  6535. "require-dev": {
  6536. "phpunit/phpunit": "^4.8",
  6537. "satooshi/php-coveralls": "^1.0||^2.0"
  6538. },
  6539. "type": "library",
  6540. "extra": {
  6541. "branch-alias": {
  6542. "dev-master": "1.4.x-dev"
  6543. }
  6544. },
  6545. "autoload": {
  6546. "psr-0": {
  6547. "WebDriver": "lib/"
  6548. }
  6549. },
  6550. "notification-url": "https://packagist.org/downloads/",
  6551. "license": [
  6552. "Apache-2.0"
  6553. ],
  6554. "authors": [
  6555. {
  6556. "name": "Justin Bishop",
  6557. "email": "jubishop@gmail.com",
  6558. "role": "Developer"
  6559. },
  6560. {
  6561. "name": "Anthon Pang",
  6562. "email": "apang@softwaredevelopment.ca",
  6563. "role": "Fork Maintainer"
  6564. }
  6565. ],
  6566. "description": "PHP WebDriver for Selenium 2",
  6567. "homepage": "http://instaclick.com/",
  6568. "keywords": [
  6569. "browser",
  6570. "selenium",
  6571. "webdriver",
  6572. "webtest"
  6573. ],
  6574. "time": "2019-09-23T15:50:44+00:00"
  6575. },
  6576. {
  6577. "name": "jakub-onderka/php-console-color",
  6578. "version": "v0.2",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6582. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6587. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6588. "shasum": ""
  6589. },
  6590. "require": {
  6591. "php": ">=5.4.0"
  6592. },
  6593. "require-dev": {
  6594. "jakub-onderka/php-code-style": "1.0",
  6595. "jakub-onderka/php-parallel-lint": "1.0",
  6596. "jakub-onderka/php-var-dump-check": "0.*",
  6597. "phpunit/phpunit": "~4.3",
  6598. "squizlabs/php_codesniffer": "1.*"
  6599. },
  6600. "type": "library",
  6601. "autoload": {
  6602. "psr-4": {
  6603. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6604. }
  6605. },
  6606. "notification-url": "https://packagist.org/downloads/",
  6607. "license": [
  6608. "BSD-2-Clause"
  6609. ],
  6610. "authors": [
  6611. {
  6612. "name": "Jakub Onderka",
  6613. "email": "jakub.onderka@gmail.com"
  6614. }
  6615. ],
  6616. "time": "2018-09-29T17:23:10+00:00"
  6617. },
  6618. {
  6619. "name": "jakub-onderka/php-console-highlighter",
  6620. "version": "v0.4",
  6621. "source": {
  6622. "type": "git",
  6623. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6624. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6625. },
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6629. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6630. "shasum": ""
  6631. },
  6632. "require": {
  6633. "ext-tokenizer": "*",
  6634. "jakub-onderka/php-console-color": "~0.2",
  6635. "php": ">=5.4.0"
  6636. },
  6637. "require-dev": {
  6638. "jakub-onderka/php-code-style": "~1.0",
  6639. "jakub-onderka/php-parallel-lint": "~1.0",
  6640. "jakub-onderka/php-var-dump-check": "~0.1",
  6641. "phpunit/phpunit": "~4.0",
  6642. "squizlabs/php_codesniffer": "~1.5"
  6643. },
  6644. "type": "library",
  6645. "autoload": {
  6646. "psr-4": {
  6647. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6648. }
  6649. },
  6650. "notification-url": "https://packagist.org/downloads/",
  6651. "license": [
  6652. "MIT"
  6653. ],
  6654. "authors": [
  6655. {
  6656. "name": "Jakub Onderka",
  6657. "email": "acci@acci.cz",
  6658. "homepage": "http://www.acci.cz/"
  6659. }
  6660. ],
  6661. "description": "Highlight PHP code in terminal",
  6662. "time": "2018-09-29T18:48:56+00:00"
  6663. },
  6664. {
  6665. "name": "jcalderonzumba/gastonjs",
  6666. "version": "v1.2.0",
  6667. "source": {
  6668. "type": "git",
  6669. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  6670. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  6671. },
  6672. "dist": {
  6673. "type": "zip",
  6674. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6675. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6676. "shasum": ""
  6677. },
  6678. "require": {
  6679. "guzzlehttp/guzzle": "~5.0|~6.0",
  6680. "php": ">=5.4"
  6681. },
  6682. "require-dev": {
  6683. "phpunit/phpunit": "~4.6",
  6684. "silex/silex": "~1.2",
  6685. "symfony/phpunit-bridge": "~2.7",
  6686. "symfony/process": "~2.1"
  6687. },
  6688. "type": "phantomjs-api",
  6689. "extra": {
  6690. "branch-alias": {
  6691. "dev-master": "1.1.x-dev"
  6692. }
  6693. },
  6694. "autoload": {
  6695. "psr-4": {
  6696. "Zumba\\GastonJS\\": "src"
  6697. }
  6698. },
  6699. "notification-url": "https://packagist.org/downloads/",
  6700. "license": [
  6701. "MIT"
  6702. ],
  6703. "authors": [
  6704. {
  6705. "name": "Juan Francisco Calderón Zumba",
  6706. "email": "juanfcz@gmail.com",
  6707. "homepage": "http://github.com/jcalderonzumba"
  6708. }
  6709. ],
  6710. "description": "PhantomJS API based server for webpage automation",
  6711. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  6712. "keywords": [
  6713. "api",
  6714. "automation",
  6715. "browser",
  6716. "headless",
  6717. "phantomjs"
  6718. ],
  6719. "time": "2017-03-31T07:31:47+00:00"
  6720. },
  6721. {
  6722. "name": "jcalderonzumba/mink-phantomjs-driver",
  6723. "version": "v0.3.3",
  6724. "source": {
  6725. "type": "git",
  6726. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  6727. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  6728. },
  6729. "dist": {
  6730. "type": "zip",
  6731. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  6732. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  6733. "shasum": ""
  6734. },
  6735. "require": {
  6736. "behat/mink": "~1.7",
  6737. "jcalderonzumba/gastonjs": "~1.0",
  6738. "php": ">=5.4",
  6739. "twig/twig": "~1.20|~2.0"
  6740. },
  6741. "require-dev": {
  6742. "mink/driver-testsuite": "dev-master",
  6743. "phpunit/phpunit": "~4.6"
  6744. },
  6745. "type": "mink-driver",
  6746. "extra": {
  6747. "branch-alias": {
  6748. "dev-master": "0.4.x-dev"
  6749. }
  6750. },
  6751. "autoload": {
  6752. "psr-4": {
  6753. "Zumba\\Mink\\Driver\\": "src"
  6754. }
  6755. },
  6756. "notification-url": "https://packagist.org/downloads/",
  6757. "license": [
  6758. "MIT"
  6759. ],
  6760. "authors": [
  6761. {
  6762. "name": "Juan Francisco Calderón Zumba",
  6763. "email": "juanfcz@gmail.com",
  6764. "homepage": "http://github.com/jcalderonzumba"
  6765. }
  6766. ],
  6767. "description": "PhantomJS driver for Mink framework",
  6768. "homepage": "http://mink.behat.org/",
  6769. "keywords": [
  6770. "ajax",
  6771. "browser",
  6772. "headless",
  6773. "javascript",
  6774. "phantomjs",
  6775. "testing"
  6776. ],
  6777. "time": "2016-12-01T10:57:30+00:00"
  6778. },
  6779. {
  6780. "name": "justinrainbow/json-schema",
  6781. "version": "5.2.9",
  6782. "source": {
  6783. "type": "git",
  6784. "url": "https://github.com/justinrainbow/json-schema.git",
  6785. "reference": "44c6787311242a979fa15c704327c20e7221a0e4"
  6786. },
  6787. "dist": {
  6788. "type": "zip",
  6789. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4",
  6790. "reference": "44c6787311242a979fa15c704327c20e7221a0e4",
  6791. "shasum": ""
  6792. },
  6793. "require": {
  6794. "php": ">=5.3.3"
  6795. },
  6796. "require-dev": {
  6797. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  6798. "json-schema/json-schema-test-suite": "1.2.0",
  6799. "phpunit/phpunit": "^4.8.35"
  6800. },
  6801. "bin": [
  6802. "bin/validate-json"
  6803. ],
  6804. "type": "library",
  6805. "extra": {
  6806. "branch-alias": {
  6807. "dev-master": "5.0.x-dev"
  6808. }
  6809. },
  6810. "autoload": {
  6811. "psr-4": {
  6812. "JsonSchema\\": "src/JsonSchema/"
  6813. }
  6814. },
  6815. "notification-url": "https://packagist.org/downloads/",
  6816. "license": [
  6817. "MIT"
  6818. ],
  6819. "authors": [
  6820. {
  6821. "name": "Bruno Prieto Reis",
  6822. "email": "bruno.p.reis@gmail.com"
  6823. },
  6824. {
  6825. "name": "Justin Rainbow",
  6826. "email": "justin.rainbow@gmail.com"
  6827. },
  6828. {
  6829. "name": "Igor Wiedler",
  6830. "email": "igor@wiedler.ch"
  6831. },
  6832. {
  6833. "name": "Robert Schönthal",
  6834. "email": "seroscho@googlemail.com"
  6835. }
  6836. ],
  6837. "description": "A library to validate a json schema.",
  6838. "homepage": "https://github.com/justinrainbow/json-schema",
  6839. "keywords": [
  6840. "json",
  6841. "schema"
  6842. ],
  6843. "time": "2019-09-25T14:49:45+00:00"
  6844. },
  6845. {
  6846. "name": "league/container",
  6847. "version": "2.4.1",
  6848. "source": {
  6849. "type": "git",
  6850. "url": "https://github.com/thephpleague/container.git",
  6851. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6852. },
  6853. "dist": {
  6854. "type": "zip",
  6855. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6856. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6857. "shasum": ""
  6858. },
  6859. "require": {
  6860. "container-interop/container-interop": "^1.2",
  6861. "php": "^5.4.0 || ^7.0"
  6862. },
  6863. "provide": {
  6864. "container-interop/container-interop-implementation": "^1.2",
  6865. "psr/container-implementation": "^1.0"
  6866. },
  6867. "replace": {
  6868. "orno/di": "~2.0"
  6869. },
  6870. "require-dev": {
  6871. "phpunit/phpunit": "4.*"
  6872. },
  6873. "type": "library",
  6874. "extra": {
  6875. "branch-alias": {
  6876. "dev-2.x": "2.x-dev",
  6877. "dev-1.x": "1.x-dev"
  6878. }
  6879. },
  6880. "autoload": {
  6881. "psr-4": {
  6882. "League\\Container\\": "src"
  6883. }
  6884. },
  6885. "notification-url": "https://packagist.org/downloads/",
  6886. "license": [
  6887. "MIT"
  6888. ],
  6889. "authors": [
  6890. {
  6891. "name": "Phil Bennett",
  6892. "email": "philipobenito@gmail.com",
  6893. "homepage": "http://www.philipobenito.com",
  6894. "role": "Developer"
  6895. }
  6896. ],
  6897. "description": "A fast and intuitive dependency injection container.",
  6898. "homepage": "https://github.com/thephpleague/container",
  6899. "keywords": [
  6900. "container",
  6901. "dependency",
  6902. "di",
  6903. "injection",
  6904. "league",
  6905. "provider",
  6906. "service"
  6907. ],
  6908. "time": "2017-05-10T09:20:27+00:00"
  6909. },
  6910. {
  6911. "name": "masterminds/html5",
  6912. "version": "2.7.0",
  6913. "source": {
  6914. "type": "git",
  6915. "url": "https://github.com/Masterminds/html5-php.git",
  6916. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2"
  6917. },
  6918. "dist": {
  6919. "type": "zip",
  6920. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2",
  6921. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2",
  6922. "shasum": ""
  6923. },
  6924. "require": {
  6925. "ext-ctype": "*",
  6926. "ext-dom": "*",
  6927. "ext-libxml": "*",
  6928. "php": ">=5.3.0"
  6929. },
  6930. "require-dev": {
  6931. "phpunit/phpunit": "^4.8.35",
  6932. "sami/sami": "~2.0",
  6933. "satooshi/php-coveralls": "1.0.*"
  6934. },
  6935. "type": "library",
  6936. "extra": {
  6937. "branch-alias": {
  6938. "dev-master": "2.7-dev"
  6939. }
  6940. },
  6941. "autoload": {
  6942. "psr-4": {
  6943. "Masterminds\\": "src"
  6944. }
  6945. },
  6946. "notification-url": "https://packagist.org/downloads/",
  6947. "license": [
  6948. "MIT"
  6949. ],
  6950. "authors": [
  6951. {
  6952. "name": "Matt Butcher",
  6953. "email": "technosophos@gmail.com"
  6954. },
  6955. {
  6956. "name": "Matt Farina",
  6957. "email": "matt@mattfarina.com"
  6958. },
  6959. {
  6960. "name": "Asmir Mustafic",
  6961. "email": "goetas@gmail.com"
  6962. }
  6963. ],
  6964. "description": "An HTML5 parser and serializer.",
  6965. "homepage": "http://masterminds.github.io/html5-php",
  6966. "keywords": [
  6967. "HTML5",
  6968. "dom",
  6969. "html",
  6970. "parser",
  6971. "querypath",
  6972. "serializer",
  6973. "xml"
  6974. ],
  6975. "time": "2019-07-25T07:03:26+00:00"
  6976. },
  6977. {
  6978. "name": "mikey179/vfsstream",
  6979. "version": "v1.6.8",
  6980. "source": {
  6981. "type": "git",
  6982. "url": "https://github.com/bovigo/vfsStream.git",
  6983. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe"
  6984. },
  6985. "dist": {
  6986. "type": "zip",
  6987. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  6988. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  6989. "shasum": ""
  6990. },
  6991. "require": {
  6992. "php": ">=5.3.0"
  6993. },
  6994. "require-dev": {
  6995. "phpunit/phpunit": "^4.5|^5.0"
  6996. },
  6997. "type": "library",
  6998. "extra": {
  6999. "branch-alias": {
  7000. "dev-master": "1.6.x-dev"
  7001. }
  7002. },
  7003. "autoload": {
  7004. "psr-0": {
  7005. "org\\bovigo\\vfs\\": "src/main/php"
  7006. }
  7007. },
  7008. "notification-url": "https://packagist.org/downloads/",
  7009. "license": [
  7010. "BSD-3-Clause"
  7011. ],
  7012. "authors": [
  7013. {
  7014. "name": "Frank Kleine",
  7015. "homepage": "http://frankkleine.de/",
  7016. "role": "Developer"
  7017. }
  7018. ],
  7019. "description": "Virtual file system to mock the real file system in unit tests.",
  7020. "homepage": "http://vfs.bovigo.org/",
  7021. "time": "2019-10-30T15:31:00+00:00"
  7022. },
  7023. {
  7024. "name": "myclabs/deep-copy",
  7025. "version": "1.7.0",
  7026. "source": {
  7027. "type": "git",
  7028. "url": "https://github.com/myclabs/DeepCopy.git",
  7029. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  7030. },
  7031. "dist": {
  7032. "type": "zip",
  7033. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7034. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7035. "shasum": ""
  7036. },
  7037. "require": {
  7038. "php": "^5.6 || ^7.0"
  7039. },
  7040. "require-dev": {
  7041. "doctrine/collections": "^1.0",
  7042. "doctrine/common": "^2.6",
  7043. "phpunit/phpunit": "^4.1"
  7044. },
  7045. "type": "library",
  7046. "autoload": {
  7047. "psr-4": {
  7048. "DeepCopy\\": "src/DeepCopy/"
  7049. },
  7050. "files": [
  7051. "src/DeepCopy/deep_copy.php"
  7052. ]
  7053. },
  7054. "notification-url": "https://packagist.org/downloads/",
  7055. "license": [
  7056. "MIT"
  7057. ],
  7058. "description": "Create deep copies (clones) of your objects",
  7059. "keywords": [
  7060. "clone",
  7061. "copy",
  7062. "duplicate",
  7063. "object",
  7064. "object graph"
  7065. ],
  7066. "time": "2017-10-19T19:58:43+00:00"
  7067. },
  7068. {
  7069. "name": "nikic/php-parser",
  7070. "version": "v4.3.0",
  7071. "source": {
  7072. "type": "git",
  7073. "url": "https://github.com/nikic/PHP-Parser.git",
  7074. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
  7075. },
  7076. "dist": {
  7077. "type": "zip",
  7078. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7079. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7080. "shasum": ""
  7081. },
  7082. "require": {
  7083. "ext-tokenizer": "*",
  7084. "php": ">=7.0"
  7085. },
  7086. "require-dev": {
  7087. "ircmaxell/php-yacc": "0.0.5",
  7088. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7089. },
  7090. "bin": [
  7091. "bin/php-parse"
  7092. ],
  7093. "type": "library",
  7094. "extra": {
  7095. "branch-alias": {
  7096. "dev-master": "4.3-dev"
  7097. }
  7098. },
  7099. "autoload": {
  7100. "psr-4": {
  7101. "PhpParser\\": "lib/PhpParser"
  7102. }
  7103. },
  7104. "notification-url": "https://packagist.org/downloads/",
  7105. "license": [
  7106. "BSD-3-Clause"
  7107. ],
  7108. "authors": [
  7109. {
  7110. "name": "Nikita Popov"
  7111. }
  7112. ],
  7113. "description": "A PHP parser written in PHP",
  7114. "keywords": [
  7115. "parser",
  7116. "php"
  7117. ],
  7118. "time": "2019-11-08T13:50:10+00:00"
  7119. },
  7120. {
  7121. "name": "oomphinc/composer-installers-extender",
  7122. "version": "v1.1.2",
  7123. "source": {
  7124. "type": "git",
  7125. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  7126. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  7127. },
  7128. "dist": {
  7129. "type": "zip",
  7130. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7131. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7132. "shasum": ""
  7133. },
  7134. "require": {
  7135. "composer-plugin-api": "^1.0",
  7136. "composer/installers": "^1.0"
  7137. },
  7138. "type": "composer-plugin",
  7139. "extra": {
  7140. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  7141. },
  7142. "autoload": {
  7143. "psr-4": {
  7144. "OomphInc\\ComposerInstallersExtender\\": "src/"
  7145. }
  7146. },
  7147. "notification-url": "https://packagist.org/downloads/",
  7148. "license": [
  7149. "MIT"
  7150. ],
  7151. "authors": [
  7152. {
  7153. "name": "Stephen Beemsterboer",
  7154. "email": "stephen@oomphinc.com",
  7155. "homepage": "https://github.com/balbuf"
  7156. }
  7157. ],
  7158. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  7159. "homepage": "http://www.oomphinc.com/",
  7160. "time": "2017-03-31T16:57:39+00:00"
  7161. },
  7162. {
  7163. "name": "paragonie/random_compat",
  7164. "version": "v9.99.99",
  7165. "source": {
  7166. "type": "git",
  7167. "url": "https://github.com/paragonie/random_compat.git",
  7168. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7169. },
  7170. "dist": {
  7171. "type": "zip",
  7172. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7173. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7174. "shasum": ""
  7175. },
  7176. "require": {
  7177. "php": "^7"
  7178. },
  7179. "require-dev": {
  7180. "phpunit/phpunit": "4.*|5.*",
  7181. "vimeo/psalm": "^1"
  7182. },
  7183. "suggest": {
  7184. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7185. },
  7186. "type": "library",
  7187. "notification-url": "https://packagist.org/downloads/",
  7188. "license": [
  7189. "MIT"
  7190. ],
  7191. "authors": [
  7192. {
  7193. "name": "Paragon Initiative Enterprises",
  7194. "email": "security@paragonie.com",
  7195. "homepage": "https://paragonie.com"
  7196. }
  7197. ],
  7198. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7199. "keywords": [
  7200. "csprng",
  7201. "polyfill",
  7202. "pseudorandom",
  7203. "random"
  7204. ],
  7205. "time": "2018-07-02T15:55:56+00:00"
  7206. },
  7207. {
  7208. "name": "pear/archive_tar",
  7209. "version": "1.4.8",
  7210. "source": {
  7211. "type": "git",
  7212. "url": "https://github.com/pear/Archive_Tar.git",
  7213. "reference": "442bdffb7edb84c898cfd94f7ac8500e49d5bbb5"
  7214. },
  7215. "dist": {
  7216. "type": "zip",
  7217. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/442bdffb7edb84c898cfd94f7ac8500e49d5bbb5",
  7218. "reference": "442bdffb7edb84c898cfd94f7ac8500e49d5bbb5",
  7219. "shasum": ""
  7220. },
  7221. "require": {
  7222. "pear/pear-core-minimal": "^1.10.0alpha2",
  7223. "php": ">=5.2.0"
  7224. },
  7225. "require-dev": {
  7226. "phpunit/phpunit": "*"
  7227. },
  7228. "suggest": {
  7229. "ext-bz2": "Bz2 compression support.",
  7230. "ext-xz": "Lzma2 compression support.",
  7231. "ext-zlib": "Gzip compression support."
  7232. },
  7233. "type": "library",
  7234. "extra": {
  7235. "branch-alias": {
  7236. "dev-master": "1.4.x-dev"
  7237. }
  7238. },
  7239. "autoload": {
  7240. "psr-0": {
  7241. "Archive_Tar": ""
  7242. }
  7243. },
  7244. "notification-url": "https://packagist.org/downloads/",
  7245. "include-path": [
  7246. "./"
  7247. ],
  7248. "license": [
  7249. "BSD-3-Clause"
  7250. ],
  7251. "authors": [
  7252. {
  7253. "name": "Vincent Blavet",
  7254. "email": "vincent@phpconcept.net"
  7255. },
  7256. {
  7257. "name": "Greg Beaver",
  7258. "email": "greg@chiaraquartet.net"
  7259. },
  7260. {
  7261. "name": "Michiel Rook",
  7262. "email": "mrook@php.net"
  7263. }
  7264. ],
  7265. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7266. "homepage": "https://github.com/pear/Archive_Tar",
  7267. "keywords": [
  7268. "archive",
  7269. "tar"
  7270. ],
  7271. "time": "2019-10-21T13:31:24+00:00"
  7272. },
  7273. {
  7274. "name": "pear/console_getopt",
  7275. "version": "v1.4.2",
  7276. "source": {
  7277. "type": "git",
  7278. "url": "https://github.com/pear/Console_Getopt.git",
  7279. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0"
  7280. },
  7281. "dist": {
  7282. "type": "zip",
  7283. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0",
  7284. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0",
  7285. "shasum": ""
  7286. },
  7287. "type": "library",
  7288. "autoload": {
  7289. "psr-0": {
  7290. "Console": "./"
  7291. }
  7292. },
  7293. "notification-url": "https://packagist.org/downloads/",
  7294. "include-path": [
  7295. "./"
  7296. ],
  7297. "license": [
  7298. "BSD-2-Clause"
  7299. ],
  7300. "authors": [
  7301. {
  7302. "name": "Greg Beaver",
  7303. "email": "cellog@php.net",
  7304. "role": "Helper"
  7305. },
  7306. {
  7307. "name": "Andrei Zmievski",
  7308. "email": "andrei@php.net",
  7309. "role": "Lead"
  7310. },
  7311. {
  7312. "name": "Stig Bakken",
  7313. "email": "stig@php.net",
  7314. "role": "Developer"
  7315. }
  7316. ],
  7317. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7318. "time": "2019-02-06T16:52:33+00:00"
  7319. },
  7320. {
  7321. "name": "pear/pear-core-minimal",
  7322. "version": "v1.10.9",
  7323. "source": {
  7324. "type": "git",
  7325. "url": "https://github.com/pear/pear-core-minimal.git",
  7326. "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f"
  7327. },
  7328. "dist": {
  7329. "type": "zip",
  7330. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/742be8dd68c746a01e4b0a422258e9c9cae1c37f",
  7331. "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f",
  7332. "shasum": ""
  7333. },
  7334. "require": {
  7335. "pear/console_getopt": "~1.4",
  7336. "pear/pear_exception": "~1.0"
  7337. },
  7338. "replace": {
  7339. "rsky/pear-core-min": "self.version"
  7340. },
  7341. "type": "library",
  7342. "autoload": {
  7343. "psr-0": {
  7344. "": "src/"
  7345. }
  7346. },
  7347. "notification-url": "https://packagist.org/downloads/",
  7348. "include-path": [
  7349. "src/"
  7350. ],
  7351. "license": [
  7352. "BSD-3-Clause"
  7353. ],
  7354. "authors": [
  7355. {
  7356. "name": "Christian Weiske",
  7357. "email": "cweiske@php.net",
  7358. "role": "Lead"
  7359. }
  7360. ],
  7361. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7362. "time": "2019-03-13T18:15:44+00:00"
  7363. },
  7364. {
  7365. "name": "pear/pear_exception",
  7366. "version": "v1.0.0",
  7367. "source": {
  7368. "type": "git",
  7369. "url": "https://github.com/pear/PEAR_Exception.git",
  7370. "reference": "8c18719fdae000b690e3912be401c76e406dd13b"
  7371. },
  7372. "dist": {
  7373. "type": "zip",
  7374. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b",
  7375. "reference": "8c18719fdae000b690e3912be401c76e406dd13b",
  7376. "shasum": ""
  7377. },
  7378. "require": {
  7379. "php": ">=4.4.0"
  7380. },
  7381. "require-dev": {
  7382. "phpunit/phpunit": "*"
  7383. },
  7384. "type": "class",
  7385. "extra": {
  7386. "branch-alias": {
  7387. "dev-master": "1.0.x-dev"
  7388. }
  7389. },
  7390. "autoload": {
  7391. "psr-0": {
  7392. "PEAR": ""
  7393. }
  7394. },
  7395. "notification-url": "https://packagist.org/downloads/",
  7396. "include-path": [
  7397. "."
  7398. ],
  7399. "license": [
  7400. "BSD-2-Clause"
  7401. ],
  7402. "authors": [
  7403. {
  7404. "name": "Helgi Thormar",
  7405. "email": "dufuz@php.net"
  7406. },
  7407. {
  7408. "name": "Greg Beaver",
  7409. "email": "cellog@php.net"
  7410. }
  7411. ],
  7412. "description": "The PEAR Exception base class.",
  7413. "homepage": "https://github.com/pear/PEAR_Exception",
  7414. "keywords": [
  7415. "exception"
  7416. ],
  7417. "time": "2015-02-10T20:07:52+00:00"
  7418. },
  7419. {
  7420. "name": "phar-io/manifest",
  7421. "version": "1.0.1",
  7422. "source": {
  7423. "type": "git",
  7424. "url": "https://github.com/phar-io/manifest.git",
  7425. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  7426. },
  7427. "dist": {
  7428. "type": "zip",
  7429. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7430. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7431. "shasum": ""
  7432. },
  7433. "require": {
  7434. "ext-dom": "*",
  7435. "ext-phar": "*",
  7436. "phar-io/version": "^1.0.1",
  7437. "php": "^5.6 || ^7.0"
  7438. },
  7439. "type": "library",
  7440. "extra": {
  7441. "branch-alias": {
  7442. "dev-master": "1.0.x-dev"
  7443. }
  7444. },
  7445. "autoload": {
  7446. "classmap": [
  7447. "src/"
  7448. ]
  7449. },
  7450. "notification-url": "https://packagist.org/downloads/",
  7451. "license": [
  7452. "BSD-3-Clause"
  7453. ],
  7454. "authors": [
  7455. {
  7456. "name": "Arne Blankerts",
  7457. "email": "arne@blankerts.de",
  7458. "role": "Developer"
  7459. },
  7460. {
  7461. "name": "Sebastian Heuer",
  7462. "email": "sebastian@phpeople.de",
  7463. "role": "Developer"
  7464. },
  7465. {
  7466. "name": "Sebastian Bergmann",
  7467. "email": "sebastian@phpunit.de",
  7468. "role": "Developer"
  7469. }
  7470. ],
  7471. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7472. "time": "2017-03-05T18:14:27+00:00"
  7473. },
  7474. {
  7475. "name": "phar-io/version",
  7476. "version": "1.0.1",
  7477. "source": {
  7478. "type": "git",
  7479. "url": "https://github.com/phar-io/version.git",
  7480. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  7481. },
  7482. "dist": {
  7483. "type": "zip",
  7484. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  7485. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  7486. "shasum": ""
  7487. },
  7488. "require": {
  7489. "php": "^5.6 || ^7.0"
  7490. },
  7491. "type": "library",
  7492. "autoload": {
  7493. "classmap": [
  7494. "src/"
  7495. ]
  7496. },
  7497. "notification-url": "https://packagist.org/downloads/",
  7498. "license": [
  7499. "BSD-3-Clause"
  7500. ],
  7501. "authors": [
  7502. {
  7503. "name": "Arne Blankerts",
  7504. "email": "arne@blankerts.de",
  7505. "role": "Developer"
  7506. },
  7507. {
  7508. "name": "Sebastian Heuer",
  7509. "email": "sebastian@phpeople.de",
  7510. "role": "Developer"
  7511. },
  7512. {
  7513. "name": "Sebastian Bergmann",
  7514. "email": "sebastian@phpunit.de",
  7515. "role": "Developer"
  7516. }
  7517. ],
  7518. "description": "Library for handling version information and constraints",
  7519. "time": "2017-03-05T17:38:23+00:00"
  7520. },
  7521. {
  7522. "name": "phpdocumentor/reflection-common",
  7523. "version": "1.0.1",
  7524. "source": {
  7525. "type": "git",
  7526. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7527. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  7528. },
  7529. "dist": {
  7530. "type": "zip",
  7531. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7532. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7533. "shasum": ""
  7534. },
  7535. "require": {
  7536. "php": ">=5.5"
  7537. },
  7538. "require-dev": {
  7539. "phpunit/phpunit": "^4.6"
  7540. },
  7541. "type": "library",
  7542. "extra": {
  7543. "branch-alias": {
  7544. "dev-master": "1.0.x-dev"
  7545. }
  7546. },
  7547. "autoload": {
  7548. "psr-4": {
  7549. "phpDocumentor\\Reflection\\": [
  7550. "src"
  7551. ]
  7552. }
  7553. },
  7554. "notification-url": "https://packagist.org/downloads/",
  7555. "license": [
  7556. "MIT"
  7557. ],
  7558. "authors": [
  7559. {
  7560. "name": "Jaap van Otterdijk",
  7561. "email": "opensource@ijaap.nl"
  7562. }
  7563. ],
  7564. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7565. "homepage": "http://www.phpdoc.org",
  7566. "keywords": [
  7567. "FQSEN",
  7568. "phpDocumentor",
  7569. "phpdoc",
  7570. "reflection",
  7571. "static analysis"
  7572. ],
  7573. "time": "2017-09-11T18:02:19+00:00"
  7574. },
  7575. {
  7576. "name": "phpdocumentor/reflection-docblock",
  7577. "version": "4.3.2",
  7578. "source": {
  7579. "type": "git",
  7580. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7581. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  7582. },
  7583. "dist": {
  7584. "type": "zip",
  7585. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  7586. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  7587. "shasum": ""
  7588. },
  7589. "require": {
  7590. "php": "^7.0",
  7591. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  7592. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  7593. "webmozart/assert": "^1.0"
  7594. },
  7595. "require-dev": {
  7596. "doctrine/instantiator": "^1.0.5",
  7597. "mockery/mockery": "^1.0",
  7598. "phpunit/phpunit": "^6.4"
  7599. },
  7600. "type": "library",
  7601. "extra": {
  7602. "branch-alias": {
  7603. "dev-master": "4.x-dev"
  7604. }
  7605. },
  7606. "autoload": {
  7607. "psr-4": {
  7608. "phpDocumentor\\Reflection\\": [
  7609. "src/"
  7610. ]
  7611. }
  7612. },
  7613. "notification-url": "https://packagist.org/downloads/",
  7614. "license": [
  7615. "MIT"
  7616. ],
  7617. "authors": [
  7618. {
  7619. "name": "Mike van Riel",
  7620. "email": "me@mikevanriel.com"
  7621. }
  7622. ],
  7623. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7624. "time": "2019-09-12T14:27:41+00:00"
  7625. },
  7626. {
  7627. "name": "phpdocumentor/type-resolver",
  7628. "version": "0.5.1",
  7629. "source": {
  7630. "type": "git",
  7631. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7632. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae"
  7633. },
  7634. "dist": {
  7635. "type": "zip",
  7636. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/cf842904952e64e703800d094cdf34e715a8a3ae",
  7637. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae",
  7638. "shasum": ""
  7639. },
  7640. "require": {
  7641. "php": "^7.0",
  7642. "phpdocumentor/reflection-common": "^1.0"
  7643. },
  7644. "require-dev": {
  7645. "mockery/mockery": "^1.0",
  7646. "phpunit/phpunit": "^6.4"
  7647. },
  7648. "type": "library",
  7649. "extra": {
  7650. "branch-alias": {
  7651. "dev-master": "1.0.x-dev"
  7652. }
  7653. },
  7654. "autoload": {
  7655. "psr-4": {
  7656. "phpDocumentor\\Reflection\\": "src"
  7657. }
  7658. },
  7659. "notification-url": "https://packagist.org/downloads/",
  7660. "license": [
  7661. "MIT"
  7662. ],
  7663. "authors": [
  7664. {
  7665. "name": "Mike van Riel",
  7666. "email": "me@mikevanriel.com"
  7667. }
  7668. ],
  7669. "time": "2017-12-30T13:23:38+00:00"
  7670. },
  7671. {
  7672. "name": "phpspec/prophecy",
  7673. "version": "1.9.0",
  7674. "source": {
  7675. "type": "git",
  7676. "url": "https://github.com/phpspec/prophecy.git",
  7677. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  7678. },
  7679. "dist": {
  7680. "type": "zip",
  7681. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  7682. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  7683. "shasum": ""
  7684. },
  7685. "require": {
  7686. "doctrine/instantiator": "^1.0.2",
  7687. "php": "^5.3|^7.0",
  7688. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7689. "sebastian/comparator": "^1.1|^2.0|^3.0",
  7690. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  7691. },
  7692. "require-dev": {
  7693. "phpspec/phpspec": "^2.5|^3.2",
  7694. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7695. },
  7696. "type": "library",
  7697. "extra": {
  7698. "branch-alias": {
  7699. "dev-master": "1.8.x-dev"
  7700. }
  7701. },
  7702. "autoload": {
  7703. "psr-4": {
  7704. "Prophecy\\": "src/Prophecy"
  7705. }
  7706. },
  7707. "notification-url": "https://packagist.org/downloads/",
  7708. "license": [
  7709. "MIT"
  7710. ],
  7711. "authors": [
  7712. {
  7713. "name": "Konstantin Kudryashov",
  7714. "email": "ever.zet@gmail.com",
  7715. "homepage": "http://everzet.com"
  7716. },
  7717. {
  7718. "name": "Marcello Duarte",
  7719. "email": "marcello.duarte@gmail.com"
  7720. }
  7721. ],
  7722. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7723. "homepage": "https://github.com/phpspec/prophecy",
  7724. "keywords": [
  7725. "Double",
  7726. "Dummy",
  7727. "fake",
  7728. "mock",
  7729. "spy",
  7730. "stub"
  7731. ],
  7732. "time": "2019-10-03T11:07:50+00:00"
  7733. },
  7734. {
  7735. "name": "phpunit/php-code-coverage",
  7736. "version": "5.3.2",
  7737. "source": {
  7738. "type": "git",
  7739. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7740. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  7741. },
  7742. "dist": {
  7743. "type": "zip",
  7744. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  7745. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  7746. "shasum": ""
  7747. },
  7748. "require": {
  7749. "ext-dom": "*",
  7750. "ext-xmlwriter": "*",
  7751. "php": "^7.0",
  7752. "phpunit/php-file-iterator": "^1.4.2",
  7753. "phpunit/php-text-template": "^1.2.1",
  7754. "phpunit/php-token-stream": "^2.0.1",
  7755. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7756. "sebastian/environment": "^3.0",
  7757. "sebastian/version": "^2.0.1",
  7758. "theseer/tokenizer": "^1.1"
  7759. },
  7760. "require-dev": {
  7761. "phpunit/phpunit": "^6.0"
  7762. },
  7763. "suggest": {
  7764. "ext-xdebug": "^2.5.5"
  7765. },
  7766. "type": "library",
  7767. "extra": {
  7768. "branch-alias": {
  7769. "dev-master": "5.3.x-dev"
  7770. }
  7771. },
  7772. "autoload": {
  7773. "classmap": [
  7774. "src/"
  7775. ]
  7776. },
  7777. "notification-url": "https://packagist.org/downloads/",
  7778. "license": [
  7779. "BSD-3-Clause"
  7780. ],
  7781. "authors": [
  7782. {
  7783. "name": "Sebastian Bergmann",
  7784. "email": "sebastian@phpunit.de",
  7785. "role": "lead"
  7786. }
  7787. ],
  7788. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7789. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7790. "keywords": [
  7791. "coverage",
  7792. "testing",
  7793. "xunit"
  7794. ],
  7795. "time": "2018-04-06T15:36:58+00:00"
  7796. },
  7797. {
  7798. "name": "phpunit/php-file-iterator",
  7799. "version": "1.4.5",
  7800. "source": {
  7801. "type": "git",
  7802. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7803. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  7804. },
  7805. "dist": {
  7806. "type": "zip",
  7807. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7808. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7809. "shasum": ""
  7810. },
  7811. "require": {
  7812. "php": ">=5.3.3"
  7813. },
  7814. "type": "library",
  7815. "extra": {
  7816. "branch-alias": {
  7817. "dev-master": "1.4.x-dev"
  7818. }
  7819. },
  7820. "autoload": {
  7821. "classmap": [
  7822. "src/"
  7823. ]
  7824. },
  7825. "notification-url": "https://packagist.org/downloads/",
  7826. "license": [
  7827. "BSD-3-Clause"
  7828. ],
  7829. "authors": [
  7830. {
  7831. "name": "Sebastian Bergmann",
  7832. "email": "sb@sebastian-bergmann.de",
  7833. "role": "lead"
  7834. }
  7835. ],
  7836. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7837. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7838. "keywords": [
  7839. "filesystem",
  7840. "iterator"
  7841. ],
  7842. "time": "2017-11-27T13:52:08+00:00"
  7843. },
  7844. {
  7845. "name": "phpunit/php-text-template",
  7846. "version": "1.2.1",
  7847. "source": {
  7848. "type": "git",
  7849. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7850. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7851. },
  7852. "dist": {
  7853. "type": "zip",
  7854. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7855. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7856. "shasum": ""
  7857. },
  7858. "require": {
  7859. "php": ">=5.3.3"
  7860. },
  7861. "type": "library",
  7862. "autoload": {
  7863. "classmap": [
  7864. "src/"
  7865. ]
  7866. },
  7867. "notification-url": "https://packagist.org/downloads/",
  7868. "license": [
  7869. "BSD-3-Clause"
  7870. ],
  7871. "authors": [
  7872. {
  7873. "name": "Sebastian Bergmann",
  7874. "email": "sebastian@phpunit.de",
  7875. "role": "lead"
  7876. }
  7877. ],
  7878. "description": "Simple template engine.",
  7879. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7880. "keywords": [
  7881. "template"
  7882. ],
  7883. "time": "2015-06-21T13:50:34+00:00"
  7884. },
  7885. {
  7886. "name": "phpunit/php-timer",
  7887. "version": "1.0.9",
  7888. "source": {
  7889. "type": "git",
  7890. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7891. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  7892. },
  7893. "dist": {
  7894. "type": "zip",
  7895. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7896. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7897. "shasum": ""
  7898. },
  7899. "require": {
  7900. "php": "^5.3.3 || ^7.0"
  7901. },
  7902. "require-dev": {
  7903. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7904. },
  7905. "type": "library",
  7906. "extra": {
  7907. "branch-alias": {
  7908. "dev-master": "1.0-dev"
  7909. }
  7910. },
  7911. "autoload": {
  7912. "classmap": [
  7913. "src/"
  7914. ]
  7915. },
  7916. "notification-url": "https://packagist.org/downloads/",
  7917. "license": [
  7918. "BSD-3-Clause"
  7919. ],
  7920. "authors": [
  7921. {
  7922. "name": "Sebastian Bergmann",
  7923. "email": "sb@sebastian-bergmann.de",
  7924. "role": "lead"
  7925. }
  7926. ],
  7927. "description": "Utility class for timing",
  7928. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7929. "keywords": [
  7930. "timer"
  7931. ],
  7932. "time": "2017-02-26T11:10:40+00:00"
  7933. },
  7934. {
  7935. "name": "phpunit/php-token-stream",
  7936. "version": "2.0.2",
  7937. "source": {
  7938. "type": "git",
  7939. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7940. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  7941. },
  7942. "dist": {
  7943. "type": "zip",
  7944. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  7945. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  7946. "shasum": ""
  7947. },
  7948. "require": {
  7949. "ext-tokenizer": "*",
  7950. "php": "^7.0"
  7951. },
  7952. "require-dev": {
  7953. "phpunit/phpunit": "^6.2.4"
  7954. },
  7955. "type": "library",
  7956. "extra": {
  7957. "branch-alias": {
  7958. "dev-master": "2.0-dev"
  7959. }
  7960. },
  7961. "autoload": {
  7962. "classmap": [
  7963. "src/"
  7964. ]
  7965. },
  7966. "notification-url": "https://packagist.org/downloads/",
  7967. "license": [
  7968. "BSD-3-Clause"
  7969. ],
  7970. "authors": [
  7971. {
  7972. "name": "Sebastian Bergmann",
  7973. "email": "sebastian@phpunit.de"
  7974. }
  7975. ],
  7976. "description": "Wrapper around PHP's tokenizer extension.",
  7977. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7978. "keywords": [
  7979. "tokenizer"
  7980. ],
  7981. "time": "2017-11-27T05:48:46+00:00"
  7982. },
  7983. {
  7984. "name": "phpunit/phpunit",
  7985. "version": "6.5.14",
  7986. "source": {
  7987. "type": "git",
  7988. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7989. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  7990. },
  7991. "dist": {
  7992. "type": "zip",
  7993. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7994. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7995. "shasum": ""
  7996. },
  7997. "require": {
  7998. "ext-dom": "*",
  7999. "ext-json": "*",
  8000. "ext-libxml": "*",
  8001. "ext-mbstring": "*",
  8002. "ext-xml": "*",
  8003. "myclabs/deep-copy": "^1.6.1",
  8004. "phar-io/manifest": "^1.0.1",
  8005. "phar-io/version": "^1.0",
  8006. "php": "^7.0",
  8007. "phpspec/prophecy": "^1.7",
  8008. "phpunit/php-code-coverage": "^5.3",
  8009. "phpunit/php-file-iterator": "^1.4.3",
  8010. "phpunit/php-text-template": "^1.2.1",
  8011. "phpunit/php-timer": "^1.0.9",
  8012. "phpunit/phpunit-mock-objects": "^5.0.9",
  8013. "sebastian/comparator": "^2.1",
  8014. "sebastian/diff": "^2.0",
  8015. "sebastian/environment": "^3.1",
  8016. "sebastian/exporter": "^3.1",
  8017. "sebastian/global-state": "^2.0",
  8018. "sebastian/object-enumerator": "^3.0.3",
  8019. "sebastian/resource-operations": "^1.0",
  8020. "sebastian/version": "^2.0.1"
  8021. },
  8022. "conflict": {
  8023. "phpdocumentor/reflection-docblock": "3.0.2",
  8024. "phpunit/dbunit": "<3.0"
  8025. },
  8026. "require-dev": {
  8027. "ext-pdo": "*"
  8028. },
  8029. "suggest": {
  8030. "ext-xdebug": "*",
  8031. "phpunit/php-invoker": "^1.1"
  8032. },
  8033. "bin": [
  8034. "phpunit"
  8035. ],
  8036. "type": "library",
  8037. "extra": {
  8038. "branch-alias": {
  8039. "dev-master": "6.5.x-dev"
  8040. }
  8041. },
  8042. "autoload": {
  8043. "classmap": [
  8044. "src/"
  8045. ]
  8046. },
  8047. "notification-url": "https://packagist.org/downloads/",
  8048. "license": [
  8049. "BSD-3-Clause"
  8050. ],
  8051. "authors": [
  8052. {
  8053. "name": "Sebastian Bergmann",
  8054. "email": "sebastian@phpunit.de",
  8055. "role": "lead"
  8056. }
  8057. ],
  8058. "description": "The PHP Unit Testing framework.",
  8059. "homepage": "https://phpunit.de/",
  8060. "keywords": [
  8061. "phpunit",
  8062. "testing",
  8063. "xunit"
  8064. ],
  8065. "time": "2019-02-01T05:22:47+00:00"
  8066. },
  8067. {
  8068. "name": "phpunit/phpunit-mock-objects",
  8069. "version": "5.0.10",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  8073. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8078. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8079. "shasum": ""
  8080. },
  8081. "require": {
  8082. "doctrine/instantiator": "^1.0.5",
  8083. "php": "^7.0",
  8084. "phpunit/php-text-template": "^1.2.1",
  8085. "sebastian/exporter": "^3.1"
  8086. },
  8087. "conflict": {
  8088. "phpunit/phpunit": "<6.0"
  8089. },
  8090. "require-dev": {
  8091. "phpunit/phpunit": "^6.5.11"
  8092. },
  8093. "suggest": {
  8094. "ext-soap": "*"
  8095. },
  8096. "type": "library",
  8097. "extra": {
  8098. "branch-alias": {
  8099. "dev-master": "5.0.x-dev"
  8100. }
  8101. },
  8102. "autoload": {
  8103. "classmap": [
  8104. "src/"
  8105. ]
  8106. },
  8107. "notification-url": "https://packagist.org/downloads/",
  8108. "license": [
  8109. "BSD-3-Clause"
  8110. ],
  8111. "authors": [
  8112. {
  8113. "name": "Sebastian Bergmann",
  8114. "email": "sebastian@phpunit.de",
  8115. "role": "lead"
  8116. }
  8117. ],
  8118. "description": "Mock Object library for PHPUnit",
  8119. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  8120. "keywords": [
  8121. "mock",
  8122. "xunit"
  8123. ],
  8124. "abandoned": true,
  8125. "time": "2018-08-09T05:50:03+00:00"
  8126. },
  8127. {
  8128. "name": "psr/container",
  8129. "version": "1.0.0",
  8130. "source": {
  8131. "type": "git",
  8132. "url": "https://github.com/php-fig/container.git",
  8133. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8134. },
  8135. "dist": {
  8136. "type": "zip",
  8137. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8138. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8139. "shasum": ""
  8140. },
  8141. "require": {
  8142. "php": ">=5.3.0"
  8143. },
  8144. "type": "library",
  8145. "extra": {
  8146. "branch-alias": {
  8147. "dev-master": "1.0.x-dev"
  8148. }
  8149. },
  8150. "autoload": {
  8151. "psr-4": {
  8152. "Psr\\Container\\": "src/"
  8153. }
  8154. },
  8155. "notification-url": "https://packagist.org/downloads/",
  8156. "license": [
  8157. "MIT"
  8158. ],
  8159. "authors": [
  8160. {
  8161. "name": "PHP-FIG",
  8162. "homepage": "http://www.php-fig.org/"
  8163. }
  8164. ],
  8165. "description": "Common Container Interface (PHP FIG PSR-11)",
  8166. "homepage": "https://github.com/php-fig/container",
  8167. "keywords": [
  8168. "PSR-11",
  8169. "container",
  8170. "container-interface",
  8171. "container-interop",
  8172. "psr"
  8173. ],
  8174. "time": "2017-02-14T16:28:37+00:00"
  8175. },
  8176. {
  8177. "name": "psr/http-message",
  8178. "version": "1.0.1",
  8179. "source": {
  8180. "type": "git",
  8181. "url": "https://github.com/php-fig/http-message.git",
  8182. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8183. },
  8184. "dist": {
  8185. "type": "zip",
  8186. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8187. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8188. "shasum": ""
  8189. },
  8190. "require": {
  8191. "php": ">=5.3.0"
  8192. },
  8193. "type": "library",
  8194. "extra": {
  8195. "branch-alias": {
  8196. "dev-master": "1.0.x-dev"
  8197. }
  8198. },
  8199. "autoload": {
  8200. "psr-4": {
  8201. "Psr\\Http\\Message\\": "src/"
  8202. }
  8203. },
  8204. "notification-url": "https://packagist.org/downloads/",
  8205. "license": [
  8206. "MIT"
  8207. ],
  8208. "authors": [
  8209. {
  8210. "name": "PHP-FIG",
  8211. "homepage": "http://www.php-fig.org/"
  8212. }
  8213. ],
  8214. "description": "Common interface for HTTP messages",
  8215. "homepage": "https://github.com/php-fig/http-message",
  8216. "keywords": [
  8217. "http",
  8218. "http-message",
  8219. "psr",
  8220. "psr-7",
  8221. "request",
  8222. "response"
  8223. ],
  8224. "time": "2016-08-06T14:39:51+00:00"
  8225. },
  8226. {
  8227. "name": "psr/log",
  8228. "version": "1.1.2",
  8229. "source": {
  8230. "type": "git",
  8231. "url": "https://github.com/php-fig/log.git",
  8232. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  8233. },
  8234. "dist": {
  8235. "type": "zip",
  8236. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  8237. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  8238. "shasum": ""
  8239. },
  8240. "require": {
  8241. "php": ">=5.3.0"
  8242. },
  8243. "type": "library",
  8244. "extra": {
  8245. "branch-alias": {
  8246. "dev-master": "1.1.x-dev"
  8247. }
  8248. },
  8249. "autoload": {
  8250. "psr-4": {
  8251. "Psr\\Log\\": "Psr/Log/"
  8252. }
  8253. },
  8254. "notification-url": "https://packagist.org/downloads/",
  8255. "license": [
  8256. "MIT"
  8257. ],
  8258. "authors": [
  8259. {
  8260. "name": "PHP-FIG",
  8261. "homepage": "http://www.php-fig.org/"
  8262. }
  8263. ],
  8264. "description": "Common interface for logging libraries",
  8265. "homepage": "https://github.com/php-fig/log",
  8266. "keywords": [
  8267. "log",
  8268. "psr",
  8269. "psr-3"
  8270. ],
  8271. "time": "2019-11-01T11:05:21+00:00"
  8272. },
  8273. {
  8274. "name": "psy/psysh",
  8275. "version": "v0.9.9",
  8276. "source": {
  8277. "type": "git",
  8278. "url": "https://github.com/bobthecow/psysh.git",
  8279. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8280. },
  8281. "dist": {
  8282. "type": "zip",
  8283. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8284. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8285. "shasum": ""
  8286. },
  8287. "require": {
  8288. "dnoegel/php-xdg-base-dir": "0.1",
  8289. "ext-json": "*",
  8290. "ext-tokenizer": "*",
  8291. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8292. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8293. "php": ">=5.4.0",
  8294. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8295. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8296. },
  8297. "require-dev": {
  8298. "bamarni/composer-bin-plugin": "^1.2",
  8299. "hoa/console": "~2.15|~3.16",
  8300. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8301. },
  8302. "suggest": {
  8303. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8304. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8305. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8306. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8307. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8308. },
  8309. "bin": [
  8310. "bin/psysh"
  8311. ],
  8312. "type": "library",
  8313. "extra": {
  8314. "branch-alias": {
  8315. "dev-develop": "0.9.x-dev"
  8316. }
  8317. },
  8318. "autoload": {
  8319. "files": [
  8320. "src/functions.php"
  8321. ],
  8322. "psr-4": {
  8323. "Psy\\": "src/"
  8324. }
  8325. },
  8326. "notification-url": "https://packagist.org/downloads/",
  8327. "license": [
  8328. "MIT"
  8329. ],
  8330. "authors": [
  8331. {
  8332. "name": "Justin Hileman",
  8333. "email": "justin@justinhileman.info",
  8334. "homepage": "http://justinhileman.com"
  8335. }
  8336. ],
  8337. "description": "An interactive shell for modern PHP.",
  8338. "homepage": "http://psysh.org",
  8339. "keywords": [
  8340. "REPL",
  8341. "console",
  8342. "interactive",
  8343. "shell"
  8344. ],
  8345. "time": "2018-10-13T15:16:03+00:00"
  8346. },
  8347. {
  8348. "name": "ralouphie/getallheaders",
  8349. "version": "3.0.3",
  8350. "source": {
  8351. "type": "git",
  8352. "url": "https://github.com/ralouphie/getallheaders.git",
  8353. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8354. },
  8355. "dist": {
  8356. "type": "zip",
  8357. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8358. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8359. "shasum": ""
  8360. },
  8361. "require": {
  8362. "php": ">=5.6"
  8363. },
  8364. "require-dev": {
  8365. "php-coveralls/php-coveralls": "^2.1",
  8366. "phpunit/phpunit": "^5 || ^6.5"
  8367. },
  8368. "type": "library",
  8369. "autoload": {
  8370. "files": [
  8371. "src/getallheaders.php"
  8372. ]
  8373. },
  8374. "notification-url": "https://packagist.org/downloads/",
  8375. "license": [
  8376. "MIT"
  8377. ],
  8378. "authors": [
  8379. {
  8380. "name": "Ralph Khattar",
  8381. "email": "ralph.khattar@gmail.com"
  8382. }
  8383. ],
  8384. "description": "A polyfill for getallheaders.",
  8385. "time": "2019-03-08T08:55:37+00:00"
  8386. },
  8387. {
  8388. "name": "sebastian/code-unit-reverse-lookup",
  8389. "version": "1.0.1",
  8390. "source": {
  8391. "type": "git",
  8392. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8393. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8394. },
  8395. "dist": {
  8396. "type": "zip",
  8397. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8398. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8399. "shasum": ""
  8400. },
  8401. "require": {
  8402. "php": "^5.6 || ^7.0"
  8403. },
  8404. "require-dev": {
  8405. "phpunit/phpunit": "^5.7 || ^6.0"
  8406. },
  8407. "type": "library",
  8408. "extra": {
  8409. "branch-alias": {
  8410. "dev-master": "1.0.x-dev"
  8411. }
  8412. },
  8413. "autoload": {
  8414. "classmap": [
  8415. "src/"
  8416. ]
  8417. },
  8418. "notification-url": "https://packagist.org/downloads/",
  8419. "license": [
  8420. "BSD-3-Clause"
  8421. ],
  8422. "authors": [
  8423. {
  8424. "name": "Sebastian Bergmann",
  8425. "email": "sebastian@phpunit.de"
  8426. }
  8427. ],
  8428. "description": "Looks up which function or method a line of code belongs to",
  8429. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8430. "time": "2017-03-04T06:30:41+00:00"
  8431. },
  8432. {
  8433. "name": "sebastian/comparator",
  8434. "version": "2.1.3",
  8435. "source": {
  8436. "type": "git",
  8437. "url": "https://github.com/sebastianbergmann/comparator.git",
  8438. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  8439. },
  8440. "dist": {
  8441. "type": "zip",
  8442. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  8443. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  8444. "shasum": ""
  8445. },
  8446. "require": {
  8447. "php": "^7.0",
  8448. "sebastian/diff": "^2.0 || ^3.0",
  8449. "sebastian/exporter": "^3.1"
  8450. },
  8451. "require-dev": {
  8452. "phpunit/phpunit": "^6.4"
  8453. },
  8454. "type": "library",
  8455. "extra": {
  8456. "branch-alias": {
  8457. "dev-master": "2.1.x-dev"
  8458. }
  8459. },
  8460. "autoload": {
  8461. "classmap": [
  8462. "src/"
  8463. ]
  8464. },
  8465. "notification-url": "https://packagist.org/downloads/",
  8466. "license": [
  8467. "BSD-3-Clause"
  8468. ],
  8469. "authors": [
  8470. {
  8471. "name": "Jeff Welch",
  8472. "email": "whatthejeff@gmail.com"
  8473. },
  8474. {
  8475. "name": "Volker Dusch",
  8476. "email": "github@wallbash.com"
  8477. },
  8478. {
  8479. "name": "Bernhard Schussek",
  8480. "email": "bschussek@2bepublished.at"
  8481. },
  8482. {
  8483. "name": "Sebastian Bergmann",
  8484. "email": "sebastian@phpunit.de"
  8485. }
  8486. ],
  8487. "description": "Provides the functionality to compare PHP values for equality",
  8488. "homepage": "https://github.com/sebastianbergmann/comparator",
  8489. "keywords": [
  8490. "comparator",
  8491. "compare",
  8492. "equality"
  8493. ],
  8494. "time": "2018-02-01T13:46:46+00:00"
  8495. },
  8496. {
  8497. "name": "sebastian/diff",
  8498. "version": "2.0.1",
  8499. "source": {
  8500. "type": "git",
  8501. "url": "https://github.com/sebastianbergmann/diff.git",
  8502. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  8503. },
  8504. "dist": {
  8505. "type": "zip",
  8506. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8507. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8508. "shasum": ""
  8509. },
  8510. "require": {
  8511. "php": "^7.0"
  8512. },
  8513. "require-dev": {
  8514. "phpunit/phpunit": "^6.2"
  8515. },
  8516. "type": "library",
  8517. "extra": {
  8518. "branch-alias": {
  8519. "dev-master": "2.0-dev"
  8520. }
  8521. },
  8522. "autoload": {
  8523. "classmap": [
  8524. "src/"
  8525. ]
  8526. },
  8527. "notification-url": "https://packagist.org/downloads/",
  8528. "license": [
  8529. "BSD-3-Clause"
  8530. ],
  8531. "authors": [
  8532. {
  8533. "name": "Kore Nordmann",
  8534. "email": "mail@kore-nordmann.de"
  8535. },
  8536. {
  8537. "name": "Sebastian Bergmann",
  8538. "email": "sebastian@phpunit.de"
  8539. }
  8540. ],
  8541. "description": "Diff implementation",
  8542. "homepage": "https://github.com/sebastianbergmann/diff",
  8543. "keywords": [
  8544. "diff"
  8545. ],
  8546. "time": "2017-08-03T08:09:46+00:00"
  8547. },
  8548. {
  8549. "name": "sebastian/environment",
  8550. "version": "3.1.0",
  8551. "source": {
  8552. "type": "git",
  8553. "url": "https://github.com/sebastianbergmann/environment.git",
  8554. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  8555. },
  8556. "dist": {
  8557. "type": "zip",
  8558. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8559. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8560. "shasum": ""
  8561. },
  8562. "require": {
  8563. "php": "^7.0"
  8564. },
  8565. "require-dev": {
  8566. "phpunit/phpunit": "^6.1"
  8567. },
  8568. "type": "library",
  8569. "extra": {
  8570. "branch-alias": {
  8571. "dev-master": "3.1.x-dev"
  8572. }
  8573. },
  8574. "autoload": {
  8575. "classmap": [
  8576. "src/"
  8577. ]
  8578. },
  8579. "notification-url": "https://packagist.org/downloads/",
  8580. "license": [
  8581. "BSD-3-Clause"
  8582. ],
  8583. "authors": [
  8584. {
  8585. "name": "Sebastian Bergmann",
  8586. "email": "sebastian@phpunit.de"
  8587. }
  8588. ],
  8589. "description": "Provides functionality to handle HHVM/PHP environments",
  8590. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8591. "keywords": [
  8592. "Xdebug",
  8593. "environment",
  8594. "hhvm"
  8595. ],
  8596. "time": "2017-07-01T08:51:00+00:00"
  8597. },
  8598. {
  8599. "name": "sebastian/exporter",
  8600. "version": "3.1.2",
  8601. "source": {
  8602. "type": "git",
  8603. "url": "https://github.com/sebastianbergmann/exporter.git",
  8604. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8605. },
  8606. "dist": {
  8607. "type": "zip",
  8608. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8609. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8610. "shasum": ""
  8611. },
  8612. "require": {
  8613. "php": "^7.0",
  8614. "sebastian/recursion-context": "^3.0"
  8615. },
  8616. "require-dev": {
  8617. "ext-mbstring": "*",
  8618. "phpunit/phpunit": "^6.0"
  8619. },
  8620. "type": "library",
  8621. "extra": {
  8622. "branch-alias": {
  8623. "dev-master": "3.1.x-dev"
  8624. }
  8625. },
  8626. "autoload": {
  8627. "classmap": [
  8628. "src/"
  8629. ]
  8630. },
  8631. "notification-url": "https://packagist.org/downloads/",
  8632. "license": [
  8633. "BSD-3-Clause"
  8634. ],
  8635. "authors": [
  8636. {
  8637. "name": "Sebastian Bergmann",
  8638. "email": "sebastian@phpunit.de"
  8639. },
  8640. {
  8641. "name": "Jeff Welch",
  8642. "email": "whatthejeff@gmail.com"
  8643. },
  8644. {
  8645. "name": "Volker Dusch",
  8646. "email": "github@wallbash.com"
  8647. },
  8648. {
  8649. "name": "Adam Harvey",
  8650. "email": "aharvey@php.net"
  8651. },
  8652. {
  8653. "name": "Bernhard Schussek",
  8654. "email": "bschussek@gmail.com"
  8655. }
  8656. ],
  8657. "description": "Provides the functionality to export PHP variables for visualization",
  8658. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8659. "keywords": [
  8660. "export",
  8661. "exporter"
  8662. ],
  8663. "time": "2019-09-14T09:02:43+00:00"
  8664. },
  8665. {
  8666. "name": "sebastian/global-state",
  8667. "version": "2.0.0",
  8668. "source": {
  8669. "type": "git",
  8670. "url": "https://github.com/sebastianbergmann/global-state.git",
  8671. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  8672. },
  8673. "dist": {
  8674. "type": "zip",
  8675. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8676. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8677. "shasum": ""
  8678. },
  8679. "require": {
  8680. "php": "^7.0"
  8681. },
  8682. "require-dev": {
  8683. "phpunit/phpunit": "^6.0"
  8684. },
  8685. "suggest": {
  8686. "ext-uopz": "*"
  8687. },
  8688. "type": "library",
  8689. "extra": {
  8690. "branch-alias": {
  8691. "dev-master": "2.0-dev"
  8692. }
  8693. },
  8694. "autoload": {
  8695. "classmap": [
  8696. "src/"
  8697. ]
  8698. },
  8699. "notification-url": "https://packagist.org/downloads/",
  8700. "license": [
  8701. "BSD-3-Clause"
  8702. ],
  8703. "authors": [
  8704. {
  8705. "name": "Sebastian Bergmann",
  8706. "email": "sebastian@phpunit.de"
  8707. }
  8708. ],
  8709. "description": "Snapshotting of global state",
  8710. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8711. "keywords": [
  8712. "global state"
  8713. ],
  8714. "time": "2017-04-27T15:39:26+00:00"
  8715. },
  8716. {
  8717. "name": "sebastian/object-enumerator",
  8718. "version": "3.0.3",
  8719. "source": {
  8720. "type": "git",
  8721. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8722. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8723. },
  8724. "dist": {
  8725. "type": "zip",
  8726. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8727. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8728. "shasum": ""
  8729. },
  8730. "require": {
  8731. "php": "^7.0",
  8732. "sebastian/object-reflector": "^1.1.1",
  8733. "sebastian/recursion-context": "^3.0"
  8734. },
  8735. "require-dev": {
  8736. "phpunit/phpunit": "^6.0"
  8737. },
  8738. "type": "library",
  8739. "extra": {
  8740. "branch-alias": {
  8741. "dev-master": "3.0.x-dev"
  8742. }
  8743. },
  8744. "autoload": {
  8745. "classmap": [
  8746. "src/"
  8747. ]
  8748. },
  8749. "notification-url": "https://packagist.org/downloads/",
  8750. "license": [
  8751. "BSD-3-Clause"
  8752. ],
  8753. "authors": [
  8754. {
  8755. "name": "Sebastian Bergmann",
  8756. "email": "sebastian@phpunit.de"
  8757. }
  8758. ],
  8759. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8760. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8761. "time": "2017-08-03T12:35:26+00:00"
  8762. },
  8763. {
  8764. "name": "sebastian/object-reflector",
  8765. "version": "1.1.1",
  8766. "source": {
  8767. "type": "git",
  8768. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8769. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8770. },
  8771. "dist": {
  8772. "type": "zip",
  8773. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8774. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8775. "shasum": ""
  8776. },
  8777. "require": {
  8778. "php": "^7.0"
  8779. },
  8780. "require-dev": {
  8781. "phpunit/phpunit": "^6.0"
  8782. },
  8783. "type": "library",
  8784. "extra": {
  8785. "branch-alias": {
  8786. "dev-master": "1.1-dev"
  8787. }
  8788. },
  8789. "autoload": {
  8790. "classmap": [
  8791. "src/"
  8792. ]
  8793. },
  8794. "notification-url": "https://packagist.org/downloads/",
  8795. "license": [
  8796. "BSD-3-Clause"
  8797. ],
  8798. "authors": [
  8799. {
  8800. "name": "Sebastian Bergmann",
  8801. "email": "sebastian@phpunit.de"
  8802. }
  8803. ],
  8804. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8805. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8806. "time": "2017-03-29T09:07:27+00:00"
  8807. },
  8808. {
  8809. "name": "sebastian/recursion-context",
  8810. "version": "3.0.0",
  8811. "source": {
  8812. "type": "git",
  8813. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8814. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8815. },
  8816. "dist": {
  8817. "type": "zip",
  8818. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8819. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8820. "shasum": ""
  8821. },
  8822. "require": {
  8823. "php": "^7.0"
  8824. },
  8825. "require-dev": {
  8826. "phpunit/phpunit": "^6.0"
  8827. },
  8828. "type": "library",
  8829. "extra": {
  8830. "branch-alias": {
  8831. "dev-master": "3.0.x-dev"
  8832. }
  8833. },
  8834. "autoload": {
  8835. "classmap": [
  8836. "src/"
  8837. ]
  8838. },
  8839. "notification-url": "https://packagist.org/downloads/",
  8840. "license": [
  8841. "BSD-3-Clause"
  8842. ],
  8843. "authors": [
  8844. {
  8845. "name": "Jeff Welch",
  8846. "email": "whatthejeff@gmail.com"
  8847. },
  8848. {
  8849. "name": "Sebastian Bergmann",
  8850. "email": "sebastian@phpunit.de"
  8851. },
  8852. {
  8853. "name": "Adam Harvey",
  8854. "email": "aharvey@php.net"
  8855. }
  8856. ],
  8857. "description": "Provides functionality to recursively process PHP variables",
  8858. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8859. "time": "2017-03-03T06:23:57+00:00"
  8860. },
  8861. {
  8862. "name": "sebastian/resource-operations",
  8863. "version": "1.0.0",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8867. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8872. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "php": ">=5.6.0"
  8877. },
  8878. "type": "library",
  8879. "extra": {
  8880. "branch-alias": {
  8881. "dev-master": "1.0.x-dev"
  8882. }
  8883. },
  8884. "autoload": {
  8885. "classmap": [
  8886. "src/"
  8887. ]
  8888. },
  8889. "notification-url": "https://packagist.org/downloads/",
  8890. "license": [
  8891. "BSD-3-Clause"
  8892. ],
  8893. "authors": [
  8894. {
  8895. "name": "Sebastian Bergmann",
  8896. "email": "sebastian@phpunit.de"
  8897. }
  8898. ],
  8899. "description": "Provides a list of PHP built-in functions that operate on resources",
  8900. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8901. "time": "2015-07-28T20:34:47+00:00"
  8902. },
  8903. {
  8904. "name": "sebastian/version",
  8905. "version": "2.0.1",
  8906. "source": {
  8907. "type": "git",
  8908. "url": "https://github.com/sebastianbergmann/version.git",
  8909. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8910. },
  8911. "dist": {
  8912. "type": "zip",
  8913. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8914. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8915. "shasum": ""
  8916. },
  8917. "require": {
  8918. "php": ">=5.6"
  8919. },
  8920. "type": "library",
  8921. "extra": {
  8922. "branch-alias": {
  8923. "dev-master": "2.0.x-dev"
  8924. }
  8925. },
  8926. "autoload": {
  8927. "classmap": [
  8928. "src/"
  8929. ]
  8930. },
  8931. "notification-url": "https://packagist.org/downloads/",
  8932. "license": [
  8933. "BSD-3-Clause"
  8934. ],
  8935. "authors": [
  8936. {
  8937. "name": "Sebastian Bergmann",
  8938. "email": "sebastian@phpunit.de",
  8939. "role": "lead"
  8940. }
  8941. ],
  8942. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8943. "homepage": "https://github.com/sebastianbergmann/version",
  8944. "time": "2016-10-03T07:35:21+00:00"
  8945. },
  8946. {
  8947. "name": "squizlabs/php_codesniffer",
  8948. "version": "3.5.2",
  8949. "source": {
  8950. "type": "git",
  8951. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  8952. "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7"
  8953. },
  8954. "dist": {
  8955. "type": "zip",
  8956. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/65b12cdeaaa6cd276d4c3033a95b9b88b12701e7",
  8957. "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7",
  8958. "shasum": ""
  8959. },
  8960. "require": {
  8961. "ext-simplexml": "*",
  8962. "ext-tokenizer": "*",
  8963. "ext-xmlwriter": "*",
  8964. "php": ">=5.4.0"
  8965. },
  8966. "require-dev": {
  8967. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  8968. },
  8969. "bin": [
  8970. "bin/phpcs",
  8971. "bin/phpcbf"
  8972. ],
  8973. "type": "library",
  8974. "extra": {
  8975. "branch-alias": {
  8976. "dev-master": "3.x-dev"
  8977. }
  8978. },
  8979. "notification-url": "https://packagist.org/downloads/",
  8980. "license": [
  8981. "BSD-3-Clause"
  8982. ],
  8983. "authors": [
  8984. {
  8985. "name": "Greg Sherwood",
  8986. "role": "lead"
  8987. }
  8988. ],
  8989. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  8990. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  8991. "keywords": [
  8992. "phpcs",
  8993. "standards"
  8994. ],
  8995. "time": "2019-10-28T04:36:32+00:00"
  8996. },
  8997. {
  8998. "name": "stack/builder",
  8999. "version": "v1.0.5",
  9000. "source": {
  9001. "type": "git",
  9002. "url": "https://github.com/stackphp/builder.git",
  9003. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  9004. },
  9005. "dist": {
  9006. "type": "zip",
  9007. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9008. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9009. "shasum": ""
  9010. },
  9011. "require": {
  9012. "php": ">=5.3.0",
  9013. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  9014. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  9015. },
  9016. "require-dev": {
  9017. "silex/silex": "~1.0"
  9018. },
  9019. "type": "library",
  9020. "extra": {
  9021. "branch-alias": {
  9022. "dev-master": "1.0-dev"
  9023. }
  9024. },
  9025. "autoload": {
  9026. "psr-0": {
  9027. "Stack": "src"
  9028. }
  9029. },
  9030. "notification-url": "https://packagist.org/downloads/",
  9031. "license": [
  9032. "MIT"
  9033. ],
  9034. "authors": [
  9035. {
  9036. "name": "Igor Wiedler",
  9037. "email": "igor@wiedler.ch"
  9038. }
  9039. ],
  9040. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  9041. "keywords": [
  9042. "stack"
  9043. ],
  9044. "time": "2017-11-18T14:57:29+00:00"
  9045. },
  9046. {
  9047. "name": "stecman/symfony-console-completion",
  9048. "version": "0.10.1",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/stecman/symfony-console-completion.git",
  9052. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/7bfa9b93e216896419f2f8de659935d7e04fecd8",
  9057. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8",
  9058. "shasum": ""
  9059. },
  9060. "require": {
  9061. "php": ">=5.3.2",
  9062. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  9063. },
  9064. "require-dev": {
  9065. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9066. },
  9067. "type": "library",
  9068. "extra": {
  9069. "branch-alias": {
  9070. "dev-master": "0.10.x-dev"
  9071. }
  9072. },
  9073. "autoload": {
  9074. "psr-4": {
  9075. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9076. }
  9077. },
  9078. "notification-url": "https://packagist.org/downloads/",
  9079. "license": [
  9080. "MIT"
  9081. ],
  9082. "authors": [
  9083. {
  9084. "name": "Stephen Holdaway",
  9085. "email": "stephen@stecman.co.nz"
  9086. }
  9087. ],
  9088. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9089. "time": "2019-04-29T03:20:18+00:00"
  9090. },
  9091. {
  9092. "name": "symfony-cmf/routing",
  9093. "version": "1.4.1",
  9094. "source": {
  9095. "type": "git",
  9096. "url": "https://github.com/symfony-cmf/routing.git",
  9097. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  9098. },
  9099. "dist": {
  9100. "type": "zip",
  9101. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9102. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9103. "shasum": ""
  9104. },
  9105. "require": {
  9106. "php": "^5.3.9|^7.0",
  9107. "psr/log": "1.*",
  9108. "symfony/http-kernel": "^2.2|3.*",
  9109. "symfony/routing": "^2.2|3.*"
  9110. },
  9111. "require-dev": {
  9112. "friendsofsymfony/jsrouting-bundle": "^1.1",
  9113. "symfony-cmf/testing": "^1.3",
  9114. "symfony/config": "^2.2|3.*",
  9115. "symfony/dependency-injection": "^2.0.5|3.*",
  9116. "symfony/event-dispatcher": "^2.1|3.*"
  9117. },
  9118. "suggest": {
  9119. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  9120. },
  9121. "type": "library",
  9122. "extra": {
  9123. "branch-alias": {
  9124. "dev-master": "1.4-dev"
  9125. }
  9126. },
  9127. "autoload": {
  9128. "psr-4": {
  9129. "Symfony\\Cmf\\Component\\Routing\\": ""
  9130. }
  9131. },
  9132. "notification-url": "https://packagist.org/downloads/",
  9133. "license": [
  9134. "MIT"
  9135. ],
  9136. "authors": [
  9137. {
  9138. "name": "Symfony CMF Community",
  9139. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9140. }
  9141. ],
  9142. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  9143. "homepage": "http://cmf.symfony.com",
  9144. "keywords": [
  9145. "database",
  9146. "routing"
  9147. ],
  9148. "time": "2017-05-09T08:10:41+00:00"
  9149. },
  9150. {
  9151. "name": "symfony/browser-kit",
  9152. "version": "v3.4.34",
  9153. "source": {
  9154. "type": "git",
  9155. "url": "https://github.com/symfony/browser-kit.git",
  9156. "reference": "2e4c991e27a97a8c27745720b030ff85a5cebdf6"
  9157. },
  9158. "dist": {
  9159. "type": "zip",
  9160. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2e4c991e27a97a8c27745720b030ff85a5cebdf6",
  9161. "reference": "2e4c991e27a97a8c27745720b030ff85a5cebdf6",
  9162. "shasum": ""
  9163. },
  9164. "require": {
  9165. "php": "^5.5.9|>=7.0.8",
  9166. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  9167. },
  9168. "require-dev": {
  9169. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9170. "symfony/process": "~2.8|~3.0|~4.0"
  9171. },
  9172. "suggest": {
  9173. "symfony/process": ""
  9174. },
  9175. "type": "library",
  9176. "extra": {
  9177. "branch-alias": {
  9178. "dev-master": "3.4-dev"
  9179. }
  9180. },
  9181. "autoload": {
  9182. "psr-4": {
  9183. "Symfony\\Component\\BrowserKit\\": ""
  9184. },
  9185. "exclude-from-classmap": [
  9186. "/Tests/"
  9187. ]
  9188. },
  9189. "notification-url": "https://packagist.org/downloads/",
  9190. "license": [
  9191. "MIT"
  9192. ],
  9193. "authors": [
  9194. {
  9195. "name": "Fabien Potencier",
  9196. "email": "fabien@symfony.com"
  9197. },
  9198. {
  9199. "name": "Symfony Community",
  9200. "homepage": "https://symfony.com/contributors"
  9201. }
  9202. ],
  9203. "description": "Symfony BrowserKit Component",
  9204. "homepage": "https://symfony.com",
  9205. "time": "2019-10-24T15:33:53+00:00"
  9206. },
  9207. {
  9208. "name": "symfony/class-loader",
  9209. "version": "v3.4.34",
  9210. "source": {
  9211. "type": "git",
  9212. "url": "https://github.com/symfony/class-loader.git",
  9213. "reference": "e212b06996819a2bce026a63da03b7182d05a690"
  9214. },
  9215. "dist": {
  9216. "type": "zip",
  9217. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690",
  9218. "reference": "e212b06996819a2bce026a63da03b7182d05a690",
  9219. "shasum": ""
  9220. },
  9221. "require": {
  9222. "php": "^5.5.9|>=7.0.8"
  9223. },
  9224. "require-dev": {
  9225. "symfony/finder": "~2.8|~3.0|~4.0",
  9226. "symfony/polyfill-apcu": "~1.1"
  9227. },
  9228. "suggest": {
  9229. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  9230. },
  9231. "type": "library",
  9232. "extra": {
  9233. "branch-alias": {
  9234. "dev-master": "3.4-dev"
  9235. }
  9236. },
  9237. "autoload": {
  9238. "psr-4": {
  9239. "Symfony\\Component\\ClassLoader\\": ""
  9240. },
  9241. "exclude-from-classmap": [
  9242. "/Tests/"
  9243. ]
  9244. },
  9245. "notification-url": "https://packagist.org/downloads/",
  9246. "license": [
  9247. "MIT"
  9248. ],
  9249. "authors": [
  9250. {
  9251. "name": "Fabien Potencier",
  9252. "email": "fabien@symfony.com"
  9253. },
  9254. {
  9255. "name": "Symfony Community",
  9256. "homepage": "https://symfony.com/contributors"
  9257. }
  9258. ],
  9259. "description": "Symfony ClassLoader Component",
  9260. "homepage": "https://symfony.com",
  9261. "time": "2019-08-20T13:31:17+00:00"
  9262. },
  9263. {
  9264. "name": "symfony/config",
  9265. "version": "v3.4.34",
  9266. "source": {
  9267. "type": "git",
  9268. "url": "https://github.com/symfony/config.git",
  9269. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f"
  9270. },
  9271. "dist": {
  9272. "type": "zip",
  9273. "url": "https://api.github.com/repos/symfony/config/zipball/c3a30587de97263d2813a3c81b74126c58b67a4f",
  9274. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f",
  9275. "shasum": ""
  9276. },
  9277. "require": {
  9278. "php": "^5.5.9|>=7.0.8",
  9279. "symfony/filesystem": "~2.8|~3.0|~4.0",
  9280. "symfony/polyfill-ctype": "~1.8"
  9281. },
  9282. "conflict": {
  9283. "symfony/dependency-injection": "<3.3",
  9284. "symfony/finder": "<3.3"
  9285. },
  9286. "require-dev": {
  9287. "symfony/dependency-injection": "~3.3|~4.0",
  9288. "symfony/event-dispatcher": "~3.3|~4.0",
  9289. "symfony/finder": "~3.3|~4.0",
  9290. "symfony/yaml": "~3.0|~4.0"
  9291. },
  9292. "suggest": {
  9293. "symfony/yaml": "To use the yaml reference dumper"
  9294. },
  9295. "type": "library",
  9296. "extra": {
  9297. "branch-alias": {
  9298. "dev-master": "3.4-dev"
  9299. }
  9300. },
  9301. "autoload": {
  9302. "psr-4": {
  9303. "Symfony\\Component\\Config\\": ""
  9304. },
  9305. "exclude-from-classmap": [
  9306. "/Tests/"
  9307. ]
  9308. },
  9309. "notification-url": "https://packagist.org/downloads/",
  9310. "license": [
  9311. "MIT"
  9312. ],
  9313. "authors": [
  9314. {
  9315. "name": "Fabien Potencier",
  9316. "email": "fabien@symfony.com"
  9317. },
  9318. {
  9319. "name": "Symfony Community",
  9320. "homepage": "https://symfony.com/contributors"
  9321. }
  9322. ],
  9323. "description": "Symfony Config Component",
  9324. "homepage": "https://symfony.com",
  9325. "time": "2019-11-08T08:28:59+00:00"
  9326. },
  9327. {
  9328. "name": "symfony/console",
  9329. "version": "v3.4.34",
  9330. "source": {
  9331. "type": "git",
  9332. "url": "https://github.com/symfony/console.git",
  9333. "reference": "c7edffb26b29cae972ca4afccb610a38ce8d0ccf"
  9334. },
  9335. "dist": {
  9336. "type": "zip",
  9337. "url": "https://api.github.com/repos/symfony/console/zipball/c7edffb26b29cae972ca4afccb610a38ce8d0ccf",
  9338. "reference": "c7edffb26b29cae972ca4afccb610a38ce8d0ccf",
  9339. "shasum": ""
  9340. },
  9341. "require": {
  9342. "php": "^5.5.9|>=7.0.8",
  9343. "symfony/debug": "~2.8|~3.0|~4.0",
  9344. "symfony/polyfill-mbstring": "~1.0"
  9345. },
  9346. "conflict": {
  9347. "symfony/dependency-injection": "<3.4",
  9348. "symfony/process": "<3.3"
  9349. },
  9350. "provide": {
  9351. "psr/log-implementation": "1.0"
  9352. },
  9353. "require-dev": {
  9354. "psr/log": "~1.0",
  9355. "symfony/config": "~3.3|~4.0",
  9356. "symfony/dependency-injection": "~3.4|~4.0",
  9357. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9358. "symfony/lock": "~3.4|~4.0",
  9359. "symfony/process": "~3.3|~4.0"
  9360. },
  9361. "suggest": {
  9362. "psr/log": "For using the console logger",
  9363. "symfony/event-dispatcher": "",
  9364. "symfony/lock": "",
  9365. "symfony/process": ""
  9366. },
  9367. "type": "library",
  9368. "extra": {
  9369. "branch-alias": {
  9370. "dev-master": "3.4-dev"
  9371. }
  9372. },
  9373. "autoload": {
  9374. "psr-4": {
  9375. "Symfony\\Component\\Console\\": ""
  9376. },
  9377. "exclude-from-classmap": [
  9378. "/Tests/"
  9379. ]
  9380. },
  9381. "notification-url": "https://packagist.org/downloads/",
  9382. "license": [
  9383. "MIT"
  9384. ],
  9385. "authors": [
  9386. {
  9387. "name": "Fabien Potencier",
  9388. "email": "fabien@symfony.com"
  9389. },
  9390. {
  9391. "name": "Symfony Community",
  9392. "homepage": "https://symfony.com/contributors"
  9393. }
  9394. ],
  9395. "description": "Symfony Console Component",
  9396. "homepage": "https://symfony.com",
  9397. "time": "2019-10-24T15:33:53+00:00"
  9398. },
  9399. {
  9400. "name": "symfony/css-selector",
  9401. "version": "v3.4.34",
  9402. "source": {
  9403. "type": "git",
  9404. "url": "https://github.com/symfony/css-selector.git",
  9405. "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f"
  9406. },
  9407. "dist": {
  9408. "type": "zip",
  9409. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f819f71ae3ba6f396b4c015bd5895de7d2f1f85f",
  9410. "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f",
  9411. "shasum": ""
  9412. },
  9413. "require": {
  9414. "php": "^5.5.9|>=7.0.8"
  9415. },
  9416. "type": "library",
  9417. "extra": {
  9418. "branch-alias": {
  9419. "dev-master": "3.4-dev"
  9420. }
  9421. },
  9422. "autoload": {
  9423. "psr-4": {
  9424. "Symfony\\Component\\CssSelector\\": ""
  9425. },
  9426. "exclude-from-classmap": [
  9427. "/Tests/"
  9428. ]
  9429. },
  9430. "notification-url": "https://packagist.org/downloads/",
  9431. "license": [
  9432. "MIT"
  9433. ],
  9434. "authors": [
  9435. {
  9436. "name": "Fabien Potencier",
  9437. "email": "fabien@symfony.com"
  9438. },
  9439. {
  9440. "name": "Jean-François Simon",
  9441. "email": "jeanfrancois.simon@sensiolabs.com"
  9442. },
  9443. {
  9444. "name": "Symfony Community",
  9445. "homepage": "https://symfony.com/contributors"
  9446. }
  9447. ],
  9448. "description": "Symfony CssSelector Component",
  9449. "homepage": "https://symfony.com",
  9450. "time": "2019-10-01T11:57:37+00:00"
  9451. },
  9452. {
  9453. "name": "symfony/debug",
  9454. "version": "v3.4.34",
  9455. "source": {
  9456. "type": "git",
  9457. "url": "https://github.com/symfony/debug.git",
  9458. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086"
  9459. },
  9460. "dist": {
  9461. "type": "zip",
  9462. "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086",
  9463. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086",
  9464. "shasum": ""
  9465. },
  9466. "require": {
  9467. "php": "^5.5.9|>=7.0.8",
  9468. "psr/log": "~1.0"
  9469. },
  9470. "conflict": {
  9471. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9472. },
  9473. "require-dev": {
  9474. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9475. },
  9476. "type": "library",
  9477. "extra": {
  9478. "branch-alias": {
  9479. "dev-master": "3.4-dev"
  9480. }
  9481. },
  9482. "autoload": {
  9483. "psr-4": {
  9484. "Symfony\\Component\\Debug\\": ""
  9485. },
  9486. "exclude-from-classmap": [
  9487. "/Tests/"
  9488. ]
  9489. },
  9490. "notification-url": "https://packagist.org/downloads/",
  9491. "license": [
  9492. "MIT"
  9493. ],
  9494. "authors": [
  9495. {
  9496. "name": "Fabien Potencier",
  9497. "email": "fabien@symfony.com"
  9498. },
  9499. {
  9500. "name": "Symfony Community",
  9501. "homepage": "https://symfony.com/contributors"
  9502. }
  9503. ],
  9504. "description": "Symfony Debug Component",
  9505. "homepage": "https://symfony.com",
  9506. "time": "2019-10-24T15:33:53+00:00"
  9507. },
  9508. {
  9509. "name": "symfony/dependency-injection",
  9510. "version": "v3.4.34",
  9511. "source": {
  9512. "type": "git",
  9513. "url": "https://github.com/symfony/dependency-injection.git",
  9514. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920"
  9515. },
  9516. "dist": {
  9517. "type": "zip",
  9518. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920",
  9519. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920",
  9520. "shasum": ""
  9521. },
  9522. "require": {
  9523. "php": "^5.5.9|>=7.0.8",
  9524. "psr/container": "^1.0"
  9525. },
  9526. "conflict": {
  9527. "symfony/config": "<3.3.7",
  9528. "symfony/finder": "<3.3",
  9529. "symfony/proxy-manager-bridge": "<3.4",
  9530. "symfony/yaml": "<3.4"
  9531. },
  9532. "provide": {
  9533. "psr/container-implementation": "1.0"
  9534. },
  9535. "require-dev": {
  9536. "symfony/config": "~3.3|~4.0",
  9537. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9538. "symfony/yaml": "~3.4|~4.0"
  9539. },
  9540. "suggest": {
  9541. "symfony/config": "",
  9542. "symfony/expression-language": "For using expressions in service container configuration",
  9543. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9544. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9545. "symfony/yaml": ""
  9546. },
  9547. "type": "library",
  9548. "extra": {
  9549. "branch-alias": {
  9550. "dev-master": "3.4-dev"
  9551. }
  9552. },
  9553. "autoload": {
  9554. "psr-4": {
  9555. "Symfony\\Component\\DependencyInjection\\": ""
  9556. },
  9557. "exclude-from-classmap": [
  9558. "/Tests/"
  9559. ]
  9560. },
  9561. "notification-url": "https://packagist.org/downloads/",
  9562. "license": [
  9563. "MIT"
  9564. ],
  9565. "authors": [
  9566. {
  9567. "name": "Fabien Potencier",
  9568. "email": "fabien@symfony.com"
  9569. },
  9570. {
  9571. "name": "Symfony Community",
  9572. "homepage": "https://symfony.com/contributors"
  9573. }
  9574. ],
  9575. "description": "Symfony DependencyInjection Component",
  9576. "homepage": "https://symfony.com",
  9577. "time": "2019-11-08T16:18:30+00:00"
  9578. },
  9579. {
  9580. "name": "symfony/dom-crawler",
  9581. "version": "v3.4.34",
  9582. "source": {
  9583. "type": "git",
  9584. "url": "https://github.com/symfony/dom-crawler.git",
  9585. "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3"
  9586. },
  9587. "dist": {
  9588. "type": "zip",
  9589. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3",
  9590. "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3",
  9591. "shasum": ""
  9592. },
  9593. "require": {
  9594. "php": "^5.5.9|>=7.0.8",
  9595. "symfony/polyfill-ctype": "~1.8",
  9596. "symfony/polyfill-mbstring": "~1.0"
  9597. },
  9598. "require-dev": {
  9599. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9600. },
  9601. "suggest": {
  9602. "symfony/css-selector": ""
  9603. },
  9604. "type": "library",
  9605. "extra": {
  9606. "branch-alias": {
  9607. "dev-master": "3.4-dev"
  9608. }
  9609. },
  9610. "autoload": {
  9611. "psr-4": {
  9612. "Symfony\\Component\\DomCrawler\\": ""
  9613. },
  9614. "exclude-from-classmap": [
  9615. "/Tests/"
  9616. ]
  9617. },
  9618. "notification-url": "https://packagist.org/downloads/",
  9619. "license": [
  9620. "MIT"
  9621. ],
  9622. "authors": [
  9623. {
  9624. "name": "Fabien Potencier",
  9625. "email": "fabien@symfony.com"
  9626. },
  9627. {
  9628. "name": "Symfony Community",
  9629. "homepage": "https://symfony.com/contributors"
  9630. }
  9631. ],
  9632. "description": "Symfony DomCrawler Component",
  9633. "homepage": "https://symfony.com",
  9634. "time": "2019-10-24T15:33:53+00:00"
  9635. },
  9636. {
  9637. "name": "symfony/event-dispatcher",
  9638. "version": "v3.4.34",
  9639. "source": {
  9640. "type": "git",
  9641. "url": "https://github.com/symfony/event-dispatcher.git",
  9642. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177"
  9643. },
  9644. "dist": {
  9645. "type": "zip",
  9646. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177",
  9647. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177",
  9648. "shasum": ""
  9649. },
  9650. "require": {
  9651. "php": "^5.5.9|>=7.0.8"
  9652. },
  9653. "conflict": {
  9654. "symfony/dependency-injection": "<3.3"
  9655. },
  9656. "require-dev": {
  9657. "psr/log": "~1.0",
  9658. "symfony/config": "~2.8|~3.0|~4.0",
  9659. "symfony/dependency-injection": "~3.3|~4.0",
  9660. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9661. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9662. },
  9663. "suggest": {
  9664. "symfony/dependency-injection": "",
  9665. "symfony/http-kernel": ""
  9666. },
  9667. "type": "library",
  9668. "extra": {
  9669. "branch-alias": {
  9670. "dev-master": "3.4-dev"
  9671. }
  9672. },
  9673. "autoload": {
  9674. "psr-4": {
  9675. "Symfony\\Component\\EventDispatcher\\": ""
  9676. },
  9677. "exclude-from-classmap": [
  9678. "/Tests/"
  9679. ]
  9680. },
  9681. "notification-url": "https://packagist.org/downloads/",
  9682. "license": [
  9683. "MIT"
  9684. ],
  9685. "authors": [
  9686. {
  9687. "name": "Fabien Potencier",
  9688. "email": "fabien@symfony.com"
  9689. },
  9690. {
  9691. "name": "Symfony Community",
  9692. "homepage": "https://symfony.com/contributors"
  9693. }
  9694. ],
  9695. "description": "Symfony EventDispatcher Component",
  9696. "homepage": "https://symfony.com",
  9697. "time": "2019-10-24T15:33:53+00:00"
  9698. },
  9699. {
  9700. "name": "symfony/filesystem",
  9701. "version": "v3.4.34",
  9702. "source": {
  9703. "type": "git",
  9704. "url": "https://github.com/symfony/filesystem.git",
  9705. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516"
  9706. },
  9707. "dist": {
  9708. "type": "zip",
  9709. "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9710. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9711. "shasum": ""
  9712. },
  9713. "require": {
  9714. "php": "^5.5.9|>=7.0.8",
  9715. "symfony/polyfill-ctype": "~1.8"
  9716. },
  9717. "type": "library",
  9718. "extra": {
  9719. "branch-alias": {
  9720. "dev-master": "3.4-dev"
  9721. }
  9722. },
  9723. "autoload": {
  9724. "psr-4": {
  9725. "Symfony\\Component\\Filesystem\\": ""
  9726. },
  9727. "exclude-from-classmap": [
  9728. "/Tests/"
  9729. ]
  9730. },
  9731. "notification-url": "https://packagist.org/downloads/",
  9732. "license": [
  9733. "MIT"
  9734. ],
  9735. "authors": [
  9736. {
  9737. "name": "Fabien Potencier",
  9738. "email": "fabien@symfony.com"
  9739. },
  9740. {
  9741. "name": "Symfony Community",
  9742. "homepage": "https://symfony.com/contributors"
  9743. }
  9744. ],
  9745. "description": "Symfony Filesystem Component",
  9746. "homepage": "https://symfony.com",
  9747. "time": "2019-08-20T13:31:17+00:00"
  9748. },
  9749. {
  9750. "name": "symfony/finder",
  9751. "version": "v3.4.34",
  9752. "source": {
  9753. "type": "git",
  9754. "url": "https://github.com/symfony/finder.git",
  9755. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8"
  9756. },
  9757. "dist": {
  9758. "type": "zip",
  9759. "url": "https://api.github.com/repos/symfony/finder/zipball/3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9760. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9761. "shasum": ""
  9762. },
  9763. "require": {
  9764. "php": "^5.5.9|>=7.0.8"
  9765. },
  9766. "type": "library",
  9767. "extra": {
  9768. "branch-alias": {
  9769. "dev-master": "3.4-dev"
  9770. }
  9771. },
  9772. "autoload": {
  9773. "psr-4": {
  9774. "Symfony\\Component\\Finder\\": ""
  9775. },
  9776. "exclude-from-classmap": [
  9777. "/Tests/"
  9778. ]
  9779. },
  9780. "notification-url": "https://packagist.org/downloads/",
  9781. "license": [
  9782. "MIT"
  9783. ],
  9784. "authors": [
  9785. {
  9786. "name": "Fabien Potencier",
  9787. "email": "fabien@symfony.com"
  9788. },
  9789. {
  9790. "name": "Symfony Community",
  9791. "homepage": "https://symfony.com/contributors"
  9792. }
  9793. ],
  9794. "description": "Symfony Finder Component",
  9795. "homepage": "https://symfony.com",
  9796. "time": "2019-10-30T12:43:22+00:00"
  9797. },
  9798. {
  9799. "name": "symfony/http-foundation",
  9800. "version": "v3.4.34",
  9801. "source": {
  9802. "type": "git",
  9803. "url": "https://github.com/symfony/http-foundation.git",
  9804. "reference": "a5d46a33e8649ba802cebe520d188b04385572a2"
  9805. },
  9806. "dist": {
  9807. "type": "zip",
  9808. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a5d46a33e8649ba802cebe520d188b04385572a2",
  9809. "reference": "a5d46a33e8649ba802cebe520d188b04385572a2",
  9810. "shasum": ""
  9811. },
  9812. "require": {
  9813. "php": "^5.5.9|>=7.0.8",
  9814. "symfony/polyfill-mbstring": "~1.1",
  9815. "symfony/polyfill-php70": "~1.6"
  9816. },
  9817. "require-dev": {
  9818. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9819. },
  9820. "type": "library",
  9821. "extra": {
  9822. "branch-alias": {
  9823. "dev-master": "3.4-dev"
  9824. }
  9825. },
  9826. "autoload": {
  9827. "psr-4": {
  9828. "Symfony\\Component\\HttpFoundation\\": ""
  9829. },
  9830. "exclude-from-classmap": [
  9831. "/Tests/"
  9832. ]
  9833. },
  9834. "notification-url": "https://packagist.org/downloads/",
  9835. "license": [
  9836. "MIT"
  9837. ],
  9838. "authors": [
  9839. {
  9840. "name": "Fabien Potencier",
  9841. "email": "fabien@symfony.com"
  9842. },
  9843. {
  9844. "name": "Symfony Community",
  9845. "homepage": "https://symfony.com/contributors"
  9846. }
  9847. ],
  9848. "description": "Symfony HttpFoundation Component",
  9849. "homepage": "https://symfony.com",
  9850. "time": "2019-11-03T02:12:45+00:00"
  9851. },
  9852. {
  9853. "name": "symfony/http-kernel",
  9854. "version": "v3.4.34",
  9855. "source": {
  9856. "type": "git",
  9857. "url": "https://github.com/symfony/http-kernel.git",
  9858. "reference": "6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2"
  9859. },
  9860. "dist": {
  9861. "type": "zip",
  9862. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2",
  9863. "reference": "6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2",
  9864. "shasum": ""
  9865. },
  9866. "require": {
  9867. "php": "^5.5.9|>=7.0.8",
  9868. "psr/log": "~1.0",
  9869. "symfony/debug": "^3.3.3|~4.0",
  9870. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9871. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9872. "symfony/polyfill-ctype": "~1.8"
  9873. },
  9874. "conflict": {
  9875. "symfony/config": "<2.8",
  9876. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9877. "symfony/var-dumper": "<3.3",
  9878. "twig/twig": "<1.34|<2.4,>=2"
  9879. },
  9880. "provide": {
  9881. "psr/log-implementation": "1.0"
  9882. },
  9883. "require-dev": {
  9884. "psr/cache": "~1.0",
  9885. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9886. "symfony/class-loader": "~2.8|~3.0",
  9887. "symfony/config": "~2.8|~3.0|~4.0",
  9888. "symfony/console": "~2.8|~3.0|~4.0",
  9889. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9890. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9891. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9892. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9893. "symfony/finder": "~2.8|~3.0|~4.0",
  9894. "symfony/process": "~2.8|~3.0|~4.0",
  9895. "symfony/routing": "~3.4|~4.0",
  9896. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  9897. "symfony/templating": "~2.8|~3.0|~4.0",
  9898. "symfony/translation": "~2.8|~3.0|~4.0",
  9899. "symfony/var-dumper": "~3.3|~4.0"
  9900. },
  9901. "suggest": {
  9902. "symfony/browser-kit": "",
  9903. "symfony/config": "",
  9904. "symfony/console": "",
  9905. "symfony/dependency-injection": "",
  9906. "symfony/finder": "",
  9907. "symfony/var-dumper": ""
  9908. },
  9909. "type": "library",
  9910. "extra": {
  9911. "branch-alias": {
  9912. "dev-master": "3.4-dev"
  9913. }
  9914. },
  9915. "autoload": {
  9916. "psr-4": {
  9917. "Symfony\\Component\\HttpKernel\\": ""
  9918. },
  9919. "exclude-from-classmap": [
  9920. "/Tests/"
  9921. ]
  9922. },
  9923. "notification-url": "https://packagist.org/downloads/",
  9924. "license": [
  9925. "MIT"
  9926. ],
  9927. "authors": [
  9928. {
  9929. "name": "Fabien Potencier",
  9930. "email": "fabien@symfony.com"
  9931. },
  9932. {
  9933. "name": "Symfony Community",
  9934. "homepage": "https://symfony.com/contributors"
  9935. }
  9936. ],
  9937. "description": "Symfony HttpKernel Component",
  9938. "homepage": "https://symfony.com",
  9939. "time": "2019-11-11T16:11:23+00:00"
  9940. },
  9941. {
  9942. "name": "symfony/phpunit-bridge",
  9943. "version": "v3.4.34",
  9944. "source": {
  9945. "type": "git",
  9946. "url": "https://github.com/symfony/phpunit-bridge.git",
  9947. "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7"
  9948. },
  9949. "dist": {
  9950. "type": "zip",
  9951. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7",
  9952. "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7",
  9953. "shasum": ""
  9954. },
  9955. "require": {
  9956. "php": ">=5.3.3"
  9957. },
  9958. "conflict": {
  9959. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9960. },
  9961. "suggest": {
  9962. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9963. },
  9964. "bin": [
  9965. "bin/simple-phpunit"
  9966. ],
  9967. "type": "symfony-bridge",
  9968. "extra": {
  9969. "branch-alias": {
  9970. "dev-master": "3.4-dev"
  9971. },
  9972. "thanks": {
  9973. "name": "phpunit/phpunit",
  9974. "url": "https://github.com/sebastianbergmann/phpunit"
  9975. }
  9976. },
  9977. "autoload": {
  9978. "files": [
  9979. "bootstrap.php"
  9980. ],
  9981. "psr-4": {
  9982. "Symfony\\Bridge\\PhpUnit\\": ""
  9983. },
  9984. "exclude-from-classmap": [
  9985. "/Tests/"
  9986. ]
  9987. },
  9988. "notification-url": "https://packagist.org/downloads/",
  9989. "license": [
  9990. "MIT"
  9991. ],
  9992. "authors": [
  9993. {
  9994. "name": "Nicolas Grekas",
  9995. "email": "p@tchwork.com"
  9996. },
  9997. {
  9998. "name": "Symfony Community",
  9999. "homepage": "https://symfony.com/contributors"
  10000. }
  10001. ],
  10002. "description": "Symfony PHPUnit Bridge",
  10003. "homepage": "https://symfony.com",
  10004. "time": "2019-09-30T20:33:19+00:00"
  10005. },
  10006. {
  10007. "name": "symfony/polyfill-ctype",
  10008. "version": "v1.12.0",
  10009. "source": {
  10010. "type": "git",
  10011. "url": "https://github.com/symfony/polyfill-ctype.git",
  10012. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  10013. },
  10014. "dist": {
  10015. "type": "zip",
  10016. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  10017. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  10018. "shasum": ""
  10019. },
  10020. "require": {
  10021. "php": ">=5.3.3"
  10022. },
  10023. "suggest": {
  10024. "ext-ctype": "For best performance"
  10025. },
  10026. "type": "library",
  10027. "extra": {
  10028. "branch-alias": {
  10029. "dev-master": "1.12-dev"
  10030. }
  10031. },
  10032. "autoload": {
  10033. "psr-4": {
  10034. "Symfony\\Polyfill\\Ctype\\": ""
  10035. },
  10036. "files": [
  10037. "bootstrap.php"
  10038. ]
  10039. },
  10040. "notification-url": "https://packagist.org/downloads/",
  10041. "license": [
  10042. "MIT"
  10043. ],
  10044. "authors": [
  10045. {
  10046. "name": "Gert de Pagter",
  10047. "email": "BackEndTea@gmail.com"
  10048. },
  10049. {
  10050. "name": "Symfony Community",
  10051. "homepage": "https://symfony.com/contributors"
  10052. }
  10053. ],
  10054. "description": "Symfony polyfill for ctype functions",
  10055. "homepage": "https://symfony.com",
  10056. "keywords": [
  10057. "compatibility",
  10058. "ctype",
  10059. "polyfill",
  10060. "portable"
  10061. ],
  10062. "time": "2019-08-06T08:03:45+00:00"
  10063. },
  10064. {
  10065. "name": "symfony/polyfill-iconv",
  10066. "version": "v1.12.0",
  10067. "source": {
  10068. "type": "git",
  10069. "url": "https://github.com/symfony/polyfill-iconv.git",
  10070. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  10071. },
  10072. "dist": {
  10073. "type": "zip",
  10074. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  10075. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  10076. "shasum": ""
  10077. },
  10078. "require": {
  10079. "php": ">=5.3.3"
  10080. },
  10081. "suggest": {
  10082. "ext-iconv": "For best performance"
  10083. },
  10084. "type": "library",
  10085. "extra": {
  10086. "branch-alias": {
  10087. "dev-master": "1.12-dev"
  10088. }
  10089. },
  10090. "autoload": {
  10091. "psr-4": {
  10092. "Symfony\\Polyfill\\Iconv\\": ""
  10093. },
  10094. "files": [
  10095. "bootstrap.php"
  10096. ]
  10097. },
  10098. "notification-url": "https://packagist.org/downloads/",
  10099. "license": [
  10100. "MIT"
  10101. ],
  10102. "authors": [
  10103. {
  10104. "name": "Nicolas Grekas",
  10105. "email": "p@tchwork.com"
  10106. },
  10107. {
  10108. "name": "Symfony Community",
  10109. "homepage": "https://symfony.com/contributors"
  10110. }
  10111. ],
  10112. "description": "Symfony polyfill for the Iconv extension",
  10113. "homepage": "https://symfony.com",
  10114. "keywords": [
  10115. "compatibility",
  10116. "iconv",
  10117. "polyfill",
  10118. "portable",
  10119. "shim"
  10120. ],
  10121. "time": "2019-08-06T08:03:45+00:00"
  10122. },
  10123. {
  10124. "name": "symfony/polyfill-mbstring",
  10125. "version": "v1.12.0",
  10126. "source": {
  10127. "type": "git",
  10128. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10129. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  10130. },
  10131. "dist": {
  10132. "type": "zip",
  10133. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  10134. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  10135. "shasum": ""
  10136. },
  10137. "require": {
  10138. "php": ">=5.3.3"
  10139. },
  10140. "suggest": {
  10141. "ext-mbstring": "For best performance"
  10142. },
  10143. "type": "library",
  10144. "extra": {
  10145. "branch-alias": {
  10146. "dev-master": "1.12-dev"
  10147. }
  10148. },
  10149. "autoload": {
  10150. "psr-4": {
  10151. "Symfony\\Polyfill\\Mbstring\\": ""
  10152. },
  10153. "files": [
  10154. "bootstrap.php"
  10155. ]
  10156. },
  10157. "notification-url": "https://packagist.org/downloads/",
  10158. "license": [
  10159. "MIT"
  10160. ],
  10161. "authors": [
  10162. {
  10163. "name": "Nicolas Grekas",
  10164. "email": "p@tchwork.com"
  10165. },
  10166. {
  10167. "name": "Symfony Community",
  10168. "homepage": "https://symfony.com/contributors"
  10169. }
  10170. ],
  10171. "description": "Symfony polyfill for the Mbstring extension",
  10172. "homepage": "https://symfony.com",
  10173. "keywords": [
  10174. "compatibility",
  10175. "mbstring",
  10176. "polyfill",
  10177. "portable",
  10178. "shim"
  10179. ],
  10180. "time": "2019-08-06T08:03:45+00:00"
  10181. },
  10182. {
  10183. "name": "symfony/polyfill-php70",
  10184. "version": "v1.12.0",
  10185. "source": {
  10186. "type": "git",
  10187. "url": "https://github.com/symfony/polyfill-php70.git",
  10188. "reference": "54b4c428a0054e254223797d2713c31e08610831"
  10189. },
  10190. "dist": {
  10191. "type": "zip",
  10192. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831",
  10193. "reference": "54b4c428a0054e254223797d2713c31e08610831",
  10194. "shasum": ""
  10195. },
  10196. "require": {
  10197. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  10198. "php": ">=5.3.3"
  10199. },
  10200. "type": "library",
  10201. "extra": {
  10202. "branch-alias": {
  10203. "dev-master": "1.12-dev"
  10204. }
  10205. },
  10206. "autoload": {
  10207. "psr-4": {
  10208. "Symfony\\Polyfill\\Php70\\": ""
  10209. },
  10210. "files": [
  10211. "bootstrap.php"
  10212. ],
  10213. "classmap": [
  10214. "Resources/stubs"
  10215. ]
  10216. },
  10217. "notification-url": "https://packagist.org/downloads/",
  10218. "license": [
  10219. "MIT"
  10220. ],
  10221. "authors": [
  10222. {
  10223. "name": "Nicolas Grekas",
  10224. "email": "p@tchwork.com"
  10225. },
  10226. {
  10227. "name": "Symfony Community",
  10228. "homepage": "https://symfony.com/contributors"
  10229. }
  10230. ],
  10231. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  10232. "homepage": "https://symfony.com",
  10233. "keywords": [
  10234. "compatibility",
  10235. "polyfill",
  10236. "portable",
  10237. "shim"
  10238. ],
  10239. "time": "2019-08-06T08:03:45+00:00"
  10240. },
  10241. {
  10242. "name": "symfony/process",
  10243. "version": "v3.4.34",
  10244. "source": {
  10245. "type": "git",
  10246. "url": "https://github.com/symfony/process.git",
  10247. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e"
  10248. },
  10249. "dist": {
  10250. "type": "zip",
  10251. "url": "https://api.github.com/repos/symfony/process/zipball/c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  10252. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  10253. "shasum": ""
  10254. },
  10255. "require": {
  10256. "php": "^5.5.9|>=7.0.8"
  10257. },
  10258. "type": "library",
  10259. "extra": {
  10260. "branch-alias": {
  10261. "dev-master": "3.4-dev"
  10262. }
  10263. },
  10264. "autoload": {
  10265. "psr-4": {
  10266. "Symfony\\Component\\Process\\": ""
  10267. },
  10268. "exclude-from-classmap": [
  10269. "/Tests/"
  10270. ]
  10271. },
  10272. "notification-url": "https://packagist.org/downloads/",
  10273. "license": [
  10274. "MIT"
  10275. ],
  10276. "authors": [
  10277. {
  10278. "name": "Fabien Potencier",
  10279. "email": "fabien@symfony.com"
  10280. },
  10281. {
  10282. "name": "Symfony Community",
  10283. "homepage": "https://symfony.com/contributors"
  10284. }
  10285. ],
  10286. "description": "Symfony Process Component",
  10287. "homepage": "https://symfony.com",
  10288. "time": "2019-10-24T15:33:53+00:00"
  10289. },
  10290. {
  10291. "name": "symfony/psr-http-message-bridge",
  10292. "version": "v1.1.2",
  10293. "source": {
  10294. "type": "git",
  10295. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  10296. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  10297. },
  10298. "dist": {
  10299. "type": "zip",
  10300. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  10301. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  10302. "shasum": ""
  10303. },
  10304. "require": {
  10305. "php": "^5.3.3 || ^7.0",
  10306. "psr/http-message": "^1.0",
  10307. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  10308. },
  10309. "require-dev": {
  10310. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  10311. },
  10312. "suggest": {
  10313. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  10314. },
  10315. "type": "symfony-bridge",
  10316. "extra": {
  10317. "branch-alias": {
  10318. "dev-master": "1.1-dev"
  10319. }
  10320. },
  10321. "autoload": {
  10322. "psr-4": {
  10323. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10324. },
  10325. "exclude-from-classmap": [
  10326. "/Tests/"
  10327. ]
  10328. },
  10329. "notification-url": "https://packagist.org/downloads/",
  10330. "license": [
  10331. "MIT"
  10332. ],
  10333. "authors": [
  10334. {
  10335. "name": "Symfony Community",
  10336. "homepage": "http://symfony.com/contributors"
  10337. },
  10338. {
  10339. "name": "Fabien Potencier",
  10340. "email": "fabien@symfony.com"
  10341. }
  10342. ],
  10343. "description": "PSR HTTP message bridge",
  10344. "homepage": "http://symfony.com",
  10345. "keywords": [
  10346. "http",
  10347. "http-message",
  10348. "psr-17",
  10349. "psr-7"
  10350. ],
  10351. "time": "2019-04-03T17:09:40+00:00"
  10352. },
  10353. {
  10354. "name": "symfony/routing",
  10355. "version": "v3.4.34",
  10356. "source": {
  10357. "type": "git",
  10358. "url": "https://github.com/symfony/routing.git",
  10359. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5"
  10360. },
  10361. "dist": {
  10362. "type": "zip",
  10363. "url": "https://api.github.com/repos/symfony/routing/zipball/afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  10364. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  10365. "shasum": ""
  10366. },
  10367. "require": {
  10368. "php": "^5.5.9|>=7.0.8"
  10369. },
  10370. "conflict": {
  10371. "symfony/config": "<3.3.1",
  10372. "symfony/dependency-injection": "<3.3",
  10373. "symfony/yaml": "<3.4"
  10374. },
  10375. "require-dev": {
  10376. "doctrine/annotations": "~1.0",
  10377. "psr/log": "~1.0",
  10378. "symfony/config": "^3.3.1|~4.0",
  10379. "symfony/dependency-injection": "~3.3|~4.0",
  10380. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10381. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10382. "symfony/yaml": "~3.4|~4.0"
  10383. },
  10384. "suggest": {
  10385. "doctrine/annotations": "For using the annotation loader",
  10386. "symfony/config": "For using the all-in-one router or any loader",
  10387. "symfony/expression-language": "For using expression matching",
  10388. "symfony/http-foundation": "For using a Symfony Request object",
  10389. "symfony/yaml": "For using the YAML loader"
  10390. },
  10391. "type": "library",
  10392. "extra": {
  10393. "branch-alias": {
  10394. "dev-master": "3.4-dev"
  10395. }
  10396. },
  10397. "autoload": {
  10398. "psr-4": {
  10399. "Symfony\\Component\\Routing\\": ""
  10400. },
  10401. "exclude-from-classmap": [
  10402. "/Tests/"
  10403. ]
  10404. },
  10405. "notification-url": "https://packagist.org/downloads/",
  10406. "license": [
  10407. "MIT"
  10408. ],
  10409. "authors": [
  10410. {
  10411. "name": "Fabien Potencier",
  10412. "email": "fabien@symfony.com"
  10413. },
  10414. {
  10415. "name": "Symfony Community",
  10416. "homepage": "https://symfony.com/contributors"
  10417. }
  10418. ],
  10419. "description": "Symfony Routing Component",
  10420. "homepage": "https://symfony.com",
  10421. "keywords": [
  10422. "router",
  10423. "routing",
  10424. "uri",
  10425. "url"
  10426. ],
  10427. "time": "2019-11-08T17:25:00+00:00"
  10428. },
  10429. {
  10430. "name": "symfony/serializer",
  10431. "version": "v3.4.34",
  10432. "source": {
  10433. "type": "git",
  10434. "url": "https://github.com/symfony/serializer.git",
  10435. "reference": "a9b988899604cf3ecb144834ffbd11134c6f7773"
  10436. },
  10437. "dist": {
  10438. "type": "zip",
  10439. "url": "https://api.github.com/repos/symfony/serializer/zipball/a9b988899604cf3ecb144834ffbd11134c6f7773",
  10440. "reference": "a9b988899604cf3ecb144834ffbd11134c6f7773",
  10441. "shasum": ""
  10442. },
  10443. "require": {
  10444. "php": "^5.5.9|>=7.0.8",
  10445. "symfony/polyfill-ctype": "~1.8"
  10446. },
  10447. "conflict": {
  10448. "phpdocumentor/type-resolver": "<0.2.1",
  10449. "symfony/dependency-injection": "<3.2",
  10450. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10451. "symfony/property-info": "<3.1",
  10452. "symfony/yaml": "<3.4"
  10453. },
  10454. "require-dev": {
  10455. "doctrine/annotations": "~1.0",
  10456. "doctrine/cache": "~1.0",
  10457. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  10458. "symfony/cache": "~3.1|~4.0",
  10459. "symfony/config": "~2.8|~3.0|~4.0",
  10460. "symfony/dependency-injection": "~3.2|~4.0",
  10461. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10462. "symfony/property-access": "~2.8|~3.0|~4.0",
  10463. "symfony/property-info": "^3.4.13|~4.0",
  10464. "symfony/yaml": "~3.4|~4.0"
  10465. },
  10466. "suggest": {
  10467. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10468. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10469. "psr/cache-implementation": "For using the metadata cache.",
  10470. "symfony/config": "For using the XML mapping loader.",
  10471. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  10472. "symfony/property-access": "For using the ObjectNormalizer.",
  10473. "symfony/property-info": "To deserialize relations.",
  10474. "symfony/yaml": "For using the default YAML mapping loader."
  10475. },
  10476. "type": "library",
  10477. "extra": {
  10478. "branch-alias": {
  10479. "dev-master": "3.4-dev"
  10480. }
  10481. },
  10482. "autoload": {
  10483. "psr-4": {
  10484. "Symfony\\Component\\Serializer\\": ""
  10485. },
  10486. "exclude-from-classmap": [
  10487. "/Tests/"
  10488. ]
  10489. },
  10490. "notification-url": "https://packagist.org/downloads/",
  10491. "license": [
  10492. "MIT"
  10493. ],
  10494. "authors": [
  10495. {
  10496. "name": "Fabien Potencier",
  10497. "email": "fabien@symfony.com"
  10498. },
  10499. {
  10500. "name": "Symfony Community",
  10501. "homepage": "https://symfony.com/contributors"
  10502. }
  10503. ],
  10504. "description": "Symfony Serializer Component",
  10505. "homepage": "https://symfony.com",
  10506. "time": "2019-10-29T11:09:57+00:00"
  10507. },
  10508. {
  10509. "name": "symfony/translation",
  10510. "version": "v3.4.34",
  10511. "source": {
  10512. "type": "git",
  10513. "url": "https://github.com/symfony/translation.git",
  10514. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772"
  10515. },
  10516. "dist": {
  10517. "type": "zip",
  10518. "url": "https://api.github.com/repos/symfony/translation/zipball/2031c895bc97ac1787d418d90bd1ed7d299f2772",
  10519. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772",
  10520. "shasum": ""
  10521. },
  10522. "require": {
  10523. "php": "^5.5.9|>=7.0.8",
  10524. "symfony/polyfill-mbstring": "~1.0"
  10525. },
  10526. "conflict": {
  10527. "symfony/config": "<2.8",
  10528. "symfony/dependency-injection": "<3.4",
  10529. "symfony/yaml": "<3.4"
  10530. },
  10531. "require-dev": {
  10532. "psr/log": "~1.0",
  10533. "symfony/config": "~2.8|~3.0|~4.0",
  10534. "symfony/dependency-injection": "~3.4|~4.0",
  10535. "symfony/finder": "~2.8|~3.0|~4.0",
  10536. "symfony/http-kernel": "~3.4|~4.0",
  10537. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10538. "symfony/var-dumper": "~3.4|~4.0",
  10539. "symfony/yaml": "~3.4|~4.0"
  10540. },
  10541. "suggest": {
  10542. "psr/log-implementation": "To use logging capability in translator",
  10543. "symfony/config": "",
  10544. "symfony/yaml": ""
  10545. },
  10546. "type": "library",
  10547. "extra": {
  10548. "branch-alias": {
  10549. "dev-master": "3.4-dev"
  10550. }
  10551. },
  10552. "autoload": {
  10553. "psr-4": {
  10554. "Symfony\\Component\\Translation\\": ""
  10555. },
  10556. "exclude-from-classmap": [
  10557. "/Tests/"
  10558. ]
  10559. },
  10560. "notification-url": "https://packagist.org/downloads/",
  10561. "license": [
  10562. "MIT"
  10563. ],
  10564. "authors": [
  10565. {
  10566. "name": "Fabien Potencier",
  10567. "email": "fabien@symfony.com"
  10568. },
  10569. {
  10570. "name": "Symfony Community",
  10571. "homepage": "https://symfony.com/contributors"
  10572. }
  10573. ],
  10574. "description": "Symfony Translation Component",
  10575. "homepage": "https://symfony.com",
  10576. "time": "2019-10-30T12:43:22+00:00"
  10577. },
  10578. {
  10579. "name": "symfony/validator",
  10580. "version": "v3.4.34",
  10581. "source": {
  10582. "type": "git",
  10583. "url": "https://github.com/symfony/validator.git",
  10584. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80"
  10585. },
  10586. "dist": {
  10587. "type": "zip",
  10588. "url": "https://api.github.com/repos/symfony/validator/zipball/b11f45742c5c9a228cedc46b70c6317780a1ac80",
  10589. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80",
  10590. "shasum": ""
  10591. },
  10592. "require": {
  10593. "php": "^5.5.9|>=7.0.8",
  10594. "symfony/polyfill-ctype": "~1.8",
  10595. "symfony/polyfill-mbstring": "~1.0",
  10596. "symfony/translation": "~2.8|~3.0|~4.0"
  10597. },
  10598. "conflict": {
  10599. "doctrine/lexer": "<1.0.2",
  10600. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10601. "symfony/dependency-injection": "<3.3",
  10602. "symfony/http-kernel": "<3.3.5",
  10603. "symfony/yaml": "<3.4"
  10604. },
  10605. "require-dev": {
  10606. "doctrine/annotations": "~1.7",
  10607. "doctrine/cache": "~1.0",
  10608. "egulias/email-validator": "^2.1.10",
  10609. "symfony/cache": "~3.1|~4.0",
  10610. "symfony/config": "~2.8|~3.0|~4.0",
  10611. "symfony/dependency-injection": "~3.3|~4.0",
  10612. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10613. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10614. "symfony/http-kernel": "^3.3.5|~4.0",
  10615. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10616. "symfony/property-access": "~2.8|~3.0|~4.0",
  10617. "symfony/var-dumper": "~3.3|~4.0",
  10618. "symfony/yaml": "~3.4|~4.0"
  10619. },
  10620. "suggest": {
  10621. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10622. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10623. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10624. "psr/cache-implementation": "For using the metadata cache.",
  10625. "symfony/config": "",
  10626. "symfony/expression-language": "For using the Expression validator",
  10627. "symfony/http-foundation": "",
  10628. "symfony/intl": "",
  10629. "symfony/property-access": "For accessing properties within comparison constraints",
  10630. "symfony/yaml": ""
  10631. },
  10632. "type": "library",
  10633. "extra": {
  10634. "branch-alias": {
  10635. "dev-master": "3.4-dev"
  10636. }
  10637. },
  10638. "autoload": {
  10639. "psr-4": {
  10640. "Symfony\\Component\\Validator\\": ""
  10641. },
  10642. "exclude-from-classmap": [
  10643. "/Tests/"
  10644. ]
  10645. },
  10646. "notification-url": "https://packagist.org/downloads/",
  10647. "license": [
  10648. "MIT"
  10649. ],
  10650. "authors": [
  10651. {
  10652. "name": "Fabien Potencier",
  10653. "email": "fabien@symfony.com"
  10654. },
  10655. {
  10656. "name": "Symfony Community",
  10657. "homepage": "https://symfony.com/contributors"
  10658. }
  10659. ],
  10660. "description": "Symfony Validator Component",
  10661. "homepage": "https://symfony.com",
  10662. "time": "2019-11-05T22:03:38+00:00"
  10663. },
  10664. {
  10665. "name": "symfony/var-dumper",
  10666. "version": "v3.4.34",
  10667. "source": {
  10668. "type": "git",
  10669. "url": "https://github.com/symfony/var-dumper.git",
  10670. "reference": "569e261461600810845a8305ca3f64abd3e712c0"
  10671. },
  10672. "dist": {
  10673. "type": "zip",
  10674. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/569e261461600810845a8305ca3f64abd3e712c0",
  10675. "reference": "569e261461600810845a8305ca3f64abd3e712c0",
  10676. "shasum": ""
  10677. },
  10678. "require": {
  10679. "php": "^5.5.9|>=7.0.8",
  10680. "symfony/polyfill-mbstring": "~1.0"
  10681. },
  10682. "conflict": {
  10683. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10684. },
  10685. "require-dev": {
  10686. "ext-iconv": "*",
  10687. "twig/twig": "~1.34|~2.4"
  10688. },
  10689. "suggest": {
  10690. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10691. "ext-intl": "To show region name in time zone dump",
  10692. "ext-symfony_debug": ""
  10693. },
  10694. "type": "library",
  10695. "extra": {
  10696. "branch-alias": {
  10697. "dev-master": "3.4-dev"
  10698. }
  10699. },
  10700. "autoload": {
  10701. "files": [
  10702. "Resources/functions/dump.php"
  10703. ],
  10704. "psr-4": {
  10705. "Symfony\\Component\\VarDumper\\": ""
  10706. },
  10707. "exclude-from-classmap": [
  10708. "/Tests/"
  10709. ]
  10710. },
  10711. "notification-url": "https://packagist.org/downloads/",
  10712. "license": [
  10713. "MIT"
  10714. ],
  10715. "authors": [
  10716. {
  10717. "name": "Nicolas Grekas",
  10718. "email": "p@tchwork.com"
  10719. },
  10720. {
  10721. "name": "Symfony Community",
  10722. "homepage": "https://symfony.com/contributors"
  10723. }
  10724. ],
  10725. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10726. "homepage": "https://symfony.com",
  10727. "keywords": [
  10728. "debug",
  10729. "dump"
  10730. ],
  10731. "time": "2019-10-10T11:03:19+00:00"
  10732. },
  10733. {
  10734. "name": "symfony/yaml",
  10735. "version": "v3.4.34",
  10736. "source": {
  10737. "type": "git",
  10738. "url": "https://github.com/symfony/yaml.git",
  10739. "reference": "dab657db15207879217fc81df4f875947bf68804"
  10740. },
  10741. "dist": {
  10742. "type": "zip",
  10743. "url": "https://api.github.com/repos/symfony/yaml/zipball/dab657db15207879217fc81df4f875947bf68804",
  10744. "reference": "dab657db15207879217fc81df4f875947bf68804",
  10745. "shasum": ""
  10746. },
  10747. "require": {
  10748. "php": "^5.5.9|>=7.0.8",
  10749. "symfony/polyfill-ctype": "~1.8"
  10750. },
  10751. "conflict": {
  10752. "symfony/console": "<3.4"
  10753. },
  10754. "require-dev": {
  10755. "symfony/console": "~3.4|~4.0"
  10756. },
  10757. "suggest": {
  10758. "symfony/console": "For validating YAML files using the lint command"
  10759. },
  10760. "type": "library",
  10761. "extra": {
  10762. "branch-alias": {
  10763. "dev-master": "3.4-dev"
  10764. }
  10765. },
  10766. "autoload": {
  10767. "psr-4": {
  10768. "Symfony\\Component\\Yaml\\": ""
  10769. },
  10770. "exclude-from-classmap": [
  10771. "/Tests/"
  10772. ]
  10773. },
  10774. "notification-url": "https://packagist.org/downloads/",
  10775. "license": [
  10776. "MIT"
  10777. ],
  10778. "authors": [
  10779. {
  10780. "name": "Fabien Potencier",
  10781. "email": "fabien@symfony.com"
  10782. },
  10783. {
  10784. "name": "Symfony Community",
  10785. "homepage": "https://symfony.com/contributors"
  10786. }
  10787. ],
  10788. "description": "Symfony Yaml Component",
  10789. "homepage": "https://symfony.com",
  10790. "time": "2019-10-24T15:33:53+00:00"
  10791. },
  10792. {
  10793. "name": "theseer/tokenizer",
  10794. "version": "1.1.3",
  10795. "source": {
  10796. "type": "git",
  10797. "url": "https://github.com/theseer/tokenizer.git",
  10798. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  10799. },
  10800. "dist": {
  10801. "type": "zip",
  10802. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10803. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10804. "shasum": ""
  10805. },
  10806. "require": {
  10807. "ext-dom": "*",
  10808. "ext-tokenizer": "*",
  10809. "ext-xmlwriter": "*",
  10810. "php": "^7.0"
  10811. },
  10812. "type": "library",
  10813. "autoload": {
  10814. "classmap": [
  10815. "src/"
  10816. ]
  10817. },
  10818. "notification-url": "https://packagist.org/downloads/",
  10819. "license": [
  10820. "BSD-3-Clause"
  10821. ],
  10822. "authors": [
  10823. {
  10824. "name": "Arne Blankerts",
  10825. "email": "arne@blankerts.de",
  10826. "role": "Developer"
  10827. }
  10828. ],
  10829. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10830. "time": "2019-06-13T22:48:21+00:00"
  10831. },
  10832. {
  10833. "name": "twig/twig",
  10834. "version": "v1.42.4",
  10835. "source": {
  10836. "type": "git",
  10837. "url": "https://github.com/twigphp/Twig.git",
  10838. "reference": "e587180584c3d2d6cb864a0454e777bb6dcb6152"
  10839. },
  10840. "dist": {
  10841. "type": "zip",
  10842. "url": "https://api.github.com/repos/twigphp/Twig/zipball/e587180584c3d2d6cb864a0454e777bb6dcb6152",
  10843. "reference": "e587180584c3d2d6cb864a0454e777bb6dcb6152",
  10844. "shasum": ""
  10845. },
  10846. "require": {
  10847. "php": ">=5.5.0",
  10848. "symfony/polyfill-ctype": "^1.8"
  10849. },
  10850. "require-dev": {
  10851. "psr/container": "^1.0",
  10852. "symfony/debug": "^3.4|^4.2",
  10853. "symfony/phpunit-bridge": "^4.4@dev|^5.0"
  10854. },
  10855. "type": "library",
  10856. "extra": {
  10857. "branch-alias": {
  10858. "dev-master": "1.42-dev"
  10859. }
  10860. },
  10861. "autoload": {
  10862. "psr-0": {
  10863. "Twig_": "lib/"
  10864. },
  10865. "psr-4": {
  10866. "Twig\\": "src/"
  10867. }
  10868. },
  10869. "notification-url": "https://packagist.org/downloads/",
  10870. "license": [
  10871. "BSD-3-Clause"
  10872. ],
  10873. "authors": [
  10874. {
  10875. "name": "Fabien Potencier",
  10876. "email": "fabien@symfony.com",
  10877. "homepage": "http://fabien.potencier.org",
  10878. "role": "Lead Developer"
  10879. },
  10880. {
  10881. "name": "Twig Team",
  10882. "homepage": "https://twig.symfony.com/contributors",
  10883. "role": "Contributors"
  10884. },
  10885. {
  10886. "name": "Armin Ronacher",
  10887. "email": "armin.ronacher@active-4.com",
  10888. "role": "Project Founder"
  10889. }
  10890. ],
  10891. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10892. "homepage": "https://twig.symfony.com",
  10893. "keywords": [
  10894. "templating"
  10895. ],
  10896. "time": "2019-11-11T16:49:32+00:00"
  10897. },
  10898. {
  10899. "name": "typo3/phar-stream-wrapper",
  10900. "version": "v2.1.3",
  10901. "source": {
  10902. "type": "git",
  10903. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10904. "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb"
  10905. },
  10906. "dist": {
  10907. "type": "zip",
  10908. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e8a656d72028b97ab9f61ed993734f3cded02eeb",
  10909. "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb",
  10910. "shasum": ""
  10911. },
  10912. "require": {
  10913. "brumann/polyfill-unserialize": "^1.0",
  10914. "ext-json": "*",
  10915. "php": "^5.3.3|^7.0"
  10916. },
  10917. "require-dev": {
  10918. "ext-xdebug": "*",
  10919. "phpunit/phpunit": "^4.8.36"
  10920. },
  10921. "suggest": {
  10922. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10923. },
  10924. "type": "library",
  10925. "autoload": {
  10926. "psr-4": {
  10927. "TYPO3\\PharStreamWrapper\\": "src/"
  10928. }
  10929. },
  10930. "notification-url": "https://packagist.org/downloads/",
  10931. "license": [
  10932. "MIT"
  10933. ],
  10934. "description": "Interceptors for PHP's native phar:// stream handling",
  10935. "homepage": "https://typo3.org/",
  10936. "keywords": [
  10937. "phar",
  10938. "php",
  10939. "security",
  10940. "stream-wrapper"
  10941. ],
  10942. "time": "2019-10-18T11:59:10+00:00"
  10943. },
  10944. {
  10945. "name": "vlucas/phpdotenv",
  10946. "version": "v2.6.1",
  10947. "source": {
  10948. "type": "git",
  10949. "url": "https://github.com/vlucas/phpdotenv.git",
  10950. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  10951. },
  10952. "dist": {
  10953. "type": "zip",
  10954. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10955. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10956. "shasum": ""
  10957. },
  10958. "require": {
  10959. "php": ">=5.3.9",
  10960. "symfony/polyfill-ctype": "^1.9"
  10961. },
  10962. "require-dev": {
  10963. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10964. },
  10965. "type": "library",
  10966. "extra": {
  10967. "branch-alias": {
  10968. "dev-master": "2.6-dev"
  10969. }
  10970. },
  10971. "autoload": {
  10972. "psr-4": {
  10973. "Dotenv\\": "src/"
  10974. }
  10975. },
  10976. "notification-url": "https://packagist.org/downloads/",
  10977. "license": [
  10978. "BSD-3-Clause"
  10979. ],
  10980. "authors": [
  10981. {
  10982. "name": "Vance Lucas",
  10983. "email": "vance@vancelucas.com",
  10984. "homepage": "http://www.vancelucas.com"
  10985. }
  10986. ],
  10987. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10988. "keywords": [
  10989. "dotenv",
  10990. "env",
  10991. "environment"
  10992. ],
  10993. "time": "2019-01-29T11:11:52+00:00"
  10994. },
  10995. {
  10996. "name": "webflo/drupal-core-require-dev",
  10997. "version": "8.7.9",
  10998. "source": {
  10999. "type": "git",
  11000. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  11001. "reference": "712de55c6f8220cd1cabb6cf88df1e40595b187e"
  11002. },
  11003. "dist": {
  11004. "type": "zip",
  11005. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/712de55c6f8220cd1cabb6cf88df1e40595b187e",
  11006. "reference": "712de55c6f8220cd1cabb6cf88df1e40595b187e",
  11007. "shasum": ""
  11008. },
  11009. "require": {
  11010. "behat/mink": "1.7.x-dev",
  11011. "behat/mink-goutte-driver": "^1.2",
  11012. "behat/mink-selenium2-driver": "1.3.x-dev",
  11013. "drupal/coder": "^8.3.1",
  11014. "drupal/core": "8.7.9",
  11015. "jcalderonzumba/gastonjs": "^1.0.2",
  11016. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  11017. "justinrainbow/json-schema": "^5.2",
  11018. "mikey179/vfsstream": "^1.2",
  11019. "phpspec/prophecy": "^1.7",
  11020. "phpunit/phpunit": "^4.8.35 || ^6.5",
  11021. "symfony/css-selector": "^3.4.0",
  11022. "symfony/debug": "^3.4.0",
  11023. "symfony/phpunit-bridge": "^3.4.3"
  11024. },
  11025. "type": "metapackage",
  11026. "notification-url": "https://packagist.org/downloads/",
  11027. "license": [
  11028. "GPL-2.0-or-later"
  11029. ],
  11030. "description": "require-dev dependencies from drupal/core",
  11031. "time": "2019-11-06T18:31:43+00:00"
  11032. },
  11033. {
  11034. "name": "webflo/drupal-core-strict",
  11035. "version": "8.0.0-beta15",
  11036. "source": {
  11037. "type": "git",
  11038. "url": "https://github.com/webflo/drupal-core-strict.git",
  11039. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  11040. },
  11041. "dist": {
  11042. "type": "zip",
  11043. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  11044. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  11045. "shasum": ""
  11046. },
  11047. "type": "metapackage",
  11048. "notification-url": "https://packagist.org/downloads/",
  11049. "license": [
  11050. "GPL-2.0-or-later"
  11051. ],
  11052. "description": "Locked core dependencies",
  11053. "time": "2018-01-30T18:48:19+00:00"
  11054. },
  11055. {
  11056. "name": "webflo/drupal-finder",
  11057. "version": "1.2.0",
  11058. "source": {
  11059. "type": "git",
  11060. "url": "https://github.com/webflo/drupal-finder.git",
  11061. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  11062. },
  11063. "dist": {
  11064. "type": "zip",
  11065. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11066. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11067. "shasum": ""
  11068. },
  11069. "require": {
  11070. "ext-json": "*"
  11071. },
  11072. "require-dev": {
  11073. "mikey179/vfsstream": "^1.6",
  11074. "phpunit/phpunit": "^4.8"
  11075. },
  11076. "type": "library",
  11077. "autoload": {
  11078. "classmap": [
  11079. "src/DrupalFinder.php"
  11080. ]
  11081. },
  11082. "notification-url": "https://packagist.org/downloads/",
  11083. "license": [
  11084. "GPL-2.0+"
  11085. ],
  11086. "authors": [
  11087. {
  11088. "name": "Florian Weber",
  11089. "email": "florian@webflo.org"
  11090. }
  11091. ],
  11092. "description": "Helper class to locate a Drupal installation from a given path.",
  11093. "time": "2019-08-02T08:06:18+00:00"
  11094. },
  11095. {
  11096. "name": "webmozart/assert",
  11097. "version": "1.5.0",
  11098. "source": {
  11099. "type": "git",
  11100. "url": "https://github.com/webmozart/assert.git",
  11101. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  11102. },
  11103. "dist": {
  11104. "type": "zip",
  11105. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  11106. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  11107. "shasum": ""
  11108. },
  11109. "require": {
  11110. "php": "^5.3.3 || ^7.0",
  11111. "symfony/polyfill-ctype": "^1.8"
  11112. },
  11113. "require-dev": {
  11114. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11115. },
  11116. "type": "library",
  11117. "extra": {
  11118. "branch-alias": {
  11119. "dev-master": "1.3-dev"
  11120. }
  11121. },
  11122. "autoload": {
  11123. "psr-4": {
  11124. "Webmozart\\Assert\\": "src/"
  11125. }
  11126. },
  11127. "notification-url": "https://packagist.org/downloads/",
  11128. "license": [
  11129. "MIT"
  11130. ],
  11131. "authors": [
  11132. {
  11133. "name": "Bernhard Schussek",
  11134. "email": "bschussek@gmail.com"
  11135. }
  11136. ],
  11137. "description": "Assertions to validate method input/output with nice error messages.",
  11138. "keywords": [
  11139. "assert",
  11140. "check",
  11141. "validate"
  11142. ],
  11143. "time": "2019-08-24T08:43:50+00:00"
  11144. },
  11145. {
  11146. "name": "webmozart/path-util",
  11147. "version": "2.3.0",
  11148. "source": {
  11149. "type": "git",
  11150. "url": "https://github.com/webmozart/path-util.git",
  11151. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  11152. },
  11153. "dist": {
  11154. "type": "zip",
  11155. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11156. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11157. "shasum": ""
  11158. },
  11159. "require": {
  11160. "php": ">=5.3.3",
  11161. "webmozart/assert": "~1.0"
  11162. },
  11163. "require-dev": {
  11164. "phpunit/phpunit": "^4.6",
  11165. "sebastian/version": "^1.0.1"
  11166. },
  11167. "type": "library",
  11168. "extra": {
  11169. "branch-alias": {
  11170. "dev-master": "2.3-dev"
  11171. }
  11172. },
  11173. "autoload": {
  11174. "psr-4": {
  11175. "Webmozart\\PathUtil\\": "src/"
  11176. }
  11177. },
  11178. "notification-url": "https://packagist.org/downloads/",
  11179. "license": [
  11180. "MIT"
  11181. ],
  11182. "authors": [
  11183. {
  11184. "name": "Bernhard Schussek",
  11185. "email": "bschussek@gmail.com"
  11186. }
  11187. ],
  11188. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  11189. "time": "2015-12-17T08:42:14+00:00"
  11190. },
  11191. {
  11192. "name": "zaporylie/composer-drupal-optimizations",
  11193. "version": "1.1.1",
  11194. "source": {
  11195. "type": "git",
  11196. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  11197. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  11198. },
  11199. "dist": {
  11200. "type": "zip",
  11201. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  11202. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  11203. "shasum": ""
  11204. },
  11205. "require": {
  11206. "composer-plugin-api": "^1.1"
  11207. },
  11208. "require-dev": {
  11209. "composer/composer": "^1.6",
  11210. "phpunit/phpunit": "^6"
  11211. },
  11212. "type": "composer-plugin",
  11213. "extra": {
  11214. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  11215. },
  11216. "autoload": {
  11217. "psr-4": {
  11218. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  11219. }
  11220. },
  11221. "notification-url": "https://packagist.org/downloads/",
  11222. "license": [
  11223. "GPL-2.0-or-later"
  11224. ],
  11225. "authors": [
  11226. {
  11227. "name": "Jakub Piasecki",
  11228. "email": "jakub@piaseccy.pl"
  11229. }
  11230. ],
  11231. "description": "Composer plugin to improve composer performance for Drupal projects",
  11232. "time": "2019-10-02T17:01:11+00:00"
  11233. },
  11234. {
  11235. "name": "zendframework/zend-diactoros",
  11236. "version": "1.8.7",
  11237. "source": {
  11238. "type": "git",
  11239. "url": "https://github.com/zendframework/zend-diactoros.git",
  11240. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
  11241. },
  11242. "dist": {
  11243. "type": "zip",
  11244. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11245. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11246. "shasum": ""
  11247. },
  11248. "require": {
  11249. "php": "^5.6 || ^7.0",
  11250. "psr/http-message": "^1.0"
  11251. },
  11252. "provide": {
  11253. "psr/http-message-implementation": "1.0"
  11254. },
  11255. "require-dev": {
  11256. "ext-dom": "*",
  11257. "ext-libxml": "*",
  11258. "php-http/psr7-integration-tests": "dev-master",
  11259. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  11260. "zendframework/zend-coding-standard": "~1.0"
  11261. },
  11262. "type": "library",
  11263. "extra": {
  11264. "branch-alias": {
  11265. "dev-release-1.8": "1.8.x-dev"
  11266. }
  11267. },
  11268. "autoload": {
  11269. "files": [
  11270. "src/functions/create_uploaded_file.php",
  11271. "src/functions/marshal_headers_from_sapi.php",
  11272. "src/functions/marshal_method_from_sapi.php",
  11273. "src/functions/marshal_protocol_version_from_sapi.php",
  11274. "src/functions/marshal_uri_from_sapi.php",
  11275. "src/functions/normalize_server.php",
  11276. "src/functions/normalize_uploaded_files.php",
  11277. "src/functions/parse_cookie_header.php"
  11278. ],
  11279. "psr-4": {
  11280. "Zend\\Diactoros\\": "src/"
  11281. }
  11282. },
  11283. "notification-url": "https://packagist.org/downloads/",
  11284. "license": [
  11285. "BSD-2-Clause"
  11286. ],
  11287. "description": "PSR HTTP Message implementations",
  11288. "homepage": "https://github.com/zendframework/zend-diactoros",
  11289. "keywords": [
  11290. "http",
  11291. "psr",
  11292. "psr-7"
  11293. ],
  11294. "time": "2019-08-06T17:53:53+00:00"
  11295. },
  11296. {
  11297. "name": "zendframework/zend-escaper",
  11298. "version": "2.6.1",
  11299. "source": {
  11300. "type": "git",
  11301. "url": "https://github.com/zendframework/zend-escaper.git",
  11302. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  11303. },
  11304. "dist": {
  11305. "type": "zip",
  11306. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11307. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11308. "shasum": ""
  11309. },
  11310. "require": {
  11311. "php": "^5.6 || ^7.0"
  11312. },
  11313. "require-dev": {
  11314. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11315. "zendframework/zend-coding-standard": "~1.0.0"
  11316. },
  11317. "type": "library",
  11318. "extra": {
  11319. "branch-alias": {
  11320. "dev-master": "2.6.x-dev",
  11321. "dev-develop": "2.7.x-dev"
  11322. }
  11323. },
  11324. "autoload": {
  11325. "psr-4": {
  11326. "Zend\\Escaper\\": "src/"
  11327. }
  11328. },
  11329. "notification-url": "https://packagist.org/downloads/",
  11330. "license": [
  11331. "BSD-3-Clause"
  11332. ],
  11333. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  11334. "keywords": [
  11335. "ZendFramework",
  11336. "escaper",
  11337. "zf"
  11338. ],
  11339. "time": "2019-09-05T20:03:20+00:00"
  11340. },
  11341. {
  11342. "name": "zendframework/zend-feed",
  11343. "version": "2.12.0",
  11344. "source": {
  11345. "type": "git",
  11346. "url": "https://github.com/zendframework/zend-feed.git",
  11347. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  11348. },
  11349. "dist": {
  11350. "type": "zip",
  11351. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  11352. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  11353. "shasum": ""
  11354. },
  11355. "require": {
  11356. "ext-dom": "*",
  11357. "ext-libxml": "*",
  11358. "php": "^5.6 || ^7.0",
  11359. "zendframework/zend-escaper": "^2.5.2",
  11360. "zendframework/zend-stdlib": "^3.2.1"
  11361. },
  11362. "require-dev": {
  11363. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  11364. "psr/http-message": "^1.0.1",
  11365. "zendframework/zend-cache": "^2.7.2",
  11366. "zendframework/zend-coding-standard": "~1.0.0",
  11367. "zendframework/zend-db": "^2.8.2",
  11368. "zendframework/zend-http": "^2.7",
  11369. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  11370. "zendframework/zend-validator": "^2.10.1"
  11371. },
  11372. "suggest": {
  11373. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  11374. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  11375. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  11376. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  11377. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  11378. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  11379. },
  11380. "type": "library",
  11381. "extra": {
  11382. "branch-alias": {
  11383. "dev-master": "2.12.x-dev",
  11384. "dev-develop": "2.13.x-dev"
  11385. }
  11386. },
  11387. "autoload": {
  11388. "psr-4": {
  11389. "Zend\\Feed\\": "src/"
  11390. }
  11391. },
  11392. "notification-url": "https://packagist.org/downloads/",
  11393. "license": [
  11394. "BSD-3-Clause"
  11395. ],
  11396. "description": "provides functionality for consuming RSS and Atom feeds",
  11397. "keywords": [
  11398. "ZendFramework",
  11399. "feed",
  11400. "zf"
  11401. ],
  11402. "time": "2019-03-05T20:08:49+00:00"
  11403. },
  11404. {
  11405. "name": "zendframework/zend-stdlib",
  11406. "version": "3.2.1",
  11407. "source": {
  11408. "type": "git",
  11409. "url": "https://github.com/zendframework/zend-stdlib.git",
  11410. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  11411. },
  11412. "dist": {
  11413. "type": "zip",
  11414. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  11415. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  11416. "shasum": ""
  11417. },
  11418. "require": {
  11419. "php": "^5.6 || ^7.0"
  11420. },
  11421. "require-dev": {
  11422. "phpbench/phpbench": "^0.13",
  11423. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11424. "zendframework/zend-coding-standard": "~1.0.0"
  11425. },
  11426. "type": "library",
  11427. "extra": {
  11428. "branch-alias": {
  11429. "dev-master": "3.2.x-dev",
  11430. "dev-develop": "3.3.x-dev"
  11431. }
  11432. },
  11433. "autoload": {
  11434. "psr-4": {
  11435. "Zend\\Stdlib\\": "src/"
  11436. }
  11437. },
  11438. "notification-url": "https://packagist.org/downloads/",
  11439. "license": [
  11440. "BSD-3-Clause"
  11441. ],
  11442. "description": "SPL extensions, array utilities, error handlers, and more",
  11443. "keywords": [
  11444. "ZendFramework",
  11445. "stdlib",
  11446. "zf"
  11447. ],
  11448. "time": "2018-08-28T21:34:05+00:00"
  11449. }
  11450. ],
  11451. "packages-dev": [],
  11452. "aliases": [],
  11453. "minimum-stability": "dev",
  11454. "stability-flags": {
  11455. "drupal/bulkdelete": 20,
  11456. "drupal/domain_menu_access": 20,
  11457. "drupal/filefield_sources": 20,
  11458. "drupal/filter_perms": 20,
  11459. "drupal/maillog": 20,
  11460. "drupal/path_alias_xt": 20,
  11461. "drupal/synonyms": 20,
  11462. "drupal/toolbar_themes": 20,
  11463. "drupal/workflow": 20
  11464. },
  11465. "prefer-stable": true,
  11466. "prefer-lowest": false,
  11467. "platform": {
  11468. "php": ">=5.6"
  11469. },
  11470. "platform-dev": []
  11471. }