composer.lock 276 KB

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