composer.lock 270 KB

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