composer.lock 227 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328
  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": "2c80998e5b972d0e3b6cbcb21be98eed",
  8. "packages": [
  9. {
  10. "name": "caouecs/laravel-lang",
  11. "version": "4.0.11",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/caouecs/lang.git",
  15. "reference": "134e1cbf9be14d97fc7937d7df784eae2d4bfa3c"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/caouecs/lang/zipball/134e1cbf9be14d97fc7937d7df784eae2d4bfa3c",
  20. "reference": "134e1cbf9be14d97fc7937d7df784eae2d4bfa3c",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*"
  25. },
  26. "suggest": {
  27. "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project",
  28. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  29. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  30. "overtrue/laravel-lang": "Command to add languages in your project"
  31. },
  32. "type": "library",
  33. "notification-url": "https://packagist.org/downloads/",
  34. "license": [
  35. "MIT"
  36. ],
  37. "authors": [
  38. {
  39. "name": "caouecs",
  40. "email": "caouecs@caouecs.net"
  41. }
  42. ],
  43. "description": "Languages for Laravel",
  44. "keywords": [
  45. "lang",
  46. "languages",
  47. "laravel",
  48. "lpm"
  49. ],
  50. "support": {
  51. "source": "https://github.com/caouecs/lang/tree/4.0.11"
  52. },
  53. "abandoned": "https://github.com/Laravel-Lang/lang",
  54. "time": "2020-03-17T15:24:26+00:00"
  55. },
  56. {
  57. "name": "dnoegel/php-xdg-base-dir",
  58. "version": "v0.1.1",
  59. "source": {
  60. "type": "git",
  61. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  62. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  63. },
  64. "dist": {
  65. "type": "zip",
  66. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  67. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  68. "shasum": ""
  69. },
  70. "require": {
  71. "php": ">=5.3.2"
  72. },
  73. "require-dev": {
  74. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  75. },
  76. "type": "library",
  77. "autoload": {
  78. "psr-4": {
  79. "XdgBaseDir\\": "src/"
  80. }
  81. },
  82. "notification-url": "https://packagist.org/downloads/",
  83. "license": [
  84. "MIT"
  85. ],
  86. "description": "implementation of xdg base directory specification for php",
  87. "support": {
  88. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  89. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  90. },
  91. "time": "2019-12-04T15:06:13+00:00"
  92. },
  93. {
  94. "name": "doctrine/cache",
  95. "version": "1.10.2",
  96. "source": {
  97. "type": "git",
  98. "url": "https://github.com/doctrine/cache.git",
  99. "reference": "13e3381b25847283a91948d04640543941309727"
  100. },
  101. "dist": {
  102. "type": "zip",
  103. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  104. "reference": "13e3381b25847283a91948d04640543941309727",
  105. "shasum": ""
  106. },
  107. "require": {
  108. "php": "~7.1 || ^8.0"
  109. },
  110. "conflict": {
  111. "doctrine/common": ">2.2,<2.4"
  112. },
  113. "require-dev": {
  114. "alcaeus/mongo-php-adapter": "^1.1",
  115. "doctrine/coding-standard": "^6.0",
  116. "mongodb/mongodb": "^1.1",
  117. "phpunit/phpunit": "^7.0",
  118. "predis/predis": "~1.0"
  119. },
  120. "suggest": {
  121. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  122. },
  123. "type": "library",
  124. "extra": {
  125. "branch-alias": {
  126. "dev-master": "1.9.x-dev"
  127. }
  128. },
  129. "autoload": {
  130. "psr-4": {
  131. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  132. }
  133. },
  134. "notification-url": "https://packagist.org/downloads/",
  135. "license": [
  136. "MIT"
  137. ],
  138. "authors": [
  139. {
  140. "name": "Guilherme Blanco",
  141. "email": "guilhermeblanco@gmail.com"
  142. },
  143. {
  144. "name": "Roman Borschel",
  145. "email": "roman@code-factory.org"
  146. },
  147. {
  148. "name": "Benjamin Eberlei",
  149. "email": "kontakt@beberlei.de"
  150. },
  151. {
  152. "name": "Jonathan Wage",
  153. "email": "jonwage@gmail.com"
  154. },
  155. {
  156. "name": "Johannes Schmitt",
  157. "email": "schmittjoh@gmail.com"
  158. }
  159. ],
  160. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  161. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  162. "keywords": [
  163. "abstraction",
  164. "apcu",
  165. "cache",
  166. "caching",
  167. "couchdb",
  168. "memcached",
  169. "php",
  170. "redis",
  171. "xcache"
  172. ],
  173. "support": {
  174. "issues": "https://github.com/doctrine/cache/issues",
  175. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  176. },
  177. "funding": [
  178. {
  179. "url": "https://www.doctrine-project.org/sponsorship.html",
  180. "type": "custom"
  181. },
  182. {
  183. "url": "https://www.patreon.com/phpdoctrine",
  184. "type": "patreon"
  185. },
  186. {
  187. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  188. "type": "tidelift"
  189. }
  190. ],
  191. "time": "2020-07-07T18:54:01+00:00"
  192. },
  193. {
  194. "name": "doctrine/dbal",
  195. "version": "2.12.1",
  196. "source": {
  197. "type": "git",
  198. "url": "https://github.com/doctrine/dbal.git",
  199. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  200. },
  201. "dist": {
  202. "type": "zip",
  203. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  204. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  205. "shasum": ""
  206. },
  207. "require": {
  208. "doctrine/cache": "^1.0",
  209. "doctrine/event-manager": "^1.0",
  210. "ext-pdo": "*",
  211. "php": "^7.3 || ^8"
  212. },
  213. "require-dev": {
  214. "doctrine/coding-standard": "^8.1",
  215. "jetbrains/phpstorm-stubs": "^2019.1",
  216. "phpstan/phpstan": "^0.12.40",
  217. "phpunit/phpunit": "^9.4",
  218. "psalm/plugin-phpunit": "^0.10.0",
  219. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  220. "vimeo/psalm": "^3.17.2"
  221. },
  222. "suggest": {
  223. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  224. },
  225. "bin": [
  226. "bin/doctrine-dbal"
  227. ],
  228. "type": "library",
  229. "extra": {
  230. "branch-alias": {
  231. "dev-master": "4.0.x-dev"
  232. }
  233. },
  234. "autoload": {
  235. "psr-4": {
  236. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  237. }
  238. },
  239. "notification-url": "https://packagist.org/downloads/",
  240. "license": [
  241. "MIT"
  242. ],
  243. "authors": [
  244. {
  245. "name": "Guilherme Blanco",
  246. "email": "guilhermeblanco@gmail.com"
  247. },
  248. {
  249. "name": "Roman Borschel",
  250. "email": "roman@code-factory.org"
  251. },
  252. {
  253. "name": "Benjamin Eberlei",
  254. "email": "kontakt@beberlei.de"
  255. },
  256. {
  257. "name": "Jonathan Wage",
  258. "email": "jonwage@gmail.com"
  259. }
  260. ],
  261. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  262. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  263. "keywords": [
  264. "abstraction",
  265. "database",
  266. "db2",
  267. "dbal",
  268. "mariadb",
  269. "mssql",
  270. "mysql",
  271. "oci8",
  272. "oracle",
  273. "pdo",
  274. "pgsql",
  275. "postgresql",
  276. "queryobject",
  277. "sasql",
  278. "sql",
  279. "sqlanywhere",
  280. "sqlite",
  281. "sqlserver",
  282. "sqlsrv"
  283. ],
  284. "support": {
  285. "issues": "https://github.com/doctrine/dbal/issues",
  286. "source": "https://github.com/doctrine/dbal/tree/2.12.1"
  287. },
  288. "funding": [
  289. {
  290. "url": "https://www.doctrine-project.org/sponsorship.html",
  291. "type": "custom"
  292. },
  293. {
  294. "url": "https://www.patreon.com/phpdoctrine",
  295. "type": "patreon"
  296. },
  297. {
  298. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  299. "type": "tidelift"
  300. }
  301. ],
  302. "time": "2020-11-14T20:26:58+00:00"
  303. },
  304. {
  305. "name": "doctrine/event-manager",
  306. "version": "1.1.1",
  307. "source": {
  308. "type": "git",
  309. "url": "https://github.com/doctrine/event-manager.git",
  310. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  311. },
  312. "dist": {
  313. "type": "zip",
  314. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  315. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  316. "shasum": ""
  317. },
  318. "require": {
  319. "php": "^7.1 || ^8.0"
  320. },
  321. "conflict": {
  322. "doctrine/common": "<2.9@dev"
  323. },
  324. "require-dev": {
  325. "doctrine/coding-standard": "^6.0",
  326. "phpunit/phpunit": "^7.0"
  327. },
  328. "type": "library",
  329. "extra": {
  330. "branch-alias": {
  331. "dev-master": "1.0.x-dev"
  332. }
  333. },
  334. "autoload": {
  335. "psr-4": {
  336. "Doctrine\\Common\\": "lib/Doctrine/Common"
  337. }
  338. },
  339. "notification-url": "https://packagist.org/downloads/",
  340. "license": [
  341. "MIT"
  342. ],
  343. "authors": [
  344. {
  345. "name": "Guilherme Blanco",
  346. "email": "guilhermeblanco@gmail.com"
  347. },
  348. {
  349. "name": "Roman Borschel",
  350. "email": "roman@code-factory.org"
  351. },
  352. {
  353. "name": "Benjamin Eberlei",
  354. "email": "kontakt@beberlei.de"
  355. },
  356. {
  357. "name": "Jonathan Wage",
  358. "email": "jonwage@gmail.com"
  359. },
  360. {
  361. "name": "Johannes Schmitt",
  362. "email": "schmittjoh@gmail.com"
  363. },
  364. {
  365. "name": "Marco Pivetta",
  366. "email": "ocramius@gmail.com"
  367. }
  368. ],
  369. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  370. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  371. "keywords": [
  372. "event",
  373. "event dispatcher",
  374. "event manager",
  375. "event system",
  376. "events"
  377. ],
  378. "support": {
  379. "issues": "https://github.com/doctrine/event-manager/issues",
  380. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  381. },
  382. "funding": [
  383. {
  384. "url": "https://www.doctrine-project.org/sponsorship.html",
  385. "type": "custom"
  386. },
  387. {
  388. "url": "https://www.patreon.com/phpdoctrine",
  389. "type": "patreon"
  390. },
  391. {
  392. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  393. "type": "tidelift"
  394. }
  395. ],
  396. "time": "2020-05-29T18:28:51+00:00"
  397. },
  398. {
  399. "name": "doctrine/inflector",
  400. "version": "1.4.3",
  401. "source": {
  402. "type": "git",
  403. "url": "https://github.com/doctrine/inflector.git",
  404. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  405. },
  406. "dist": {
  407. "type": "zip",
  408. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  409. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  410. "shasum": ""
  411. },
  412. "require": {
  413. "php": "^7.2 || ^8.0"
  414. },
  415. "require-dev": {
  416. "doctrine/coding-standard": "^7.0",
  417. "phpstan/phpstan": "^0.11",
  418. "phpstan/phpstan-phpunit": "^0.11",
  419. "phpstan/phpstan-strict-rules": "^0.11",
  420. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  421. },
  422. "type": "library",
  423. "extra": {
  424. "branch-alias": {
  425. "dev-master": "2.0.x-dev"
  426. }
  427. },
  428. "autoload": {
  429. "psr-4": {
  430. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  431. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  432. }
  433. },
  434. "notification-url": "https://packagist.org/downloads/",
  435. "license": [
  436. "MIT"
  437. ],
  438. "authors": [
  439. {
  440. "name": "Guilherme Blanco",
  441. "email": "guilhermeblanco@gmail.com"
  442. },
  443. {
  444. "name": "Roman Borschel",
  445. "email": "roman@code-factory.org"
  446. },
  447. {
  448. "name": "Benjamin Eberlei",
  449. "email": "kontakt@beberlei.de"
  450. },
  451. {
  452. "name": "Jonathan Wage",
  453. "email": "jonwage@gmail.com"
  454. },
  455. {
  456. "name": "Johannes Schmitt",
  457. "email": "schmittjoh@gmail.com"
  458. }
  459. ],
  460. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  461. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  462. "keywords": [
  463. "inflection",
  464. "inflector",
  465. "lowercase",
  466. "manipulation",
  467. "php",
  468. "plural",
  469. "singular",
  470. "strings",
  471. "uppercase",
  472. "words"
  473. ],
  474. "support": {
  475. "issues": "https://github.com/doctrine/inflector/issues",
  476. "source": "https://github.com/doctrine/inflector/tree/1.4.x"
  477. },
  478. "funding": [
  479. {
  480. "url": "https://www.doctrine-project.org/sponsorship.html",
  481. "type": "custom"
  482. },
  483. {
  484. "url": "https://www.patreon.com/phpdoctrine",
  485. "type": "patreon"
  486. },
  487. {
  488. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  489. "type": "tidelift"
  490. }
  491. ],
  492. "time": "2020-05-29T07:19:59+00:00"
  493. },
  494. {
  495. "name": "doctrine/lexer",
  496. "version": "1.2.1",
  497. "source": {
  498. "type": "git",
  499. "url": "https://github.com/doctrine/lexer.git",
  500. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  501. },
  502. "dist": {
  503. "type": "zip",
  504. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  505. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  506. "shasum": ""
  507. },
  508. "require": {
  509. "php": "^7.2 || ^8.0"
  510. },
  511. "require-dev": {
  512. "doctrine/coding-standard": "^6.0",
  513. "phpstan/phpstan": "^0.11.8",
  514. "phpunit/phpunit": "^8.2"
  515. },
  516. "type": "library",
  517. "extra": {
  518. "branch-alias": {
  519. "dev-master": "1.2.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Guilherme Blanco",
  534. "email": "guilhermeblanco@gmail.com"
  535. },
  536. {
  537. "name": "Roman Borschel",
  538. "email": "roman@code-factory.org"
  539. },
  540. {
  541. "name": "Johannes Schmitt",
  542. "email": "schmittjoh@gmail.com"
  543. }
  544. ],
  545. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  546. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  547. "keywords": [
  548. "annotations",
  549. "docblock",
  550. "lexer",
  551. "parser",
  552. "php"
  553. ],
  554. "support": {
  555. "issues": "https://github.com/doctrine/lexer/issues",
  556. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  557. },
  558. "funding": [
  559. {
  560. "url": "https://www.doctrine-project.org/sponsorship.html",
  561. "type": "custom"
  562. },
  563. {
  564. "url": "https://www.patreon.com/phpdoctrine",
  565. "type": "patreon"
  566. },
  567. {
  568. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  569. "type": "tidelift"
  570. }
  571. ],
  572. "time": "2020-05-25T17:44:05+00:00"
  573. },
  574. {
  575. "name": "dragonmantank/cron-expression",
  576. "version": "v2.3.1",
  577. "source": {
  578. "type": "git",
  579. "url": "https://github.com/dragonmantank/cron-expression.git",
  580. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  581. },
  582. "dist": {
  583. "type": "zip",
  584. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  585. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  586. "shasum": ""
  587. },
  588. "require": {
  589. "php": "^7.0|^8.0"
  590. },
  591. "require-dev": {
  592. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  593. },
  594. "type": "library",
  595. "extra": {
  596. "branch-alias": {
  597. "dev-master": "2.3-dev"
  598. }
  599. },
  600. "autoload": {
  601. "psr-4": {
  602. "Cron\\": "src/Cron/"
  603. }
  604. },
  605. "notification-url": "https://packagist.org/downloads/",
  606. "license": [
  607. "MIT"
  608. ],
  609. "authors": [
  610. {
  611. "name": "Michael Dowling",
  612. "email": "mtdowling@gmail.com",
  613. "homepage": "https://github.com/mtdowling"
  614. },
  615. {
  616. "name": "Chris Tankersley",
  617. "email": "chris@ctankersley.com",
  618. "homepage": "https://github.com/dragonmantank"
  619. }
  620. ],
  621. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  622. "keywords": [
  623. "cron",
  624. "schedule"
  625. ],
  626. "support": {
  627. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  628. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  629. },
  630. "funding": [
  631. {
  632. "url": "https://github.com/dragonmantank",
  633. "type": "github"
  634. }
  635. ],
  636. "time": "2020-10-13T00:52:37+00:00"
  637. },
  638. {
  639. "name": "egulias/email-validator",
  640. "version": "2.1.24",
  641. "source": {
  642. "type": "git",
  643. "url": "https://github.com/egulias/EmailValidator.git",
  644. "reference": "ca90a3291eee1538cd48ff25163240695bd95448"
  645. },
  646. "dist": {
  647. "type": "zip",
  648. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ca90a3291eee1538cd48ff25163240695bd95448",
  649. "reference": "ca90a3291eee1538cd48ff25163240695bd95448",
  650. "shasum": ""
  651. },
  652. "require": {
  653. "doctrine/lexer": "^1.0.1",
  654. "php": ">=5.5",
  655. "symfony/polyfill-intl-idn": "^1.10"
  656. },
  657. "require-dev": {
  658. "dominicsayers/isemail": "^3.0.7",
  659. "phpunit/phpunit": "^4.8.36|^7.5.15",
  660. "satooshi/php-coveralls": "^1.0.1"
  661. },
  662. "suggest": {
  663. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  664. },
  665. "type": "library",
  666. "extra": {
  667. "branch-alias": {
  668. "dev-master": "2.1.x-dev"
  669. }
  670. },
  671. "autoload": {
  672. "psr-4": {
  673. "Egulias\\EmailValidator\\": "src"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Eduardo Gulias Davis"
  683. }
  684. ],
  685. "description": "A library for validating emails against several RFCs",
  686. "homepage": "https://github.com/egulias/EmailValidator",
  687. "keywords": [
  688. "email",
  689. "emailvalidation",
  690. "emailvalidator",
  691. "validation",
  692. "validator"
  693. ],
  694. "support": {
  695. "issues": "https://github.com/egulias/EmailValidator/issues",
  696. "source": "https://github.com/egulias/EmailValidator/tree/2.1.24"
  697. },
  698. "funding": [
  699. {
  700. "url": "https://github.com/egulias",
  701. "type": "github"
  702. }
  703. ],
  704. "time": "2020-11-14T15:56:27+00:00"
  705. },
  706. {
  707. "name": "encore/laravel-admin",
  708. "version": "v1.8.11",
  709. "source": {
  710. "type": "git",
  711. "url": "https://github.com/z-song/laravel-admin.git",
  712. "reference": "6ddd381a9f4928b6c2175dea297e6a8b385d8d28"
  713. },
  714. "dist": {
  715. "type": "zip",
  716. "url": "https://api.github.com/repos/z-song/laravel-admin/zipball/6ddd381a9f4928b6c2175dea297e6a8b385d8d28",
  717. "reference": "6ddd381a9f4928b6c2175dea297e6a8b385d8d28",
  718. "shasum": ""
  719. },
  720. "require": {
  721. "doctrine/dbal": "2.*",
  722. "laravel/framework": ">=5.5",
  723. "php": ">=7.0.0",
  724. "symfony/dom-crawler": "~3.1|~4.0|~5.0"
  725. },
  726. "require-dev": {
  727. "fzaninotto/faker": "~1.4",
  728. "intervention/image": "~2.3",
  729. "laravel/browser-kit-testing": "^6.0",
  730. "laravel/laravel": ">=5.5",
  731. "spatie/phpunit-watcher": "^1.22.0"
  732. },
  733. "suggest": {
  734. "intervention/image": "Required to handling and manipulation upload images (~2.3).",
  735. "spatie/eloquent-sortable": "Required to built orderable gird."
  736. },
  737. "type": "library",
  738. "extra": {
  739. "laravel": {
  740. "providers": [
  741. "Encore\\Admin\\AdminServiceProvider"
  742. ],
  743. "aliases": {
  744. "Admin": "Encore\\Admin\\Facades\\Admin"
  745. }
  746. }
  747. },
  748. "autoload": {
  749. "psr-4": {
  750. "Encore\\Admin\\": "src/"
  751. },
  752. "files": [
  753. "src/helpers.php"
  754. ]
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "MIT"
  759. ],
  760. "authors": [
  761. {
  762. "name": "zsong",
  763. "email": "zosong@126.com"
  764. }
  765. ],
  766. "description": "laravel admin",
  767. "homepage": "https://github.com/z-song/laravel-admin",
  768. "keywords": [
  769. "admin",
  770. "form",
  771. "grid",
  772. "laravel"
  773. ],
  774. "support": {
  775. "issues": "https://github.com/z-song/laravel-admin/issues",
  776. "source": "https://github.com/z-song/laravel-admin/tree/v1.8.11"
  777. },
  778. "time": "2020-11-15T02:55:51+00:00"
  779. },
  780. {
  781. "name": "erusev/parsedown",
  782. "version": "1.7.4",
  783. "source": {
  784. "type": "git",
  785. "url": "https://github.com/erusev/parsedown.git",
  786. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  787. },
  788. "dist": {
  789. "type": "zip",
  790. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  791. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  792. "shasum": ""
  793. },
  794. "require": {
  795. "ext-mbstring": "*",
  796. "php": ">=5.3.0"
  797. },
  798. "require-dev": {
  799. "phpunit/phpunit": "^4.8.35"
  800. },
  801. "type": "library",
  802. "autoload": {
  803. "psr-0": {
  804. "Parsedown": ""
  805. }
  806. },
  807. "notification-url": "https://packagist.org/downloads/",
  808. "license": [
  809. "MIT"
  810. ],
  811. "authors": [
  812. {
  813. "name": "Emanuil Rusev",
  814. "email": "hello@erusev.com",
  815. "homepage": "http://erusev.com"
  816. }
  817. ],
  818. "description": "Parser for Markdown.",
  819. "homepage": "http://parsedown.org",
  820. "keywords": [
  821. "markdown",
  822. "parser"
  823. ],
  824. "support": {
  825. "issues": "https://github.com/erusev/parsedown/issues",
  826. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  827. },
  828. "time": "2019-12-30T22:54:17+00:00"
  829. },
  830. {
  831. "name": "fideloper/proxy",
  832. "version": "4.4.1",
  833. "source": {
  834. "type": "git",
  835. "url": "https://github.com/fideloper/TrustedProxy.git",
  836. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  837. },
  838. "dist": {
  839. "type": "zip",
  840. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  841. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  842. "shasum": ""
  843. },
  844. "require": {
  845. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  846. "php": ">=5.4.0"
  847. },
  848. "require-dev": {
  849. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  850. "mockery/mockery": "^1.0",
  851. "phpunit/phpunit": "^6.0"
  852. },
  853. "type": "library",
  854. "extra": {
  855. "laravel": {
  856. "providers": [
  857. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  858. ]
  859. }
  860. },
  861. "autoload": {
  862. "psr-4": {
  863. "Fideloper\\Proxy\\": "src/"
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Chris Fidao",
  873. "email": "fideloper@gmail.com"
  874. }
  875. ],
  876. "description": "Set trusted proxies for Laravel",
  877. "keywords": [
  878. "load balancing",
  879. "proxy",
  880. "trusted proxy"
  881. ],
  882. "support": {
  883. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  884. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  885. },
  886. "time": "2020-10-22T13:48:01+00:00"
  887. },
  888. {
  889. "name": "jakub-onderka/php-console-color",
  890. "version": "v0.2",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  894. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  899. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "php": ">=5.4.0"
  904. },
  905. "require-dev": {
  906. "jakub-onderka/php-code-style": "1.0",
  907. "jakub-onderka/php-parallel-lint": "1.0",
  908. "jakub-onderka/php-var-dump-check": "0.*",
  909. "phpunit/phpunit": "~4.3",
  910. "squizlabs/php_codesniffer": "1.*"
  911. },
  912. "type": "library",
  913. "autoload": {
  914. "psr-4": {
  915. "JakubOnderka\\PhpConsoleColor\\": "src/"
  916. }
  917. },
  918. "notification-url": "https://packagist.org/downloads/",
  919. "license": [
  920. "BSD-2-Clause"
  921. ],
  922. "authors": [
  923. {
  924. "name": "Jakub Onderka",
  925. "email": "jakub.onderka@gmail.com"
  926. }
  927. ],
  928. "support": {
  929. "issues": "https://github.com/JakubOnderka/PHP-Console-Color/issues",
  930. "source": "https://github.com/JakubOnderka/PHP-Console-Color/tree/master"
  931. },
  932. "abandoned": "php-parallel-lint/php-console-color",
  933. "time": "2018-09-29T17:23:10+00:00"
  934. },
  935. {
  936. "name": "jakub-onderka/php-console-highlighter",
  937. "version": "v0.4",
  938. "source": {
  939. "type": "git",
  940. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  941. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  942. },
  943. "dist": {
  944. "type": "zip",
  945. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  946. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  947. "shasum": ""
  948. },
  949. "require": {
  950. "ext-tokenizer": "*",
  951. "jakub-onderka/php-console-color": "~0.2",
  952. "php": ">=5.4.0"
  953. },
  954. "require-dev": {
  955. "jakub-onderka/php-code-style": "~1.0",
  956. "jakub-onderka/php-parallel-lint": "~1.0",
  957. "jakub-onderka/php-var-dump-check": "~0.1",
  958. "phpunit/phpunit": "~4.0",
  959. "squizlabs/php_codesniffer": "~1.5"
  960. },
  961. "type": "library",
  962. "autoload": {
  963. "psr-4": {
  964. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Jakub Onderka",
  974. "email": "acci@acci.cz",
  975. "homepage": "http://www.acci.cz/"
  976. }
  977. ],
  978. "description": "Highlight PHP code in terminal",
  979. "support": {
  980. "issues": "https://github.com/JakubOnderka/PHP-Console-Highlighter/issues",
  981. "source": "https://github.com/JakubOnderka/PHP-Console-Highlighter/tree/master"
  982. },
  983. "abandoned": "php-parallel-lint/php-console-highlighter",
  984. "time": "2018-09-29T18:48:56+00:00"
  985. },
  986. {
  987. "name": "laravel/framework",
  988. "version": "v5.8.38",
  989. "source": {
  990. "type": "git",
  991. "url": "https://github.com/laravel/framework.git",
  992. "reference": "78eb4dabcc03e189620c16f436358d41d31ae11f"
  993. },
  994. "dist": {
  995. "type": "zip",
  996. "url": "https://api.github.com/repos/laravel/framework/zipball/78eb4dabcc03e189620c16f436358d41d31ae11f",
  997. "reference": "78eb4dabcc03e189620c16f436358d41d31ae11f",
  998. "shasum": ""
  999. },
  1000. "require": {
  1001. "doctrine/inflector": "^1.1",
  1002. "dragonmantank/cron-expression": "^2.0",
  1003. "egulias/email-validator": "^2.0",
  1004. "erusev/parsedown": "^1.7",
  1005. "ext-json": "*",
  1006. "ext-mbstring": "*",
  1007. "ext-openssl": "*",
  1008. "league/flysystem": "^1.0.8",
  1009. "monolog/monolog": "^1.12",
  1010. "nesbot/carbon": "^1.26.3 || ^2.0",
  1011. "opis/closure": "^3.1",
  1012. "php": "^7.1.3",
  1013. "psr/container": "^1.0",
  1014. "psr/simple-cache": "^1.0",
  1015. "ramsey/uuid": "^3.7",
  1016. "swiftmailer/swiftmailer": "^6.0",
  1017. "symfony/console": "^4.2",
  1018. "symfony/debug": "^4.2",
  1019. "symfony/finder": "^4.2",
  1020. "symfony/http-foundation": "^4.2",
  1021. "symfony/http-kernel": "^4.2",
  1022. "symfony/process": "^4.2",
  1023. "symfony/routing": "^4.2",
  1024. "symfony/var-dumper": "^4.2",
  1025. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1026. "vlucas/phpdotenv": "^3.3"
  1027. },
  1028. "conflict": {
  1029. "tightenco/collect": "<5.5.33"
  1030. },
  1031. "replace": {
  1032. "illuminate/auth": "self.version",
  1033. "illuminate/broadcasting": "self.version",
  1034. "illuminate/bus": "self.version",
  1035. "illuminate/cache": "self.version",
  1036. "illuminate/config": "self.version",
  1037. "illuminate/console": "self.version",
  1038. "illuminate/container": "self.version",
  1039. "illuminate/contracts": "self.version",
  1040. "illuminate/cookie": "self.version",
  1041. "illuminate/database": "self.version",
  1042. "illuminate/encryption": "self.version",
  1043. "illuminate/events": "self.version",
  1044. "illuminate/filesystem": "self.version",
  1045. "illuminate/hashing": "self.version",
  1046. "illuminate/http": "self.version",
  1047. "illuminate/log": "self.version",
  1048. "illuminate/mail": "self.version",
  1049. "illuminate/notifications": "self.version",
  1050. "illuminate/pagination": "self.version",
  1051. "illuminate/pipeline": "self.version",
  1052. "illuminate/queue": "self.version",
  1053. "illuminate/redis": "self.version",
  1054. "illuminate/routing": "self.version",
  1055. "illuminate/session": "self.version",
  1056. "illuminate/support": "self.version",
  1057. "illuminate/translation": "self.version",
  1058. "illuminate/validation": "self.version",
  1059. "illuminate/view": "self.version"
  1060. },
  1061. "require-dev": {
  1062. "aws/aws-sdk-php": "^3.0",
  1063. "doctrine/dbal": "^2.6",
  1064. "filp/whoops": "^2.1.4",
  1065. "guzzlehttp/guzzle": "^6.3",
  1066. "league/flysystem-cached-adapter": "^1.0",
  1067. "mockery/mockery": "^1.0",
  1068. "moontoast/math": "^1.1",
  1069. "orchestra/testbench-core": "3.8.*",
  1070. "pda/pheanstalk": "^4.0",
  1071. "phpunit/phpunit": "^7.5|^8.0",
  1072. "predis/predis": "^1.1.1",
  1073. "symfony/css-selector": "^4.2",
  1074. "symfony/dom-crawler": "^4.2",
  1075. "true/punycode": "^2.1"
  1076. },
  1077. "suggest": {
  1078. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  1079. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1080. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1081. "ext-pcntl": "Required to use all features of the queue worker.",
  1082. "ext-posix": "Required to use all features of the queue worker.",
  1083. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  1084. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  1085. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  1086. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  1087. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1088. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1089. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  1090. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1091. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1092. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  1093. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1094. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  1095. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  1096. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.2).",
  1097. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.2).",
  1098. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.1).",
  1099. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1100. },
  1101. "type": "library",
  1102. "extra": {
  1103. "branch-alias": {
  1104. "dev-master": "5.8-dev"
  1105. }
  1106. },
  1107. "autoload": {
  1108. "files": [
  1109. "src/Illuminate/Foundation/helpers.php",
  1110. "src/Illuminate/Support/helpers.php"
  1111. ],
  1112. "psr-4": {
  1113. "Illuminate\\": "src/Illuminate/"
  1114. }
  1115. },
  1116. "notification-url": "https://packagist.org/downloads/",
  1117. "license": [
  1118. "MIT"
  1119. ],
  1120. "authors": [
  1121. {
  1122. "name": "Taylor Otwell",
  1123. "email": "taylor@laravel.com"
  1124. }
  1125. ],
  1126. "description": "The Laravel Framework.",
  1127. "homepage": "https://laravel.com",
  1128. "keywords": [
  1129. "framework",
  1130. "laravel"
  1131. ],
  1132. "support": {
  1133. "issues": "https://github.com/laravel/framework/issues",
  1134. "source": "https://github.com/laravel/framework"
  1135. },
  1136. "time": "2020-04-14T14:14:36+00:00"
  1137. },
  1138. {
  1139. "name": "laravel/tinker",
  1140. "version": "v1.0.10",
  1141. "source": {
  1142. "type": "git",
  1143. "url": "https://github.com/laravel/tinker.git",
  1144. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  1145. },
  1146. "dist": {
  1147. "type": "zip",
  1148. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1149. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1150. "shasum": ""
  1151. },
  1152. "require": {
  1153. "illuminate/console": "~5.1|^6.0",
  1154. "illuminate/contracts": "~5.1|^6.0",
  1155. "illuminate/support": "~5.1|^6.0",
  1156. "php": ">=5.5.9",
  1157. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1158. "symfony/var-dumper": "~3.0|~4.0"
  1159. },
  1160. "require-dev": {
  1161. "phpunit/phpunit": "~4.0|~5.0"
  1162. },
  1163. "suggest": {
  1164. "illuminate/database": "The Illuminate Database package (~5.1)."
  1165. },
  1166. "type": "library",
  1167. "extra": {
  1168. "branch-alias": {
  1169. "dev-master": "1.0-dev"
  1170. },
  1171. "laravel": {
  1172. "providers": [
  1173. "Laravel\\Tinker\\TinkerServiceProvider"
  1174. ]
  1175. }
  1176. },
  1177. "autoload": {
  1178. "psr-4": {
  1179. "Laravel\\Tinker\\": "src/"
  1180. }
  1181. },
  1182. "notification-url": "https://packagist.org/downloads/",
  1183. "license": [
  1184. "MIT"
  1185. ],
  1186. "authors": [
  1187. {
  1188. "name": "Taylor Otwell",
  1189. "email": "taylor@laravel.com"
  1190. }
  1191. ],
  1192. "description": "Powerful REPL for the Laravel framework.",
  1193. "keywords": [
  1194. "REPL",
  1195. "Tinker",
  1196. "laravel",
  1197. "psysh"
  1198. ],
  1199. "support": {
  1200. "issues": "https://github.com/laravel/tinker/issues",
  1201. "source": "https://github.com/laravel/tinker/tree/v1.0.10"
  1202. },
  1203. "time": "2019-08-07T15:10:45+00:00"
  1204. },
  1205. {
  1206. "name": "league/flysystem",
  1207. "version": "1.1.3",
  1208. "source": {
  1209. "type": "git",
  1210. "url": "https://github.com/thephpleague/flysystem.git",
  1211. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1212. },
  1213. "dist": {
  1214. "type": "zip",
  1215. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1216. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1217. "shasum": ""
  1218. },
  1219. "require": {
  1220. "ext-fileinfo": "*",
  1221. "league/mime-type-detection": "^1.3",
  1222. "php": "^7.2.5 || ^8.0"
  1223. },
  1224. "conflict": {
  1225. "league/flysystem-sftp": "<1.0.6"
  1226. },
  1227. "require-dev": {
  1228. "phpspec/prophecy": "^1.11.1",
  1229. "phpunit/phpunit": "^8.5.8"
  1230. },
  1231. "suggest": {
  1232. "ext-fileinfo": "Required for MimeType",
  1233. "ext-ftp": "Allows you to use FTP server storage",
  1234. "ext-openssl": "Allows you to use FTPS server storage",
  1235. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1236. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1237. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1238. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1239. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1240. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1241. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1242. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1243. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1244. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1245. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1246. },
  1247. "type": "library",
  1248. "extra": {
  1249. "branch-alias": {
  1250. "dev-master": "1.1-dev"
  1251. }
  1252. },
  1253. "autoload": {
  1254. "psr-4": {
  1255. "League\\Flysystem\\": "src/"
  1256. }
  1257. },
  1258. "notification-url": "https://packagist.org/downloads/",
  1259. "license": [
  1260. "MIT"
  1261. ],
  1262. "authors": [
  1263. {
  1264. "name": "Frank de Jonge",
  1265. "email": "info@frenky.net"
  1266. }
  1267. ],
  1268. "description": "Filesystem abstraction: Many filesystems, one API.",
  1269. "keywords": [
  1270. "Cloud Files",
  1271. "WebDAV",
  1272. "abstraction",
  1273. "aws",
  1274. "cloud",
  1275. "copy.com",
  1276. "dropbox",
  1277. "file systems",
  1278. "files",
  1279. "filesystem",
  1280. "filesystems",
  1281. "ftp",
  1282. "rackspace",
  1283. "remote",
  1284. "s3",
  1285. "sftp",
  1286. "storage"
  1287. ],
  1288. "support": {
  1289. "issues": "https://github.com/thephpleague/flysystem/issues",
  1290. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  1291. },
  1292. "funding": [
  1293. {
  1294. "url": "https://offset.earth/frankdejonge",
  1295. "type": "other"
  1296. }
  1297. ],
  1298. "time": "2020-08-23T07:39:11+00:00"
  1299. },
  1300. {
  1301. "name": "league/mime-type-detection",
  1302. "version": "1.5.1",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1306. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  1311. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  1312. "shasum": ""
  1313. },
  1314. "require": {
  1315. "ext-fileinfo": "*",
  1316. "php": "^7.2 || ^8.0"
  1317. },
  1318. "require-dev": {
  1319. "phpstan/phpstan": "^0.12.36",
  1320. "phpunit/phpunit": "^8.5.8"
  1321. },
  1322. "type": "library",
  1323. "autoload": {
  1324. "psr-4": {
  1325. "League\\MimeTypeDetection\\": "src"
  1326. }
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Frank de Jonge",
  1335. "email": "info@frankdejonge.nl"
  1336. }
  1337. ],
  1338. "description": "Mime-type detection for Flysystem",
  1339. "support": {
  1340. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1341. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  1342. },
  1343. "funding": [
  1344. {
  1345. "url": "https://github.com/frankdejonge",
  1346. "type": "github"
  1347. },
  1348. {
  1349. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1350. "type": "tidelift"
  1351. }
  1352. ],
  1353. "time": "2020-10-18T11:50:25+00:00"
  1354. },
  1355. {
  1356. "name": "monolog/monolog",
  1357. "version": "1.25.5",
  1358. "source": {
  1359. "type": "git",
  1360. "url": "https://github.com/Seldaek/monolog.git",
  1361. "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0"
  1362. },
  1363. "dist": {
  1364. "type": "zip",
  1365. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0",
  1366. "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0",
  1367. "shasum": ""
  1368. },
  1369. "require": {
  1370. "php": ">=5.3.0",
  1371. "psr/log": "~1.0"
  1372. },
  1373. "provide": {
  1374. "psr/log-implementation": "1.0.0"
  1375. },
  1376. "require-dev": {
  1377. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1378. "doctrine/couchdb": "~1.0@dev",
  1379. "graylog2/gelf-php": "~1.0",
  1380. "php-amqplib/php-amqplib": "~2.4",
  1381. "php-console/php-console": "^3.1.3",
  1382. "php-parallel-lint/php-parallel-lint": "^1.0",
  1383. "phpunit/phpunit": "~4.5",
  1384. "ruflin/elastica": ">=0.90 <3.0",
  1385. "sentry/sentry": "^0.13",
  1386. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1387. },
  1388. "suggest": {
  1389. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1390. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1391. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1392. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1393. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1394. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1395. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1396. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1397. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1398. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1399. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1400. },
  1401. "type": "library",
  1402. "extra": {
  1403. "branch-alias": {
  1404. "dev-master": "2.0.x-dev"
  1405. }
  1406. },
  1407. "autoload": {
  1408. "psr-4": {
  1409. "Monolog\\": "src/Monolog"
  1410. }
  1411. },
  1412. "notification-url": "https://packagist.org/downloads/",
  1413. "license": [
  1414. "MIT"
  1415. ],
  1416. "authors": [
  1417. {
  1418. "name": "Jordi Boggiano",
  1419. "email": "j.boggiano@seld.be",
  1420. "homepage": "http://seld.be"
  1421. }
  1422. ],
  1423. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1424. "homepage": "http://github.com/Seldaek/monolog",
  1425. "keywords": [
  1426. "log",
  1427. "logging",
  1428. "psr-3"
  1429. ],
  1430. "support": {
  1431. "issues": "https://github.com/Seldaek/monolog/issues",
  1432. "source": "https://github.com/Seldaek/monolog/tree/1.25.5"
  1433. },
  1434. "funding": [
  1435. {
  1436. "url": "https://github.com/Seldaek",
  1437. "type": "github"
  1438. },
  1439. {
  1440. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1441. "type": "tidelift"
  1442. }
  1443. ],
  1444. "time": "2020-07-23T08:35:51+00:00"
  1445. },
  1446. {
  1447. "name": "nesbot/carbon",
  1448. "version": "2.42.0",
  1449. "source": {
  1450. "type": "git",
  1451. "url": "https://github.com/briannesbitt/Carbon.git",
  1452. "reference": "d0463779663437392fe42ff339ebc0213bd55498"
  1453. },
  1454. "dist": {
  1455. "type": "zip",
  1456. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d0463779663437392fe42ff339ebc0213bd55498",
  1457. "reference": "d0463779663437392fe42ff339ebc0213bd55498",
  1458. "shasum": ""
  1459. },
  1460. "require": {
  1461. "ext-json": "*",
  1462. "php": "^7.1.8 || ^8.0",
  1463. "symfony/polyfill-mbstring": "^1.0",
  1464. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  1465. },
  1466. "require-dev": {
  1467. "doctrine/orm": "^2.7",
  1468. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1469. "kylekatarnls/multi-tester": "^2.0",
  1470. "phpmd/phpmd": "^2.9",
  1471. "phpstan/extension-installer": "^1.0",
  1472. "phpstan/phpstan": "^0.12.54",
  1473. "phpunit/phpunit": "^7.5 || ^8.0",
  1474. "squizlabs/php_codesniffer": "^3.4"
  1475. },
  1476. "bin": [
  1477. "bin/carbon"
  1478. ],
  1479. "type": "library",
  1480. "extra": {
  1481. "branch-alias": {
  1482. "dev-master": "2.x-dev",
  1483. "dev-3.x": "3.x-dev"
  1484. },
  1485. "laravel": {
  1486. "providers": [
  1487. "Carbon\\Laravel\\ServiceProvider"
  1488. ]
  1489. },
  1490. "phpstan": {
  1491. "includes": [
  1492. "extension.neon"
  1493. ]
  1494. }
  1495. },
  1496. "autoload": {
  1497. "psr-4": {
  1498. "Carbon\\": "src/Carbon/"
  1499. }
  1500. },
  1501. "notification-url": "https://packagist.org/downloads/",
  1502. "license": [
  1503. "MIT"
  1504. ],
  1505. "authors": [
  1506. {
  1507. "name": "Brian Nesbitt",
  1508. "email": "brian@nesbot.com",
  1509. "homepage": "http://nesbot.com"
  1510. },
  1511. {
  1512. "name": "kylekatarnls",
  1513. "homepage": "http://github.com/kylekatarnls"
  1514. }
  1515. ],
  1516. "description": "An API extension for DateTime that supports 281 different languages.",
  1517. "homepage": "http://carbon.nesbot.com",
  1518. "keywords": [
  1519. "date",
  1520. "datetime",
  1521. "time"
  1522. ],
  1523. "support": {
  1524. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1525. "source": "https://github.com/briannesbitt/Carbon"
  1526. },
  1527. "funding": [
  1528. {
  1529. "url": "https://opencollective.com/Carbon",
  1530. "type": "open_collective"
  1531. },
  1532. {
  1533. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1534. "type": "tidelift"
  1535. }
  1536. ],
  1537. "time": "2020-11-28T14:25:28+00:00"
  1538. },
  1539. {
  1540. "name": "nikic/php-parser",
  1541. "version": "v4.10.2",
  1542. "source": {
  1543. "type": "git",
  1544. "url": "https://github.com/nikic/PHP-Parser.git",
  1545. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  1546. },
  1547. "dist": {
  1548. "type": "zip",
  1549. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  1550. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  1551. "shasum": ""
  1552. },
  1553. "require": {
  1554. "ext-tokenizer": "*",
  1555. "php": ">=7.0"
  1556. },
  1557. "require-dev": {
  1558. "ircmaxell/php-yacc": "^0.0.7",
  1559. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1560. },
  1561. "bin": [
  1562. "bin/php-parse"
  1563. ],
  1564. "type": "library",
  1565. "extra": {
  1566. "branch-alias": {
  1567. "dev-master": "4.9-dev"
  1568. }
  1569. },
  1570. "autoload": {
  1571. "psr-4": {
  1572. "PhpParser\\": "lib/PhpParser"
  1573. }
  1574. },
  1575. "notification-url": "https://packagist.org/downloads/",
  1576. "license": [
  1577. "BSD-3-Clause"
  1578. ],
  1579. "authors": [
  1580. {
  1581. "name": "Nikita Popov"
  1582. }
  1583. ],
  1584. "description": "A PHP parser written in PHP",
  1585. "keywords": [
  1586. "parser",
  1587. "php"
  1588. ],
  1589. "support": {
  1590. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1591. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.2"
  1592. },
  1593. "time": "2020-09-26T10:30:38+00:00"
  1594. },
  1595. {
  1596. "name": "opis/closure",
  1597. "version": "3.6.1",
  1598. "source": {
  1599. "type": "git",
  1600. "url": "https://github.com/opis/closure.git",
  1601. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  1602. },
  1603. "dist": {
  1604. "type": "zip",
  1605. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  1606. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  1607. "shasum": ""
  1608. },
  1609. "require": {
  1610. "php": "^5.4 || ^7.0 || ^8.0"
  1611. },
  1612. "require-dev": {
  1613. "jeremeamia/superclosure": "^2.0",
  1614. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1615. },
  1616. "type": "library",
  1617. "extra": {
  1618. "branch-alias": {
  1619. "dev-master": "3.6.x-dev"
  1620. }
  1621. },
  1622. "autoload": {
  1623. "psr-4": {
  1624. "Opis\\Closure\\": "src/"
  1625. },
  1626. "files": [
  1627. "functions.php"
  1628. ]
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Marius Sarca",
  1637. "email": "marius.sarca@gmail.com"
  1638. },
  1639. {
  1640. "name": "Sorin Sarca",
  1641. "email": "sarca_sorin@hotmail.com"
  1642. }
  1643. ],
  1644. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1645. "homepage": "https://opis.io/closure",
  1646. "keywords": [
  1647. "anonymous functions",
  1648. "closure",
  1649. "function",
  1650. "serializable",
  1651. "serialization",
  1652. "serialize"
  1653. ],
  1654. "support": {
  1655. "issues": "https://github.com/opis/closure/issues",
  1656. "source": "https://github.com/opis/closure/tree/3.6.1"
  1657. },
  1658. "time": "2020-11-07T02:01:34+00:00"
  1659. },
  1660. {
  1661. "name": "overtrue/laravel-lang",
  1662. "version": "3.0.17",
  1663. "source": {
  1664. "type": "git",
  1665. "url": "https://github.com/overtrue/laravel-lang.git",
  1666. "reference": "b36ac877da7b44135e1e3368456577c149b2e228"
  1667. },
  1668. "dist": {
  1669. "type": "zip",
  1670. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/b36ac877da7b44135e1e3368456577c149b2e228",
  1671. "reference": "b36ac877da7b44135e1e3368456577c149b2e228",
  1672. "shasum": ""
  1673. },
  1674. "require": {
  1675. "caouecs/laravel-lang": "~4.0",
  1676. "symfony/process": "^3.0|^4.0"
  1677. },
  1678. "type": "library",
  1679. "autoload": {
  1680. "psr-4": {
  1681. "Overtrue\\LaravelLang\\": "src/"
  1682. },
  1683. "files": [
  1684. "src/helpers.php"
  1685. ]
  1686. },
  1687. "notification-url": "https://packagist.org/downloads/",
  1688. "license": [
  1689. "MIT"
  1690. ],
  1691. "authors": [
  1692. {
  1693. "name": "overtrue",
  1694. "email": "anzhengchao@gmail.com"
  1695. }
  1696. ],
  1697. "description": "List of 52 languages for Laravel 5",
  1698. "keywords": [
  1699. "languages",
  1700. "laravel",
  1701. "overtrue"
  1702. ],
  1703. "support": {
  1704. "issues": "https://github.com/overtrue/laravel-lang/issues",
  1705. "source": "https://github.com/overtrue/laravel-lang/tree/3.0.17"
  1706. },
  1707. "time": "2019-09-04T11:04:14+00:00"
  1708. },
  1709. {
  1710. "name": "paragonie/random_compat",
  1711. "version": "v9.99.99",
  1712. "source": {
  1713. "type": "git",
  1714. "url": "https://github.com/paragonie/random_compat.git",
  1715. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1716. },
  1717. "dist": {
  1718. "type": "zip",
  1719. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1720. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1721. "shasum": ""
  1722. },
  1723. "require": {
  1724. "php": "^7"
  1725. },
  1726. "require-dev": {
  1727. "phpunit/phpunit": "4.*|5.*",
  1728. "vimeo/psalm": "^1"
  1729. },
  1730. "suggest": {
  1731. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1732. },
  1733. "type": "library",
  1734. "notification-url": "https://packagist.org/downloads/",
  1735. "license": [
  1736. "MIT"
  1737. ],
  1738. "authors": [
  1739. {
  1740. "name": "Paragon Initiative Enterprises",
  1741. "email": "security@paragonie.com",
  1742. "homepage": "https://paragonie.com"
  1743. }
  1744. ],
  1745. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1746. "keywords": [
  1747. "csprng",
  1748. "polyfill",
  1749. "pseudorandom",
  1750. "random"
  1751. ],
  1752. "support": {
  1753. "email": "info@paragonie.com",
  1754. "issues": "https://github.com/paragonie/random_compat/issues",
  1755. "source": "https://github.com/paragonie/random_compat"
  1756. },
  1757. "time": "2018-07-02T15:55:56+00:00"
  1758. },
  1759. {
  1760. "name": "phpoption/phpoption",
  1761. "version": "1.7.5",
  1762. "source": {
  1763. "type": "git",
  1764. "url": "https://github.com/schmittjoh/php-option.git",
  1765. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  1766. },
  1767. "dist": {
  1768. "type": "zip",
  1769. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  1770. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  1771. "shasum": ""
  1772. },
  1773. "require": {
  1774. "php": "^5.5.9 || ^7.0 || ^8.0"
  1775. },
  1776. "require-dev": {
  1777. "bamarni/composer-bin-plugin": "^1.4.1",
  1778. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  1779. },
  1780. "type": "library",
  1781. "extra": {
  1782. "branch-alias": {
  1783. "dev-master": "1.7-dev"
  1784. }
  1785. },
  1786. "autoload": {
  1787. "psr-4": {
  1788. "PhpOption\\": "src/PhpOption/"
  1789. }
  1790. },
  1791. "notification-url": "https://packagist.org/downloads/",
  1792. "license": [
  1793. "Apache-2.0"
  1794. ],
  1795. "authors": [
  1796. {
  1797. "name": "Johannes M. Schmitt",
  1798. "email": "schmittjoh@gmail.com"
  1799. },
  1800. {
  1801. "name": "Graham Campbell",
  1802. "email": "graham@alt-three.com"
  1803. }
  1804. ],
  1805. "description": "Option Type for PHP",
  1806. "keywords": [
  1807. "language",
  1808. "option",
  1809. "php",
  1810. "type"
  1811. ],
  1812. "support": {
  1813. "issues": "https://github.com/schmittjoh/php-option/issues",
  1814. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  1815. },
  1816. "funding": [
  1817. {
  1818. "url": "https://github.com/GrahamCampbell",
  1819. "type": "github"
  1820. },
  1821. {
  1822. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1823. "type": "tidelift"
  1824. }
  1825. ],
  1826. "time": "2020-07-20T17:29:33+00:00"
  1827. },
  1828. {
  1829. "name": "psr/container",
  1830. "version": "1.0.0",
  1831. "source": {
  1832. "type": "git",
  1833. "url": "https://github.com/php-fig/container.git",
  1834. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1835. },
  1836. "dist": {
  1837. "type": "zip",
  1838. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1839. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1840. "shasum": ""
  1841. },
  1842. "require": {
  1843. "php": ">=5.3.0"
  1844. },
  1845. "type": "library",
  1846. "extra": {
  1847. "branch-alias": {
  1848. "dev-master": "1.0.x-dev"
  1849. }
  1850. },
  1851. "autoload": {
  1852. "psr-4": {
  1853. "Psr\\Container\\": "src/"
  1854. }
  1855. },
  1856. "notification-url": "https://packagist.org/downloads/",
  1857. "license": [
  1858. "MIT"
  1859. ],
  1860. "authors": [
  1861. {
  1862. "name": "PHP-FIG",
  1863. "homepage": "http://www.php-fig.org/"
  1864. }
  1865. ],
  1866. "description": "Common Container Interface (PHP FIG PSR-11)",
  1867. "homepage": "https://github.com/php-fig/container",
  1868. "keywords": [
  1869. "PSR-11",
  1870. "container",
  1871. "container-interface",
  1872. "container-interop",
  1873. "psr"
  1874. ],
  1875. "support": {
  1876. "issues": "https://github.com/php-fig/container/issues",
  1877. "source": "https://github.com/php-fig/container/tree/master"
  1878. },
  1879. "time": "2017-02-14T16:28:37+00:00"
  1880. },
  1881. {
  1882. "name": "psr/log",
  1883. "version": "1.1.3",
  1884. "source": {
  1885. "type": "git",
  1886. "url": "https://github.com/php-fig/log.git",
  1887. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  1888. },
  1889. "dist": {
  1890. "type": "zip",
  1891. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  1892. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  1893. "shasum": ""
  1894. },
  1895. "require": {
  1896. "php": ">=5.3.0"
  1897. },
  1898. "type": "library",
  1899. "extra": {
  1900. "branch-alias": {
  1901. "dev-master": "1.1.x-dev"
  1902. }
  1903. },
  1904. "autoload": {
  1905. "psr-4": {
  1906. "Psr\\Log\\": "Psr/Log/"
  1907. }
  1908. },
  1909. "notification-url": "https://packagist.org/downloads/",
  1910. "license": [
  1911. "MIT"
  1912. ],
  1913. "authors": [
  1914. {
  1915. "name": "PHP-FIG",
  1916. "homepage": "http://www.php-fig.org/"
  1917. }
  1918. ],
  1919. "description": "Common interface for logging libraries",
  1920. "homepage": "https://github.com/php-fig/log",
  1921. "keywords": [
  1922. "log",
  1923. "psr",
  1924. "psr-3"
  1925. ],
  1926. "support": {
  1927. "source": "https://github.com/php-fig/log/tree/1.1.3"
  1928. },
  1929. "time": "2020-03-23T09:12:05+00:00"
  1930. },
  1931. {
  1932. "name": "psr/simple-cache",
  1933. "version": "1.0.1",
  1934. "source": {
  1935. "type": "git",
  1936. "url": "https://github.com/php-fig/simple-cache.git",
  1937. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1938. },
  1939. "dist": {
  1940. "type": "zip",
  1941. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1942. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1943. "shasum": ""
  1944. },
  1945. "require": {
  1946. "php": ">=5.3.0"
  1947. },
  1948. "type": "library",
  1949. "extra": {
  1950. "branch-alias": {
  1951. "dev-master": "1.0.x-dev"
  1952. }
  1953. },
  1954. "autoload": {
  1955. "psr-4": {
  1956. "Psr\\SimpleCache\\": "src/"
  1957. }
  1958. },
  1959. "notification-url": "https://packagist.org/downloads/",
  1960. "license": [
  1961. "MIT"
  1962. ],
  1963. "authors": [
  1964. {
  1965. "name": "PHP-FIG",
  1966. "homepage": "http://www.php-fig.org/"
  1967. }
  1968. ],
  1969. "description": "Common interfaces for simple caching",
  1970. "keywords": [
  1971. "cache",
  1972. "caching",
  1973. "psr",
  1974. "psr-16",
  1975. "simple-cache"
  1976. ],
  1977. "support": {
  1978. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1979. },
  1980. "time": "2017-10-23T01:57:42+00:00"
  1981. },
  1982. {
  1983. "name": "psy/psysh",
  1984. "version": "v0.9.12",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/bobthecow/psysh.git",
  1988. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  1993. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  1994. "shasum": ""
  1995. },
  1996. "require": {
  1997. "dnoegel/php-xdg-base-dir": "0.1.*",
  1998. "ext-json": "*",
  1999. "ext-tokenizer": "*",
  2000. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  2001. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  2002. "php": ">=5.4.0",
  2003. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  2004. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  2005. },
  2006. "require-dev": {
  2007. "bamarni/composer-bin-plugin": "^1.2",
  2008. "hoa/console": "~2.15|~3.16",
  2009. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  2010. },
  2011. "suggest": {
  2012. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2013. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2014. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2015. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2016. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2017. },
  2018. "bin": [
  2019. "bin/psysh"
  2020. ],
  2021. "type": "library",
  2022. "extra": {
  2023. "branch-alias": {
  2024. "dev-develop": "0.9.x-dev"
  2025. }
  2026. },
  2027. "autoload": {
  2028. "files": [
  2029. "src/functions.php"
  2030. ],
  2031. "psr-4": {
  2032. "Psy\\": "src/"
  2033. }
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "MIT"
  2038. ],
  2039. "authors": [
  2040. {
  2041. "name": "Justin Hileman",
  2042. "email": "justin@justinhileman.info",
  2043. "homepage": "http://justinhileman.com"
  2044. }
  2045. ],
  2046. "description": "An interactive shell for modern PHP.",
  2047. "homepage": "http://psysh.org",
  2048. "keywords": [
  2049. "REPL",
  2050. "console",
  2051. "interactive",
  2052. "shell"
  2053. ],
  2054. "support": {
  2055. "issues": "https://github.com/bobthecow/psysh/issues",
  2056. "source": "https://github.com/bobthecow/psysh/tree/v0.9.12"
  2057. },
  2058. "time": "2019-12-06T14:19:43+00:00"
  2059. },
  2060. {
  2061. "name": "ramsey/uuid",
  2062. "version": "3.9.3",
  2063. "source": {
  2064. "type": "git",
  2065. "url": "https://github.com/ramsey/uuid.git",
  2066. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
  2067. },
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
  2071. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
  2072. "shasum": ""
  2073. },
  2074. "require": {
  2075. "ext-json": "*",
  2076. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  2077. "php": "^5.4 | ^7 | ^8",
  2078. "symfony/polyfill-ctype": "^1.8"
  2079. },
  2080. "replace": {
  2081. "rhumsaa/uuid": "self.version"
  2082. },
  2083. "require-dev": {
  2084. "codeception/aspect-mock": "^1 | ^2",
  2085. "doctrine/annotations": "^1.2",
  2086. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  2087. "jakub-onderka/php-parallel-lint": "^1",
  2088. "mockery/mockery": "^0.9.11 | ^1",
  2089. "moontoast/math": "^1.1",
  2090. "paragonie/random-lib": "^2",
  2091. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  2092. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  2093. "squizlabs/php_codesniffer": "^3.5"
  2094. },
  2095. "suggest": {
  2096. "ext-ctype": "Provides support for PHP Ctype functions",
  2097. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2098. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  2099. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2100. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2101. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2102. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2103. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2104. },
  2105. "type": "library",
  2106. "extra": {
  2107. "branch-alias": {
  2108. "dev-master": "3.x-dev"
  2109. }
  2110. },
  2111. "autoload": {
  2112. "psr-4": {
  2113. "Ramsey\\Uuid\\": "src/"
  2114. },
  2115. "files": [
  2116. "src/functions.php"
  2117. ]
  2118. },
  2119. "notification-url": "https://packagist.org/downloads/",
  2120. "license": [
  2121. "MIT"
  2122. ],
  2123. "authors": [
  2124. {
  2125. "name": "Ben Ramsey",
  2126. "email": "ben@benramsey.com",
  2127. "homepage": "https://benramsey.com"
  2128. },
  2129. {
  2130. "name": "Marijn Huizendveld",
  2131. "email": "marijn.huizendveld@gmail.com"
  2132. },
  2133. {
  2134. "name": "Thibaud Fabre",
  2135. "email": "thibaud@aztech.io"
  2136. }
  2137. ],
  2138. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2139. "homepage": "https://github.com/ramsey/uuid",
  2140. "keywords": [
  2141. "guid",
  2142. "identifier",
  2143. "uuid"
  2144. ],
  2145. "support": {
  2146. "issues": "https://github.com/ramsey/uuid/issues",
  2147. "rss": "https://github.com/ramsey/uuid/releases.atom",
  2148. "source": "https://github.com/ramsey/uuid",
  2149. "wiki": "https://github.com/ramsey/uuid/wiki"
  2150. },
  2151. "time": "2020-02-21T04:36:14+00:00"
  2152. },
  2153. {
  2154. "name": "swiftmailer/swiftmailer",
  2155. "version": "v6.2.3",
  2156. "source": {
  2157. "type": "git",
  2158. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2159. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  2160. },
  2161. "dist": {
  2162. "type": "zip",
  2163. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  2164. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  2165. "shasum": ""
  2166. },
  2167. "require": {
  2168. "egulias/email-validator": "~2.0",
  2169. "php": ">=7.0.0",
  2170. "symfony/polyfill-iconv": "^1.0",
  2171. "symfony/polyfill-intl-idn": "^1.10",
  2172. "symfony/polyfill-mbstring": "^1.0"
  2173. },
  2174. "require-dev": {
  2175. "mockery/mockery": "~0.9.1",
  2176. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2177. },
  2178. "suggest": {
  2179. "ext-intl": "Needed to support internationalized email addresses",
  2180. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2181. },
  2182. "type": "library",
  2183. "extra": {
  2184. "branch-alias": {
  2185. "dev-master": "6.2-dev"
  2186. }
  2187. },
  2188. "autoload": {
  2189. "files": [
  2190. "lib/swift_required.php"
  2191. ]
  2192. },
  2193. "notification-url": "https://packagist.org/downloads/",
  2194. "license": [
  2195. "MIT"
  2196. ],
  2197. "authors": [
  2198. {
  2199. "name": "Chris Corbyn"
  2200. },
  2201. {
  2202. "name": "Fabien Potencier",
  2203. "email": "fabien@symfony.com"
  2204. }
  2205. ],
  2206. "description": "Swiftmailer, free feature-rich PHP mailer",
  2207. "homepage": "https://swiftmailer.symfony.com",
  2208. "keywords": [
  2209. "email",
  2210. "mail",
  2211. "mailer"
  2212. ],
  2213. "support": {
  2214. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2215. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.3"
  2216. },
  2217. "time": "2019-11-12T09:31:26+00:00"
  2218. },
  2219. {
  2220. "name": "symfony/console",
  2221. "version": "v4.4.17",
  2222. "source": {
  2223. "type": "git",
  2224. "url": "https://github.com/symfony/console.git",
  2225. "reference": "c8e37f6928c19816437a4dd7bf16e3bd79941470"
  2226. },
  2227. "dist": {
  2228. "type": "zip",
  2229. "url": "https://api.github.com/repos/symfony/console/zipball/c8e37f6928c19816437a4dd7bf16e3bd79941470",
  2230. "reference": "c8e37f6928c19816437a4dd7bf16e3bd79941470",
  2231. "shasum": ""
  2232. },
  2233. "require": {
  2234. "php": ">=7.1.3",
  2235. "symfony/polyfill-mbstring": "~1.0",
  2236. "symfony/polyfill-php73": "^1.8",
  2237. "symfony/polyfill-php80": "^1.15",
  2238. "symfony/service-contracts": "^1.1|^2"
  2239. },
  2240. "conflict": {
  2241. "symfony/dependency-injection": "<3.4",
  2242. "symfony/event-dispatcher": "<4.3|>=5",
  2243. "symfony/lock": "<4.4",
  2244. "symfony/process": "<3.3"
  2245. },
  2246. "provide": {
  2247. "psr/log-implementation": "1.0"
  2248. },
  2249. "require-dev": {
  2250. "psr/log": "~1.0",
  2251. "symfony/config": "^3.4|^4.0|^5.0",
  2252. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2253. "symfony/event-dispatcher": "^4.3",
  2254. "symfony/lock": "^4.4|^5.0",
  2255. "symfony/process": "^3.4|^4.0|^5.0",
  2256. "symfony/var-dumper": "^4.3|^5.0"
  2257. },
  2258. "suggest": {
  2259. "psr/log": "For using the console logger",
  2260. "symfony/event-dispatcher": "",
  2261. "symfony/lock": "",
  2262. "symfony/process": ""
  2263. },
  2264. "type": "library",
  2265. "autoload": {
  2266. "psr-4": {
  2267. "Symfony\\Component\\Console\\": ""
  2268. },
  2269. "exclude-from-classmap": [
  2270. "/Tests/"
  2271. ]
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "MIT"
  2276. ],
  2277. "authors": [
  2278. {
  2279. "name": "Fabien Potencier",
  2280. "email": "fabien@symfony.com"
  2281. },
  2282. {
  2283. "name": "Symfony Community",
  2284. "homepage": "https://symfony.com/contributors"
  2285. }
  2286. ],
  2287. "description": "Symfony Console Component",
  2288. "homepage": "https://symfony.com",
  2289. "support": {
  2290. "source": "https://github.com/symfony/console/tree/v4.4.17"
  2291. },
  2292. "funding": [
  2293. {
  2294. "url": "https://symfony.com/sponsor",
  2295. "type": "custom"
  2296. },
  2297. {
  2298. "url": "https://github.com/fabpot",
  2299. "type": "github"
  2300. },
  2301. {
  2302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2303. "type": "tidelift"
  2304. }
  2305. ],
  2306. "time": "2020-11-28T10:15:42+00:00"
  2307. },
  2308. {
  2309. "name": "symfony/css-selector",
  2310. "version": "v5.1.9",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://github.com/symfony/css-selector.git",
  2314. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  2319. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  2320. "shasum": ""
  2321. },
  2322. "require": {
  2323. "php": ">=7.2.5"
  2324. },
  2325. "type": "library",
  2326. "autoload": {
  2327. "psr-4": {
  2328. "Symfony\\Component\\CssSelector\\": ""
  2329. },
  2330. "exclude-from-classmap": [
  2331. "/Tests/"
  2332. ]
  2333. },
  2334. "notification-url": "https://packagist.org/downloads/",
  2335. "license": [
  2336. "MIT"
  2337. ],
  2338. "authors": [
  2339. {
  2340. "name": "Fabien Potencier",
  2341. "email": "fabien@symfony.com"
  2342. },
  2343. {
  2344. "name": "Jean-François Simon",
  2345. "email": "jeanfrancois.simon@sensiolabs.com"
  2346. },
  2347. {
  2348. "name": "Symfony Community",
  2349. "homepage": "https://symfony.com/contributors"
  2350. }
  2351. ],
  2352. "description": "Symfony CssSelector Component",
  2353. "homepage": "https://symfony.com",
  2354. "support": {
  2355. "source": "https://github.com/symfony/css-selector/tree/v5.2.0-RC2"
  2356. },
  2357. "funding": [
  2358. {
  2359. "url": "https://symfony.com/sponsor",
  2360. "type": "custom"
  2361. },
  2362. {
  2363. "url": "https://github.com/fabpot",
  2364. "type": "github"
  2365. },
  2366. {
  2367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2368. "type": "tidelift"
  2369. }
  2370. ],
  2371. "time": "2020-10-28T21:31:18+00:00"
  2372. },
  2373. {
  2374. "name": "symfony/debug",
  2375. "version": "v4.4.17",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://github.com/symfony/debug.git",
  2379. "reference": "65fe7b49868378319b82da3035fb30801b931c47"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://api.github.com/repos/symfony/debug/zipball/65fe7b49868378319b82da3035fb30801b931c47",
  2384. "reference": "65fe7b49868378319b82da3035fb30801b931c47",
  2385. "shasum": ""
  2386. },
  2387. "require": {
  2388. "php": ">=7.1.3",
  2389. "psr/log": "~1.0",
  2390. "symfony/polyfill-php80": "^1.15"
  2391. },
  2392. "conflict": {
  2393. "symfony/http-kernel": "<3.4"
  2394. },
  2395. "require-dev": {
  2396. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  2397. },
  2398. "type": "library",
  2399. "autoload": {
  2400. "psr-4": {
  2401. "Symfony\\Component\\Debug\\": ""
  2402. },
  2403. "exclude-from-classmap": [
  2404. "/Tests/"
  2405. ]
  2406. },
  2407. "notification-url": "https://packagist.org/downloads/",
  2408. "license": [
  2409. "MIT"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "Fabien Potencier",
  2414. "email": "fabien@symfony.com"
  2415. },
  2416. {
  2417. "name": "Symfony Community",
  2418. "homepage": "https://symfony.com/contributors"
  2419. }
  2420. ],
  2421. "description": "Symfony Debug Component",
  2422. "homepage": "https://symfony.com",
  2423. "support": {
  2424. "source": "https://github.com/symfony/debug/tree/v4.4.17"
  2425. },
  2426. "funding": [
  2427. {
  2428. "url": "https://symfony.com/sponsor",
  2429. "type": "custom"
  2430. },
  2431. {
  2432. "url": "https://github.com/fabpot",
  2433. "type": "github"
  2434. },
  2435. {
  2436. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2437. "type": "tidelift"
  2438. }
  2439. ],
  2440. "time": "2020-10-28T20:42:29+00:00"
  2441. },
  2442. {
  2443. "name": "symfony/dom-crawler",
  2444. "version": "v5.1.9",
  2445. "source": {
  2446. "type": "git",
  2447. "url": "https://github.com/symfony/dom-crawler.git",
  2448. "reference": "0969122fe144dd8ab2e8c98c7e03eedc621b368c"
  2449. },
  2450. "dist": {
  2451. "type": "zip",
  2452. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/0969122fe144dd8ab2e8c98c7e03eedc621b368c",
  2453. "reference": "0969122fe144dd8ab2e8c98c7e03eedc621b368c",
  2454. "shasum": ""
  2455. },
  2456. "require": {
  2457. "php": ">=7.2.5",
  2458. "symfony/polyfill-ctype": "~1.8",
  2459. "symfony/polyfill-mbstring": "~1.0",
  2460. "symfony/polyfill-php80": "^1.15"
  2461. },
  2462. "conflict": {
  2463. "masterminds/html5": "<2.6"
  2464. },
  2465. "require-dev": {
  2466. "masterminds/html5": "^2.6",
  2467. "symfony/css-selector": "^4.4|^5.0"
  2468. },
  2469. "suggest": {
  2470. "symfony/css-selector": ""
  2471. },
  2472. "type": "library",
  2473. "autoload": {
  2474. "psr-4": {
  2475. "Symfony\\Component\\DomCrawler\\": ""
  2476. },
  2477. "exclude-from-classmap": [
  2478. "/Tests/"
  2479. ]
  2480. },
  2481. "notification-url": "https://packagist.org/downloads/",
  2482. "license": [
  2483. "MIT"
  2484. ],
  2485. "authors": [
  2486. {
  2487. "name": "Fabien Potencier",
  2488. "email": "fabien@symfony.com"
  2489. },
  2490. {
  2491. "name": "Symfony Community",
  2492. "homepage": "https://symfony.com/contributors"
  2493. }
  2494. ],
  2495. "description": "Symfony DomCrawler Component",
  2496. "homepage": "https://symfony.com",
  2497. "support": {
  2498. "source": "https://github.com/symfony/dom-crawler/tree/v5.2.0-RC2"
  2499. },
  2500. "funding": [
  2501. {
  2502. "url": "https://symfony.com/sponsor",
  2503. "type": "custom"
  2504. },
  2505. {
  2506. "url": "https://github.com/fabpot",
  2507. "type": "github"
  2508. },
  2509. {
  2510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2511. "type": "tidelift"
  2512. }
  2513. ],
  2514. "time": "2020-10-24T12:01:57+00:00"
  2515. },
  2516. {
  2517. "name": "symfony/error-handler",
  2518. "version": "v4.4.17",
  2519. "source": {
  2520. "type": "git",
  2521. "url": "https://github.com/symfony/error-handler.git",
  2522. "reference": "b0887cf8fc692eef2a4cf11cee3c5f5eb93fcfdf"
  2523. },
  2524. "dist": {
  2525. "type": "zip",
  2526. "url": "https://api.github.com/repos/symfony/error-handler/zipball/b0887cf8fc692eef2a4cf11cee3c5f5eb93fcfdf",
  2527. "reference": "b0887cf8fc692eef2a4cf11cee3c5f5eb93fcfdf",
  2528. "shasum": ""
  2529. },
  2530. "require": {
  2531. "php": ">=7.1.3",
  2532. "psr/log": "~1.0",
  2533. "symfony/debug": "^4.4.5",
  2534. "symfony/polyfill-php80": "^1.15",
  2535. "symfony/var-dumper": "^4.4|^5.0"
  2536. },
  2537. "require-dev": {
  2538. "symfony/http-kernel": "^4.4|^5.0",
  2539. "symfony/serializer": "^4.4|^5.0"
  2540. },
  2541. "type": "library",
  2542. "autoload": {
  2543. "psr-4": {
  2544. "Symfony\\Component\\ErrorHandler\\": ""
  2545. },
  2546. "exclude-from-classmap": [
  2547. "/Tests/"
  2548. ]
  2549. },
  2550. "notification-url": "https://packagist.org/downloads/",
  2551. "license": [
  2552. "MIT"
  2553. ],
  2554. "authors": [
  2555. {
  2556. "name": "Fabien Potencier",
  2557. "email": "fabien@symfony.com"
  2558. },
  2559. {
  2560. "name": "Symfony Community",
  2561. "homepage": "https://symfony.com/contributors"
  2562. }
  2563. ],
  2564. "description": "Symfony ErrorHandler Component",
  2565. "homepage": "https://symfony.com",
  2566. "support": {
  2567. "source": "https://github.com/symfony/error-handler/tree/v4.4.17"
  2568. },
  2569. "funding": [
  2570. {
  2571. "url": "https://symfony.com/sponsor",
  2572. "type": "custom"
  2573. },
  2574. {
  2575. "url": "https://github.com/fabpot",
  2576. "type": "github"
  2577. },
  2578. {
  2579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2580. "type": "tidelift"
  2581. }
  2582. ],
  2583. "time": "2020-10-28T20:42:29+00:00"
  2584. },
  2585. {
  2586. "name": "symfony/event-dispatcher",
  2587. "version": "v4.4.17",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://github.com/symfony/event-dispatcher.git",
  2591. "reference": "f029d6f21eac61ab23198e7aca40e7638e8c8924"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f029d6f21eac61ab23198e7aca40e7638e8c8924",
  2596. "reference": "f029d6f21eac61ab23198e7aca40e7638e8c8924",
  2597. "shasum": ""
  2598. },
  2599. "require": {
  2600. "php": ">=7.1.3",
  2601. "symfony/event-dispatcher-contracts": "^1.1"
  2602. },
  2603. "conflict": {
  2604. "symfony/dependency-injection": "<3.4"
  2605. },
  2606. "provide": {
  2607. "psr/event-dispatcher-implementation": "1.0",
  2608. "symfony/event-dispatcher-implementation": "1.1"
  2609. },
  2610. "require-dev": {
  2611. "psr/log": "~1.0",
  2612. "symfony/config": "^3.4|^4.0|^5.0",
  2613. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2614. "symfony/error-handler": "~3.4|~4.4",
  2615. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2616. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2617. "symfony/service-contracts": "^1.1|^2",
  2618. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2619. },
  2620. "suggest": {
  2621. "symfony/dependency-injection": "",
  2622. "symfony/http-kernel": ""
  2623. },
  2624. "type": "library",
  2625. "autoload": {
  2626. "psr-4": {
  2627. "Symfony\\Component\\EventDispatcher\\": ""
  2628. },
  2629. "exclude-from-classmap": [
  2630. "/Tests/"
  2631. ]
  2632. },
  2633. "notification-url": "https://packagist.org/downloads/",
  2634. "license": [
  2635. "MIT"
  2636. ],
  2637. "authors": [
  2638. {
  2639. "name": "Fabien Potencier",
  2640. "email": "fabien@symfony.com"
  2641. },
  2642. {
  2643. "name": "Symfony Community",
  2644. "homepage": "https://symfony.com/contributors"
  2645. }
  2646. ],
  2647. "description": "Symfony EventDispatcher Component",
  2648. "homepage": "https://symfony.com",
  2649. "support": {
  2650. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.17"
  2651. },
  2652. "funding": [
  2653. {
  2654. "url": "https://symfony.com/sponsor",
  2655. "type": "custom"
  2656. },
  2657. {
  2658. "url": "https://github.com/fabpot",
  2659. "type": "github"
  2660. },
  2661. {
  2662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2663. "type": "tidelift"
  2664. }
  2665. ],
  2666. "time": "2020-10-31T22:44:29+00:00"
  2667. },
  2668. {
  2669. "name": "symfony/event-dispatcher-contracts",
  2670. "version": "v1.1.9",
  2671. "source": {
  2672. "type": "git",
  2673. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2674. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  2675. },
  2676. "dist": {
  2677. "type": "zip",
  2678. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  2679. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  2680. "shasum": ""
  2681. },
  2682. "require": {
  2683. "php": ">=7.1.3"
  2684. },
  2685. "suggest": {
  2686. "psr/event-dispatcher": "",
  2687. "symfony/event-dispatcher-implementation": ""
  2688. },
  2689. "type": "library",
  2690. "extra": {
  2691. "branch-alias": {
  2692. "dev-master": "1.1-dev"
  2693. },
  2694. "thanks": {
  2695. "name": "symfony/contracts",
  2696. "url": "https://github.com/symfony/contracts"
  2697. }
  2698. },
  2699. "autoload": {
  2700. "psr-4": {
  2701. "Symfony\\Contracts\\EventDispatcher\\": ""
  2702. }
  2703. },
  2704. "notification-url": "https://packagist.org/downloads/",
  2705. "license": [
  2706. "MIT"
  2707. ],
  2708. "authors": [
  2709. {
  2710. "name": "Nicolas Grekas",
  2711. "email": "p@tchwork.com"
  2712. },
  2713. {
  2714. "name": "Symfony Community",
  2715. "homepage": "https://symfony.com/contributors"
  2716. }
  2717. ],
  2718. "description": "Generic abstractions related to dispatching event",
  2719. "homepage": "https://symfony.com",
  2720. "keywords": [
  2721. "abstractions",
  2722. "contracts",
  2723. "decoupling",
  2724. "interfaces",
  2725. "interoperability",
  2726. "standards"
  2727. ],
  2728. "support": {
  2729. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
  2730. },
  2731. "funding": [
  2732. {
  2733. "url": "https://symfony.com/sponsor",
  2734. "type": "custom"
  2735. },
  2736. {
  2737. "url": "https://github.com/fabpot",
  2738. "type": "github"
  2739. },
  2740. {
  2741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2742. "type": "tidelift"
  2743. }
  2744. ],
  2745. "time": "2020-07-06T13:19:58+00:00"
  2746. },
  2747. {
  2748. "name": "symfony/finder",
  2749. "version": "v4.4.17",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://github.com/symfony/finder.git",
  2753. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://api.github.com/repos/symfony/finder/zipball/9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  2758. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  2759. "shasum": ""
  2760. },
  2761. "require": {
  2762. "php": ">=7.1.3"
  2763. },
  2764. "type": "library",
  2765. "autoload": {
  2766. "psr-4": {
  2767. "Symfony\\Component\\Finder\\": ""
  2768. },
  2769. "exclude-from-classmap": [
  2770. "/Tests/"
  2771. ]
  2772. },
  2773. "notification-url": "https://packagist.org/downloads/",
  2774. "license": [
  2775. "MIT"
  2776. ],
  2777. "authors": [
  2778. {
  2779. "name": "Fabien Potencier",
  2780. "email": "fabien@symfony.com"
  2781. },
  2782. {
  2783. "name": "Symfony Community",
  2784. "homepage": "https://symfony.com/contributors"
  2785. }
  2786. ],
  2787. "description": "Symfony Finder Component",
  2788. "homepage": "https://symfony.com",
  2789. "support": {
  2790. "source": "https://github.com/symfony/finder/tree/v4.4.17"
  2791. },
  2792. "funding": [
  2793. {
  2794. "url": "https://symfony.com/sponsor",
  2795. "type": "custom"
  2796. },
  2797. {
  2798. "url": "https://github.com/fabpot",
  2799. "type": "github"
  2800. },
  2801. {
  2802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2803. "type": "tidelift"
  2804. }
  2805. ],
  2806. "time": "2020-11-17T19:45:34+00:00"
  2807. },
  2808. {
  2809. "name": "symfony/http-client-contracts",
  2810. "version": "v2.3.1",
  2811. "source": {
  2812. "type": "git",
  2813. "url": "https://github.com/symfony/http-client-contracts.git",
  2814. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  2815. },
  2816. "dist": {
  2817. "type": "zip",
  2818. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  2819. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  2820. "shasum": ""
  2821. },
  2822. "require": {
  2823. "php": ">=7.2.5"
  2824. },
  2825. "suggest": {
  2826. "symfony/http-client-implementation": ""
  2827. },
  2828. "type": "library",
  2829. "extra": {
  2830. "branch-version": "2.3",
  2831. "branch-alias": {
  2832. "dev-main": "2.3-dev"
  2833. },
  2834. "thanks": {
  2835. "name": "symfony/contracts",
  2836. "url": "https://github.com/symfony/contracts"
  2837. }
  2838. },
  2839. "autoload": {
  2840. "psr-4": {
  2841. "Symfony\\Contracts\\HttpClient\\": ""
  2842. }
  2843. },
  2844. "notification-url": "https://packagist.org/downloads/",
  2845. "license": [
  2846. "MIT"
  2847. ],
  2848. "authors": [
  2849. {
  2850. "name": "Nicolas Grekas",
  2851. "email": "p@tchwork.com"
  2852. },
  2853. {
  2854. "name": "Symfony Community",
  2855. "homepage": "https://symfony.com/contributors"
  2856. }
  2857. ],
  2858. "description": "Generic abstractions related to HTTP clients",
  2859. "homepage": "https://symfony.com",
  2860. "keywords": [
  2861. "abstractions",
  2862. "contracts",
  2863. "decoupling",
  2864. "interfaces",
  2865. "interoperability",
  2866. "standards"
  2867. ],
  2868. "support": {
  2869. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  2870. },
  2871. "funding": [
  2872. {
  2873. "url": "https://symfony.com/sponsor",
  2874. "type": "custom"
  2875. },
  2876. {
  2877. "url": "https://github.com/fabpot",
  2878. "type": "github"
  2879. },
  2880. {
  2881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2882. "type": "tidelift"
  2883. }
  2884. ],
  2885. "time": "2020-10-14T17:08:19+00:00"
  2886. },
  2887. {
  2888. "name": "symfony/http-foundation",
  2889. "version": "v4.4.17",
  2890. "source": {
  2891. "type": "git",
  2892. "url": "https://github.com/symfony/http-foundation.git",
  2893. "reference": "9eeb37ec0ff3049c782ca67041648e28ddd75a94"
  2894. },
  2895. "dist": {
  2896. "type": "zip",
  2897. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9eeb37ec0ff3049c782ca67041648e28ddd75a94",
  2898. "reference": "9eeb37ec0ff3049c782ca67041648e28ddd75a94",
  2899. "shasum": ""
  2900. },
  2901. "require": {
  2902. "php": ">=7.1.3",
  2903. "symfony/mime": "^4.3|^5.0",
  2904. "symfony/polyfill-mbstring": "~1.1"
  2905. },
  2906. "require-dev": {
  2907. "predis/predis": "~1.0",
  2908. "symfony/expression-language": "^3.4|^4.0|^5.0"
  2909. },
  2910. "type": "library",
  2911. "autoload": {
  2912. "psr-4": {
  2913. "Symfony\\Component\\HttpFoundation\\": ""
  2914. },
  2915. "exclude-from-classmap": [
  2916. "/Tests/"
  2917. ]
  2918. },
  2919. "notification-url": "https://packagist.org/downloads/",
  2920. "license": [
  2921. "MIT"
  2922. ],
  2923. "authors": [
  2924. {
  2925. "name": "Fabien Potencier",
  2926. "email": "fabien@symfony.com"
  2927. },
  2928. {
  2929. "name": "Symfony Community",
  2930. "homepage": "https://symfony.com/contributors"
  2931. }
  2932. ],
  2933. "description": "Symfony HttpFoundation Component",
  2934. "homepage": "https://symfony.com",
  2935. "support": {
  2936. "source": "https://github.com/symfony/http-foundation/tree/v4.4.17"
  2937. },
  2938. "funding": [
  2939. {
  2940. "url": "https://symfony.com/sponsor",
  2941. "type": "custom"
  2942. },
  2943. {
  2944. "url": "https://github.com/fabpot",
  2945. "type": "github"
  2946. },
  2947. {
  2948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2949. "type": "tidelift"
  2950. }
  2951. ],
  2952. "time": "2020-11-03T11:58:18+00:00"
  2953. },
  2954. {
  2955. "name": "symfony/http-kernel",
  2956. "version": "v4.4.17",
  2957. "source": {
  2958. "type": "git",
  2959. "url": "https://github.com/symfony/http-kernel.git",
  2960. "reference": "9f5605ee05406d8afa40dc4f2954c6a61de3a984"
  2961. },
  2962. "dist": {
  2963. "type": "zip",
  2964. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f5605ee05406d8afa40dc4f2954c6a61de3a984",
  2965. "reference": "9f5605ee05406d8afa40dc4f2954c6a61de3a984",
  2966. "shasum": ""
  2967. },
  2968. "require": {
  2969. "php": ">=7.1.3",
  2970. "psr/log": "~1.0",
  2971. "symfony/error-handler": "^4.4",
  2972. "symfony/event-dispatcher": "^4.4",
  2973. "symfony/http-client-contracts": "^1.1|^2",
  2974. "symfony/http-foundation": "^4.4|^5.0",
  2975. "symfony/polyfill-ctype": "^1.8",
  2976. "symfony/polyfill-php73": "^1.9",
  2977. "symfony/polyfill-php80": "^1.15"
  2978. },
  2979. "conflict": {
  2980. "symfony/browser-kit": "<4.3",
  2981. "symfony/config": "<3.4",
  2982. "symfony/console": ">=5",
  2983. "symfony/dependency-injection": "<4.3",
  2984. "symfony/translation": "<4.2",
  2985. "twig/twig": "<1.34|<2.4,>=2"
  2986. },
  2987. "provide": {
  2988. "psr/log-implementation": "1.0"
  2989. },
  2990. "require-dev": {
  2991. "psr/cache": "~1.0",
  2992. "symfony/browser-kit": "^4.3|^5.0",
  2993. "symfony/config": "^3.4|^4.0|^5.0",
  2994. "symfony/console": "^3.4|^4.0",
  2995. "symfony/css-selector": "^3.4|^4.0|^5.0",
  2996. "symfony/dependency-injection": "^4.3|^5.0",
  2997. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  2998. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2999. "symfony/finder": "^3.4|^4.0|^5.0",
  3000. "symfony/process": "^3.4|^4.0|^5.0",
  3001. "symfony/routing": "^3.4|^4.0|^5.0",
  3002. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  3003. "symfony/templating": "^3.4|^4.0|^5.0",
  3004. "symfony/translation": "^4.2|^5.0",
  3005. "symfony/translation-contracts": "^1.1|^2",
  3006. "twig/twig": "^1.34|^2.4|^3.0"
  3007. },
  3008. "suggest": {
  3009. "symfony/browser-kit": "",
  3010. "symfony/config": "",
  3011. "symfony/console": "",
  3012. "symfony/dependency-injection": ""
  3013. },
  3014. "type": "library",
  3015. "autoload": {
  3016. "psr-4": {
  3017. "Symfony\\Component\\HttpKernel\\": ""
  3018. },
  3019. "exclude-from-classmap": [
  3020. "/Tests/"
  3021. ]
  3022. },
  3023. "notification-url": "https://packagist.org/downloads/",
  3024. "license": [
  3025. "MIT"
  3026. ],
  3027. "authors": [
  3028. {
  3029. "name": "Fabien Potencier",
  3030. "email": "fabien@symfony.com"
  3031. },
  3032. {
  3033. "name": "Symfony Community",
  3034. "homepage": "https://symfony.com/contributors"
  3035. }
  3036. ],
  3037. "description": "Symfony HttpKernel Component",
  3038. "homepage": "https://symfony.com",
  3039. "support": {
  3040. "source": "https://github.com/symfony/http-kernel/tree/v4.4.17"
  3041. },
  3042. "funding": [
  3043. {
  3044. "url": "https://symfony.com/sponsor",
  3045. "type": "custom"
  3046. },
  3047. {
  3048. "url": "https://github.com/fabpot",
  3049. "type": "github"
  3050. },
  3051. {
  3052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3053. "type": "tidelift"
  3054. }
  3055. ],
  3056. "time": "2020-11-29T09:23:08+00:00"
  3057. },
  3058. {
  3059. "name": "symfony/mime",
  3060. "version": "v5.1.9",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://github.com/symfony/mime.git",
  3064. "reference": "698cab643bbb517a0d9d317e2ec9fc1636e97f1f"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://api.github.com/repos/symfony/mime/zipball/698cab643bbb517a0d9d317e2ec9fc1636e97f1f",
  3069. "reference": "698cab643bbb517a0d9d317e2ec9fc1636e97f1f",
  3070. "shasum": ""
  3071. },
  3072. "require": {
  3073. "php": ">=7.2.5",
  3074. "symfony/polyfill-intl-idn": "^1.10",
  3075. "symfony/polyfill-mbstring": "^1.0",
  3076. "symfony/polyfill-php80": "^1.15"
  3077. },
  3078. "conflict": {
  3079. "symfony/mailer": "<4.4"
  3080. },
  3081. "require-dev": {
  3082. "egulias/email-validator": "^2.1.10",
  3083. "symfony/dependency-injection": "^4.4|^5.0"
  3084. },
  3085. "type": "library",
  3086. "autoload": {
  3087. "psr-4": {
  3088. "Symfony\\Component\\Mime\\": ""
  3089. },
  3090. "exclude-from-classmap": [
  3091. "/Tests/"
  3092. ]
  3093. },
  3094. "notification-url": "https://packagist.org/downloads/",
  3095. "license": [
  3096. "MIT"
  3097. ],
  3098. "authors": [
  3099. {
  3100. "name": "Fabien Potencier",
  3101. "email": "fabien@symfony.com"
  3102. },
  3103. {
  3104. "name": "Symfony Community",
  3105. "homepage": "https://symfony.com/contributors"
  3106. }
  3107. ],
  3108. "description": "A library to manipulate MIME messages",
  3109. "homepage": "https://symfony.com",
  3110. "keywords": [
  3111. "mime",
  3112. "mime-type"
  3113. ],
  3114. "support": {
  3115. "source": "https://github.com/symfony/mime/tree/v5.1.9"
  3116. },
  3117. "funding": [
  3118. {
  3119. "url": "https://symfony.com/sponsor",
  3120. "type": "custom"
  3121. },
  3122. {
  3123. "url": "https://github.com/fabpot",
  3124. "type": "github"
  3125. },
  3126. {
  3127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3128. "type": "tidelift"
  3129. }
  3130. ],
  3131. "time": "2020-10-28T21:31:18+00:00"
  3132. },
  3133. {
  3134. "name": "symfony/polyfill-ctype",
  3135. "version": "v1.20.0",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://github.com/symfony/polyfill-ctype.git",
  3139. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  3144. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  3145. "shasum": ""
  3146. },
  3147. "require": {
  3148. "php": ">=7.1"
  3149. },
  3150. "suggest": {
  3151. "ext-ctype": "For best performance"
  3152. },
  3153. "type": "library",
  3154. "extra": {
  3155. "branch-alias": {
  3156. "dev-main": "1.20-dev"
  3157. },
  3158. "thanks": {
  3159. "name": "symfony/polyfill",
  3160. "url": "https://github.com/symfony/polyfill"
  3161. }
  3162. },
  3163. "autoload": {
  3164. "psr-4": {
  3165. "Symfony\\Polyfill\\Ctype\\": ""
  3166. },
  3167. "files": [
  3168. "bootstrap.php"
  3169. ]
  3170. },
  3171. "notification-url": "https://packagist.org/downloads/",
  3172. "license": [
  3173. "MIT"
  3174. ],
  3175. "authors": [
  3176. {
  3177. "name": "Gert de Pagter",
  3178. "email": "BackEndTea@gmail.com"
  3179. },
  3180. {
  3181. "name": "Symfony Community",
  3182. "homepage": "https://symfony.com/contributors"
  3183. }
  3184. ],
  3185. "description": "Symfony polyfill for ctype functions",
  3186. "homepage": "https://symfony.com",
  3187. "keywords": [
  3188. "compatibility",
  3189. "ctype",
  3190. "polyfill",
  3191. "portable"
  3192. ],
  3193. "support": {
  3194. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  3195. },
  3196. "funding": [
  3197. {
  3198. "url": "https://symfony.com/sponsor",
  3199. "type": "custom"
  3200. },
  3201. {
  3202. "url": "https://github.com/fabpot",
  3203. "type": "github"
  3204. },
  3205. {
  3206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3207. "type": "tidelift"
  3208. }
  3209. ],
  3210. "time": "2020-10-23T14:02:19+00:00"
  3211. },
  3212. {
  3213. "name": "symfony/polyfill-iconv",
  3214. "version": "v1.20.0",
  3215. "source": {
  3216. "type": "git",
  3217. "url": "https://github.com/symfony/polyfill-iconv.git",
  3218. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  3219. },
  3220. "dist": {
  3221. "type": "zip",
  3222. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  3223. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  3224. "shasum": ""
  3225. },
  3226. "require": {
  3227. "php": ">=7.1"
  3228. },
  3229. "suggest": {
  3230. "ext-iconv": "For best performance"
  3231. },
  3232. "type": "library",
  3233. "extra": {
  3234. "branch-alias": {
  3235. "dev-main": "1.20-dev"
  3236. },
  3237. "thanks": {
  3238. "name": "symfony/polyfill",
  3239. "url": "https://github.com/symfony/polyfill"
  3240. }
  3241. },
  3242. "autoload": {
  3243. "psr-4": {
  3244. "Symfony\\Polyfill\\Iconv\\": ""
  3245. },
  3246. "files": [
  3247. "bootstrap.php"
  3248. ]
  3249. },
  3250. "notification-url": "https://packagist.org/downloads/",
  3251. "license": [
  3252. "MIT"
  3253. ],
  3254. "authors": [
  3255. {
  3256. "name": "Nicolas Grekas",
  3257. "email": "p@tchwork.com"
  3258. },
  3259. {
  3260. "name": "Symfony Community",
  3261. "homepage": "https://symfony.com/contributors"
  3262. }
  3263. ],
  3264. "description": "Symfony polyfill for the Iconv extension",
  3265. "homepage": "https://symfony.com",
  3266. "keywords": [
  3267. "compatibility",
  3268. "iconv",
  3269. "polyfill",
  3270. "portable",
  3271. "shim"
  3272. ],
  3273. "support": {
  3274. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  3275. },
  3276. "funding": [
  3277. {
  3278. "url": "https://symfony.com/sponsor",
  3279. "type": "custom"
  3280. },
  3281. {
  3282. "url": "https://github.com/fabpot",
  3283. "type": "github"
  3284. },
  3285. {
  3286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3287. "type": "tidelift"
  3288. }
  3289. ],
  3290. "time": "2020-10-23T14:02:19+00:00"
  3291. },
  3292. {
  3293. "name": "symfony/polyfill-intl-idn",
  3294. "version": "v1.20.0",
  3295. "source": {
  3296. "type": "git",
  3297. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3298. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  3299. },
  3300. "dist": {
  3301. "type": "zip",
  3302. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  3303. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  3304. "shasum": ""
  3305. },
  3306. "require": {
  3307. "php": ">=7.1",
  3308. "symfony/polyfill-intl-normalizer": "^1.10",
  3309. "symfony/polyfill-php72": "^1.10"
  3310. },
  3311. "suggest": {
  3312. "ext-intl": "For best performance"
  3313. },
  3314. "type": "library",
  3315. "extra": {
  3316. "branch-alias": {
  3317. "dev-main": "1.20-dev"
  3318. },
  3319. "thanks": {
  3320. "name": "symfony/polyfill",
  3321. "url": "https://github.com/symfony/polyfill"
  3322. }
  3323. },
  3324. "autoload": {
  3325. "psr-4": {
  3326. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3327. },
  3328. "files": [
  3329. "bootstrap.php"
  3330. ]
  3331. },
  3332. "notification-url": "https://packagist.org/downloads/",
  3333. "license": [
  3334. "MIT"
  3335. ],
  3336. "authors": [
  3337. {
  3338. "name": "Laurent Bassin",
  3339. "email": "laurent@bassin.info"
  3340. },
  3341. {
  3342. "name": "Trevor Rowbotham",
  3343. "email": "trevor.rowbotham@pm.me"
  3344. },
  3345. {
  3346. "name": "Symfony Community",
  3347. "homepage": "https://symfony.com/contributors"
  3348. }
  3349. ],
  3350. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3351. "homepage": "https://symfony.com",
  3352. "keywords": [
  3353. "compatibility",
  3354. "idn",
  3355. "intl",
  3356. "polyfill",
  3357. "portable",
  3358. "shim"
  3359. ],
  3360. "support": {
  3361. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  3362. },
  3363. "funding": [
  3364. {
  3365. "url": "https://symfony.com/sponsor",
  3366. "type": "custom"
  3367. },
  3368. {
  3369. "url": "https://github.com/fabpot",
  3370. "type": "github"
  3371. },
  3372. {
  3373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3374. "type": "tidelift"
  3375. }
  3376. ],
  3377. "time": "2020-10-23T14:02:19+00:00"
  3378. },
  3379. {
  3380. "name": "symfony/polyfill-intl-normalizer",
  3381. "version": "v1.20.0",
  3382. "source": {
  3383. "type": "git",
  3384. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3385. "reference": "727d1096295d807c309fb01a851577302394c897"
  3386. },
  3387. "dist": {
  3388. "type": "zip",
  3389. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  3390. "reference": "727d1096295d807c309fb01a851577302394c897",
  3391. "shasum": ""
  3392. },
  3393. "require": {
  3394. "php": ">=7.1"
  3395. },
  3396. "suggest": {
  3397. "ext-intl": "For best performance"
  3398. },
  3399. "type": "library",
  3400. "extra": {
  3401. "branch-alias": {
  3402. "dev-main": "1.20-dev"
  3403. },
  3404. "thanks": {
  3405. "name": "symfony/polyfill",
  3406. "url": "https://github.com/symfony/polyfill"
  3407. }
  3408. },
  3409. "autoload": {
  3410. "psr-4": {
  3411. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3412. },
  3413. "files": [
  3414. "bootstrap.php"
  3415. ],
  3416. "classmap": [
  3417. "Resources/stubs"
  3418. ]
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "Nicolas Grekas",
  3427. "email": "p@tchwork.com"
  3428. },
  3429. {
  3430. "name": "Symfony Community",
  3431. "homepage": "https://symfony.com/contributors"
  3432. }
  3433. ],
  3434. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3435. "homepage": "https://symfony.com",
  3436. "keywords": [
  3437. "compatibility",
  3438. "intl",
  3439. "normalizer",
  3440. "polyfill",
  3441. "portable",
  3442. "shim"
  3443. ],
  3444. "support": {
  3445. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  3446. },
  3447. "funding": [
  3448. {
  3449. "url": "https://symfony.com/sponsor",
  3450. "type": "custom"
  3451. },
  3452. {
  3453. "url": "https://github.com/fabpot",
  3454. "type": "github"
  3455. },
  3456. {
  3457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3458. "type": "tidelift"
  3459. }
  3460. ],
  3461. "time": "2020-10-23T14:02:19+00:00"
  3462. },
  3463. {
  3464. "name": "symfony/polyfill-mbstring",
  3465. "version": "v1.20.0",
  3466. "source": {
  3467. "type": "git",
  3468. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3469. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  3470. },
  3471. "dist": {
  3472. "type": "zip",
  3473. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  3474. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  3475. "shasum": ""
  3476. },
  3477. "require": {
  3478. "php": ">=7.1"
  3479. },
  3480. "suggest": {
  3481. "ext-mbstring": "For best performance"
  3482. },
  3483. "type": "library",
  3484. "extra": {
  3485. "branch-alias": {
  3486. "dev-main": "1.20-dev"
  3487. },
  3488. "thanks": {
  3489. "name": "symfony/polyfill",
  3490. "url": "https://github.com/symfony/polyfill"
  3491. }
  3492. },
  3493. "autoload": {
  3494. "psr-4": {
  3495. "Symfony\\Polyfill\\Mbstring\\": ""
  3496. },
  3497. "files": [
  3498. "bootstrap.php"
  3499. ]
  3500. },
  3501. "notification-url": "https://packagist.org/downloads/",
  3502. "license": [
  3503. "MIT"
  3504. ],
  3505. "authors": [
  3506. {
  3507. "name": "Nicolas Grekas",
  3508. "email": "p@tchwork.com"
  3509. },
  3510. {
  3511. "name": "Symfony Community",
  3512. "homepage": "https://symfony.com/contributors"
  3513. }
  3514. ],
  3515. "description": "Symfony polyfill for the Mbstring extension",
  3516. "homepage": "https://symfony.com",
  3517. "keywords": [
  3518. "compatibility",
  3519. "mbstring",
  3520. "polyfill",
  3521. "portable",
  3522. "shim"
  3523. ],
  3524. "support": {
  3525. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  3526. },
  3527. "funding": [
  3528. {
  3529. "url": "https://symfony.com/sponsor",
  3530. "type": "custom"
  3531. },
  3532. {
  3533. "url": "https://github.com/fabpot",
  3534. "type": "github"
  3535. },
  3536. {
  3537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3538. "type": "tidelift"
  3539. }
  3540. ],
  3541. "time": "2020-10-23T14:02:19+00:00"
  3542. },
  3543. {
  3544. "name": "symfony/polyfill-php72",
  3545. "version": "v1.20.0",
  3546. "source": {
  3547. "type": "git",
  3548. "url": "https://github.com/symfony/polyfill-php72.git",
  3549. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  3550. },
  3551. "dist": {
  3552. "type": "zip",
  3553. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  3554. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  3555. "shasum": ""
  3556. },
  3557. "require": {
  3558. "php": ">=7.1"
  3559. },
  3560. "type": "library",
  3561. "extra": {
  3562. "branch-alias": {
  3563. "dev-main": "1.20-dev"
  3564. },
  3565. "thanks": {
  3566. "name": "symfony/polyfill",
  3567. "url": "https://github.com/symfony/polyfill"
  3568. }
  3569. },
  3570. "autoload": {
  3571. "psr-4": {
  3572. "Symfony\\Polyfill\\Php72\\": ""
  3573. },
  3574. "files": [
  3575. "bootstrap.php"
  3576. ]
  3577. },
  3578. "notification-url": "https://packagist.org/downloads/",
  3579. "license": [
  3580. "MIT"
  3581. ],
  3582. "authors": [
  3583. {
  3584. "name": "Nicolas Grekas",
  3585. "email": "p@tchwork.com"
  3586. },
  3587. {
  3588. "name": "Symfony Community",
  3589. "homepage": "https://symfony.com/contributors"
  3590. }
  3591. ],
  3592. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3593. "homepage": "https://symfony.com",
  3594. "keywords": [
  3595. "compatibility",
  3596. "polyfill",
  3597. "portable",
  3598. "shim"
  3599. ],
  3600. "support": {
  3601. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  3602. },
  3603. "funding": [
  3604. {
  3605. "url": "https://symfony.com/sponsor",
  3606. "type": "custom"
  3607. },
  3608. {
  3609. "url": "https://github.com/fabpot",
  3610. "type": "github"
  3611. },
  3612. {
  3613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3614. "type": "tidelift"
  3615. }
  3616. ],
  3617. "time": "2020-10-23T14:02:19+00:00"
  3618. },
  3619. {
  3620. "name": "symfony/polyfill-php73",
  3621. "version": "v1.20.0",
  3622. "source": {
  3623. "type": "git",
  3624. "url": "https://github.com/symfony/polyfill-php73.git",
  3625. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  3626. },
  3627. "dist": {
  3628. "type": "zip",
  3629. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  3630. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  3631. "shasum": ""
  3632. },
  3633. "require": {
  3634. "php": ">=7.1"
  3635. },
  3636. "type": "library",
  3637. "extra": {
  3638. "branch-alias": {
  3639. "dev-main": "1.20-dev"
  3640. },
  3641. "thanks": {
  3642. "name": "symfony/polyfill",
  3643. "url": "https://github.com/symfony/polyfill"
  3644. }
  3645. },
  3646. "autoload": {
  3647. "psr-4": {
  3648. "Symfony\\Polyfill\\Php73\\": ""
  3649. },
  3650. "files": [
  3651. "bootstrap.php"
  3652. ],
  3653. "classmap": [
  3654. "Resources/stubs"
  3655. ]
  3656. },
  3657. "notification-url": "https://packagist.org/downloads/",
  3658. "license": [
  3659. "MIT"
  3660. ],
  3661. "authors": [
  3662. {
  3663. "name": "Nicolas Grekas",
  3664. "email": "p@tchwork.com"
  3665. },
  3666. {
  3667. "name": "Symfony Community",
  3668. "homepage": "https://symfony.com/contributors"
  3669. }
  3670. ],
  3671. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3672. "homepage": "https://symfony.com",
  3673. "keywords": [
  3674. "compatibility",
  3675. "polyfill",
  3676. "portable",
  3677. "shim"
  3678. ],
  3679. "support": {
  3680. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  3681. },
  3682. "funding": [
  3683. {
  3684. "url": "https://symfony.com/sponsor",
  3685. "type": "custom"
  3686. },
  3687. {
  3688. "url": "https://github.com/fabpot",
  3689. "type": "github"
  3690. },
  3691. {
  3692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3693. "type": "tidelift"
  3694. }
  3695. ],
  3696. "time": "2020-10-23T14:02:19+00:00"
  3697. },
  3698. {
  3699. "name": "symfony/polyfill-php80",
  3700. "version": "v1.20.0",
  3701. "source": {
  3702. "type": "git",
  3703. "url": "https://github.com/symfony/polyfill-php80.git",
  3704. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  3705. },
  3706. "dist": {
  3707. "type": "zip",
  3708. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  3709. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  3710. "shasum": ""
  3711. },
  3712. "require": {
  3713. "php": ">=7.1"
  3714. },
  3715. "type": "library",
  3716. "extra": {
  3717. "branch-alias": {
  3718. "dev-main": "1.20-dev"
  3719. },
  3720. "thanks": {
  3721. "name": "symfony/polyfill",
  3722. "url": "https://github.com/symfony/polyfill"
  3723. }
  3724. },
  3725. "autoload": {
  3726. "psr-4": {
  3727. "Symfony\\Polyfill\\Php80\\": ""
  3728. },
  3729. "files": [
  3730. "bootstrap.php"
  3731. ],
  3732. "classmap": [
  3733. "Resources/stubs"
  3734. ]
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "authors": [
  3741. {
  3742. "name": "Ion Bazan",
  3743. "email": "ion.bazan@gmail.com"
  3744. },
  3745. {
  3746. "name": "Nicolas Grekas",
  3747. "email": "p@tchwork.com"
  3748. },
  3749. {
  3750. "name": "Symfony Community",
  3751. "homepage": "https://symfony.com/contributors"
  3752. }
  3753. ],
  3754. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3755. "homepage": "https://symfony.com",
  3756. "keywords": [
  3757. "compatibility",
  3758. "polyfill",
  3759. "portable",
  3760. "shim"
  3761. ],
  3762. "support": {
  3763. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  3764. },
  3765. "funding": [
  3766. {
  3767. "url": "https://symfony.com/sponsor",
  3768. "type": "custom"
  3769. },
  3770. {
  3771. "url": "https://github.com/fabpot",
  3772. "type": "github"
  3773. },
  3774. {
  3775. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3776. "type": "tidelift"
  3777. }
  3778. ],
  3779. "time": "2020-10-23T14:02:19+00:00"
  3780. },
  3781. {
  3782. "name": "symfony/process",
  3783. "version": "v4.4.17",
  3784. "source": {
  3785. "type": "git",
  3786. "url": "https://github.com/symfony/process.git",
  3787. "reference": "ec1482f13d53911a8a32e54ba6f9a3b43a57d943"
  3788. },
  3789. "dist": {
  3790. "type": "zip",
  3791. "url": "https://api.github.com/repos/symfony/process/zipball/ec1482f13d53911a8a32e54ba6f9a3b43a57d943",
  3792. "reference": "ec1482f13d53911a8a32e54ba6f9a3b43a57d943",
  3793. "shasum": ""
  3794. },
  3795. "require": {
  3796. "php": ">=7.1.3"
  3797. },
  3798. "type": "library",
  3799. "autoload": {
  3800. "psr-4": {
  3801. "Symfony\\Component\\Process\\": ""
  3802. },
  3803. "exclude-from-classmap": [
  3804. "/Tests/"
  3805. ]
  3806. },
  3807. "notification-url": "https://packagist.org/downloads/",
  3808. "license": [
  3809. "MIT"
  3810. ],
  3811. "authors": [
  3812. {
  3813. "name": "Fabien Potencier",
  3814. "email": "fabien@symfony.com"
  3815. },
  3816. {
  3817. "name": "Symfony Community",
  3818. "homepage": "https://symfony.com/contributors"
  3819. }
  3820. ],
  3821. "description": "Symfony Process Component",
  3822. "homepage": "https://symfony.com",
  3823. "support": {
  3824. "source": "https://github.com/symfony/process/tree/v4.4.17"
  3825. },
  3826. "funding": [
  3827. {
  3828. "url": "https://symfony.com/sponsor",
  3829. "type": "custom"
  3830. },
  3831. {
  3832. "url": "https://github.com/fabpot",
  3833. "type": "github"
  3834. },
  3835. {
  3836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3837. "type": "tidelift"
  3838. }
  3839. ],
  3840. "time": "2020-11-02T15:10:16+00:00"
  3841. },
  3842. {
  3843. "name": "symfony/routing",
  3844. "version": "v4.4.17",
  3845. "source": {
  3846. "type": "git",
  3847. "url": "https://github.com/symfony/routing.git",
  3848. "reference": "08712c5dd5041c03e997e13892f45884faccd868"
  3849. },
  3850. "dist": {
  3851. "type": "zip",
  3852. "url": "https://api.github.com/repos/symfony/routing/zipball/08712c5dd5041c03e997e13892f45884faccd868",
  3853. "reference": "08712c5dd5041c03e997e13892f45884faccd868",
  3854. "shasum": ""
  3855. },
  3856. "require": {
  3857. "php": ">=7.1.3"
  3858. },
  3859. "conflict": {
  3860. "symfony/config": "<4.2",
  3861. "symfony/dependency-injection": "<3.4",
  3862. "symfony/yaml": "<3.4"
  3863. },
  3864. "require-dev": {
  3865. "doctrine/annotations": "~1.2",
  3866. "psr/log": "~1.0",
  3867. "symfony/config": "^4.2|^5.0",
  3868. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3869. "symfony/expression-language": "^3.4|^4.0|^5.0",
  3870. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  3871. "symfony/yaml": "^3.4|^4.0|^5.0"
  3872. },
  3873. "suggest": {
  3874. "doctrine/annotations": "For using the annotation loader",
  3875. "symfony/config": "For using the all-in-one router or any loader",
  3876. "symfony/expression-language": "For using expression matching",
  3877. "symfony/http-foundation": "For using a Symfony Request object",
  3878. "symfony/yaml": "For using the YAML loader"
  3879. },
  3880. "type": "library",
  3881. "autoload": {
  3882. "psr-4": {
  3883. "Symfony\\Component\\Routing\\": ""
  3884. },
  3885. "exclude-from-classmap": [
  3886. "/Tests/"
  3887. ]
  3888. },
  3889. "notification-url": "https://packagist.org/downloads/",
  3890. "license": [
  3891. "MIT"
  3892. ],
  3893. "authors": [
  3894. {
  3895. "name": "Fabien Potencier",
  3896. "email": "fabien@symfony.com"
  3897. },
  3898. {
  3899. "name": "Symfony Community",
  3900. "homepage": "https://symfony.com/contributors"
  3901. }
  3902. ],
  3903. "description": "Symfony Routing Component",
  3904. "homepage": "https://symfony.com",
  3905. "keywords": [
  3906. "router",
  3907. "routing",
  3908. "uri",
  3909. "url"
  3910. ],
  3911. "support": {
  3912. "source": "https://github.com/symfony/routing/tree/v4.4.17"
  3913. },
  3914. "funding": [
  3915. {
  3916. "url": "https://symfony.com/sponsor",
  3917. "type": "custom"
  3918. },
  3919. {
  3920. "url": "https://github.com/fabpot",
  3921. "type": "github"
  3922. },
  3923. {
  3924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3925. "type": "tidelift"
  3926. }
  3927. ],
  3928. "time": "2020-11-24T13:31:32+00:00"
  3929. },
  3930. {
  3931. "name": "symfony/service-contracts",
  3932. "version": "v2.2.0",
  3933. "source": {
  3934. "type": "git",
  3935. "url": "https://github.com/symfony/service-contracts.git",
  3936. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  3937. },
  3938. "dist": {
  3939. "type": "zip",
  3940. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  3941. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  3942. "shasum": ""
  3943. },
  3944. "require": {
  3945. "php": ">=7.2.5",
  3946. "psr/container": "^1.0"
  3947. },
  3948. "suggest": {
  3949. "symfony/service-implementation": ""
  3950. },
  3951. "type": "library",
  3952. "extra": {
  3953. "branch-alias": {
  3954. "dev-master": "2.2-dev"
  3955. },
  3956. "thanks": {
  3957. "name": "symfony/contracts",
  3958. "url": "https://github.com/symfony/contracts"
  3959. }
  3960. },
  3961. "autoload": {
  3962. "psr-4": {
  3963. "Symfony\\Contracts\\Service\\": ""
  3964. }
  3965. },
  3966. "notification-url": "https://packagist.org/downloads/",
  3967. "license": [
  3968. "MIT"
  3969. ],
  3970. "authors": [
  3971. {
  3972. "name": "Nicolas Grekas",
  3973. "email": "p@tchwork.com"
  3974. },
  3975. {
  3976. "name": "Symfony Community",
  3977. "homepage": "https://symfony.com/contributors"
  3978. }
  3979. ],
  3980. "description": "Generic abstractions related to writing services",
  3981. "homepage": "https://symfony.com",
  3982. "keywords": [
  3983. "abstractions",
  3984. "contracts",
  3985. "decoupling",
  3986. "interfaces",
  3987. "interoperability",
  3988. "standards"
  3989. ],
  3990. "support": {
  3991. "source": "https://github.com/symfony/service-contracts/tree/master"
  3992. },
  3993. "funding": [
  3994. {
  3995. "url": "https://symfony.com/sponsor",
  3996. "type": "custom"
  3997. },
  3998. {
  3999. "url": "https://github.com/fabpot",
  4000. "type": "github"
  4001. },
  4002. {
  4003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4004. "type": "tidelift"
  4005. }
  4006. ],
  4007. "time": "2020-09-07T11:33:47+00:00"
  4008. },
  4009. {
  4010. "name": "symfony/translation",
  4011. "version": "v4.4.17",
  4012. "source": {
  4013. "type": "git",
  4014. "url": "https://github.com/symfony/translation.git",
  4015. "reference": "84821e6a14a637e817f25d11147388695b6f790a"
  4016. },
  4017. "dist": {
  4018. "type": "zip",
  4019. "url": "https://api.github.com/repos/symfony/translation/zipball/84821e6a14a637e817f25d11147388695b6f790a",
  4020. "reference": "84821e6a14a637e817f25d11147388695b6f790a",
  4021. "shasum": ""
  4022. },
  4023. "require": {
  4024. "php": ">=7.1.3",
  4025. "symfony/polyfill-mbstring": "~1.0",
  4026. "symfony/translation-contracts": "^1.1.6|^2"
  4027. },
  4028. "conflict": {
  4029. "symfony/config": "<3.4",
  4030. "symfony/dependency-injection": "<3.4",
  4031. "symfony/http-kernel": "<4.4",
  4032. "symfony/yaml": "<3.4"
  4033. },
  4034. "provide": {
  4035. "symfony/translation-implementation": "1.0"
  4036. },
  4037. "require-dev": {
  4038. "psr/log": "~1.0",
  4039. "symfony/config": "^3.4|^4.0|^5.0",
  4040. "symfony/console": "^3.4|^4.0|^5.0",
  4041. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4042. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  4043. "symfony/http-kernel": "^4.4",
  4044. "symfony/intl": "^3.4|^4.0|^5.0",
  4045. "symfony/service-contracts": "^1.1.2|^2",
  4046. "symfony/yaml": "^3.4|^4.0|^5.0"
  4047. },
  4048. "suggest": {
  4049. "psr/log-implementation": "To use logging capability in translator",
  4050. "symfony/config": "",
  4051. "symfony/yaml": ""
  4052. },
  4053. "type": "library",
  4054. "autoload": {
  4055. "psr-4": {
  4056. "Symfony\\Component\\Translation\\": ""
  4057. },
  4058. "exclude-from-classmap": [
  4059. "/Tests/"
  4060. ]
  4061. },
  4062. "notification-url": "https://packagist.org/downloads/",
  4063. "license": [
  4064. "MIT"
  4065. ],
  4066. "authors": [
  4067. {
  4068. "name": "Fabien Potencier",
  4069. "email": "fabien@symfony.com"
  4070. },
  4071. {
  4072. "name": "Symfony Community",
  4073. "homepage": "https://symfony.com/contributors"
  4074. }
  4075. ],
  4076. "description": "Symfony Translation Component",
  4077. "homepage": "https://symfony.com",
  4078. "support": {
  4079. "source": "https://github.com/symfony/translation/tree/v4.4.17"
  4080. },
  4081. "funding": [
  4082. {
  4083. "url": "https://symfony.com/sponsor",
  4084. "type": "custom"
  4085. },
  4086. {
  4087. "url": "https://github.com/fabpot",
  4088. "type": "github"
  4089. },
  4090. {
  4091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4092. "type": "tidelift"
  4093. }
  4094. ],
  4095. "time": "2020-11-27T06:35:49+00:00"
  4096. },
  4097. {
  4098. "name": "symfony/translation-contracts",
  4099. "version": "v2.3.0",
  4100. "source": {
  4101. "type": "git",
  4102. "url": "https://github.com/symfony/translation-contracts.git",
  4103. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  4104. },
  4105. "dist": {
  4106. "type": "zip",
  4107. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  4108. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  4109. "shasum": ""
  4110. },
  4111. "require": {
  4112. "php": ">=7.2.5"
  4113. },
  4114. "suggest": {
  4115. "symfony/translation-implementation": ""
  4116. },
  4117. "type": "library",
  4118. "extra": {
  4119. "branch-alias": {
  4120. "dev-master": "2.3-dev"
  4121. },
  4122. "thanks": {
  4123. "name": "symfony/contracts",
  4124. "url": "https://github.com/symfony/contracts"
  4125. }
  4126. },
  4127. "autoload": {
  4128. "psr-4": {
  4129. "Symfony\\Contracts\\Translation\\": ""
  4130. }
  4131. },
  4132. "notification-url": "https://packagist.org/downloads/",
  4133. "license": [
  4134. "MIT"
  4135. ],
  4136. "authors": [
  4137. {
  4138. "name": "Nicolas Grekas",
  4139. "email": "p@tchwork.com"
  4140. },
  4141. {
  4142. "name": "Symfony Community",
  4143. "homepage": "https://symfony.com/contributors"
  4144. }
  4145. ],
  4146. "description": "Generic abstractions related to translation",
  4147. "homepage": "https://symfony.com",
  4148. "keywords": [
  4149. "abstractions",
  4150. "contracts",
  4151. "decoupling",
  4152. "interfaces",
  4153. "interoperability",
  4154. "standards"
  4155. ],
  4156. "support": {
  4157. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  4158. },
  4159. "funding": [
  4160. {
  4161. "url": "https://symfony.com/sponsor",
  4162. "type": "custom"
  4163. },
  4164. {
  4165. "url": "https://github.com/fabpot",
  4166. "type": "github"
  4167. },
  4168. {
  4169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4170. "type": "tidelift"
  4171. }
  4172. ],
  4173. "time": "2020-09-28T13:05:58+00:00"
  4174. },
  4175. {
  4176. "name": "symfony/var-dumper",
  4177. "version": "v4.4.17",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://github.com/symfony/var-dumper.git",
  4181. "reference": "65c6f1e848cda840ef7278686c8e30a7cc353c93"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/65c6f1e848cda840ef7278686c8e30a7cc353c93",
  4186. "reference": "65c6f1e848cda840ef7278686c8e30a7cc353c93",
  4187. "shasum": ""
  4188. },
  4189. "require": {
  4190. "php": ">=7.1.3",
  4191. "symfony/polyfill-mbstring": "~1.0",
  4192. "symfony/polyfill-php72": "~1.5",
  4193. "symfony/polyfill-php80": "^1.15"
  4194. },
  4195. "conflict": {
  4196. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4197. "symfony/console": "<3.4"
  4198. },
  4199. "require-dev": {
  4200. "ext-iconv": "*",
  4201. "symfony/console": "^3.4|^4.0|^5.0",
  4202. "symfony/process": "^4.4|^5.0",
  4203. "twig/twig": "^1.34|^2.4|^3.0"
  4204. },
  4205. "suggest": {
  4206. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4207. "ext-intl": "To show region name in time zone dump",
  4208. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4209. },
  4210. "bin": [
  4211. "Resources/bin/var-dump-server"
  4212. ],
  4213. "type": "library",
  4214. "autoload": {
  4215. "files": [
  4216. "Resources/functions/dump.php"
  4217. ],
  4218. "psr-4": {
  4219. "Symfony\\Component\\VarDumper\\": ""
  4220. },
  4221. "exclude-from-classmap": [
  4222. "/Tests/"
  4223. ]
  4224. },
  4225. "notification-url": "https://packagist.org/downloads/",
  4226. "license": [
  4227. "MIT"
  4228. ],
  4229. "authors": [
  4230. {
  4231. "name": "Nicolas Grekas",
  4232. "email": "p@tchwork.com"
  4233. },
  4234. {
  4235. "name": "Symfony Community",
  4236. "homepage": "https://symfony.com/contributors"
  4237. }
  4238. ],
  4239. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4240. "homepage": "https://symfony.com",
  4241. "keywords": [
  4242. "debug",
  4243. "dump"
  4244. ],
  4245. "support": {
  4246. "source": "https://github.com/symfony/var-dumper/tree/v4.4.17"
  4247. },
  4248. "funding": [
  4249. {
  4250. "url": "https://symfony.com/sponsor",
  4251. "type": "custom"
  4252. },
  4253. {
  4254. "url": "https://github.com/fabpot",
  4255. "type": "github"
  4256. },
  4257. {
  4258. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4259. "type": "tidelift"
  4260. }
  4261. ],
  4262. "time": "2020-11-24T09:55:37+00:00"
  4263. },
  4264. {
  4265. "name": "tijsverkoyen/css-to-inline-styles",
  4266. "version": "2.2.3",
  4267. "source": {
  4268. "type": "git",
  4269. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4270. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  4271. },
  4272. "dist": {
  4273. "type": "zip",
  4274. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  4275. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  4276. "shasum": ""
  4277. },
  4278. "require": {
  4279. "ext-dom": "*",
  4280. "ext-libxml": "*",
  4281. "php": "^5.5 || ^7.0 || ^8.0",
  4282. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  4283. },
  4284. "require-dev": {
  4285. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  4286. },
  4287. "type": "library",
  4288. "extra": {
  4289. "branch-alias": {
  4290. "dev-master": "2.2.x-dev"
  4291. }
  4292. },
  4293. "autoload": {
  4294. "psr-4": {
  4295. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4296. }
  4297. },
  4298. "notification-url": "https://packagist.org/downloads/",
  4299. "license": [
  4300. "BSD-3-Clause"
  4301. ],
  4302. "authors": [
  4303. {
  4304. "name": "Tijs Verkoyen",
  4305. "email": "css_to_inline_styles@verkoyen.eu",
  4306. "role": "Developer"
  4307. }
  4308. ],
  4309. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  4310. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4311. "support": {
  4312. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  4313. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  4314. },
  4315. "time": "2020-07-13T06:12:54+00:00"
  4316. },
  4317. {
  4318. "name": "vlucas/phpdotenv",
  4319. "version": "v3.6.7",
  4320. "source": {
  4321. "type": "git",
  4322. "url": "https://github.com/vlucas/phpdotenv.git",
  4323. "reference": "2065beda6cbe75e2603686907b2e45f6f3a5ad82"
  4324. },
  4325. "dist": {
  4326. "type": "zip",
  4327. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2065beda6cbe75e2603686907b2e45f6f3a5ad82",
  4328. "reference": "2065beda6cbe75e2603686907b2e45f6f3a5ad82",
  4329. "shasum": ""
  4330. },
  4331. "require": {
  4332. "php": "^5.4 || ^7.0 || ^8.0",
  4333. "phpoption/phpoption": "^1.5.2",
  4334. "symfony/polyfill-ctype": "^1.17"
  4335. },
  4336. "require-dev": {
  4337. "ext-filter": "*",
  4338. "ext-pcre": "*",
  4339. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  4340. },
  4341. "suggest": {
  4342. "ext-filter": "Required to use the boolean validator.",
  4343. "ext-pcre": "Required to use most of the library."
  4344. },
  4345. "type": "library",
  4346. "extra": {
  4347. "branch-alias": {
  4348. "dev-master": "3.6-dev"
  4349. }
  4350. },
  4351. "autoload": {
  4352. "psr-4": {
  4353. "Dotenv\\": "src/"
  4354. }
  4355. },
  4356. "notification-url": "https://packagist.org/downloads/",
  4357. "license": [
  4358. "BSD-3-Clause"
  4359. ],
  4360. "authors": [
  4361. {
  4362. "name": "Graham Campbell",
  4363. "email": "graham@alt-three.com",
  4364. "homepage": "https://gjcampbell.co.uk/"
  4365. },
  4366. {
  4367. "name": "Vance Lucas",
  4368. "email": "vance@vancelucas.com",
  4369. "homepage": "https://vancelucas.com/"
  4370. }
  4371. ],
  4372. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4373. "keywords": [
  4374. "dotenv",
  4375. "env",
  4376. "environment"
  4377. ],
  4378. "support": {
  4379. "issues": "https://github.com/vlucas/phpdotenv/issues",
  4380. "source": "https://github.com/vlucas/phpdotenv/tree/v3.6.7"
  4381. },
  4382. "funding": [
  4383. {
  4384. "url": "https://github.com/GrahamCampbell",
  4385. "type": "github"
  4386. },
  4387. {
  4388. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  4389. "type": "tidelift"
  4390. }
  4391. ],
  4392. "time": "2020-07-14T19:04:52+00:00"
  4393. }
  4394. ],
  4395. "packages-dev": [
  4396. {
  4397. "name": "beyondcode/laravel-dump-server",
  4398. "version": "1.3.0",
  4399. "source": {
  4400. "type": "git",
  4401. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  4402. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a"
  4403. },
  4404. "dist": {
  4405. "type": "zip",
  4406. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  4407. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  4408. "shasum": ""
  4409. },
  4410. "require": {
  4411. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0",
  4412. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0",
  4413. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
  4414. "php": "^7.1",
  4415. "symfony/var-dumper": "^4.1.1"
  4416. },
  4417. "require-dev": {
  4418. "larapack/dd": "^1.0",
  4419. "phpunit/phpunit": "^7.0"
  4420. },
  4421. "type": "library",
  4422. "extra": {
  4423. "laravel": {
  4424. "providers": [
  4425. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  4426. ]
  4427. }
  4428. },
  4429. "autoload": {
  4430. "psr-4": {
  4431. "BeyondCode\\DumpServer\\": "src"
  4432. },
  4433. "files": [
  4434. "helpers.php"
  4435. ]
  4436. },
  4437. "notification-url": "https://packagist.org/downloads/",
  4438. "license": [
  4439. "MIT"
  4440. ],
  4441. "authors": [
  4442. {
  4443. "name": "Marcel Pociot",
  4444. "email": "marcel@beyondco.de",
  4445. "homepage": "https://beyondco.de",
  4446. "role": "Developer"
  4447. }
  4448. ],
  4449. "description": "Symfony Var-Dump Server for Laravel",
  4450. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  4451. "keywords": [
  4452. "beyondcode",
  4453. "laravel-dump-server"
  4454. ],
  4455. "support": {
  4456. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  4457. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.3.0"
  4458. },
  4459. "time": "2019-08-11T13:17:40+00:00"
  4460. },
  4461. {
  4462. "name": "doctrine/instantiator",
  4463. "version": "1.4.0",
  4464. "source": {
  4465. "type": "git",
  4466. "url": "https://github.com/doctrine/instantiator.git",
  4467. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  4468. },
  4469. "dist": {
  4470. "type": "zip",
  4471. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  4472. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  4473. "shasum": ""
  4474. },
  4475. "require": {
  4476. "php": "^7.1 || ^8.0"
  4477. },
  4478. "require-dev": {
  4479. "doctrine/coding-standard": "^8.0",
  4480. "ext-pdo": "*",
  4481. "ext-phar": "*",
  4482. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  4483. "phpstan/phpstan": "^0.12",
  4484. "phpstan/phpstan-phpunit": "^0.12",
  4485. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4486. },
  4487. "type": "library",
  4488. "autoload": {
  4489. "psr-4": {
  4490. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4491. }
  4492. },
  4493. "notification-url": "https://packagist.org/downloads/",
  4494. "license": [
  4495. "MIT"
  4496. ],
  4497. "authors": [
  4498. {
  4499. "name": "Marco Pivetta",
  4500. "email": "ocramius@gmail.com",
  4501. "homepage": "https://ocramius.github.io/"
  4502. }
  4503. ],
  4504. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4505. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  4506. "keywords": [
  4507. "constructor",
  4508. "instantiate"
  4509. ],
  4510. "support": {
  4511. "issues": "https://github.com/doctrine/instantiator/issues",
  4512. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  4513. },
  4514. "funding": [
  4515. {
  4516. "url": "https://www.doctrine-project.org/sponsorship.html",
  4517. "type": "custom"
  4518. },
  4519. {
  4520. "url": "https://www.patreon.com/phpdoctrine",
  4521. "type": "patreon"
  4522. },
  4523. {
  4524. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  4525. "type": "tidelift"
  4526. }
  4527. ],
  4528. "time": "2020-11-10T18:47:58+00:00"
  4529. },
  4530. {
  4531. "name": "filp/whoops",
  4532. "version": "2.9.1",
  4533. "source": {
  4534. "type": "git",
  4535. "url": "https://github.com/filp/whoops.git",
  4536. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  4537. },
  4538. "dist": {
  4539. "type": "zip",
  4540. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  4541. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  4542. "shasum": ""
  4543. },
  4544. "require": {
  4545. "php": "^5.5.9 || ^7.0 || ^8.0",
  4546. "psr/log": "^1.0.1"
  4547. },
  4548. "require-dev": {
  4549. "mockery/mockery": "^0.9 || ^1.0",
  4550. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  4551. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  4552. },
  4553. "suggest": {
  4554. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4555. "whoops/soap": "Formats errors as SOAP responses"
  4556. },
  4557. "type": "library",
  4558. "extra": {
  4559. "branch-alias": {
  4560. "dev-master": "2.7-dev"
  4561. }
  4562. },
  4563. "autoload": {
  4564. "psr-4": {
  4565. "Whoops\\": "src/Whoops/"
  4566. }
  4567. },
  4568. "notification-url": "https://packagist.org/downloads/",
  4569. "license": [
  4570. "MIT"
  4571. ],
  4572. "authors": [
  4573. {
  4574. "name": "Filipe Dobreira",
  4575. "homepage": "https://github.com/filp",
  4576. "role": "Developer"
  4577. }
  4578. ],
  4579. "description": "php error handling for cool kids",
  4580. "homepage": "https://filp.github.io/whoops/",
  4581. "keywords": [
  4582. "error",
  4583. "exception",
  4584. "handling",
  4585. "library",
  4586. "throwable",
  4587. "whoops"
  4588. ],
  4589. "support": {
  4590. "issues": "https://github.com/filp/whoops/issues",
  4591. "source": "https://github.com/filp/whoops/tree/2.9.1"
  4592. },
  4593. "time": "2020-11-01T12:00:00+00:00"
  4594. },
  4595. {
  4596. "name": "fzaninotto/faker",
  4597. "version": "v1.9.1",
  4598. "source": {
  4599. "type": "git",
  4600. "url": "https://github.com/fzaninotto/Faker.git",
  4601. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  4602. },
  4603. "dist": {
  4604. "type": "zip",
  4605. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  4606. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  4607. "shasum": ""
  4608. },
  4609. "require": {
  4610. "php": "^5.3.3 || ^7.0"
  4611. },
  4612. "require-dev": {
  4613. "ext-intl": "*",
  4614. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4615. "squizlabs/php_codesniffer": "^2.9.2"
  4616. },
  4617. "type": "library",
  4618. "extra": {
  4619. "branch-alias": {
  4620. "dev-master": "1.9-dev"
  4621. }
  4622. },
  4623. "autoload": {
  4624. "psr-4": {
  4625. "Faker\\": "src/Faker/"
  4626. }
  4627. },
  4628. "notification-url": "https://packagist.org/downloads/",
  4629. "license": [
  4630. "MIT"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "François Zaninotto"
  4635. }
  4636. ],
  4637. "description": "Faker is a PHP library that generates fake data for you.",
  4638. "keywords": [
  4639. "data",
  4640. "faker",
  4641. "fixtures"
  4642. ],
  4643. "support": {
  4644. "issues": "https://github.com/fzaninotto/Faker/issues",
  4645. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.1"
  4646. },
  4647. "abandoned": true,
  4648. "time": "2019-12-12T13:22:17+00:00"
  4649. },
  4650. {
  4651. "name": "hamcrest/hamcrest-php",
  4652. "version": "v2.0.1",
  4653. "source": {
  4654. "type": "git",
  4655. "url": "https://github.com/hamcrest/hamcrest-php.git",
  4656. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  4657. },
  4658. "dist": {
  4659. "type": "zip",
  4660. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  4661. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  4662. "shasum": ""
  4663. },
  4664. "require": {
  4665. "php": "^5.3|^7.0|^8.0"
  4666. },
  4667. "replace": {
  4668. "cordoval/hamcrest-php": "*",
  4669. "davedevelopment/hamcrest-php": "*",
  4670. "kodova/hamcrest-php": "*"
  4671. },
  4672. "require-dev": {
  4673. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  4674. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  4675. },
  4676. "type": "library",
  4677. "extra": {
  4678. "branch-alias": {
  4679. "dev-master": "2.1-dev"
  4680. }
  4681. },
  4682. "autoload": {
  4683. "classmap": [
  4684. "hamcrest"
  4685. ]
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "BSD-3-Clause"
  4690. ],
  4691. "description": "This is the PHP port of Hamcrest Matchers",
  4692. "keywords": [
  4693. "test"
  4694. ],
  4695. "support": {
  4696. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  4697. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  4698. },
  4699. "time": "2020-07-09T08:09:16+00:00"
  4700. },
  4701. {
  4702. "name": "mockery/mockery",
  4703. "version": "1.3.3",
  4704. "source": {
  4705. "type": "git",
  4706. "url": "https://github.com/mockery/mockery.git",
  4707. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d"
  4708. },
  4709. "dist": {
  4710. "type": "zip",
  4711. "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  4712. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  4713. "shasum": ""
  4714. },
  4715. "require": {
  4716. "hamcrest/hamcrest-php": "^2.0.1",
  4717. "lib-pcre": ">=7.0",
  4718. "php": ">=5.6.0"
  4719. },
  4720. "require-dev": {
  4721. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  4722. },
  4723. "type": "library",
  4724. "extra": {
  4725. "branch-alias": {
  4726. "dev-master": "1.3.x-dev"
  4727. }
  4728. },
  4729. "autoload": {
  4730. "psr-0": {
  4731. "Mockery": "library/"
  4732. }
  4733. },
  4734. "notification-url": "https://packagist.org/downloads/",
  4735. "license": [
  4736. "BSD-3-Clause"
  4737. ],
  4738. "authors": [
  4739. {
  4740. "name": "Pádraic Brady",
  4741. "email": "padraic.brady@gmail.com",
  4742. "homepage": "http://blog.astrumfutura.com"
  4743. },
  4744. {
  4745. "name": "Dave Marshall",
  4746. "email": "dave.marshall@atstsolutions.co.uk",
  4747. "homepage": "http://davedevelopment.co.uk"
  4748. }
  4749. ],
  4750. "description": "Mockery is a simple yet flexible PHP mock object framework",
  4751. "homepage": "https://github.com/mockery/mockery",
  4752. "keywords": [
  4753. "BDD",
  4754. "TDD",
  4755. "library",
  4756. "mock",
  4757. "mock objects",
  4758. "mockery",
  4759. "stub",
  4760. "test",
  4761. "test double",
  4762. "testing"
  4763. ],
  4764. "support": {
  4765. "issues": "https://github.com/mockery/mockery/issues",
  4766. "source": "https://github.com/mockery/mockery/tree/1.3.3"
  4767. },
  4768. "time": "2020-08-11T18:10:21+00:00"
  4769. },
  4770. {
  4771. "name": "myclabs/deep-copy",
  4772. "version": "1.10.2",
  4773. "source": {
  4774. "type": "git",
  4775. "url": "https://github.com/myclabs/DeepCopy.git",
  4776. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  4777. },
  4778. "dist": {
  4779. "type": "zip",
  4780. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  4781. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  4782. "shasum": ""
  4783. },
  4784. "require": {
  4785. "php": "^7.1 || ^8.0"
  4786. },
  4787. "replace": {
  4788. "myclabs/deep-copy": "self.version"
  4789. },
  4790. "require-dev": {
  4791. "doctrine/collections": "^1.0",
  4792. "doctrine/common": "^2.6",
  4793. "phpunit/phpunit": "^7.1"
  4794. },
  4795. "type": "library",
  4796. "autoload": {
  4797. "psr-4": {
  4798. "DeepCopy\\": "src/DeepCopy/"
  4799. },
  4800. "files": [
  4801. "src/DeepCopy/deep_copy.php"
  4802. ]
  4803. },
  4804. "notification-url": "https://packagist.org/downloads/",
  4805. "license": [
  4806. "MIT"
  4807. ],
  4808. "description": "Create deep copies (clones) of your objects",
  4809. "keywords": [
  4810. "clone",
  4811. "copy",
  4812. "duplicate",
  4813. "object",
  4814. "object graph"
  4815. ],
  4816. "support": {
  4817. "issues": "https://github.com/myclabs/DeepCopy/issues",
  4818. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  4819. },
  4820. "funding": [
  4821. {
  4822. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  4823. "type": "tidelift"
  4824. }
  4825. ],
  4826. "time": "2020-11-13T09:40:50+00:00"
  4827. },
  4828. {
  4829. "name": "nunomaduro/collision",
  4830. "version": "v3.1.0",
  4831. "source": {
  4832. "type": "git",
  4833. "url": "https://github.com/nunomaduro/collision.git",
  4834. "reference": "88b58b5bd9bdcc54756480fb3ce87234696544ee"
  4835. },
  4836. "dist": {
  4837. "type": "zip",
  4838. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/88b58b5bd9bdcc54756480fb3ce87234696544ee",
  4839. "reference": "88b58b5bd9bdcc54756480fb3ce87234696544ee",
  4840. "shasum": ""
  4841. },
  4842. "require": {
  4843. "filp/whoops": "^2.1.4",
  4844. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  4845. "php": "^7.1 || ^8.0",
  4846. "symfony/console": "~2.8|~3.3|~4.0"
  4847. },
  4848. "require-dev": {
  4849. "laravel/framework": "^6.0",
  4850. "phpunit/phpunit": "^8.0 || ^9.0"
  4851. },
  4852. "type": "library",
  4853. "extra": {
  4854. "laravel": {
  4855. "providers": [
  4856. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  4857. ]
  4858. }
  4859. },
  4860. "autoload": {
  4861. "psr-4": {
  4862. "NunoMaduro\\Collision\\": "src/"
  4863. }
  4864. },
  4865. "notification-url": "https://packagist.org/downloads/",
  4866. "license": [
  4867. "MIT"
  4868. ],
  4869. "authors": [
  4870. {
  4871. "name": "Nuno Maduro",
  4872. "email": "enunomaduro@gmail.com"
  4873. }
  4874. ],
  4875. "description": "Cli error handling for console/command-line PHP applications.",
  4876. "keywords": [
  4877. "artisan",
  4878. "cli",
  4879. "command-line",
  4880. "console",
  4881. "error",
  4882. "handling",
  4883. "laravel",
  4884. "laravel-zero",
  4885. "php",
  4886. "symfony"
  4887. ],
  4888. "support": {
  4889. "issues": "https://github.com/nunomaduro/collision/issues",
  4890. "source": "https://github.com/nunomaduro/collision"
  4891. },
  4892. "funding": [
  4893. {
  4894. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  4895. "type": "custom"
  4896. },
  4897. {
  4898. "url": "https://github.com/nunomaduro",
  4899. "type": "github"
  4900. },
  4901. {
  4902. "url": "https://www.patreon.com/nunomaduro",
  4903. "type": "patreon"
  4904. }
  4905. ],
  4906. "time": "2020-10-29T16:05:21+00:00"
  4907. },
  4908. {
  4909. "name": "phar-io/manifest",
  4910. "version": "1.0.3",
  4911. "source": {
  4912. "type": "git",
  4913. "url": "https://github.com/phar-io/manifest.git",
  4914. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  4915. },
  4916. "dist": {
  4917. "type": "zip",
  4918. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  4919. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  4920. "shasum": ""
  4921. },
  4922. "require": {
  4923. "ext-dom": "*",
  4924. "ext-phar": "*",
  4925. "phar-io/version": "^2.0",
  4926. "php": "^5.6 || ^7.0"
  4927. },
  4928. "type": "library",
  4929. "extra": {
  4930. "branch-alias": {
  4931. "dev-master": "1.0.x-dev"
  4932. }
  4933. },
  4934. "autoload": {
  4935. "classmap": [
  4936. "src/"
  4937. ]
  4938. },
  4939. "notification-url": "https://packagist.org/downloads/",
  4940. "license": [
  4941. "BSD-3-Clause"
  4942. ],
  4943. "authors": [
  4944. {
  4945. "name": "Arne Blankerts",
  4946. "email": "arne@blankerts.de",
  4947. "role": "Developer"
  4948. },
  4949. {
  4950. "name": "Sebastian Heuer",
  4951. "email": "sebastian@phpeople.de",
  4952. "role": "Developer"
  4953. },
  4954. {
  4955. "name": "Sebastian Bergmann",
  4956. "email": "sebastian@phpunit.de",
  4957. "role": "Developer"
  4958. }
  4959. ],
  4960. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4961. "support": {
  4962. "issues": "https://github.com/phar-io/manifest/issues",
  4963. "source": "https://github.com/phar-io/manifest/tree/master"
  4964. },
  4965. "time": "2018-07-08T19:23:20+00:00"
  4966. },
  4967. {
  4968. "name": "phar-io/version",
  4969. "version": "2.0.1",
  4970. "source": {
  4971. "type": "git",
  4972. "url": "https://github.com/phar-io/version.git",
  4973. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  4974. },
  4975. "dist": {
  4976. "type": "zip",
  4977. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4978. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4979. "shasum": ""
  4980. },
  4981. "require": {
  4982. "php": "^5.6 || ^7.0"
  4983. },
  4984. "type": "library",
  4985. "autoload": {
  4986. "classmap": [
  4987. "src/"
  4988. ]
  4989. },
  4990. "notification-url": "https://packagist.org/downloads/",
  4991. "license": [
  4992. "BSD-3-Clause"
  4993. ],
  4994. "authors": [
  4995. {
  4996. "name": "Arne Blankerts",
  4997. "email": "arne@blankerts.de",
  4998. "role": "Developer"
  4999. },
  5000. {
  5001. "name": "Sebastian Heuer",
  5002. "email": "sebastian@phpeople.de",
  5003. "role": "Developer"
  5004. },
  5005. {
  5006. "name": "Sebastian Bergmann",
  5007. "email": "sebastian@phpunit.de",
  5008. "role": "Developer"
  5009. }
  5010. ],
  5011. "description": "Library for handling version information and constraints",
  5012. "support": {
  5013. "issues": "https://github.com/phar-io/version/issues",
  5014. "source": "https://github.com/phar-io/version/tree/master"
  5015. },
  5016. "time": "2018-07-08T19:19:57+00:00"
  5017. },
  5018. {
  5019. "name": "phpdocumentor/reflection-common",
  5020. "version": "2.2.0",
  5021. "source": {
  5022. "type": "git",
  5023. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5024. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5025. },
  5026. "dist": {
  5027. "type": "zip",
  5028. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5029. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5030. "shasum": ""
  5031. },
  5032. "require": {
  5033. "php": "^7.2 || ^8.0"
  5034. },
  5035. "type": "library",
  5036. "extra": {
  5037. "branch-alias": {
  5038. "dev-2.x": "2.x-dev"
  5039. }
  5040. },
  5041. "autoload": {
  5042. "psr-4": {
  5043. "phpDocumentor\\Reflection\\": "src/"
  5044. }
  5045. },
  5046. "notification-url": "https://packagist.org/downloads/",
  5047. "license": [
  5048. "MIT"
  5049. ],
  5050. "authors": [
  5051. {
  5052. "name": "Jaap van Otterdijk",
  5053. "email": "opensource@ijaap.nl"
  5054. }
  5055. ],
  5056. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5057. "homepage": "http://www.phpdoc.org",
  5058. "keywords": [
  5059. "FQSEN",
  5060. "phpDocumentor",
  5061. "phpdoc",
  5062. "reflection",
  5063. "static analysis"
  5064. ],
  5065. "support": {
  5066. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5067. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5068. },
  5069. "time": "2020-06-27T09:03:43+00:00"
  5070. },
  5071. {
  5072. "name": "phpdocumentor/reflection-docblock",
  5073. "version": "5.2.2",
  5074. "source": {
  5075. "type": "git",
  5076. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5077. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  5078. },
  5079. "dist": {
  5080. "type": "zip",
  5081. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  5082. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  5083. "shasum": ""
  5084. },
  5085. "require": {
  5086. "ext-filter": "*",
  5087. "php": "^7.2 || ^8.0",
  5088. "phpdocumentor/reflection-common": "^2.2",
  5089. "phpdocumentor/type-resolver": "^1.3",
  5090. "webmozart/assert": "^1.9.1"
  5091. },
  5092. "require-dev": {
  5093. "mockery/mockery": "~1.3.2"
  5094. },
  5095. "type": "library",
  5096. "extra": {
  5097. "branch-alias": {
  5098. "dev-master": "5.x-dev"
  5099. }
  5100. },
  5101. "autoload": {
  5102. "psr-4": {
  5103. "phpDocumentor\\Reflection\\": "src"
  5104. }
  5105. },
  5106. "notification-url": "https://packagist.org/downloads/",
  5107. "license": [
  5108. "MIT"
  5109. ],
  5110. "authors": [
  5111. {
  5112. "name": "Mike van Riel",
  5113. "email": "me@mikevanriel.com"
  5114. },
  5115. {
  5116. "name": "Jaap van Otterdijk",
  5117. "email": "account@ijaap.nl"
  5118. }
  5119. ],
  5120. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5121. "support": {
  5122. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5123. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  5124. },
  5125. "time": "2020-09-03T19:13:55+00:00"
  5126. },
  5127. {
  5128. "name": "phpdocumentor/type-resolver",
  5129. "version": "1.4.0",
  5130. "source": {
  5131. "type": "git",
  5132. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5133. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  5134. },
  5135. "dist": {
  5136. "type": "zip",
  5137. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  5138. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  5139. "shasum": ""
  5140. },
  5141. "require": {
  5142. "php": "^7.2 || ^8.0",
  5143. "phpdocumentor/reflection-common": "^2.0"
  5144. },
  5145. "require-dev": {
  5146. "ext-tokenizer": "*"
  5147. },
  5148. "type": "library",
  5149. "extra": {
  5150. "branch-alias": {
  5151. "dev-1.x": "1.x-dev"
  5152. }
  5153. },
  5154. "autoload": {
  5155. "psr-4": {
  5156. "phpDocumentor\\Reflection\\": "src"
  5157. }
  5158. },
  5159. "notification-url": "https://packagist.org/downloads/",
  5160. "license": [
  5161. "MIT"
  5162. ],
  5163. "authors": [
  5164. {
  5165. "name": "Mike van Riel",
  5166. "email": "me@mikevanriel.com"
  5167. }
  5168. ],
  5169. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5170. "support": {
  5171. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5172. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  5173. },
  5174. "time": "2020-09-17T18:55:26+00:00"
  5175. },
  5176. {
  5177. "name": "phpspec/prophecy",
  5178. "version": "1.12.1",
  5179. "source": {
  5180. "type": "git",
  5181. "url": "https://github.com/phpspec/prophecy.git",
  5182. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  5183. },
  5184. "dist": {
  5185. "type": "zip",
  5186. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  5187. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  5188. "shasum": ""
  5189. },
  5190. "require": {
  5191. "doctrine/instantiator": "^1.2",
  5192. "php": "^7.2 || ~8.0, <8.1",
  5193. "phpdocumentor/reflection-docblock": "^5.2",
  5194. "sebastian/comparator": "^3.0 || ^4.0",
  5195. "sebastian/recursion-context": "^3.0 || ^4.0"
  5196. },
  5197. "require-dev": {
  5198. "phpspec/phpspec": "^6.0",
  5199. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  5200. },
  5201. "type": "library",
  5202. "extra": {
  5203. "branch-alias": {
  5204. "dev-master": "1.11.x-dev"
  5205. }
  5206. },
  5207. "autoload": {
  5208. "psr-4": {
  5209. "Prophecy\\": "src/Prophecy"
  5210. }
  5211. },
  5212. "notification-url": "https://packagist.org/downloads/",
  5213. "license": [
  5214. "MIT"
  5215. ],
  5216. "authors": [
  5217. {
  5218. "name": "Konstantin Kudryashov",
  5219. "email": "ever.zet@gmail.com",
  5220. "homepage": "http://everzet.com"
  5221. },
  5222. {
  5223. "name": "Marcello Duarte",
  5224. "email": "marcello.duarte@gmail.com"
  5225. }
  5226. ],
  5227. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5228. "homepage": "https://github.com/phpspec/prophecy",
  5229. "keywords": [
  5230. "Double",
  5231. "Dummy",
  5232. "fake",
  5233. "mock",
  5234. "spy",
  5235. "stub"
  5236. ],
  5237. "support": {
  5238. "issues": "https://github.com/phpspec/prophecy/issues",
  5239. "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
  5240. },
  5241. "time": "2020-09-29T09:10:42+00:00"
  5242. },
  5243. {
  5244. "name": "phpunit/php-code-coverage",
  5245. "version": "6.1.4",
  5246. "source": {
  5247. "type": "git",
  5248. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5249. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  5250. },
  5251. "dist": {
  5252. "type": "zip",
  5253. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  5254. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  5255. "shasum": ""
  5256. },
  5257. "require": {
  5258. "ext-dom": "*",
  5259. "ext-xmlwriter": "*",
  5260. "php": "^7.1",
  5261. "phpunit/php-file-iterator": "^2.0",
  5262. "phpunit/php-text-template": "^1.2.1",
  5263. "phpunit/php-token-stream": "^3.0",
  5264. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5265. "sebastian/environment": "^3.1 || ^4.0",
  5266. "sebastian/version": "^2.0.1",
  5267. "theseer/tokenizer": "^1.1"
  5268. },
  5269. "require-dev": {
  5270. "phpunit/phpunit": "^7.0"
  5271. },
  5272. "suggest": {
  5273. "ext-xdebug": "^2.6.0"
  5274. },
  5275. "type": "library",
  5276. "extra": {
  5277. "branch-alias": {
  5278. "dev-master": "6.1-dev"
  5279. }
  5280. },
  5281. "autoload": {
  5282. "classmap": [
  5283. "src/"
  5284. ]
  5285. },
  5286. "notification-url": "https://packagist.org/downloads/",
  5287. "license": [
  5288. "BSD-3-Clause"
  5289. ],
  5290. "authors": [
  5291. {
  5292. "name": "Sebastian Bergmann",
  5293. "email": "sebastian@phpunit.de",
  5294. "role": "lead"
  5295. }
  5296. ],
  5297. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5298. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5299. "keywords": [
  5300. "coverage",
  5301. "testing",
  5302. "xunit"
  5303. ],
  5304. "support": {
  5305. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  5306. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/master"
  5307. },
  5308. "time": "2018-10-31T16:06:48+00:00"
  5309. },
  5310. {
  5311. "name": "phpunit/php-file-iterator",
  5312. "version": "2.0.2",
  5313. "source": {
  5314. "type": "git",
  5315. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5316. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  5317. },
  5318. "dist": {
  5319. "type": "zip",
  5320. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  5321. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  5322. "shasum": ""
  5323. },
  5324. "require": {
  5325. "php": "^7.1"
  5326. },
  5327. "require-dev": {
  5328. "phpunit/phpunit": "^7.1"
  5329. },
  5330. "type": "library",
  5331. "extra": {
  5332. "branch-alias": {
  5333. "dev-master": "2.0.x-dev"
  5334. }
  5335. },
  5336. "autoload": {
  5337. "classmap": [
  5338. "src/"
  5339. ]
  5340. },
  5341. "notification-url": "https://packagist.org/downloads/",
  5342. "license": [
  5343. "BSD-3-Clause"
  5344. ],
  5345. "authors": [
  5346. {
  5347. "name": "Sebastian Bergmann",
  5348. "email": "sebastian@phpunit.de",
  5349. "role": "lead"
  5350. }
  5351. ],
  5352. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5353. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5354. "keywords": [
  5355. "filesystem",
  5356. "iterator"
  5357. ],
  5358. "support": {
  5359. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  5360. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.2"
  5361. },
  5362. "time": "2018-09-13T20:33:42+00:00"
  5363. },
  5364. {
  5365. "name": "phpunit/php-text-template",
  5366. "version": "1.2.1",
  5367. "source": {
  5368. "type": "git",
  5369. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5370. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5371. },
  5372. "dist": {
  5373. "type": "zip",
  5374. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5375. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5376. "shasum": ""
  5377. },
  5378. "require": {
  5379. "php": ">=5.3.3"
  5380. },
  5381. "type": "library",
  5382. "autoload": {
  5383. "classmap": [
  5384. "src/"
  5385. ]
  5386. },
  5387. "notification-url": "https://packagist.org/downloads/",
  5388. "license": [
  5389. "BSD-3-Clause"
  5390. ],
  5391. "authors": [
  5392. {
  5393. "name": "Sebastian Bergmann",
  5394. "email": "sebastian@phpunit.de",
  5395. "role": "lead"
  5396. }
  5397. ],
  5398. "description": "Simple template engine.",
  5399. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5400. "keywords": [
  5401. "template"
  5402. ],
  5403. "support": {
  5404. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  5405. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  5406. },
  5407. "time": "2015-06-21T13:50:34+00:00"
  5408. },
  5409. {
  5410. "name": "phpunit/php-timer",
  5411. "version": "2.1.2",
  5412. "source": {
  5413. "type": "git",
  5414. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5415. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  5416. },
  5417. "dist": {
  5418. "type": "zip",
  5419. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  5420. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  5421. "shasum": ""
  5422. },
  5423. "require": {
  5424. "php": "^7.1"
  5425. },
  5426. "require-dev": {
  5427. "phpunit/phpunit": "^7.0"
  5428. },
  5429. "type": "library",
  5430. "extra": {
  5431. "branch-alias": {
  5432. "dev-master": "2.1-dev"
  5433. }
  5434. },
  5435. "autoload": {
  5436. "classmap": [
  5437. "src/"
  5438. ]
  5439. },
  5440. "notification-url": "https://packagist.org/downloads/",
  5441. "license": [
  5442. "BSD-3-Clause"
  5443. ],
  5444. "authors": [
  5445. {
  5446. "name": "Sebastian Bergmann",
  5447. "email": "sebastian@phpunit.de",
  5448. "role": "lead"
  5449. }
  5450. ],
  5451. "description": "Utility class for timing",
  5452. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5453. "keywords": [
  5454. "timer"
  5455. ],
  5456. "support": {
  5457. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  5458. "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
  5459. },
  5460. "time": "2019-06-07T04:22:29+00:00"
  5461. },
  5462. {
  5463. "name": "phpunit/php-token-stream",
  5464. "version": "3.1.1",
  5465. "source": {
  5466. "type": "git",
  5467. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5468. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  5469. },
  5470. "dist": {
  5471. "type": "zip",
  5472. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  5473. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  5474. "shasum": ""
  5475. },
  5476. "require": {
  5477. "ext-tokenizer": "*",
  5478. "php": "^7.1"
  5479. },
  5480. "require-dev": {
  5481. "phpunit/phpunit": "^7.0"
  5482. },
  5483. "type": "library",
  5484. "extra": {
  5485. "branch-alias": {
  5486. "dev-master": "3.1-dev"
  5487. }
  5488. },
  5489. "autoload": {
  5490. "classmap": [
  5491. "src/"
  5492. ]
  5493. },
  5494. "notification-url": "https://packagist.org/downloads/",
  5495. "license": [
  5496. "BSD-3-Clause"
  5497. ],
  5498. "authors": [
  5499. {
  5500. "name": "Sebastian Bergmann",
  5501. "email": "sebastian@phpunit.de"
  5502. }
  5503. ],
  5504. "description": "Wrapper around PHP's tokenizer extension.",
  5505. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5506. "keywords": [
  5507. "tokenizer"
  5508. ],
  5509. "support": {
  5510. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  5511. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.1"
  5512. },
  5513. "abandoned": true,
  5514. "time": "2019-09-17T06:23:10+00:00"
  5515. },
  5516. {
  5517. "name": "phpunit/phpunit",
  5518. "version": "7.5.20",
  5519. "source": {
  5520. "type": "git",
  5521. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5522. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  5523. },
  5524. "dist": {
  5525. "type": "zip",
  5526. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  5527. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  5528. "shasum": ""
  5529. },
  5530. "require": {
  5531. "doctrine/instantiator": "^1.1",
  5532. "ext-dom": "*",
  5533. "ext-json": "*",
  5534. "ext-libxml": "*",
  5535. "ext-mbstring": "*",
  5536. "ext-xml": "*",
  5537. "myclabs/deep-copy": "^1.7",
  5538. "phar-io/manifest": "^1.0.2",
  5539. "phar-io/version": "^2.0",
  5540. "php": "^7.1",
  5541. "phpspec/prophecy": "^1.7",
  5542. "phpunit/php-code-coverage": "^6.0.7",
  5543. "phpunit/php-file-iterator": "^2.0.1",
  5544. "phpunit/php-text-template": "^1.2.1",
  5545. "phpunit/php-timer": "^2.1",
  5546. "sebastian/comparator": "^3.0",
  5547. "sebastian/diff": "^3.0",
  5548. "sebastian/environment": "^4.0",
  5549. "sebastian/exporter": "^3.1",
  5550. "sebastian/global-state": "^2.0",
  5551. "sebastian/object-enumerator": "^3.0.3",
  5552. "sebastian/resource-operations": "^2.0",
  5553. "sebastian/version": "^2.0.1"
  5554. },
  5555. "conflict": {
  5556. "phpunit/phpunit-mock-objects": "*"
  5557. },
  5558. "require-dev": {
  5559. "ext-pdo": "*"
  5560. },
  5561. "suggest": {
  5562. "ext-soap": "*",
  5563. "ext-xdebug": "*",
  5564. "phpunit/php-invoker": "^2.0"
  5565. },
  5566. "bin": [
  5567. "phpunit"
  5568. ],
  5569. "type": "library",
  5570. "extra": {
  5571. "branch-alias": {
  5572. "dev-master": "7.5-dev"
  5573. }
  5574. },
  5575. "autoload": {
  5576. "classmap": [
  5577. "src/"
  5578. ]
  5579. },
  5580. "notification-url": "https://packagist.org/downloads/",
  5581. "license": [
  5582. "BSD-3-Clause"
  5583. ],
  5584. "authors": [
  5585. {
  5586. "name": "Sebastian Bergmann",
  5587. "email": "sebastian@phpunit.de",
  5588. "role": "lead"
  5589. }
  5590. ],
  5591. "description": "The PHP Unit Testing framework.",
  5592. "homepage": "https://phpunit.de/",
  5593. "keywords": [
  5594. "phpunit",
  5595. "testing",
  5596. "xunit"
  5597. ],
  5598. "support": {
  5599. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  5600. "source": "https://github.com/sebastianbergmann/phpunit/tree/7.5.20"
  5601. },
  5602. "time": "2020-01-08T08:45:45+00:00"
  5603. },
  5604. {
  5605. "name": "sebastian/code-unit-reverse-lookup",
  5606. "version": "1.0.1",
  5607. "source": {
  5608. "type": "git",
  5609. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5610. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  5611. },
  5612. "dist": {
  5613. "type": "zip",
  5614. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5615. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5616. "shasum": ""
  5617. },
  5618. "require": {
  5619. "php": "^5.6 || ^7.0"
  5620. },
  5621. "require-dev": {
  5622. "phpunit/phpunit": "^5.7 || ^6.0"
  5623. },
  5624. "type": "library",
  5625. "extra": {
  5626. "branch-alias": {
  5627. "dev-master": "1.0.x-dev"
  5628. }
  5629. },
  5630. "autoload": {
  5631. "classmap": [
  5632. "src/"
  5633. ]
  5634. },
  5635. "notification-url": "https://packagist.org/downloads/",
  5636. "license": [
  5637. "BSD-3-Clause"
  5638. ],
  5639. "authors": [
  5640. {
  5641. "name": "Sebastian Bergmann",
  5642. "email": "sebastian@phpunit.de"
  5643. }
  5644. ],
  5645. "description": "Looks up which function or method a line of code belongs to",
  5646. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5647. "support": {
  5648. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  5649. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/master"
  5650. },
  5651. "time": "2017-03-04T06:30:41+00:00"
  5652. },
  5653. {
  5654. "name": "sebastian/comparator",
  5655. "version": "3.0.2",
  5656. "source": {
  5657. "type": "git",
  5658. "url": "https://github.com/sebastianbergmann/comparator.git",
  5659. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  5660. },
  5661. "dist": {
  5662. "type": "zip",
  5663. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  5664. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  5665. "shasum": ""
  5666. },
  5667. "require": {
  5668. "php": "^7.1",
  5669. "sebastian/diff": "^3.0",
  5670. "sebastian/exporter": "^3.1"
  5671. },
  5672. "require-dev": {
  5673. "phpunit/phpunit": "^7.1"
  5674. },
  5675. "type": "library",
  5676. "extra": {
  5677. "branch-alias": {
  5678. "dev-master": "3.0-dev"
  5679. }
  5680. },
  5681. "autoload": {
  5682. "classmap": [
  5683. "src/"
  5684. ]
  5685. },
  5686. "notification-url": "https://packagist.org/downloads/",
  5687. "license": [
  5688. "BSD-3-Clause"
  5689. ],
  5690. "authors": [
  5691. {
  5692. "name": "Jeff Welch",
  5693. "email": "whatthejeff@gmail.com"
  5694. },
  5695. {
  5696. "name": "Volker Dusch",
  5697. "email": "github@wallbash.com"
  5698. },
  5699. {
  5700. "name": "Bernhard Schussek",
  5701. "email": "bschussek@2bepublished.at"
  5702. },
  5703. {
  5704. "name": "Sebastian Bergmann",
  5705. "email": "sebastian@phpunit.de"
  5706. }
  5707. ],
  5708. "description": "Provides the functionality to compare PHP values for equality",
  5709. "homepage": "https://github.com/sebastianbergmann/comparator",
  5710. "keywords": [
  5711. "comparator",
  5712. "compare",
  5713. "equality"
  5714. ],
  5715. "support": {
  5716. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  5717. "source": "https://github.com/sebastianbergmann/comparator/tree/master"
  5718. },
  5719. "time": "2018-07-12T15:12:46+00:00"
  5720. },
  5721. {
  5722. "name": "sebastian/diff",
  5723. "version": "3.0.2",
  5724. "source": {
  5725. "type": "git",
  5726. "url": "https://github.com/sebastianbergmann/diff.git",
  5727. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  5728. },
  5729. "dist": {
  5730. "type": "zip",
  5731. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  5732. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  5733. "shasum": ""
  5734. },
  5735. "require": {
  5736. "php": "^7.1"
  5737. },
  5738. "require-dev": {
  5739. "phpunit/phpunit": "^7.5 || ^8.0",
  5740. "symfony/process": "^2 || ^3.3 || ^4"
  5741. },
  5742. "type": "library",
  5743. "extra": {
  5744. "branch-alias": {
  5745. "dev-master": "3.0-dev"
  5746. }
  5747. },
  5748. "autoload": {
  5749. "classmap": [
  5750. "src/"
  5751. ]
  5752. },
  5753. "notification-url": "https://packagist.org/downloads/",
  5754. "license": [
  5755. "BSD-3-Clause"
  5756. ],
  5757. "authors": [
  5758. {
  5759. "name": "Kore Nordmann",
  5760. "email": "mail@kore-nordmann.de"
  5761. },
  5762. {
  5763. "name": "Sebastian Bergmann",
  5764. "email": "sebastian@phpunit.de"
  5765. }
  5766. ],
  5767. "description": "Diff implementation",
  5768. "homepage": "https://github.com/sebastianbergmann/diff",
  5769. "keywords": [
  5770. "diff",
  5771. "udiff",
  5772. "unidiff",
  5773. "unified diff"
  5774. ],
  5775. "support": {
  5776. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5777. "source": "https://github.com/sebastianbergmann/diff/tree/master"
  5778. },
  5779. "time": "2019-02-04T06:01:07+00:00"
  5780. },
  5781. {
  5782. "name": "sebastian/environment",
  5783. "version": "4.2.3",
  5784. "source": {
  5785. "type": "git",
  5786. "url": "https://github.com/sebastianbergmann/environment.git",
  5787. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  5788. },
  5789. "dist": {
  5790. "type": "zip",
  5791. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  5792. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  5793. "shasum": ""
  5794. },
  5795. "require": {
  5796. "php": "^7.1"
  5797. },
  5798. "require-dev": {
  5799. "phpunit/phpunit": "^7.5"
  5800. },
  5801. "suggest": {
  5802. "ext-posix": "*"
  5803. },
  5804. "type": "library",
  5805. "extra": {
  5806. "branch-alias": {
  5807. "dev-master": "4.2-dev"
  5808. }
  5809. },
  5810. "autoload": {
  5811. "classmap": [
  5812. "src/"
  5813. ]
  5814. },
  5815. "notification-url": "https://packagist.org/downloads/",
  5816. "license": [
  5817. "BSD-3-Clause"
  5818. ],
  5819. "authors": [
  5820. {
  5821. "name": "Sebastian Bergmann",
  5822. "email": "sebastian@phpunit.de"
  5823. }
  5824. ],
  5825. "description": "Provides functionality to handle HHVM/PHP environments",
  5826. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5827. "keywords": [
  5828. "Xdebug",
  5829. "environment",
  5830. "hhvm"
  5831. ],
  5832. "support": {
  5833. "issues": "https://github.com/sebastianbergmann/environment/issues",
  5834. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.3"
  5835. },
  5836. "time": "2019-11-20T08:46:58+00:00"
  5837. },
  5838. {
  5839. "name": "sebastian/exporter",
  5840. "version": "3.1.2",
  5841. "source": {
  5842. "type": "git",
  5843. "url": "https://github.com/sebastianbergmann/exporter.git",
  5844. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  5845. },
  5846. "dist": {
  5847. "type": "zip",
  5848. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  5849. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  5850. "shasum": ""
  5851. },
  5852. "require": {
  5853. "php": "^7.0",
  5854. "sebastian/recursion-context": "^3.0"
  5855. },
  5856. "require-dev": {
  5857. "ext-mbstring": "*",
  5858. "phpunit/phpunit": "^6.0"
  5859. },
  5860. "type": "library",
  5861. "extra": {
  5862. "branch-alias": {
  5863. "dev-master": "3.1.x-dev"
  5864. }
  5865. },
  5866. "autoload": {
  5867. "classmap": [
  5868. "src/"
  5869. ]
  5870. },
  5871. "notification-url": "https://packagist.org/downloads/",
  5872. "license": [
  5873. "BSD-3-Clause"
  5874. ],
  5875. "authors": [
  5876. {
  5877. "name": "Sebastian Bergmann",
  5878. "email": "sebastian@phpunit.de"
  5879. },
  5880. {
  5881. "name": "Jeff Welch",
  5882. "email": "whatthejeff@gmail.com"
  5883. },
  5884. {
  5885. "name": "Volker Dusch",
  5886. "email": "github@wallbash.com"
  5887. },
  5888. {
  5889. "name": "Adam Harvey",
  5890. "email": "aharvey@php.net"
  5891. },
  5892. {
  5893. "name": "Bernhard Schussek",
  5894. "email": "bschussek@gmail.com"
  5895. }
  5896. ],
  5897. "description": "Provides the functionality to export PHP variables for visualization",
  5898. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5899. "keywords": [
  5900. "export",
  5901. "exporter"
  5902. ],
  5903. "support": {
  5904. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  5905. "source": "https://github.com/sebastianbergmann/exporter/tree/master"
  5906. },
  5907. "time": "2019-09-14T09:02:43+00:00"
  5908. },
  5909. {
  5910. "name": "sebastian/global-state",
  5911. "version": "2.0.0",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://github.com/sebastianbergmann/global-state.git",
  5915. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  5920. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  5921. "shasum": ""
  5922. },
  5923. "require": {
  5924. "php": "^7.0"
  5925. },
  5926. "require-dev": {
  5927. "phpunit/phpunit": "^6.0"
  5928. },
  5929. "suggest": {
  5930. "ext-uopz": "*"
  5931. },
  5932. "type": "library",
  5933. "extra": {
  5934. "branch-alias": {
  5935. "dev-master": "2.0-dev"
  5936. }
  5937. },
  5938. "autoload": {
  5939. "classmap": [
  5940. "src/"
  5941. ]
  5942. },
  5943. "notification-url": "https://packagist.org/downloads/",
  5944. "license": [
  5945. "BSD-3-Clause"
  5946. ],
  5947. "authors": [
  5948. {
  5949. "name": "Sebastian Bergmann",
  5950. "email": "sebastian@phpunit.de"
  5951. }
  5952. ],
  5953. "description": "Snapshotting of global state",
  5954. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5955. "keywords": [
  5956. "global state"
  5957. ],
  5958. "support": {
  5959. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5960. "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0"
  5961. },
  5962. "time": "2017-04-27T15:39:26+00:00"
  5963. },
  5964. {
  5965. "name": "sebastian/object-enumerator",
  5966. "version": "3.0.3",
  5967. "source": {
  5968. "type": "git",
  5969. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5970. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  5971. },
  5972. "dist": {
  5973. "type": "zip",
  5974. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5975. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5976. "shasum": ""
  5977. },
  5978. "require": {
  5979. "php": "^7.0",
  5980. "sebastian/object-reflector": "^1.1.1",
  5981. "sebastian/recursion-context": "^3.0"
  5982. },
  5983. "require-dev": {
  5984. "phpunit/phpunit": "^6.0"
  5985. },
  5986. "type": "library",
  5987. "extra": {
  5988. "branch-alias": {
  5989. "dev-master": "3.0.x-dev"
  5990. }
  5991. },
  5992. "autoload": {
  5993. "classmap": [
  5994. "src/"
  5995. ]
  5996. },
  5997. "notification-url": "https://packagist.org/downloads/",
  5998. "license": [
  5999. "BSD-3-Clause"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "Sebastian Bergmann",
  6004. "email": "sebastian@phpunit.de"
  6005. }
  6006. ],
  6007. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6008. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6009. "support": {
  6010. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  6011. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/master"
  6012. },
  6013. "time": "2017-08-03T12:35:26+00:00"
  6014. },
  6015. {
  6016. "name": "sebastian/object-reflector",
  6017. "version": "1.1.1",
  6018. "source": {
  6019. "type": "git",
  6020. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6021. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6022. },
  6023. "dist": {
  6024. "type": "zip",
  6025. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6026. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6027. "shasum": ""
  6028. },
  6029. "require": {
  6030. "php": "^7.0"
  6031. },
  6032. "require-dev": {
  6033. "phpunit/phpunit": "^6.0"
  6034. },
  6035. "type": "library",
  6036. "extra": {
  6037. "branch-alias": {
  6038. "dev-master": "1.1-dev"
  6039. }
  6040. },
  6041. "autoload": {
  6042. "classmap": [
  6043. "src/"
  6044. ]
  6045. },
  6046. "notification-url": "https://packagist.org/downloads/",
  6047. "license": [
  6048. "BSD-3-Clause"
  6049. ],
  6050. "authors": [
  6051. {
  6052. "name": "Sebastian Bergmann",
  6053. "email": "sebastian@phpunit.de"
  6054. }
  6055. ],
  6056. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6057. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6058. "support": {
  6059. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  6060. "source": "https://github.com/sebastianbergmann/object-reflector/tree/master"
  6061. },
  6062. "time": "2017-03-29T09:07:27+00:00"
  6063. },
  6064. {
  6065. "name": "sebastian/recursion-context",
  6066. "version": "3.0.0",
  6067. "source": {
  6068. "type": "git",
  6069. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6070. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6071. },
  6072. "dist": {
  6073. "type": "zip",
  6074. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6075. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6076. "shasum": ""
  6077. },
  6078. "require": {
  6079. "php": "^7.0"
  6080. },
  6081. "require-dev": {
  6082. "phpunit/phpunit": "^6.0"
  6083. },
  6084. "type": "library",
  6085. "extra": {
  6086. "branch-alias": {
  6087. "dev-master": "3.0.x-dev"
  6088. }
  6089. },
  6090. "autoload": {
  6091. "classmap": [
  6092. "src/"
  6093. ]
  6094. },
  6095. "notification-url": "https://packagist.org/downloads/",
  6096. "license": [
  6097. "BSD-3-Clause"
  6098. ],
  6099. "authors": [
  6100. {
  6101. "name": "Jeff Welch",
  6102. "email": "whatthejeff@gmail.com"
  6103. },
  6104. {
  6105. "name": "Sebastian Bergmann",
  6106. "email": "sebastian@phpunit.de"
  6107. },
  6108. {
  6109. "name": "Adam Harvey",
  6110. "email": "aharvey@php.net"
  6111. }
  6112. ],
  6113. "description": "Provides functionality to recursively process PHP variables",
  6114. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6115. "support": {
  6116. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  6117. "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
  6118. },
  6119. "time": "2017-03-03T06:23:57+00:00"
  6120. },
  6121. {
  6122. "name": "sebastian/resource-operations",
  6123. "version": "2.0.1",
  6124. "source": {
  6125. "type": "git",
  6126. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6127. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  6128. },
  6129. "dist": {
  6130. "type": "zip",
  6131. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6132. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6133. "shasum": ""
  6134. },
  6135. "require": {
  6136. "php": "^7.1"
  6137. },
  6138. "type": "library",
  6139. "extra": {
  6140. "branch-alias": {
  6141. "dev-master": "2.0-dev"
  6142. }
  6143. },
  6144. "autoload": {
  6145. "classmap": [
  6146. "src/"
  6147. ]
  6148. },
  6149. "notification-url": "https://packagist.org/downloads/",
  6150. "license": [
  6151. "BSD-3-Clause"
  6152. ],
  6153. "authors": [
  6154. {
  6155. "name": "Sebastian Bergmann",
  6156. "email": "sebastian@phpunit.de"
  6157. }
  6158. ],
  6159. "description": "Provides a list of PHP built-in functions that operate on resources",
  6160. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6161. "support": {
  6162. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  6163. "source": "https://github.com/sebastianbergmann/resource-operations/tree/master"
  6164. },
  6165. "time": "2018-10-04T04:07:39+00:00"
  6166. },
  6167. {
  6168. "name": "sebastian/version",
  6169. "version": "2.0.1",
  6170. "source": {
  6171. "type": "git",
  6172. "url": "https://github.com/sebastianbergmann/version.git",
  6173. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6174. },
  6175. "dist": {
  6176. "type": "zip",
  6177. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6178. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6179. "shasum": ""
  6180. },
  6181. "require": {
  6182. "php": ">=5.6"
  6183. },
  6184. "type": "library",
  6185. "extra": {
  6186. "branch-alias": {
  6187. "dev-master": "2.0.x-dev"
  6188. }
  6189. },
  6190. "autoload": {
  6191. "classmap": [
  6192. "src/"
  6193. ]
  6194. },
  6195. "notification-url": "https://packagist.org/downloads/",
  6196. "license": [
  6197. "BSD-3-Clause"
  6198. ],
  6199. "authors": [
  6200. {
  6201. "name": "Sebastian Bergmann",
  6202. "email": "sebastian@phpunit.de",
  6203. "role": "lead"
  6204. }
  6205. ],
  6206. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6207. "homepage": "https://github.com/sebastianbergmann/version",
  6208. "support": {
  6209. "issues": "https://github.com/sebastianbergmann/version/issues",
  6210. "source": "https://github.com/sebastianbergmann/version/tree/master"
  6211. },
  6212. "time": "2016-10-03T07:35:21+00:00"
  6213. },
  6214. {
  6215. "name": "theseer/tokenizer",
  6216. "version": "1.2.0",
  6217. "source": {
  6218. "type": "git",
  6219. "url": "https://github.com/theseer/tokenizer.git",
  6220. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  6221. },
  6222. "dist": {
  6223. "type": "zip",
  6224. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  6225. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  6226. "shasum": ""
  6227. },
  6228. "require": {
  6229. "ext-dom": "*",
  6230. "ext-tokenizer": "*",
  6231. "ext-xmlwriter": "*",
  6232. "php": "^7.2 || ^8.0"
  6233. },
  6234. "type": "library",
  6235. "autoload": {
  6236. "classmap": [
  6237. "src/"
  6238. ]
  6239. },
  6240. "notification-url": "https://packagist.org/downloads/",
  6241. "license": [
  6242. "BSD-3-Clause"
  6243. ],
  6244. "authors": [
  6245. {
  6246. "name": "Arne Blankerts",
  6247. "email": "arne@blankerts.de",
  6248. "role": "Developer"
  6249. }
  6250. ],
  6251. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6252. "support": {
  6253. "issues": "https://github.com/theseer/tokenizer/issues",
  6254. "source": "https://github.com/theseer/tokenizer/tree/master"
  6255. },
  6256. "funding": [
  6257. {
  6258. "url": "https://github.com/theseer",
  6259. "type": "github"
  6260. }
  6261. ],
  6262. "time": "2020-07-12T23:59:07+00:00"
  6263. },
  6264. {
  6265. "name": "webmozart/assert",
  6266. "version": "1.9.1",
  6267. "source": {
  6268. "type": "git",
  6269. "url": "https://github.com/webmozart/assert.git",
  6270. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  6271. },
  6272. "dist": {
  6273. "type": "zip",
  6274. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  6275. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  6276. "shasum": ""
  6277. },
  6278. "require": {
  6279. "php": "^5.3.3 || ^7.0 || ^8.0",
  6280. "symfony/polyfill-ctype": "^1.8"
  6281. },
  6282. "conflict": {
  6283. "phpstan/phpstan": "<0.12.20",
  6284. "vimeo/psalm": "<3.9.1"
  6285. },
  6286. "require-dev": {
  6287. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6288. },
  6289. "type": "library",
  6290. "autoload": {
  6291. "psr-4": {
  6292. "Webmozart\\Assert\\": "src/"
  6293. }
  6294. },
  6295. "notification-url": "https://packagist.org/downloads/",
  6296. "license": [
  6297. "MIT"
  6298. ],
  6299. "authors": [
  6300. {
  6301. "name": "Bernhard Schussek",
  6302. "email": "bschussek@gmail.com"
  6303. }
  6304. ],
  6305. "description": "Assertions to validate method input/output with nice error messages.",
  6306. "keywords": [
  6307. "assert",
  6308. "check",
  6309. "validate"
  6310. ],
  6311. "support": {
  6312. "issues": "https://github.com/webmozart/assert/issues",
  6313. "source": "https://github.com/webmozart/assert/tree/master"
  6314. },
  6315. "time": "2020-07-08T17:02:28+00:00"
  6316. }
  6317. ],
  6318. "aliases": [],
  6319. "minimum-stability": "dev",
  6320. "stability-flags": [],
  6321. "prefer-stable": true,
  6322. "prefer-lowest": false,
  6323. "platform": {
  6324. "php": "^7.1.3"
  6325. },
  6326. "platform-dev": [],
  6327. "plugin-api-version": "2.0.0"
  6328. }