composer.lock 258 KB

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