composer.lock 318 KB

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